@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;
}
::-webkit-scrollbar{
    display: none;
}
.split{
    background-color: #3fbad9;
}
.sec-cont{
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    overflow-x: hidden;
  overflow-x: clip !important;
}
.column-img{
    width: 45%;
    align-items: center;
    padding-left: 50px;
}
.column-img img{
    width: 90%;
}
.colu-content{
    background-color: white;
    width: 45%;
    padding: 30px;
    padding-left: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}
.colu-content2{
    background-color: white;
    width: 45%;
    padding: 30px;
    padding-left: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}
@media screen and (max-width:768px){
    .sec-cont{
        background: white;
        display: grid;
        padding: 15px;
        align-items: ltr;
    }
    .column-img{
        width: 90%;
        align-items: center;
        border-radius: 30%;
    }
    .column-img img{
        width: 100%;
    }
    .colu-content{
        width: 90%;
        padding: 0px;
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 1.5;
        text-align: justify;
    }
}

.abt{
    color: rgb(2, 241, 241);
}

.contimg{
    border: 1px solid black;
}

.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;
  }
  @media(max-width:1000px){
    .colu-content{
        font-size: 17px;
        padding-left: 10px;
    }
    .colu-content2{
        font-size: 17px;
    }
    .column-img{
        width: 50%;
        padding-left: 20px;
    }
    
  }
/*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;
      }
}