html, body {
  overflow-x: hidden;
}

:root {
  --clr-primary: #0085ff;
  --clr-dark: #212121;
  --clr-dark-2: #535a5b;
  --clr-grey: #b5cbd2;
  --clr-grey-light: #d2e5e2;
  --clr-light: #fff;
  --clr-footer: #212121;
  --clr-path: #f0f0f0;
  --ff-heading: "Della Respira", serif;
  --ff-primary: "Poppins", sans-serif;
  --fw-bold: 600;
  --fs-300: 1rem;
  --fs-350: 1.25rem;
  --fs-400: 1.5rem;
  --fs-heading-3: 2.8rem;
  --fs-heading-1: 3.4rem;
  --fs-heading-2: 4.5rem;
  --fs-huge: 10rem;
}

body.dark-mode {
  --clr-light: #212121;
  --clr-dark: #f5f5f5;
  --clr-dark-2: #f5f5f5;
  --clr-footer: #2b2b2b;
  --clr-path: #333030;
}

body.dark-mode .logo-img {
  filter: hue-rotate(180deg) invert();
}

*, :after, :before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
}

button {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

img {
  -webkit-user-select: none;
  user-select: none;
}

a {
  cursor: pointer;
  text-decoration: none;
}

body {
  text-rendering: optimizespeed;
  font-family: var(--ff-primary);
  color: var(--clr-dark);
  background-color: var(--clr-light);
  opacity: 0;
  padding-top: 1.8rem;
  padding-inline: 1.8rem;
  line-height: 1.6;
}

@media (width >= 82em) {
  body {
    padding-inline: 6rem;
  }
}

.primary-nav, .nav-list, .logo-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.logo-container {
  letter-spacing: 1px;
  position: relative;
}

.logo-img {
  width: 310px;
  margin-right: 10px;
}

.nav-list {
  gap: 2.6rem;
  list-style: none;
  position: relative;
}

.nav-list li {
  cursor: pointer;
}

.menu-icon {
  z-index: 11;
  padding: .6rem;
  display: block;
  position: relative;
}

.menu-icon:after, .menu-icon:before {
  content: "";
  background-color: var(--clr-dark-2);
  width: 22px;
  height: 2px;
  transition: transform .4s;
  display: block;
}

.menu-icon:before {
  width: 14px;
  margin-bottom: 4px;
}

.menu-icon.active:before {
  width: 22px;
  transform: rotate(-45deg) translateY(4px);
}

.menu-icon.active:after {
  transform: rotate(45deg) translateY(-4px);
}

.menu-container {
  z-index: 10;
  visibility: hidden;
  flex-direction: column;
  gap: 1rem;
  width: max-content;
  padding: 1.5rem 0;
  display: flex;
  position: absolute;
  top: 100%;
}

.menu-bg {
  content: "";
  background-color: var(--clr-path);
  z-index: 1;
  visibility: hidden;
  border-radius: 100%;
  width: 600px;
  height: 600px;
  position: absolute;
  top: -250px;
  right: -350px;
}

.nav-link {
  color: var(--clr-dark-2);
  z-index: 1;
  border-radius: 4px;
  outline: none;
  width: fit-content;
  position: relative;
}

.nav-link:after, .nav-link:after {
  content: "";
  background-color: var(--clr-dark);
  width: 100%;
  height: 1px;
  transition: transform .2s cubic-bezier(0, -.01, 1, .4);
  display: block;
  position: absolute;
  bottom: -8px;
  right: 0;
  transform: scaleX(0);
}

.nav-link:hover:after, .nav-link:focus:after {
  transform: scaleX(1);
}

.nav-link:before {
  content: "";
  border-radius: 100%;
  width: 10px;
  height: 10px;
  transition: all .3s;
  display: inline-block;
  position: absolute;
  top: calc(50% - 5px);
  left: -16px;
}

.nav-link.active {
  color: var(--clr-dark);
}

.nav-link.active:before {
  background: var(--clr-primary);
  box-shadow: 0 1px 8px #00000026;
}

.bulb {
  color: var(--clr-dark-2);
  z-index: 20;
  font-size: 25px;
  position: fixed;
  transform: rotate(180deg);
}

.bulb:before, .bulb:after {
  content: "";
  background-color: var(--clr-dark-2);
  width: 2px;
  height: 20rem;
  position: absolute;
  top: 60%;
  left: 42%;
}

.bulb:after {
  filter: blur(30px);
  z-index: -1;
  background-color: #fff;
  width: 3rem;
  height: 3rem;
  top: -35%;
  left: calc(50% - 1.5rem);
}

.hidden-link {
  display: none;
}

.main-heading {
  z-index: 10;
  padding-top: 2.4rem;
  transition: color .4s;
  position: relative;
}

.quote-left {
  font-size: var(--fs-400);
  color: var(--clr-grey);
  opacity: .5;
  position: absolute;
  top: 10px;
  left: -25px;
}

.hero-section {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6rem;
  padding-block: 2.5rem;
  display: flex;
}

.hero-section-content {
  flex-direction: column;
  gap: 9rem;
  width: 48vw;
  display: flex;
}

.hero-section-content p {
  width: 80%;
}

.path-container {
  z-index: -10;
  position: absolute;
  top: -8%;
  right: 13%;
}

.carousal-circle {
  --stroke: 6px;
  background-color: var(--clr-dark);
  aspect-ratio: 1;
  border: var(--stroke) solid #777;
  z-index: -5;
  visibility: hidden;
  border-radius: 100%;
  width: 440px;
  position: absolute;
  overflow: hidden;
}

.carousal-images, .benefits-images {
  gap: 10%;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  left: 0;
}

.benefits-images {
  opacity: 0;
}

.carousal-image {
  object-fit: cover;
  object-position: center;
  border-radius: 3rem;
  flex-shrink: 0;
  width: 100%;
}

.section {
  padding-block: 5.5rem;
}

.section-benefits ol {
  margin-left: var(--fs-heading-2);
  padding-left: 1rem;
}

.section-benefits ol li::marker {
  font-size: var(--fs-heading-2);
}

.section-benefits {
  flex-direction: column;
  gap: 250px;
  display: flex;
}

.benefits-content {
  --height: 250px;
  width: 95vw;
  max-width: 800px;
  height: var(--height);
  display: grid;
  position: relative;
  overflow: hidden;
}

.benefits-list {
  width: 100%;
  position: absolute;
}

.benefits-list .list-item {
  width: 100%;
  height: var(--height);
  flex-shrink: 0;
}

.benefits-list .list-item p {
  width: 80%;
  max-width: 700px;
}

.section-who-can-benefit ol {
  margin-left: var(--fs-heading-3);
  font-size: var(--fs-400);
}

.section-who-can-benefit ol li::marker {
  font-size: var(--fs-400);
}

.section-who-can-benefit .list-item {
  width: 43vw;
  padding: 2rem 0;
}

.section-services {
  padding-top: 0;
}

.services-content {
  -webkit-user-select: none;
  user-select: none;
  width: max-content;
  display: flex;
  position: relative;
  left: 10%;
}

.section-services .more-items {
  margin-top: 2rem;
}

.more-items {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  z-index: 10;
  margin-block: auto;
  position: relative;
}

.service-item {
  flex-shrink: 0;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  height: 70vmin;
  display: flex;
}

.service-img-container {
  aspect-ratio: 3 / 4;
  height: 100%;
  overflow: hidden;
}

.service-img-container img {
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

.service-item-content {
  flex-direction: column;
  max-width: 21rem;
  height: 100%;
  display: flex;
}

.item-heading {
  line-height: 1.1;
}

.item-count {
  font-size: var(--fs-huge);
  margin-left: calc(var(--fs-huge) * 1.5);
  color: var(--clr-grey-light);
  margin-top: auto;
  padding-top: 1rem;
  line-height: .8;
  list-style-type: decimal-leading-zero;
}

.service-item-para {
  margin-top: 1.5rem;
  line-height: 1.5;
}

.item-seperator {
  background-color: var(--clr-grey);
  width: 2px;
  height: 120%;
  margin-right: 4vmin;
  transform: rotate(4deg);
}

.testimonial-content .wrapper:not(:last-child) {
  padding-bottom: 2rem;
}

.testimonial-row {
  gap: 2rem;
  list-style: none;
  display: flex;
}

.testimonial-row li {
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  width: clamp(340px, 50%, 800px);
}

.testimonial-row .testimonial {
  letter-spacing: 1px;
  justify-content: center;
  align-items: center;
  padding: 0 3rem;
  line-height: 2;
  display: flex;
}

.testimonial-row img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.testi-msg:before {
  content: "";
  color: var(--clr-grey);
  font-family: "Font Awesome 6 Free";
  position: relative;
  bottom: 10px;
  right: 10px;
}

#section-cqc div.cqc-widget {
  padding: 1rem 0;
  border: none !important;
}

#section-cqc div.cqc-widget.cleanslate .cqc-container {
  background: var(--clr-light) !important;
}

#section-cqc .widget-button-new-style {
  color: var(--clr-dark);
  margin-left: -.4rem;
}

#section-cqc .cqc-widget-normal {
  margin-top: .5rem;
  padding: 1rem;
  background: var(--clr-light) !important;
  border: 2px solid var(--clr-dark-2) !important;
  border-radius: 10px !important;
}

.cqc-widget-footer {
  margin-bottom: 1rem;
}

.cqc-widget-overall {
  font-weight: bold;
  position: relative;
}

.cqc-widget-overall.good:after {
  content: "";
  background-color: green;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 1px;
  transform: translateX(5px);
}

#section-cqc .cqc-widget-inner, #section-cqc .cqc-widget-overall {
  color: var(--clr-dark) !important;
}

body.dark-mode #section-cqc img {
  filter: invert();
}

.section-showcase {
  justify-content: center;
  align-items: center;
  min-height: 100vmin;
  display: flex;
  position: relative;
}

.showcase-head {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  position: relative;
}

.showcase-head + .plus, .click {
  cursor: pointer;
  color: var(--clr-grey-light);
  z-index: 1;
  transition: transform .2s ease-out;
}

.showcase-head .click {
  position: absolute;
  top: -30px;
  left: 40px;
}

.showcase-head:hover + .plus {
  transform: rotate(-90deg) scale(2);
}

.showcase-head:hover .click {
  transform: scale(1.4);
}

.showcase-images {
  visibility: hidden;
  gap: 3rem;
  display: flex;
  position: absolute;
  left: 50%;
}

.showcase-images img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 100% 50%;
  width: 450px;
}

.showcase-images .arrow {
  margin-block: auto;
}

.section-appointment {
  justify-content: space-evenly;
  gap: 1.5rem;
  display: flex;
}

.appointment-form .form-fields {
  flex-direction: column;
  gap: 3rem;
  min-width: 450px;
  display: flex;
}

.appointment-form .form-control {
  border-bottom: 2px solid var(--clr-grey);
}

.appointment-form .form-control li {
  font-size: var(--fs-400);
  font-weight: var(--fw-bold);
  list-style-type: decimal-leading-zero;
}

.appointment-form .form-control li::marker {
  font-size: var(--fs-300);
}

.appointment-form .form-control .label {
  margin-left: 1.5rem;
}

.appointment-form .form-control input {
  width: 100%;
  color: var(--clr-dark-2);
  background-color: #0000;
  border: none;
  outline: none;
  padding: .8rem 0 .8rem 1.5rem;
}

.appointment-form .btn {
  align-self: flex-start;
}

.form-privacy-note {
  max-width: 420px;
  color: var(--clr-dark-2);
  opacity: .8;
  margin-top: -1rem;
}

.form-privacy-note a {
  color: var(--clr-primary);
  text-decoration: underline;
}

.section-info {
  justify-content: space-evenly;
  gap: 5rem;
  padding-top: 1rem;
  display: flex;
}

.info-location {
  width: 400px;
  height: 630px;
  position: relative;
}

.info-location .location-dot {
  cursor: pointer;
  position: absolute;
  top: 63.5%;
  right: 25%;
}

.info-location .gmap {
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--clr-grey);
  opacity: 0;
  border-radius: 100%;
  position: absolute;
  top: 42%;
  right: 6%;
  overflow: hidden;
  transform: translate(20%, -100%);
}

.footer {
  background-color: var(--clr-footer);
  box-shadow: 10vw 0 0 var(--clr-footer), -10vw 0 0 var(--clr-footer);
  justify-content: space-between;
  padding: 3rem;
  display: flex;
  position: relative;
}

.footer .nav-list {
  justify-content: space-evenly;
  align-items: flex-start;
}

.footer .nav-link:after {
  background-color: #f5f5f5;
}

.footer .nav-link {
  color: #f5f5f5;
  background-color: #0000;
}

.footer .icon {
  color: #f5f5f5;
}

.footer-logo {
  color: #f5f5f5;
  border-right: 3px solid #383838;
  width: 90%;
  padding-top: 1rem;
}

.footer-logo .logo-img {
  filter: hue-rotate(180deg) invert();
  margin-top: -17px;
}

.footer-desc {
  color: var(--clr-grey-light);
  width: 35ch;
  margin-top: 1rem;
}

.footer-links {
  flex-basis: 100%;
  justify-content: space-evenly;
  display: flex;
}

.section-about {
  align-items: flex-start;
  gap: 5rem;
  width: max-content;
  padding: 1.7rem 0 2rem 1rem;
  display: flex;
}

.abt-item {
  border-right: 1px solid var(--clr-dark-2);
  align-items: flex-end;
  gap: 5rem;
  width: max-content;
  height: 80vh;
  padding-right: 2rem;
  display: flex;
}

.abt-heading, .abt-content {
  max-width: 500px;
}

.abt-img-container {
  flex-shrink: 0;
  width: 90vw;
  max-width: 440px;
  height: 100%;
  overflow: hidden;
}

.abt-item img {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section-contact {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.section-contact .gmap {
  border: 4px solid var(--clr-grey);
  border-radius: 100%;
  flex-shrink: 0;
  max-width: 300px;
  margin: 1rem auto auto;
  overflow: hidden;
}

.section-contact .gmap img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  width: 100%;
  transition: all 1s;
  scale: 1.05;
}

.section-contact .gmap img:hover {
  scale: 1.3;
}

.section-privacy {
  padding-block: 2.5rem 5rem;
}

.privacy-container {
  max-width: 75ch;
  margin-inline: auto;
}

.privacy-header {
  margin-bottom: 3rem;
}

.privacy-updated {
  color: var(--clr-dark-2);
  opacity: .75;
  margin-top: .5rem;
}

.privacy-lead {
  color: var(--clr-dark-2);
  margin-top: 1.5rem;
}

.privacy-toc {
  border: 2px solid var(--clr-grey);
  border-radius: 10px;
  margin-bottom: 3.5rem;
  padding: 1.5rem 2rem;
}

.privacy-toc h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-400);
  color: var(--clr-dark);
  margin-bottom: 1rem;
}

.privacy-toc ol {
  gap: .45rem;
  margin: 0;
  padding-left: 1.4rem;
  display: grid;
}

.privacy-toc a, .privacy-section a {
  color: var(--clr-primary);
}

.privacy-toc a:hover {
  text-decoration: underline;
}

.privacy-section {
  margin-bottom: 3rem;
  scroll-margin-top: 5rem;
}

.privacy-section h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-heading-3);
  color: var(--clr-primary);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.privacy-section h3 {
  font-size: var(--fs-400);
  font-weight: var(--fw-bold);
  color: var(--clr-dark);
  margin: 1.6rem 0 .6rem;
}

.privacy-section p {
  color: var(--clr-dark-2);
  margin-bottom: 1rem;
}

.privacy-section ul, .privacy-section ol.privacy-list {
  color: var(--clr-dark-2);
  gap: .5rem;
  margin: 0 0 1rem 1.3rem;
  display: grid;
}

.privacy-section a {
  text-decoration: underline;
}

.privacy-section li::marker {
  color: var(--clr-primary);
}

.privacy-contact-block {
  border-left: 3px solid var(--clr-grey);
  color: var(--clr-dark-2);
  margin: 1rem 0;
  padding-left: 1.2rem;
  font-style: normal;
}

.privacy-back-top {
  color: var(--clr-primary);
  margin-top: 1.5rem;
  display: inline-block;
}

.privacy-back-top:hover {
  text-decoration: underline;
}

@media (width <= 37.5em) {
  .privacy-section h2 {
    font-size: var(--fs-400);
  }

  .privacy-toc {
    padding: 1.2rem 1.4rem;
  }
}

.consent-banner {
  background-color: var(--clr-footer);
  color: #f5f5f5;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  border-radius: 12px;
  align-items: center;
  gap: 1.5rem;
  width: min(92%, 560px);
  padding: 1rem 1.5rem;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1), opacity .5s, visibility .6s;
  display: flex;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 250%);
  box-shadow: 0 12px 35px #00000047;
}

.consent-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%);
}

.consent-text {
  color: var(--clr-grey-light);
  margin: 0;
  line-height: 1.5;
}

.consent-text a {
  color: #fff;
  text-decoration: underline;
}

.consent-dismiss {
  border: 2px solid var(--clr-primary);
  color: #fff;
  font-size: var(--fs-300);
  background: none;
  border-radius: 4em;
  flex-shrink: 0;
  padding: .4em 1.3em;
  transition: background-color .3s, color .3s;
}

.consent-dismiss:hover, .consent-dismiss:focus-visible {
  background-color: var(--clr-primary);
  color: #fff;
}

@media (width <= 37.5em) {
  .consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
    padding: 1rem 1.2rem;
    bottom: .8rem;
  }

  .consent-dismiss {
    align-self: stretch;
  }
}

.btn {
  color: var(--clr-dark-2);
  outline-offset: .4rem;
  font-size: var(--fs-350);
  -webkit-user-select: none;
  user-select: none;
  backface-visibility: hidden;
  background: none;
  border-radius: 4.1em;
  padding: .2em 1.2em .2em .7em;
  transition: translate .3s;
  position: relative;
}

.btn:hover {
  translate: 0 -5px;
}

.btn:after {
  --size: 24px;
  content: "";
  width: var(--size);
  height: var(--size);
  padding: 5px;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(20%, 20%);
}

.btn-1 {
  border: 2px solid var(--clr-primary);
}

.btn-1:after {
  background: url("arrow.d791fdbc.svg") center no-repeat;
  background-color: var(--clr-light);
}

.btn-2 {
  border: 2px solid #6ccb4e;
}

.btn-2:focus-visible {
  outline: 2px solid #6ccb4e;
}

.btn-2:after {
  background: url("arrow-g.537d16ce.svg") center no-repeat;
  background-color: var(--clr-light);
}

.heading-1 {
  font-family: var(--ff-heading);
  font-size: var(--fs-heading-1);
  color: var(--clr-dark-2);
  line-height: 1.2;
}

.heading-2 {
  font-size: var(--fs-heading-2);
  font-family: var(--ff-heading);
  color: var(--clr-dark-2);
}

.heading-3 {
  font-size: var(--fs-heading-3);
}

.text-lg {
  font-size: var(--fs-400);
}

.text-md {
  font-size: var(--fs-350);
}

.text-sm {
  font-size: var(--fs-300);
}

.bold {
  font-weight: var(--fw-bold);
}

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

.clr-dark {
  color: var(--clr-dark);
}

.clr-dark-2 {
  color: var(--clr-dark-2);
}

.clr-grey {
  color: var(--clr-grey);
}

.clr-light {
  color: var(--clr-light);
}

.flex {
  align-items: center;
  display: flex;
}

.flex-cl {
  flex-direction: column;
  display: flex;
}

.gap-sm {
  gap: .5rem;
}

.gap-md {
  gap: 2rem;
}

.mb-lg {
  margin-bottom: 3.5rem;
}

.mb-md {
  margin-bottom: 1.5rem;
}

.mb-sm {
  margin-bottom: 3px;
}

.ml-lg {
  margin-left: 3rem;
}

.ml-md {
  margin-left: 1.5rem;
}

.ml-sm {
  margin-left: .5rem;
}

.clip-below-text {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

#ball {
  border: 2px solid var(--clr-grey);
  pointer-events: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.word {
  display: inline-block;
}

.char {
  margin-left: -1px;
  display: inline-block;
}

.bar {
  background-color: var(--clr-primary);
  z-index: 100;
  visibility: hidden;
  width: 35%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(100%);
}

.bar:nth-of-type(2) {
  left: 33%;
}

.bar:nth-of-type(3) {
  left: auto;
  right: 0;
}

@media (width <= 62.5em) {
  .hero-section {
    margin-bottom: 0;
  }

  .carousal-circle {
    width: 360px;
  }

  .hero-section-content {
    gap: 4rem;
  }

  .path-container {
    top: -10%;
    right: 10%;
  }

  .section-appointment {
    display: block;
  }

  .section-appointment .section-heading {
    flex-wrap: wrap;
    margin-bottom: 2rem;
    display: flex;
  }

  .appointment-form .form-fields {
    min-width: 380px;
    padding-inline: 2rem;
  }

  .section-info {
    gap: 0;
  }

  .location-dot {
    display: none;
  }

  .footer {
    padding-inline: 1.5rem;
  }

  .abt-item:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .abt-item:first-child .abt-img-container {
    height: 70%;
  }

  .abt-text {
    max-width: 380px;
    margin-bottom: 5vh;
  }
}

@media (height >= 50em) {
  .abt-item {
    align-items: center;
  }
}

@media (width <= 52em) {
  .footer {
    padding: 2rem 1rem;
    display: block;
  }

  .footer-logo {
    border: none;
    width: 100%;
    margin-bottom: 1rem;
  }

  .footer-desc {
    width: 100%;
  }

  .footer-links {
    flex-flow: wrap;
    justify-content: space-between;
  }

  .footer-links .nav-list {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    width: 45%;
    height: min-content;
  }

  .footer-links .nav-link {
    font-weight: normal;
  }

  .footer-links .nav-link:before {
    display: none;
  }
}

@media (width <= 46.875em) {
  html {
    font-size: 86%;
  }

  :root {
    --fs-heading-1: 3.2rem;
    --fs-heading-2: 4rem;
  }

  .menu-container {
    right: 0;
  }

  .path-container {
    right: 2%;
  }

  .carousal-circle {
    width: 320px;
  }

  .section-benefits {
    gap: 330px;
  }

  .info-location, .info-location .map {
    width: 350px;
    height: 500px;
  }

  .section-contact {
    flex-direction: column;
  }

  .section-contact form {
    width: 90vw;
    margin-bottom: 2rem;
  }

  .section-contact .more-info-container {
    flex-direction: row;
    align-items: center;
  }

  .section-contact .more-info {
    flex-flow: wrap;
    height: min-content;
  }
}

@media (width <= 37.5em) {
  :root {
    --fs-heading-2: 3.6rem;
    --fs-huge: 5rem;
  }

  .primary-nav .nav-list li:first-of-type, .primary-nav .nav-list li:nth-of-type(2) {
    display: none;
  }

  .hidden-link {
    display: block;
  }

  .menu-container > * {
    text-align: right;
  }

  .hero-section-content {
    gap: 24rem;
    width: 95%;
    padding-bottom: 3rem;
  }

  .hero-section-content .btn-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .main-heading {
    padding-top: .5rem;
  }

  .path-container {
    top: 8%;
    right: 14%;
  }

  .section-benefits {
    padding-top: 1rem;
  }

  .benefits-content {
    --height: 200px;
  }

  #path {
    stroke: var(--clr-path);
  }

  .section-who-can-benefit {
    padding-top: 0;
  }

  .section-who-can-benefit .list-item {
    padding-block: 2.5rem;
    line-height: 1.2;
  }

  .section-who-can-benefit ol {
    font-size: var(--fs-350);
  }

  .services-content {
    gap: 3rem;
  }

  .testimonial-row {
    gap: 0;
  }

  .showcase-images img {
    width: 350px;
  }

  .section-info {
    flex-direction: column;
    gap: 8rem;
  }

  .section-info .section-heading {
    display: flex;
  }

  .info-contact {
    flex-flow: wrap;
  }

  .info-location {
    height: 350px;
    margin-inline: auto;
  }

  .info-location .gmap {
    right: unset;
    top: 62%;
  }

  .footer {
    padding-inline: 0;
  }

  .section-contact .more-info-container {
    flex-direction: column;
  }
}

@media (width <= 30em) {
  :root {
    --fs-heading-1: 3.2rem;
    --fs-heading-2: 2.4rem;
    --fs-heading-3: 2rem;
  }

  .logo-img {
    width: 220px;
  }

  .path-container {
    top: 9%;
  }

  .carousal-circle {
    z-index: 3;
    width: 300px;
  }

  .section-benefits {
    gap: 330px;
  }

  .section-testimonial, .main-heading {
    padding-top: 2rem;
  }

  .mb-md {
    margin-bottom: 1rem;
  }

  .mb-lg {
    margin-bottom: 2rem;
  }

  .abt-text {
    max-width: 300px;
  }

  .abt-heading {
    max-width: 90vw;
  }
}
/*# sourceMappingURL=DivineHomeCare.0243a6ab.css.map */
