@charset "UTF-8";
:root {
  --bs-primary: #429fff;
  --blue: #429fff;
  --dark-blue: #2d4159;
  --light-blue: #99ccff;
  --mid-blue: #55a9ff;
  --silver: #6A8CAF;
  --packages-men: #3874FF;
  --packages-women: #0DA0A5;
  --packages-heart: #E75555;
  --packages-gold: #B07F1C;
  --packages-silver: #6A8CAF;
  --green: #25da95;
  --text: #2D4159;
  --text-secondary: #55A9FF;
  --text-cta-primary: #006CDB;
  --text-cta-secondary: #4F719C;
  --text-highlight: #1A8AFF;
  --button-primary: #3E597A;
  --bs-gutter-x: 16px !important;
  --bs-gutter-y: 16px !important;
}

.fw-800 {
  font-weight: 800;
}

.fs-50 {
  font-size: 50px;
  line-height: 100%;
}

.white {
  color: white;
}

.packages-men {
  color: var(--packages-men);
}

.packages-women {
  color: var(--packages-women);
}

.packages-heart {
  color: var(--packages-heart);
}

.packages-gold {
  color: var(--packages-gold);
}

.packages-silver {
  color: var(--packages-silver);
}

.packages-silver,
.silver {
  color: var(--silver) !important;
}

.text-cta-primary {
  color: var(--text-cta-primary) !important;
}

.text-cta-secondary {
  color: var(--text-cta-secondary) !important;
}

.text-secondary {
  color: var(--text-secondary) !important;
}

.text-primary, .hero h1 span {
  color: var(--bs-primary) !important;
}

.text-highlight {
  color: var(--text-highlight) !important;
}

.text-light-blue {
  color: var(--light-blue) !important;
}

.border, [class*=doctify_carousel_widget_slide_item_content_], .white-bordered-box, .feature-card {
  border: 2px solid #eff5fb !important;
}

.border-radius {
  border-radius: 20px;
}

.button-primary {
  color: var(--button-primary);
}

.btn {
  border-radius: 24px;
  background-color: var(--button-primary);
  color: white;
  font-weight: 500;
  font-size: 18px;
  border: none;
  min-width: 180px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rounded, .white-bordered-box {
  border-radius: 20px !important;
}

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

.large {
  font-size: 22px !important;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  font-size: 18px;
  color: var(--text);
  cursor: default;
}

p {
  line-height: 163%;
  margin: 0;
}

a {
  color: var(--text-cta-primary);
}

h1 {
  font-size: 60px;
  line-height: 110%;
  letter-spacing: -2%;
  color: white;
  font-weight: 600;
}

h2 {
  font-size: 44px;
  line-height: 115%;
  letter-spacing: -2%;
  color: var(--button-primary);
  font-weight: 600;
}

h3 {
  font-size: 32px;
  line-height: 130%;
  letter-spacing: -2%;
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 16px;
}

h4, .accordion .accordion-header {
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 0%;
  font-weight: 600;
  color: var(--button-primary);
}

h5 {
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--dark-blue);
  margin: 0 0 8px;
}

nav ul li a.nav-link {
  font-size: 16px;
  line-height: 140%;
  font-weight: 500;
  color: var(--button-primary);
  text-decoration: none;
  padding: 8px 16px;
  display: block;
  transition: color 0.2s ease;
  background-color: transparent;
}
nav ul li a.nav-link:hover, nav ul li a.nav-link:focus {
  color: var(--green);
}
nav ul.dropdown-menu {
  border: none;
  border-radius: 0;
}
nav ul.dropdown-menu li a:hover, nav ul.dropdown-menu li a:focus {
  color: var(--green);
  background-color: transparent;
}

@media (max-width: 992px) {
  nav .navbar-toggler {
    z-index: 100;
    border: none;
  }
  nav .navbar-toggler i {
    font-size: 32px;
  }
  nav .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: none;
  }
  nav .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    content: "×";
    font-size: 36px;
    color: var(--button-primary);
  }
  nav .navbar-collapse {
    position: fixed;
    top: 0%;
    left: -50%;
    width: 200%;
    height: 100%;
    background-color: white;
  }
  nav .navbar-collapse .navbar-nav {
    width: 300px;
    position: absolute;
    left: calc(50% - 150px);
    top: 64px;
  }
  nav ul {
    display: block !important;
  }
  nav ul li a {
    line-height: 25px;
  }
  nav ul li a.nav-link {
    display: inline-block;
    padding: 0;
    color: var(--text-secondary);
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: var(--green);
  }
  nav ul li a.nav-link::after {
    display: none;
  }
  nav ul li a.dropdown-item {
    padding-top: 0;
    padding-bottom: 0;
  }
  nav ul li.nav-item {
    margin-top: 10px;
  }
  nav footer {
    gap: 0 !important;
  }
}
.hero {
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("images/landing-hero-mobile.jpg?v=1");
  background-position-y: -50px;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin: 32px 0 20px;
  color: white;
}
.hero .card {
  border: none;
  box-shadow: none;
  padding: 32px !important;
}
.hero .doctify-star {
  height: 12px;
  aspect-ratio: 1/1;
}
.hero .bi {
  font-size: 20px;
}
.hero .border-right {
  border-right: solid 1px rgba(153, 204, 255, 0.25);
}

.bg-identity {
  position: relative;
  overflow: hidden;
}
.bg-identity::before {
  display: none;
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 478px;
  height: 400px;
  background: url("images/brand-identity_usage-17.png") top right no-repeat;
  background-size: contain;
  z-index: 0;
}
.bg-identity > .row {
  position: relative;
  z-index: 1;
}

.section-2 {
  padding-top: 120px;
  padding-bottom: 60px;
}

.g-6 {
  --bs-gutter-x: 48px !important;
}

.g-7 {
  --bs-gutter-x: 96px !important;
}

.mt-36 {
  margin-top: 36px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

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

.mt-64 {
  margin-top: 64px;
}

.mb-64 {
  margin-bottom: 64px;
}

.p-32 {
  padding: 32px;
}

.py-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.py-96 {
  padding-bottom: 96px;
  padding-top: 96px;
}

.pt-96 {
  padding-top: 96px;
}

.pb-96 {
  padding-bottom: 96px;
}

.bg-white {
  background-color: white !important;
}

.bg-light {
  background-color: #f7fafd !important;
}

.feature-card {
  border-radius: 20px;
  background-color: #F7FAFD;
  padding: 32px;
  margin: 0 auto;
  text-align: center;
}
.feature-card i.bi {
  font-size: 40px;
  line-height: 40px;
  margin: 0;
}
.feature-card h4, .feature-card .accordion .accordion-header, .accordion .feature-card .accordion-header {
  margin: 0;
}

.quote-mark {
  color: #d4e9ff;
  font-size: 200px;
  line-height: 200px;
  position: absolute;
  top: -120px;
  left: 0px;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.quote {
  position: absolute;
  width: 600px;
  padding-left: 64px;
}
.quote .quotee-image {
  position: absolute;
  top: 0px;
  right: 0px;
  max-width: 500px;
}
.quote .bi {
  font-size: 24px;
}
.quote h3 {
  color: var(--button-primary);
}
.quote p {
  font-size: 22px;
  font-weight: 400;
}

p.quotee {
  margin-top: 48px;
  font-size: 16px;
  color: var(--text-cta-primary);
}

@media (max-width: 992px) {
  body.prostate-mri-scan .hero::before {
    background-image: url("images/prostate-mri-landing-hero-mobile.jpg?v=1");
  }
  body.brain-health .hero::before {
    background-image: url("images/brain-health-landing-hero-mobile.jpg?v=1");
  }
  .hero {
    height: initial;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero h1 .text-primary, .hero h1 span {
    color: white !important;
  }
  .hero .card {
    margin-top: 300px;
  }
  .hero::before {
    background-image: url("images/landing-hero-mobile.jpg?v=1");
  }
  .border-right {
    border: none !important;
  }
  .quote {
    position: relative;
  }
  .doc-quote .quote-mark {
    font-size: 136px;
    top: 20px;
    position: relative;
    line-height: 0px;
  }
  .doc-quote h3 {
    margin-top: 32px;
    margin-bottom: 150px;
    width: 50%;
  }
  .doc-quote .rounded, .doc-quote .white-bordered-box {
    position: absolute;
    top: 0px;
    right: 0px;
    max-height: 235px;
    max-width: 235px;
    float: right;
    aspect-ratio: 1;
  }
}
.icon-box i {
  font-size: 2rem;
}

.white-bordered-box {
  background-color: white;
  padding: 32px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.white-bordered-box img {
  max-width: 40px;
}

.answers .column {
  max-width: 340px;
  margin: 36px auto 0;
}
.answers .number {
  position: relative;
  z-index: 10;
  align-items: center;
  border-radius: 50%;
  display: flex;
  font-size: 44px;
  font-weight: 600;
  height: 70px;
  width: 70px;
  justify-content: center;
  line-height: 70px;
  margin: 0 auto 16px;
  text-align: center;
  background-color: white;
  color: #429fff;
  border: 3px solid var(--text-highlight);
  transition: linear all 300ms;
}
.answers .number.active {
  background-color: var(--text-highlight);
  color: white;
}
.answers .column-1,
.answers .column-2,
.answers .column-3 {
  position: relative;
  overflow: visible;
}
.answers .column-1:after,
.answers .column-2:after,
.answers .column-3:after {
  z-index: 1;
  position: absolute;
  top: 34px;
  width: 100%;
  height: 2px;
  background-color: var(--text-highlight);
}
.answers p {
  font-size: 16px;
}

@media (min-width: 991px) {
  body.brain-health .section-2 {
    padding-top: 200px;
  }
  body.brain-health .answers .col-lg-3 {
    width: 20%;
  }
}
img.circled {
  border-radius: 50% !important;
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .answers h2 {
    font-size: 34px;
    margin-bottom: 12px;
  }
  .quote {
    padding-left: 0;
  }
  .quote p.quotee {
    margin-top: 24px;
  }
  .quotee-circled {
    max-height: 200px;
    max-width: 200px;
    float: right;
    margin-bottom: 60px;
  }
}
@media (max-width: 500px) {
  .doc-quote {
    padding-top: 0;
  }
  .doc-quote .rounded, .doc-quote .white-bordered-box {
    position: initial;
    float: initial;
    max-width: initial;
    max-height: initial;
    width: 100%;
  }
  .doc-quote h3 {
    width: 100%;
    margin-bottom: 16px;
  }
  .doc-quote h3 br {
    display: none;
  }
}
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.pricing-table th {
  font-size: 18px;
  font-weight: 600;
  vertical-align: top;
}
.pricing-table td {
  font-size: 16px;
  font-weight: 400;
  vertical-align: center;
}
.pricing-table td.text-primary, .pricing-table td.text-success {
  color: #3e597a !important;
}
.pricing-table td, .pricing-table th {
  color: var(--button-primary);
  width: 12.5%;
  border: none;
  padding: 16px;
  text-align: center;
  line-height: 163%;
}
.pricing-table td:nth-child(1), .pricing-table th:nth-child(1) {
  width: 25%;
  text-align: left;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
.pricing-table td:last-child, .pricing-table th:last-child {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
.pricing-table tfoot th {
  padding-top: 32px;
}
.pricing-table .bi {
  position: relative;
}
.pricing-table .bi::before {
  position: relative;
  z-index: 2 !important;
  font-size: 22px;
  top: 2px;
}

.pricing-table .text-info,
.pricing-table .text-silver, .pricing-mobile .text-info,
.pricing-mobile .text-silver {
  color: #6a8caf !important;
}
.pricing-table .text-warning,
.pricing-table .text-gold, .pricing-mobile .text-warning,
.pricing-mobile .text-gold {
  color: #c2850a !important;
}
.pricing-table .text-dark, .pricing-mobile .text-dark {
  color: #3e597a !important;
}
.pricing-table .text-primary, .pricing-table .hero h1 span, .hero h1 .pricing-table span, .pricing-mobile .text-primary, .pricing-mobile .hero h1 span, .hero h1 .pricing-mobile span {
  color: #3e597a;
}
.pricing-table .text-primary .bi::after, .pricing-table .hero h1 span .bi::after, .hero h1 .pricing-table span .bi::after, .pricing-mobile .text-primary .bi::after, .pricing-mobile .hero h1 span .bi::after, .hero h1 .pricing-mobile span .bi::after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: -2.5px;
  width: 24px;
  height: 24px;
  border: 6px solid #3874FF;
  border-radius: 50px;
  z-index: 1;
}
.pricing-table .text-women, .pricing-mobile .text-women {
  color: #0DA0A5;
}
.pricing-table .text-women .bi, .pricing-mobile .text-women .bi {
  position: relative;
}
.pricing-table .text-women .bi::before, .pricing-mobile .text-women .bi::before {
  position: relative;
  z-index: 2 !important;
  font-size: 20px;
}
.pricing-table .text-women .bi::after, .pricing-mobile .text-women .bi::after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: -3px;
  width: 24px;
  height: 24px;
  border: 8px solid #0DA0A5;
  border-radius: 50px;
  z-index: 1;
}
.pricing-table .text-danger,
.pricing-table .red, .pricing-mobile .text-danger,
.pricing-mobile .red {
  color: var(--packages-heart) !important;
}

.pricing-table thead tr {
  border-bottom: 1px solid #dee2e6;
}

.pricing-table tbody tr:nth-of-type(odd) {
  background-color: #f7fafd;
}

.testimonial, .review {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.brain-section {
  background-color: var(--dark-blue);
  color: white;
  overflow: hidden;
  position: relative;
}
.brain-section .blurb {
  max-width: 300px;
  position: relative;
  z-index: 20;
}
.brain-section .blurb h3, .brain-section .blurb p {
  color: white;
}
.brain-section .blurb h3 {
  position: relative;
  margin-top: 30px;
}
.brain-section .blurb h3:before {
  position: absolute;
  width: 100%;
  content: "";
  height: 2px;
  top: -24px;
  right: 0px;
  background-color: var(--blue);
}
.brain-section .blurb h5 {
  color: var(--light-blue);
  margin-bottom: 16px;
}
.brain-section .brain-image {
  position: absolute;
  left: 27%;
  width: 50%;
  max-width: 667px;
}
.brain-section .brain-image img {
  aspect-ratio: 0.77;
  width: 100%;
}

@media (max-width: 991px) {
  .brain-section .brain-image {
    left: initial;
    right: 0;
    bottom: initial;
    top: 0;
    width: 50%;
    transform: scaleX(-1);
  }
}
.anatomy-section {
  background-color: var(--dark-blue);
  color: white;
  overflow: hidden;
  position: relative;
  min-height: 1270px;
}
.anatomy-section .info-container {
  display: none;
  margin-bottom: 32px;
}
.anatomy-section .info-container h4, .anatomy-section .info-container .accordion .accordion-header, .accordion .anatomy-section .info-container .accordion-header {
  color: var(--light-blue);
  margin-bottom: 16px;
}
.anatomy-section .info-container p {
  font-size: 16px;
  color: white;
}
.anatomy-section hr {
  border-color: var(--mid-blue);
  opacity: 1;
  margin: 16px 0 32px;
  width: 75%;
}
.anatomy-section .anatomy-image {
  position: absolute;
  left: calc(50% + 120px);
  transform: translateX(-50%);
  width: 300px;
}
.anatomy-section .anatomy-image img {
  width: 100%;
}
.anatomy-section .anatomy-image .pin {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: var(--green);
  background-color: yellow;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(66, 159, 255, 0.4);
  animation: pulse 1.5s infinite;
  z-index: 100;
  cursor: pointer;
}
.anatomy-section .anatomy-image .pin:hover {
  transform: scale(1.2);
}
.anatomy-section .anatomy-image .pin#brain {
  top: 2%;
  left: calc(50% - 12px);
}
.anatomy-section .anatomy-image .pin#blood {
  top: 34%;
  left: 20%;
}
.anatomy-section .anatomy-image .pin#liver {
  top: 32%;
  left: 40%;
}
.anatomy-section .anatomy-image .pin#mri {
  top: 15%;
  left: calc(50% - 12px);
}
.anatomy-section .anatomy-image .pin#cardiac {
  top: 23%;
  left: 55%;
}
.anatomy-section .anatomy-image .pin#body {
  top: 39%;
  left: calc(50% - 12px);
}
.anatomy-section .anatomy-image .pin#mole {
  top: -10%;
  left: -10%;
  display: none !important;
}
.anatomy-section .anatomy-image .pin#lung {
  top: -10%;
  left: -10%;
  display: none !important;
}
@media (max-width: 450px) {
  .anatomy-section .anatomy-image .pin {
    width: 16px;
    height: 16px;
  }
}
.anatomy-section .anatomy-icon {
  width: 50px;
  height: 50px;
  margin-top: -6px;
}

.display-1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}

.accordion .accordion-item {
  background: none;
  border: none;
  border-top: 1px solid #DEEBF7;
  padding: 42px 0;
  color: var(--button-primary);
}
.accordion .accordion-item.active .accordion-header:after {
  transform: rotate(180deg);
}
.accordion .accordion-header {
  cursor: pointer;
  position: relative;
  transition: all linear 300ms;
  padding-right: 60px;
}
.accordion .accordion-header:after {
  content: "";
  position: absolute;
  top: -6px;
  right: 0;
  width: 40px;
  height: 40px;
  background-image: url("images/icon_faq_open.svg");
  background-size: contain;
  transform: rotate(0deg);
  transition: transform 300ms ease;
}
.accordion .accordion-body {
  display: none;
  padding: 16px 0 0;
}
.accordion .accordion-body p, .accordion .accordion-body li {
  margin-bottom: 16px;
}
.accordion .accordion-body p:last-child, .accordion .accordion-body li:last-child {
  margin: 0;
}

form.bg-white textarea.form-control,
form.bg-white input.form-control {
  background-color: #f7fafd;
}

.form-check-label,
.form-label {
  font-size: 16px;
  color: var(--button-primary);
  margin-bottom: 8px;
}
.form-check-label span,
.form-label span {
  color: #E43F3F !important;
}

textarea.form-control,
input.form-control {
  border: 2px solid #eff5fb;
  border-radius: 8px;
  background-color: white;
  font-size: 18px;
  padding: 16px;
  outline: none !important;
  box-shadow: none !important;
}
textarea.form-control:focus,
input.form-control:focus {
  border-color: var(--text-highlight);
}
textarea.form-control::-moz-placeholder, input.form-control::-moz-placeholder {
  color: #9eacbc;
}
textarea.form-control::placeholder,
input.form-control::placeholder {
  color: #9eacbc;
}

#bp-debug {
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 8px;
  font-size: 0.75rem;
  z-index: 9999;
  border-bottom-left-radius: 4px;
  pointer-events: none;
  display: none;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hd-frame {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 56.25vw;
  max-height: 100vh;
  max-width: 177.7777777778vh;
  border: 2px solid red;
  z-index: 9999;
  pointer-events: none;
  box-sizing: border-box;
}

.button-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 992px) {
  .button-wrap {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}
@media (max-width: 576px) {
  .button-wrap {
    align-items: center;
  }
  .button-wrap .btn {
    width: 100%;
  }
}

@media (min-width: 576px) {
  footer .footer-bottom {
    display: flex !important;
  }
  .anatomy-section {
    min-height: 1000px;
  }
  .anatomy-section .anatomy-image {
    width: 400px;
    left: calc(50% + 200px);
    transform: translateX(-50%);
  }
  .feature-card {
    max-width: initial;
    width: 100%;
  }
  .hero::before {
    background-position-y: -170px;
  }
}
@media (min-width: 768px) {
  .hero::before {
    background-position-y: -250px;
  }
  .feature-card {
    max-width: 340px;
    text-align: left;
  }
  .anatomy-section {
    min-height: 1000px;
  }
  .anatomy-section .right-section {
    transform: translateY(-145px);
  }
  .anatomy-section .anatomy-image {
    width: 350px;
    left: calc(50% + 350px);
    transform: translateX(-50%);
  }
  .answers .number {
    margin: 0 auto 32px;
  }
}
@media (max-width: 991px) {
  .anatomy-section .right-section {
    transform: translateY(-16px);
  }
  footer .g-7 {
    --bs-gutter-x: 0px !important;
  }
}
@media (min-width: 992px) {
  .anatomy-section .anatomy-image .pin#blood {
    top: 34%;
    left: 77%;
  }
  .bg-identity::before {
    display: block;
  }
  .quote {
    padding-left: 64px;
    position: absolute;
  }
  .feature-card {
    max-width: initial;
  }
  .anatomy-section {
    min-height: 800px;
  }
  .anatomy-section .anatomy-image {
    width: 400px;
    left: 50%;
    top: 100px;
    transform: translateX(-50%);
  }
  .hero {
    height: 600px;
  }
  .hero::before {
    background: url("images/landing-hero.jpg?v=1") center top/cover no-repeat;
    background-position-x: -530px;
    background-position-y: 0px;
  }
  .column-1:after,
  .column-2:after,
  .column-3:after {
    content: "";
  }
  body.prostate-mri-scan .hero::before {
    background-image: url("images/prostate-mri-landing-hero.jpg?v=1");
  }
  body.brain-health .hero::before {
    background-image: url("images/brain-health-landing-hero.jpg?v=1");
    background-position-x: 50%;
  }
  body.brain-health .hero h1 {
    margin: 48px 0 48px;
  }
}
@media (min-width: 1200px) {
  .anatomy-section .anatomy-image {
    top: 0;
  }
  .hero::before {
    background-position-x: -300px;
  }
}
@media (min-width: 1400px) {
  body.brain-health .section-2 {
    padding-top: 120px;
  }
  .hero::before {
    background-position-x: -140px;
  }
}
@media (min-width: 1600px) {
  .hero::before {
    background-position-x: 0px;
  }
}
@media (min-width: 1800px) {
  .hero::before {
    background-position: top right;
  }
}
[class*=doctify_carousel_widget_main_container_] {
  background: transparent !important;
}

[class*=doctify_carousel_widget_slide_item_content_] {
  border-radius: 20px;
}

[class*=doctify_carousel_widget_slide_item_content_padding] {
  padding: 10px 16px !important;
}

[class*=doctify_carousel_widget_review_item_review_text] {
  font-size: 14px;
}

footer ul.social {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul.social li {
  display: inline-block;
  margin: 0 16px 0 0;
  padding: 0;
}
footer ul.social li img {
  width: 20px;
  aspect-ratio: 1;
  filter: invert(62%) sepia(81%) saturate(2135%) hue-rotate(186deg) brightness(100%) contrast(102%);
}
footer ul.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul.footer-menu li {
  font-weight: 900;
}
footer ul.footer-menu li a {
  color: inherit;
  text-decoration: none;
}
footer h3 {
  font-size: 20px;
  font-weight: 800;
}
footer .footer-bottom {
  display: block;
  border-top: 1px solid var(--text-secondary);
  margin-top: 50px;
  padding-top: 50px;
  justify-content: space-between;
}
footer p.copyright {
  color: #abb8c3;
}

.pricing-mobile .package {
  padding: 24px 24px 30px;
  background: #FFFFFF;
  border: 2px solid #F7FAFD;
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  margin-bottom: 24px;
}
.pricing-mobile .package .separator {
  margin: 24px 0;
  height: 2px;
  background-color: #F7FAFD;
  width: 100%;
}
.pricing-mobile .package ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing-mobile .package ul li {
  margin: 0 0 8px 0;
  color: var(--button-primary);
}
.pricing-mobile .package ul li:last-child {
  margin: 0;
}
.pricing-mobile .package ul li i {
  margin-right: 10px;
  font-size: 20px;
}
.pricing-mobile .package h4, .pricing-mobile .package .accordion .accordion-header, .accordion .pricing-mobile .package .accordion-header {
  margin-bottom: 6px;
}
.pricing-mobile .package h2 {
  margin: 0;
  color: var(--text);
}

#promo-popup {
  max-width: 480px;
  background: #F7FAFD;
  border: 2px solid #1A8AFF;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 40px 32px;
  border-radius: 20px;
  max-width: 480px;
  text-align: left;
  position: fixed;
  display: none;
  bottom: 32px;
  right: 32px;
  z-index: 100000000000;
}
@media (max-width: 512px) {
  #promo-popup {
    width: 100%;
    max-width: initial;
    bottom: 0;
    right: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
#promo-popup .btn-close {
  font-weight: 300;
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-cta-secondary);
  cursor: pointer;
}
#promo-popup .coupon-code {
  text-align: center;
  background: #FFFFFF;
  border: 1px dashed rgba(62, 89, 122, 0.33);
  border-radius: 6px;
  padding: 10px 24px;
}