:root {
  --white: rgb(253, 253, 252);
  --white-o80: rgba(253, 253, 252, 0.8);
  --white-2: #FCFDFEff;
  --grey: #e6e6e4;
  --grey-tint: #dadddf;
  --grey-light: #a3a9ad;
  --grey-mid: #70767a;
  --grey-dark: #717169;
  --grey-brand: #e6e6e4;
  --blue-1: #4fccf4;
  --blue-1-darker: #0da4d5;
  --blue-2: rgb(9, 173, 244);
  --blue-2-90: rgba(0, 183, 244, 0.9);
  --blue-2-60: rgba(0, 183, 244, 0.6);
  --blue-3: #0b81be;
  --blue-4: #013a57;
  --blue-5: #488099;
  --text: #333;
  --yellow: #ffb700;
  --yellow-darker: #d99c00;
  --yellow-2: #efab00;
  --yellow-2-darker: #cb9100;
  --yellow-3: #fdb900;
  --underline-width: 40px;
  --spacing: 8px;
  --box-shadow-thinner: 4px 10px 14px rgba(110, 112, 132, .2), 0 2px 4px rgba(35, 64, 101, .37);
  --box-shadow-thicker: 4px 10px 14px rgba(110, 112, 132, .3), 0 2px 4px rgba(35, 64, 101, .57);
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.bg-colour-brand {
  background-color: var(--blue-1);
}

.brand-after-anchor {
  overflow: hidden;
  position: relative;
}

.brand-after-blue::after {
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2) inset;
  content: "";
  display: none;
  position: absolute;
  background-color: var(--blue-3);
  /* background-color: #09adf4; */
  background-image: url("/assets/images/bg-texture.png");
  height: 100%;
  left: calc(83.33333334% + -0.5 * var(--bs-gutter-x));
  top: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .brand-after-blue::after {
    display: block;
  }
}
.heading-underline {
  position: relative;
  margin-bottom: 1.5rem;
}

.heading-underline::after {
  background-color: var(--blue-2);
  content: "";
  display: block;
  height: 3px;
  left: calc((100% - var(--underline-width)) / 2);
  position: absolute;
  top: calc(100% + 5px);
  width: var(--underline-width);
}

.heading-underline-left::after {
  left: 0;
}

.header-wrap {
  background: white;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
  /* box-shadow: var(--box-shadow-thicker); */
  position: relative;
  z-index: 1;
}

.header-wrap::after {
  box-shadow: 1px 1px 3px black;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}

.header {
  display: flex;
  flex-direction: column;
  padding: calc(var(--spacing) * 3) 0;
}

@media screen and (min-width: 992px) {
  .header {
    padding: calc(var(--spacing) * 3) 0;
  }
}
.header-fixed {
  background-color: var(--white);
  display: flex;
  padding: calc(var(--spacing) * 2) 0;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: 0.3s;
  width: 100%;
  z-index: 10;
  flex-direction: row;
}
.header-fixed.visible {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
}
.header-fixed .header-brand {
  align-items: center;
  display: flex;
  padding: 0 calc(var(--spacing) * 3) 0 0;
}
.header-fixed .header-fixed-container {
  display: flex;
}
.header-fixed .header-nav {
  display: none;
}
.header-fixed .nav-cta-addtext {
  display: none;
}
.header-fixed .logo-link img {
  height: 50px;
  width: auto;
}

@media screen and (min-width: 768px) {
  .header-fixed .header-fixed-container {
    display: flex;
  }
  .header-fixed .header-nav {
    display: flex;
    padding: 0;
  }
  .header-fixed .nav-item {
    margin-right: var(--spacing);
  }
}
@media screen and (min-width: 992px) {
  .header-fixed .header-nav {
    font-size: 1rem;
    padding: 0;
  }
  .header-fixed .nav-cta-addtext {
    display: inline;
  }
  .header-fixed .nav-item {
    margin-right: calc(var(--spacing) * 4);
  }
}
.header-brand {
  flex: 0;
  padding-left: 24px;
}

.header-mobile-nav {
  align-items: center;
  border: 1px solid var(--text);
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 40px;
  justify-content: space-between;
  padding: 9px 5px;
  position: absolute;
  right: 16px;
  top: calc(50% - 20px);
  width: 40px;
}
.header-mobile-nav .nav-line {
  background-color: var(--text);
  border-radius: 2px;
  height: 3px;
  width: 90%;
}

.mobile-nav-overlay {
  background: #fff;
  display: none;
  height: 100%;
  left: 0;
  padding: calc(var(--spacing) * 4) calc(var(--spacing) * 3);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.visible {
  display: flex;
}

@media screen and (min-width: 768px) {
  .mobile-nav-overlay {
    display: none;
  }
}
.mobile-nav-close {
  align-items: center;
  background: var(--grey);
  border-radius: 50%;
  color: var(--text);
  display: flex;
  font-size: 1.5rem;
  font-weight: 600;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: calc(var(--spacing) * 3);
  text-decoration: none;
  top: calc(var(--spacing) * 4);
  width: 40px;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
}
.nav-mobile .nav-item {
  font-size: 1.2rem;
}

.header-nav {
  align-items: center;
  display: none;
  flex: 1;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 calc(var(--spacing) * 2);
}

.cta-wrap {
  display: flex;
  flex-direction: column;
}
.cta-wrap strong {
  margin-bottom: var(--spacing);
  text-transform: uppercase;
}

.nav-cta {
  display: flex;
  flex: 1;
  justify-content: center;
  padding: 0;
}

.nav-cta a {
  margin-right: 16px;
}

.nav-cta a:last-of-type {
  margin-right: 0;
}

.cta-link {
  background-color: var(--blue-4);
  border-radius: 24px;
  box-shadow: 1px 1px 1px var(--grey);
  color: #fff;
  font-weight: 600;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
}

.cta-link:hover {
  background-color: var(--blue-1-darker);
  box-shadow: 1px 2px 3px var(--grey);
  transition: 0.5s;
}

.cta-link:active,
.cta-link:focus {
  background-color: var(--blue-4) !important;
}

.cta-link:disabled {
  background-color: var(--grey-dark);
}

.nav-main {
  display: none;
  flex: 1;
  justify-content: center;
  text-transform: uppercase;
}
.nav-main .nav-item:last-of-type {
  margin-right: 0;
}

.nav-item {
  color: var(--text);
  font-weight: 700;
  margin-right: 30px;
  padding: calc(var(--spacing));
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .header-nav {
    display: flex;
    padding: 0 calc(var(--spacing) * 3);
  }
  .nav-main {
    display: flex;
    justify-content: flex-start;
  }
  .nav-cta {
    justify-content: flex-end;
  }
  .header-mobile-nav {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  /* .header {
    flex-direction: row;
  } */
}
@media screen and (min-width: 1200px) {
  .header {
    flex-direction: row;
  }
  .header-brand {
    padding-left: 0;
  }
  .nav-main {
    justify-content: center;
  }
  .nav-cta {
    padding: 0;
  }
}
.hero-banner {
  background: url("../images/slider/woman-and-child-pool.webp") center/cover no-repeat;
  box-shadow: 0px -1px 6px rgba(0, 0, 0, 0.2) inset;
  color: #fff;
  position: relative;
}

.hero-content {
  padding-top: 200px;
}

@media screen and (min-width: 768px) {
  .hero-content {
    padding-top: 100px;
  }
}
.logo {
  width: 250px;
}

.logo-link {
  color: inherit;
  text-decoration: none;
}

.intro-text {
  background: rgb(71, 200, 250);
  background: linear-gradient(rgb(71, 200, 250) 0%, rgb(46, 184, 237) 50%, rgb(46, 184, 237) 100%);
  border-radius: 0;
  box-shadow: var(--box-shadow-thicker);
  color: var(--white);
  position: relative;
  margin-bottom: -10px;
  padding: 0 calc(var(--spacing) * 2);
  /* margin-right: calc(var(--spacing) * 2); */
  margin-top: 100px;
  /* width: calc(100% - (var(--spacing) * 4)); */
}

.intro-text::after {
  background: linear-gradient(var(--blue-2-90), transparent);
  content: "";
  display: none;
  height: 100%;
  position: absolute;
  right: -383px;
  top: 0;
  transform: rotate(270deg);
  width: 100%;
}

@media screen and (min-width: 768px) {
  .intro-text {
    border-radius: 8px;
  }
}
@media screen and (min-width: 998px) {
  .intro-text {
    margin-left: 0;
    margin-right: 0;
  }
}
.intro-title p {
  font-size: 1.3rem;
  line-height: 1.8rem;
}

.intro-cta {
  background-color: var(--blue-2);
  display: flex;
  flex-direction: column;
}

.intro-cta--text {
  background-color: var(--blue-3);
  border-radius: inherit;
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  font-weight: 300;
  justify-content: center;
  line-height: 1.6rem;
  padding-right: 32px;
}

.intro-cta--text strong {
  font-weight: bold;
}

.intro-cta--text p {
  margin: 0;
}

.intro-cta--links {
  align-items: stretch;
  background-color: var(--blue-5);
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  margin-left: 0;
}

.intro-cta--links .cta {
  align-content: center;
  background-color: var(--blue-4);
  color: var(--white);
  display: flex;
  flex: 1;
  flex-basis: auto;
  flex-wrap: wrap;
  font-size: 1.1rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.5rem;
  margin-bottom: 10px;
  margin-right: 1px;
  padding: calc(var(--spacing) * 3) calc(var(--spacing) * 2);
  position: relative;
  text-align: center;
  text-decoration: none;
}
.intro-cta--links .cta.cta--workers {
  flex-basis: 30%;
}

@media screen and (min-width: 768px) {
  .intro-cta--links .cta {
    padding: calc(var(--spacing) * 2) calc(var(--spacing) * 3);
  }
}
.intro-cta--links .cta::before {
  background-color: var(--white);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: 0.5s;
  width: 100%;
  z-index: 3;
}

.intro-cta--links .cta:hover::before {
  opacity: 0.1;
}

.intro-cta--links .cta::after {
  background-color: var(--yellow-3);
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  transition: 0.1s;
  width: 100%;
  top: 100%;
}

.intro-cta--links .cta:hover::after {
  height: 12px;
  top: calc(100% - 2px);
}

.intro-cta--links .cta:last-of-type {
  margin-right: 0;
}

.support-banner {
  background-color: var(--white);
  padding: calc(var(--spacing) * 6) 0;
}

.services {
  /* box-shadow: 1px 3px 5px rgba(0,0,0,0.2); */
  border-radius: 8px;
  box-shadow: var(--box-shadow-thicker);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

@media screen and (min-width: 992px) {
  .services {
    margin: auto;
    flex-direction: row;
    width: 80%;
  }
}
.icon {
  /* border-radius: 100%; */
  width: 80px;
  height: 80px;
  display: block;
  /* background-color: var(--white); */
}

.services--service {
  align-items: center;
  box-shadow: 1px 0px 1px rgba(0, 0, 0, 0.1) inset;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: calc(var(--spacing) * 4);
}

.services--service:nth-of-type(1) {
  background-color: var(--blue-2-60);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  box-shadow: none;
}

/* .services--service:nth-of-type(2) {
  background-color: var(--blue-2);
} */
.services--service:nth-of-type(2) {
  background-color: var(--blue-1);
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

@media screen and (min-width: 992px) {
  .services--service:nth-of-type(1) {
    border-top-left-radius: inherit;
    border-top-right-radius: 0;
    border-bottom-left-radius: inherit;
  }
  .services--service:nth-of-type(2) {
    border-top-right-radius: inherit;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: inherit;
  }
}
.services-wheel {
  display: flex;
  flex-direction: column;
  position: relative;
}
.services-wheel::after {
  background: url("../images/physio-body.webp") top/cover no-repeat;
  content: "";
  display: flex;
  filter: grayscale(100%);
  height: 100%;
  left: 0;
  opacity: 0.05;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.services-wheel--heading {
  display: block;
}

.services-wheel--content {
  display: none;
}

.services-wheel--container {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-left: 0;
  z-index: 2;
}
.services-wheel--container li {
  background-color: var(--grey-tint);
  border-radius: 16px;
  color: var(--text);
  display: block;
  flex: auto;
  margin: 0 4px 8px;
  max-width: 100%;
  opacity: 1;
  padding: 10px 20px;
  transition: 0.15s;
}
.services-wheel--container li span {
  height: 100%;
  padding: 10px;
  position: relative;
  width: 100%;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .services-wheel--heading {
    display: none;
  }
  .services-wheel--content {
    display: block;
  }
  .services-wheel--container {
    margin: 230px auto 150px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    flex: unset;
    flex-direction: column;
    opacity: 1;
    display: flex;
    position: relative;
    width: 20em;
    height: 20em;
    padding: 0;
    border-radius: 50%;
    list-style: none;
    container-type: size;
  }
  .services-wheel--container::after {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
    z-index: -1;
  }
  .services-wheel--container > li {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6em;
    height: 20px;
    margin: -50px -70px;
  }
  .services-wheel--container > li::after {
    background-color: var(--blue-1);
    display: block;
    height: calc(100% - 50px);
    left: 8px;
    position: absolute;
    top: 22px;
    width: 2px;
  }
  .services-wheel--container > li:nth-of-type(1) {
    transform: rotate(0deg) translate(80cqw) rotate(0deg);
  }
  .services-wheel--container > li:nth-of-type(2) {
    transform: rotate(32.7272727273deg) translate(80cqw) rotate(-32.7272727273deg);
  }
  .services-wheel--container > li:nth-of-type(3) {
    transform: rotate(65.4545454545deg) translate(80cqw) rotate(-65.4545454545deg);
  }
  .services-wheel--container > li:nth-of-type(4) {
    transform: rotate(98.1818181818deg) translate(80cqw) rotate(-98.1818181818deg);
  }
  .services-wheel--container > li:nth-of-type(5) {
    transform: rotate(130.9090909091deg) translate(80cqw) rotate(-130.9090909091deg);
  }
  .services-wheel--container > li:nth-of-type(6) {
    transform: rotate(163.6363636364deg) translate(80cqw) rotate(-163.6363636364deg);
  }
  .services-wheel--container > li:nth-of-type(7) {
    transform: rotate(196.3636363636deg) translate(80cqw) rotate(-196.3636363636deg);
  }
  .services-wheel--container > li:nth-of-type(8) {
    transform: rotate(229.0909090909deg) translate(80cqw) rotate(-229.0909090909deg);
  }
  .services-wheel--container > li:nth-of-type(9) {
    transform: rotate(261.8181818182deg) translate(80cqw) rotate(-261.8181818182deg);
  }
  .services-wheel--container > li:nth-of-type(10) {
    transform: rotate(294.5454545455deg) translate(80cqw) rotate(-294.5454545455deg);
  }
  .services-wheel--container > li:nth-of-type(11) {
    transform: rotate(327.2727272727deg) translate(80cqw) rotate(-327.2727272727deg);
  }
  .services-wheel--container > .dot {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -11px;
  }
  .services-wheel--container > .dot::after {
    background-color: rgba(0, 0, 0, 0.6);
    display: block;
    height: 1px;
    position: absolute;
    width: 100%;
    margin: 10px 1px;
  }
  .services-wheel--container > .dot:nth-of-type(1) {
    background: linear-gradient(var(--blue-3) 80%, var(--grey-mid));
    transform: rotate(0deg) translate(160px) rotate(0deg);
  }
  .services-wheel--container > .dot:nth-of-type(1)::after {
    transform: rotate(0deg) translate(1.5em);
  }
  .services-wheel--container > .dot:nth-of-type(2) {
    background: linear-gradient(var(--blue-3) 80%, var(--grey-mid));
    transform: rotate(32.7272727273deg) translate(160px) rotate(-32.7272727273deg);
  }
  .services-wheel--container > .dot:nth-of-type(2)::after {
    transform: rotate(32.7272727273deg) translate(1.5em);
  }
  .services-wheel--container > .dot:nth-of-type(3) {
    background: linear-gradient(var(--blue-3) 80%, var(--grey-mid));
    transform: rotate(65.4545454545deg) translate(160px) rotate(-65.4545454545deg);
  }
  .services-wheel--container > .dot:nth-of-type(3)::after {
    transform: rotate(65.4545454545deg) translate(1.5em);
  }
  .services-wheel--container > .dot:nth-of-type(4) {
    background: linear-gradient(var(--blue-3) 80%, var(--grey-mid));
    transform: rotate(98.1818181818deg) translate(160px) rotate(-98.1818181818deg);
  }
  .services-wheel--container > .dot:nth-of-type(4)::after {
    transform: rotate(98.1818181818deg) translate(1.5em);
  }
  .services-wheel--container > .dot:nth-of-type(5) {
    background: linear-gradient(var(--blue-3) 80%, var(--grey-mid));
    transform: rotate(130.9090909091deg) translate(160px) rotate(-130.9090909091deg);
  }
  .services-wheel--container > .dot:nth-of-type(5)::after {
    transform: rotate(130.9090909091deg) translate(1.5em);
  }
  .services-wheel--container > .dot:nth-of-type(6) {
    background: linear-gradient(var(--blue-3) 80%, var(--grey-mid));
    transform: rotate(163.6363636364deg) translate(160px) rotate(-163.6363636364deg);
  }
  .services-wheel--container > .dot:nth-of-type(6)::after {
    transform: rotate(163.6363636364deg) translate(1.5em);
  }
  .services-wheel--container > .dot:nth-of-type(7) {
    background: linear-gradient(var(--blue-3) 80%, var(--grey-mid));
    transform: rotate(196.3636363636deg) translate(160px) rotate(-196.3636363636deg);
  }
  .services-wheel--container > .dot:nth-of-type(7)::after {
    transform: rotate(196.3636363636deg) translate(1.5em);
  }
  .services-wheel--container > .dot:nth-of-type(8) {
    background: linear-gradient(var(--blue-3) 80%, var(--grey-mid));
    transform: rotate(229.0909090909deg) translate(160px) rotate(-229.0909090909deg);
  }
  .services-wheel--container > .dot:nth-of-type(8)::after {
    transform: rotate(229.0909090909deg) translate(1.5em);
  }
  .services-wheel--container > .dot:nth-of-type(9) {
    background: linear-gradient(var(--blue-3) 80%, var(--grey-mid));
    transform: rotate(261.8181818182deg) translate(160px) rotate(-261.8181818182deg);
  }
  .services-wheel--container > .dot:nth-of-type(9)::after {
    transform: rotate(261.8181818182deg) translate(1.5em);
  }
  .services-wheel--container > .dot:nth-of-type(10) {
    background: linear-gradient(var(--blue-3) 80%, var(--grey-mid));
    transform: rotate(294.5454545455deg) translate(160px) rotate(-294.5454545455deg);
  }
  .services-wheel--container > .dot:nth-of-type(10)::after {
    transform: rotate(294.5454545455deg) translate(1.5em);
  }
  .services-wheel--container > .dot:nth-of-type(11) {
    background: linear-gradient(var(--blue-3) 80%, var(--grey-mid));
    transform: rotate(327.2727272727deg) translate(160px) rotate(-327.2727272727deg);
  }
  .services-wheel--container > .dot:nth-of-type(11)::after {
    transform: rotate(327.2727272727deg) translate(1.5em);
  }
  .services-wheel--container .services-wheel--content {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: center;
  }
  .services-wheel--container .services-wheel--content h3 {
    width: 70%;
  }
  .services-wheel--container li {
    height: auto;
    inline-size: min-content;
    min-width: 35%;
  }
  .services-wheel--container .dot {
    border-radius: 50%;
    display: block;
    height: 20px;
    width: 20px;
  }
}
.about-us {
  background-color: var(--grey);
  /* , -9px -2px 5px rgba(0,0,0,0.2) inset; */
  padding: calc(var(--spacing) * 6) 0;
}

.about-person {
  display: flex;
  flex-direction: column;
  margin-bottom: 5rem;
}
.about-person:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .about-person {
    flex-direction: row;
  }
}
.about-person--photo {
  align-self: center;
  border: 3px solid var(--blue-4);
  border-radius: 100%;
  height: 240px;
  margin-bottom: 20px;
  flex: 0 0 240px;
}
.about-person--photo.about-person--photo--empty {
  border-color: rgba(0, 0, 0, 0.1);
  border: 0;
}

@media screen and (min-width: 768px) {
  .about-person--photo {
    align-self: initial;
    margin-top: 20px;
    margin-right: 20px;
  }
}
.about-person--bio {
  padding: 0 calc(var(--spacing) * 2);
}

.about-person--bio h5 {
  margin-bottom: 1rem;
  text-align: center;
}

.about-person--bio h6 {
  margin-bottom: 2rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .about-person--photo {
    align-self: initial;
    height: fit-content;
    margin-top: 20px;
    margin-right: 20px;
    width: 140px;
    flex: 0 0 140px;
  }
  .about-person--bio {
    padding: 0 calc(var(--spacing) * 4);
  }
  .about-person--bio h5 {
    margin-bottom: 0.75rem;
    text-align: left;
  }
  .about-person--bio h6 {
    margin-bottom: 2rem;
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .about-person--photo {
    margin-right: 40px;
    width: 220px;
    flex: 0 0 220px;
  }
  .about-person--bio {
    padding: 0 calc(var(--spacing) * 4);
  }
}
@media screen and (min-width: 1400px) {
  .about-person--photo {
    height: 250px;
    margin-right: 40px;
    width: 250px;
    flex: 0 0 250px;
  }
  .about-person--bio {
    padding: 0 calc(var(--spacing) * 4);
  }
}
.form-error {
  color: darkred;
  margin-top: 8px;
}

.form-alert {
  border: 1px solid darkred;
}

.footer {
  background: linear-gradient(var(--text), #343536);
  color: var(--white-o80);
  padding: calc(var(--spacing) * 6) 0;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer a {
  color: var(--white-o80);
  text-decoration: none;
}

/*# sourceMappingURL=main.css.map */
