@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --curly-font: "Cormorant Garamond", serif;
  --dark-blue: #000e67;
  --light-blue: #54758a;
  --yellow: #f0b323;
  --bright-blue: #0032a0;
  --deep-blue: #2e364a;
  --gray: #00000070;
  --sky-blue:#257aa4;
}

.wrap{
    flex-wrap: wrap;
  }

body {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.flex-class {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-class {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

ul {
  list-style: none;
}

.hero{
    height: 50vh;
    width: 100%;
    background-color: var(--sky-blue);
    flex-direction: column;
}

.hero .main-title{
  font-weight: 700;
  font-size: 45px;
  color: #fff;
}

.hero .sub-title{
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

.hero button{
    height: 40px;
    width: 200px;
    border: 2px solid #fff;
    color: #257aa4;
    font-weight: 700;
    background: #fff;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero button:hover{
    background-color: transparent;
    color: #fff;
}


.main-content-wrapper{
    margin-top: 100px;
    justify-content: space-evenly;
    align-items: flex-start;
  }

.main-content-wrapper .left-content{
    width: 65%;
    min-width: 250px;
    padding-right: 40px;
}
  
.main-content-wrapper .right-content{
    width: 30%;
    min-width: 250px;
}
  
.main-content-wrapper .left-content .article-text{
    padding: 0 20px;
    line-height: 25px;
    font-weight: 400;
    font-size: 16px;
    color: #242424;
    text-align: justify;
}
  
.main-content-wrapper .right-content  .form{
    padding-right: 20px;
}

.main-content-wrapper .right-content  .form .tag{
    font-size: large;
    margin: 20px 0 10px 0;
}
  
button:hover{
    cursor: pointer;
}
  .main-content-wrapper .right-content input ,.main-content-wrapper .right-content .input-accordian-wrapper{
    height: 35px;
    width: 100%;
    border: none;
    background-color: #f8f8f8;
    border: 1px solid #dbdbdb;
    outline: none;
    padding: 8px;
  }
  
  .main-content-wrapper .right-content .input-accordian-wrapper{
    position: relative;
  }
  
  .main-content-wrapper .right-content .input-accordian-wrapper .drop-down{
    position: absolute;
    left: 0;
    right: 0;
    top: 110%;
    z-index: 10;
    background: #f8f8f8;
    display: none;
  }
  
  
  .main-content-wrapper .right-content .input-accordian-wrapper .drop-down li{
    padding: 20px 10px;
  }
  
  
  .main-content-wrapper .right-content .input-accordian-wrapper .drop-down li:hover{
    background-color: var(--light-blue);
    color: #fff;
  }
  
  .main-content-wrapper .right-content .input-accordian-wrapper .drop-down.show-drop-down{
    display: block;
  }
  
  .submit-btn{
    padding: 15px 40px;
    width: 100%;
    margin-top: 20px;
    border: none;
    background-color: var(--sky-blue);
    color: #fff;
    font-weight: 700;
    outline: none;
    transition: 0.3s opacity ease;
    border-radius: 3px;
  }

  .submit-btn:hover{
    opacity: 0.8;
  }
  

  .curr{
      widows: 100%;
      margin-top: 50px;
      padding: 50px 0;
      background-color: #f8f8f8;
  }

  .curr .cards{
      width: 90%;
      background-color: #ffffff;
      margin: 20px auto;
      padding: 20px 10px;
      box-shadow: 3px 4px 10px #00000030;
      border-radius: 4px;
      transition: 0.4s ease;
  }

  .curr .cards:hover{
    box-shadow: 3px 3px 3px #00000030;
}

  .curr .cards .card-title{
      font-weight: 700;
      font-size: 20px;
      color: #257aa4; 
      margin-bottom:10px ;  
  }

  .curr .cards .tag{
        margin-bottom: 10px;
        color: #000000;
  }


.why-us{
    width: 100%;
    background-color: #f8f8f8;
    justify-content:center;
    padding-bottom: 100px;
}

.why-us .card{
    width: 25%;
    min-width: 300px;
    background-color: #fff;
    height: 100px;
    padding:10px;
    margin: 10px;
    border-left: 4px solid #257aa4;
    box-shadow: 3px 3px 5px #00000030;
}

.why-us .card .text{
    font-size: small;
    color: #00000090;
    font-weight: 600;
}

.why-us .card .why-us-card-title{
    font-size: large;
    font-weight: 600;
    color:#257aa4;
    margin-bottom: 10px;
}

.warning{
    justify-content: space-between;
    padding: 20px;
    width: 100%;
    color: #fff;
    background-color:#257aa4;
    position: fixed;
    top: -120%;
    left: 0;
    right: 0;
    font-size: xx-large;
    box-shadow: 3px 4px 10px #00000030;
    transition: 0.4s ease;
}

.warning .cross{
    height: 50px;
    width: 50px;
    cursor: pointer;
}

.cross:hover{
    background-color: #00000030;
}

.top-bottom{
    top: 0;
}

.footer-bottom{
    color: #000000;
    height: 60px;
    background-color: #fff;
    box-shadow: -5px -5px 20px #00000010;
}

.f8-sec{
    background-color: #f8f8f8;
}


.nav-main{
    justify-content: space-between;
    padding:10px 30px;
}

@media only screen and (max-width:990px){
    .hero .main-title{
        width: 80%;
    }

    .hero{
        align-items: flex-start;
        padding-left: 30px;
    }
}

@media only screen and (max-width:700px){
    .underline-box-heading{
        width: 80%;
        margin: 20px auto;
    }

    .main-content-wrapper .left-content , .main-content-wrapper .right-content{
        width: 90%;
        padding: 0;
    }
}

@media only screen and (max-width:500px){
   .icons-nav{
       display: none;
   }

   .hero .main-title{
       font-size: 30px;
   }

   .hero .sub-title{
       width: 90%;
   }

   .why-us .card{
       width: 90%;
   }
}