@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
body {
    margin: 0;
    padding: 0;
  }
  
  html {
    box-sizing: border-box;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
   /*navbar start*/   
nav {
    font-family: 'Poppins', sans-serif;
    display: flex;
    height: 80px;
    width: 100%;
    background: #B1B2FF;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px 0 100px;
    flex-wrap: wrap;
}

nav .logo {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

nav ul li {
    margin: 0 5px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
    color: #111;
    background: #fff;
}

nav .menu-btn i {
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
}

input[type="checkbox"] {
    display: none;
}

@media (max-width: 1000px) {
    nav {
        padding: 0 40px 0 50px;
    }
    nav .logo {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
    }
    
}

@media only screen and (max-width: 600px){
    nav .menu-btn i {
        display: block;
    }
    nav .logo{
        padding-left: 0%;
        margin-left: -40px;
    }
    #click:checked~.menu-btn i:before {
        content: "\f00d";
    }

    nav ul {
        position: fixed;
        top: 50px;
        left: -100%;
        background: #D2DAFF;
        height: 100%;
        width: 100%;
        text-align: center;
        display: block;
        border-radius: 0px 20px 20px 0px;
        transition: all 0.3s ease;
        z-index: 1;
    }

    #click:checked~ul {
        left: 0;
    }

    nav ul li {
        width: 100%;
        margin: 40px 0;
    }

    nav ul li a {
        width: 100%;
        margin-left: -100%;
        display: block;
        font-size: 20px;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    #click:checked~ul li a {
        margin-left: 0px;
    }

    nav ul li a.active,
    nav ul li a:hover {
        background: none;
        color: #B1B2FF;
    }
}
/*sticky navbar*/
nav.sticky{
    position: fixed;
    padding: 0px 40px 0px 50px;
    z-index: 1;
    box-shadow: 1px 1px 15px black;
    transition: .3s;
}

/*navabr end*/

  .banner{
    background-image: url(images/baa7236c-0644-4bd5-b598-6f4842904b72.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    margin-top: -2%;
  }
  .banner h1{
    color: #fff;
    font-size: 54px;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 3%;
  }
  @media (max-width:600px){
    .banner{
        height: 100px;
        margin-top: -5%;
    }.banner h1{
        color: #fff;
        font-size: 24px;
        font-family: Arial, Helvetica, sans-serif;
        padding-top: 8%;
      }
  }
   /*===========Headline section start============*/
.headline{
    border: 0px solid black;
    border-radius: 30px 0px;
    height: 60vh;
    width: 70%;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: inset 2px 2px 20px rgb(110, 110, 110);
}
.headline .lottie{
    float: left;
    width: 500px;
    padding-top: 5%;
}
.headline .text h1{
    padding-top: 10%;
    text-align: center;
}
.headline .text h3{
    margin-left: 10%;
    font-weight: normal;
    font-size: 16px;
    text-align: center;
    padding-top: 3%;
    width: 80%;
}
.headline button{
    height: 50px;
    padding: 10px 60px;
    border-radius: 30px;
    border: none;
    background-color: rgb(180, 194, 255);
    margin-left: 15%;
    margin-top: 2%;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.headline button:hover{
    background-color: rgb(181, 180, 255);
    box-shadow: 1px 1px 5px;
    transition: .5s;
}
@media(max-width:1160px){
  .headline {
    margin-left: auto;
    margin-right: auto;
    height: 80vh;
  }
}
@media(max-width:1000px){
    .headline{
        height: 100vh;
    }
}

@media(max-width:600px){
    .headline{
        width: 90%;
        height: 70vh;
    }
    .headline .lottie{
        height: 300px;
        width: 400px;
   }
   .headline .text h1{
    padding-top: 1%;
    }
    .headline .text h3{
        padding-top: 1%;
    }
    .headline button{
        margin-left: 25%;
    }
}
@media(max-width:400px){
  .headline{
    height: 89vh;
  }
  .headline .lottie{
    height: 250px;
    width: 320px;
}
}
@media(max-width:165px){
  .headline{
    height: 105vh;
  }
  .headline .lottie{
    height: 250px;
    width: 320px;
}
}
  /*===========card section start============*/
  .aboutus{
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 5%;
  }
  h1{
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
  }
  .row{
    margin-left: 15%;
    margin-right: 15%;
  }
  .column {
    float: left;
    width: 33.3%;
    margin-bottom: 16px;
    padding: 0 8px;
  }
  
  .card {
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 8px;
  }
  .card img{
    border-radius: 30px;
    padding: 10px;
  }
 
  .about-section {
    padding: 50px;
    text-align: center;
    background-color: #474e5d;
    color: white;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .container::after, .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .title {
    color: grey;
  }
  
  .card .button {
    border: none;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: rgb(169, 149, 255);
    text-align: center;
    cursor: pointer;
    width: 60%;
    border-radius: 10px;
  }
  
  .button:hover {
    background-color: rgb(90, 78, 255);
    transition: .5s;
  }
  
  @media screen and (max-width: 650px) {
    .column {
      width: 100%;
      display: block;
    }
    .row{
        margin-left: 8%;
        margin-right: 8%;
      }
    .card img{
        height: 350px;
    }
  }
  
/*Footer*/
.footer{
    height: 160px;
    background-color: #252525;
 }
 .footer p{
    color: #fff;
    text-align: center;
    font-size: 17px;
 }
 .footer h2.solid {
    padding-top: 40px;
    margin-left: 25%;
    width:50%;
    border-top: 3px solid rgb(140, 180, 255);
 }
 .footer a{
    text-decoration: none;
    color: rgb(93, 131, 255);
 }
 .footer lottie-player{
    width:40px;
    margin-left: 59%;
    margin-top: -2%;
    color: #fff;
 }

 
@media only screen and (max-width: 600px) {
    
 .footer h2.solid {
    padding-top: 10px;
    margin-left: 25%;
    width:50%;
    border-top: 3px solid rgb(140, 180, 255);
 }
 .footer p{
    font-size: 14px;
 }
 .footer lottie-player{
    display: none;
 }
}
   
