html {
    scroll-behavior: smooth;
}


:root{
    --bg-color:#FFEFD6;
    --white-font:#FFFFFF;
    --orange-font:#DD7F24;
    --black-font:black;
    --gray-font:#5d5d5d;
    --bg-gredient:linear-gradient(225.83deg, #00AAFF 11.34%, #96DCFF 35.49%, #0878FF 69.01%, #0878FF 98.59%);
    --bg-gredient1:linear-gradient(95.28deg, rgba(133, 214, 255, 0.8) 2.8%, #28B7FF 97.16%);

    
    --blue1:#045098;
    --blue2:#0878FF;
    --blue-bg:#D9F2FF;
    --btn-green:#518F5D;
    --green-shade:#386A42;
    --light-green:#D9FFE1;
}
* {
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;

}
body {
    margin: 0;
    padding: 0;
    border: 0;
}

a {
    text-decoration: none;
    color: inherit;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

@media (max-width:768px) {
    p {
        font-size: 16px !important;
    }
}

.container {
    /* max-width: 1140px; */
    margin-inline: auto;
    width: 90%;
}


@media(max-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media(min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media(min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media(min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width:1300px) {
    .container{
        max-width: 1240px;
    }
}
.heading{
    color: var(--orange-font);
    margin-bottom: 30px;
    font-size: 3rem;
}
@media (max-width:768px) {
    .heading{
        font-size: 2.3rem;
    }
}
.primary-btn{
    height: 40px;
    border-radius: 20px;
    padding-inline: 20px;
    font-size: initial;
    background-color: var(--white-font);
    color: var(--blue1);
    border:1px solid transparent;
    transition: .3s ease;
}
.primary-btn:hover{
    border:1px solid var(--blue1);
    background-color: var(--bg-color);
    color: var(--blue1);
}
.secondary-btn{
    background-color: var(--blue-bg);
    border-radius: 20px;
    border: 1px solid transparent;
    height: 40px;
    font-size: initial;
    color: var(--blue1);
    padding-inline: 20px;
    margin-inline: 20px;
    transition: .3s ease;

}
.secondary-btn:hover{
    background-color: var(--white-font);
    border-color: var(--blue1);
}

.gradient-border {
    position: relative; /* Adjust padding as needed */
    border: none; /* Optional for rounded borders */
}
.gradient-border::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    z-index: -1;
    /* background: rgb(140,66,29); */
    background:var(--border-gredient) ;
    border-radius: inherit;
    background-clip: border-box; /* Important for clipping gradient to the border */
}

/* navbar section */
.navbar-section {
    display: flex;
    list-style: none;
    color: var(--blue1);
    font-weight: 600;
    padding: 25px;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    /* font-weight: 700; */
    text-transform: capitalize;
    z-index: 10;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


.logo img {
    height: auto;
    width: 150px;
    object-fit: cover;
    object-position: center;

}

.menu-icon {
    display: none;
    width: 35px;
}
.menu-icon img, .menu-close-icon img{   
    width: 100%;
    height: auto;
}
.menu-close-icon {
    display: none;
    max-width: 40px;

}

.nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 70%;
    transition: 0.3s ease-out;
}

.nav-container li {
    margin-left: 10px;
}

@media screen and (max-width: 1024px) {
    .navbar-section {
        padding: 10px;
        height: 70px;
    }

    .menu-icon {
        display: block;
    }
}

.nav-container li > a {
   padding-bottom: 10px;
}

.nav-container li a,
.nav-container li a:after,
.nav-container li a:before {
    transition: all .5s;
}

.nav-container li a {
    position: relative;
}

.nav-container li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: var(--gray-font);
    height: 1px;
}

.nav-container li a:hover:after {
    width: 100%;
}

@media screen and (max-width: 1024px) {

    .expanded {
        width: 50% !important;
        padding: 10px;
    }

    #topnav {
        width: 0%;
        transition: width 0.5s ease;
        overflow: hidden;
        /* position: relative; */
        display: block;
        position: fixed;
        /* padding: 10px; */
        z-index: 2;
        right: 0;
        top: 0;
        min-height: 100vh;
        overflow-y: scroll;
        background: var(--blue-bg);
        color: var(--black-font);
        transition: width 0.3s ease;
    }

    .nav-container.responsive .menu-close-icon {
        position: absolute;
        top: 0;
    }

    .nav-container li a::after {
        background: none;
    }

    .nav-container li {
        float: none;
        display: flex;
        flex-direction: column;
        text-align: left;
        margin-top: 20px;
        margin-left: 20px;
    }
}
@media (max-width:500px) {
    .expanded{
        width: 75% ! important;
    }
}
/* navbar end */

/* her0-section */

.hero-section{
    position: relative;
    height: calc(100vh - 100px);
    background-image: url(./assets/hero-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
}


.hero-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
}




.hero-content{
    width: 50%;
    color: var(--black-font);
}
.hero-content h1{
    font-size: 3rem;
    line-height: 80px;
    margin-block: 20px;
    color: white;
}
.hero-content h1 span{
    color: var(--blue1);
}
.hero-content p{
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 2px;
    margin-bottom:30px;
    font-size: 18px;
    line-height: 27.28px;
    text-align: center; 
    color: white;
    
}
@media (max-width:1200px) {
    .hero-content h1{
        font-size: 3rem;
    }
}
@media (max-width:992px) {
    .hero-section{
        height: auto;
    }
    .hero-container{
        flex-direction: column-reverse;
        padding-block: 30px;
    }
    .hero-content{
        width: 90%;
        text-align: center;
    }
    .hero-container .img-wrapper{
        width: 60%;
    }
    .hero-content h1{
        font-size: 2.8rem;
        line-height: 50px;
    }
}
@media (max-width:500px) {
    .hero-content h1{
        font-size: 2.2rem;
    }
}
/* hero-section end */



/* about-section */
.about-section{
    margin-bottom: 5%;
    background-color: var(--blue1);
    color: var(--white-font);
    padding-top: 5%;
}
.about-container{
    display: flex;
    /* align-items: center; */
    gap: 30px;
    /* width: 100%; */
    justify-content: space-between;
}

.about-section .img-wrapper img{
    width: 100%;
    height:100%;
    object-fit: cover;
    
}

.about-section .img-container{
    width: 60%;
    /* position:relative; */
    height: 100%;
    margin-top: 20px;
}
.about-container .img-wrapper{
    width: 100%;
    /* margin-right: auto; */
    /* position: relative; */
    font-size: 0;
    top: 0;
    right: 0;
    left: -20%;
    /* bottom: 0; */
    /* left: -10%; */
}

.about-content{
    width: 30%;
    color: var(--green-bg);
    margin-inline: auto;
    padding-inline: 20px;
}
.section-name{
    font-size: 28px;
    font-weight: 400;
    color: var(--blue1);
}
.about-section .section-name{
    color: var(--white-font);
}
.about-section h1{
    font-size: 1.5rem;
    margin-block: 20px;
    font-weight: 400;
    font-style: italic;
}
.about-content p{
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.9rem;
}


.why-choose{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    width: 550px;
    margin-block: 20px;
    border: 1px solid var(--gray-font);
    padding: 20px;
    border-radius: 20px;
}
.why-choose img{
    width: 25px;
    height: 25px;
    aspect-ratio: 1/1;
}
.why-choose p{
    font-size: 18px;
    margin-top: 10px;
    color: var(--gray-font);
    text-align: justify;
}

@media (max-width:1024px) {
    .about-container .img-wrapper{
        width: 80%;
        margin-inline: auto;
        position: static;
    }
    .about-container .img-container{
        width: 50%;
    }
    .about-container .about-content{
        width: 50%;
    }
    .about-section{
        padding-bottom: 5%;
    }
    
}
@media (max-width:767px) {
    
    .why-choose{
        width: 90%;
        text-align: left;
        margin-inline: auto;
    }
    .about-container{
        flex-direction: column;
    }
    .about-container .about-content{
        width: 100%;
        text-align: center;
        margin-bottom: 5%;
    }
    .about-container .img-container{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
        gap: 20px;
        width: 100%;
        margin-inline: auto;
    }
    .about-container .img-wrapper{
        width: 100%;
    }

}
@media (max-width: 500px){
.about-content h1 {
    font-size: 2.2rem;
}
}
/* about section end */

/* project section */
.project-container-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.project-container-header .section-name{
    color: var(--blue1);
}

[data-tab-content] {
    display: none;
  }
  
  .active[data-tab-content] {
    display: block;
  }
  
  body {
    padding: 0;
    margin: 0;
  }
  
  .tabs {
    display: flex;
    justify-content: right;
    list-style-type: none;
    margin: 0;
    padding: 0;
    
  }
  
  .tab {
    cursor: pointer;
    padding: 10px;
    font-weight: 600;
  }
  
  .tab.active {
    /* background-color: rgb(230, 230, 230); */
    color: var(--blue1);
  }
  
  .tab:hover {
    color: var(--blue1);
  }
  
  .tab-content {
    margin-block: 20px;
   
  }
  
  .project-img-wrapper{
    display: flex;
    font-size: 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .project-img{
    width: 33.333%;
    aspect-ratio: 3/2;
  }
  .project-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @media (max-width:767px) {
    .project-img{
        width: 50%;
    }
  }
  @media (max-width:500px) {
    .project-container-header{
        flex-direction: column;
        gap: 20px;
    }
    .project-img{
        width: 100%;
    }
  }
  .projects-btn{
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 10px;
  }
/* project section end */

/* collaborations section */
.collaboration-section{
    margin-block: 5%;
}
.collaboration-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.collab-img{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width:50%;
    aspect-ratio: 5/3;
    display: flex;
    align-items: flex-end;
    justify-content: left;
    color: var(--white-font);
    padding-bottom: 20px;
    padding-left: 20px;
}
@media (max-width:500px) {
    .collab-img{
        width: 100%;
    }
}

/* collaborations section end */
.strength-img{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width:33.333%;
    aspect-ratio: 5/3;
    display: flex;
    align-items: flex-end;
    justify-content: left;
    color: var(--white-font);
    padding-bottom: 20px;
    padding-left: 20px;
}
@media (max-width:767px) {
    .strength-img{
        width: 50%;
    }
}
@media (max-width:500px) {
    .strength-img{
        width: 100%;
    }
}

/* strength-section */

/* strength-sention end */
/* services-section */
.our-team-section{
    padding-block: 5%;
    margin-bottom: 50px;
}
.our-team-container{
    position: relative;
}
.team-wrapper{
    display: flex;
    flex-wrap:wrap ;
    gap: 50px;
    justify-content: center;
    margin-top: 20px;
}
.team{
    width: calc(33.3333% - 50px);
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    padding: 20px;
    transition: .5s ease;
}
.team:hover{
    transform:translateY(-5%) ;
}

.team .img-wrapper img{
    width: 100%;
    height: auto;
    object-fit: cover;
    /* border-radius: 20px 20px 0 0; */
}
.team .img-wrapper{
    width: 100%;
    margin-inline: auto;
}
.team span{
    font-weight: 700;
    color: var(--blue1);
    letter-spacing: 2px;
    margin-top: 30px;
    display: block;
    font-size: 0.8rem;
}
.team h3{
    margin-block: 10px;
    /* color: var(--blue1); */
    
}
.our-team-container .primary-btn{
    display: inline-block;
    padding-block: 10px;
    background-color: var(--blue1);
    color: var(--white-font);
    position: absolute;
    right: 0;
    margin-top: 20px;
}
@media (max-width:992px) {
    .team-wrapper{
        gap: 20px;
    }
    .team{
        width: calc(50% - 20px);
    }
}
@media (max-width:600px) {
    .team{
        width: 100%;
    }
    .team:hover{
        transform: none;
    }
}
/* service-section end */


/* testimonial-section */
.testimonial-section{
    background-color: var(--blue1);
    padding-block: 5%;
}
.testimonial-container .section-name{
    color: var(--white-font);
}
.testimonial-wrapper{
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.testimonial{
    background-color: var(--white-font);
    width: calc(25% - 20px);
    padding: 20px;
}
.testimonial p{
    font-weight: 600;
    margin-top: 10px;
}
.testimonial a{
    text-decoration: underline;
}
.testimonial > img{
    width: 30px;
    height: 30px;
}
.auther{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.auther img{
    width: 70px;
    height: 70px;
}
@media (max-width:992px) {
    .testimonial{
        width: calc(33.333% - 20px);
    }
}
@media (max-width:767px) {
    .testimonial{
        width: calc(50% - 20px);
    }
}
@media (max-width:500px) {
    .testimonial{
        width: 100%;
    }
}
/* testimonialsection end */

/*banner-section  */
.banner-section{
    margin-block: 5%;
}
.banner{
    width: 80%;
    margin-inline: auto;
    border: 18px solid #89D8FF;
    border-radius: 50px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    background: var(--bg-gredient1);
}
.banner h1{
    font-size: 2rem;
    color: var(--white-font);
    width: 70%;
    text-align: center;
}
@media (max-width:500px) {
    .banner{
        width: 100%;
    }
    .banner h1{
        width: 90%;
    }
}
/* banner-section end */

/* why-choose-section */
.why-choose-section{
    margin-block: 10%;
    overflow: hidden;
}
.why-content{
    width: 100%;
}
.why-choose-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* gap: 20px; */
}
.why-choose-section .why-choose{
    border: none;
    align-items: center;
}
.why-choose-section .why-choose img{
    width: 70px;
    height: 70px;
}
.why-choose-section .hero-content p{
    margin-bottom: 0;
}
.why-choose-section .why-choose h3{
    color: var(--blue1);
    font-size: 1.5rem;
}
.why-choose-section .hero-container{
    gap: 50px;
}
@media (max-width:500px) {
    .why-choose-section .why-choose{
        flex-direction: column;
        text-align: center;
    }
}
/* why-choose-section end */

/* project-section */
/* .project-section{
    background-color: var(--blue-bg);
    padding-block: 5%;
}
.project-container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.project-container .img-wrapper{
    width: 40%;
}
.project-container .img-wrapper img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.project-content{
    width: 40%;
}
.project-content h2{
    margin-block: 20px;
}
.project-content p{
    margin-block: 50px;
    line-height: 24.55px;
    color: var(--gray-font);
    text-align: justify;
}
@media (max-width:992px) {
    .project-container{
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    .project-content, .project-container .img-wrapper{
        width: 70%;
    }
}
@media (max-width:500px) {
    .project-content, .project-container .img-wrapper{
        width: 100%;
    }
} */
/* project-section end */



.cta{
    display: flex;
    flex-direction: column;
    padding-block: 30px;
    /* justify-content: center; */
}
.cta h1{
    position: relative;
    text-align: left;
    width: 90%;
    margin-top: 20px;
}
/* .cta div{
    display: flex;
    flex-direction: column;
    gap: 30px;
} */
.cta h1::after{
    position: absolute;
    top: -10px;
    left: 0;
    /* right: 0; */
    margin: auto;
    width: 25%;
    content: '.';
    color: transparent;
    background:linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.31) 123.02%);
    height: 2.5px;
}
@media (max-width:992px) {
    .cta{
        flex-direction: column;
        align-items: center;
    }
    .cta h1{
        width: 90%;
        text-align: center;
    }
    .cta h1::after{
        height: 0;
    }
    .cta div{
        /* width: 90%; */
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
}
/* banner cta section end */

/* footer section */
footer{
   /* background-color: var(--blue1); */
    padding-block: 5%;

}

.footer-container{

    width: 90%;
    margin-inline: auto;
    max-width: 1400px;
}

.footer-wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}


.footer-about p{
    text-align: justify;
    width: 100%;
    max-width: 300px;
    color: var(--blue1);
}

.footer-item h2{
    /* width: min-content; */
    margin-bottom: 10px;
    font-weight: 500;
}
.about h2{
    font-size: 2rem;
}
.footer-item ul{
    line-height: 2rem;
}
.footer-item li a .icon-wrapper{
    width: 30px;
    padding: 7px;
    /* height: auto; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00AAFF;
    border-radius: 50%;
}
.icon-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-item li a{
    display: flex;
    align-items: center;
    gap: 10px;
}
.newsletter input{
    background-color: transparent;
    outline: none;
    padding: 10px;
    width: 80%;
    border: 1px solid var(--white-font);
    border-radius: 10px;
    color: var(--white-font);
}
.newsletter input::placeholder{
    color: var(--white-font);
}
 .logo-wrapper{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 20px;
}
 .logo-wrapper img{
    width: 30px;
    height: 30px;
    object-fit:cover;
    
}
.footer-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}
.footer-btn a{
    display: block;
}
.footer-btn a:first-child{
    margin-bottom: 60px;
}
.footer-btn a img{
    width: 40px;
    height: 40px;
}
@media (max-width:991px) {
    .footer-wrapper{
        flex-wrap: wrap;
        justify-content: space-between;
        /* flex-direction: row-reverse; */
        row-gap: 50px;
    }
    .footer-item{
        width: 50%;
        flex: 0 0 auto;
    }
    .footer-btn{
        flex-direction: row;
    }
    .footer-btn a:first-child{
        margin-block: 0;
    }
    
}
@media (max-width:767px) {
    .footer-wrapper{
        flex-direction: row;
        justify-content: center;
        /* text-align: center; */
    }
    .footer-item{
        width: 100%;
        /* text-align: center; */
    }
    .footer-about{
        /* width: 70%; */
        text-align: center;
    }
    .footer-about p {
        margin-inline: auto;
    }
    .footer-item h2{
        /* margin-inline: auto; */
        /* text-align: center; */
        
    }
    .footer-item ul li a{
        /* justify-content: center; */
    }
    .logo-wrapper{
        justify-content: center;
    }
}

@media (max-width:500px) {
    .about{
        width: 100%;
    }
}

/* footer end */


/* ABOUT PAGE CSS */
.about-hero{
    padding-top: 5%;
    display: flex;
    align-items: center;
    color: var(--blue1);
}
.about-hero .img-wrapper{
    width: 70%;
}
.about-hero .img-wrapper img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.about-hero .about-hero-content{
    width: 30%;
    padding-inline: 40px;
    text-align: justify;
}
.about-hero .about-hero-content p{
    color: var(--black-font);
    margin-top: 30px;
    line-height: 30px;
}
.about-hero-content h2{
    font-weight: 400;
    text-align: left;
    margin-block: 30px;
    font-size: 1.8rem;
}
@media (max-width:992px) {
    .about-hero{
        flex-direction: column;
        gap: 20px;
    }
    .about-hero .img-wrapper{
        width: 100%;
    }
    .about-hero .about-hero-content{
        width: 95%;
    }
}

.mission-section{
    padding-block: 5%;
    margin-bottom: 5%;
    background-image: url(./assets/about-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.mission-container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}
.mission h2{
    font-size: 1.8rem;
    color: var(--blue1);
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}
.mission p{
    line-height: 30px;
    text-align: justify;
}
.mission{
    width: calc(50% - 30px);
}

@media (max-width:992px) {
    .mission-container{
        flex-direction: column;
    }
    .mission{
        width: 100%;
    }
}
@media (max-width:500px) {
    .mission    {
        text-align: center;
    }
   
}
/* mission section end */

/* about section */
.about-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 20px;
}
.about-wrapper .img-wrapper{
    width: 40%;
}
.about-wrapper .img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-wrapper .about-content{
    width: 40%;
}

@media (max-width:992px) {
    .about-wrapper{
        flex-direction: column;
    }
    .about-wrapper .about-content{
        width: 100%;
    }
    .about-wrapper .img-wrapper{
        width: 60%;
    }
}
/* about page end */

/* service page */
.service-section{
    padding-block: 5%;
    background-color: var(--blue-bg);
    margin-block: 5%;
}
.service-container .img-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 80%;
    min-height: 350px;
    margin-inline: auto;
    border-radius: 20px;
}
.service-container .img-wrapper h1{
    font-size: 2rem;
    color: var(--white-font);
    text-align: center;
}
.service-container p{
    width: 80%;
    margin-inline: auto;
    margin-top: 40px;
    line-height: 30px;
    color: var(--gray-font);
}
.service-container button{
    display: block;
    margin-inline: auto;
    margin-top: 20px;
}
@media (max-width:500px) {
    .service-container p{
        width: 100%;
    }
    .service-container .img-wrapper{
        width: 100%;
    }
}

/* form */
.contactform{
    width: 90%;
    margin-inline: auto;
}
.contactform .row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contactform .row div{
    width: 45%;
    margin-block: 20px;
}
.contactform label{
    font-weight: 700;
}
.contactform input,textarea{
    width: 100%;
    margin-top: 10px;
    padding: 10px 10px;
    border: none;
    font-size: 16px;
    outline: none;
    border-radius: 10px;
}
.contactform button{
    margin-top: 20px;
    height: 50px;
}
@media (max-width:600px) {
    .contactform .row{
        flex-direction: column;
    }
    .contactform .row div{
        width: 100%;
    }
}

/* projects page */
.project-hero-section {
    position: relative;
    /* z-index: -1; */
}

.hero {
    display: flex;
    /* background-color:  #F5F5F5; */
    /* height: calc(90vh - 150px); */
    height: 90vh;
    align-items: center;
    justify-content: center;

}
.hero .img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero .img-wrapper{
    width: 100%;
    height: 100%;
}
.hero-content {
    width: 70%;
    text-align: center;
}


.hero-btn {
    border-radius: 20px;
    text-transform: uppercase;
    background-color: var(--primary-gold);
    border: 1px solid var(--primary-merlot);
    color: var(--primary-merlot);
    font-size: 16px;
}

.hero-btn a {
    display: block;
    padding-inline: 20px;
    padding-block: 5px;
}

.hero-btn:hover {
    transition: .3s;
    background-color: var(--white-font);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    /* aspect-ratio: 1/1; */
}



@media (max-width:768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width:767px) {

    .hero-content {
        text-align: center;
        width: 100%;
    }
    .hero{
        height: 30vh;
    }

}

.slider1 {
    width: 100%;
}

.wrapper {
    overflow: hidden;
    width: 100%;
    z-index: 1;
}

.slides {
    display: flex;
    position: relative;
    top: 0;
    left: -100%;
    width: 14500px;
}

.slides.shifting {
    transition: left 0.2s ease-out;
}

.slide {
    width: 100vw;
    position: relative;
    transition: all 1s;
    border-radius: 2px;
}

.control {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.592);
    border-radius: 50px;
    margin-top: -20px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    border: none;
}

.prev,
.next {
    background-size: 22px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.prev {
    background-image: url(https://cdn0.iconfinder.com/data/icons/navigation-set-arrows-part-one/32/ChevronLeft-512.png);
    left: 10px;
}

.next {
    background-image: url(https://cdn0.iconfinder.com/data/icons/navigation-set-arrows-part-one/32/ChevronRight-512.png);
    right: 10px;
}

.prev:active,
.next:active {
    transform: scale(0.8);
}

@media (max-width:1024px) {
    .control {
        top: unset;
        bottom: 10%;
    }
}

@media (max-width:500px) {
    .control {
        bottom: 40px;
    }

    .next {
        right: 10%;
    }

    .prev {
        left: 10%;
    }
}
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* team-page section */
.team-page-section{
    margin-top: 5%;
}
.team-page-section .img-wrapper img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.team-page-section .container{
    display: flex;
    align-items: flex-start;
    gap: 50px;
}
.team-page-section .content span{
    font-weight: 700;
    color: var(--blue1);
    letter-spacing: 2px;
    display: block;
    font-size: 0.8rem;
    margin-bottom: 20px;
}
.team-page-section .content p{
    margin-top: 30px;
    text-align: justify;
    line-height: 25px;
}
@media (max-width:1024px) {
    .team-page-section .container{
        flex-direction: column;
    }
}


.js-scroll {
    opacity: 0;
    transition: opacity 500ms;
    overflow: hidden;
  }
  
  .js-scroll.scrolled {
    opacity: 1;
  }
  
  .scrolled.fade-in {
    animation: fade-in 1s ease-in-out both;
  }
  .scrolled.fade-in-bottom {
    animation: fade-in-bottom 1s ease-in-out both;
  }
  
  
  .scrolled.slide-left {
    animation: slide-in-left 1s ease-in-out both;
  }
  
  .scrolled.slide-right {
    animation: slide-in-right 1s ease-in-out both;
  }

  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }  

  @keyframes fade-in-bottom {
    0% {
      -webkit-transform: translateY(50px);
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-100px);
      transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(100px);
      transform: translateX(100px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
  }