@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary-color:#4D5DFB;
    --body-text:#383751;
    --background-color:#fff;
    --secondary-button:#F6DC03;
    --secondary-button-stroke:#025622;
    --secondary-button-text:#383751;
    --button-color:#4D5DFB;
    --button-color-text:#fff;
    --vector1:#BECEF9;
    --vector2:#DAE2F6;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: .3s ease;
}

body{
    width: 100%;
    overflow-x: clip;
    font-family: "Work Sans", sans-serif;
    position: relative;
    color: var(--body-text);
}

h1,h2,h3,h4{
    font-family: "Plus Jakarta Sans", sans-serif;
}

  p{
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.16px;
}

h2,.h2{
    font-size: 44px !important;
    font-weight: 900 !important;
    line-height: 1.6 !important;
}

h3,.h3{
    font-size: 40px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
}

h4{
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 160%;
    letter-spacing: 0.26px;
}

.section-margin {
    margin-bottom: 60px;
}

.button-margin{
    margin-top: 60px;
}

.phone_link{
    font-size: 26px;
    line-height: 1.6;
    font-weight: 700;
    text-underline-offset: 4px;
}

.phone_link:hover{
    text-decoration: underline;
}

header{
    padding: 30px 0;    
    z-index: 99;
}

header.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background-color: rgba(255,255,255,.6);
    backdrop-filter: blur(6px);
}

section{
    opacity: 0;
    transform: translateY(60px);
    transition: .7s ease;
}

section.visible{
    opacity: 1;
    transform: translateY(0);
}

button{
    width: fit-content;
}

.button{
    background-color: var(--button-color);
    border-radius: 45px;
    line-height: 1;
    padding: 15px 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    gap: 10px;
    color: var(--button-color-text);
    font-weight: 700;
    line-height: 1.6;
    cursor: pointer;
}

.button-primary{
    border-radius: 50px;
    height:54px;
    font-size: 16px;
    min-width: 260px;
    font-weight: 700;
    padding: 12px 40px;
    gap: 18px;
    line-height: 1.6;
    position: relative;
    gap: 10px;
    overflow: hidden;
}

.button-primary:hover span{
    transform: translateX(-20px);
}

.button-primary:after{
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    content: '';
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 7px;
    transition: .5s opacity ease;
}

.button-primary:hover:after{     
    opacity: 1;
}

.button-primary:hover:after{
    opacity: 1;
}

.google-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    border-radius: 150px;
    padding: 15px 31px;
border: 3px solid rgba(111, 100, 100, 0.25);
background: var(--background-color);
box-shadow: 0px 24px 84px 0px rgba(56, 55, 81, 0.08);
}

.google-btn::before{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
}


.google-btn span{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.google-btn span::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
}


.alert-btn{
    background-color: var(--secondary-button);
    border-radius: 136px;
    border:1px solid var(--secondary-button-stroke);
    line-height: 1;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    gap: 10px;
    color: var(--secondary-button-text);
    font-weight: 800;
    line-height: 1.6;
}

/* Animations */

.hero_section .left-animate,
.hero_section .right-animate,
.hero_section .down-animate,
.hero_section .up-animate{
    opacity: 0;
    transition: .7s ease !important;
}

.hero_section .left-animate{
    transform: translateX(-100px);
}

.hero_section .right-animate{
    transform: translateX(100px);
}

.hero_section .down-animate{
    transform: translateY(100px);
}

.hero_section .up-animate{
    transform: translateY(-100px);
}

.hero_section.visible .left-animate,
.hero_section.visible .right-animate{
    transform: translateX(0);
    opacity: 1;
}

.hero_section.visible .down-animate,
.hero_section.visible .up-animate{
    transform: translateY(0);
    opacity: 1;
}


.hero_list{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 50px;
}

.hero_list li{
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.6;
}

.hero_section .hero-img{
    height: 100%;
    max-height: 100vh;
    object-fit: contain;
    display: block;
    margin: auto;
    transition-delay: .6s !important;
}

.hero_section .hero_row:nth-child(1){
    transition-delay: .3s !important;
}

.hero_section .hero_row:nth-child(2){
    transition-delay: .5s !important;
}

.hero-figure{
    width: fit-content;
    position: relative;
}

.hero-icons{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.hero-icons li:nth-child(1){
    right: 20px;
    top: 20%;
    transition-delay: .7s !important;
}

.hero-icons li:nth-child(2){
    left: -40px;
    top: 40%;
    transition-delay: .9s !important;
}

.hero-icons li:nth-child(3){
    right: 20px;
    top: 60%;
    transition-delay: 1.1s !important;
}

.hero_row{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-icons li{
    background-color: var(--background-color);
    border-radius: 16px;
    padding: 16px 32px;
    line-height: 1.6;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 1px 1px 12px rgba(56, 55, 81, 0.1);
    width: fit-content;
    position: absolute;
}

.hero-icons li img{
    height: 40px;
    width: 40px;
    padding: 7px;
    background-color: var(--button-color);
    border-radius: 100%;
}

.logo-group{
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero_section .logo-group{
    margin: 20px 0 10px;
}

.logo-group img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.vector-1,
.vector-2{
    position: absolute;
    display: block;
    width: 1500px;
    height: 1500px;
    border-radius: 100%;
}

.hero_section .vector-1{
    right: -550px;
    top: -200px;
    z-index: -1;
    background-color: var(--vector1);
    transition-delay: .2s !important;
}

.hero_section .vector-2{
    right: -480px;
    top: -150px;
    transition-delay: .4s !important;
    background-color: var(--vector2);
    z-index: -2;
}

/* ct scan section */

.custom-span{
    color: var(--ct-dark, #383751);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.16px;
}


/* video section */

.number-span{
    color: #FDFDFE;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 96px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; 
    letter-spacing: 0.96px;
}

.video-content{
    padding: 70px;
    border-radius: 32px;
    
}
/* counter section */

.number-bullet{
    border: 1px solid #383751;
    padding: 30px 50px;
    border-radius: 182px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 440px;
    width: 100%;
    transition: .5s ease;
    cursor: pointer;
}

.number-bullet:hover{
    border: 1px solid var(--button-color);
    background:var(--button-color);
}

.number-bullet:hover *{
    color: var(--button-color-text);
}

.number-bullet p{
    font-weight: 700;
}

.counter-value{
    color: #383751;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 96px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 134.4px */
    letter-spacing: 0.96px;
}


/* banner section */

.custom-element{
    color: #383751;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 60px!important;
    font-style: normal;
    font-weight: 700;
    line-height: 130%!important;
    letter-spacing: 0.6px;
}

.custom-element span{
    color: #215FFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 60px!important;
    font-style: normal;
    font-weight: 700;
    line-height: 130%!important;
    letter-spacing: 0.6px;
}

.banner-content h4{
    margin-top: 12px;
}


/* CTA */

.cta_footer{
    background-color: #383751;
}

.cta_footer .vector_1,
.cta_footer .vector_2{
    position: absolute;
    display: block;
    width: 700px;
    height: 700px;
    border-radius: 100%;
    filter: blur(240px);
    background-color: var(--button-color);
}

.cta_footer .vector_1{
    left: -300px;
    top: -200px;
}

.cta_footer .vector_2{
    right: -300px;
    bottom: -200px;
}

.cta_footer *{
    color: var(--background-color) !important;
}

.cta_footer .container{
    z-index: 20;
    position: relative;
}

/* Hover Cards */

.hover-cards-container{
    position: relative;
    overflow: hidden;
}
.hover-cards-container .hover-card.vissible .hover-inner-card{
    opacity: 1;
    pointer-events: auto;
}
.hover-cards-container .hover-card .hover-inner-card{
    opacity: 0;
    pointer-events: none;
}
.hover-cards-container .hover-card{
	  height: 100%;
    border-radius: 32px;
    padding: 40px 60px;
    max-width: 68%;
    position: relative;
    overflow: hidden;
}
.hover-cards-container .hover-card:not(:first-child){
    position: absolute;
    top: 0;
}
.hover-cards-container .hover-card:nth-child(1){
    z-index: 3;
    position: relative;
    background: #F3F6FF;
}
.hover-cards-container .hover-card:nth-child(2){
    z-index: 2;
    background: #E3EBFF;
}
.hover-cards-container .hover-card:nth-child(3){
    z-index: 1;
    background: #D2DFFF;
}
.hover-cards-container .hover-card:nth-child(2){
    right: 16%;
}
.hover-cards-container .card-heading h2, h3, h4{
   font-weight: 600;
}
.hover-cards-container .hover-card:nth-child(3){
    right: 0;
}
.hover-cards-container .brain-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hover-cards-container .brain-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brain-inner-video{
    position: relative;
}
.closeButton {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: transparent;
    color: white;
    cursor: pointer;
    z-index: 1;
    padding: 9px 12px;
    display: flex;
    gap: 13px;
    align-items: center;
}
.hover-cards-container .card-footer{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.hover-cards-container .card-description{
    max-width: 596px;
}
.hover-cards-container figure{
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0px;
}
.hover-cards-container .hover-card.vissible{
    z-index: 10;
    opacity: 1;
}
.hover-cards-container .closeButton:hover{
  background: transparent;
}
.hover-cards-container .closeButton{
  background: transparent;
}
.hover-cards-container .playButton:hover{
	background: transparent;
}
.hover-cards-container .card-body{
  margin-bottom: 40px;
}
.hover-cards-container .playButton{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: transparent;
    cursor: pointer;
}
.hover-card .brain-video{
    display: none;
}
.hover-card.active .brain-video{
    display: block;
}
.hover-cards-container .brain-inner-video{
    height: 100%;
}
.playButton img{
    transition: .3s cubic-bezier(0.29, 0.94, 1, 1.5);
}
.playButton:hover img{
    scale: 1.3;
}
.hover-inner-card{
    transition: .3s ease;
}
.hover-cards-container .card-heading{
    margin-bottom: 32px;
}
.Cutting-edge{
    background-size: cover !important;
}
.Cutting-edge > *{
    color: white;
}
.Cutting-edge h2{
    color: #FFF;
    font-family: "Plus Jakarta Sans";
    font-size: 60px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 130% !important;
    letter-spacing: 0.6px;
}
.Cutting-edge::before{
    content: "";
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    background-size: calc(50% - 60px) !important;
}

.testimonial .text{
    font-size: 24px !important;
    line-height: 1.8 !important;
    letter-spacing: 0.24px !important;
    font-weight: 400 !important;
}

/* Footer */

footer .phone_link{
    color: var(--button-color) !important;
}

footer .logo{
    max-width: 330px;
}

.social-icons ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.social-icons ul li:hover{
    filter: brightness(0) saturate(100%) invert(27%) sepia(41%) saturate(6644%) hue-rotate(222deg) brightness(105%) contrast(101%);
}

@media screen and (max-width:1536px) {
.vector-1,
.vector-2{
    width: 1300px;
}
}


@media screen and (max-width:1440px) {
    h2, .h2{
        font-size: 32px !important;
    }
    .button-primary{
        height: 52px;
        font-size: 16px;
    }
    .button-primary:after{
        width: 30px;
        height: 30px;
        top: 12px;
    }
    .hero_list{
        margin-bottom: 20px !important;
        gap: 10px !important;
    }
    .hero_section .vector-1,
    .hero_section .vector-2{
        height: 1300px;
        width: 1200px;
    }

    .hero_section .vector-1{
        top: -100px;
        right: -400px;       
    }
    .hero_section .vector-2{
        top: -80px;
        right: -360px;       
    }
}

@media screen and (max-width:1366px) {
    .cta_footer h3{
        font-size: 28px !important;
    }
}

@media screen and (max-width: 1280px) {

    .hero_section .vector-1,
    .hero_section .vector-2{
        height: 1300px;
        width: 1100px;
    }

    .hover-cards-container .hover-card{
        padding: 40px 40px;
    }   
    .number-bullet{
        padding: 30px 60px;
        max-width: 380px;
    }

    .counter-value{
        font-size: 60px;
    }
}

@media screen and (max-width:1200px) {
    .button img{
        width: 16px;
        height: 16px;
    }
    header{
        overflow-x: clip;
    }
    header .logo_main{
       max-width: 240px;
    }
    .button{
        padding: 15px 20px;
        font-size: 14px;
    }
    .button-primary{
       min-width: 0;
       padding: 12px 35px;     
    }      
    .button-primary:hover span{
        transform: translateX(-15px);
    }
    .number-bullet{
        padding: 30px 30px;
        max-width: 380px;
        margin-inline: 10px;
    }

    .left-column-content h3{
        font-size: 24px !important;
    }

    .video-content {
        padding: 40px 20px;
    }
    .testimonial .text{
        font-size: 18px !important;
    }
    .Cutting-edge::before{
        background-size: 540px !important;
        background-position: center bottom !important;
    }
    .Cutting-edge{
        padding-bottom: 420px;
    }

    .hero_section .vector-1,
    .hero_section .vector-2{
        height: 1300px;
        width: 1000px;
    }
}

@media screen and (max-width:1024px) {
    .hero_section .vector-1,
    .hero_section .vector-2{
        height: 1300px;
        width: 900px;
    }
}

@media screen and (max-width:980px) {
    .hover-cards-container .hover-card:not(:first-child){
        position: relative;
    }
    .hover-cards-container .hover-card{
        max-width: 100%;
    }
    .hover-cards-container .hover-card:nth-child(2) {
        right: 0%;
    }
    .hover-cards-container{
        display: grid;
        gap: 32px;
    }
    .hover-cards-container .hover-card .hover-inner-card{
        opacity: 1;
    }
    .hover-cards-container .placeholder-image{
        max-width: 280px
    }
    .hero_section{
        max-height: 100%;
    }
    .google-btn{
        padding: 15px 20px;
    }
    .vector-1, .vector-2{
        top: auto !important;
        bottom: 0;
    }      
    .hero-icons li{
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 14px;
    }
    .banner-content h4{
        font-size: 18px !important;
    }
    .cta-image{
        max-height: 400px;
        margin: auto;
    }
    .hero_section .vector-1,
    .hero_section .vector-2{
    width: 850px;
    height: 850px;
    top: auto;
}
.vector-1{
    bottom: -100px;
    right: -230px !important;
}
.vector-2{
    bottom: -100px;
    right: -170px !important;
}

.custom-element{
    font-size: 30px!important;
}

.custom-element span{
    font-size: 30px!important;
}

.banner-section img{
    height: 400px;
    width: 100%;
}
}

@media screen and (max-width:767px){
    .button img{
        display: none;
    }
    header .logo_main{
        max-width: 160px;
    }
    h3{
        font-size: 24px !important;
    }
    .hover-cards-container .placeholder-image {
        max-width: 220px;
    }
    .Cutting-edge::before {
        background-size: 420px !important;
    }
    .Cutting-edge {
        padding-bottom: 360px;
    }
    .Cutting-edge h2{
        font-size: 26px !important;
    }
    footer .logo{
        max-width: 200px;
    }
    .hero-icons{
        margin: 0 20px;
    }
    .google-btn{
        padding: 10px 15px;
    }
    .hero-icons li:nth-child(2){
        left: -20px;
    }
    .phone_link{
        font-size: 18px;
    }
    .hero_section .vector-1,
    .hero_section .vector-2{
    width: 700px;
    height: 700px;
}
.hero-icons{
    display: none;
}
.hero-icons li img{
    width: 32px;
    height: 32px;
}
.hover-cards-container .brain-video video{
    object-fit: contain !important;
    background-color: #000 !important;
}
}


@media screen and (max-width:540px){
    .hero_list li{
        font-size: 16px;
    }
}

@media screen and (max-width:420px) {
    .hero_section .vector-1,
    .hero_section .vector-2{
    width: 600px;
    height: 600px;
}
header .logo_main{
    max-width: 140px;
}
}

/* Page php */

.the_title{
    display: none;
}

.the_content{
    padding-top: 120px;
    position: relative;
}

#wpadminbar{
	position:fixed !important;
}

/* Schedule Modal Form */

#schedule-modal{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: .5s ease;
    background-color: var(--background-color) !important;
  }
  
  #schedule-modal.modal-active{
    opacity: 1;
    visibility: visible;
  }
  #schedule-modal .gform_wrapper{
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 20px;
  }
  
  #schedule-modal form{
    margin-top: 40px;
  }
  
#schedule-modal .gform_submission_error{
	font-size:22px !important;
	font-weight:600 !important;
}

  #schedule-modal .gform_required_legend{
    display: none !important;
  }
  
  #schedule-modal .ginput_container{
    border: 1px solid rgba(46, 46, 46,.4);
    padding: 10px 20px;
    border-radius: 4px;
    justify-content: space-between;
  }
  
  #schedule-modal .ginput_container input,
  #schedule-modal .ginput_container select,
  #schedule-modal .ginput_container textarea{
    padding: 0 !important;
  }
  
  #schedule-modal .ginput_container:has(input:focus-visible),
  #schedule-modal .ginput_container:has(select:focus-visible),
  #schedule-modal .ginput_container:has(textarea:focus-visible){
    outline: 1px solid #2E2E2E;
    outline-style: inset;
    outline-offset: .25rem;
  }
  
  #schedule-modal .ginput_container input:focus,
  #schedule-modal .ginput_container select:focus,
  #schedule-modal .ginput_container textarea:focus{
     outline: none !important;
     border: none !important;
  }
  
  #schedule-modal .gfield{
    grid-column: span 6 / span 6 !important;
    padding-left: 5px;
  }
  
  #schedule-modal .g_form_input_large{
     grid-column: span 12 / span 12 !important;
  }
  
  #schedule-modal .gform_wrapper::-webkit-scrollbar{
   width: 0;
  }
  
  #schedule-modal textarea{
    min-height: 80px;
    max-height: 100px;
  }
  
  #schedule-modal .modal_image::before{
     position: absolute;
     left: 0;
     bottom: 0;
     height: 100%;
     width: 100%;
     background: linear-gradient(0deg, #2E2E2E 12%, rgba(46, 46, 46, 0.00) 100%);
     content: '';
     display: block;
  }
  
  #schedule-modal .content{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 60px 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 20;
  }
  
  #schedule-modal .content *{
    color: var(--background-color) !important;
  }
  
  #schedule-modal .close_modal{
    height: 44px;
    width: 44px;
    padding: 7px;
    background-color: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #schedule-modal h2{
    font-size: 32px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
  }
  
  #schedule-modal h4,
  #schedule-modal .text-body{
    font-size: 24px !important;
    font-weight: 500 !important;
    line-height: 1.7 !important;
  }
  
  #schedule-modal input,
  #schedule-modal input:focus,
  #schedule-modal textarea,
  #schedule-modal textarea:focus,
  #schedule-modal select,
  #schedule-modal select:focus{
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  #schedule-modal .content svg{
    width: 100%;
    height: 100%;
    max-height: 20px;
  }
  
  #schedule-modal .content svg:not(.icon-twitter) path{
    fill: #2E2E2E !important;
  }
  
  #schedule-modal .content .social-icon-link{
    border-radius: 100%;
    height: 44px;
    width: 44px;
    padding: 4px;
    box-shadow: 1px 1px 7px #2E2E2E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
  }
  #schedule-modal .content .social-icon-link:hover{
    transform: scale(.9);
  }
  #schedule-modal .content .social-icon-link{
    background-color: var(--background-color) !important;
  }
  
  #schedule-modal .content .social-icon-link:hover{
    background-color: var(--button-color) !important;
  }
  
  #schedule-modal .content .social-icon-link:hover svg path{
    fill: #fff !important;
  }
  
  #schedule-modal .gform_footer{
    width: fit-content !important;
    padding: 0 !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    margin-left: auto !important;
    position: relative;
  }
  
#schedule-modal .gform_footer span{
	position:absolute;
	right:0;
	top:calc(100% + 10px);
	display:block;
}

  #schedule-modal .gform_footer:before{
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 10px;
    top: calc(50% - 20px);    
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    background-color: #fff;
    border-radius: 100%;
	  opacity:0;
    pointer-events: none !important;
    transition: .3s ease;
    padding: 5px;
    z-index: 70;
  }

  
  #schedule-modal input[type="submit"]{
    background-color: var(--button-color) !important;
    color: var(--button-color-text) !important;
    min-width: 200px !important;
    border-radius: 140px;
    padding: 10px 30px 10px;
    margin: 0;
    height: 58px;
    cursor: pointer;
	  transition:.3s ease;
  }
#schedule-modal .gform_footer:hover:before{
	opacity:1;
}

#schedule-modal .gform_footer:hover input[type="submit"]{
	 padding: 10px 60px 10px 30px;
}

  #schedule-modal .gform_fields{
    grid-column-gap: 20px !important;
  }
  
  @media screen and (max-width:1366px){
    #schedule-modal .content{
      padding: 0 20px 60px;
    }
  }
  
  @media screen and (max-width:576px){
    .button::before{
      right: 15px;
    }
    #schedule-modal h2{
      font-size: 24px !important;
    }
    #schedule-modal .gform_wrapper{
      padding-right: 0 !important;
    }
    #schedule-modal .gform_fields{
      display: flex;
      flex-direction: column;
      gap: 20px !important;
    }
    #schedule-modal .gfield {
      grid-column: span 12 / span 12 !important;
  }
  }

@media screen (max-width: 640px) {
    .hover-cards-container .playButton{
        max-width: 50px;
    }
    .video-content h3{
        font-size: 28px!important;
    }

    .button-margin{
        margin-top: 30px;
    }

    .banner-section img{
        height: 400px;
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .Cutting-edge::before {
        background-size: 80% !important;
    }
}
@media screen and (max-width: 425px) {
    .hover-cards-container .hover-card {
        padding: 24px 15px;
    }
    p{
        font-size: 14px;
    }
    .Cutting-edge {
        padding-bottom: 294px;
    }
}
@media screen and (max-width: 375px) {
    .Cutting-edge {
        padding-bottom: 230px !important;
    }
}


/* Sneha Code */