@import url("https://fonts.googleapis.com/css2?family=Tenor+Sans&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

:root {
  --body-bg: #fdfaf7;
  --primary-color: #33333a;
  --body-text-color: #33333a;
  --default-button: #2563eb;
  --default-button-text: #fff;
  --primary-button: #ea580b;
  --primary-button-border: rgba(255, 255, 255, 0.6);
  --secondary-button: #fff;
  --default-gradient: linear-gradient(180deg, #fff0d9 -20%, #deddff 100%);
  --default-gradient-horizontal: linear-gradient(
    90deg,
    #fff0d9 -20%,
    #deddff 100%
  );
  --accent-color: #fde68a;
  --color-border: #d4d4d8;
  --bg-blue: #bae6fd;
  --hover-card-color: #fff7ef;
  --tag-color: #a7f3d0;
  --pagination-color: #f9eddf;
  --body-color: #fdfaf7;
  --quad-hover-color: #f8f8f8;
  --badge: #138296;
}

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

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: clip;
  font-family: "Lato", sans-serif;
  color: var(--body-text-color);
  background-color: var(--body-bg);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}

.h0 {
  font-size: 64px;
}

.h0 sup {
  font-size: 28px;
}

h2,
.h2 {
  font-size: 48px;
}

h3,
.h3 {
  font-size: 42px;
}

h4,
.h4 {
  font-size: 32px;
}

h5,
.h5 {
  font-size: 18px;
}

p {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

a {
  font-weight: 500;
  text-decoration: none;
  color: var(--body-text-color);
}

.badge {
  background-color: var(--badge);
  border-radius: 34px;
  padding: 5px 14px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180% !important;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}
.section-gap {
  margin-bottom: 80px;
}

.button {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  width: fit-content;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.button span {
  transition: 0.3s ease-in-out;
  display: block;
}

.button span:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-button) !important;
}

.button span:nth-child(1) {
  color: var(--default-button-text) !important;
}

.button:hover span:nth-child(1) {
  transform: translateY(-100px);
}

.button:hover span:nth-child(2) {
  transform: translateY(0);
}

select::-ms-expand {
  display: none !important;
}

select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  text-indent: 1px;
  text-overflow: "";
  background-size: 16px !important;
  background-position: calc(100% - 10px) center !important;
  background-repeat: no-repeat !important;
}

.link_btn {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.default-btn {
  background-color: var(--default-button);
  padding: 14px 30px;
  border-radius: 4px;
  border: 2px solid var(--default-button);
  color: var(--default-button-text) !important;
}

.primary-btn {
  background-color: var(--primary-button);
  border: 2px solid var(--primary-button-border);
  padding: 14px 30px;
  border-radius: 4px;
  min-height: 50px;
  color: var(--default-button-text) !important;
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid var(--secondary-button);
  padding: 14px 30px;
  border-radius: 4px;
  min-height: 50px;
  color: var(--secondary-button) !important;
}

.secondary-btn span:nth-child(1),
.secondary-btn span:nth-child(2) {
  color: var(--secondary-button) !important;
}

.primary-btn:hover {
  background-color: var(--default-button-text);
}

.primary-btn span:nth-child(1) {
  color: var(--default-button-text) !important;
}
.primary-btn span:nth-child(2) {
  color: var(--primary-button) !important;
}

.default-btn:hover {
  background-color: transparent !important;
  border: 2px solid var(--default-button);
  color: var(--default-button) !important;
}

.button-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.icon-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
}

.icon-group span {
  max-width: 200px;
  width: fit-content;
}

.icon-group span h4 {
  font-size: 26px !important;
}

.highlight_mark {
  position: relative;
}

.highlight_mark::before {
  display: none;
  content: "";
  position: absolute;
  width: 180px;
  height: 60px;
  left: -20px;
  background-image: url("/assets/images/icon_highlight.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* Swiper buttons */

.swiper-button-prev,
.swiper-button-next {
  flex-shrink: 0;
  width: fit-content !important;
  margin: 0 !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 44px !important;
  height: 44px !important;
  padding: 12px;
  aspect-ratio: 1;
  border-radius: 100%;
  border: 1px solid #fff;
  flex-shrink: 0;
  transition: 0.5s ease;
}

.swiper-button-prev:hover svg,
.swiper-button-next:hover svg {
  background-color: #fff;
}

.swiper-button-prev:hover svg path,
.swiper-button-next:hover svg path {
  stroke: var(--body-text-color);
}

.swiper-button-prev svg {
  transform: rotate(180deg);
}

/* Header */

.logo img {
  height: fit-content;
  width: 100%;
}

header {
  padding-top: 20px;
  margin-bottom: 40px;
}

.header-right {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: nowrap;
}

.header-right h4 {
  padding-top: 6px;
  line-height: 1 !important;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

.header_inner.header_form {
  justify-content: center !important;
}

.header_inner .link_btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 3rem;
}
nav li a {
  padding: 8px 10px;
  line-height: 1.7;
  border-radius: 4px;
}

header .phone_btn {
  display: none;
}

.hamburger_icon {
  display: none;
  height: 20px;
  width: 40px;
  position: relative;
  background-color: transparent;
  border: none;
  z-index: 60;
}

.hamburger_icon span {
  height: 3px;
  border-radius: 20px;
  background-color: var(--body-text-color);
  position: absolute;
  right: 0;
}

.hamburger_icon span:nth-child(1),
.hamburger_icon span:nth-child(3) {
  width: 26px;
}

.hamburger_icon span:nth-child(1) {
  top: 0;
}

.hamburger_icon span:nth-child(2) {
  width: 21px;
  top: 8px;
}

.hamburger_icon span:nth-child(3) {
  top: 16px;
}

header.hamburger_active .hamburger_icon span:nth-child(1) {
  transform: rotate(45deg);
}
header.hamburger_active .hamburger_icon span:nth-child(2) {
  transform: translateX(100%);
  opacity: 0;
}
header.hamburger_active .hamburger_icon span:nth-child(3) {
  transform: rotate(-45deg);
  top: 0;
}

/* Hero Section */

.hero_inner {
  background: linear-gradient(285deg, #253d78 0%, #4160a8 100%);
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: 40px;
}

.hero_inner .hero_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

.hero_inner .hero_grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 60px;
  z-index: 20;
}

.hero_inner .hero_grid .hero_img {
  grid-column: span 5 / span 5;
}

/* .heroSwiper .swiper-horizontal,
.locationSwiper .swiper-horizontal{
    border-radius: 16px;
} */

.swiper-slide {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.swiper-slide-active {
  opacity: 1;
}

.right-column .swiper-horizontal {
  border-radius: 0.6rem;
}

.hero_img .swiper-horizontal {
  border-radius: 16px;
}

.hero_inner .hero_grid .hero_img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 16px;
  overflow: hidden;
}

.hero_inner .hero_grid .hero_content {
  grid-column: span 7 / span 7;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.hero_inner .hero_grid .hero_content h2 .h4 {
  display: block;
}

.hero_content * {
  color: #fff;
}
.hero_content .default-btn {
  display: none;
}
.hero_content .icon-group {
  margin-top: 40px;
}

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

/* Tech Section */

.tech_section {
  margin: 100px 0;
}

.tech_section .tech_inner {
  padding: 0 140px;
}

.tech_section h2 {
  width: 100%;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.tech_grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.tech_grid .tech_card {
  grid-column: span 6 / span 6;
  border-radius: 16px;
  overflow: hidden;
  padding: 20px 40px 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech_grid .tech_card > img {
  width: 100%;
  height: 100%;
  max-height: 270px;
  object-fit: contain;
}
.tech_grid .tech_card.tech_lg > img {
  max-height: 450px;
}
.tech_grid .tech_card.tech_md {
  max-height: 350px;
}
.tech_grid .tech_card.card_1 {
  background-color: #a7f3d0;
}
.tech_grid .tech_card.card_2 {
  background-color: #bae6fd;
}
.tech_grid .tech_card.card_3 {
  background-color: #fde68a;
}

.tech_card .hover_box {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 60%;
  width: fit-content;
}

.tech_card.card_3 .hover_box {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 75%;
  width: fit-content;
}

.tech_card .hover_box .hover_inner {
  position: relative;
  padding: 22px 24px;
  padding-bottom: 0px;
  height: 100%;
  border-top-right-radius: 16px;
  background-color: var(--body-bg);
  transition: 0.5s ease-in-out;
}

.tech_card .hover_box .hover_inner p {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}

.tech_card .hover_box .hover_inner p {
  max-width: 320px;
  margin-top: 1rem;
}

.tech_card .hover_box:hover .hover_inner p {
  max-height: 400px;
  margin-top: 1rem;
}

.tech_card .hover_box:hover .hover_inner h5 svg {
  transform: rotate(90deg);
  background: var(--body-text-color);
  border-radius: 100%;
}

.tech_card .hover_box:hover .hover_inner h5 svg path {
  stroke: var(--default-button-text);
}

.tech_card .hover_box .hover_inner:after,
.tech_card .hover_box .hover_inner:before {
  content: "";
  aspect-ratio: 1;
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: radial-gradient(
    circle at 100% 100%,
    transparent 16px,
    var(--body-bg) 16px
  );
  transform: rotate(-90deg);
}

.tech_card .hover_box .hover_inner h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: fit-content;
}

.tech_card .hover_box .hover_inner:before {
  left: 0;
  bottom: 100%;
}
.tech_card .hover_box .hover_inner:after {
  left: 100%;
  bottom: 0;
}

.tech_card .hover_box .hover_inner svg {
  transform: rotate(0deg);
  width: 24px;
  height: 24px;
  border-radius: 100%;
  flex-shrink: 0;
}

.tech_grid .tech_lg {
  grid-row: span 2 / span 2;
}

/* Selfpay Section */

.selfpay_section {
  margin-bottom: -310px;
  position: relative;
  z-index: 20;
}

.card_lg {
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.gradient_box {
  padding: 10px 20px;
  background: var(--default-gradient-horizontal);
  text-align: center;
}

.selfpay_grid {
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 50px;
}

.selfpay_grid .selfpay_left {
  grid-column: span 4 / span 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  gap: 24px;
}

.selfpay_grid .selfpay_left button {
  margin-top: 40px;
}

.selfpay_grid .selfpay_right {
  grid-column: span 8 / span 8;
  display: flex;
  align-items: center;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.icon-grid li {
  padding: 60px 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.icon-grid li:nth-child(odd) {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.icon-grid li:nth-child(1),
.icon-grid li:nth-child(2) {
  padding-top: 60px !important;
}

.icon-grid li:nth-last-child(1),
.icon-grid li:nth-last-child(2) {
  border-bottom: 0 !important;
}

.selfpay_feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.selfpay_feature:hover {
  background: var(--quad-hover-color);
  cursor: pointer;
}

.selfpay_feature img {
  width: 70px;
  height: 70px;
}

/* Review Container */

.review_container {
  background-color: var(--primary-color);
  padding-top: 500px;
  position: relative;
  overflow: hidden;
}

.review_container * {
  color: #fff;
}

.review_container svg path {
  stroke: #fff;
}

.network_section {
  position: relative;
  margin-bottom: 100px;
}
.network_section .text-content {
  margin-bottom: 40px;
}
.network_grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.network_grid .network_item {
  grid-column: span 6 / span 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 640px;
  gap: 24px;
}

.network_vector {
  position: absolute;
  left: -10%;
  bottom: 0;
  height: 800px;
  width: 110%;
  pointer-events: none;
}

.network_img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 20;
}

.network_left h2 {
  max-width: 36rem;
}

/* Google Rating */

.google_rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 5px;
}

.star {
  width: 17px;
  height: 17px;
  display: inline-block;
  position: relative;
}

.star svg {
  width: 100%;
  height: 100%;
}

.star svg path {
  fill: white;
}

.star svg.gold {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
}

.star svg.gold path {
  fill: #f6b704;
  stroke: #f6b704;
}

.testimonial h3 {
  max-width: 50%;
  margin-top: 24px;
}

.testimonialSwiper {
  margin-top: -60px;
  padding-top: 100px !important;
}

.testimonialSwiper .swiper-slide {
  opacity: 0.2;
  transition: 0.7s ease;
}

.testimonialSwiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.card {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card * {
  color: var(--body-text-color);
}

.basic_rating .rating {
  display: none;
}

.testimonialSwiper .swiper-button-next {
  top: 0 !important;
  right: 0 !important;
}

.testimonialSwiper .swiper-button-prev {
  top: 0 !important;
  right: 64px !important;
  left: auto !important;
}

/* Diagnosis Section */

.diagnosis_section {
  position: relative;
  margin-top: 100px;
}

.diagnosis_grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
}

.diagnosis_grid .item {
  grid-column: span 6 / span 6;
}

.diagnosis_right {
  height: 650px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.diagnosis_left {
  display: flex;
  align-items: flex-end;
  justify-content: end;
}

.diagnosis_right h2 {
  max-width: 32rem;
}

.diagnosis_vector {
  left: auto;
  right: 0;
  bottom: 0;
  width: fit-content;
  height: 700px;
}

.diagnosis_image {
  width: 100%;
  max-width: 740px;
  height: fit-content;
  object-fit: contain;
  z-index: 20;
}

.diagnosis-vector {
  height: 700px;
  bottom: 0px;
  left: 10%;
}
/* Schedule Modal */

textarea {
  max-height: 240px !important;
  min-height: 80px !important;
}

#schedule_modal {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
}

#schedule_modal.active {
  opacity: 1;
  visibility: visible;
}

#schedule_modal .modal_inner,
.schedule_form {
  width: 100%;
  border-radius: 32px;
  background-color: #fff;
  padding: 60px 80px;
  height: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.schedule_form .gfield {
  grid-column: span 6 / span 6 !important;
}

.schedule_form .gfield.gfield_large {
  grid-column: span 12 / span 12 !important;
}

.schedule_form .gform_title {
  font-size: 18px;
  width: fit-content;
  background-color: var(--accent-color);
  margin: 0 auto 20px;
  padding: 8px 20px;
  border-radius: 48px;
}

.schedule_form .gform_description {
  line-height: 1.4;
  text-align: center;
  max-width: 540px;
  font-size: 32px;
  font-family: "Tenor Sans", serif;
  display: block;
  margin: auto;
}

.schedule_form .heading-top p {
  max-width: 640px;
  margin: 8px auto;
  text-align: center;
}

.schedule_form .heading-top h4 {
  width: fit-content;
  margin: auto;
}

.schedule_form .heading-top h4 a {
  color: var(--default-button) !important;
}

.schedule_form input[type="submit"] {
  height: 50px !important;
  padding: 8px 50px !important;
  border: 2px solid transparent !important;
  border-radius: 4px !important;
  margin: auto !important;
  background-color: var(--default-button) !important;
  color: var(--default-button-text) !important;
  transition: 0.5s ease !important;
}

.schedule_form input[type="submit"]:hover {
  color: var(--default-button) !important;
  background-color: transparent !important;
  border: 2px solid var(--default-button) !important;
}

.schedule_form .gform_required_legend {
  display: none;
}

#schedule_modal .modal_inner .close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 20;
  cursor: pointer;
}

#schedule_modal .gform_wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  position: relative;
}

#schedule_modal .gform_wrapper::-webkit-scrollbar {
  width: 5px;
}

#schedule_modal .gform_wrapper::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
}

.schedule_radios .gfield_radio {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px !important;
}
.schedule_radios h4 {
  color: var(--default-button) !important;
}
.schedule_radios > legend {
  font-size: 32px !important;
  font-family: "Tenor Sans", serif !important;
  line-height: 1.4 !important;
}
.schedule_radios > .gfield_description {
  font-size: 18px !important;
}
.schedule_radios .gchoice {
  position: relative;
  border-radius: 4px;
  background-color: #fff;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 11px 26px 0px rgba(151, 202, 228, 0.22);
  gap: 8px;
  padding: 20px 40px;
  cursor: pointer;
  transition: 0.5s ease;
}

.schedule_radios .gchoice label {
  padding-left: 34px;
  position: relative;
}

.schedule_radios .gchoice label:before {
  width: 24px;
  height: 24px;
  border: 2px solid #575757;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  background-image: none;
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s ease;
}

.schedule_radios .gchoice:has(input:checked) label::before {
  background-image: url("../images/tick.svg");
  border: 2px solid #fff;
  filter: brightness(100);
}

.schedule_radios .gchoice:has(input:checked) {
  background-color: var(--default-button);
  box-shadow: none;
}

.schedule_radios .gchoice:has(input:checked) * {
  color: var(--default-button-text) !important;
}

.schedule_radios .gchoice input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0 !important;
  opacity: 0 !important;
  z-index: 20;
  cursor: pointer;
}

.gfield label {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.6 !important;
}

.gfield input,
.gfield select {
  height: 50px !important;
  display: flex !important;
  border-radius: 4px !important;
  align-items: center;
  border: 1px solid #a3a3a3 !important;
}

.gfield input:focus,
.gfield select:focus,
.gfield textarea:focus {
  box-shadow: 1px 1px 7px var(--default-button);
  outline: none !important;
}

.gfield textarea {
  border: 1px solid #a3a3a3 !important;
}

.gfield input::placeholder,
.gfield textarea::placeholder {
  opacity: 0.5 !important;
}

.ginput_container_date input {
  width: 100% !important;
}

/* faq section */
.faq-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 80px;
}

.faq-section .badge {
  margin: auto;
}

.accent-tag {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-span {
  background-color: var(--accent-color);
  padding: 5px 20px;
  border-radius: 48px;
}

.head-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-heading {
  text-align: center;
  max-width: 40rem;
}

.accordion-section {
  border-top: 1px solid var(--color-border);
  margin-top: 2rem;
  width: 80%;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  position: relative;
  z-index: 50;
}

.faq-icon {
  border: 1.5px solid var(--primary-color);
  border-radius: 100%;
  padding: 0.625rem 0.8125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  width: 44px;
  transition: 0.5s ease;
}

.faq-mask {
  height: fit-content;
  overflow-y: auto;
  max-height: 0;
  line-height: 1.8;
  border-radius: 4px;
  max-width: 720px;
  transition: 0.5s ease-in-out;
}

.faq-mask.active {
  padding-top: 10px;
  max-height: 250px;
  position: relative;
  z-index: 50;
}

.faq-mask::-webkit-scrollbar {
  width: 0;
}

.faq-header[aria-expanded="true"] .faq-icon {
  transform: rotate(-180deg);
  background: var(--primary-color);
}

.faq-header[aria-expanded="true"] .faq-icon svg path {
  stroke: var(--default-button-text);
}

.heading_section {
  position: relative;
  z-index: 50;
}

/* card section */
.background-glow-wrapper {
  position: relative;
  overflow-x: clip;
  background-color: var(--bg-blue);
  margin-top: 60px;
  padding-bottom: 300px;
  margin-bottom: 400px;
}

.background-glow-wrapper::before {
  display: block;
  content: "";
  height: 350px;
  width: 100%;
  background-color: var(--body-bg);
  position: absolute;
  left: 0;
  top: 0;
}

.background-glow-wrapper .bg-color {
  z-index: 20;
  position: relative;
}

.background-glow-wrapper .container {
  position: relative;
  z-index: 2;
}

.background-glow-circle {
  z-index: 1;
  background-color: var(--bg-blue);
  border-radius: 60%;
  height: 900px;
  width: 120vw;
  aspect-ratio: 1;
  filter: blur(4rem);
  position: absolute;
  left: -10%;
  bottom: 30%;
  transform: scaleY(0.5);
  transform-origin: bottom;
  transition: 0.7s ease;
}

.background-glow-circle.animate {
  transform: scaleY(1);
}

.card-head {
  margin-bottom: 24px;
}
.card-block {
  position: relative;
  width: 100%;
  max-height: 530px;
  overflow: hidden;
  border-radius: 2rem;
}

.payment-plan-card {
  background-color: #fff;
  transition: 0.5s ease;
  border-radius: 2rem;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  box-shadow: 0px 13px 36px 0px rgba(151, 202, 228, 0.8);
}

.card-figure {
  height: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.card-figure img:nth-child(1) {
  grid-column: span 7 / span 7;
}

.card-figure img:nth-child(2) {
  grid-column: span 5 / span 5;
}

.card-image {
  object-fit: contain;
  width: 100%;
  min-height: 250px;
  height: 100%;
}
.card-image:nth-child(2){
  object-fit: cover;
}

.plan-details {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem 1.5rem;
  height: 100%;
  width: 100%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  color: #fff;
  justify-content: end;
}

.plan-tag {
  border-radius: 3rem;
  padding: 0.2rem 1.25rem;
  width: fit-content;
  font-family: "Tenor Sans", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: var(--primary-color);
}

.payment-plan-card:nth-child(1) .plan-tag {
  background: var(--accent-color);
}

.payment-plan-card:nth-child(2) .plan-tag {
  background: var(--tag-color);
}

.payment-plan-card:nth-child(3) .plan-tag {
  background: var(--bg-blue);
}

.plan-price {
  color: var(--default-button-text);
}

.currency {
  position: relative;
  bottom: -8px;
}

li {
  list-style: none;
}

.card-info {
  margin: auto;
  width: 100%;
  height: 100%;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.card-info .default-btn {
  margin-top: 16px;
  width: fit-content;
}

.custom-text {
  max-width: 350px;
}

.custom-heading {
  font-family: "Tenor Sans", sans-serif;
}

.items-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 500px;
  gap: 16px 30px;
}

.list-item {
  display: flex;
  gap: 1rem;
}

.list-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.card-price {
  margin-top: 20px;
}

/* location section */

.bg-color {
  margin-top: 80px;
}

.location_div {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
}

.location_div .bg-inner {
  background: #33333a;
  height: 650px;
  width: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  padding:60px;
}
.location_div .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: rgba(47, 49, 60, 0.7);
}

.location_div .location-bg-img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* .location_div .grid-banner {
  
} */
.location_div .location-header {
  grid-column: span 7 / span 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  height: 100%;
  gap: 20px;
  z-index: 10;
}
.location_div .location-header h2 {
  color: var(--default-button-text);
  font-size: 42px;
  font-style: normal;
  line-height: 140%;
}
.location_div .location-header p {
  line-height: 180%;
  color: var(--default-button-text);
  max-width: 34.375rem;
}

.location_div .location-img {
  grid-column: span 5 / span 5;
  z-index: 10;
  height: 100%;
  display: flex;
}
.location_div .location-img img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.location_div .header-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location_div .header-text a{
  margin-top: 40px;
}

/* footer styling */

.page-footer {
  margin: auto;
  max-width: 900px;
}

.menu-footer-menu-container ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  width: fit-content;
  align-items: center;
}

.menu-footer-menu-container a,
.hover-link {
  position: relative;
}

.menu-footer-menu-container a::after,
.hover-link::after {
  display: block;
  content: "";
  height: 1px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: -4px;
  background-color: var(--body-text-color);
  transition: 0.5s ease;
}

.menu-footer-menu-container a:hover::after,
.hover-link:hover:after {
  width: 100%;
}

.footer-inner {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.footer-inner > div {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.brand-logo {
  height: 60px;
  width: 140px;
  object-fit: contain;
}

.social-media-block {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.social-media-block img {
  transition: 0.5s ease-in-out;
  filter: none;
}

.social-media-block img:hover {
  filter: brightness(0) saturate(100%) invert(29%) sepia(73%) saturate(2946%)
    hue-rotate(216deg) brightness(94%) contrast(95%);
}

.social-media-block a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  border-radius: 50%;
  overflow: hidden;
  width: 50px;
  height: 50px;
}
/* .social-media-block a:hover{
    background-color: #33333A;
} */
.social-media-block img {
  cursor: pointer;
  transition: 0.3s ease;
}
/* .social-media-block a:hover img{
    filter: invert(1) brightness(2);
} */
.footer-inner-menu {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.footer-inner-menu p {
  max-width: 20rem;
}

.menu-items-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 30px;
  width: fit-content;
  opacity: 0.8;
}

.menu-items-block li {
  cursor: pointer;
}
ul.menu-items-block li a {
  position: relative;
}
ul.menu-items-block li a::before {
  content: "";
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}
ul.menu-items-block li a:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}
nav li a {
  position: relative;
}
nav li a:before {
  content: "";
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}
nav li a:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}
footer button {
  display: flex;
  margin-left: auto;
}
.address-head h3 {
  font-size: 2rem;
}

footer {
  position: relative;
  margin-bottom: 0 !important;
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
}

footer .diagnosis_vector {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  transform: rotateY(0deg);
}

.page-main {
  margin-bottom: 60px;
}

.page-main .container {
  max-width: 1024px !important;
}

.page-main ul li {
  display: list-item;
  list-style: disc !important;
  line-height: 1.8 !important;
}

.page-main h2,
.page-main h3,
.page-main h4 {
  font-size: 28px !important;
  padding: 15px 0;
}

.page-main h2.page-title {
  font-size: 48px !important;
}

/* Thank You */

.thank_you_card {
  background-color: #fff;
  border-radius: 32px;
  overflow: hidden;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
}

.thank_you_card * {
  max-width: 600px;
  display: block;
  margin: auto;
}

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

/* 404 Page */

.page_404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.el_404 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 30px;
}

.el_404 span {
  font-family: "Tenor Sans", sans-serif;
  font-size: 300px !important;
  font-weight: 500 !important;
}

.el_404 img {
  height: 300px;
  width: fit-content;
}

.page_404 a {
  cursor: pointer;
  display: inline-block;
}

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

@media screen and (max-width: 1440px) {
  .container {
    padding: 0 20px;
  }

  /* Network */

  .diagnosis_vector {
    height: 650px;
  }

  .network_img,
  .diagnosis_image {
    position: absolute;
    top: 0;
    width: calc(50% - 40px);
    height: fit-content;
  }

  .network_img {
    right: 0;
  }
  .diagnosis_image {
    left: 0;
    top: auto;
    bottom: 0;
  }
  .diagnosis_section {
    margin-top: 100px;
  }
}

@media screen and (max-width: 1366px) {
  .tech_card .hover_box {
    width: fit-content;
    margin-right: 80px;
  }
  .diagnosis-vector {
    left: 0;
  }
}

@media screen and (max-width: 1280px) {
  .swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0px !important;
  }

  .left-column {
    margin-block: 50px;
  }

  .tech_section .tech_inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1200px) {
  nav ul {
    gap: 1rem;
  }
  .network_grid {
    display: flex;
    flex-direction: column;
  }
  .network_grid .network_left {
    height: fit-content;
  }
  .network_img {
    position: relative;
    width: fit-content;
    margin-left: auto;
    display: block;
    height: 600px;
    margin-top: 40px;
    margin-right: -20px;
  }
  .network_vector {
    display: none;
  }
  .diagnosis_right h2 {
    max-width: 100%;
  }
  .review_container {
    padding-top: 370px;
  }
  .plan-details {
    padding: 1rem 1.5rem;
  }

  .left-column {
    padding-right: 5rem;
  }

  .location_div .swiper-pagination {
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    row-gap: 1rem;
  }

  .card-block {
    max-height: 100%;
  }
  .swiper-slide img {
    height: auto;
  }

  /* Form Page */
  #schedule_modal .modal_inner,
  .schedule_form {
    padding: 40px 24px !important;
  }

  .diagnosis_right {
    height: 500px;
  }
  .schedule_radios .gchoice {
    padding: 20px;
  }
  .payment-plan-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    border-radius: 20px;
    max-width: 600px;
    margin: auto;
  }

  /* location page */
  .background-glow-wrapper {
    margin-bottom: 740px;
  }
  .location_div .bg-inner {
    max-width: 768px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
    max-height: 100%;
  }
  .location_div .location-header,
  .location_div .location-img {
    grid-column: span 12 / span 12;
  }
  .location_div .location-img {
    order: 1;
  }
  .location_div .location-header {
    order: 2;
    padding: 0 2rem 2rem;
  }

  .location_div .location-header{
    padding-left: 0 !important;
  }
  .location_div .location-img img {
    max-height: 600px;
    width: 100%;
    margin: 0 !important;
    object-fit: cover;
  }

}

@media screen and (min-width: 1024px) {
  .hero_content .responsive-btn {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .page-main ul {
    padding-left: 20px;
  }
}

@media screen and (max-width: 980px) {
  :root {
    --body-bg: #fff;
  }
  .faq-section {
    margin-top: 40px;
  }
  h4,
  .h4 {
    font-size: 18px;
  }
  .schedule_radios .gfield_radio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .header-right {
    display: none;
  }
  /* Nav Icon */

  .hamburger_icon {
    display: none;
  }
  header nav {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    visibility: hidden;
    padding: 40px 20px;
    background-color: var(--body-bg);
    z-index: 50;
    max-width: 320px;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
  }
  header nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  header .desktop-btn {
    display: none;
  }
  header .phone_btn {
    display: inline-block;
  }
  header.hamburger_active nav {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  /* Hero */

  .hero_inner .hero_grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .hero_inner .hero_grid .hero_img img {
    max-height: 400px;
    object-position: 20% center;
  }

  .hero_inner .hero_grid .hero_content {
    padding-right: 0;
  }
  .hero_inner {
    padding: 40px 20px;
    background: var(--default-gradient);
  }
  .hero_inner .hero_bg {
    display: none;
  }
  .hero_content * {
    color: var(--body-text-color);
  }
  .highlight_mark::before {
    display: inline-block;
  }
  .hero_content .primary-btn,
  .hero_content .secondary-btn {
    display: none;
  }
  .hero_content .default-btn {
    display: inline-block;
  }
  .tech_grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .tech_grid .tech_lg {
    order: 3;
  }
  .tech_grid .tech_card > img {
    max-height: 320px;
  }
  .tech_grid .tech_card {
    max-height: 400px !important;
    height: 400px !important;
  }

  /* Selfpay */

  .selfpay_grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .selfpay_grid .selfpay_left button {
    margin-top: 0;
  }
  .selfpay_left {
    padding: 0 !important;
  }

  /* Diagnosis */

  .diagnosis_section {
    margin-top: 40px;
  }
  .diagnosis_grid {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 20px;
  }
  .diagnosis_right {
    width: 100%;
    height: fit-content;
    padding-right: 0;
    padding-left: 0;
  }
  .diagnosis_image {
    position: relative;
    max-width: 100%;
    margin-left: -20px;
    max-height: 700px;
    width: fit-content;
  }
  .hero_inner {
    border-radius: 18px;
  }

  .schedule_radios .gchoice label:before {
    top: 4px;
  }

  footer {
    padding-top: 20px !important;
    padding-bottom: 40px !important;
  }

  /* 404 Page */

  .el_404 span {
    font-size: 200px !important;
  }

  .el_404 img {
    height: 200px;
  }
}

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

  .accordion-section {
    width: 100%;
  }

  .faq-header h3 {
    max-width: 540px;
  }
  .location_div .header-text {
    gap: 1rem;
  }
  .location_div .location-header {
    gap: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .tech_section {
    margin: 60px 0;
  }
  .logo img {
    width: 120px;
  }
  .payment-plan-card {
    border-radius: 1rem;
  }
  h2,
  .h2 {
    font-size: 18px;
    line-height: 1.5;
  }
  h3,
  .h3 {
    font-size: 22px;
    line-height: 1.7;
  }
  .address-block h3 {
    font-size: 18px !important;
  }
  .hero_content h2 .h4 {
    font-size: 18px;
  }
  .highlight_mark::before {
    width: 140px;
    height: 33px;
    left: -35px;
  }
  .tech_grid .tech_card > img {
    max-height: 320px;
  }
  .tech_grid .tech_card.tech_md {
    max-height: 320px !important;
    height: 320px !important;
  }
  .tech_grid .tech_card.tech_lg {
    max-height: 450px !important;
    height: 450px !important;
  }
  .hero_inner .hero_grid .hero_content {
    gap: 20px !important;
  }
  .hero_content .icon-group {
    gap: 10px !important;
    margin-top: 0 !important;
  }
  /* Selfpay */
  .card_lg {
    border-radius: 16px;
  }
  .gradient_box {
    padding: 10px;
  }
  .selfpay_grid {
    padding: 40px 20px;
  }
  .icon-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .icon-grid li:nth-child(1),
  .icon-grid li:nth-child(2) {
    padding-top: 0 !important;
  }
  .selfpay_feature {
    padding: 0 !important;
    border: none !important;
  }

  /* Network */

  .network_img {
    height: fit-content;
    width: 100%;
    margin: 0;
  }

  .background-glow-wrapper {
    margin-bottom: 800px;
  }

  .multicolumn-section {
    padding-bottom: 250px;
  }

  .card-info {
    margin: initial;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    padding: 10px;
  }

  /* Form Page */

  .schedule_form .gfield {
    grid-column: span 12 / span 12 !important;
  }
  .schedule_radios > legend,
  .schedule_form .gform_description,
  .schedule_heading h4 {
    font-size: 24px !important;
    line-height: 1.5 !important;
  }

  .schedule_form p {
    font-size: 16px !important;
  }

  .header_inner.header_form {
    justify-content: space-between !important;
  }

  .header_inner .link_btn {
    position: relative !important;
  }
  .network_grid .network_item {
    height: auto;
  }
  .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-inner * {
    margin-left: 0;
    justify-content: flex-start;
  }
  .thank_you_card {
    padding: 60px 20px;
  }
  .thank_you_card img {
    width: 60px;
    height: 60px;
  }
  .thank_you_card * {
    max-width: 100%;
  }

  /* 404 Page */

  .el_404 {
    gap: 20px;
  }

  .el_404 span {
    font-size: 150px !important;
  }

  .el_404 img {
    height: 150px;
  }
  .page_404 button {
    margin-top: 20px;
  }
  .location_div .bg-inner{
    padding: 40px 20px;
  }
}

@media screen and (max-width: 540px) {
  .hero_content .icon-group {
    flex-wrap: wrap;
  }
  .hero_inner .hero_grid .hero_img img {
    max-height: 300px;
  }
  .tech_card .hover_box {
    max-width: 100%;
  }
  .tech_card.card_3 .hover_box {
    max-width: 100%;
  }
  .schedule_radios .gfield_radio {
    display: flex !important;
    flex-direction: column;
  }
  .testimonial h3 {
    max-width: 100%;
  }
  .testimonialSwiper {
    padding-top: 0 !important;
    padding-bottom: 80px !important;
    margin-top: 40px;
  }
  .testimonialSwiper .swiper-button-next {
    bottom: 0;
    top: auto !important;
    right: calc(50% - 54px) !important;
  }
  .testimonialSwiper .swiper-button-prev {
    bottom: 0;
    top: auto !important;
    left: calc(50% - 54px) !important;
  }
  header nav {
    max-width: 100%;
  }
  .hero_content .icon-group img {
    height: 70px;
    width: 70px;
  }
  .tech_card .hover_box {
    margin-right: 40px;
  }
  .card {
    padding: 40px 20px;
  }
  .diagnosis_image {
    max-height: 400px;
  }

  .container {
    padding-inline: 20px;
  }

  .pagination-wrapper {
    margin-inline: 1.5rem;
  }

  .swiper-pagination-bullet {
    font-size: 14px;
  }

  .swiper-pagination {
    padding: 14px;
  }

  .pagination-wrapper {
    margin-inline: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-inner-menu {
    flex-direction: column;
    gap: 2rem;
  }
  .menu-items-block {
    gap: 1rem;
  }

  footer button {
    margin-left: inherit;
  }

  .card-figure {
    display: flex;
    flex-direction: column;
  }

  .card-figure img {
    max-height: 250px;
    object-fit: cover;
    object-position: center;
  }

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

  .background-glow-wrapper {
    margin-bottom: 600px;
  }
  .location_div .location-header h2 {
    font-size: 1.875rem;
  }
  .location_div .location-header p {
    font-size: 14px !important;
  }
  .location_div .header-text a{
    margin-top: 0 !important;
  }
  .location_div .location-header {
    padding: 0 1.5rem 1.5rem;
  }

  /* Form Page */

  .schedule_radios .gchoice label p {
    max-height: 0;
    height: 100%;
    overflow: hidden;
    transition: 0.5s ease;
  }

  .schedule_radios .gchoice input:checked ~ label p {
    max-height: 200px;
  }

  .schedule_radios .gchoice {
    padding: 20px 12px !important;
  }

  .schedule_form .gform_fields {
    row-gap: 20px !important;
  }
  .bg-color {
    margin-top: 60px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding-inline: 20px;
  }

  .swiper-pagination {
    padding: 10px;
  }

  .pagination-wrapper {
    margin-inline: 1.5rem;
  }
}

@media screen and (max-width: 420px) {
  .footer-inner {
    padding-top: 0 !important;
  }
  .location_div .swiper-pagination {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tech_grid .tech_card.tech_md {
    max-height: 380px !important;
    height: 380px !important;
  }
  .logo img {
    width: 98px;
  }
  .el_404 span {
    font-size: 120px !important;
  }

  .el_404 img {
    height: 120px;
  }
  .background-glow-wrapper {
    margin-bottom: 480px;
  }
  .location_div .location-header h2 {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 380px) {
  .default-btn {
    padding: 10px 12px;
  }
  .el_404 {
    gap: 10px;
  }
  .el_404 span {
    font-size: 100px !important;
  }

  .el_404 img {
    height: 100px;
  }
}
