*{
    box-sizing: border-box;
    margin:0;
    padding: 0;
}

@font-face{
    font-family: NeoSans-Bold;
    src: url('../asset/fonts/NeoSans-Bold.otf');
  }

  @font-face{
    font-family: NeoTechStd-Regular;
    src: url('../asset/fonts/NeoTechStd-Regular.otf');
  }


  :root {
    --primary: #36a8db;
    --seconday: #11558a;
    --third: #ffffff;
    --fourth: #92d7ff;

    --third-svg: invert(3%) sepia(38%) saturate(1040%) hue-rotate(300deg) brightness(99%) contrast(102%);
    --fourth-svg: invert(100%) sepia(0%) saturate(0%) hue-rotate(259deg) brightness(116%) contrast(100%);
  }

body{
    background-color: white;
    color: #0065aa;
    font-family: NeoSans-Bold;
    font-family: Roboto;
}

.container{
    width: 60%;
}

.main-outer{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,.7)), url('../asset/img/bg/projate-coming-soon-bg.jpg');
    background-position: 60% 40%;
    overflow: hidden;
    overflow-y: scroll;
}

.main-inner{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.web-outer{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    overflow-y:scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.web-inner{
    width: 100%;
    height: 100%;
}

::-webkit-scrollbar{
    display: none;
}

.header{
    width: 100%;
    height: 75px;
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.nav-inner{
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
   
    
}

.nav-inner .nav-logo{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.nav-inner .nav-logo img{
    width: 160px;
    height: 80%;
    object-fit: contain;
}

.nav-inner .nav-social{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;

}

.nav-inner .nav-social a{
    text-decoration: none;
}

.nav-inner .nav-social img{
    width: 28px;
    height: 28px;
    margin: 0 5px;
    transition: .5s;
    cursor: pointer;
}

.nav-inner .nav-social img:hover{
    transform: scale(1.2);
}


.kts-section{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.kts-section-inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}




.coming-soon{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.coming-soon-left{
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:url('../asset/img/bg/coming-soon-bg-2-01.png');
    background-repeat: no-repeat;
    background-position: 150% 20%;
    background-blend-mode: screen;
    background-size: cover;
    opacity: .2;
}

.coming-soon-right{
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.coming-soon-right img{
    width: 40%;
    height: 180px;
    object-fit: contain;
}

.coming-soon-right h3{
    font-size: 2rem;
    font-family: NeoTechStd-Regular;
    
}

.coming-soon-right h2{
    font-size: 5rem;
    line-height: 80px;
}

.coming-soon-right .desc-sections{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px 0;
}

.coming-soon-right .desc-sections .desc-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
    border-right: 2px solid #0065aa;
    height: 100%;
}

.coming-soon-right .desc-sections .desc-section:nth-child(2)
{
    border-right: 0;
}


.coming-soon-right .desc-sections .desc-section h3{
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    font-family: NeoSans-Bold;
}

.coming-soon-right .desc-sections .desc-section h4{
    font-size: 1rem;
    text-align: center;
    font-family: NeoTechStd-Regular;
}

.coming-soon-right .sales-contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%
}

.coming-soon-right .sales-contact .sales-contact-details{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%
}

.coming-soon-right .sales-contact span{
    padding: 10px;
    background-color: #0065aa;
    color: white;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.coming-soon-right .sales-contact h3{
    font-size: 1.2rem;
    padding: 0 30px;
    font-family: NeoTechStd-Regular;
    border-right: 1px solid #0065aa;
}


.coming-soon-right .sales-contact h3:nth-child(3)
{
    border-right: 0;
}

.coming-soon-right .sales-contact h3 strong{
    font-family: NeoSans-Bold;
}


@media only screen and (max-width: 1368px) {
    .container{
        width:80%;
    }
    .coming-soon-right{
        width: 100%;
        justify-content: center;
    }

}


@media only screen and (max-width: 1024px) {

    .main-outer{
        background-position: 54% 30%;
    }


    .header{
        height: 50px;
        background-color: transparent;
        top: auto;
        bottom: 0;
    }

    .header .nav-inner .nav-logo{
        display: none;
    }

    .header .nav-inner .nav-social{
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .coming-soon-left{
        display: none;
        
    }

    .coming-soon-right{
        width: 100%;
        justify-content: flex-start;
    }

    .coming-soon-right img{
        width: 70%;
        height: 80px;
    }

    .coming-soon-right h3{
        font-size: 1rem;
        text-align: center;
        line-height: 25px;
        margin: 10px 0;
    }

    .coming-soon-right h2{
        font-size: 2.6rem;
        text-align: center;
        line-height: 40px;
    }

    
.coming-soon-right .desc-sections{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px;
}

.coming-soon-right .desc-sections .desc-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding:20px;
    border: none;
    border-bottom: 2px solid #0065aa;
}

.coming-soon-right .desc-sections .desc-section:nth-child(2)
{
    border-bottom: 0;
}


.coming-soon-right .desc-sections .desc-section h3{
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    font-family: NeoSans-Bold;
    line-height: 20px;
    margin: 0;
}

.coming-soon-right .desc-sections .desc-section h4{
    font-size: .7rem;
    text-align: center;
    font-family: NeoTechStd-Regular;
}

.coming-soon-right .sales-contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%
}

.coming-soon-right .sales-contact .sales-contact-details{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%
}

.coming-soon-right .sales-contact span{
    padding: 5px;
    background-color: #0065aa;
    color: white;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 10px;
}

.coming-soon-right .sales-contact h3{
    font-size: 1rem;
    padding: 0 30px;
    font-family: NeoTechStd-Regular;
    border: none;
    margin: 5px 0;
}

.coming-soon-right .sales-contact h3 strong{
    font-family: NeoSans-Bold;
}
}






.white-bg{
    background-color: white !important;
}



.login-outer{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to top, rgb(11, 20, 123), rgba(6, 76, 114, 0.7)), url('../asset/img/bg/projate-coming-soon-bg.jpg');
    background-position: 60% 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-outer .login{
    width: 50%;
    background-color: var(--seconday);
    padding: 50px 20px;
}




/*----NAV BAR----- */

.header{
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.header-flex{
    background-color: var(--primary);
}

.header-inner{
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.header-inner-items{
    width: 95%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header-inner-items .header-logo{
    width: 150px;
}

.header-inner-items .header-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-inner-items .header-menu{
    width: 100%;
}

.header-inner-items .header-menu ul{
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.header-inner-items .header-menu ul a{
    text-decoration: none;
    padding: 10px 20px;
    margin: 10px;
    color: var(--third);
}


.header-inner-items .header-menu a:nth-last-child(1)
{
    background-color: var(--third);
    color: var(--primary);
    border-radius: 20px;
    transition: .5s;
}

.header-inner-items .header-menu a:nth-last-child(1):hover{
    background-color: var(--seconday);
}

.mobile-bar{
    display: none;
}

@media only screen and (max-width: 768px) {
   
.header{
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.header-inner-items .header-menu{
    display: none;
}

.mobile-bar{
    display: flex;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    filter: var(--fourth-svg);
    transition: .5s;
    z-index: 9999999;
}

.mobile-bar-close{
    filter:var(--third-svg);
}

.mobile-bar:hover{
    transform: scale(1.1);
}

.header-inner-items .header-menu-active{
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    left: 0;
    top: 0;
    animation : slide-menu .5s;
}

@keyframes slide-menu {
    0%{
        transform: translateY(-100vh);
    }
    100%{
        transform: translateY(0);
    }
    
}

.header-inner-items .header-menu ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.header-inner-items .header-menu ul a{
    text-decoration: none;
    padding: 10px 20px;
    margin: 10px;
    color: var(--primary);
}


.header-inner-items .header-menu a:nth-last-child(1)
{
    background-color: var(--third);
    color: var(--primary);
    border-radius: 20px;
    transition: .5s;
}

.header-inner-items .header-menu a:nth-last-child(1):hover{
    background-color: var(--seconday);
}

}
/*----END NAV BAR----- */


/*----CAROUSEL----- */

.carousel{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to top, rgba(4, 61, 121, 0.9), rgba(12, 68, 128, 0.8)), url('../asset/img/bg/projate-coming-soon-bg.jpg');
    background-position: 60% 60%;
}

.carousel-inner{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}

.carousel-inner .box-carousel-white{
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color:white;
    -webkit-clip-path: polygon(0 80%, 100% 40%, 100% 100%, 0 100%);
    clip-path: polygon(0 80%, 100% 40%, 100% 100%, 0 100%); 
}

.carousel-inner .carousel-products{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.carousel-inner .carousel-product{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.carousel-inner .carousel-product .carousel-product-content{
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transform: translateX(-100vw);
    position: absolute;
}

.carousel-inner .carousel-product .show-content{
    animation: slide-right .5s ease-out;
    transform: translateX(0);
}

@keyframes slide-right {
    0%{
        transform: translateX(-100vw);
        opacity: 0;
    }
    60%{
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}



.carousel-inner .carousel-product .carousel-product-content h2{
    font-size: 90px;
    line-height: 80px;
    font-weight: bold;
    color: var(--third);
    text-transform: uppercase;
}

.carousel-inner .carousel-product .carousel-product-content h3{
    font-size: 30px;
    line-height: 30px;
    font-weight: bold;
    padding: 10px 0;
    color: var(--fourth);
}

.carousel-inner .carousel-product .carousel-product-content a{
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    background-color: var(--fourth);
    color: var(--seconday);
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
    transition: .5s;
}

.carousel-inner .carousel-product .carousel-product-content a:hover{
    background-color: var(--third);
    color: var(--seconday);
}

.carousel-inner .carousel-product img{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 50%;
    height: 100%;
    object-fit: contain;
    transform: translateX(1000px);
}

.carousel-inner .carousel-product .show-image{
    animation: slide-in .5s;
    transform: translateX(0);

}

@keyframes slide-in {
    0%{
        transform: translateX(1000px);
    }

    100%{
        transform: translateX(0);
    }
}

@media only screen and (max-width: 768px) {

    .carousel-inner .carousel-product{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
    }
    
    .carousel-inner .carousel-product .carousel-product-content{
        width: 80%;
        height: 70%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    
    .carousel-inner .carousel-product .carousel-product-content h2{
        font-size: 50px;
        line-height: 50px;
        width: 70%;
        font-weight: bold;
        color: var(--third);
    }
    
    .carousel-inner .carousel-product .carousel-product-content h3{
        font-size: 18px;
        line-height: 18px;
    }

    .carousel-inner .carousel-product img{
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 999;
        width: 100%;
        height: 60%;
        object-fit: contain;
    }
}


/*----END CAROUSEL----- */


.about-us-home, .advantages-home{
    width: 100%;
    padding:100px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    

}

.about-us-home img, .advantages-home img{
    width: 45%;
    height: 350px;
    margin: 10px;
    object-fit: cover;
    border-radius: 10px;
    
}

.advantages-home img{
    width: 50%;
    height: 400px;
    margin: 10px;
    object-fit: cover;
    border-radius: 10px;
}

.about-us-home::before{
    content: '';
    position: absolute;
    width: 40%;
    height: 300px;
    bottom: 50px;
    left: -60px;
    z-index: -1;
    background-color: var(--fourth);
    border-radius: 15px;
    opacity: .8;
}

.advantages-home::before{
    content: '';
    position: absolute;
    width: 40%;
    height: 300px;
    top: 20px;
    right: -60px;
    z-index: -1;
    background-color: var(--fourth);
    border-radius: 15px;
    opacity: .8;
}

.about-us-home .about-us-content{
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}

.advantages-home .about-us-content{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}

.about-us-home .about-us-content h3{
    font-size: 40px;
    text-transform: uppercase;
    color: var(--seconday);
    margin-bottom: 5px;
    font-weight: 400;
}

.advantages-home .about-us-content h3{
    font-size: 60px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 60px;
    font-weight: 400;
}

.advantages-home .about-us-content h4{
    font-size: 50px;
    line-height: 48px;
    margin-bottom: 10px;
}

.about-us-home .about-us-content p{
    font-size: 14px;
    color: #9d9d9d;
    line-height: 26px;
}

.advanatages-home .about-us-content p{
    font-size: 14px;
    color: var(--primary);
    line-height: 26px;
}

.about-us-home .about-us-content button{
    margin-top: 10px;
    border: none;
    background-color: var(--primary);
    color: var(--seconday);
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
    text-transform: capitalize;
    cursor: pointer;
    transition: .5s;
}

.about-us-home .about-us-content button:hover{
    background-color: var(--seconday);
    color: var(--fourth);
}


@media only screen and (max-width: 768px) {

    .about-us-home, .advantages-home{
        width: 100%;
        padding: 50px 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        
    
    }
    
    .about-us-home img, .advantages-home img{
        width: 100%;
        height: 300px;
        margin: 10px;
        object-fit: cover;
        border-radius: 10px;
        
    }
    
    .advantages-home img{
        width: 100%;
        height: 300px;
        margin: 10px;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .about-us-home::before{
        content: '';
        position: absolute;
        width: 80%;
        height: 200px;
        top: 0;
        left: -30px;
        z-index: -1;
        background-color: var(--fourth);
        border-radius: 15px;
        opacity: .8;
    }
    
    .advantages-home::before{
        display: none;
    }

    .advantages-home::after{
        content: '';
        position: absolute;
        width: 100%;
        height: 300px;
        bottom: 20px;
        left: -30px;
        z-index: -1;
        background-color: var(--fourth);
        border-radius: 15px;
        opacity: .8;
    }
    
    .about-us-home .about-us-content{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    
    .advantages-home .about-us-content{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    
    .about-us-home .about-us-content h3{
        font-size:30px;
        text-transform: uppercase;
        color: var(--seconday);
        margin-bottom: 5px;
        font-weight: 400;
        text-align: center;
    }
    
    .advantages-home .about-us-content h3{
        font-size:40px;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 5px;
        line-height: 60px;
        font-weight: 400;
        text-align: center;
    }
    
    .advantages-home .about-us-content h4{
        font-size: 40px;
        line-height: 38px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .about-us-home .about-us-content p{
        font-size: 14px;
        color: #9d9d9d;
        line-height: 26px;
        text-align: justify;
        word-spacing:0;
    }
    
    .advantages-home .about-us-content p{
        font-size: 14px;
        color: var(--primary);
        line-height: 22px;
        text-align: justify;
        word-spacing:0;
    }
    
    .about-us-home .about-us-content button{
        margin-top: 10px;
        border: none;
        background-color: var(--primary);
        color: var(--seconday);
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 10px;
        text-transform: capitalize;
        cursor: pointer;
        transition: .5s;
    }
    
    .about-us-home .about-us-content button:hover{
        background-color: var(--seconday);
        color: var(--fourth);
    }

}


.product-services{
    width: 100%;
    height: 100px;
    background-image: linear-gradient(to top, rgba(6, 57, 91,1), rgba(4,42,68,1)), url('../asset/img/home/main-switch-close-up.jpg');
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.product-services-home{
    width: 100%;
    background-image: linear-gradient(to top, rgba(6, 57, 91,1), rgba(4,42,68,1)), url('../asset/img/home/main-switch-close-up.jpg');
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.product-services-inner{
    width: 100%;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

}

.product-data-outer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-data{
    width: 80%;
    padding: 50px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

.product-data-content{
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}


.product-data-content h3{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-data-content p{
    white-space: pre-wrap !important;
    word-spacing:0;
    margin-bottom: 10px;
}

.product-data-content span{
    color: var(--third);
    margin: 10px 0;
}

.product-data-content .address-caption{
    color: var(--seconday);
    font-weight: bold;
    margin-bottom: 8px;
    position: relative;
}

.product-data-content .address-caption:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 20px;
    border-bottom: 6px solid var(--seconday);
}
.product-data-content .address-caption:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    border-bottom: 1px solid var(--seconday);
    opacity: .2;
}

.product-data-content img{
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.product-data-content h4{
    font-size: 12px;
    padding: 10px;
}

.product-data-content .broucher-content{
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
}

.product-data-content button{
    border: none;
    background-color: transparent;
    cursor: pointer;
    margin-top: 10px;
    transition: .5s;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-data-content button img{
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.product-data-content button:hover{
    transform: scale(1.1);
}

.product-data-image{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-data-image img{
    width: 80%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.product-services-inner h3{
    font-size: 36px;
    text-transform: uppercase;
    color: var(--primary);
    text-align: center;
}

.product-services-inner p{
    width: 80%;
    font-size: 14px;
    line-height: 20px;
    color: var(--primary);
    text-align: center;
    padding: 3px 0;
}

.product-data p{
    text-align: justify;
    word-spacing:0;
    width: 100%;
    line-height: 24px;
    font-size: 14px;
}

.product-services-inner .services{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.product-services-inner .services .service a{
    text-decoration: none;
    width: 100%;
    height: 350px;
}

.product-services-inner .services .service{
    width: 100%;
    margin: 10px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 2px solid var(--primary);
}

.product-services-inner .services .service img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.product-services-inner .services .service img:hover{
    transform: scale(1.1);
}

.product-services-inner .services .service h4{
    position: absolute;
    width: 100%;
    padding: 15px 20px;
    background-color: var(--primary);
    color: var(--third);
    text-align: center;
    bottom: 0;
}

.product-page-services{
    width: 100%;
    display: grid !important;
    grid-template-columns: auto auto auto auto auto;
    grid-column-gap: 10px;
    grid-row-gap:10px;
    padding: 30px 0;
    justify-content: center;
}



.product-page-services .product-page-service{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.product-page-services .product-page-service a{
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    border-radius: 10px;
    transition: .5s;
    overflow: hidden;
    border: 1px solid var(--seconday);
}

.product-page-services .product-page-service img{
    width: 100%;
    height: 165px;
    overflow: hidden;
    object-fit: contain;
    transition: .5s;
    z-index: 1;
}

.product-page-services .product-page-service img:hover{
    transform: scale(1.1);
}

.product-page-services .product-page-service a:hover{
    background-color: var(--third);
}

.product-page-services .product-page-service a h4{
    width: 100%;
    height: 60px;
    padding: 10px;
    font-size: 16px;
    color: var(--seconday);
    background-color: var(--fourth);
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 1366px) {
    .product-page-services{
        width: 100%;
        display: grid;
        grid-template-columns: auto auto auto auto;
        grid-column-gap: 10px;
        grid-row-gap:10px;
        padding: 30px 0;
        justify-content: center;
    }

}

@media only screen and (max-width: 1024px) {
    .product-page-services{
        width: 100%;
        display: grid;
        grid-template-columns: auto auto auto;
        grid-column-gap: 10px;
        grid-row-gap:10px;
        padding: 30px 0;
        justify-content: center;
    }

}

@media only screen and (max-width: 768px) {

    .product-services{
        height: 120px;
    }
    

    
    .product-services-home{
        width: 100%;
        background-image: linear-gradient(to top, rgba(6, 57, 91,1), rgba(4,42,68,1)), url('../asset/img/home/main-switch-close-up.jpg');
        background-blend-mode: multiply;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
    }
    
    .product-services-inner{
        width: 100%;
        padding: 50px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    
    }
    
    .product-data-outer{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        
    }
    
    .product-data{
        width: 100%;
        padding: 50px 0;
        padding-top:0;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: center;
    }
    
    .product-data-content{
        width: 100%;
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    
    .product-data-content h3{
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .product-data-content span{
        color: var(--third);
        margin: 10px 0;
    }
    
    .product-data-content .address-caption{
        color: var(--seconday);
        font-weight: bold;
        margin-bottom: 8px;
        position: relative;
    }
    
    .product-data-content .address-caption:before{
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 20px;
        border-bottom: 6px solid var(--seconday);
    }
    .product-data-content .address-caption:after{
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        border-bottom: 1px solid var(--seconday);
        opacity: .2;
    }
    
    .product-data-content img{
        margin: 10px 0;
        width: 100%;
        height: 200px;
        object-fit: contain;
    }
    
    .product-data-content button{
        border: none;
        background-color: var(--primary);
        color: var(--third);
        padding: 10px 20px;
        cursor: pointer;
        margin-top: 10px;
        transition: .5s;
        border-radius: 10px;
    }
    
    .product-data-content button:hover{
        background-color: var(--third);
        color: var(--seconday);
    }
    
    .product-data-image{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .product-data-image img{
        width: 80%;
        height: 300px;
        object-fit: contain;
        border-radius: 10px;
    }
    
    .product-services-inner h3{
        font-size: 30px;
        text-transform: uppercase;
        color: var(--primary);
        text-align: center;
        margin-bottom: 10px;
    }
    
    .product-services-inner p{
        width: 100%;
        font-size: 14px;
        line-height: 20px;
        color: var(--primary);
        text-align: justify;
        word-spacing:0;
        padding: 3px 0;
 
    }
    
    .product-data p{
        text-align: justify;
        word-spacing:0;
        width: 100%;
        line-height: 24px;
        font-size: 14px;
    }
    
    .product-services-inner .services{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 0;
    }
    
    .product-services-inner .services .service a{
        text-decoration: none;
        width: 100%;
        height: 350px;
    }
    
    .product-services-inner .services .service{
        width: 100%;
        margin: 10px;
        height: 250px;
    }
    
    
    .product-page-services{
        width: 100%;
        display: grid !important;
        grid-template-columns: auto;
        grid-column-gap: 10px;
        grid-row-gap:10px;
        padding: 30px 0;
        justify-content: center;
    }

    .product-page-services .product-page-service a{
        width: 100%;
    }
    
    
   

}

.testimonial-section{
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    position: relative;
    padding-bottom: 60px;
}


.testimonial-section h3{
    font-size: 36px;
    text-transform: uppercase;
    color: var(--seconday);
    text-align: center;
}

.testimonial-section p{
    width: 100%;
    font-size: 20px;
    line-height: 20px;
    color: var(--primary);
    text-align: center;
    padding: 3px 0;
}
.testimonial{
    width: 100%;
    height: 100%;
    display: none;
}

.testimonial-active{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.testimonial img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 100%;
    margin: 20px 0;
    box-shadow: 2px 2px 8px rgba(0,0,0,.3);
}
.testimonial h3{
    font-size: 16px;
    text-align: center;
    width: 70%;
    color: var(--primary);
    line-height: 20px;
}
.testimonial p{
    font-size: 14px;
    text-align: center;
    width: 70%;
    color: grey;
    line-height: 20px;
}

.home-testimonial-nav{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 60px;
    z-index: 2;
}

.home-testimonial-nav span{
    width: 15px;
    height: 15px;
    background-color: var(--fourth);
    border-radius: 100%;
    margin: 0 3px;
    transition: .5s;
    cursor: pointer;
}

.home-testimonial-nav span:hover{
    background-color: var(--seconday);
    transform: scale(1.05);
}

.home-testimonial-nav .testimonial-active{
    background-color: var(--seconday);
    border: 1px solid var(--fourth);
}

@media only screen and (max-width: 768px) {

    .testimonial-section{
        width: 100%;
        height: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #fafafa;
        position: relative;
        padding-bottom: 60px;
    }
    
    
    .testimonial-section h3{
        font-size: 36px;
        text-transform: uppercase;
        color: var(--seconday);
        text-align: center;
    }
    
    .testimonial-section p{
        width: 100%;
        font-size: 20px;
        line-height: 20px;
        color: var(--primary);
        text-align: center;
        padding: 3px 0;
    }
    .testimonial{
        width: 100%;
        height: 100%;
        display: none;
    }
    
    .testimonial-active{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        
    }
    
    .testimonial img{
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 100%;
        margin: 20px 0;
        box-shadow: 2px 2px 8px rgba(0,0,0,.3);
    }
    .testimonial h3{
        font-size: 16px;
        text-align: center;
        width: 70%;
        color: var(--primary);
        line-height: 20px;
    }
    .testimonial p{
        font-size: 14px;
        text-align: center;
        width: 100%;
        color: grey;
        line-height: 20px;
    }
    
    .home-testimonial-nav{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0;
        bottom: 60px;
        z-index: 2;
    }
    
    .home-testimonial-nav span{
        width: 15px;
        height: 15px;
        background-color: var(--fourth);
        border-radius: 100%;
        margin: 0 3px;
        transition: .5s;
        cursor: pointer;
    }
    
    .home-testimonial-nav span:hover{
        background-color: var(--seconday);
        transform: scale(1.05);
    }
    
    .home-testimonial-nav .testimonial-active{
        background-color: var(--seconday);
        border: 1px solid var(--fourth);
    }
}


/*----FOOTER----- */


.footer{
    width: 100%;
    height: 500px;
    background-image: linear-gradient(to top, rgba(6, 57, 91,1), rgba(4,42,68,1)), url('../asset/img/footer/projate-footer-bg.jpg');
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer .footer-inner{
    width: 95%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer .footer-inner .footer-content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;

}

.footer .footer-inner .footer-content .footer-logo{
    width: 50%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer .footer-inner .footer-content .footer-logo img{
    height: 100px;
    object-fit: contain;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer .footer-inner .footer-content .footer-logo .footer-address-item{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 0;
    color: white;
    line-height: 20px;
}

.footer .footer-inner .footer-content .footer-logo .footer-address-item .address{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer .footer-inner .footer-content .footer-logo .footer-address-item img{
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 10px;
    background-color: white;
    padding: 5px;
    border-radius: 5px;
}


.footer .footer-inner .footer-content .footer-menu-section{
    width: 25%;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer .footer-inner .footer-content .footer-menu-section h3{
    font-size: 22px;
    color: white;
    position: relative;
    padding-bottom: 10px;
    width: 150px;
}

.footer .footer-inner .footer-content .footer-menu-section h3::after{
    content:'';
    bottom: 0;
    position: absolute;
    left: 0;
    width: 150px;
    border-bottom: 2px solid white;
}

.footer .footer-inner .footer-content .footer-menu-section ul{
    width: 150px;
    list-style: none;
    margin-top: 15px;
}

.footer .footer-inner .footer-content .footer-menu-section a{
    text-decoration: none;
}

.footer .footer-inner .footer-content .footer-menu-section ul li{
    padding: 10px;
    padding-left: 0;
    color: white;
    transition: .5s;
}

.footer .footer-inner .footer-content .footer-menu-section ul li:hover{
    color: var(--primary);
}

.footer .footer-inner .footer-content .footer-newsletter-section{
    width: 25%;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.footer .footer-inner .footer-content .footer-newsletter-section .footer-newsletter{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px 0;
}

.footer .footer-inner .footer-content .footer-newsletter-section .footer-newsletter span{
    font-size: 20px;
    color: white;
}

.footer .footer-inner .footer-content .footer-newsletter-section .footer-newsletter button{
    border: none;
    background-color: var(--fourth);
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
}

.footer .footer-inner .footer-content .footer-newsletter-section .footer-newsletter input{
    padding: 10px;
    border: none;
    width: 100%;
    margin-top: 10px;
}

.footer .footer-inner .footer-content .footer-newsletter-section .footer-social-media{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px 0;
}

.footer .footer-inner .footer-content .footer-newsletter-section .footer-social-media .footer-social-icons{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0;
}

.footer .footer-inner .footer-content .footer-newsletter-section .footer-social-media .footer-social-icons a{
    text-decoration: none;
}

.footer .footer-inner .footer-content .footer-newsletter-section .footer-social-media .footer-social-icons img{
    width: 30px;
    height: 30px;
    object-fit: contain;
    cursor: pointer;
    transition: .5s;
}

.footer .footer-inner .footer-content .footer-newsletter-section .footer-social-media .footer-social-icons img:hover{
    transform: scale(1.1);
}

.footer .footer-inner .footer-content .footer-newsletter-section .footer-social-media h3{
    font-size: 20px;
    color: white;
    font-weight: 300;
}

.copyright{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--fourth);
    height: 60px;
}

.copyright-inner{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.copyright-inner a{
    text-decoration: none;
    margin-left: 3px;
    color: var(--seconday);
    font-weight: 500;
}

@media only screen and (max-width: 1114px) {
    .footer .footer-inner .footer-content .footer-logo img{
        width: 220px;
        height: 100px;
    }

}


@media only screen and (max-width: 768px) {


    .footer{
        width: 100%;
        height: 900px;
    }
    
    
    .footer .footer-inner .footer-content{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    
    }
    
    .footer .footer-inner .footer-content .footer-logo{
        width: 100%;
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .footer .footer-inner .footer-content .footer-logo img{
        width: 100%;
        height: 100px;
    }
    

   
    
    
    .footer .footer-inner .footer-content .footer-menu-section{
        width: 100%;
        padding: 20px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .footer .footer-inner .footer-content .footer-menu-section h3{
        width: 100%;
    }
    
    .footer .footer-inner .footer-content .footer-menu-section h3::after{
        width: 80%;
    }
    
    .footer .footer-inner .footer-content .footer-menu-section ul{
        width: 100%;
    }
    
   
    .footer .footer-inner .footer-content .footer-newsletter-section{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    
    .copyright{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: var(--fourth);
        height: 60px;
    }
    
    .copyright-inner{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 12px;
    }
    
}
/*----END FOOTER----- */



.customers{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-row-gap: 40px;
    grid-column-gap: 20px;
    padding: 30px 0;
}

.customers-1{
    grid-template-columns: auto;
}

.customer{
    width: 100%;
    height: 200px;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
}

.customer img{
    width: 200px;
    height: 100%;
    object-fit: cover;
}

.customer h3{
    max-width: 200px;
    font-size: 14px;
    font-weight: normal;
    margin-top: 10px;
    z-index: 999;
}

@media only screen and (max-width: 768px) {

    .customers{
        width: 100%;
        display: grid;
        grid-template-columns: auto;
        grid-row-gap: 20px;
        grid-column-gap: 20px;
        padding: 30px 0;
    }
    
}


.downloads{
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.downloads-inner{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: space-around;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.downloads-item{
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.downloads-inner img{
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 5px;
}

.downloads-inner h3{
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}


.downloads-inner a{
    text-decoration: none;
    transition: .5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.downloads-inner a:hover{
    transform: scale(1.1);
}


@media only screen and (max-width: 768px) {
    .downloads-inner{
        width: 100%;
        display: grid;
        grid-template-columns: auto;
        justify-content: space-around;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
}


.disclaimer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.disclaimer p{
    width: 80%;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
}
