@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  --primary:#033D5A;
  --text:#033D5A;
  --darkText:#2E2E2E;
  --accent: #388DCA;
  --duration: 0.3s ease;
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
  width: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
  color:var(--text);
}

.accent-color{
  color:var(--accent) !important;
}
.accent-bg{
  background-color:var(--accent) !important;
}
.primary-bg{
  background-color:var(--primary) !important;
}
.border {
  border: 1px solid red;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--text);
  font-style: normal;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.02rem;
}

.span {
  line-height: 1.8;
}

p {
  font-size: 1rem;
}

.h_0{
  font-size: 8rem !important;
  font-weight: 700 !important;
  line-height: 1.8 !important;
}

.h_1{
  font-size: 6.25rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

h2,.h2 {
  font-size: 3.75rem !important;
line-height: 1.4 !important;
font-weight: 700 !important;
letter-spacing: 0.0375rem;
}

h3,.h3{
  font-size: 3rem !important;
  font-weight: 700 !important;
  line-height: 1.5 !important; /* 3rem */
}

h4,.h4{
  font-size: 2rem !important;
  font-weight: 700 !important;
  line-height: 1.5 !important; /* 3rem */
}

.h5{
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  line-height: 1.5 !important; /* 3rem */
}

.title-el{
  position: absolute;
  left: 0;
  top: -14px;
  height: 4px;
  width: 34px;
  background-color: var(--accent);
}

section {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.7s ease;
  margin-bottom: 80px;
}

section.scroll_active {
  opacity: 1;
  transform: translateY(0);
}

/* sticky header */
.default-nav {
  position: relative;
  top: 0px;
  left: 0px;
  background-color: #fff;
}
.default-nav .switchElement {
  display: none;
}
.sticky-nav .switchElement {
  height: auto;
}

.sticky-nav {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99;
}
.sticky-nav {
  background: linear-gradient(
    180deg,
    #fff 0%,
    rgba(255, 255, 255, 0.77) 118.11%
  );
  backdrop-filter: blur(12px);
}
/* sticky header */

/* call button */
.call-button {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.02rem;
  color: #388dca;
}
/* call button */

/* hero section  */
.hero-header-text {
  overflow: hidden;
}

.hero-section {
  transform: unset !important;
}

.hero-mask {
  background-size: 55%;
  background-position: right top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  pointer-events: none;
}

.hero-mask-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-header-text .parallax-box {
  border-radius: 10px;
}

@media screen and (max-width: 1440px) {
  .hero-mask {
    background-size: 55% 100%;
  }
}
@media screen and (max-width: 1200px) {
  .hero-mask {
    background-size: 65% 100%;
    right: 0;
  }
}

@media screen and (max-width: 980px) {
  .hero-header-text .parallax-box {
    position: relative;
    height: 600px;
    margin: auto;
    width: 100%;
    mask-size: 100% 100%;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .hero-header-text .parallax-box {
    /* max-width: 480px; */
    margin: auto;
    height: 420px;
  }
}
@media screen and (max-width: 639px) {
  .hero-header-text .parallax-box {
    height: 37rem;
  }
}
@media screen and (max-width: 480px) {
  .hero-header-text .parallax-box {
    height: 28rem;
  }
}
@media screen and (max-width: 420px) {
  .hero-header-text .parallax-box {
    height: 20rem;
  }
}

/* hero section  */

/* hero section animation */

.circle-grow {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.border-inner-circle {
  width: 800px;
  height: 800px;
}

.circle-grow span:nth-child(1) {
  animation: expand-animation 3s ease infinite;
}
.circle-grow span:nth-child(2) {
  animation: expand-animation 3.5s ease infinite;
}
.circle-grow span:nth-child(3) {
  animation: expand-animation 4s ease infinite;
}

.circle-grow span {
  width: 800px;
  height: 800px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  border: 5px solid rgba(23, 85, 245, 0.12);
}

@keyframes expand-animation {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* hero section animation */

/* counter styling */

.counter_section {
  margin-bottom: 0 !important;
}

.plus-number {
  color: var(--text);
}

.para-text {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.01rem;
  color: var(--text);
}
/* counter styling */

/* Expanding Content Card */

.card-box {
  width: 34rem;
  transition: width 0.5s;
}
.card-box.hover-active {
  width: 44rem;
}

.card-title {
  max-width: 80%;
}


.card-box .card-content {
  opacity: 0;
}

.card-box.hover-active .card-content {
  opacity: 1;
}

.card-content .text-info {
  transition: opacity 0.3s ease-in 0.4s;
  opacity: 0;
}

.card-box.hover-active .card-content .text-info {
  opacity: 1;
}

.group .card-content {
  transform: translateY(80px);
  transition: transform 300ms ease;
}

.group.hover-active .card-content {
  transform: translateY(0);
}

.group.hover-active .default-card {
  display: none;
}

.expand-btn {
  z-index: 99;
}

.card-background {
  filter: brightness(0.5);
}

.left-heading {
  font-size: 8rem;
}

.middle-content-image {
  margin-left: 1.75rem;
}

/* Expanding Content Card */

/* button */
.button {
  position: relative;
  min-width: 15rem;
  min-height: 60px;
  padding: 1rem 1.25rem 1rem 1.875rem;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 40px;
  overflow: hidden;
  transition: 0.3s ease;
  /* box-shadow: 1px 1px 12px rgb(0 0 0 / 30%); */
  z-index: 50;
  width: fit-content;
  flex-shrink: 0 !important;
  transition: background-color 0.3s ease;
}

.background-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  z-index: -1;
  transition: height 0.3s ease; /* Transition for height */
}

.primary-btn:hover .background-overlay {
  height: 100%; /* Expand height on hover */
}

.button::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  position: absolute;
  right: 20px;
  top: calc(50% - 20px);
  z-index: 1;
  transition: 0.3s ease;
}

.primary-btn,
.primary-btn * {
  color: #fff;
}
.primary-btn {
  background-color: #1755f5 !important;
}

.primary-btn::before {
  background-color: #fff;
}

.button span {
  transition: 0.6s ease;
}

.button svg {
  width: 16px;
  height: 16px;
  margin: 0 12px;
  position: relative;
  transition: 0.3s ease;
  z-index: 2;
}

/* .primary-btn:hover {
    background-color: #fff !important;
} */
.primary-btn:hover::before {
  background-color: #1755f5;
}

.primary-btn:hover span {
  color: #1755f5;
}

.primary-btn:hover svg path {
  fill: #fff;
}

.primary-btn:hover svg {
  rotate: -45deg;
}

.primary-btn.call_btn_main:hover svg {
  rotate: 40deg;
}

/* .rating-container {
  width: 34rem;
} */

.call-button:hover {
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 2px;
}

.xpert-mri .header-content h3 {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.03rem;
}
.xpert-mri {
  background-color: var(--text);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: -15rem 35px;
}
.schedule-button p {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.01rem;
}
.schedule-button svg.schedule-svg path {
  fill: #1755f5;
}
.cards-div .cards {
  position: relative;
  border-radius: 1.25rem;
  box-shadow: 0 0 0px 2px transparent;
  background: linear-gradient(
    180deg,
    rgba(207, 207, 207, 0) -59.02%,
    rgba(21, 21, 21, 0.53) 130.29%
  );
  backdrop-filter: blur(20px);
  transition: 0.5s ease;
}
.cards-div .cards img {
  z-index: 5;
}
.cards-div .cards:hover {
  background: linear-gradient(
    180deg,
    rgba(207, 207, 207, 0) -100.02%,
    #1a73b4 400.29%
  );
  box-shadow: 0 0 0px 2px #c2c2c288;
}
.cards-div .cards h4 {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.02rem;
}
.cards-div .cards p {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.01rem;
}
.expertMriSwiper .slider-header h3 {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03rem;
}
.swiper-slide .slide-cards h4 {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.02rem;
}
.swiper-slide .slide-cards h5 {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.015rem;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 1.25rem;
}

.swiper-pagination-bullet-active {
  background-color: #388dca;
}

.slider-btn svg.prev {
  transform: rotate(180deg);
}
.slider-btn {
  background: #edf2ff;
  transition: all 0.3s ease;
}
.slider-btn:hover,
.slider-btn:hover svg path {
  background-color: #1755f5;
  fill: #fff;
}

.fw-left{
  margin-left: calc((100vw - 1536px) / 2);
  padding-left: 20px;
}

.counter-grid {
  gap: 16rem;
}

.expertMriSwiper .slide-cards{
  min-height: 300px;
}

.call-us-section .call-content-header h3 {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03rem;
}
.call-content-header p {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.01rem;
}
.social-icon-div h5 {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.015rem;
}
.social-icon-link {
  transition: 0.3s ease;
}
.social-icon-link:hover,
.social-icon-link:hover svg path {
  fill: #fff;
  background-color: #1755f5;
}
.call-us-marquee h4 {
  font-family: "Plus Jakarta Sans";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  color: #2e2e2e;
  letter-spacing: 0.02rem;
}
.call-us-marquee .marquee-div {
  display: flex;
  width: fit-content;
  flex-shrink: 0;
  gap: 4.3rem;
  justify-content: space-between;
  animation: marqueeAnimation 130s linear infinite;
}
.marquee-div .marquee {
  flex-shrink: 0;
  position: relative;
  width: auto;
}

.marquee-div .marquee h4{
  font-size: 1.5rem !important;
  line-height: 1.5 !important;
  color: var(--darkText) !important;
}

.call-us-marquee .marquee-div:nth-child(2),
.call-us-marquee .marquee-div:nth-child(3),
.call-us-marquee .marquee-div:nth-child(4) {
  margin-left: 4rem;
}
.marquee .marquee-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--text);
  transition: 0.3s ease;
}
.marquee .marquee-link:hover::before {
  width: 100%;
}
@keyframes marqueeAnimation {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-3000px);
  }
}

/* responsive CSS */

@media only screen and (max-width: 1536px) {
  .counter-grid {
    gap: 3rem;
  }

  .right-block {
    width: 100%;
    margin-left: auto;
  }

  .right-content {
    max-width: 24rem;
  }

  .left-heading {
    font-size: 7rem;
  }

  .middle-content-image {
    margin-left: 0;
  }

  .xpert-mri {
    background-position: -11rem 10rem;
    background-size: 113rem 51rem;
  }

  .card-title {
    max-width: 100%;
  }
  /* .rating-container {
    width: 31rem;
  } */
}

@media only screen and (min-width: 1440px) {
  .counter-grid {
    gap: 6rem;
  }
  .rating-container {
    width: 80%;
  }
}

@media only screen and (max-width: 1440px) {
  .fw-left {
    margin-left: calc((100vw - 1280px) / 2);
  }
  .plus-number {
    font-size: 6rem;
  }
  
.card-box {
  width: 37rem;
  transition: width 0.5s;
}

  .right-block {
    width: 100%;
    margin-left: auto;
  }

  .right-block-content {
    font-size: 3.5rem;
  }

  .left-heading {
    font-size: 6rem;
  }

  .card-box.hover-active {
    width: 56rem;
  }
  .rating-container {
    width: 80%;
  }
}

@media only screen and (max-width: 1280px) {
  .fw-left{
    margin-left: 0 !important;
  }
  .right-block {
    margin-left: auto;
  }

  .card-box.hover-active {
    width: 54rem;
  }

  .xpert-mri {
    background-position: center center;
  }

  .card-box {
    width: 100% !important;
    transition: width 0.5s;
  }

  .para-text {
    max-width: 80%;
  }
}

@media only screen and (max-width: 1024px) {
  .right-block {
    font-size: 3.5rem;
    width: 100%;
    margin-left: auto;
  }

  .counter-grid {
    gap: 2rem;
  }

  

  .card-box:hover {
    width: 100%;
    cursor: pointer;
  }

  .card-box.hover-active {
    width: 100%;
  }

  .middle-content-image {
    margin-left: 0px;
  }

  .right-content {
    max-width: 100%;
  }

  .right-content p {
    max-width: 80%;
  }

  .custom-line-height {
    line-height: 120% !important;
  }

  .left-heading {
    font-size: 8rem;
  }

  .plus-number {
    font-size: 6rem;
  }

  h2 {
    font-size: 2.8rem;
  }
  h3 {
    font-size: 2.5rem;
  }
  .logo-img {
    width: 12rem;
  }
  .rating-container {
    width: 80%;
  }
}

@media screen and (max-width: 1023px) {
  .cards-div .cards,
  .header-content {
    align-self: center;
  }
  .xpert-mri .cards-div {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  .xpert-mri {
    background-position: -26rem 11rem;
    background-size: 105rem 75rem;
  }
}

@media only screen and (max-width: 980px) {
  .h_0{
    font-size: 6rem !important;
  }
  .h_1{
    font-size: 3.6rem !important;
  }

  h2,.h2{
    font-size: 3rem !important;
  }
  h3,.h3{
    font-size: 2.5rem !important;
  }
  h4,.h4{
    font-size: 1.6rem !important;
  }

  .cards-div .cards {
    width: 100%;
  }
  .expertMriSwiper .slide-cards{
    min-height: 260px;
  }
  .card-content p {
    max-width: 36rem;
  }
  .plus-number {
    font-size: 4rem;
  }
  .hero-mask{
    height: 600px !important;
    width: 100% !important;
    mask-size: 100% 100% !important;
    background-size: cover;
  }
}

@media only screen and (min-width: 800px) {
  .middle-content-image {
    width: 700px;
  }
}

@media only screen and (max-width: 800px) {
  /* .rating-container {
    width: 20rem;
  } */

  .plus-number {
    font-size: 4rem;
  }
}

@media (min-width: 768px) {
  .menu-footer-menu-container #menu-footer-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
}

@media only screen and (max-width: 768px) {
  .hero-mask{
    height: 450px !important;
    max-width: 540px;
    margin: auto;
  }
  .card-content p {
    max-width: 32rem;
  }

  .xpert-mri .cards-div {
    flex-direction: column;
  }
  .cards-div .cards {
    width: 100%;
  }
  .xpert-mri {
    background-position: -31rem 12rem;
    background-size: 110rem 62rem;
  }
  /* .rating-container {
    max-width: 40rem;
  } */

  .middle-content-image {
    width: 500px;
  }

  .border-inner-circle {
    width: 500px;
    height: 500px;
  }

  .circle-grow span {
    width: 500px;
    height: 500px;
  }
  .circle-grow span {
    left: 0%;
  }
  
  .right-block-content{
    font-size: 3rem;
  }
  
}

@media only screen and (max-width: 767px) {
  p,a{
    font-size: 0.825rem !important;
  }
  .h_0{
    font-size: 6rem !important;
  }

  h2,.h2{
    font-size: 2.6rem !important;
  }
  h3,.h3{
    font-size: 2rem !important;
  }
  h4,.h4{
    font-size: 1.25rem !important;
  }
  .hero-mask{
    height: 420px !important;
    background-position: center !important;
  }
  .cards-div .cards {
    width: 80%;
  }

  .accordion .content {
    font-size: 14px;
  }
  .accordion .acc-container.active .content::-webkit-scrollbar {
    width: 10px;
  }
  .accordion .acc-container.active .content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
  }
  .accordion .acc-container.active .content::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 10px;
  }
  .accordion .acc-container.active .content::-webkit-scrollbar-thumb:hover {
    background: #3f3f4650;
  }
  .marquee img {
    height: 80px;
  }
  .accordion .label {
    padding: 24px 0;
  }
}

@media only screen and (max-width: 640px) {
  .hero-section {
    overflow-x: hidden;
    width: 100%;
  }

  .call-us-marquee h4 {
    font-size: 1.5rem;
  }
  .call-us-marquee .marquee-div {
    gap: 1.25rem;
  }
  .call-button {
    font-size: 1rem;
  }
  .rating-container svg {
    height: 1rem;
    width: 1rem;
  }
  .xpert-mri {
    background-position: -31rem 12rem;
    background-size: 105rem 61rem;
  }
  .swiper-slide .slide-cards h5 {
    max-width: 30rem;
  }
  .rating-container {
    width: 90%;
  }

  .left-heading {
    font-size: 5.875rem;
  }

  .customerReview .swiper-button-prev {
    display: none;
  }
  .customerReview .swiper-button-next {
    display: none;
  }
  .works-content-box p {
    max-width: 30rem;
  }
  .button {
    width: auto;
    font-size: 14px;
  }
  .cards-div .cards {
    width: 90%;
  }
}

@media only screen and (max-width: 540px) {
  .call-us-marquee h4 {
    font-size: 1rem;
  }

  .para-text {
    max-width: 50%;
  }

  .card-content p {
    max-width: 24rem;
  }

  .left-heading {
    font-size: 4.875rem;
  }

  .right-content p {
    max-width: 100%;
  }

  .logo-img {
    width: 10rem;
  }
  .works-content-box p {
    max-width: 25rem;
  }
  .right-block-content {
    font-size: 2.5rem;
  }
  .plus-number {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 480px) {
  .cards-div .cards {
    width: 100%;
  }

  .border-inner-circle {
    width: 400px;
    height: 400px;
  }

  .circle-grow span {
    width: 400px;
    height: 400px;
  }
  .middle-content-image {
    width: auto;
  }

  .left-heading {
    font-size: 3.875rem;
  }

  .middle-content-image img {
  width: 100%;
  height: auto;
  max-width: 400px;
  object-fit: contain;
  }
  .works-content-box h3 {
    max-width: 28rem;
  }
  .xpert-mri {
    background-position: -38rem 12rem;
    background-size: 105rem 61rem;
  }
}

@media only screen and (max-width: 425px) {
  .hero-mask{
    height: 340px !important;
  }
  .sticky-nav .call-div{
    display: none;
  }
  .para-text {
    max-width: 60%;
  }

  .right-block-content {
    font-size: 2.75rem;
  }

  .card-padding {
    padding-inline: 1.5rem !important;
  }

  .expertMriSwiper .slider-header h3 {
    max-width: 10rem;
  }
  .slider-header {
    margin-bottom: 2rem;
  }
  .xpert-mri {
    background-position: -13rem 23rem;
    background-size: 64rem 46rem;
  }
  .swiper-slide .slide-cards h5 {
    max-width: 20rem;
  }
  .rating-container {
    max-width: 20rem;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.1;
  }
  h3 {
    font-size: 1.5rem;
  }
  .accordion .acc-container {
    position: relative;
    margin: 10px 0px 10px 0px;
  }
  .works-content-box p {
    max-width: 20rem;
  }
  .works-content-box h3 {
    max-width: 22rem;
  }

  .border-inner-circle {
    width: 300px;
    height: 300px;
  }
  .circle-grow span {
    width: 250px;
    height: 250px;
    left: 8%;
    top: 20%;
  }
}

@media screen and (max-width: 375px) {
  .right-block-content {
    font-size: 2rem;
  }

  .xpert-mri {
    background-position: -8rem 26rem;
    background-size: 39rem 45rem;
  }

  .left-heading {
    font-size: 3.75rem;
  }
  .works-content-box p {
    max-width: 18rem;
  }
  .works-content-box h3 {
    max-width: 19rem;
  }
}

/* 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: 0.5s ease;
  background-color: #fff !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_required_legend {
  display: none !important;
}

#schedule-modal .ginput_container {
  border: 1px solid #2e2e2e;
  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;
}

#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;
}

#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: 150px;
}

#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) 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: #fff !important;
}

#schedule-modal .close_modal {
  height: 44px;
  width: 44px;
  padding: 7px;
  background-color: #edf2ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#schedule-modal h2 {
  font-size: 48px !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 .content svg {
  width: 100%;
  height: 100%;
  max-height: 20px;
}

#schedule-modal .content svg 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: 0.3s ease-in-out;
}
#schedule-modal .content .social-icon-link:hover {
  transform: scale(0.9);
}
#schedule-modal .content .social-icon-link {
  background-color: #fff !important;
}

#schedule-modal .content .social-icon-link:hover {
  background-color: #1755f5 !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:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 10px;
  top: calc(50% - 20px);
  background-image: url("./assets/images/svg/arrow_main.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  background-color: #fff;
  border-radius: 100%;
  pointer-events: none !important;
  transition: 0.3s ease;
  padding: 5px;
  z-index: 70;
}

#schedule-modal .gform_footer:hover:before {
  background-color: #1755f5;
  background-image: url("./assets/images/svg/arrow_main_white.svg");
}

#schedule-modal input[type="submit"] {
  background-color: #1755f5 !important;
  color: #fff !important;
  min-width: 0 !important;
  padding: 10px 60px 10px 30px;
  margin: 0;
  height: 58px;
  cursor: pointer;
}

#schedule-modal input[type="submit"]:hover {
  background-color: #fff !important;
  color: #1755f5 !important;
}

#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) {
  #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;
  }
}
