/* ---------reset---------- */
* {
    margin: 0px;
    padding: 0px;
    /* margin-right: 0px; */
    box-sizing: border-box;
    font-family: "poppins", sans-serif;

}

a{
    text-decoration: none;
}
section {
    background-color: #f4f5cbaf;
}

.buton {
    background: #fff;
    padding: 15px 35px;
    color: rgb(18, 18, 158);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;

}

img {
    border-radius: 20px;
}

h2 {
    text-align: center;
}

.card {
    text-align: center;

}


/* ---header--- */


.nav-link {
    color: white;
}








.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    
    flex-direction: column;
    /* background: rgb(18, 18, 158); */
    padding: 2px 15px;

}

.home :before {

    z-index: -1;
    content: '';
    position: absolute;
    background: rgba(49, 49, 63, 0.078);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;

}

.home .content {
    z-index: 1000;
    color: #fff;
    
    margin-top: 50px;

}


.home .content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 75px;
    margin-bottom: 40px;
text-align: center;


}
.home .content p{
    font-size: 2rem;
    margin-top: 12rem
    
}


/* .home .content a:hover{
    
} */

.home .slider-img video {
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/* .slider-nav{
    z-index: 999;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;

}

.slider-nav .slid-btn{
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.slider-nav .slid-btn:not(:last-child){
    margin-right: 20px;
} */



/* .home .content h1{

} */

.home .content p {
    margin-bottom: 50px;
}

/* ----logo----- */
.logos-section {
    text-align: center;
    padding: 80px 20px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 5rem;
    color: #2C3E50;
}

.logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
}

.logo-item {
    width: 96px;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0;
}





/* media query for logos------ */

@media (max-width: 900px) {
    .logo-item {
        width: 80px;
        height: 80px;
    }

    .section-title {
        font-size: 2rem;
    }
}






@media (max-width: 480px) {

    .logos-section{
        padding: 52px 0px;
    }
    .logo-item {
        width: 62px;
        height: 34px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}




/* -----aboutus------ */




.about {

    padding: 2rem 6%;
}

.about .heading {
    text-align: center;
    /* color: #fff; */
    text-transform: uppercase;
    padding-bottom: 2.5rem;
    font-size: 3rem;
}

.about .row {
    display: flex;
    align-items: center;
    /* background: #F0EF42; */
    flex-wrap: wrap;
    border-radius: 20px;
    border: 0.2rem solid #120a45;
}

.about .row .image {
    flex: 1 1 24rem;


}

.about .row .image img {
    width: 100%;
    height: 25rem;

}

.about .row .content {
    flex: 1 1 45rem;
    padding: 2rem;

}

.about .row .content h3 {
    font-size: 3rem;
    /* color: #fff; */
}

.about .row .content p {
    font-size: 1.1rem;
    /* color: #ccc; */
    padding: 1rem;
    line-height: 1.6;
}

/* -----why zipline---- */

.banner__container {
    background-image: linear-gradient(rgba(35, 71, 103, 0.5),
            rgba(35, 71, 103, 0.5)),
        url("assets/anthony-delanoix-ISUB1vUFFfI-unsplash.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner__container .section__container {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
}

.banner__content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    color: whitesmoke;
}

.banner__content h2 {
    font-size: 3rem;
    font-weight: 400;
}

.banner__content p{
    font-size: 1.4rem;

}

.banner__content button {
    padding: 0.5rem 2rem;
    outline: none;
    border: 2px solid var(--secondary-color);
    background-color: transparent;
    color: var(--secondary-color);
    font-size: 1rem;
    cursor: pointer;
}

/* --------work ---- */


.work-content {
    margin: 10px 10px 10px 10px;
}

.work-con {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: auto;
}

.work-con h2 {
    font-size: 3rem;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 4rem 2rem; */
    place-items: center;
    border: 0.1rem solid #120a45;
    border-radius: 20px;
}



.work-grid .work-card {
    padding: 20px 20px 20px 20px;
    ;
}

.work-grid .work-card:nth-of-type(1) {
    order: 1;
}

.work-grid .work-card:nth-of-type(2) {
    order: 2;
}

.work-grid .work-card:nth-of-type(3) {
    order: 4;
}

.work-grid .work-card:nth-of-type(4) {
    order: 3;
}

.work-grid .work-card:nth-of-type(5) {
    order: 5;
}

.work-grid .work-card:nth-of-type(6) {
    order: 6;
}

.work-card img {
    max-height: 320px;
    width: 100%;
}


.work-card .card-content {

    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    max-height: 320px;
    width: 100%;
    /* color: b; */


}

.work-card img {
    margin-top: 1.5rem;
}

.work-card .card-content h2 {

    font-size: 2rem;
    font-weight: 400;
}



.work-card .card-content p {
    font-size: 1.15rem;
    /* font-family: ; */
}



.work-btn{

    text-align: center;
    margin: 2rem;

    
}
 .work-btn a{
        

        padding: 20px 62px;

    }


/* ----services--- */



.services {
    padding: 6rem 20rem 6rem 20rem;
    background-color: white;
}

.services .card {
    background-color: whitesmoke;
    margin: 0 1rem 0 1rem;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
    align-items: center;
    
}

.services .card img{
    
    height: 5rem;
    width: 5rem;
    border-radius: 0;
    margin: 1rem;


}
.services .card:hover {
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2), 0 8px 25px 0 rgba(0, 0, 0, 0.19);
}

.services .services-content h2 {
    font-size: 2.5rem;
    margin: 4rem;

}


/* -----testimonials----- */


.testi {
    margin-top: 3rem;
    padding: 1rem 0rem 6rem 0rem;
    background-image: linear-gradient(rgba(35, 71, 103, 0.5),
            rgba(35, 71, 103, 0.5)),
        url("assets/zip\ line\ 25.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testi-content h2 {
    font-size: 2.5rem;
    margin: 4rem;
    color: whitesmoke;

}

.testi-cards {
    margin: 0 5rem 0 5rem;
}


.why-us {
    background-image: linear-gradient(rgba(35, 71, 103, 0.5),
            rgba(35, 71, 103, 0.5)),
        url("assets/anthony-delanoix-ISUB1vUFFfI-unsplash.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 8rem 10rem 8rem 10rem;
    padding: 3rem;
    border-radius: 50px;
    color: whitesmoke;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.why-us h2 {
    font-size: 2.5rem;
    margin: 1rem;

}

.why-us p {
    font-size: 1.2rem;

}

.contact-us {
    margin: 6rem;
    padding: 4rem;
    border-radius: 40px;

    box-shadow: 0 15px 10px 0 rgba(0, 0, 0, 0.2), 0 8px 20px 0 rgba(0, 0, 0, 0.19);
}

.contact-us .contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.contact-us .contact .contact-content {
    margin: 10px;
    padding: 20px;
    flex: 1 1 200px;
}

.contact-us .contact .contact-content h1 {
    font-weight: bold;
}

.contact-us .contact .contact-content h2 {
    font-weight: bold;
}

.contact-us .contact .contact-content h3 {
    font-weight: bold;
}






/* -----footer--- */

footer .footer-con {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #120a45;
    color: azure;
    
    gap: 2rem;
}

footer .footer-con .footer-content{
    padding-top: 2rem;
    
}
footer .footer-con .footer-content h4{
    font-size: 1rem;
}
















/* ----------media queries------ */




   



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


    header {
        padding: 12px 20px;


    }

    .home {
        padding: 1px 20px;
        min-height: 70vh;

    }

    .home .content {

       
    }

    .home .content h1 {

        font-weight: 700;
    }

    

    header .navigation {
        display: none;
    }

    

    .work-con h2 {
        font-size: 2rem;

    }





    .work-card .card-content h2 {

        font-size: 1.2rem;

    }

    .work-card .card-content p {
        font-size: 0.8rem;
    }


    .services {
        margin: 0;
        padding: 2rem;

    }

    .testi-cards {
        margin: 0 1rem 0 1rem;

    }

    .why-us {
        margin: 0;
    }

    .contact-us {
        margin: 2rem 0 2rem 0;
        padding: 2rem;

    }


    /* .home .slider-img img{

        width: ;
    } */


    /* .menu-btn{

    } */





}



/* ---media queries for mobile----- */

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

    .home {
        min-height: 60vh;
    }


    .home .content h1 {
        font-size: 2.25rem;
        line-height: 52px;
        letter-spacing: 2px;

    }

    .home .content p {
        font-size: 1rem;

    }

    .about .heading {
        font-size: 2rem;
        padding-bottom: 2rem;
    }

    .about .row .image img {
        
        height: 20rem;
    }

    .banner__content h2{
        font-size: 2rem;
     
    }
    .banner__content p{
        font-size: 1.1rem;

    }

    .work-con h2 {
        font-size: 1.7rem;

    }

    .work-grid {
        display: block;

    }

    .work-card .card-content {
        gap: 1rem;

    }

    .work-card .card-content h2 {

        font-size: 1.2rem;

    }

    .work-card .card-content p {
        font-size: 0.8rem;
    }



    .services {
        margin: 3rem;
    }

    .services .services-content h2 {

        margin: 2rem;

    }

    footer .footer-con .footer-content{
        margin: 0;
    }

   footer .footer-con .footer-content h4{
    font-size: 0.8rem;
    
   }



}