@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Playwrite+NL:wght@100..400&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

li, a, button{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgb(3, 3, 3);
    text-decoration: none;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
}
.logo{
    height: 70px;
    width: 250px;
    cursor: pointer;
}
.simg{
    height:100vh;
    width: 110vh;
}
.nav__links{
    list-style: none;
}
.nav__links li{
    display: inline-block;
    padding: 0px 20px;
}
.nav__links li a{
    transition: all 0.3s ease 0s;
}
.nav__links li a:hover{
    color: blue;
}

button{
    padding: 9px 25px;
    background-color: aqua;
    border: none;
    border-radius: 50px;
    cursor:pointer;
    transition: all 0.3s ease 0s;
}
button:hover{
    background-color: rgba(0, 136, 169, 0.8);
}

.container{
    padding: 2rem;
}

.slider{
    display: flex;
    aspect-ratio: 16 / 6;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
}
.slider img{
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
}
.slider-nav{
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 2.9rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background-color: #f7f4f4;
    border-radius: 20%;
}
.slider-nav a{
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #030303;
    opacity: 0.75;
    transition: opacity ease 250ms; 
}

.slider-nav a:hover{
    opacity: 1;
}
::-webkit-scrollbar{
    display: none;
}

.about{
    display: flex;
    flex-wrap: wrap;
}
.about-title{
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin: 0!important;
}
.about-pages{
    width: 50%;
    
}
.about-pages div{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.about-pages div>p{
    width: 80%;
    font-size: 18px;
    line-height: 30px;
    margin-top: 35px;
}


.about-pages div:nth-child(1){
    background-color: #3fbad9;
}
.about-pages div:nth-child(2){
    background-color: white;
}
.about-pages div:nth-child(3){
    background-color: #3fbad9;
}
.about-pages div#box{
    width: 600px;
    height: 300px;
    background-color: #f7f4f4;
    padding-bottom: 50px;
    border-radius: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}
.about-pages div#box2{
    width: 600px;
    height: 600px;
    background-color: #3fbad9;
    padding-bottom: 50px;
    border-radius: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
}
@media(max-width:1000px){
    .about-title{
        width: 100%;
        height: auto;
    }
    .simg{
        height: auto;
        width: 100%;
        max-width: 900px;
        max-height: 900px;
    }
    .about-pages{
        width: 100%;
        
    }
    .about-pages div{
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
    .about-pages div>p{
        width: 80%;
        font-size: 26px;
        line-height: 30px;
        margin-top: 35px;
    }
    
    
    .about-pages div:nth-child(1){
        background-color: #3fbad9;
        height: 750px;
    }
    .about-pages div:nth-child(2){
        height: 750px;
        background-color: white;
    }
    .about-pages div:nth-child(3){
        height: 750px;
        background-color: #3fbad9;
    }
    .about-pages div#box{
        width: 800px;
        background-color: #f7f4f4;
        padding-bottom: 50px;
        border-radius: 40px;
        margin-top: 20px;
        margin-bottom: 20px;
        font-family: "Montserrat", sans-serif;
    }
    .about-pages div#box2{
        width: 750px;
        height: 600px;
        background-color: #3fbad9;
        padding-bottom: 50px;
        border-radius: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
        font-family: "Montserrat", sans-serif;
        font-size: 17px;
    }
    .slider-nav{
        display: block;
    }
}
@media(max-width:768px){
    .about-title{
        width: 100%;
        height: auto;
    }
    .simg{
        height: auto;
        width: 100%;
        max-width: 450px;
        max-height: 450px;
    }
    .about-pages{
        width: 100%;
        
    }
    .about-pages div{
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
    .about-pages div>p{
        width: 80%;
        font-size: 18px;
        line-height: 30px;
        margin-top: 35px;
    }
    
    
    .about-pages div:nth-child(1){
        background-color: #3fbad9;
    }
    .about-pages div:nth-child(2){
        background-color: white;
    }
    .about-pages div:nth-child(3){
        background-color: #3fbad9;
    }
    .about-pages div#box{
        width: 500px;
        height: 500px;
        background-color: #f7f4f4;
        padding-bottom: 50px;
        border-radius: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
        font-family: "Montserrat", sans-serif;
        font-size: 16px;
    }
    .about-pages div#box2{
        width: 500px;
        height: 600px;
        background-color: #3fbad9;
        padding-bottom: 50px;
        border-radius: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
        font-family: "Montserrat", sans-serif;
        font-size: 17px;
    }
    .slider-nav{
        display: block;
    }
}
.skimg{
    padding: 2rem;
    width: 90%;
    height: auto;
    padding-left: 5rem;
}

.tests{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.tests1{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.tests2{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card{
    font-family:"Montserrat", sans-serif ;
    width: 270px;
    margin: 10px;
    border-radius: 15px;
    border: 1px solid black;
    line-height: 1.5;
}


.card-image{
    height: 170px;
    margin-bottom: 15px;
    background-size: cover;
    border-radius: 15px 15px 0 0;
}
@media(max-width:1000px){
    .card{
        width: 40%;
        font-size: 22px;
    }
    .card-image{
        object-fit: cover;
        height: 220px;
    }
}
.card-1{
    background-image: url('../navpages/servimg/d1.png');
}
.card-2{
    background-image: url('../navpages/servimg/d2.png');
}
.card-3{
    background-image: url('../navpages/servimg/d3.png');
}
.card-4{
    background-image: url('../navpages/servimg/d4.png');
}
.card-5{
    background-image: url('../navpages/servimg/d5.jpg');
}
.card-6{
    background-image: url('../navpages/servimg/d6.jpg');
}
.card-7{
    background-image: url('../navpages/servimg/d7.jpg');
}
.card-8{
    background-image: url('../navpages/servimg/d8.jpg');
}
.card-9{
    background-image: url('../navpages/servimg/d9.jpg');
}
.card-10{
    background-image: url('../navpages/servimg/d10.jpg');
}
.card-11{
    background-image: url('../navpages/servimg/d11.jpg');
}
.card-12{
    background-image: url('../navpages/servimg/d12.jpg');
}
.card p{
    padding: 10px;
}
.card a{
    background-color: blue;
    color: white;
    padding: 15px 20px;
    display: block;
    text-align: center;
    margin: 20px 50px;
    border-radius: 50px;
}

.card:hover{
    background-color: #3fbad9;
    color: white;
    cursor: pointer;
    transform: scale(1.03);
    transition: all 0.5s ease;

}

h1{
    font-family:"Exo 2", sans-serif ;
    padding-bottom: 20px;
    padding-top: 20px;
}
.more{
    font-family:"Montserrat", sans-serif ;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
}

.split{
    font-family:"Montserrat", sans-serif ;
}

.sec-cont{
    display: flex;
    padding: 20px;
}
.column-img{
    width: 300px;
    object-fit: fill;
}


.footer{
    background-color: rgb(46, 45, 45);
    padding: 70px 0;
}
.foot-con{
    max-width: 1170px;
    margin: auto;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
ul{
    list-style: none;
}
.footer-col{
    width: 25%;
    padding: 0 15px;
}
.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}
.footer-col ul li a{
    font-size: 19px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 10px;
}
@media(max-width:1000px){
    .footer-col{
        width: 50%;
        margin-bottom: 40px ;
        padding-left: 60px;
    }
    .footer-col ul li a{
        font-size: 28px;
    }
    .footer-col ul li a:hover{
        color: #ffffff;
        padding-left: 10px;
    }
}
@media(max-width:574px){
    .footer-col{
        width: 100%;
    }
}

.hamburger-icon{
    margin: auto 0;
    display: none;
    cursor: pointer;
}

.hamburger-icon div{
    width: 60px;
    height: 5px;
    background-color: black;
    margin: 10px 0;
    transition: 0.4s;
}

.open .bar1 {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  
  .open .bar2 {
    opacity: 0;
  }
  
  .open .bar3 {
    -webkit-transform: rotate(45deg) translate(-10px, -12px);
    transform: rotate(45deg) translate(-10px, -12px);
  }
  
  .open .mobile-menu {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: center;
    justify-content: flex-end;
    background-color: black;
    margin-top: 80px;
    margin-left: 40%;
  }
  
  .mobile-menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
  }
  
  .mobile-menu li {
    margin-bottom: 10px;

    
  }
  

  .mobile-menu li a{
    color: white;
    line-height: 2.5;
  }
  
/*Responsive Nvbar*/
@media(max-width:1000px){
    header nav {
        display: none;
      }
    .cta{
        display: none;
    }
      .hamburger-icon {
        display: block;
      }
}
@media(max-width:1000px){
    .logo {
        height: 110px;
        width: 250px;
        cursor: pointer;
    }
    .mobile-menu li {
        margin-bottom: 10px;
        
      }
      .mobile-menu li a{
        font-size: 35px;
        
      }
      .mobile-menu li a:hover{
        font-size: 45px;
        
      }
      button{
        font-size: 35px;
      }
}