@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');

:root{
  --primary-color: #2563EB;
  --primary-hover-color: rgb(29 78 216);
  --background-color: #3F3F46; 
  --card-color: #FDF4FF;
  --icon-bg-color: #FCE7F3;
  --text-color: #3F3F46;
  --button-text-color: #fff;
}

/* Globals */

h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 3.25rem!important;
    color: var(--text-color);
    font-style: normal;
    line-height: 4.225rem;
    letter-spacing: 0.0975rem;
}

h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2rem!important;
    font-style: normal;
    line-height: 2.8rem; 
    letter-spacing: 0.06rem;
}

p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem!important;
    font-style: normal;
    line-height: 1.8rem; 
    letter-spacing: 0.03rem;
} 


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
  
body{
    width: 100%;
    height: 100%;
    overflow-x: clip;
}

  .default-nav{
    position: absolute;
    top: 0px;
    left: 0px;
}
/* .default-nav .switchElement{
    display: none;
} */
.stickey-nav .switchElement{
    height: auto;
}
.stickey-nav{
    position: fixed;
    top: 0px;
    left: 0px;
}
.bg-text{
    color:var(--background-color);
}
.stickey-nav{
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.77) 118.11%);
    backdrop-filter: blur(12px);
}

.container{
 padding-left:15px;
 padding-right:15px;
}

svg path,svg{
transition: .3s ease;
}

.card-bg {
    background-color: var(--card-color) ;
}


.primary-button {
    background-color: var(--primary-color);
    color: var(--button-text-color);
    transition: .3s ease;
}

.primary-button:hover{
  background-color: var(--primary-hover-color);
}

.container{
  margin: auto;
}

.bg-slide{
    background: var(--background-color);
}


.swiper-button-prev:after{
    content: ''!important;
  }
  
  
  
  .swiper-button-next:after{
    content: ''!important;
  }
  
  .swiper-btn-one{
    background: transparent;
    border: 2px solid var(--button-text-color);
    border-radius: 50%;
    width: 44px!important;
    height: 44px!important;
    transition: .5s ease;
  }
  
  .swiper-btn-one svg path{
    stroke: #fff;
    }

    .swiper-btn-one:hover svg path{
        stroke: var(--text-color); 
    }

    .scroll-none{
        scrollbar-width: none !important;
    }
    .scroll-none::-webkit-scrollbar{
        width: 0 !important;
    }

    .swiper-btn-two{
        background: transparent;
        border: 2px solid var(--background-color);
        border-radius: 50%;
        width: 44px!important;
        height: 44px!important;
        transition: .3s ease;
    }

  .swiper-btn-relative{
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .swiper-btn-one:hover {
      background:  var(--button-text-color);
      border-color: var(--button-text-color);
  }

  .swiper-btn-two:hover {
    background:  var(--background-color);
    border-color: var(--button-text-color);
}

.swiper-btn-two:hover svg path{
    stroke: var(--button-text-color); 
}


.testimonial_bg{
    background: var(--card-color);
}


.main-footer{
    background: var(--background-color);
}

.social_footer svg:hover{
    opacity: .8;
}

.logo-footer{
    filter: brightness(0) invert(1);
}

/* Schedule Modal */

#schedule-modal{
    position: fixed;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: .3s ease;
    z-index: 9999;
}

#schedule-modal.modal-active{
    opacity: 1;
    pointer-events: all;
}

#schedule-modal .gform_wrapper{
    padding: 40px;
    max-width: 900px;
    max-height: 700px;
    width: 100%;
    height: fit-content;
    overflow: auto;
    scrollbar-width: 0 !important;
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;  
    align-items: center;
    gap: 40px;
    background-color: #fff;
}

.gform_wrapper .close-btn{
    position: absolute;
    right: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.gform_heading{
    text-align: center !important;
}
.gform_heading .gform_title{
    font-size: 2rem !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
}


.gform_wrapper input,
.gfield_label{
    font-family: 'Inter', sans-serif !important;
}
.gfield_label{
    font-weight: 600 !important;
}
.gform_wrapper input,
.gform_wrapper textarea,
.gform_wrapper select{
    font-weight: 400 !important;
    border: 1px solid #A3A3A3 !important;
    font-family: 'Inter', sans-serif !important;
    border-radius: 4px !important;
    padding: 10px 20px !important;
    width: 100% !important;
    line-height: 1.4 !important;
}

.gform_wrapper textarea{
    min-height: 60px !important;    
    max-height: 200px;
    width: 100% !important;
    min-width: 100% !important;
}

.gform_wrapper input::placeholder{
    color: #A3A3A3 !important;
    font-weight: 400 !important;
    letter-spacing: 3% !important;
    line-height: 1.8 !important;
}

.gform_wrapper .gform_fields{
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: 20px !important;
}

.gform_wrapper.gravity-theme .gfield{
    grid-column: span 6 / span 6 !important; 
}

.gform_wrapper.gravity-theme .gfield.g_form_input_large{
    grid-column: span 12 / span 12 !important; 
}

#schedule-modal .gform_required_legend{
    display: none !important;
}

#schedule-modal form{
    width: 100%;
}

.gform_wrapper.gravity-theme .gform_footer input[type=submit]{
    border: none !important;
    background-color: #2563EB !important;
    color: #fff !important;
    padding: 10px 20px !important;
    max-width: 400px;
    font-weight: 600 !important;
    margin: auto;
    cursor: pointer !important;
}

@media screen and (max-width:1024px){
     /* Schedule Form */

     #schedule-modal .gform_wrapper{
        max-height: 90% !important;
        padding: 60px 20px 20px !important;
      }
      .gform_heading .gform_title{
        font-size: 1.5rem !important;
      }
}

@media screen and (max-width:767px){
    
    /* Schedule Form */

    .gform_wrapper.gravity-theme .gfield{
        grid-column: span 12 / span 12 !important; 
    }
}

/* Schedule Form End */

@media only screen and (max-width: 1023px)  {
    .feature-card{
        left: 8%;
    }


}

@media only screen and (max-width: 900px)  {

    .feature-card{
        left:0;
    }

}


@media only screen and (max-width: 1024px)  {
  h2 {
      font-size: 2rem!important;
      color: var(--text-color);
      line-height: 2.6rem; 
      letter-spacing: 0.06rem;
  }

  h3 {
      font-size: 1.75rem!important;
      line-height: 2.8rem; 
      letter-spacing: 0.06rem;
  }

  p {
      font-family: 'Work Sans', sans-serif;
      font-size: 0.875rem!important;
      line-height: 1.575rem; 
      letter-spacing: 0.02625rem;
  }
}


@media only screen and (max-width: 980px)  {
  h2 {
      font-size: 1.75rem!important;
      color: var(--text-color);
      line-height: 2.6rem; 
      letter-spacing: 0.06rem;
  }

  h3 {
      font-size: 1.25rem!important;
      line-height: 1.75rem; 
      letter-spacing: 0.0375rem;
  }

  p {
      font-family: 'Work Sans', sans-serif;
      font-size: 0.875rem!important;
      line-height: 1.575rem; 
      letter-spacing: 0.02625rem;
  }
}
@media only screen and (max-width: 767px){
    h2 {
        font-size: 1.5rem!important;
        line-height: 2.2rem;
    }
  
    h3 {
        font-size: 1.15rem!important;
    } 
}
@media only screen and (max-width: 425px) {
    .tel-icon{
        display: none;
    }    
}