:root {
    --transition-duration-ease: 0.5s ease;
    --anim-delay: 0.3s;
    --orange-color: #ff5900;
}

body {
    font-family: 'Unbounded', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #E4E4E4;
    overflow-x: hidden;
    height: 8548px;
}

.header-background-a {
    position: absolute;
    left: 50%;
    top: 60px;
    height: 472px;
    width: 900px;
    background-color: #eaeaea;
    transform: translateX(-1080px);
}

.header-background-b {
    position: absolute;
    left: 50%;
    top: 60px;
    height: 472px;
    width: 360px;
    background-color: #eaeaea;
    transform: translateX(0px);
}

.header-background-a2 {
    z-index: -5;
    position: absolute;
    left: 50%;
    top: 360px;
    height: 412px;
    width: 360px;
    background-color: #eaeaea;
    transform: translateX(-360px);
}

.header-background-b2 {
    z-index: -5;
    position: absolute;
    left: 50%;
    top: 360px;
    height: 412px;
    width: 900px;
    background-color: #eaeaea;
    transform: translateX(360px);
}

.header-background-a3 {
    z-index: -5;
    position: absolute;
    left: 50%;
    top: 960px;
    height: 300px;
    width: 1350px;
    background-color: #eaeaea;
    transform: translateX(-1350px);
}

.header-background-b3 {
    z-index: -5;
    position: absolute;
    left: 50%;
    top: 1260px;
    height: 300px;
    width: 1350px;
    background-color: #eaeaea;
    transform: translateX(-0px);
}

.header-background-1 {
    position: absolute;
    left: 50%;
    top: 60px;
    height: 472px;
    width: 360px;
    background-color: #E4E4E4;
    background-image: repeating-linear-gradient(45deg, #666, #666 1px, transparent 1px, transparent 12px);
    transform: translateX(-360px);
}

.header-background-2 {
    position: absolute;
    left: 50%;
    top: 60px;
    height: 472px;
    width: 1200px;
    background-color: #E4E4E4;
    background-image: repeating-linear-gradient(45deg, #666, #666 1px, transparent 1px, transparent 12px);
    transform: translateX(360px);
}

#language {
    /* border: 1px solid #999; */
    padding: 8px 20px;
    /* border-radius: 5px; */
    width: auto;
    height: 16px;
    position: absolute;
    top: 24px;
    right: 280px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center; /* Align items vertically in the center */
    justify-content: center; /* Adjust as needed for horizontal alignment */
    gap: 8px; /* Add spacing between elements */
}

#language p {
    font-weight: normal;
    margin: 0;
    font-size: 14px;
}

p.active:hover, p.inactive:hover {
    color: blue; 
    text-decoration: underline;
}

#language p.active {
    color: black;
    /* text-decoration: underline; */
}

#language p.inactive {
    color: #999;
}

#language p.divisor {
    color: #999;
}

.scroll {
    z-index: 5;
    border-radius: 60px;
    border: 1px solid #666;
    background-color: white;
    display: block;
    width: 220px;
    height: 60px;
    position: absolute;
    top: 530px;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-img {
    z-index: 5;
    position: absolute;
    top: 600px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    height: 32px;
    width: 30px;
    background-image: url('../img/scroll-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: moveDown 1s infinite;
}

/* menu  */

.menu .reel {
    transition: color 0.3s ease;
}

.menu .reel span {
    z-index: -1;
    position: absolute;
    top: -7px;
    left: 24px;
    transform: translateX(-50%);
    width: 0;
    height: 36px;
    background-color: black;
    transition: width 0.3s ease;
}

.menu .reel:hover span {
    width: 90px;
}

.menu .reel:hover {
    color: white;
}

.menu .services {
    transition: color 0.3s ease;
}

.menu .services span {
    z-index: -1;
    position: absolute;
    top: -7px;
    left: 154px;
    transform: translateX(-50%);
    width: 0;
    height: 36px;
    background-color: black;
    transition: width 0.3s ease;
}

.menu .services:hover span {
    width: 140px;
}

.menu .services:hover {
    color: white;
}

.menu .projects {
    transition: color 0.3s ease;
}

.menu .projects span {
    z-index: -1;
    position: absolute;
    top: -7px;
    left: 310px;
    transform: translateX(-50%);
    width: 0;
    height: 36px;
    background-color: black;
    transition: width 0.3s ease;
}

.menu .projects:hover span {
    width: 146px;
}

.menu .projects:hover {
    color: white;
}

/* about  */

.menu .about {
    transition: color 0.3s ease;
}

.menu .about span {
    z-index: -1;
    position: absolute;
    top: -7px;
    left: 452px;
    transform: translateX(-50%);
    width: 0;
    height: 36px;
    background-color: black;
    transition: width 0.3s ease;
}

.menu .about:hover span {
    width: 110px;
}

.menu .about:hover {
    color: white;
}

.menu .link-hover {
    position: absolute;
    bottom: -42px;
    left: -22px;
    width: 138px;
    height: 106px;
    background-color: var(--orange-color);
    z-index: -1;
    transition: background-color var(--transition-duration-ease);
}

/* Animation keyframes */
@keyframes moveDown {
    0% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, -25%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

#projects .titlebox {
    z-index: 5;
    position: absolute;
    left: 50%;
    top: 2772px;
    width: 720px;
    height: 40px;
    background-color: black;
    transform: translate(-360px, -360px);
    overflow: hidden;
}

#about .titlebox {
    z-index: 5;
    position: absolute;
    left: 50%;
    top: 6973px;
    width: 720px;
    height: 40px;
    background-color: black;
    transform: translate(-360px, -360px);
    overflow: hidden;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

.marquee h3 {
    font-weight: 300;
    left: -700px;
    position: relative;
    top: -2px;
    font-size: 19.2px;
    color: white;
    margin: 10px;
}

@keyframes marquee {
    from {
        transform: translateX(730px);
    }

    to {
        transform: translateX(500px);
    }
}

/* reel  */

#reel .titlebox {
    z-index: 5;
    position: absolute;
    left: 50%;
    top: 1183px;
    width: 720px;
    height: 40px;
    background-color: black;
    transform: translate(-360px, -451px);
    overflow: hidden;
}

#reel .body {
    position: absolute;
    top: 772px;
    left: 50%;
    width: 1440px;
    height: 480px;
    background-color: white;
    transform: translateX(-720px);
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
}

#reel .body-bg {
    position: absolute;
    top: 772px;
    left: 50%;
    width: 2580px;
    height: 480px;
    background-color: #e4e4e400;
    transform: translateX(-50%);
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
    background-image: repeating-linear-gradient(45deg, #999, #999 1px, transparent 1px, transparent 12px);
    z-index: -2;
}

#reel .body video {
    transform: translateX(360px);
    width: 1080px;
    height: 480px;
    max-width: 100%;
    background-color: black;
    /* border: 1px solid #999; */
    z-index: 5;
}

#reel .video-overlap {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 50%;
    width: 1080px;
    height: 480px;
    background-color: #eeeeee;
    transform: translateX(-360px);
    z-index: 10;
    display: block;
    overflow: hidden;
}

.video-overlap img {
    position: relative;
    top: 1px;
}

#reel .slot-a1 {
    position: absolute;
    top: 0;
    left: 0%;
    width: 360px;
    height: 240px;
    background-color: white;
    background-image: linear-gradient(45deg, #000 1px, transparent 1px);
    background-size: 12px 12px;
}

/* #reel .slot-a1::before,
#reel .slot-a1::after {
    top: -95px;
    left: 180px;
    content: '';
    position: absolute;
    width: 1px;
    height: 180%;
    background-color: #bbb;
}

#reel .slot-a1::before {
    transform: rotate(56.5deg);
}

#reel .slot-a1::after {
    transform: rotate(-56.5deg);
} */

#reel .slot-a2 {
    position: absolute;
    top: 240px;
    left: 0;
    width: 360px;
    height: 240px;
}

#reel .slot-a2::before,
#reel .slot-a2::after {
    top: -95px;
    left: 180px;
    content: '';
    position: absolute;
    width: 1px;
    height: 180%;
    background-color: #bbb;
}

#reel .slot-a2::before {
    transform: rotate(56.5deg);
}

#reel .slot-a2::after {
    transform: rotate(-56.5deg);
}

/* comment services  */

#services .titlebox {
    z-index: 5;
    position: absolute;
    left: 50%;
    top: 2023px;
    width: 720px;
    height: 40px;
    background-color: black;
    transform: translate(-360px, -451px);
    overflow: hidden;
}

#services .complement {
    position: absolute;
    top: 1613px;
    left: 50%;
    width: 1350px;
    height: 480px;
    background-color: white;
    background-image: linear-gradient(45deg, #000 1px, transparent 1px);
    background-size: 12px 12px;
    /* background-image: repeating-linear-gradient(45deg, #999, #999 1px, transparent 1px, transparent 12px); */
    transform: translateX(720px);
    /* border-left: 1px solid #bbb; */
}

#services .post-complement {
    position: absolute;
    top: 1613px;
    left: 50%;
    width: 960px;
    height: 480px;
    /* border-top: 1px solid #bbb; */
    background-color: #eaeaea;
    background-image: repeating-linear-gradient(45deg, #999, #999 1px, transparent 1px, transparent 12px);
    transform: translateX(-1680px);
}

/* Initial slots state */
.slot1,
.slot2,
.slot3,
.slot4,
.slot5,
.slot6,
.slot7,
.slot8 {
    z-index: 0;
    position: absolute;
    background-color: white;
    overflow: hidden;
    transition: background-color var(--transition-duration-ease);
}

/* Pseudo-element for orange overlay */
.slot1::before,
.slot2::before,
.slot3::before,
.slot4::before,
.slot5::before,
.slot6::before,
.slot7::before,
.slot8::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--orange-color);
    z-index: -1;
    transition: left var(--transition-duration-ease);
    transition-delay: var(--anim-delay);
}

/* Hover effect: Slide in the orange layer */
.slot1:hover::before,
.slot2:hover::before,
.slot3:hover::before,
.slot4:hover::before,
.slot5:hover::before,
.slot6:hover::before,
.slot7:hover::before,
.slot8:hover::before {
    left: 0;
}

/* Hover OUT effect: Slide out the orange layer */
.slot1:not(:hover)::before,
.slot2:not(:hover)::before,
.slot3:not(:hover)::before,
.slot4:not(:hover)::before,
.slot5:not(:hover)::before,
.slot6:not(:hover)::before,
.slot7:not(:hover)::before,
.slot8:not(:hover)::before {
    left: -100%;
}

.slot1 .title,
.slot2 .title,
.slot3 .title,
.slot4 .title,
.slot5 .title,
.slot6 .title,
.slot7 .title,
.slot8 .title {
    position: absolute;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: normal;
    bottom: -5px;
    left: 30px;
    opacity: 1;
    transition: opacity var(--transition-duration-ease);
}

.slot1:hover .title,
.slot2:hover .title,
.slot3:hover .title,
.slot4:hover .title,
.slot5:hover .title,
.slot6:hover .title,
.slot7:hover .title,
.slot8:hover .title {
    opacity: 0%;
}

.slot1:not(:hover) .title,
.slot2:not(:hover) .title,
.slot3:not(:hover) .title,
.slot4:not(:hover) .title,
.slot5:not(:hover) .title,
.slot6:not(:hover) .title,
.slot7:not(:hover) .title,
.slot8:not(:hover) .title {
    opacity: 1;
    transition-delay: 1s;
}

.slot1 .over-title,
.slot2 .over-title,
.slot3 .over-title,
.slot4 .over-title,
.slot5 .over-title,
.slot6 .over-title,
.slot7 .over-title,
.slot8 .over-title {
    position: absolute;
    float: right;
    opacity: 0%;
    transition: opacity var(--transition-duration-ease);
    transition-delay: var(--anim-delay);
    opacity: 0%;
    margin: 20px 30px;
    color: rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    top: -8px;
}

.slot1:hover .over-title,
.slot2:hover .over-title,
.slot3:hover .over-title,
.slot4:hover .over-title,
.slot5:hover .over-title,
.slot6:hover .over-title,
.slot7:hover .over-title,
.slot8:hover .over-title {
    opacity: 100%;
}

.slot1:not(:hover) .over-title,
.slot2:not(:hover) .over-title,
.slot3:not(:hover) .over-title,
.slot4:not(:hover) .over-title,
.slot5:not(:hover) .over-title,
.slot6:not(:hover) .over-title,
.slot7:not(:hover) .over-title,
.slot8:not(:hover) .over-title {
    opacity: 0%;
}

.slot1 .over-description,
.slot2 .over-description,
.slot3 .over-description,
.slot4 .over-description,
.slot5 .over-description,
.slot6 .over-description,
.slot7 .over-description,
.slot8 .over-description {
    position: absolute;
    bottom: 10px;
    opacity: 0%;
    transition: opacity var(--transition-duration-ease);
    transition-delay: var(--anim-delay);
    padding-left: 30px;
    padding-right: 45px;
    color: rgba(0, 0, 0, 0.8);
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
}

.slot1:hover .over-description,
.slot2:hover .over-description,
.slot3:hover .over-description,
.slot4:hover .over-description,
.slot5:hover .over-description,
.slot6:hover .over-description,
.slot7:hover .over-description,
.slot8:hover .over-description {
    opacity: 100%;
}

.slot1:not(:hover) .over-description,
.slot2:not(:hover) .over-description,
.slot3:not(:hover) .over-description,
.slot4:not(:hover) .over-description,
.slot5:not(:hover) .over-description,
.slot6:not(:hover) .over-description,
.slot7:not(:hover) .over-description,
.slot8:not(:hover) .over-description {
    opacity: 0%;
}

/* Line reveal effect */
.slot1 .line,
.slot2 .line,
.slot3 .line,
.slot4 .line,
.slot5 .line,
.slot6 .line,
.slot7 .line,
.slot8 .line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #a13800;
    position: absolute;
    top: 44px;
    clip-path: inset(0 100% 0 0);
    transition: clip-path var(--transition-duration-ease);
    transition-delay: var(--anim-delay);
}

.slot1:hover .line,
.slot2:hover .line,
.slot3:hover .line,
.slot4:hover .line,
.slot5:hover .line,
.slot6:hover .line,
.slot7:hover .line,
.slot8:hover .line {
    clip-path: inset(0 0 0 0);
}

.slot1:not(:hover) .line,
.slot2:not(:hover) .line,
.slot3:not(:hover) .line,
.slot4:not(:hover) .line,
.slot5:not(:hover) .line,
.slot6:not(:hover) .line,
.slot7:not(:hover) .line,
.slot8:not(:hover) .line {
    clip-path: inset(0 100% 0 0);
}

.slot1 {
    top: 1613px;
    left: 50%;
    background-color: white;
    width: 360px;
    height: 240px;
    transform: translate(-720px, 0);
    border-left: 1px solid #bbb;
}

.slot2 {
    top: 1613px;
    left: 50%;
    background-color: white;
    width: 360px;
    height: 240px;
    transform: translate(-360px, 0);
}

.slot3 {
    position: absolute;
    top: 1613px;
    left: 50%;
    width: 360px;
    height: 240px;
    transform: translate(0, -0);
}

.slot4 {
    position: absolute;
    top: 1613px;
    left: 50%;
    background-color: white;
    width: 360px;
    height: 240px;
    transform: translate(360px, -0);
}

.slot5 {
    position: absolute;
    top: 1853px;
    left: 50%;
    background-color: white;
    width: 360px;
    height: 240px;
    transform: translate(-720px, -0);
    border-left: 1px solid #bbb;
}

.slot6 {
    position: absolute;
    top: 1853px;
    left: 50%;
    background-color: white;
    width: 360px;
    height: 240px;
    transform: translate(-360px, -0);
}

.slot7 {
    position: absolute;
    top: 1853px;
    left: 50%;
    background-color: white;
    width: 360px;
    height: 240px;
    transform: translate(0, -0);
}

.slot8 {
    position: absolute;
    top: 1853px;
    left: 50%;
    background-color: white;
    width: 360px;
    height: 240px;
    transform: translate(360px, -0);
}

.services-guide1 {
    display: block; 
    position: absolute; 
    width: 1px; 
    height: 480px; 
    background-color: #bbb; 
    top: 1613px;
    left: 50%;
    transform: translate(-360px, -0);
    z-index: 3;
}

.services-guide2 {
    display: block; 
    position: absolute; 
    width: 1px; 
    height: 480px; 
    background-color: #bbb; 
    top: 1613px;
    left: 50%;
    transform: translate(0, -0);
    z-index: 3;
}

.services-guide3 {
    display: block; 
    position: absolute; 
    width: 1px; 
    height: 480px; 
    background-color: #bbb; 
    top: 1613px;
    left: 50%;
    transform: translate(360px, -0);
    z-index: 3;
}

.services-guide4 {
    display: block; 
    position: absolute; 
    width: 1px; 
    height: 480px; 
    background-color: #bbb; 
    top: 1613px;
    left: 50%;
    transform: translate(720px, -0);
    z-index: 3;
}

header {
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 81px;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 1px solid #999;
    padding: 0 20px;
    position: fixed;
}

header .logo {
    width: auto;
    float: left;
}

header .logo img {
    position: relative;
    left: 60px;
    width: 40%;
    height: auto;
}

header .menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

header ul {
    display: flex;
    gap: 56px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    bottom: 6px;
}

header ul li {
    text-transform: uppercase;
    cursor: pointer;
}

/* contact button setting */

header .contact-btn button {
    font-weight: bolder;
    text-transform: uppercase;
    font: inherit;
    position: relative;
    right: 90px;
    padding: 8px 20px;
    /* Reduced size by 20% */
    border: none;
    background-color: var(--orange-color);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header .contact-btn button:hover {
    background-color: #ff5900;
}

header .contact-btn button:hover span {
    color: #ff5900;
    transition: color 0.3s ease;
}

header .contact-btn button div {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.8s ease;
}

header .contact-btn button:hover div {
    white-space: nowrap;
    overflow: hidden;
    visibility: visible;
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    opacity: 1;
    transition-delay: 0.3s;
}

header .contact-btn button div {
    position: absolute;
    top: -9px !important;
    visibility: hidden;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    /* Initial opacity */
}

/* Marquee effect for <p> inside the div */
header .contact-btn button:hover div p {
    display: inline-block;
    white-space: nowrap;
    animation: contact-btn-marquee 5s linear infinite;
}

/* Define the marquee animation */
@keyframes contact-btn-marquee {
    from {
        transform: translateX(0);
        /* Start off-screen to the right */
    }

    to {
        transform: translateX(-500px);
        /* End off-screen to the left */
    }
}

/* Mouse out effect */
header .contact-btn button:not(:hover) div {
    opacity: 0;
    transition: opacity 0.8s ease;
}

header .contact-btn button:not(:hover) span {
    color: white;
    transition: color 0.8s ease;
}

.container-reference {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
    text-align: center;
    opacity: 0%;
}

.container img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.header-guideline-left {
    position: fixed;
    top: 0;
    height: 102px;
    left: 50%;
    width: 1px;
    background-color: #bbb;
    z-index: 15;
    transform: translateX(360px);
    overflow: hidden;
}

.header-guideline-right {
    position: fixed;
    top: 0;
    height: 102px;
    left: 50%;
    width: 1px;
    background-color: #bbb;
    z-index: 15;
    transform: translateX(-360px);
    overflow: hidden;
}

@media screen and (max-width: 1380px) {
    .header-guideline-left {
        display: none;
    }

    .header-guideline-right {
        display: none;
    }
}

.ver-guideline-left {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #bbb;
    z-index: -5;
    transform: translateX(360px);
}

.ver-guideline-center {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #bbb;
    z-index: -3
}

.ver-guideline-right {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #bbb;
    z-index: -5;
    transform: translateX(-360px);
}

/* Horizontal Guidelines */

.hor-guideline {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #bbb;
}

/* previos zero z-index */
.hor-guideline.z-index-5{
    z-index: -5
}

/* previous -1 z-index */
.hor-guideline.z-index-3{
    z-index: -3
}

/* previous -1 z-index */
.hor-guideline.z-index-1{
    z-index: 1
}



/* Individual top positions */
.hor-guideline-1 {
    top: 132px;
}

.hor-guideline-2 {
    top: 450px;
}

.hor-guideline-3 {
    top: 532px;
}

.hor-guideline-4 {
    top: 772px;
}

.hor-guideline-5 {
    top: 1012px;
}

.hor-guideline-6 {
    top: 1252px;
}

.hor-guideline-7 {
    top: 1612px;
}

.hor-guideline-8 {
    top: 1852px;
}

.hor-guideline-9 {
    top: 2092px;
}

.hor-guideline-10 {
    top: 2452px;
}

.hor-guideline-11 {
    top: 2692px;
}

.hor-guideline-12 {
    top: 2932px;
}

.hor-guideline-13 {
    top: 3292px;
}

.hor-guideline-14 {
    top: 3532px;
}

.hor-guideline-15 {
    top: 3772px;
}

.hor-guideline-16 {
    top: 4132px;
}

.hor-guideline-17 {
    top: 4372px;
}

.hor-guideline-18 {
    top: 4612px;
}

.hor-guideline-19 {
    top: 4972px;
}

.hor-guideline-20 {
    top: 5212px;
}

.hor-guideline-21 {
    top: 5452px;
}

.hor-guideline-22 {
    top: 5812px;
}

.hor-guideline-23 {
    top: 6052px;
}

.hor-guideline-24 {
    top: 6292px;
}

.hor-guideline-25 {
    top: 6652px;
}

.hor-guideline-26 {
    top: 6892px;
    ;
}

.hor-guideline-27 {
    top: 7132px;
}

.hor-guideline-28 {
    top: 7420px;
}

.hor-guideline-29 {
    top: 7780px;
}

.hor-guideline-30 {
    top: 8020px;
}

.hor-guideline-31 {
    top: 8260px;
}

.animated_text1 {
    z-index: 5;
    position: relative;
    top: 132px;
    width: 2000%;
    height: 210px;
    background-image: url("../img/head_text1.png");
    background-repeat: repeat-x;
    background-position: 0 0;
    animation: scroll-right-to-left 720s linear infinite;
}

.animated_text2 {
    z-index: 5;
    position: relative;
    top: 72px;
    width: 2000%;
    height: 260px;
    background-image: url("../img/head_text2.png");
    background-repeat: repeat-x;
    background-position: 0 0;
    animation: scroll-left-to-right 720s linear infinite;
}

@keyframes scroll-right-to-left {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* Keyframes for Text 2: Left to Right */
@keyframes scroll-left-to-right {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 0;
    }
}

.wire-images {
    display: block;
    width: 100%;
    height: 500px;
    overflow: hidden;
    /* Clips anything outside this container */
}

.wire-images .img1 {
    position: relative;
    left: -100px;
    top: 30px;
    mix-blend-mode: multiply;
    opacity: 0.8;
    transform: scale(0.90);
    z-index: -5;
}

.wire-images .img2 {
    position: relative;
    left: 1628px;
    top: -924px;
    mix-blend-mode: multiply;
    opacity: 0.8;
    transform: scaleY(0.9);
    transform: scaleX(0.9);
    z-index: -5;
}

#showcase1 div {
    position: absolute;
    top: 961px;
    left: 50%;
    background-color: white;
    width: 1800px;
    height: 900px;
    z-index: -1;
    transform: translateX(-449px);
}

#showcase2 div {
    position: absolute;
    top: 2161px;
    right: 50%;
    background-color: white;
    width: 1800px;
    height: 900px;
    z-index: -1;
    transform: translateX(451px);
}

.inbetween1 {
    position: absolute;
    left: 50%;
    top: 1560px;
    height: 450px;
    width: 900px;
    background-color: black;
    transform: translateX(-1350px);
}

.inbetween2 {
    position: absolute;
    left: 50%;
    top: 1560px;
    height: 450px;
    width: 450px;
    background-color: #E4E4E4;
    background-image: repeating-linear-gradient(45deg, #000, #000 1px, transparent 1px, transparent 12px);
    transform: translateX(-450px);
}

.project {
    position: absolute;
    left: 50%;
    height: 480px;
    width: 1080px;
    background-color: white;
    background-size: 12px 12px;
}

.project1 .image-slider,
.project3 .image-slider,
.project5 .image-slider {
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    width: 720px;
    height: 480px;
    /* background-color: #dbdbdb; */
}

.project2 .image-slider,
.project4 .image-slider {
    z-index: 5;
    position: absolute;
    top: 0;
    left: 360px;
    width: 720px;
    height: 480px;
    /* background-color: #dbdbdb; */
}

.project .img1 {
    display: block;
}

.project .img2 {
    display: none;
}

.project .img3 {
    display: none;
}

.image-slider img {
    /* display: none;  */
    position: relative;
    top: 215px;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease; /* Smooth transition */
    cursor: pointer;
}

.project .image-slider .left:hover img,
.project .image-slider .right:hover img {
    opacity: 1; /* Fully visible on hover */
    /* display: block;  */
}

.project .image-slider .right {
    position: absolute;
    top: 0;
    left: 360px;
    width: 360px;
    height: 480px;
    /* background-color: red; */
    color: white;
}

/* .project .image-slider .right:hover {
    background-color: red;
} */

.project .image-slider .left {
    position: absolute;
    top: 0;
    left: 0;
    width: 360px;
    height: 480px;
    /* background-color: blue; */
    color: white;
}

.image-slider img {
    position: relative;
    top: 215px;
}

.image-slider .left img {
    position: relative;
    left: 22px;
}

.image-slider .right img {
    float: right;
    position: relative;
    right: 22px;
    transform: scaleX(-1);
}


/* .project .image-slider .left:hover {
    background-color: blue;
} */

.image-slider .header-guideline-left {
    position: absolute;
    top: 0;
    left: 720px;
    width: 360px;
    height: 480px;
    background-color: blue;
}

.project1 .complement,
.project3 .complement,
.project5 .complement {
    position: absolute;
    top: 0;
    left: 0;
    width: 720px;
    height: 480px;
    background-color: #e4e4e400;
    background-image: repeating-linear-gradient(45deg, #999, #999 1px, transparent 1px, transparent 12px);
    transform: translateX(-720px);
    /* border-right: 1px solid #bbb; */
}

.project2 .complement,
.project4 .complement,
.project6 .complement {
    position: absolute;
    top: 0;
    left: 0;
    width: 720px;
    height: 480px;
    background-color: #E4E4E400;
    background-image: repeating-linear-gradient(45deg, #999, #999 1px, transparent 1px, transparent 12px);
    transform: translateX(1080px);
    border-right: 1px solid #bbb;
}

.project1 .post-complement,
.project3 .post-complement,
.project5 .post-complement {
    position: absolute;
    top: 0;
    left: 0;
    width: 960px;
    height: 480px;
    background-color: rgb(243, 243, 243);
    background-image: linear-gradient(45deg, #000 1px, transparent 1px);
    background-size: 12px 12px;
    transform: translateX(1080px);
}

.project2 .post-complement,
.project4 .post-complement,
.project6 .post-complement {
    position: absolute;
    top: 0;
    left: 360px;
    width: 960px;
    height: 480px;
    background-color: rgb(243, 243, 243);
    background-image: linear-gradient(45deg, #000 1px, transparent 1px);
    background-size: 12px 12px;
    transform: translateX(-1320px);
    /* border-right: 1px solid #bbb; */
    /* background-image: repeating-linear-gradient(45deg, #999, #999 1px, transparent 1px, transparent 12px); */
}


.project1 {
    top: 2453px;
    transform: translateX(-720px);
}

.project2 {
    top: 3293px;
    transform: translateX(-360px);
}

.project3 {
    top: 4133px;
    transform: translateX(-720px);
}

.project4 {
    top: 4973px;
    transform: translateX(-360px);
}

.project5 {
    top: 5813px;
    transform: translateX(-720px);
}

.project6 {
    top: 6653px;
    transform: translateX(-360px);
}

/* projects */

.project1 div,
.project3 div,
.project5 div {
    position: absolute;
    top: -10px;
    left: 720px;
    width: 360px;
}

.project2 div,
.project4 div,
.project6 div {
    position: absolute;
    top: -10px;
    left: 0px;
    width: 360px;
}

.project2 img,
.project4 img,
.project6 img {
    position: absolute;
    right: 0px;
}

.project-title {
    position: absolute;
    top: 5px;
    text-transform: uppercase;
    font-size: 28px;
    margin-left: 30px;
    margin-right: 20px;
}

.project-client {
    color: #666;
    position: absolute;
    top: 132px;
    text-transform: uppercase;
    font-weight: bolder;
    margin-left: 30px;
}

.project-description {
    position: absolute;
    top: 180px;
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    margin-left: 30px;
    margin-right: 30px;
}

.projects-guide1 {
    display: block;
    position: absolute;
    width: 1px;
    height: 480px;
    background-color: #bbb;
    top: 2453px;
    left: 50%;
    transform: translate(360px, -0);
    z-index: 3;
}

.projects-guide2 {
    display: block;
    position: absolute;
    width: 1px;
    height: 480px;
    background-color: #bbb;
    top: 3293px;
    left: 50%;
    transform: translate(-360px, -0);
    z-index: 3;
}

.projects-guide3 {
    display: block;
    position: absolute;
    width: 1px;
    height: 480px;
    background-color: #bbb;
    top: 4133px;
    left: 50%;
    transform: translate(360px, -0);
    z-index: 3;
}

.projects-guide4 {
    display: block;
    position: absolute;
    width: 1px;
    height: 480px;
    background-color: #bbb;
    top: 4973px;
    left: 50%;
    transform: translate(-360px, -0);
    z-index: 3;
}

.projects-guide5 {
    display: block;
    position: absolute;
    width: 1px;
    height: 480px;
    background-color: #bbb;
    top: 5813px;
    left: 50%;
    transform: translate(360px, -0);
    z-index: 3;
}

.divider {
    position: absolute;
    display: none;
    width: 100%;
    height: 1px;
    background-color: #bbb;
}

.project button {
    border-top: solid 1px #999;
    border-left: none;
    border-bottom: none;
    border-right: none;
    background-color: white;
    position: absolute;
    bottom: -489px;
    width: 100%;
    font-family: inherit;
    text-transform: uppercase;
    font-size: 19.2px;
    padding: 12.8px 19.2px;
    cursor: pointer;
    z-index: 10;
    overflow: hidden;
    transition: background-color 0.3s ease;
    transition-delay: 0.3s;
}

.front-text {
    transition: opacity 0.3s ease;
}

.project button .front-text {
    opacity: 1;
}

.project button:not(:hover) .front-text {
    opacity: 1;
    transition: opacity 0.3s ease;
    transition-delay: 0.6s;
}

.over-text {
    position: absolute;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    transition-delay: 0.3s;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 60s linear;
}

/* Hover state */
.project button:hover .front-text {
    opacity: 0;
}

/* Hover state */
.project button:hover .front-text {
    opacity: 0;
}

.project button:hover .over-text {
    opacity: 1;
    /* Fade in */
    transform: translateX(-100%);
    /* Move left across the button */
    transition-delay: 0.3s;
    /* Delay before the animation starts */
}

/* Pseudo-element for orange overlay */
.project button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--orange-color);
    z-index: -1;
    transition: left 0.3s ease;
}

.project button:not(:hover)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--orange-color);
    z-index: -1;
    transition: left 0.3s ease;
    transition-delay: 0.3s;
}

.project button .front-text:not(:hover)::before {
    transition: left 0.3s ease;
    transition-delay: 1s;
}

.project button .front-text::before {
    opacity: 0%;
}

/* Hover effect: Slide in the orange background */
.project button:hover::before {
    left: 0;
}

/* Line reveal effect */
.project button .line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #672400;
    position: absolute;
    bottom: 0;
    left: 0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.3s ease;
}

/* Hover effect: Reveal the line */
.project button:hover .line {
    clip-path: inset(0 0 0 0);
    transition-delay: 0.15s;
}

/* /about */

#about .body {
    position: absolute;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
    left: 50%;
    top: 6653px;
    background-color: white;
    height: 768px;
    width: 1440px;
    transform: translateX(-720px);
}

#about .reference {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 40%;
}

#about .body-bg {
    z-index: -1;
    position: absolute;
    left: 0%;
    top: 6653px;
    background-color: white;
    height: 768px;
    width: 2448px;
    background-image: repeating-linear-gradient(45deg, #666, #666 1px, transparent 1px, transparent 12px);
}

#about .mantra {
    position: absolute;
    top: -80px;
    left: 222px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38.4px;
    font-weight: normal;
    color: black;
}

#about .mantra-follow-up {
    font-family: 'Barlow', sans-serif;
    position: absolute;
    top: 216px;
    left: 66px;
    width: 600px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25.6px;
    font-weight: normal;
    color: black;
}

#about .about-title {
    position: absolute;
    top: 67.2px;
    left: 84.8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#about .fill-slot1 {
    position: absolute;
    top: 0;
    left: 720px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 240px;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
}

#about .fill-slot1::before,
#about .fill-slot1::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 180%;
    background-color: #bbb;
}

#about .fill-slot1::before {
    transform: rotate(56.5deg);
}

#about .fill-slot1::after {
    transform: rotate(-56.5deg);
}

#about .fill-slot2 {
    position: absolute;
    top: 0;
    left: 1080px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 240px;
}

#about .fill-slot3 {
    position: absolute;
    top: 240px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 240px;
}

#about .fill-slot4 {
    position: absolute;
    top: 504px;
    left: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 240px;
}

#about .fill-slot5 {
    background-color: black;
    position: absolute;
    top: 240px;
    left: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1040px;
    height: 240px;
    overflow: hidden;
}

#about .fill-slot5 p {
    position: absolute;
    top: -40px;
    left: -2.4px;
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38.4px;
    font-weight: normal;
    color: var(--orange-color);
}

#about .fill-slot6 p {
    position: absolute;
    top: -50px;
    left: -3px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38.4px;
    font-weight: normal;
    color: black;
}

#about .fill-slot6 {
    background-color: white;
    position: absolute;
    top: 240px;
    left: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1040px;
    height: 240px;
    overflow: hidden;
    transition: width 0.5s ease;
    /* Smooth transition for width */
    transform-origin: right;
    /* Changes the origin for the width reduction */
}

#about .fill-slot7 {
    background-color: black;
    position: absolute;
    top: 240px;
    left: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1040px;
    height: 240px;
    overflow: hidden;
}

#about .fill-slot7:hover+.fill-slot6 {
    left: 0px;
    /* Shrinks .fill-slot6 to 0 on hover */
}

#contact .body {
    position: absolute;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
    left: 50%;
    top: 7780px;
    background-color: black;
    height: 720px;
    width: 1440px;
    transform: translateX(-720px);
}

#contact .body-bg {
    z-index: -1;
    position: absolute;
    left: 0%;
    top: 7780px;
    background-color: black;
    height: 720px;
    width: 2560px;
    background-image: repeating-linear-gradient(45deg, #666, #666 1px, transparent 1px, transparent 12px);
}

#contact .titlebox {
    z-index: 5;
    position: absolute;
    left: 720px;
    width: 720px;
    height: 192px;
    background-color: black;
    transform: translate(0, 0);
    overflow: hidden;
}

#contact .titlebox h3 {
    position: relative;
    top: -86.4px;
    color: #3b3b3b;
    font-size: 124.8px;
    font-weight: bolder;
}

#contact .c-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: contact-marquee 30s linear infinite;
}

@keyframes contact-marquee {
    from {
        transform: translateX(0px);
    }

    to {
        transform: translateX(-720px);
    }
}

#contact .contact-text {
    position: absolute;
    top: 0;
    left: 80px;
    width: 520px;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 33.6px;
    font-weight: normal;
    color: white;
}

#contact .box-x {
    position: absolute;
    top: 240px;
    left: 0;
    width: 360px;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

#contact .box-x::before,
#contact .box-x::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 180%;
    background-color: #bbb;
}

#contact .box-x::before {
    transform: rotate(56.5deg);
}

#contact .box-x::after {
    transform: rotate(-56.5deg);
}

#contact .box-mail {
    position: absolute;
    top: 240px;
    left: 360px;
    width: 1080px;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(22, 22, 22);
    overflow: hidden;
    transition: background-color 0.3s ease;
}

#contact .box-mail a {
    font-family: 'Barlow', sans-serif;
    font-size: 92px;
    color: #666;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

#contact .box-mail::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 0;
    transition: left var(--transition-duration-ease);
}

#contact .box-mail:hover::before {
    left: 0;
}

#contact .box-mail:hover a {
    color: black;
}

#contact .box-mail:hover {
    cursor: pointer;
}

#contact .fineprint p {
    position: absolute;
    top: 656px;
    left: 376px;
    width: 320px;
    height: 96px;
    font-family: Barlow, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

#contact .socialmedia1 {
    position: absolute;
    top: 480px;
    left: 0;
    width: 360px;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact .socialmedia2 {
    position: absolute;
    top: 240px;
    left: 360px;
    width: 360px;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact .socialmedia3 {
    position: absolute;
    top: 0;
    left: 720px;
    width: 360px;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact .socialmedia4 {
    position: absolute;
    top: -240px;
    left: 1080px;
    width: 360px;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact .svg-icon {
    cursor: pointer;
    transition: fill 0.3s ease;
}

#contact .svg-icon {
    position: relative;
    cursor: pointer;
    transition: fill 0.3s ease;
    overflow: hidden;
}

#contact .svg-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(22, 22, 22);
    z-index: 0;
    transition: left var(--transition-duration-ease);
}

#contact .svg-icon:hover::before {
    left: 0;
}

#contact .svg-icon:hover img {
    opacity: 80%;
}

#contact .svg-icon img {
    position: relative;
    z-index: 1;
    opacity: 30%;
    transition: opacity 0.3s ease;
    transform: scale(0.8);
    /* Reduce the scale by 20% */
}

.contacts-guide1 {
    display: block;
    position: absolute;
    top: 8020px;
    width: 1px;
    background-color: #bbb;
    height: 480px;
    left: 50%;
    transform: translate(-360px, -0);
    z-index: 3;
}

.contacts-guide2 {
    display: block;
    position: absolute;
    top: 7780px;
    width: 1px;
    background-color: #bbb;
    height: 240px;
    left: 50%;
    transform: translate(0, -0);
    z-index: 3;
}

.contacts-guide3 {
    display: block;
    position: absolute;
    top: 8260px;
    width: 1px;
    background-color: #bbb;
    height: 240px;
    left: 50%;
    transform: translate(0, -0);
    z-index: 3;
}

.contacts-guide4 {
    display: block;
    position: absolute;
    top: 8260px;
    width: 1px;
    background-color: #bbb;
    height: 240px;
    left: 50%;
    transform: translate(0, -0);
    z-index: 3;
}

.contacts-guide5 {
    display: block;
    position: absolute;
    top: 8260px;
    width: 1px;
    background-color: #bbb;
    height: 240px;
    left: 50%;
    transform: translate(360px, -0);
    z-index: 3;
}

#bottom-footer {
    position: relative;
    z-index: 8;
    top: 8030px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 48px;
    background-color: black;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-top: #bbb 1px solid;
}

#bottom-footer span {
    color: #999;
}