@import url('https://fonts.googleapis.com/css2?family=Jost&display=swap');

:root{
    --white: #fff;
    --white_s: #F8F8F8;
    --blue: #1A324C;
    --black: #33363F;
    --blackB: #121212;
}
body{
    overflow-x: hidden;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
    overflow-x: hidden;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
    color: var(--blackB);
}

.bold{ font-weight: 600; }

.whitespace{
    height: 100vh;
}

.maxContent{
    max-width: 1350px;
    margin: auto
}

.center{ justify-content: center; }

.primaryBackground{ 
    background: var(--blackB);
    color: var(--white);
}

.mb-l{ margin-bottom: 16px; }

.mb-xl{ margin-bottom: 32px; }

.mb-xxl{ margin-bottom: 32px; }

.u-h1{ font-size: 3rem; line-height: 100%; }

.u-h2{ font-size: 1.75rem; }

.u-h3{ font-size: 1.5rem; }

.u-p1{ font-size: 1rem; }

.u-p2{ font-size: 1rem; }

.u-p3{ font-size: 0.875rem; }

@media screen and (min-width: 1025px) {
    .u-h1{ font-size: 5rem; }

    .u-h2{ font-size: 2.25rem; }

    .u-h3{ font-size: 1.25rem; }

    .u-p1{ font-size: 1.5rem; }

    .u-p2{ font-size: 1.25rem; }
    
    .mb-xxl{margin-bottom: 96px; }
}


.callBtn{
    background: var(--white_s);
    padding: 24px;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 10%;
    right: 16px;
    box-shadow: 1px 1px 12px 1px;
    border-radius: 12px;
    z-index: 2;
}

.callBtn span {
    color: var(--blackB);
    font-size: 2.2rem;
}

.callBtn::before{
    position: absolute;
    top: -2%;
    left: -2%;
    content: '';
    opacity: .5;
    width: 62px;
    height: 62px;
    background-color: transparent;
    border-radius: 100% ;
    border: 3px solid #ec1f27;
    border: 3px solid #ec1f27 9;
    opacity: .1;
    animation: krug 1s infinite ease-in-out;
    transition: all .5s;
    z-index: -1;
}

.instagram{
    position: fixed;
    top: 20%;
    right: 0%;
    background: var(--blackB);
    box-shadow: 1px 1px 12px 1px;
    border-radius: 12px;
    padding: 24px;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram a{
    display: flex;
}

@media screen and (min-width: 1025px) {
    .callBtn{
        width: 78px;
        height: 78px;
        right: 48px;
    }
    .callBtn::before{
        width: 78px;
        height: 78px;
    }
    .instagram{
        width: 78px;
        height: 78px;
        top: 114px;
    }
}

/*HEADER CSS*/
header{
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 2;
}
.header{
    padding: 16px 32px;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.logo{
    width: 48px;
    height: auto;
}

.logo img{
    width: 100%;
    height: auto;
}

.logo{ width: 80px; }

.logo img{
    position: absolute;
    top: -65.5%;
    width: 170px;
    left: 0;
}

.flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.languages{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px;
    position: absolute;
    left: -50%;
    top: 100%;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    display: none;
}

.languageIcons{ 
    position: relative;
    display: flex;
}

.languageIcons:hover{ cursor: pointer; }

.languageIcons:hover .languages{
    display: flex;
    visibility: visible;
    opacity: 1;
}

.language{
    display: flex;
    align-items: center;
    gap: 12px;
}

@media screen and (max-width: 767px) {
    .submenu[aria-hidden="false"]{
        visibility: visible;
        height: auto;
    }

    .submenu[aria-hidden="true"]{
        visibility: hidden;
        height: 0;
        transition: all 0.3s ease-in-out;
    }

    .headerList[aria-hidden="true"]{
        transform: translateX(0%);
    }

    .headerList[aria-hidden="true"]{
        transform: translateX(-100%);
    }

    .headerList{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 320px;
        height: 100%;
        padding: 64px 16px;
        background: var(--white);
        transition: all 0.3s ease-in-out;
        z-index: 1;
    }

    .headerList li{ 
        padding: 8px 0; 
        border-bottom: 1px solid var(--grey);
        }

    .close_menu{
        position: absolute;
        right: 16px;
        top: 32px;
    }

    .submenu > div{ padding: 8px 8px; }

    i{ transition: all 0.3s ease; }

    .not_mobile{ display: none !important; }

    .languageMob{ 
        margin-top: 2.5rem;
        display: flex;
        gap: 1rem;
    }
}

@media screen and (min-width: 768px) {
    .callBtn{ top: 90%; }
    header{
        position: fixed;
        width: 100%;
        top: 24px;
        z-index: 4;
    }

    .header{ 
        padding: 24px 64px; 
        position: relative;
        z-index: 2;
        max-width: 1350px;
        margin: auto;
        border-radius: 12px;
        z-index: 1;
        box-shadow: 1px 1px 12px 1px;
    }

    .headerList{
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .not_desktop{ display: none; }

    .submenu{
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        padding: 48px 0 32px 0 ;
        min-width: 150px;
        z-index: -1;
        background: var(--white);
    }

    .has_child{ position: relative; } 

    .has_child:hover .submenu{ display: block; }

    .submenu > div{  padding: 12px 8px;  }

    .has_child:hover i{
        transform: rotate(180deg);
        transition: all 0.3s ease;
    }

    .header li a.active{
        text-decoration: underline;
        text-underline-offset: 8px;
    }
    
    .fa-arrow-down{margin-left: 4px;}

    .logo{ width: 80px; }

    .logo img{
        position: absolute;
        top: -80%;
        width: 240px;
        left: 0;
    }
}

/*HEADER CSS END*/

/*BANNER*/
.banner{
    background-image: url(images/baner_mob.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
    color: var(--white_s);
    z-index: -1;
    position: relative;
}

.banner::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgb(27, 27, 27);
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(25, 25, 25, 0.67) 45%, rgba(35, 35, 35, 0.048) 100%);
}

.bannerText{
    padding: 16px;
    position: absolute;
    top: 15%;
    left: 16px;
    width: calc(100% - 32px);
}

.banner .maxContent{
    height: 100vh;
    position: relative;
}

@media screen and (min-width: 1025px) {
    .bannerText{
        padding: 32px 48px;
        max-width: 640px;
        top: 40%;
        transform: translate(0%, -50%);
    }
    .banner{
        background-image: url(images/IMG-20230812-WA0001.jpg);
        height: 100vh;
    }
}

/*BANNER END*/

/*SECTION TEXT*/
/* #about{
    background-image: url(/images/europe.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
} */
.sectionText{
    padding: 32px 16px;
    text-align: center;
}

@media screen and (min-width:1025px) {
    .sectionText{ padding: 128px 16px; }
}

/*MAP SECTION*/
.mapSection{
    padding: 32px 16px 0 16px;
    overflow: hidden;
}
.map{ 
    position: relative;
    background: var(--white);
    margin-bottom: 16px;
}

.mapE{ width: 100%;}

.mapLogo{
    position: absolute;
    top: 66%;
    left: 62%;
    width: 94px;
}

.border{
    width: 32px;
    height: 3px;
    background: var(--blackB);
}

.title{
    display: flex;
    align-items: center;
    gap: 16px;
}

.flex{
    display: flex;
    align-items: center;
    justify-content: center;
}

.red{  
    color: #ec1f27;
    font-weight: 700;
}

.counters {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    padding: 32px 0;
    grid-gap: 16px;
}

@media screen and (min-width: 1025px) {
    .mapSection{
        padding: 128px 16px;
        display: flex;
        align-items: center;
    }

    .map{ width: 50%; }

    .mapText{ width: 50%; }

    .mapLogo{
        top: 85%;
        left: 75%;
    }
}

/*PARTNERS SECTION*/
.partnersSection{
    padding: 32px 16px;
}
.map{ position: relative;}

.mapE{ 
    width: 100%;
}

.mapLogo{
    position: absolute;
    top: 66%;
    left: 62%;
    width: 76px;
}

.border{
    width: 32px;
    height: 3px;
    background: var(--blackB);
}

.title{
    display: flex;
    align-items: center;
    gap: 16px;
}

.flex{
    display: flex;
    align-items: center;
    justify-content: center;
}

.red{  
    color: #ec1f27;
    font-weight: 700;
}

.counters {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    padding: 32px 0;
}

.partnersLogo{
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
}

.partnersLogo img{
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all .3s cubic-bezier(.215,.61,.355,1);
    cursor: pointer;
}

.partnersLogo img:hover{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

@media screen and (max-width: 1024px) {
    .partnersLogo{
        grid-gap: 8px;
        column-gap: 42px;
        padding: 0 24px;
    }

    .mapE{ margin-left: -32px; }

    .mapLogo{
        top: 57%;
        left: 46%;
    }
}

@media screen and (min-width: 1025px) {
    .partnersLogo{
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 32px;
    }
    .partnersSection{
        padding: 128px 16px;
        display: flex;
        gap: 62px;
        flex-direction: row-reverse;
        align-items: center;
    }

    .map{ width: 50%; }

    .mapText{ width: 50%; }

    .mapLogo{
        top: 71%;
        left: 64%;
    }

    .mapE{ transform: scale(1.2); }
}


/*SERVICE*/
.services{ padding: 32px 16px;}

.serviceColumn{ 
    margin-bottom: 32px;
    text-align: center;
}

.serviceIcon{
    background: var(--blackB);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.serviceIcon span{
    color: var(--white_s);
    font-size: 2rem;
}

@media screen and (min-width: 1025px) {
    .services{
        padding: 128px 16px;
    }
    .serviceColumns{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 32px;
        margin: 48px 0;
    }

    .serviceColumn{ transition: all 0.3s ease-in; }

    .serviceIcon span{ font-size: 3rem; }

    .serviceIcon{
        width: 80px;
        height: 80px;
        transition: all 0.3s ease-in;
        box-shadow: 1px 1px 12px 1px;
    }

    .serviceContent{  
        position: relative;
        z-index: 1;
    }

    #background {
        background-position: center;
        background-size: cover;
        position: relative;
    }
    
    .background-panel {
        background-size: cover;
        background-position: center;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        transition: opacity .75s;
        z-index: -1;
    }

    .background-panel::after{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: max(18vw, 30px);
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0.91) 50%, rgba(255, 255, 255, 0) 100%);
    }

    .background-panel::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
        background: #0000008e;
    }

    .serviceColumn:hover{
        color: var(--white_s);
        /* text-shadow: 2px 2px #121212; */
        cursor: pointer;
    }

    .serviceColumn:hover .serviceIcon{ background: var(--white_s); }

    .serviceColumn:hover .serviceIcon svg path { fill: var(--blackB);  }
}

/*VEHICLE*/
.vehicle{
    padding: 32px 16px;
}

.vehicleSection{ padding-top: 32px; }

.vehicleImage img{  
    width: 100%;
    object-fit: cover;
    transform: scaleX(-1);
    aspect-ratio: 1.5;
}

.vehicleDetails{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.vehicleSection:hover .vehicleImage img{
    filter: drop-shadow(0 0 1rem rgb(57, 78, 214));
    transition: all 0.3s ease-in-out;
}

.vehicleDetails .flex{ gap: 12px;}

@media screen and (min-width: 1025px) {
    .vehicle{ padding: 128px 16px; }

    .vehicleSection{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 48px;
        padding-top: 48px;
    }

    .vehicleDetails{ 
        width: 40%;
        padding-left: 10%;
     }
    .vehicleImage{ width: 60%; }
}

/*GOOGLE MAP*/
.googlemap iframe{
    width: 100%;
    min-height: 60vh;
    position: relative;
}

.googlemap {position: relative;}

.googlemap::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000003a; 
    z-index: 1;
    pointer-events: none;
}

.details{
    padding: 32px 16px;
    min-width: 320px;
}

@media screen and (min-width: 1025px) {
    .details{
        position: absolute;
        top: 50%;
        left: 15%;
        transform: translate(0%, -50%) !important;
        z-index: 3;
        background: var(--white_s);
        padding: 48px 32px;
        transition: all 0.3s ease-in;
    } 

    .details:hover{
        background: var(--blackB);
        color: var(--white_s);
    }

    .details:hover a{
        color: var(--white_s);
    }

    .details:hover .border{
        background: var(--white_s);
    }

    .details:hover svg path{fill: var(--white_s);}
}



/*FOTER*/
.info{
    display: flex;
    align-items: center;
    gap: 12px;
}

.infoCircle{
    background: var(--white_s);
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.infoCircle svg path{
    fill: var(--blackB);
}

.footerWraper{
    background: var(--blackB);
    color: var(--white_s);
    padding: 32px 16px;
   
}

.footerInfoWraper{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footerWraper a{
    color: var(--white_s);
}

.footerLinks{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footerLinksMobile{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.copyRight{
    border-top: 1px solid var(--white_s);
    padding-top: 16px;
}

.whiteDiv{
    width: 200px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
}

.footerLogo{ 
    position: relative;
    display: flex;
    gap: 16px;
 }

.footerLogo img{
    position: absolute;
    top: -90%;
    left: 0;
}

.footerLogo svg{
    width: 24px;
}

.codiland {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.codiland img{
    max-height: 32px;
    width: auto;
}

@media screen and (min-width: 1025px) {
    .not_desktop{display: none;}
    .footerWraper{ padding: 48px 48px; }

    .copyRight{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 32px;
    }

    .footerInfoWraper{
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
}

.blackSection{
    min-height: 15vh;
    position: relative;
}

@-webkit-keyframes krug {
    0% {
        -webkit-transform:rotate(0) scale(.5) skew(1deg);
        -webkit-opacity:.1
    }

    30% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
        -webkit-opacity:.5
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
        -webkit-opacity:.1
    }
}


.animatedElement{
    opacity: 0;
    transform: translateY(100%);
}

.animatedText{
    opacity: 0;
    transform: translateY(100%);
}

.animatedRight{
    transform: translateX(100%);
}

.animatedLeft{
    transform: translateX(-100%);
}
  
@keyframes play {
    50% { 
        opacity: 0.2;
        transform: translate(0, 0);
     }
    100% { 
        opacity: 1;
        transform: translate(0, 0);
    }
}

.animation {
    animation: play .8s steps(25);
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
