@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul{
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.whatsappButton{
    background-color: var(--whatsappDark);
    color: white;
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 1.2rem;
    border: 2px solid white;
    box-shadow: 0px 0px 2px 2px var(--whatsappLight);
    transition: 200ms;
}
.whatsappButton:hover{
    color: white;
    box-shadow: 0px 0px 10px 4px var(--whatsappLight);
}
body{
    font-family: "Roboto Condensed", sans-serif;
}

:root {
    --whatsappLight:#25d366;
    --whatsappDark:#128c7e;
  --brandColor1: #04a1a6;
  --brandColor2: #0f696e;
  --primary-bg: white;
}

/* ----------------------------------heroSection */
.heroSection {
  background-image: linear-gradient(var(--brandColor1), var(--brandColor2));
  height: 100vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: start;
}
.formContainer {
width: 300px;
max-width: 100%;
}
.formContainer .logoBox{
 max-height: 80px;
 aspect-ratio: 2/1;
}
.formContainer .logoBox img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.form {
  background-color: var(--primary-bg);
  border-radius: 4px;
  margin: 0 auto;
  max-width: 100%;
  /* min-height: 256px; */
  width: 100%;
  padding: 26px 16px 16px 16px;
  display: flex;
  flex-direction: column;
}
.form h4{
  color: var(--brandColor1);
  font-weight: 500;
}
.form h4 img{
max-width: 40px;
}
.form .inputGroup {
 position: relative;
}
.form .inputGroup .inputicon{
 position: absolute;
 right: 0.5rem;
 top: 0.5rem;
}
.form input.form-control {
  width: 100%;
  padding-right: 1.4rem;
}
.form button.btn-primary {
  background-color: var(--brandColor1);
  border-color: var(--brandColor1);
  color: white;
  position: relative;
}
.form button.btn-primary i{
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}
.form .small {
  font-size: 12px;
  font-weight: 400;
}
.form .errorPara{
    color: var(--brandColor2);
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    font-weight: bold;
}
.form .errorPara a.whatsappLink{
    background-color: var(--whatsappDark);
    color: white;
    font-weight: 500;
    border-radius: 0;
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    align-items: center;
}
.form .small a,
.form span a
{
    color: #007bff;
}
.form .small a:hover{
    color: var(--brandColor1);
}

/* contentHolder css */
.contentHolderWrapper{
   
}
.contentHolder{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.contentHolder h1,
.contentHolder h2,
.contentHolder h3,
.contentHolder h4,
.contentHolder h5,
.contentHolder h6{
    text-transform: capitalize;
    text-align: center;
}
.contentHolder h1{
    color: var(--brandColor2);
    border-bottom: 2px solid var(--brandColor2);
    font-weight: bold;
}
.contentHolder h2{
    color: var(--brandColor1);
    border-bottom: 2px solid var(--brandColor1);
    font-weight: bold;
}
.contentHolder p{
text-align: justify;
}
.contentHolder ul{
    list-style: disc;
    width: 100%;
}
.contentHolder ol{
    width: 100%;
}
/* footer css */
.stickyWhatsappButton{
    background-color: var(--brandColor2);
    color: white;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 2px solid white;
    box-shadow: 0px 0px 2px 2px var(--brandColor1);
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    transition: 200ms;
}
.stickyWhatsappButton:hover{
    background-color: var(--whatsappDark);
    box-shadow: 0px 0px 10px 4px var(--whatsappLight);
    color: white;
}
footer{
    background-color: var(--brandColor2);
}
.errorPageContainer{
    min-height: 96.7vh;
}
/* faq section css */
.faqSection{
    color: black;
    max-width: max(90%,280px);
    width: 100%;
    margin: 0 auto;
}
.faqSection h2{
    text-align: center;
    margin-bottom: 1rem;
    font-size: max(2.2vw,1.5rem);
}
.faqBox{
    padding: 0.5rem;
    background-color: #e6e6e6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.247);
}
.faqBox .faqHead{
    background-color: #F9F9F9;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
}
.faqBox .faqHead h5{
    font-size: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: space-between;
}
.faqBody{
    padding: 0;
    overflow: hidden;
    max-height: auto;
    height: 0;
    transition: 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.showFaqAns{
    height: auto;
    padding: 0.2rem 0.5rem;
    padding-top: 0.8rem;
}
  /* banner */
  .banner{
    background-color:#078f94;
    text-align: center;
    color: white;
    padding: 1rem ;
    margin-bottom: 0.5rem;
  }
  .banner h2,
  .banner h1
  {
    font-size: max(3vw,1.5rem);
    text-transform: capitalize;
  }