@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Sometype+Mono:ital,wght@0,400..700;1,400..700&display=swap');

:root{
    --host:"Host Grotesk", sans-serif;
    --dm:"DM Mono", monospace;
    --s-mono:"Sometype Mono", monospace;
    --black:#000000;
    --white:#FFFFFF;
    --white50:rgba(255,255,255,0.5);
    --white40:rgba(255,255,255,0.4);
    --charcoal : #131313;
    --light-blue : #ABBBBB;
    --maroon : #421511;
    --orange:#FE7E01;
}
.page-content, .entry-content, .entry-summary,
.post, .page{
    margin: 0 ;
}
body{
    font-family: var(--host);
}
body.home.loading,
body.navbar-open{
    overflow: hidden;
}
h1{
    font-size: 48px;
    line-height: 53px;
    font-family: var(--host);
}
h2{
    font-size: 36px;
    line-height: 45px;
    font-weight: 400;
    font-family: var(--host);
}
h3{
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--host);
}
h4,h5,h6{
    font-size: 14px;
    line-height: 18px;
    font-family: var(--dm);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 400;
}
p{
    font-size: 16px;
    line-height: 20px;
}
p.tiny,
.tinypara p{
    font-size: 10px;
    line-height: 11px;
    font-family: var(--dm);
}
a{
    text-decoration: none;
}
a:focus{
    outline: 0 !important;
    box-shadow: none !important;
}
.container-fluid{
    padding: 0;
}
.vertical_btn{
    font-size: 12px;
    line-height: 10px;
    font-family: var(--dm);
    letter-spacing: 0.01em;
    text-transform: uppercase;
    padding: 16px 10px 38.6px;
    background-color: var(--orange);
    color: var(--charcoal);
    border-radius: 0;
    transition: 0.3s all;
    position: fixed;
    bottom: 72px;
    right: 0;
    z-index: 92;
    writing-mode: sideways-lr;
    opacity: 0;
}
.alreadyVisited .vertical_btn,
.loaded .vertical_btn{
    opacity: 1;
    transition: 0.5s opacity;
}
.vertical_btn::before{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    width: 10px;
    height: 10px;
    background-color: var(--charcoal);
}
.vertical_btn:hover{
    background-color: var(--white);
}
.btn.btn-primary{
    font-size: 14px;
    line-height: 18px;
    font-family: var(--dm);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 7px 12px 7px 38.6px;
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
    border-radius: 0;
    background-color: transparent;
    position: relative;
    transition: 0.3s all;
}
.btn.btn-primary::before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    width: 10px;
    height: 10px;
    background-color: var(--charcoal);
}
.site-header .btn.btn-primary{
    border: 1px solid var(--white);
    color: var(--white);
}
.site-header .btn.btn-primary::before{
    background-color: var(--white);
}
.navbar-open .site-header .btn.btn-primary,
.btn.btn-primary:hover{
    background-color: var(--light-blue);
    color: var(--charcoal);
    border-color: var(--light-blue);
}
.navbar-open .site-header .btn.btn-primary::before,
.btn.btn-primary:hover::before{
    background-color: var(--charcoal);
}
.btn.btn-secondary{
    font-size: 14px;
    line-height: 18px;
    font-family: var(--dm);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 400;
    background-color: transparent;
    padding: 0;
    border: 0;
    color: var(--light-blue);
    padding: 8px 0;
    border-bottom: 1px solid var(--light-blue);
    border-radius: 0;
    box-shadow: none;
    outline: 0;
    transition: 0.5s all;
}
.btn.btn-secondary:hover{
    color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn.btn-secondary:focus{
    background-color: transparent; 
    color: var(--light-blue);
}
.section-desc,.section-desc p{
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--host);
}
.section-desc p{
    margin-bottom: 24px;
}
.section-desc p:last-child{
    margin-bottom: 0px;
}
/* site-header */
.site-header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 80;
    transform: translateY(0);
    transition: 0.4s transform , 2s top cubic-bezier(.73,.2,.34,.91) ;
    opacity: 0;
}
.alreadyVisited .site-header,
body:not(.home) .site-header,
.loaded .site-header{
    opacity: 1;
    transition: 0.5s opacity;
}
.site-header .inner-content{
    transition: 0.3s padding , 0.4s background-color;
}
.site-header.topScrolled .inner-content{
    background-color: var(--white);
    padding: 10px 30px;
    border-bottom:1px solid var(--light-blue);
}
.navbar-open .site-header.topScrolled .inner-content{
    background: transparent;
    border-bottom:1px solid transparent;
}
.site-header .site-logo{
    display: inline-block;
    margin: 0;
    position: relative;
}
.site-header .site-logo img{
    max-width: 90px;
    position: relative;
    z-index: 11;
}
.site-header.topScrolled .site-logo,
.style-2-wrapp .site-header .site-logo,
.site-wrapper.style2 .site-header .site-logo{
    filter: invert(1);
}
.home .site-header:not(.topScrolled) .site-logo{
    opacity: 0;
    pointer-events: none;
}
.site-header .navbar{
    padding: 0;
}
.site-header .inner-content{
    display: flex;
    column-gap: 5px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 27px 30px;
    border-bottom:1px solid trnasparent;
}
.site-header .hemburg_menu{
    width: 36px;
    height: 34px;
    border-radius: 0;
    background-color: var(--white);
    padding: 0;
    position: relative;
    border: 0;
    transition: 0.3s all;
}
.site-header .hemburg_menu:hover{
    background-color: var(--light-blue);
}
.site-header.topScrolled .hemburg_menu,
.style-2-wrapp .site-header .hemburg_menu,
.site-wrapper.style2 .site-header .hemburg_menu{
    background-color: var(--charcoal);
}
.site-header.topScrolled .btn.btn-primary,
.style-2-wrapp .site-header .btn.btn-primary,
.site-wrapper.style2 .site-header .btn.btn-primary{
    background-color: var(--light-blue);
    border-color: var(--light-blue);
    color: var(--charcoal);
}
.site-header.topScrolled .hemburg_menu:hover,
.site-wrapper.style2 .site-header .hemburg_menu:hover{
    background-color: var(--light-blue);
}
.site-header.topScrolled .btn.btn-primary:hover,
.site-wrapper.style2 .site-header .btn.btn-primary:hover{
    background-color: var(--white);
}
.site-header.topScrolled .btn.btn-primary::before,
.style-2-wrapp .site-header .btn.btn-primary::before,
.site-wrapper.style2 .site-header .btn.btn-primary::before{
    background-color: var(--charcoal);
}
.style-2-wrapp .site-main,
.site-wrapper.style2 .site-main{
    padding-top: 94px;
}
.site-header .right-part{
    display: flex;
    align-items: flex-start;
    column-gap: 6px;
    position: relative;
}
.site-header .bar{
    width: 7px;
    height: 1px;
    background-color: var(--charcoal);
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(0);
    transition: 0.5s transform;
}
.site-header.topScrolled .bar,
.style-2-wrapp .site-header .bar,
.site-wrapper.style2 .site-header .bar{
    background-color: var(--white);
}
.site-header .hemburg_menu .top{
    top: 14px;
}
.site-header .hemburg_menu .bottom{
    top: 18px;
}
.navbar-open .site-header .hemburg_menu .top{
    width: 12px;
    top: 16px;
    transform: translateX(-50%) rotate(45deg);
}
.navbar-open .site-header .hemburg_menu .bottom{
    width: 12px;
    top: 16px;
    transform: translateX(-50%) rotate(-45deg);
}
.navbar-open .site-header .hemburg_menu,
.site-header .hemburg_menu:hover{
    color: var(--maroon);
}
/* site-header */
/* nav-sidebar */
.nav-sidebar{
    width: 494px;
    max-width: 100%;
    height: 100dvh;
    padding: 80px 30px 57.3px 38px ;
    position: fixed;
    top: 0;
    right: -494px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 70;
    background-color: var(--maroon);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    row-gap: 20px;
    transition: 1s right cubic-bezier(.73,.2,.34,.91);
}
.navbar-open .nav-sidebar{
    right: 0;
}
.nav-sidebar .sidebar-menus a{
    font-size: 36px;
    line-height: 45px;
    font-weight: 400;
    font-family: var(--host);
    color: var(--white);
    transform:translateX(0);
    display: inline-block;
    transition: 0.3s color , 0.5s transform,0.3s opacity;
}
.nav-sidebar.subactive .sidebar-menus a{
    opacity: 0.25;
}
.nav-sidebar .sidebar-menus a.active + ul a{
    opacity: 1;
}
.nav-sidebar .sidebar-menus a:hover{
    transform: translateX(-25px);
}
.nav-sidebar .sidebar-menus .current-menu-item > a,
.nav-sidebar .sidebar-menus a:hover{
    color: var(--orange);
}
.nav-sidebar .sidebar-menus ul{
    margin: 0;
    padding: 48px 0px;
    text-align: right;
    list-style: none;
}
.nav-sidebar .sidebar-menus .sub-menu{
    display: none;
}
.nav-sidebar .bottom-parts{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    color: var(--white50);
    text-transform: uppercase;
    position: absolute;
    bottom: 23.3px;
    left: 0;
    padding:0 38px;
    width: 100%;
}
.nav-sidebar .bottom-parts p{
    margin: 0;
}
.nav-sidebar .right-part{
    text-align: right;
}
/* nav-sidebar */
/* site-footer */
.site-footer{
    padding: 37px 30px 34px 30px;
    background-color: var(--charcoal);
    color: var(--white);
}
.site-footer .title{
    margin-bottom: 20px;
}
.site-footer .footer-form{
    max-width: 465px;
}
.site-footer .left-part{
    display: flex;
    flex-direction: column;
    row-gap: 141px;
    padding-right: 108px;
}
.site-footer .bottom-parts{
    display: flex;
    align-items: center;
    row-gap: 10px;
    
    justify-content: space-between;
}
.site-footer .bottom-parts a,
.site-footer .bottom-parts p{
    margin: 0;
    font-family: var(--dm);
    font-weight: 300;
    letter-spacing: 0.02em;
    font-size: 10px;
    line-height: 11px;
    text-transform: uppercase;
    color: var(--white50);
}
.site-footer .bottom-parts a:hover{
    color: var(--orange);
}
.site-footer .right-part{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.site-footer .insta-wrapper-mmobile{
    display: none;
}
.site-footer .footer-logo img{
    width: 100%;
}
.site-footer .right_top{
    display: flex;
    row-gap: 20px;
    justify-content: space-between;
}
.site-footer .right-part-b-2{
    display: flex;
}
.site-footer .footer-menus ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.site-footer .instagram_link,
.site-footer .footer-menus a{
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--host);
    color: var(--white);
    transition: 0.3s color;
}
.site-footer .instagram_link:hover,
.site-footer .footer-menus a:hover{
    color: var(--orange);
}
/* site-footer */
/* form */

form label{
    display: block;
    font-family: var(--dm);
    font-weight: 300;
    letter-spacing: 0.02em;
    font-size: 10px;
    line-height: 11px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
body form input,body form textarea{
    font-family: var(--dm);
    font-weight: 300;
    letter-spacing: 0.02em;
    font-size: 10px;
    line-height: 11px;
    margin-bottom: 15px;
    width: 100%;
    background-color: transparent;
}
.site-wrapper form input,.site-wrapper form  textarea{
    padding: 8px;
    color: var(--white);
    border-radius: 0;
    border: 1px solid var(--white40); 
    letter-spacing: 0.02em;
}
.site-wrapper form textarea{
    height: 121px;
    resize: none;
}
form input:focus,form textarea:focus{
    color: var(--white) !important;
}
form input::placeholder,textarea::placeholder{
    color: var(--white50);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
form input[type="submit"]{
    font-family: var(--dm);
    font-weight: 300;
    letter-spacing: 0.02em;
    font-size: 10px;
    line-height: 11px;
    background-color: var(--white);
    color: var(--charcoal);
    text-align: left;
    padding: 8px;
    border:0;
    border-radius: 0;
    text-transform: uppercase;
    margin-bottom: 15px;
    transition: 0.3s background-color;
}
form input[type="submit"]:hover{
    background-color: var(--orange);
}
form input[type="submit"]:focus{
    color: var(--charcoal) !important;
}
form .require_text{
    font-family: var(--dm);
    font-weight: 300;
    letter-spacing: 0.02em;
    font-size: 10px;
    line-height: 11px;
    text-transform: uppercase;
    vertical-align: top;
    display: inline-block;
    width: calc(100% - 29px);
    text-align: right;
}
.wpcf7-response-output,
.wpcf7-not-valid-tip{
    font-family: var(--dm);
    font-weight: 300;
    letter-spacing: 0.02em;
    font-size: 10px;
    line-height: 11px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.wpcf7-response-output{
    margin: 0 !important;
    padding: 10px !important
}
.site-wrapper .wpcf7-spinner{
    background-color:var(--white);
    margin: 0;
}
.site-wrapper .wpcf7-spinner::before{
    background-color: var(--charcoal);
}
/* form */
/* section-home-hero */
.section-home-hero{
    position: relative;
    height: 100dvh;
    background-color: var(--charcoal);
    overflow: hidden;
}
.section-home-hero .inner-wrapper{
    padding: 30px 30px 22.62px;
    height: 100%;
}
.section-home-hero .bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.section-hero .video-player-wrapper,
.section-home-hero .video-player-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.section-home-hero .video-player-wrapper .plyr,
.section-home-hero .video-player-wrapper .video-player{
    width: 100vw;
    height: 100dvh;
    overflow: hidden;
}
.section-hero .video-player-wrapper iframe,
.section-hero .video-player-wrapper video,
.section-home-hero .video-player-wrapper iframe,
.section-home-hero .video-player-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 ratio */
  min-height: 100dvh;
  min-width: 177.77vh; /* 16:9 ratio */
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.section-home-hero .plyr--video .plyr__controls,
.section-home-hero .plyr__control,
.section-home-hero .plyr__poster {
  display: none !important;
}
.section-home-hero .bg-overlay{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
    z-index: 2;
}
.section-home-hero .container-fluid{
    height: 100%;
    transform: scale(0);
    transition: 0.4s transform,0.8s clip-path;
    clip-path: polygon(45% 0, 55% 0, 55% 100%, 45% 100%);
}
.s2_animate .section-home-hero .container-fluid{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.section-home-hero .container-fluid.s1_animate{
    transform: scale(0.2);
}
.final_animate .section-home-hero .container-fluid{
    transform: scale(1);
}
.alreadyVisited .section-home-hero .container-fluid{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: scale(1);
    transition: 0s transform, 0s clip-path;
}
.section-home-hero .inner-content{
    position: relative;
    z-index: 5;
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.section-home-hero .hero-logo{
    max-width: 720px;
}
.section-home-hero p{
    margin: 0;
    color: var(--white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
/* section-home-hero */
/* section-full-width-text */
.section-full-width-text,.section-full-width-content{
    padding:100px 30px 50px
}
.section-full-width-content .container{
    max-width: 100%;
    padding: 0;
}
.section-full-width-text .desc,
.section-full-width-content .content{
    text-indent: 65px;
}
.section-full-width-text .desc,
.section-full-width-text .desc h1,
.section-full-width-text .desc h2,
.section-full-width-text .desc h3,
.section-full-width-text .desc h4,
.section-full-width-text .desc h5,
.section-full-width-text .desc h6,
.section-full-width-text .desc p,
.section-full-width-content .content,
.section-full-width-content .content h1,
.section-full-width-content .content h2,
.section-full-width-content .content h3,
.section-full-width-content .content h4,
.section-full-width-content .content h5,
.section-full-width-content .content h6,
.section-full-width-content .content p{
    font-family: var(--host);
    font-size: 48px;
    line-height: 53px;
    color: var(--light-blue);
    font-weight: 400;
    margin-bottom: 0;
}
.section-full-width-content .content b,
.section-full-width-content .content strong,
.section-full-width-text .desc b,
.section-full-width-text .desc strong{
    font-weight: 400;
    color: var(--charcoal);
}
/* section-full-width-text */
/* section-about-block */
.section-about-block{
    padding: 50px 30px;
}
.section-about-block .section-heading{
    max-width: 150px;
}
.section-about-block .left-part .img-wrapper{
    max-width: 252px;
    margin-bottom: 16px;
}
.section-about-block .left-part .img-wrapper:last-child{
    margin-bottom: 0;
}
.section-about-block .mobile-btn{
    display: none;
}
.section-about-block .section-desc,
.section-about-block .section-desc h1,
.section-about-block .section-desc h2,
.section-about-block .section-desc h3,
.section-about-block .section-desc h4,
.section-about-block .section-desc h5,
.section-about-block .section-desc h6,
.section-about-block .section-desc p{
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--host);
    color: var(--light-blue);
    margin-bottom: 20px;
}
.section-about-block .section-desc{
    text-indent: 40px;
    margin-bottom: 80px;
}
.section-about-block .section-desc:last-child,
.section-about-block .section-desc h1:last-child,
.section-about-block .section-desc h2:last-child,
.section-about-block .section-desc h3:last-child,
.section-about-block .section-desc h4:last-child,
.section-about-block .section-desc h5:last-child,
.section-about-block .section-desc h6:last-child,
.section-about-block .section-desc p:last-child{
    margin-bottom: 0;
}
.section-about-block .section-desc b,
.section-about-block .section-desc strong{
    font-weight: 400;
    color: var(--charcoal);
}

.section-about-block .media-with-description-slider img{
    height: auto !important;
    object-fit: cover;
    max-height: 500px;
    object-position: center;
}
.section-about-block .service_list_links{
    margin-bottom: 80px;
}
.section-about-block .service_list_links .link_heading{
    color: var(--charcoal);
    margin-bottom: 20px;
}
.section-about-block .service_list_links .link_group{
    display: flex;
    column-gap: 50px;
    row-gap: 20px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.section-about-block .service_list_links a{
    font-size: 16px;
    line-height: 20px;
    font-family: var(--host);
    letter-spacing: 0.02em;
    font-weight: 300;
    display: flex;
    align-items: center;
    column-gap: 5px;
    color: var(--charcoal);
}
.section-about-block .service_list_links a:hover{
    opacity: 0.5;
}
.section-about-block .service_list_links a svg{
    font-size: 12px;
}
.section-about-block .list_title{
    color: var(--charcoal);
    margin-bottom: 30px;
}
.section-about-block .s_list{
    margin: 0;
    padding: 0;
    list-style: none;
}
.section-about-block .s_list li{
    font-size: 14px;
    line-height: 18px;
    font-family: var(--dm);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 400;
    color: #131313;
    padding: 20px 0;
    border-top: 1px solid var(--light-blue);
}
.section-about-block .list-part .section-heading{
    color: var(--charcoal);
    max-width: 100%;
}
.section-about-block .list-part{
    padding-top: 100px;
}
.section-about-block .list-part .inner{
    padding-top: 25px;
    border-top: 1px solid var(--light-blue);
}
.slider-nav-wrap{
    position: absolute;
    bottom: 14px;
    left: 15px;
    display: flex;
    column-gap: 3.21px;
    z-index: 1;
}
.slider-btn{
    width: 18px;
    height: 18px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--host);
    font-size: 10px;
    line-height: 10px;
    font-weight: 400;
    color: var(--charcoal);
    transition: 0.5s all;
}
.slider-btn:hover{
    background-color: var(--charcoal);
    color: var(--white);
}
.slider-btn.swiper-button-disabled{
    opacity: 0.8;
    pointer-events: none;
}
.slider-btn.swiper-button-lock{
    display: none;
}
.section-about-block .left-part{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}
/* section-about-block */
/* section-logo-slider */
.section-logo-slider{
    padding: 50px 30px;
}
.section-logo-slider .logo-slider .swiper-wrapper{
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}
.section-logo-slider .title{
    font-family: var(--s-mono);
    font-size: 12.6px;
    line-height: 16px;
    font-weight: 400;
    color: var(--light-blue);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.section-logo-slider.top-bar .inner-content{
    border-top: 1px solid var(--light-blue);
    padding-top: 20px;
}
/* section-logo-slider */
/* section-project-block */
.section-project-block{
    padding: 50px 30px 50px;
}
.section-project-block.top-bar .inner-content{
    border-top: 1px solid var(--light-blue);
    padding-top: 20px;
}
.section-project-block .project-main-slider img{
    aspect-ratio: 711 / 758;
    object-fit: cover;
}
.section-project-block .section-heading{
    color: var(--charcoal);
}
.section-project-block .slider-nav-wrap{
    left: auto;
    right: 30px;
    bottom: 30px;
}
.section-project-block .project-thumb-slider{
    max-width: 220px;
    margin: 0;
}
.swiper-thumbs .swiper-slide{
    cursor: pointer;
}
.section-project-block .project-thumb-slider img{
    height: 42px;
    object-fit: cover;
}
.section-project-block .project-thumb-slider img{
    opacity: 0.25;
    transition: 0.5s opacity;
}
.section-project-block .project-thumb-slider img.swiper-slide-thumb-active{
    opacity: 1;
}
.section-project-block .left-side{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.section-project-block .title{
    max-width: 393px;
    font-size: 36px;
    line-height: 45px;
    font-weight: 400;
    font-family: var(--host);
    color: var(--charcoal);
    margin-bottom: 50px;
}
.section-project-block .btn-wrapper{
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}
/* section-project-block */
/* section-full-w-media-desc */
.section-full-w-media-desc{
    position: relative;
    height: 894px;
    background-image: var(--bgImage);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 50px 0;
}
.section-full-w-media-desc:last-child{
    margin-bottom: 0;
}
.section-full-w-media-desc .inner-content{
    height: 100%;
    padding: 25.61px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}
.section-full-w-media-desc .section-heading{
    color: var(--white);
    margin: 0;
    max-width: 180px;
}
.section-full-w-media-desc .desc{
    letter-spacing: 0.02em;
    font-family: var(--host);
    font-weight: 300;
    max-width: 353px;
    color: var(--white);
    margin: 0;
}
.section-full-w-media-desc .bg-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    pointer-events: none;
    background-color: rgba(0,0,0,0.6);
}
/* section-full-w-media-desc */
/* section-service-block */
.section-service-block{
    padding: 50px 30px 100px;
}
.section-service-block .section-heading{
    color: var(--charcoal);
    margin: 0;
}
.section-service-block .left-part{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.section-service-block .service-images{
    position: relative;
    height: 300px;
    overflow: hidden;
    pointer-events: none;
}
.section-service-block .service-images img{
    position: absolute;
    bottom: 0;
    left: 0;
    max-height: 100%;
    max-width: 100%;
    opacity: 0;
    transition: 0.5s all;
}
.section-service-block .service-images img.active{
    opacity: 1;
}
.section-service-block .right-part a{
    font-size: 48px;
    line-height: 53px;
    font-family: var(--host);
    font-weight: 400;
    color: var(--light-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s all;
}
.section-service-block .right-part a svg{
    width: 48px;
    min-width: 48px;
}
.section-service-block .right-part a span{
    display: inline-block;
    padding-right: 40px;
    transform: translateX(0);
    transition: 0.5s all;
}
.section-service-block .right-part a.mobile_active span,
.section-service-block .right-part a:hover{
    color: var(--charcoal);
}
.section-service-block .right-part a.mobile_active span,
.section-service-block .right-part a:hover span{
    transform: translateX(40px);
}
.section-service-block.top-bar .inner-content{
    border-top: 1px solid var(--light-blue);
    padding-top: 20px;
}
/* section-service-block */
/* section-hero */
.section-hero{
    background-color: var(--black);
    background-image: var(--bgImage);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.section-hero .bg-overlay{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.section-hero .inner{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    height: 100dvh;
    padding: 50px 30px;
}
.section-hero .main-title{
    font-family: var(--host);
    font-size: 120px;
    line-height: 108px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
    text-align: center;
    max-width: 1070px;
}
.section-hero .short-desc{
    position: absolute;
    bottom: 24px;
    right: 20px;
    z-index: 11;
    color: var(--white);
    margin: 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-family: var(--dm);
}
/* section-hero */
/* section-service-block-2 */
.section-service-block-2{
    padding: 50px 30px;
}
.section-service-block-2 .service-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 30px;
}
.section-service-block-2 .service-card{
    aspect-ratio: 1 / 1;
    /* background-color: var(--light-blue);
    background-image: var(--bgImage);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--host);
    color: var(--white);
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
}
.section-service-item-list-block .item-lists .item img,
.section-service-block-2 .service-card img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.section-service-block-2 .service-card span{
    position: relative;
    z-index: 2;
}
.section-service-block-2 .last-card{
    aspect-ratio: 1 / 1;
    background-color: var(--light-blue);
    padding: 22px 20px;
}
.section-service-block-2 .last-card .title,
.section-service-block-2 .last-card .link{
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--host);
    margin: 0;
}
.section-service-block-2 .last-card .title{
    color: var(--white);
}
.section-service-block-2 .last-card .link{
    color: var(--charcoal);
}
/* section-service-block-2 */
/* section-why-choose */
.section-why-choose{
    padding: 50px 30px;
}
.section-why-choose.top-bar .inner-content{
    border-top: 1px solid var(--light-blue);
    padding-top: 20px;
}
.section-why-choose .section-title{
    margin-bottom: 100px;
    color: var(--charcoal);
}
.section-why-choose .why-choose-lists{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 20px;
}
.section-why-choose .why-choose-lists .why-choose-card{
    background: rgba(171, 187, 187, 0.15);
    border-radius: 2px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 29px;
    justify-content: space-between;
}
.section-why-choose .why-choose-lists .why-choose-card.is_desc .top-part{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.section-why-choose .why-choose-lists .why-choose-card .numbers{
    font-size: 14px;
    line-height: 18px;
    font-family: var(--dm);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--light-blue);
}
.section-why-choose .why-choose-lists .why-choose-card .title{
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--host);
    margin-bottom: 0px;
}
.section-why-choose .why-choose-lists .why-choose-card .desc{
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    font-family: var(--dm);
    color: var(--charcoal);
    opacity: 0.75;
    margin: 0;
    letter-spacing: 0.02em;
}
/* section-why-choose */
/* section-service-item-list-block */
.section-service-item-list-block{
    padding: 50px 30px;
}
.section-service-item-list-block .container-fluid{
    padding-top: 40px;
    border-top: 1px solid var(--light-blue);
}
.section-service-item-list-block.is_title .inner-content{
    display: grid;
    grid-template-columns: calc(25% - 15px) calc(75% - 15px);
    grid-gap: 30px;
}
.section-service-item-list-block .item-lists{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 30px;
}
.section-service-item-list-block.is_title .item-lists{
    grid-template-columns: repeat(3,1fr);
}
.section-service-item-list-block .heading{
    margin: 0;
    max-width: 198px;
}
.section-service-item-list-block .item-lists .item{
    background-color: var(--light-blue);
    aspect-ratio: 1 / 1;
    background-image: var(--bgImage);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.section-service-item-list-block .item-lists .inner{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    z-index: 10;
    position: relative;
    padding: 22px 20px;
}
.section-service-item-list-block .item-lists .item::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    z-index: 1;
    pointer-events: none;
}
.section-service-item-list-block .item-lists .title{
    color: var(--white);
    margin-bottom: 0;
}
.section-service-item-list-block .item-lists .bottom p{
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    font-family: var(--dm);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--white);
}
.section-service-item-list-block .item-lists .last-card{
    aspect-ratio: 1 / 1;
    background-color: var(--light-blue);
    padding: 22px 20px;
}
.section-service-item-list-block .item-lists .last-card .title,
.section-service-item-list-block .item-lists .last-card .link{
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--host);
    margin: 0;
}
.section-service-item-list-block .item-lists .last-card .title{
    color: var(--white);
}
.section-service-item-list-block .item-lists .last-card .link{
    color: var(--charcoal);
}
/* section-service-item-list-block */
/* section-project-archive */
.section-project-archive{
    padding: 50px 30px;
}
.section-project-archive .archive-lists{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 100px 30px;
}
.section-project-archive .archive-lists .archive-item:nth-child(even){
    margin-left: auto;
}
.section-project-archive .archive-lists .inner-content{
    width: fit-content;
}
.section-project-archive .archive-lists .top-part{
    margin-bottom: 20px;
    width: fit-content;
}
.section-project-archive .archive-lists .bottom-part{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
}
.section-project-archive .archive-lists .title,
.section-project-archive .archive-lists .categories{
    max-width: 200px;
    color: var(--charcoal);
    margin: 0;
}
.section-project-archive .archive-lists .bottom-part .left-part{
    max-width: 50%;
}
.section-project-archive .archive-lists .title{
    font-weight: bold;
    max-width: 100%;
}
.section-project-archive .archive-lists .clink{
    display: inline-block;
    width: fit-content;
    cursor: pointer;
}
.section-project-archive .archive-lists .link{
    font-size: 14px;
    line-height: 18px;
    font-family: var(--dm);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--light-blue);
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    display: flex;
    align-items: flex-end;
    column-gap: 2px;
    transition: 0.3s color;
}
.section-project-archive .archive-lists .link:hover{
    color: var(--charcoal);
}
/* section-project-archive */
/* section-project-description */
.section-project-description{
    padding: 50px 30px;
}
.section-project-description .section-heading{
    max-width: 300px;
}
.section-project-description .categories{
    color: var(--charcoal);
    display: flex;
    column-gap: 145px;
    row-gap: 20px;
    margin-bottom: 0px;
    flex-wrap: wrap;
}
.section-project-description .section-desc,
.section-project-description .section-desc h1,
.section-project-description .section-desc h2,
.section-project-description .section-desc h3,
.section-project-description .section-desc h4,
.section-project-description .section-desc h5,
.section-project-description .section-desc h6,
.section-project-description .section-desc p{
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--host);
    color: var(--light-blue);
    margin-bottom: 20px;
}
.section-project-description .section-desc{
    text-indent: 40px;
    margin-bottom: 100px;
}
.section-project-description .section-desc:last-child,
.section-project-description .section-desc h1:last-child,
.section-project-description .section-desc h2:last-child,
.section-project-description .section-desc h3:last-child,
.section-project-description .section-desc h4:last-child,
.section-project-description .section-desc h5:last-child,
.section-project-description .section-desc h6:last-child,
.section-project-description .section-desc p:last-child{
    margin-bottom: 0;
}
.section-project-description .section-desc b,
.section-project-description .section-desc strong{
    font-weight: 400;
    color: var(--charcoal);
}
.section-project-description .cat-wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 30px;
    margin-bottom: 50px;
}
.section-project-description .cattitle{
    color: rgba(19, 19, 19, 0.25);
}
/* section-project-description */
/* section-media-gallery-block */
.section-media-gallery-block{
    position: relative;
    margin: 50px 0;
}
.section-media-gallery-block:last-child{
    margin-bottom: 0;
}
.section-media-gallery-block .media-gallery-main-slider img{
    height: auto !important;
    object-fit: cover;
    max-height: calc(100vh - 62px);
    object-position: center;
}
.section-media-gallery-block .media-gallery-thumb-slider{
    max-width: 220px;
    position: absolute;
    bottom: 30px;
    right:30px;
    z-index: 1;
}
.section-media-gallery-block .media-gallery-thumb-slider img{
    height: auto !important;
    object-fit: cover;
    opacity: 0.2;
}
.section-media-gallery-block .media-gallery-thumb-slider img.swiper-slide-thumb-active{
    opacity: 1;
}
.section-media-gallery-block .slider-nav-wrap{
    bottom: 30px;
    left:30px
}
/* section-media-gallery-block */
/* section-contact */
.section-contact{
    border-top: 1px solid var(--light-blue);
}
.section-contact .container-fluid,
.section-contact .row{
    height: 100%;
}
.section-contact .left-part-wrapper{
    padding: 81px 30px 123px;
}
.section-contact .right-part-wrapper{
    background-color: var(--maroon);
    color: var(--white);
    padding: 81px 44px 123px ;
}
.section-contact .left-part-wrapper,
.section-contact .right-part-wrapper{
    display: flex;
    flex-direction: column;
}
.section-contact .heading{
    color: var(--charcoal);
    margin-bottom: 19.6px;
}
.section-contact .desc{
    color: var(--charcoal);
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    font-family: var(--host);
    letter-spacing: 0.02em;
    margin-bottom: 57px;
    max-width: 463px;
}
.section-contact .details .detail{
    width: 100%;
    max-width: 525px;
    display: grid;
    grid-template-columns: 40% 60%;
    column-gap: 10px;
    margin-bottom: 36px;
}
.section-contact .details .detail:last-child{
    margin-bottom: 0;
}
.section-contact .details .detail .title,
.section-contact .details .detail .detail-content,
.section-contact .details .detail .detail-content h1,
.section-contact .details .detail .detail-content h2,
.section-contact .details .detail .detail-content h3,
.section-contact .details .detail .detail-content h4,
.section-contact .details .detail .detail-content h5,
.section-contact .details .detail .detail-content h6,
.section-contact .details .detail .detail-content a,
.section-contact .details .detail .detail-content p{
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
    font-family: var(--dm);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}
.section-contact .details .detail .title{
    color: var(--light-blue);
}
.section-contact .details .detail .detail-content,
.section-contact .details .detail .detail-content h1,
.section-contact .details .detail .detail-content h2,
.section-contact .details .detail .detail-content h3,
.section-contact .details .detail .detail-content h4,
.section-contact .details .detail .detail-content h5,
.section-contact .details .detail .detail-content h6,
.section-contact .details .detail .detail-content a,
.section-contact .details .detail .detail-content p{
    color: var(--charcoal);
}
.section-contact .details .detail .detail-content .day-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.section-contact .right-part{
    max-width: 559px;
}
.section-contact .right-part .para{
    max-width: 463px;
}
.section-contact  .require_text{
    vertical-align: middle;
}
/* section-contact */
/* site-loader */
.site-loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 130vh;
    z-index: 111;
    /* background-color: #131313; */
    transition: 0.5s top ease;
    display: none;
}
.home .site-loader{
    display: block;
}
body.loaded .site-loader{
    top: -130vh;
}
.site-loader .inner-content{
    /* display: flex;
    align-items: center;
    justify-content: center; */
    height: 100vh;
    padding: 30px;
    opacity: 1;
    position: relative;
}
.alreadyVisited .site-loader{
    display: none;
}
.site-loader .content-wrap{
    position: absolute;
    top: 50%;
    height: 60px;
    width: 1px;
    left: 50%;
    transform: translate(-50%,-50%);
}
.site-loader .loader-logos-wrap,
.site-loader .loader-text-wrap{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.site-loader .loader-logos{
    display: flex;
    align-items: flex-end;
    column-gap: 7px;
    position: relative;
}
.site-loader .loader-logos .icon{
    position: relative;
    top: 30px;
    left: 0;
    --delay:0.5s;
    opacity: 0;
    
}
.loadStart .site-loader .loader-logos .icon{
    animation: 1s var(--delay) fadeinUp forwards;
}
.site-loader .loader-logos .icon2{ --delay:0.6s; }
.site-loader .loader-logos .icon3{ --delay:0.7s; }
.site-loader .loader-logos .icon4{ --delay:0.8s; }
.site-loader .loader-logos .icon5{ --delay:0.9s; }

@keyframes fadeinUp{
    0%{
        top: 30px;
        opacity: 0;
    }
    100%{
        top: 0px;
        opacity: 1;
    }
}
.site-loader .text{
    color: var(--white);
    font-size: 22px;
    line-height: 24px;
    font-weight: 400;
    font-family: var(--dm);
    letter-spacing: 0.01em;
    text-transform: uppercase;
    max-width: 108px;
}
.site-loader .loader-text{
    opacity: 0;
    position: relative;
    left: 100px;
}
/* site-loader */
.error-404{
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 30px;
}
.error-404 .page-title{
    margin-bottom: 30px;
}
/* section-faq */
.section-faq{
    padding: 50px 30px;
}
.section-faq:last-child{
    padding-bottom: 150px;
}
.section-faq .section-heading{
    color: var(--charcoal);
}
.section-faq .faq-title{
    color: var(--charcoal);
    margin-bottom: 30px;
}
.section-faq .inner-content{
    padding-top: 22px;
    border-top: 1px solid var(--light-blue);
}
.section-faq .accordion-body .inner-desc{
    padding-top: 10px;
}
.accordion .accordion-item{
    border: 0;
    border-radius: 0;
    border-top: 1px solid var(--light-blue);
    padding: 20px 0 50px;
}
.accordion .accordion-button{
    padding: 0;
    background-color: transparent;
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
    font-family: var(--host);
    color: #131313;
    box-shadow: unset;
    position: relative;
}
.accordion .accordion-button::after{
    content:unset;
}
.accordion .accordion-button .a_nav{
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.accordion .accordion-button .a_nav .a_bar{
    width: 12px;
    height: 1px;
    background-color: #131313;
    border-radius: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: 0.5s all;
}
.accordion .accordion-button.collapsed  .a_nav .a_bar{
    transform: translateY(-50%) rotate(0deg);
}
.accordion .accordion-button.collapsed  .a_nav .top{
    transform: translateY(-50%) rotate(90deg);
}
.accordion .accordion-body{
    padding: 0;
}
.accordion .faqs-wrapper .faq-wrapper{
    margin-bottom: 20px;
}
.accordion .faqs-wrapper .faq-wrapper:last-child{
    margin-bottom: 0px;
}
.section-faq .accordion-body,
.section-faq .accordion-body h1,
.section-faq .accordion-body h2,
.section-faq .accordion-body h3,
.section-faq .accordion-body h4,
.section-faq .accordion-body h5,
.section-faq .accordion-body h6,
.section-faq .accordion-body a,
.section-faq .accordion-body p{
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    font-family: var(--host);
    color: rgba(19, 19, 19, 0.75);
    letter-spacing: 0.02em;
}
.section-faq .accordion-body h1:last-child,
.section-faq .accordion-body h2:last-child,
.section-faq .accordion-body h3:last-child,
.section-faq .accordion-body h4:last-child,
.section-faq .accordion-body h5:last-child,
.section-faq .accordion-body h6:last-child,
.section-faq .accordion-body a:last-child,
.section-faq .accordion-body p:last-child{
    margin-bottom: 0;
}
/* section-faq */








/* Animation */
.shine-animate {
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s .2s,opacity 1s .2s
}
.shine-animate.animated {
    transform: translateY(0);
    opacity: 1
}
.shine-animate.fade-in {
    transform: none;
    transition: opacity 0.8s .5s
}
.shine-animate.circle-fade-in{
    transform: translateY(-50%);
    transition: opacity 0.8s .5s
}
.shine-animate.scale-up {
    transform: translateY(40px)scale(.9)
}
.shine-animate.scale-up.animated {
    transform: translateY(0)scale(1)
}
.shine-animate.circle-fade-in.animated{
    opacity:1;
}
/* Animation */
