@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300;400;500;600;700&family=Ysabeau:wght@100;200;300;400;500;600;700;800;900;1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@300;400;500;600;700;800;900&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body{
    font-family: 'Geologica', sans-serif;
    background: #000000;
    overflow-x: hidden;
}
:root{
    --accentcolor:rgb(246, 145, 33);
}
.logo{
    position: fixed;
    
    z-index: 9999;
    display: flex;
    align-items: center;
}
.logo svg{
    width: auto;
    transition: all 0.3s ease-out;
}
.drop #logo-right{
    height: 27px;
    transform: translate(-57px, 43px);
}
.scroll-color{
    transition: all 0.3s ease-out;
}
.drop .scroll-color{
    fill: #abadaf;
}
.header{
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 99;
}
.main{
    position: fixed;
    top: 86px;
    transform: translateX(-50%);
    left: 50%;
    z-index: 998;
    transition: all 0.3s ease-out;
}
.main.scrollup{
    opacity: 0;
    transform: translateX(-50%) translateY(-40px);
}
.main ul{
    display: flex;
    gap: 45px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.main ul li{
    height: 24px;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    position: relative;
}
.main ul li:has(span.location){
    overflow: visible;
}

.main ul li span.location{
    position: absolute;
    bottom: -17px;
    left: 50%;
    font-size: 0.75rem;
    transform: translateX(-50%);
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 300;
    display: none;
}
.main ul li a{
    display: block;
    color: #fff;
    text-decoration: none;
}
.main ul li a span{
    display: block;
    transition: all 0.3s ease-out;
}
.main ul li a span:last-child{
    color: var(--accentcolor);
}
.main ul li a:hover span{
    transform: translateY(-24px);
}
.header-menu{
    display: flex;
    position: fixed;
    gap: 15px;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
}
.header-menu.hide-text > span{
    opacity: 0;
}
.header-menu span{
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease-out;
}
.burger-menu{
    aspect-ratio: 1/1;
    background: var(--accentcolor);
    border-radius: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 15px;
}
.burger-menu svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}
.header-menu:hover svg circle{
    stroke-dashoffset: 0;
}
.burger-menu svg circle{
    fill: none;
    stroke: var(--accentcolor);
    stroke-width: 2;
    stroke-dasharray: 360;
    stroke-dashoffset: 360;
    transform-origin: center 50%;
    transition: all 0.6s cubic-bezier(0.16, 0.01, 0.77, 1);
}
.burger-menu span{
    display: block;
    border-bottom: 2px solid #fff;
    width: 100%;
    transition: all 0.3s ease-out;
}
.close-state .burger-menu span:nth-of-type(2){
    border-color: transparent;
}
.close-state .burger-menu span:nth-of-type(1){
    transform: translateY(6px) rotate(45deg);
}
.close-state .burger-menu span:nth-of-type(3){
    transform: translateY(-6px) rotate(-45deg);
}
.hero-container{
    overflow: hidden;
    position: relative;
}
.video{
    height: 100vh;
}
.video .hero-scroll{
    top: auto;
    bottom: 0px;
    line-height: 1;
}
.video .hero-scroll span{
    -webkit-text-stroke:  1px #fff;
}
.video .hero-social{
    background: transparent;
}
.video-container{
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.7;
}
.video-container video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-container{
    max-width: 1440px;
    width: 100%;
    margin:0 auto;
    padding-inline: 1.6rem;
}
.hero-image{
    position: relative;
    z-index: 1;
}
.cliped-image{
    height: calc(100vh - 450px);
    clip-path: inset(0% 30%);
}
.hero-image img{
    width: 100%;
    height: 100%;
    /* aspect-ratio: 16/8; */
    object-fit: cover;
    filter: brightness(0.7);
    
}
.hero-image video{
    width: 100%;
    height: 100%;
    /* aspect-ratio: 16/8; */
    object-fit: cover;
    filter: brightness(0.9);        
}
.hero-title{
    line-height: 0.8;
    color: #fff;
    /*font-size: 90px;*/
    text-align: center;
}
.hero-title span{
    position: relative;
    display: inline-block;
}
.hero-title span:before{
    content: "";
    height: 23px;
    width: calc(100% + 30px);
    position: absolute;
    bottom: 0;
    background: var(--accentcolor);
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
}
.site-navigation .hero-scroll{
    bottom: 0;
    top: auto;
    opacity: 0;
    line-height: 1;
    pointer-events: all;
    animation: my-animation 120s linear infinite;
}

.site-navigation .hero-scroll span:hover{
    color: var(--accentcolor);
    opacity: 1;
}

.hero-scroll{
    position: absolute;
    top: -130px;
    left: 0;
    z-index: -1;
    pointer-events: none;
    display: inline-flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 60px;
    animation: my-animation 160s linear infinite;
    /* transform: translateX(-50%); */
}
.hero-scroll span{
    color: var(--accentcolor);
    -webkit-text-stroke: 1px var(--accentcolor);
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    position: relative;
    transition: all 0.3s ease-out;
    user-select: none;
}
.hero-scroll span:before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border: 1px solid var(--accentcolor);
    width: 14px;
    aspect-ratio: 1/1;
    right: -37px;
    border-radius: 100%;
}

@keyframes my-animation {
    from {
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
  
    to {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
  }
.preloader-container{
    position: fixed;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    transform-origin: bottom;
}
.preloader-title span{
    color: #fff;
    font-size: 70px;
    display: block;
    opacity: 0.2;
    line-height: 1;
}
.preloader-title span.p-title-1{
    font-size: 100px;
}
.preloader-line{
    display: inline-block;
    position: relative;
    z-index: 1;
}
.line{
    height: 23px;
    width: calc(100% + 30px);
    position: absolute;
    bottom: 13px;
    background: var(--accentcolor);
    z-index: -1;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: left;
}
#circle{
    position: fixed;
    /* top: 50%;
    left: 50%; */
    transform: translate(-50%,-50%);
    pointer-events: none;
    z-index: 99999;
    transform-origin: center center;
    /* mix-blend-mode: difference; */
}
.circle-shape{
    width: 20px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    background: var(--accentcolor);
    border: 1px solid var(--accentcolor);
    transition: all 0.3s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.active{
    background: transparent;
    width: 70px;
}
.hide{
    transform: scale(0);
}
/* #circle.active-project{
    mix-blend-mode: difference;
} */
#circle.active-project{
    mix-blend-mode: difference;
}
#circle.active-project .circle-shape{
    
    width: 150px;
    background: url('images/9am_logo_white.png') no-repeat center center / 100%;
    border-color: transparent;
    /* backdrop-filter: blur(10px); */
    
}
#circle.active-menu{
    mix-blend-mode: difference;
    
}
#circle.active-menu .circle-shape{
    width: 120px;
    background: #fff;
    border-color: transparent;
}
#circle.gallery-menu .circle-shape{
    width: 120px;
  /*  background: rgb(246 145 33 / 80%);*/
  background: rgba(33, 33, 32, 0.8);
  
    backdrop-filter: blur(3px);
    border-color: transparent;
    color: #fff;
}
#circle.gallery-menu .circle-shape:before{
    content: "Thank you 😍";
}
.hero-social ul{
    margin:0;
    padding:0;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}
.hero-social ul a{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    
    /* border-bottom: 1px solid #fff; */
}
.hero-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
    row-gap: 10px;
    column-gap: 20px;
}
.hero-buttons a{
    display: block;
    height: 60px;
    background: #fff;
    overflow: hidden;
    color: #000;
    text-decoration:none;
    width: max-content;
}
.hero-buttons a:last-child{
    background: #000;
    /* color: #fff; */
}
.hero-buttons a span{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0 40px;
    font-size: 18px;
    font-weight: 300;
    height: 100%;
    transition: all 0.3s ease-out;
}
.hero-buttons a:hover span{
    transform: translateY(-100%);
}
.hero-buttons a:last-child span:last-child{
    color: var(--accentcolor);
}
.site-navigation__details{
    opacity: 0;
}
.site-navigation__details ul{
    margin: 0;
    padding: 0;
    list-style: none;
    color: #fff;
    font-size: 26px;
    display: grid;
    gap: 15px;
    max-width: 480px;
    border-left: 1px solid #fff;
    padding-left: 50px;
    line-height: 1.6;
    font-weight: 300;
}
.site-navigation__details ul li{
    display: flex;
    align-items: center;
    gap: 25px;
}
.site-navigation__details ul li span{
    flex:1;
    display: block;
}
.site-navigation__details ul li svg{
    width: 30px;
    height: auto;
}
.site-navigation{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    padding:100px;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    background: #000;
    transform-origin: top;
    transform: scaleY(0); 
}
.site-navigation__menu ul{
    display: grid;
    gap: 20px;
    list-style: none;
    margin:0;
    padding:0;
}
.site-navigation__menu ul li{
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding-right: 90px;
}
.site-navigation__menu a{
    display: inline-block;
    color: #fff;
    font-size: 60px;
    /* overflow: hidden; */
    /* position: relative; */
    line-height: 1;
    font-weight: 300;
    letter-spacing: -3px;
    text-decoration: none;
    transform: translateY(100%);
}
.site-navigation__menu a svg{
    width: 40px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 100%;
    margin-left: 30px;
    transition: all 0.3s ease-out;
    transform: rotate(-45deg) translateY(-50%);
}
.site-navigation__menu a svg *{
    transition: all 0.3s ease-out;
}
.site-navigation__menu a:hover svg{
    transform: rotate(0) translateX(10px) translateY(-50%);
}
.site-navigation__menu a:hover svg *{
    fill: var(--accentcolor);
}
.home-slogan{
    padding:100px 0;
}

.slogan-title{
    position: relative;
    display: inline;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    /* font-size: 50px; */
    -webkit-text-fill-color: rgb(255 255 255 / 25%);
    background-image: linear-gradient(#fff, #fff);
    line-height: 1.2;
    font-weight: 900;
    /* letter-spacing: -3px; */
    transform: translateY(100px);
}
.section{
    padding:100px 0;
}
.section-title{
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-title.white h2{
    color: black;
    border-color: black;
}
.section-title h2{
    color: #f69121;
    /* -webkit-text-stroke: 1px #fff; */
    font-weight: 300;
    font-size: 34px;
    margin:0;
    text-transform: uppercase;
    /* letter-spacing: -2px; */
    border-left: 1px solid #fff;
    padding-left: 20px;
}
.home-industries-list{
    list-style: none;
    margin:0;
    padding:0;
    display: grid;
    /* gap: 11px; */
}
.home-industries-list a{
    /* display: inline-flex; */
    align-items: center;
    color: #fff;
    /* font-size: 50px; */
    font-weight: 300;
    text-decoration: none;
}
.home-industries-list a svg{
    width: 35px;
    height: auto;
    transform: rotate(45deg);
    margin-left: 20px;
    transition: all 0.3s ease-out;
}
.home-industries-list a:hover svg{
    transform: rotate(-45deg);
}
.hover-clients-container{
    height: 100%;
    position: relative;
}
.hover-client-url{
    display: flex;
    align-items: center;
    padding:0 20px;
    border: 1px solid #fff;
    font-size: 15px;
    position: absolute;
    height: 35px;
    left: 0;
    top: -35px;
    width: 100%;
    color: #fff;
    text-decoration: none;
}
.hover-client{
    background: black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* clip-path: inset(100% 0%); */
    opacity: 0;
    transition: all 0.3s ease-out;
}
.hover-scroll-wrapper{
    height: 100%;
    overflow: hidden;
}
.hover-client-icon{
    width: 100%;
    padding:20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / 50%);
    backdrop-filter: blur(6px);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.hover-client-icon img{
    max-width: 200px;
    height: 50px;
    object-fit: contain;
}
.hover-client.active{
    opacity: 1;
}
.hover-client.active .hover-scroll-wrapper > img{
    animation: scroll 10s 0.8s linear alternate;
}
.hover-scroll-wrapper > img{
    width: 100%;
}
@keyframes scroll {
    from{
        transform: translateY(0);
    }
    to{
        transform: translateY(calc(-100% + 505px));
    }
}
.main-cta{
    display: block;
    height: 60px;
    background: #000;
    overflow: hidden;
    /* color: #fff; */
    transition: all 0.3s ease-out;
    text-decoration: none;
}
.main-cta.orange{
    background: var(--accentcolor);
}
.main-cta.orange:hover{
    color: #000;
}
.main-cta.white{
    background: #fff;
    color: #000;
}
.main-cta span{
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 40px;
    font-size: 18px;
    font-weight: 500;
    height: 100%;
    transition: all 0.3s ease-out;
}
.main-cta:hover span{
    transform: translateY(-100%);
}
.main-cta:hover{
    color: var(--accentcolor);
}
.clients-list{
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    white-space: nowrap;
}
.section-title-cta{
    /* width: 120px;
    height: 120px; */
    /* aspect-ratio: 1/1; */
    border:1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-out;
}
.section-title-cta:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    transition: all 0.3s ease-out;
    background: #000;
    border-radius: 50%;
    z-index: -1;
}
.section-title-cta:hover:before{
    transform: translate(-50%,-50%) scale(1);
}
.section-title-cta:hover{
    border-color: transparent;
}
.section-title-cta:hover svg{
    transform: rotate(0);
}
.section-title-cta svg{
    width: 35px;
    height: 35px;
    transition: all 0.3s ease-out;
    transform: rotate(-45deg);
}
.section-title-cta svg *{
    fill: #fff;
    transition: all 0.3s ease-out;
}
.section-title-cta.white:before{
    background: var(--accentcolor);
}
.dark-section{
    background: #000;
}
.services{
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
.services .page-container{
    position: relative;
    z-index: 1;
}
.service-image{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease-out;
}
.service-image.active{
    opacity: 1;
}
.service-image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    filter: brightness(20%);
}
.services p{
    color: #fff;
    font-size: 20px;
}

/* .services-list a{
    display: block;
    border-bottom: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    padding:25px 0;
    position: relative;
} */
.services-list li:before{
    content: "";
    width: 0;
    height: 1px;
    background: var(--accentcolor);
    position: absolute;
    bottom: -1px;
    left: 0;
    transition: all 0.3s ease-out;
}
.services-list li:hover:before{
    width: 100%;
}
.services-list li:hover svg{
    margin-right: 0;
}
.services-list svg{
    width: 40px;
    margin-right: 40px;
    transition: all 0.3s ease-out;
    height: auto;
}
.services-list li:hover svg *{
    fill: var(--accentcolor);
}
.services-list svg *{
    transition: all 0.3s ease-out;
}
.services-list ul{
    margin:0;
    padding:0;
    list-style: none;
}
/* .services-list li:first-child a{
    padding-top: 0;
} */
.services-wrapper{
    gap: 60px;
}
.gallery-item img{
    border-radius: 5px;
    overflow: hidden;
}
.home-project{
    position: relative;
    overflow: hidden;
    height: 620px;
    background: #000;
}
.home-project:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    background: rgb(0 0 0 / 90%);
    z-index: 2;
}
.home-project-slider{
    position: absolute;
    top: 50%;
    transform: rotate(13deg) translate(-10%, calc(-50% + 200px));
    display: flex;
    gap: 20px;
    white-space: nowrap;
}
.home-project-slider.home-slider-2{
    transform: rotate(13deg) translate(0, calc(-50% - 120px));
}
.home-project-slider.home-slider-3{
    transform: rotate(13deg) translate(-10%, calc(-50% + 520px));
}
.home-project-slider img{
    width: 300px;
    aspect-ratio: 1/1;
    object-fit: cover;
    transform: skewX(-30deg);
}
.project-start{
    font-weight: 900;
    cursor: pointer;
    animation:scrollText 40s linear alternate infinite;
}

.project-start span:hover{
    opacity: 1;
}
@keyframes scrollText{
    
    to{
        transform: translate(-90%,-50%);
    }
}
.footer{
    background: #000;
    padding:80px 0;
    text-align: center;
}
.footer-logo{
    width: 40px;
}
.footer-logo .arrow{
    animation:footerarrow 4s ease-in-out alternate infinite;
}
@keyframes footerarrow{
    0%{
        transform:translate(0,0);
    }
    50%{
        transform:translate(-25px,-25px);
    }
    100%{
        transform:translate(0,0);  
    }
}
.footer .transition-cta{
    height: 40px;
}
.footer .transition-cta span:nth-child(2){
    color: var(--accentcolor);
}
.transition-cta{
    display: block;
    color: #fff;
    line-height: 1;
    font-size: 36px;
    overflow: hidden;
    text-decoration: none;
}
.transition-cta span{
    display: block;
    height: 100%;
    transition: all 0.3s ease-out;
}
@media(hover:hover){
    .transition-cta:hover span{
        transform: translateY(-100%);
    }
};
.footer-nav{
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid #ffffff80;
    gap: 60px;
    list-style: none;
    margin: 40px 0 0 0;
    /* padding:0; */
}
.footer-nav a{
    display: block;
    font-size: 18px;
    font-weight: 300;
    color: #ffffff80;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease-out;
}
.footer-nav a:after{
    content: "";
    width: 4px;
    /* height: 10px; */
    background:#ffffff80;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -32px;
    border-radius: 100%;
    aspect-ratio: 1/1;
}
.footer-nav li:last-child a:after{
    display: none;
}
.footer-nav a:hover{
    color: #fff;
}
.copyright p{
    color: #fff;
    font-size: 16px;
    margin:40px 0 0 0;
}
.site-navigation__ctas{
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    top: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.industries-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.industry-box{
    aspect-ratio: 1.4;
    background: #fff;
    position: relative;
    padding:40px;
    border-radius: 5px;
    /* overflow: hidden; */
}
.industry-box svg{
    width: 40px;
    height: auto;
    position: absolute;
    bottom: 40px;
    right: 40px;
}
.industry-box svg *{
    fill: var(--accentcolor);
}

.industry-box h3{
    color: #000;
    font-size: 23px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 300;
}
.industry-images{
    position: absolute;
    inset: 0;
    z-index: 2;
    background: var(--accentcolor);
    padding: 40px;
    opacity: 0;
    transform: scale(2);
    transition: all 0.3s 0.3s ease-out;
    border-radius: 5px;
    pointer-events: none;
}
.industry-images-wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    transition: all 0.3s ease-out;
    opacity: 0;
}
.industry-box:hover .industry-images{
    transform: scale(1);
    opacity: 1;
    transition: all 0.3s ease-out;
} 
.industry-box:hover .industry-images-wrapper{
    transform: scale(1);
    opacity: 1;
    transition: all 0.3s 0.3s ease-out;
} 
.industry-images-wrapper img{
    width: 100%;
}
.hero-buttons-projects{
    top: calc(50% + 140px);
}
.hero-buttons-projects a:last-child{
    background: var(--accentcolor);
}
.hero-buttons.hero-buttons-projects a span:last-child{
    color: #000;
}

.footer-slogan span{
    color: white;
    -webkit-text-stroke: 1px white;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 0px;
}
.footer-slogan span:last-child{
    color: #fff;
    font-size: 36px;
    /* margin-top: -7px; */
}
.clients-slider{
    position: absolute;
    inset: 0;
}
.client-logo{
    text-align: center;
}
.client-logo img{
    width: 200px;
    height: 80px;
    object-fit: contain;
    margin-inline: auto;
}
.industries-list{
    display: flex;
    border:1px solid #fff;
    border-right: 0;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 100px;
}
.industries-list > div{
    flex:1;
    position: relative;
    border-right: 1px solid #fff;
    height: 600px;
    cursor: pointer;
    transition: all 0.3s ease-out;
}
.industries-list > div:hover{
    background: #fff;
    flex:3;
}
.industries-list > div:hover span{
    opacity: 0;
    bottom: 50px;
}
.industries-list > div:hover .industries-logos{
    opacity: 1;
}
.industries-list span{
    position: absolute;
    bottom: 30px;
    writing-mode: vertical-lr;
    left: 30px;
    transform: rotate(180deg);
    color: #fff;
    font-size: 50px;
    transition: all 0.3s ease-out;
    font-weight: 300;
    pointer-events: none;
}
.industries-logos{
    padding:60px;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease-out;
}
.industries-logos h3{
    color: #000;
    font-size: 22px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 300;
}
.industries-logos > div{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}
.industries-logos img{
    width: 100%;
}
.top-bar-container{
    border-bottom: 1px solid #ffffff4d;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    padding: 12px 40px;
    display: flex;
    z-index: 99;
    justify-content: flex-end;
}
.top-bar-container ul{
    display: flex;
    gap: 20px;
    list-style: none;
    margin:0;
    padding:0;
}
.top-bar-container ul a{
    color: #fff;
    transition: all 0.3s ease-out;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
}
.top-bar-container ul a:hover{
    color: var(--accentcolor);
}
.logos-sliders{
    background: #f69121;
}
.logos-row{
    overflow: hidden;
    white-space: nowrap;
}
.right .logos-scroller{
    animation:logosscrollright 20s linear infinite;
}
.logos-scroller{
    animation:logosscroll 20s linear infinite;
    display: inline-flex;
    white-space: nowrap;
    gap: 10px;
}
.logos-scroller figure{
    margin:0;
    width: 100px;
}
.logos-scroller img{
    width: 100px;
    object-fit: contain;
    height: 100px;
    transition: all 0.3s ease-out;
}
.post-content img:not(.author-icon){
    border-radius: 1.3rem;
}
.main-content ul{
    list-style: disc;
    margin-left: 23px;
}
@keyframes logosscroll {
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-50%);
    }
}
@keyframes logosscrollright {
    0%{
        transform: translateX(-50%);
    }
    100%{
        transform: translateX(0%);
    }
}
.outline-text{
    -webkit-text-stroke: 2px var(--accentcolor);
}
.white-image{
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.gallery-icon{
    background: white;
    padding-inline: 15px;
}
@media(max-width:1280px){
    .site-navigation__menu a{
        font-size: 3.2rem;
    }
}
@media(max-width:1024px){
    .services .service-item p{
        display: block;
        opacity: 0.8;
        font-size: 17px;
        line-height: 1.4;
    }
   
    .site-navigation{
        justify-content: flex-start;
    }
    .section{
        padding:60px 0;
    }
    .section-title h2{
        font-size: 1.6rem;
    }
    .home-slogan{
        padding-bottom: 60px;
    }
    .transition-cta{
        font-size: 1.4rem;
        height: auto;
    }
    .footer .transition-cta{
        height: auto;
    }
    .footer .transition-cta span:nth-child(2){
        display: none;
    }
    .footer-slogan span:last-child,.footer-slogan span{
        font-size: 1.4rem;
    }
    
    .hero-scroll{
        display: none;
    }
    .hero-image{
        margin-inline:-1.6rem;
         height: calc(100svh - 49px);
    }
    .hero-image img{
        height: calc(100svh - 49px);
        filter: brightness(0.3);
    }
    .hero-image video{
         height: calc(100svh - 49px);
        filter: brightness(0.7);
    }
    .cliped-image{
        clip-path: inset(0%);
        height: auto;
    }
    .hero-buttons:not(.hero-buttons-projects){
        top: auto;
        transform: none;
        bottom: 1.6rem;
        inset-inline: 1.6rem;
        justify-content: center;
    }
    .hero-buttons a{
        height: 45px;
    }
    .hero-buttons a span{
        padding-inline: 15px;
        font-size: 1rem;

    }
    .home-project{
        height: 400px;
    }
    .hero-buttons-projects{
        top: calc(50% + 100px);
    }
    .site-navigation{
        align-items: flex-end;
        padding: 2.6rem;
    }
    .site-navigation__menu ul li{
        padding-right: 50px;
    }
    .site-navigation__menu a{
        font-size: 2.5rem;
    }
    .site-navigation__menu a svg{
        width: 25px;
    }
    .services-list svg{
        width: 20px;
        margin-right: 0;
    }
}
@media(max-width:768px){
    .logos-scroller img,.logos-scroller figure{
        width: 140px;
        height: 140px;
    }
    .site-navigation{
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 60px;
    }
}
@media(max-width:640px){
    .drop #logo-right{
        transform: translate(-46px, 34px);
    }
    .hero-title span:before{
        width: 100%;
        height: 13px;
    }
    .transition-cta{
        font-size: 1rem;
    }
    .top-bar-container{
        padding-inline: 20px;
    }
    .top-bar-container ul{
        width: 100%;
        justify-content: space-between;
    }
    .site-navigation{
        padding:2rem
    }
}