*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root{
    --baseColor : #6FBDBE;
    --baseColorRGB :  111,189,190;
    --accentColor :  #355978;
    --greyColor :  #999999;
}
body,section{
    background-color: rgba(var(--baseColorRGB),0.04);
}
body{
    padding-top: 80px;
}
ul { list-style: none; }
a { text-decoration: unset; }
a:hover { text-decoration: underline; }
footer a:hover { text-decoration: underline !important; }
footer a { color:#fff; }
ul > li { line-height: 1.5em; }
.genpad{
    padding: 20px 15%;    
}
.genpad h1{
    margin-top: 100px;
    font-size: 48px;
    text-align: left;
    margin-bottom: 100px;
}
.genpad h2,.genpad h3,.genpad h1{
    color: var(--accentColor);    
}
.genpad p,.genpad h4{
    color: var(--greyColor);
}
.flex{
    display: flex;
    gap:20px;
  }
  .fsb{
    justify-content: space-between;
  }
  @media only screen and (max-width: 720px) {
      .fsb{
        flex-direction: column;
      }
      .genpad{
        padding: 20px 5%;    
    }
    .genpad h1{
        margin-top: 50px;
        margin-bottom: 50px;
        font-size: 28px;
    }
    .genpad h2{
        font-size: 20px;
    }

  }
  .fc{
    justify-content: center;
  }
  .fdr{
    flex-direction: row;
  }
  .fdc{
    flex-direction: column;
  }
button{
    cursor: pointer;
}
.buttonHollow{
    display: block;
    margin: auto;
    margin-top: 40px;
    background-color:transparent;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    line-height: 14px;
    color: var(--baseColor);
    border: 2px solid var(--baseColor);
}
/* form fields */
form {
    margin: 50px 0px;
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }
  
  fieldset {
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
  }
  
  legend {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  /* Form Field Styles */
  label {
    display: block;
    margin-bottom: 10px;
    text-align: left;
  }
  
  fieldset input[type="text"],
  fieldset input[type="email"],
  fieldset input[type="number"],
  fieldset input[type="tel"],
  select,
  textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 20px;
    box-sizing: border-box;
    font-size: 16px;
  }
  
  fieldset input[type="text"]:focus,
  fieldset input[type="email"]:focus,
  fieldset input[type="number"]:focus,
  fieldset input[type="tel"]:focus,
  fieldset select:focus,
  fieldset textarea:focus {
    outline: none;
    border-color: #7fb3d5;
    box-shadow: 0px 0px 5px 0px rgba(127, 179, 213, 0.5);
  }
  
  fieldset select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2'/%3E%3C/svg%3E");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-color: #fff;
  }
  
  fieldset textarea {
    height: 100px;
  }
  
  fieldset {
    display: none;
  }

  fieldset:first-of-type {
    display: block;
  }

  fieldset input[type="submit"] {
    display: none;
  }
 /* Button Styles */
 fieldset button[type="button"],
 fieldset input[type="submit"] {
   background-color: #7fb3d5;
   border: none;
   color: #fff;
   padding: 10px 20px;
   border-radius: 3px;
   font-size: 16px;
   cursor: pointer;
   transition: background-color 0.3s ease;
 }
 
 fieldset button[type="button"]:hover,
 fieldset input[type="submit"]:hover {
   background-color: #5e92af;
 }
 
 fieldset input[type="submit"] {
   margin-top: 30px;
   display: inline-block;
   width: auto;
   margin-left: auto;
   margin-right: auto;
 }
 
 /* Progress Bar Styles */
 .progress-bar {
   background-color: #ddd;
   height: 10px;
   position: relative;
   margin-bottom: 20px;
   border-radius: 5px;
 }
 
 .progress-bar-fill {
   background-color: #7fb3d5;
   height: 10px;
   border-radius: 5px;
   position: absolute;
   left: 0;
   top: 0;
   transition: width
 }
/* form fields end */
/* header css */
/* header{
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 15%;
    background-color: white;
    filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
    
}
header > img {
    height: 100%;
}
header a {
    color:var(--accentColor);
  text-decoration: none; 
}
header > ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
     list-style-type: none;
     gap: 50px;
}
.commonBotton{
    background-color:var(--baseColor);
    padding: 15px 35px;
    border-radius: 50px;
    color: white;
}
@media only screen and (max-width: 480px) and (min-width: 200px) {
header {
    height: 80px;
    padding: 30px 5%;
}
} */
/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    background: #50bfbf;
    background-color: #50bfbf;
    -webkit-box-shadow: 0 0 0 30px #50bfbf !important;
    box-shadow: 0 0 0 30px #50bfbf !important;
}
button,input[type=submit],input[type=button]{
    cursor:pointer;
}
input:-internal-autofill-selected{
    appearance: menulist-button;
    background-image: none !important;
    background-color: -internal-light-dark(rgb(80, 191, 191), rgba(80, 191, 191, 0.4)) !important;
    color: -internal-light-dark(black, black) !important;
}
/*Change text in autofill textbox*/
input:-webkit-autofill{
    -webkit-text-fill-color: white !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
::placeholder{
     /*opacity: 0.7; */
}

header a{
    text-decoration: none;
        color:var(--accentColor);;
    transition: color ease .5s;
}
header a:visited{
    text-decoration: none;
    color:var(--accentColor);;
}
.w{
    color: white !important;
}

/*aniversary popup*/
#anniversarydiv{
     z-index:1000;
    top:0;
    left:0;
    position:fixed;
    display:block;
    width:100vw;
    height:100vh;
    background-color:rgba(0,0,0,0.6);
    cursor:pointer;
}
#anniversary{
   
    max-width:80vw;
    max-height:80vh;
    margin-left:50%;
    margin-top:50vh;
    transform:translate(-50%,-50%);
}
/* book an appointment section */
.bookpopup {
    z-index: 9999;
    background-color: rgba(255,255,255,0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
}
.bookpopup > div>button {
    position: relative;
    margin-bottom: 40px;
    display: block;
    float: right;
    color: white;
    background-color: transparent;
    border: none;
}
.bookpopup > div>button:focus,button:active{
    outline: none;
}
.bookpopup > div > h2{
    margin-top: 50px;
    font-size: 22px;
    position: relative;
}
.bookpopup > div > p{
    font-size: 14px;
}
.bookpopup > div{
    border-radius: 10px;
    background-color: #50BFBF;
    color: #fff;
    width: 380px;
    padding: 50px;
}
.bookpopup > div > form{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.bookpopup > div > form > div{
    position:relative;
    width: 100%;
}
.bookpopup > div > form > div > span{
    position:absolute;
    left:0;
    color:red;
    white-space:nowrap;
    bottom:-15px;
}
.bookpopup > div > form > div:nth-child(2) > span, div:nth-child(4) > span{
    left:30px !important;
}
.bookpopup input::placeholder{
    color: rgba(255,255,255,.7);
}
.bookpopup input[type="time"]::-webkit-calendar-picker-indicator,input[type="date"]::-webkit-calendar-picker-indicator{
    filter: invert(48%) sepia(13%) saturate(3207%) hue-rotate(130deg) brightness(95%) contrast(80%);
    /* color:white; */
  }
.bookpopup > div > form input{
    overflow:visible;
    width:100%;
    position: relative;
    height: 40px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    color:white;
    margin:5px 0px;
}
.bookpopup > div > form > div:nth-of-type(7),div:nth-of-type(8),input{
    grid-column-end: span 2;
}
.bookpopup > div > form > input{
    background-color: white;
    color:#50BFBF;
}
.bookpopup > div > form > div input:focus , input:active{
    outline: none;    
}
.bookpopup > div > form > div:nth-of-type(4) input::before{
    content: 'Select Date';
    position: absolute;
    top: -15px;
}
.bookpopup > div > form > div:nth-of-type(5) input::before{
    content: 'Select Time';
    position: absolute;
    top: -15px;
}
/* book an appointment section end */
/* button reset      */
.animation-logo-div{
   filter: drop-shadow(0px 3px 10px rgba(0,0,0,0.16))
}
nav button {
        display: inline-block;
        border: none;
        padding: 0px;
        margin: 0;
        text-decoration: none;
        background: #50BFBF;
        color: #ffffff;
        font-size: 14px;
        cursor: pointer;
        text-align: center;
        transition: background 250ms ease-in-out, transform 150ms ease,color .5s ease;
        -webkit-appearance: none;
        -moz-appearance: none;
    }
    
 nav button:hover,
  nav button:focus {
        background: rgba(80,191,191,0.9);
    }
    
    nav button:focus {
        outline: 1px solid #fff;
        outline-offset: -4px;
    }
    
    nav button:active {
        transform: scale(0.99);
    }


/* button reset end     */
/* nav{
    width: 100%;
    height: 80px;
    position: fixed;
    overflow: hidden;
    display: block;
    padding: 0 15%;
    background-color: white;
    filter: drop-shadow(0px 3px 10px rgba(0,0,0,0.16));
} */
.animation-logo-div{
    top:0;
    left:0;
    background-color: white;
    max-height: 80px;
    position: fixed;
    z-index: 98;
    width: 100%;
}
#logo-only-div{
    z-index: 5;
    margin-left: 50%;
    margin-top: 40px;
    transform: translate(-50%,-50%);
    height: 60px;
    display: inline-block;
    cursor: pointer;
}
#logo-text-div{
    z-index: 4;
    margin-left: 2%;
    margin-top: 40px;
    transform: translate(0%,0%);
    height: 20px;
    display: none;
    overflow: hidden;
    cursor: pointer;
}
#logo-only{
    height: 60px;
}
#logo-text{
    height: 20px;
    margin-left: 0%;
    transform: translate(0%,0%);
}


.logo-only-div{
    z-index: 5;
    margin-left: 50%;
    margin-top: 40px;
    transform: translate(-50%,-50%);
    height: 60px;
    display: inline-block;
}
.logo-text-div{
    z-index: 4;
    margin-left: 0%;
    margin-top: 40px;
    transform: translate(0%,0%);
    height: 20px;
    display: none;
    overflow: hidden;
}
.logo-only{
    height: 60px;
}
.logo-text{
    height: 20px;
    margin-left: 0%;
    transform: translate(0%,0%);
}
/* nav > ul{
    overflow: hidden;
    margin-top: 40px;
    transform: translateY(-50%);
    max-height: 50px;
    float: right;
    display: none;
}
nav > ul > li{
    text-transform: uppercase;
    float: left;
    list-style-type: none;
    padding: 0 0 0 3vw;
    margin-top: 25px;
    transform: translateY(-50%);
}
nav > ul > li > button{
    height: 50px;
    width: 212px;
    background-color: #50BFBF;
    border-radius: 25px;
    text-transform: uppercase;
    float: left;
    list-style-type: none;
} */

/* burger menu code */
.navbar .nav-links li:nth-of-type(1), .navbar .nav-links li:nth-of-type(2), .navbar .nav-links li:nth-of-type(3), .navbar .nav-links li:nth-of-type(4), .navbar .nav-links li:nth-of-type(5) {
    opacity: 0;
    transition: 0.3s ease-in all;
    text-align: center;
}
.navbar .nav-links li:nth-of-type(1).nav-link-open, .navbar .nav-links li:nth-of-type(2).nav-link-open, .navbar .nav-links li:nth-of-type(3).nav-link-open, .navbar .nav-links li:nth-of-type(4).nav-link-open, .navbar .nav-links li:nth-of-type(5).nav-link-open {
    opacity: 1;
    transform: translateY(10px);
}
.navbar .nav-links li:nth-of-type(3){
    position:relative;
    z-index:5;
}
.navbar .nav-links li a::before, .navbar .nav-links li a::after {
    position: absolute;
    content: '';
    height: 4px;
    width: 0%;
    background-color: #50BFBF;
    left: 0;
    border-radius: 2px;
    transition: 0.3s ease all;
}
.burger {
    width:25px;
    height: 25px;
    position: fixed;
    top: 25px;
    right: 25px;
    color: #50BFBF;;
    cursor: pointer;
    z-index: 1000;
    display: flex;
}
.burger svg:nth-of-type(1) {
    display: block;
    width:25px;
    height: 25px;
    fill:#50bfbf;
    
}
.burger svg:nth-of-type(2) {
    display: none;
    width:25px;
    height: 25px;
    fill:white;
}
.burger.burger-open {
    color: white;
}
.burger.burger-open svg:nth-of-type(1) {
    display: none;
}
.burger.burger-open svg:nth-of-type(2) {
    display: block;

}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #50BFBF;
    clip-path: circle(0px at 100% 0%);
    transition: 0.5s ease all;
    z-index: 99;
}
.navbar .nav-links {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.navbar .nav-links li {
    list-style-type: none;
    margin: 3rem 0;
}
.navbar .nav-links li:nth-of-type(1).nav-link-open {
    transition-delay: 0.25s;
}
.navbar .nav-links li:nth-of-type(2).nav-link-open {
    transition-delay: 0.35s;
}
.navbar .nav-links li:nth-of-type(3).nav-link-open {
    transition-delay: 0.45s;
}
.navbar .nav-links li:nth-of-type(4).nav-link-open {
    transition-delay: 0.55s;
}
.navbar .nav-links li:nth-of-type(5).nav-link-open {
    transition-delay: 0.65s;
}
.navbar .nav-links li a {
    text-decoration: none;
    font-size: 14px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.navbar .nav-links li a::before {
    top: -2px;
}
.navbar .nav-links li a::after {
    bottom: -5px;
}
.navbar .nav-links li a:hover::before {
    width: 0%;
}
.navbar .nav-links li a:hover::after {
    width: 100%;
}
.navbar.nav-open {
    color:white;
    display: block;
    clip-path: circle(100%);
    
}

.nav-link > button{
    background-color: rgba(0,0,0,0);    
    text-transform: uppercase;
    color: black;
}
.nav-link > button:active, button:focus{
    outline: none;
}
/* end of burger menu code */
/* drop down nav*/
.nav-link:nth-child(3) > a  {
    /* pointer-events: none; */
}
.nav-link > div{
    /* display: none; */
    max-height: 0px;
    overflow: hidden;
    position: absolute;
    background-color: white;
    padding: 0px;
    border-radius: 5px;
    text-align: left;
    margin-left: -15px;
    width: max-content;
    /* transition: 0.3s ease all; */
}
.drop > a{
    padding: 5px;
    display: inline-block;
    margin-top: 10px;
}
.nav-link:nth-child(3):hover > div {
    display: block;
    max-height: 400px;
    padding: 10px;
    transition: 0.6s ease-out all,
                0s ease padding;
}
@media only screen and (min-width: 1280px) {
    .animation-logo-div{
        filter: none;
     }
    .animation-logo-div{
        z-index: 100;
        margin: 0 0 0 15%;
        width: 15%;
        top:0;
    }
    .navbar{
        width: 100%;
        height: 80px;
        position: fixed;
        /* overflow: hidden; */
        display: block;
        padding: 0 15%;
        background-color: white;
        filter: drop-shadow(0px 3px 10px rgba(0,0,0,0.16));
        clip-path: none;
    }
    #logo-only-div{
        float: left;
        margin-left: 0;
        transform: translate(0%,-50%);
    }
    #logo-text-div{
        display: block;
        float: left;
    }
    #logo-only{
        float: left;
        margin-left: 0px;
    }
    #logo-text{
        transition: 0.3s cubic-bezier(0.04, 0.38, 0.58, 1);
        transform: translate(-100%,0%);
    }
    .nav-links{
        top:0% !important;
        left:0% !important;
        position: relative !important;
        /* overflow: hidden; */
        margin-top: 40px;
        transform: translateY(-50%) !important;
        max-height: 50px;
        float: right;
        display: block;
    }
    .nav-link{
        opacity: 1 !important;
        text-transform: uppercase;
        float: left;
        list-style-type: none;
        padding: 0 0 0 3vw;
        margin: 25px 0 0 0 !important;
        transform: translateY(-50%);
    }
    .nav-link > button{
        color: white;
        height: 50px;
        width: 212px;
        background-color: #50BFBF;
        border-radius: 25px;
        text-transform: uppercase;
        float: left;
        list-style-type: none;
    }
    /* for desktop nav */
    .burger{
        display: none;
    }
    .none{
        display: none !important;
    }
  }
@media only screen and (max-width: 1279px) {
#logo-only-div {
    margin-left: 53px;
}
}
/* header css end */

/* landing section */

.landinghome{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 15%;
    padding-right: 7%;
    height: 100vh;
    max-height: calc(100vh - 80px);
    overflow: hidden;
    background: rgb(111,189,190);
    background: linear-gradient(180deg, rgba(111,189,190,0.44) 0%, rgba(111,189,190,0.04) 100%);
   
}
.landinghome h2{
    font-size: 48px;
}
.landinghome p{
    font-size: 20px;
}
.landinghome > div{
    width: 100%;
}
.landing{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 15%;
    padding-right: 7%;
    height: 100vh;
    max-height: calc(100vh - 80px);
    overflow: hidden;
    background: rgba(0, 0, 0,0.1);
    /* background: rgb(111,189,190);
    background: linear-gradient(180deg, rgba(111,189,190,0.44) 0%, rgba(111,189,190,0.04) 100%); */
   
}
.landing::before {
    content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      filter: grayscale(1);
      filter: grayscale(100%);
      z-index: -1;
}
.landing h2{
    font-size: 48px;
}
.landing p{
    font-size: 20px;
}
.landing > div{
    width: 100%;
}
.landing > div > div{
    max-width: 50%;
}
.landingSectionContent{
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.landingSectionContent h1{
    font-size: 64px;
    font-weight: 500;
    width: 15ch;
    line-height: 76.8px;
    color: var(--accentColor);
}
.landingSectionContent p{
    font-size: 12px;
    font-weight: 400;
    width: 45ch;
    line-height: 14px;
    color: var(--greyColor);
}
.landingSectionContent ul{
    display: flex;
    gap: 30px;
    font-size: 12px;
    line-height: 14px;
    color: var(--accentColor);
    list-style-type: none;
}
.landingSectionForm{
    background-color: white;
    height: 56px;
    border-radius: 15px;
    display: block;
    padding: 5px 20px;
    align-self: self-start;
    display: flex;
    align-items: center;
    gap: 10px;
}
.landingSectionForm input:focus{
    outline:none;
}
.landingSectionForm input{
    border: none;
    color: var(--accentColor);
}
.landingSectionForm input::-webkit-input-placeholder { /* Edge */
    color: var(--greyColor);
  }
  
  .landingSectionForm input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--greyColor);
  }
  
  .landingSectionForm input::placeholder {
    color: var(--greyColor);
  }
.landingSectionForm button{
    background-color:var(--baseColor);
    padding: 15px 15px;
    border-radius: 15px;
    font-size: 12px;
    line-height: 14px;
    color: white;
    border:none;
    transform: translateX(50%);
    filter: drop-shadow(0px 15px 30px rgba(111, 189, 190, 0.5));

}
.landingSectionImage > img{
    max-height: 85vh;
}
.landingSectionFeatured li{
    display: flex;
    align-items: center;
    gap: 5px;
}
@media only screen and (max-width: 480px){
    .landinghome h2{
        font-size: 28px;
    }
    .landinghome p{
        font-size: 16px;
    }
    .landing h2{
        font-size: 28px;
    }
    .landing p{
        font-size: 16px;
    }
    .landing > div > div{
        max-width: 100%;
    }
    .landinghome{
        flex-direction: column;
        max-height: unset;
        padding: 5%;
        height: auto;
        min-height: 100vh;
    }
    .landing{
        flex-direction: column;
        max-height: unset;
        padding: 5%;
        height: auto;
        min-height: 100vh;
    }
    .landingSectionContent{
        width: 100%;
        margin-top: 100px;
    }
    .landingSectionContent h1{
        font-size: 42px;
        line-height: calc(42*1.2px);
    }
    .landingSectionImage > img {
        width: 100%;
    }
}
/* landing section end */
/* services section */
.services{
    padding: 5% 15%;
}
.serviceCards{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.serviceCards > div {
    padding: 15px 10px;
    color: white;
    aspect-ratio: 1.5 / 1;
    width: 100%;
    background-color: var(--baseColor);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.serviceCards > div > a {
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.serviceCards > div > a h3{
    font-weight:500;
    font-size: 16px;
}
.serviceCards > div > a svg{
    align-self: flex-end;
    height: 65px;
    right:0;
}
@media only screen and (max-width: 480px){
    .serviceCards{
        flex-wrap: wrap;
    }
}
/* services section end */
/* why section */
.whySection{
    padding: 5% 10%;
}
.whySection>h2{
    font-size: 48px;
    font-weight: 500;
    color: var(--accentColor);
    margin: auto;
    text-align: center;
}
.whySection>p{
    max-width: 50ch;
    text-align: center;
    font-size: 20px;
    font-weight:300;
    color: var(--greyColor);
    margin: auto;
}
.cardHolder{
    display: flex;
    flex-direction: row;
    gap: 50px;
    margin-top: 80px;
}
.cardHolder > div > div{
    margin-top: -8px;
    background-color: white;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding: 35px;
}
.cardHolder > div > img{
    width: 100%;
}
.cardHolder h5{
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}
.cardHolder > div > div > p{
    margin: auto;
    text-align: center;
    font-size: 14px;
    width: 35ch;
    display: block;
    color: var(--greyColor);
}
@media only screen and (max-width: 480px){
.cardHolder{
    flex-direction: column;
}
.whySection>h2{
    font-size: 42px;
}
.cardHolder h5{
    font-size: 20px;
}
.cardHolder > div > div{
    padding: 25px;
}
.cardHolder > div > div > p{
    font-size: 12px;
    /* width: auto; */
}
}
/* why section end */
/* faq section */
.faqSection{
    padding: 5% 15%;
}
.faqSection > h2{
    font-size: 48px;
    font-weight: 500;
    color: var(--accentColor);
    text-align: center;
}
.faqSection > p{
    margin: auto;
    width: 50ch;
    text-align: center;
    font-weight: 300;
    font-size: 20px;
    color: var(--greyColor);
}
.container {
    max-width: 1320px;
    margin: 0 auto;
}
.accordion {
    margin-top: 1.875rem;
}
.accordion .accordion-item {
    background-color: white;
    color: #1b1d21;
    border-radius: 0.5rem;
    border: 1px solid #f7f7f7;
    margin-bottom: 1.875rem;
}
.accordion .accordion-item.active {
    box-shadow: 0 0.0625rem 0.9375rem 0 rgba(27, 29, 33, 0.15);
}
.accordion .accordion-item.active .accordion-body {
    max-height: max-content;
}
.accordion .accordion-item.active .accordion-header::after {
    transform: rotate(90deg);
}
.accordion .accordion-item:last-child {
    margin-bottom: 0;
}
.accordion .accordion-item .accordion-header {
    padding: 1.5625rem;
    font-size: 1.125rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.accordion .accordion-item .accordion-header::after {
    content: "";
    font-size: 2rem;
    position: absolute;
    right: 1.5rem;
    transition: all 0.2s ease-in-out;
    transform: rotate(0deg);
    width: 13px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../assets/right.png');
}
.accordion .accordion-item .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
.accordion .accordion-item .accordion-body .accordion-body-content {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.875rem;
    line-height: 2rem;
    color:var(--greyColor);
}
@media only screen and (max-width: 480px){
    .faqSection{
        padding: 5%;
    }
    .faqSection > p{
        width: auto;
    }
    .faqSection > h2{
        font-size: 42px;
    }
    .faqSection > p{
        font-size: 18px;
    }
}
/* faq section end */

/* footer */


.footer {
    margin-top: 300px;
    display: block;
    width: 100%;
    position: relative;
    background: var(--baseColor);
    padding: 150px 25px 50px 25px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.footer-start {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    width: 90%;
    margin: auto;
    padding: 80px 100px;
    background: var(--accentColor);
    border-radius: 15px;
}
.start-learning {
    position: absolute;
    left: 0;
    right: 0;
    top: -200px;
}
.fa-star{
    color: var(--baseColor);
}
.footer .inner {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 20px;
    max-width: 1180px;
    margin: auto;
    text-align: left;
}
.main-logo {
    position: relative;
    display: flex;
    align-items: center;
}
.main-logo .logo {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.main-logo .logo > img {
    display: block;
    width: 100%;
    min-width: 40px;
}
.logo-info {
    text-align: left;
    line-height: 20px;
}
.text {
    font-size: 17px;
    line-height: 17px;
    color: #fff;
    letter-spacing: .18em;
    font-weight: 600;
}
.copyright {
    color: #fff;
    font-size: 12px;
    line-height: 12px;
}
.footer .column {
    width: 100%;
    font-size: 14px;
    text-align: left;
}
.footer .column .column-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0.5em;
    color: #fff;
}
.footer .column .column-title:not(:first-child) {
    margin-top: 1em;
}
.illustration {
    left: 8%;
    position: absolute;
    top: -28px;
}
a.button {
    display: inline-flex;
    position: relative;
    height: 60px;
    margin-right: 20px;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    background: #fff;
    color: var(--accentColor);
    border-radius: 36px;
    font-size: 16px;
    font-weight: 700;
    padding: 0 30px;
    text-decoration: unset;
    box-shadow: 0px 24px 74px rgb(60 0 189 / 20%);
}
.section-title {
    font-size: 44px;
    font-weight:500;
    color: #fff;
    width: 20ch;
}
.section-sub-heading {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
}
.section-sub-heading span {
    opacity: 0.6;
}
.section-sub-heading strong {
    font-weight: 600;
}

@media only screen and (max-width: 990px) and (min-width: 200px) {
    body {
        height: 200vh;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .footer .inner {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .start-learning {
        position: unset;
    }
    .footer-start {
        width: 100%;
        display: block;
        padding: 30px 20px;
        margin: 30px 0;
    }
    .section-title {
        font-size: 30px;
    }
    .section-sub-heading {
        font-size: 18px;
    }
    footer.footer {
        padding-top: 0;
    }
    a.button {
        height: 50px;
        margin-top: 10px;
    }
    .column.is-logo {
        order: 4;
    }
    .section-title{
        width: auto;
    }
}
/* footer end */