@import url("https://fonts.googleapis.com/css2?family=Julius+Sans+One&family=Junge&family=Khula:wght@300;400;600;700;800&display=swap");
:root {
  --body-font: "Khula", sans-serif;
  --header-font: "Julius Sans One", sans-serif;
  --info-font: "Junge", cursive;
  --main-dark: #5d8b91;
  --main-mid: #f3f0ec;
  --main-light: #c6d2da;
  --secondary-light: #7f868d;
  --secondary-dark: #4e4d4b;
  --background-light: #fff;
  --container-width: 1180px;
}

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: unset;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  background-color: var(--background-light);
  margin: 0;
  font-family: var(--body-font);
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 13pt;
  max-width: 1920px;
  margin: auto;
  /* Hide the dropdown menu by default and prepare for animation */
  /* Display the dropdown menu with animation when hovering over #dropdownSelect */
}
body input:focus,
body textarea:focus {
  outline: none;
}
body p {
  padding-top: 1rem;
}
body .cookie-warning {
  display: none;
  flex-direction: row;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 3px 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-light);
  color: var(--main-mid);
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* X-offset, Y-offset, Blur-radius, Color */
  z-index: 9999;
}
body .cookie-warning > .btn-2 {
  font-size: 12pt;
  float: unset;
  margin-left: 10px;
  border: unset;
  cursor: pointer;
  margin-left: 1rem;
  padding: 0 10px;
  margin-bottom: 5px;
  background-color: var(--main-mid);
  margin-top: 5px;
  color: var(--secondary-light);
  font-weight: 500;
  margin-right: 1rem;
}
body .cookie-warning > .btn-2:hover {
  box-shadow: none;
  transition: 0.4s;
}
body .flickity-enabled.is-draggable .flickity-viewport {
  width: 100%;
}
body .flickity-prev-next-button {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  box-shadow: none;
  outline: none;
}
body .flickity-prev-next-button:hover .arrow {
  opacity: 1;
}
body .flickity-prev-next-button .arrow {
  fill: var(--white);
  opacity: 0.5;
  transition: 0.3s ease;
}
body .flickity-prev-next-button:focus {
  outline: none;
  box-shadow: none;
}
body #back-to-top {
  position: fixed;
  right: 20px;
  cursor: pointer;
  z-index: 1000;
  bottom: 80px;
  transition: color 0.3s, transform 0.3s;
}
body #back-to-top:hover {
  transform: translateY(-5px);
}
body a {
  color: inherit;
  text-decoration: none;
}
body button {
  display: flex;
  align-items: center;
  font-family: inherit;
  background-color: var(--main-dark);
  border: none;
  color: var(--background-light);
  border-radius: 20px;
  font-size: 13.5pt;
  padding: 3px 60px 2px 60px;
  letter-spacing: 1.5px;
  font-weight: 100;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* X-offset, Y-offset, Blur-radius, Color */
}
body button:hover {
  transition: 0.4s;
}
body button:hover svg {
  transition: 0.4s;
  transform: translateX(5px);
}
body button svg {
  padding-left: 1rem;
}
body #menuModal > span {
  cursor: pointer;
}
body #menuModal #menucontentModal {
  display: none;
}
body .generic-modal {
  text-align: center;
}
body .generic-modal .modal-content {
  max-width: 400px !important;
}
body .sitemap-modal,
body .generic-modal {
  display: none;
  position: fixed;
  z-index: 500;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
body .sitemap-modal .modal-content,
body .generic-modal .modal-content {
  color: var(--secondary-dark);
  background-color: var(--background-light);
  margin: auto;
  margin-top: 4%;
  padding: 20px;
  width: 80%;
  max-width: 295px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  font-family: var(--body-font);
}
body .sitemap-modal .modal-content > h1,
body .generic-modal .modal-content > h1 {
  font-family: var(--header-font);
  text-align: center;
  color: var(--main-dark);
}
body .sitemap-modal .modal-content .close-button,
body .generic-modal .modal-content .close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
body .sitemap-modal .modal-content .close-button:hover, body .sitemap-modal .modal-content .close-button:focus,
body .generic-modal .modal-content .close-button:hover,
body .generic-modal .modal-content .close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
body .mobile-cta {
  display: none;
}
@media (max-width: 750px) {
  body .mobile-cta {
    width: 100%;
    background-color: var(--secondary-dark);
    color: var(--background-light);
    position: fixed; /* Changed from sticky to fixed */
    bottom: 0;
    display: block; /* Ensures that the CTA displays on smaller screens */
    z-index: 1000; /* Ensures the CTA stays on top of other content */
    text-align: center;
    padding: 1rem 0;
    font-weight: 600;
  }
}
body .parallax {
  position: relative;
  height: 150px;
  flex-direction: column;
  display: flex;
  z-index: 0;
}
body .parallax::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* The image used */
  background-image: url("../imgs/parallax.webp");
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* Set the opacity */
  z-index: 1;
}
body .marquee {
  width: 100%;
  overflow: hidden;
  height: 20px;
  background-color: var(--main-dark);
  color: var(--background-light);
  font-family: var(--header-font);
  padding: 10px 0;
  font-size: 15pt;
  text-transform: uppercase;
  position: relative;
}
body .marquee-content {
  display: flex;
  white-space: nowrap;
  position: absolute;
  animation: marquee 15s linear infinite;
}
body .marquee-content ul {
  margin: 0;
  padding: 0;
  display: flex;
}
body .marquee-content li {
  list-style: none;
  padding: 0 2rem;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
body #dropdownMenu {
  display: block; /* changed to block to allow for opacity and transform manipulations */
  opacity: 0; /* hidden by being fully transparent */
  visibility: hidden; /* ensure it's not interactable when hidden */
  position: absolute;
  padding: 1rem 0;
  transform: translateY(-20px); /* start slightly above to slide down */
  transition: opacity 0.3s, transform 0.3s; /* smooth transition for both properties */
  background: white;
  z-index: 49;
}
body #dropdownMenu > ul {
  display: flex;
  flex-direction: column;
}
body #dropdownMenu > ul li:first-of-type {
  display: block;
}
body #dropdownSelect:hover #dropdownMenu {
  opacity: 1; /* make fully visible */
  visibility: visible; /* make interactable */
  transform: translateY(0); /* move to natural position */
}
body nav {
  width: 100%;
  margin: auto;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: 100;
}
body nav .logo {
  max-width: 100%;
  height: auto;
}
body nav .logo > a img {
  width: 100%;
  height: auto;
  max-width: 300px;
}
body nav > ul {
  margin: auto;
  padding: 0;
  margin-top: 1rem;
}
body nav > ul li {
  list-style: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 15pt;
  margin: 0 1rem;
  position: relative;
}
body nav > ul li::after {
  content: "";
  position: absolute;
  left: -10px; /* Extend line beyond the left of the text */
  right: -10px; /* Extend line beyond the right of the text */
  bottom: 16px; /* Position line below the text */
  height: 1px;
  background-color: var(--secondary-dark);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 0; /* Ensure it is behind the text */
}
@media (max-width: 660px) {
  body nav > ul li::after {
    height: 0;
  }
}
body nav > ul li:hover::after {
  transform: scaleX(1);
}
body nav > ul li a {
  position: relative;
  z-index: 1;
  background-color: var(--background-light);
  padding: 0 5px;
  text-decoration: none;
  color: var(--secondary-dark);
  display: inline-block;
}
body nav > ul li:first-child {
  display: none;
}
body nav > ul li > ul {
  margin: 0;
  padding: 0;
  width: 235px;
}
body nav > ul li > ul li:first-of-type {
  display: inline-block;
  margin: 0 1rem;
  position: relative;
}
@media (max-width: 660px) {
  body nav > ul li {
    display: none;
    flex-direction: column;
  }
  body nav > ul li:first-child {
    display: block;
    padding-bottom: 1rem;
  }
  body nav > ul li:first-child:after {
    background-color: var(--background-light);
  }
  body nav > ul li .selector {
    cursor: pointer;
    display: block;
    height: 36px;
    width: 37px;
  }
  body nav > ul li .selector {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  body nav > ul li .selector .bar-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    margin-top: -11px;
    -webkit-transform: translate3d(0, 0, 0); /* The zoom: 1; of new browsers */
  }
  body nav > ul li .selector .bar-icon {
    height: 3px;
    width: 20px;
    background: #444;
    display: block;
    opacity: 1;
    margin-top: 4px;
    transition: transform 0.15s linear;
    transform-origin: 50% 50%;
  }
  body nav > ul li .bar-icon:nth-child(2) {
    transition: opacity 0.1s linear;
  }
  body nav > ul li .active .bar-icon:nth-child(1) {
    transform: rotate(45deg) translate3d(5px, 5px, 0);
  }
  body nav > ul li .active .bar-icon:nth-child(2) {
    opacity: 0;
  }
  body nav > ul li .active .bar-icon:nth-child(3) {
    transform: rotate(-45deg) translate3d(5px, -5px, 0);
  }
}
body .home__top {
  position: relative;
}
body .home__top-info {
  position: absolute;
  top: 40%;
  left: 10%;
  z-index: 10;
}
body .home__top-info__text {
  font-size: 24pt;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--background-light);
  padding-bottom: 0.5rem;
}
@media (min-width: 740px) and (max-width: 840px) {
  body .home__top-info {
    left: 5%;
  }
}
@media (max-width: 740px) {
  body .home__top-info {
    left: 2%;
    padding-right: 1rem;
  }
}
@media (max-width: 500px) {
  body .home__top-info__btn {
    display: none;
  }
}
body .home__top-info__btn > button > a {
  display: flex;
  flex-direction: row;
  align-items: center;
}
body .home__top-banner {
  max-height: 600px;
}
body .home__top-banner > img {
  filter: brightness(90%);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 605px;
}
body .home__about {
  background-color: var(--main-mid);
  padding: 8rem 1rem;
  color: var(--secondary-dark);
}
body .home__about-title {
  margin-block-start: 0;
  margin-block-end: 0;
  max-width: 1180px;
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 24pt; /* Adjust font size as needed */
  margin: 0 auto; /* Space around the heading */
  font-family: var(--header-font);
  color: var(--secondary-dark);
}
body .home__about-title .line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%; /* Center the line vertically */
  height: 1px; /* Thickness of the line */
  background-color: var(--secondary-dark); /* Line color */
  z-index: 1; /* Ensure line is behind the text */
}
body .home__about-title span {
  background-color: var(--main-mid); /* Match background color to hide the line */
  padding: 0 10px; /* Add padding to create space around the text */
  position: relative; /* Allow positioning of the text */
  z-index: 2; /* Ensure text is above the line */
}
body .home__about-text {
  padding: 4rem 0;
}
@media (max-width: 600px) {
  body .home__about-text {
    text-align: center;
  }
}
body .home__about-text #readMore {
  font-weight: 600;
  cursor: pointer;
}
body .home__about-text__overflow {
  display: none;
}
body .home__about-text__overflow p {
  margin-top: 1rem;
}
body .home__about-text__overflow > h2 {
  margin-top: 3rem;
  text-align: center;
}
body .home__about-usp {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 4rem;
}
body .home__about-usp:after {
  content: "";
}
@media screen and (max-width: 1015px) {
  body .home__about-usp:after {
    content: "";
    content: "flickity";
    display: none;
  }
  body .home__about-usp img {
    padding: 0 3rem;
  }
}
body .home__about-text, body .home__about-usp {
  max-width: 1180px;
  width: 100%;
  margin: auto;
}
body .home__founder {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  padding: 8rem 0;
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}
@media (max-width: 870px) {
  body .home__founder {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
body .home__founder-block {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
body .home__founder-block:first-child {
  flex: 0 0 70%;
}
body .home__founder-block:last-child {
  flex: 0 0 30%;
}
body .home__founder-block > h1 {
  font-family: var(--header-font);
  color: var(--main-dark);
  margin-bottom: 0;
  padding-left: 1.4rem;
}
@media (max-width: 870px) {
  body .home__founder-block > h1 {
    text-align: center;
    padding-left: 0;
  }
}
body .home__founder-block__info {
  font-family: var(--info-font);
  text-align: center;
  line-height: 35px;
}
body .home__founder-block__text {
  padding: 4rem 0 4rem 3rem;
}
@media (max-width: 870px) {
  body .home__founder-block__text {
    padding: 4rem 1rem;
  }
}
body .home__founder-block__button {
  display: flex;
  justify-content: center;
}
body .home__founder-block__button > a > button:hover {
  box-shadow: none;
}
body .home__founder-block > img {
  height: auto;
  width: 100%;
}
@media (max-width: 870px) {
  body .home__founder-block > img {
    max-width: 300px;
    margin: auto;
    padding-left: unset;
    padding-top: 2rem;
  }
}
body .home__founder > img {
  position: absolute;
  bottom: -150px;
  right: -25%;
  max-height: 300px;
  height: 100%;
  width: auto;
}
@media (min-width: 1660px) and (max-width: 1775px) {
  body .home__founder > img {
    right: -20%;
    transition: 0.4s ease;
  }
}
@media (min-width: 1535px) and (max-width: 1660px) {
  body .home__founder > img {
    right: -15%;
    transition: 0.4s ease;
  }
}
@media (min-width: 1425px) and (max-width: 1535px) {
  body .home__founder > img {
    right: -10%;
    transition: 0.4s ease;
  }
}
@media (min-width: 1290px) and (max-width: 1425px) {
  body .home__founder > img {
    right: -5%;
    transition: 0.4s ease;
  }
}
@media (min-width: 740px) and (max-width: 1290px) {
  body .home__founder > img {
    right: 0;
    transition: 0.4s ease;
  }
}
@media (max-width: 740px) {
  body .home__founder > img {
    display: none;
  }
}
body .home__session {
  background-color: var(--main-light);
  color: var(--secondary-dark);
  padding: 9rem 1rem;
}
body .home__session-title {
  margin-block-start: 0;
  margin-block-end: 0;
  max-width: 1180px;
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 24pt; /* Adjust font size as needed */
  margin: 0 auto; /* Space around the heading */
  font-family: var(--header-font);
  color: var(--secondary-dark);
  margin-bottom: 6rem;
}
body .home__session-title .line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%; /* Center the line vertically */
  height: 1px; /* Thickness of the line */
  background-color: var(--secondary-dark); /* Line color */
  z-index: 1; /* Ensure line is behind the text */
}
@media (max-width: 700px) {
  body .home__session-title .line {
    height: 0;
  }
}
body .home__session-title span {
  background-color: var(--main-light); /* Match background color to hide the line */
  padding: 0 10px; /* Add padding to create space around the text */
  position: relative; /* Allow positioning of the text */
  z-index: 2; /* Ensure text is above the line */
}
body .home__session-block {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: row;
}
@media (max-width: 870px) {
  body .home__session-block {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
}
body .home__session-block__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body .home__session-block__item > img {
  margin-right: 4rem;
}
@media (max-width: 870px) {
  body .home__session-block__item > img {
    margin: 0;
    width: 100%;
    height: auto;
  }
}
body .home__session-block__item-info {
  font-family: var(--info-font);
  text-align: center;
  line-height: 35px;
}
body .home__session-block__item-text {
  padding-bottom: 2rem;
  padding-right: 2rem;
}
@media (max-width: 870px) {
  body .home__session-block__item-text {
    padding-top: 3rem;
    padding-right: 0;
  }
}
body .home__session-block__item-button {
  display: flex;
  justify-content: center;
}
body .home__session-block__item-button > a > button:hover {
  box-shadow: none;
}
body .home__services {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  padding: 8rem 0;
}
body .home__services-title {
  margin-block-start: 0;
  margin-block-end: 0;
  max-width: 1180px;
  width: 100%;
  position: relative;
  font-size: 24pt; /* Adjust font size as needed */
  margin: 0 auto; /* Space around the heading */
  font-family: var(--header-font);
  color: var(--secondary-dark);
  margin-bottom: 4rem;
}
body .home__services-title .line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%; /* Center the line vertically */
  height: 1px; /* Thickness of the line */
  background-color: var(--secondary-dark); /* Line color */
  z-index: 1; /* Ensure line is behind the text */
}
body .home__services-title span {
  background-color: var(--background-light); /* Match background color to hide the line */
  padding: 0 10px; /* Add padding to create space around the text */
  position: relative; /* Allow positioning of the text */
  z-index: 2; /* Ensure text is above the line */
}
body .home__services-button {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 1rem;
  display: none;
}
@media (max-width: 755px) {
  body .home__services-button {
    display: flex;
    justify-content: center;
  }
}
body .home__services-button > button:hover {
  box-shadow: none;
}
body .home__services-info {
  font-family: var(--info-font);
  text-align: center;
  margin-bottom: 4rem;
  line-height: 35px;
  padding: 0 1rem 0 1rem;
}
body .home__services-text {
  padding: 2rem 1rem 0 1rem;
  display: flex;
  align-content: start;
  border-top: 1px solid var(--main-dark);
  font-size: 11pt;
  justify-content: center;
  flex-flow: wrap;
}
@media (max-width: 755px) {
  body .home__services-text {
    display: block;
    text-align: center;
  }
}
body .home__services-text > a {
  color: var(--main-dark);
}
body .home__services-text > a:hover {
  transition: 0.4s;
  color: var(--main-light);
}
body .home__services-text > span {
  color: var(--main-dark);
}
body .home__services-text > span > svg {
  padding-right: 7px;
}
body .home__services-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 4%;
  padding: 0 1rem;
  flex-wrap: wrap;
  color: var(--background-light);
}
@media (min-width: 915px) and (max-width: 970px) {
  body .home__services-block {
    gap: 20%;
  }
}
@media (min-width: 875px) and (max-width: 915px) {
  body .home__services-block {
    gap: 15%;
  }
}
@media (min-width: 820px) and (max-width: 875px) {
  body .home__services-block {
    gap: 10%;
  }
}
@media (min-width: 780px) and (max-width: 820px) {
  body .home__services-block {
    gap: 5%;
  }
}
@media (min-width: 755px) and (max-width: 780px) {
  body .home__services-block {
    gap: 1.5%;
  }
}
@media (max-width: 755px) {
  body .home__services-block {
    flex-direction: column;
    max-width: 400px;
    margin: auto;
  }
}
body .home__services-block__item {
  color: var(--secondary-dark);
  flex-direction: column;
  display: flex;
  width: 50%;
  flex: 0 1 29.33%;
}
@media (max-width: 755px) {
  body .home__services-block__item {
    width: 100%;
  }
}
body .home__services-block__item-arch {
  background-color: var(--main-dark);
  border-radius: 300px 300px 0 0;
  box-shadow: inset 0 -10px 15px rgba(0, 0, 0, 0.4);
  padding: 20px;
  flex: 1;
  color: var(--background-light);
  min-height: 600px; /* Ensure minimum height */
  max-height: 600px; /* Ensure maximum height */
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 755px) {
  body .home__services-block__item-arch:last-child {
    margin-top: 3rem;
  }
}
body .home__services-block__item-arch > h2 {
  font-family: var(--info-font);
}
body .home__services-block__item-arch > span {
  font-size: 20pt;
  font-weight: 600;
}
body .home__services-block__item-arch > ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
body .home__services-block__item-arch > ul li {
  list-style: none;
  border-bottom: 1px solid var(--background-light);
  padding: 1rem 0;
  font-size: 15pt;
}
body .home__services-block__item-arch > ul li:nth-child(3) {
  border-bottom: unset;
}
body .home__services-block__item-text {
  padding: 2rem 0 4rem 0;
  text-align: center;
  font-family: var(--info-font);
  line-height: 35px;
}
body .home__testimonials {
  background-color: var(--main-mid);
  padding: 9rem 1rem;
  color: var(--secondary-dark);
}
body .home__testimonials-container {
  max-width: 1180px;
  width: 100%;
  margin: auto;
}
body .home__testimonials-container > h1 {
  font-family: var(--header-font);
  padding-bottom: 4rem;
}
@media (max-width: 500px) {
  body .home__testimonials-container > h1 {
    text-align: center;
  }
}
body .home__testimonials-container__carousel-cell {
  height: 260px;
  max-width: 70%;
  margin: auto;
  padding: 0 6rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 875px) and (max-width: 995px) {
  body .home__testimonials-container__carousel-cell {
    height: 300px;
  }
}
@media (min-width: 720px) and (max-width: 875px) {
  body .home__testimonials-container__carousel-cell {
    height: 350px;
  }
}
@media (min-width: 650px) and (max-width: 720px) {
  body .home__testimonials-container__carousel-cell {
    height: 400px;
  }
}
@media (min-width: 600px) and (max-width: 650px) {
  body .home__testimonials-container__carousel-cell {
    height: 450px;
  }
}
@media (min-width: 550px) and (max-width: 600px) {
  body .home__testimonials-container__carousel-cell {
    height: 500px;
  }
}
@media (min-width: 520px) and (max-width: 550px) {
  body .home__testimonials-container__carousel-cell {
    height: 550px;
  }
}
@media (max-width: 475px) and (max-width: 520px) {
  body .home__testimonials-container__carousel-cell {
    height: 800px;
  }
}
@media (min-width: 460px) and (max-width: 475px) {
  body .home__testimonials-container__carousel-cell {
    height: 780px;
  }
}
@media (max-width: 400px) and (max-width: 460px) {
  body .home__testimonials-container__carousel-cell {
    height: 600px;
  }
}
@media (max-width: 400px) {
  body .home__testimonials-container__carousel-cell {
    height: 1000px;
  }
}
body .home__testimonials-container__carousel-cell__author {
  text-align: center;
  font-family: var(--info-font);
  padding: 2rem 0;
  margin-bottom: 2rem;
  font-size: 15pt;
  margin-top: auto;
  flex: 0 0 30%;
}
body .home__testimonials-container__carousel-cell__quote {
  text-align: center;
  flex: 0 0 70%;
}
body footer {
  background-color: var(--secondary-dark);
  color: var(--background-light);
  width: 100%;
  font-size: 10pt;
}
body footer > ul {
  margin: 0;
  padding: 25px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
  width: 100%;
  max-width: 95%;
}
@media (max-width: 825px) {
  body footer > ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
body footer > ul li {
  list-style: none;
  display: inline;
}
body footer > ul li:last-of-type {
  color: var(--secondary-light);
}
body footer > ul li > a, body footer > ul li > span {
  cursor: pointer;
}
body footer > ul li > a:hover, body footer > ul li > span:hover {
  transition: 0.4s;
  color: var(--main-light);
}
body .contact {
  background-color: var(--main-light);
  color: var(--secondary-dark);
  padding: 9rem 0;
}
@media (max-width: 400px) {
  body .contact {
    padding: 4rem 0;
  }
}
@media (min-width: 401px) and (max-width: 825px) {
  body .contact {
    text-align: center;
  }
}
body .contact__block {
  display: flex;
  flex-direction: row;
  gap: 10rem;
  max-width: 1400px;
  margin: auto;
  position: relative;
}
@media (max-width: 825px) {
  body .contact__block {
    flex-direction: column;
  }
}
body .contact__block:first-of-type {
  padding-right: 10rem;
}
@media (max-width: 825px) {
  body .contact__block:first-of-type {
    padding: 0 1rem;
  }
}
@media (min-width: 825px) and (max-width: 1560px) {
  body .contact__block {
    gap: 5rem;
    padding-left: 1rem;
  }
}
@media (max-width: 825px) {
  body .contact__block {
    gap: 2rem;
  }
}
body .contact__block::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #fff;
  transform: translateX(-50%);
}
@media (max-width: 1560px) {
  body .contact__block::before {
    left: 30%;
  }
}
@media (max-width: 825px) {
  body .contact__block::before {
    width: 0;
  }
}
body .contact__block-item {
  flex: 0 0 50%;
}
body .contact__block-item:last-of-type > h1 {
  padding-bottom: 2rem;
}
@media (max-width: 825px) {
  body .contact__block-item:last-of-type > h1 {
    padding-bottom: 0;
  }
}
@media (max-width: 1560px) {
  body .contact__block-item {
    flex: 0 0 70%;
  }
  body .contact__block-item:first-child {
    flex: 0 0 30%;
  }
}
body .contact__block-item__socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1300px) {
  body .contact__block-item__socials {
    display: flex;
    flex-direction: column;
  }
}
body .contact__block-item__socials > h1 {
  font-family: var(--info-font);
  padding-top: 0;
  font-weight: 100;
  border-right: 1px solid var(--background-light);
  padding-right: 1rem;
}
@media (max-width: 1300px) {
  body .contact__block-item__socials > h1 {
    border-right: unset;
    margin-bottom: 0;
  }
}
body .contact__block-item__socials-icons {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
@media (max-width: 1300px) {
  body .contact__block-item__socials-icons {
    padding-bottom: 2rem;
  }
}
body .contact__block-item__socials-icons__block {
  width: 35px;
  height: 35px;
  background-color: var(--main-light); /* Example background color */
  border-radius: 50%; /* Makes the shape a circle */
  z-index: 0; /* Z-index layering */
  /* Additional styles for alignment/display */
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s;
}
body .contact__block-item__socials-icons__block:hover {
  opacity: 0.7;
  transition: 0.4s;
}
body .contact__block-item__socials-icons__block > a {
  height: 35px;
}
body .contact__block-item > h1 {
  font-family: var(--info-font);
  padding-top: 0;
  font-weight: 100;
  padding-right: 1rem;
}
body .contact__block-item > p {
  display: flex;
  justify-content: center;
}
body .contact__block-item > p svg {
  padding-right: 7px;
}
body .contact__block-item > form {
  display: flex;
  flex-direction: column;
}
@media (max-width: 825px) {
  body .contact__block-item > form {
    border-bottom: 1px solid var(--background-light);
    padding-bottom: 2rem;
    max-width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
  }
}
body .contact__block-item > form > input,
body .contact__block-item > form textarea {
  font-family: inherit;
  background-color: var(--main-light);
  border: 0;
  border-bottom: 1px solid var(--secondary-dark);
  font-size: inherit;
  margin-top: 1rem;
  color: inherit;
  width: 100%;
}
body .contact__block-item > form > button {
  width: 239px;
  text-align: center;
  transition: 0.4s;
  margin-top: 4rem;
  position: relative;
  left: 35%;
}
@media (max-width: 1080px) {
  body .contact__block-item > form > button {
    left: 0;
  }
}
body .contact__block-item > form > button:hover {
  transition: 0.4s;
  box-shadow: unset;
}
body .contact__block-item > ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 825px) {
  body .contact__block-item > ul {
    text-align: center;
    align-items: center;
  }
}
body .contact__block-item > ul > li {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 5px;
}
@media (max-width: 825px) {
  body .contact__block-item > ul > li {
    max-width: 675px;
    width: 100%;
  }
  body .contact__block-item > ul > li iframe {
    max-width: 100%;
  }
}
body .contact__block-item > ul > li .locations {
  display: flex;
}
@media (max-width: 825px) {
  body .contact__block-item > ul > li .locations {
    display: none;
  }
}
body .contact__block-item > ul > li .locations > img {
  margin: 8px 1rem;
  height: 340px;
}
body .contact__block-item > ul > li .locations > ul {
  padding: 0;
  min-width: 225px;
}
body .contact__block-item > ul > li .locations > ul > li {
  list-style: none;
  padding-bottom: 2.5rem;
}
body .contact__block-item > ul > li .locations > ul > li:last-of-type {
  padding-bottom: 0;
}
body .contact__block-item > ul > li > a {
  transition: 0.4s;
}
body .contact__block-item > ul > li > a .circle-container {
  transition: 0.4s;
  margin-left: 1rem;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* X-offset, Y-offset, Blur-radius, Color */
}
@media (max-width: 400px) {
  body .contact__block-item > ul > li > a .circle-container {
    margin-left: unset;
    margin-bottom: 1rem;
  }
}
body .contact__block-item > ul > li > a .circle-container > img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
body .contact__block-item > ul > li > a:hover {
  transition: 0.4s;
}
body .contact__block-item > ul > li > a:hover .circle-container {
  transition: 0.4s;
  box-shadow: unset;
}
body .contact__block-item > ul > li > h1 {
  font-family: var(--info-font);
  padding-top: 2rem;
  font-weight: 100;
}
body .contact__block-item > ul > li > svg {
  padding-right: 1rem;
}
body .contact__block-item > ul > li:last-child {
  margin-top: 2rem;
}
@media (max-width: 400px) {
  body .contact__block-item > ul > li:last-child {
    flex-direction: column;
  }
  body .contact__block-item > ul > li:last-child > h1 {
    display: none;
  }
}
@media (min-width: 401px) and (max-width: 825px) {
  body .contact__block-item > ul > li:last-child {
    border-top: 1px solid var(--background-light);
    display: flex;
    justify-content: center;
    padding-top: 2rem;
  }
  body .contact__block-item > ul > li:last-child > h1 {
    display: none;
  }
}
body .terms-and-conditions,
body .privacy-policy {
  max-width: 1180px;
  width: 100%;
  padding: 4rem 3rem;
  margin: 4rem auto;
  background-color: var(--main-mid);
}
@media (max-width: 1280px) {
  body .terms-and-conditions,
  body .privacy-policy {
    padding: 4rem 0;
  }
  body .terms-and-conditions > h1,
  body .privacy-policy > h1 {
    padding: 2rem;
  }
  body .terms-and-conditions > h2,
  body .privacy-policy > h2 {
    padding: 2rem;
  }
  body .terms-and-conditions > p,
  body .privacy-policy > p {
    padding: 0 2rem;
  }
}
body .terms-and-conditions > h1,
body .privacy-policy > h1 {
  text-align: center;
  font-family: var(--header-font);
  padding-bottom: 2rem;
}
body .terms-and-conditions > h2,
body .privacy-policy > h2 {
  font-family: var(--info-font);
  padding-top: 2rem;
}
@media (max-width: 600px) {
  body .reflexes-about > p, body .reflexes-about > ul {
    margin: 0 3rem;
  }
}
body .reflexes-about__block-item__text {
  padding: 1rem !important;
}
body .journey-about,
body .reflexes-about {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  padding: 4rem 0;
}
body .journey-about__info,
body .reflexes-about__info {
  padding: 2rem 1rem 0 1rem;
  display: flex;
  align-content: start;
  border-top: 1px solid var(--main-dark);
  font-size: 11pt;
  justify-content: center;
  flex-flow: wrap;
  text-align: center;
}
body .journey-about__info > svg,
body .reflexes-about__info > svg {
  padding-right: 7px;
}
@media (max-width: 600px) {
  body .journey-about__info > svg,
  body .reflexes-about__info > svg {
    padding-bottom: 1rem;
  }
}
body .journey-about__info a,
body .reflexes-about__info a {
  color: var(--main-dark);
}
body .journey-about__title,
body .reflexes-about__title {
  margin-block-start: 0;
  margin-block-end: 0;
  max-width: 1180px;
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 24pt; /* Adjust font size as needed */
  margin: 0 auto; /* Space around the heading */
  font-family: var(--header-font);
  color: var(--secondary-dark);
  margin-bottom: 4rem;
}
body .journey-about__title .line,
body .reflexes-about__title .line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%; /* Center the line vertically */
  height: 1px; /* Thickness of the line */
  background-color: var(--secondary-dark); /* Line color */
  z-index: 1; /* Ensure line is behind the text */
  margin: 0 1rem;
}
@media (max-width: 600px) {
  body .journey-about__title .line,
  body .reflexes-about__title .line {
    background-color: var(--background-light);
  }
}
body .journey-about__title span,
body .reflexes-about__title span {
  background-color: var(--background-light); /* Match background color to hide the line */
  padding: 0 10px; /* Add padding to create space around the text */
  position: relative; /* Allow positioning of the text */
  z-index: 2; /* Ensure text is above the line */
}
body .journey-about__block,
body .reflexes-about__block {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  padding: 0 1rem;
  gap: 40;
}
@media (max-width: 1000px) {
  body .journey-about__block,
  body .reflexes-about__block {
    display: flex;
    flex-direction: column-reverse;
  }
}
body .journey-about__block-item:first-child,
body .reflexes-about__block-item:first-child {
  flex: 0 0 75%;
}
@media (max-width: 1000px) {
  body .journey-about__block-item:first-child,
  body .reflexes-about__block-item:first-child {
    padding: 0 1rem;
  }
}
body .journey-about__block-item:last-child,
body .reflexes-about__block-item:last-child {
  flex: 0 0 25%;
  margin-right: 20px;
  padding: 0 1rem;
}
@media (max-width: 1000px) {
  body .journey-about__block-item:last-child,
  body .reflexes-about__block-item:last-child {
    display: flex;
    align-items: center;
  }
}
body .journey-about__block-item__info,
body .reflexes-about__block-item__info {
  font-family: var(--info-font);
  text-align: center;
  line-height: 35px;
}
@media (max-width: 1000px) {
  body .journey-about__block-item__info,
  body .reflexes-about__block-item__info {
    padding-top: 2rem;
  }
}
body .journey-about__block-item__text,
body .reflexes-about__block-item__text {
  padding: 4rem 1rem;
}
body .journey-about__block-item > img,
body .reflexes-about__block-item > img {
  padding-left: 1rem;
  height: 100%;
  width: auto;
  max-width: 100%; /* Ensure the image doesn't exceed container width */
  -o-object-fit: contain;
     object-fit: contain; /* Maintain aspect ratio and contain within the box */
  box-sizing: border-box; /* Prevent padding overflow */
}
@media (min-width: 1225px) {
  body .journey-about__block-item > img,
  body .reflexes-about__block-item > img {
    padding-left: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1225px) {
  body .journey-about__block-item > img,
  body .reflexes-about__block-item > img {
    padding-left: 2rem;
  }
}
@media (max-width: 1000px) {
  body .journey-about__block-item > img,
  body .reflexes-about__block-item > img {
    padding-left: 0;
    max-width: 200px;
    height: auto;
    margin: auto;
  }
}
body .journey-qualifications, body .journey-reflexes,
body .reflexes-qualifications,
body .reflexes-reflexes {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  padding: 4rem 0;
}
body .journey-qualifications__block, body .journey-reflexes__block,
body .reflexes-qualifications__block,
body .reflexes-reflexes__block {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  padding: 0 1rem;
}
@media (max-width: 1000px) {
  body .journey-qualifications__block, body .journey-reflexes__block,
  body .reflexes-qualifications__block,
  body .reflexes-reflexes__block {
    display: flex;
    flex-direction: column;
  }
}
body .journey-qualifications__block-item > h1, body .journey-reflexes__block-item > h1,
body .reflexes-qualifications__block-item > h1,
body .reflexes-reflexes__block-item > h1 {
  font-family: var(--header-font);
  text-align: center;
  padding-bottom: 4rem;
}
body .journey-qualifications__block-item:first-child, body .journey-reflexes__block-item:first-child,
body .reflexes-qualifications__block-item:first-child,
body .reflexes-reflexes__block-item:first-child {
  flex: 0 0 25%;
}
@media (max-width: 1000px) {
  body .journey-qualifications__block-item:first-child, body .journey-reflexes__block-item:first-child,
  body .reflexes-qualifications__block-item:first-child,
  body .reflexes-reflexes__block-item:first-child {
    display: flex;
    align-items: center;
  }
}
body .journey-qualifications__block-item:last-child, body .journey-reflexes__block-item:last-child,
body .reflexes-qualifications__block-item:last-child,
body .reflexes-reflexes__block-item:last-child {
  flex: 0 0 75%;
}
body .journey-qualifications__block-item__text, body .journey-reflexes__block-item__text,
body .reflexes-qualifications__block-item__text,
body .reflexes-reflexes__block-item__text {
  padding-bottom: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
  box-sizing: border-box; /* Prevent padding overflow */
  margin-right: 20px;
}
body .journey-qualifications__block-item__img, body .journey-reflexes__block-item__img,
body .reflexes-qualifications__block-item__img,
body .reflexes-reflexes__block-item__img {
  text-align: center;
}
@media (max-width: 1000px) {
  body .journey-qualifications__block-item__img > img, body .journey-reflexes__block-item__img > img,
  body .reflexes-qualifications__block-item__img > img,
  body .reflexes-reflexes__block-item__img > img {
    max-width: 200px;
    height: auto;
    margin: auto;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
body .journey-qualifications__block-item > img, body .journey-reflexes__block-item > img,
body .reflexes-qualifications__block-item > img,
body .reflexes-reflexes__block-item > img {
  height: 100%;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  box-sizing: border-box;
}
body .journey-values,
body .reflexes-values {
  text-align: center;
  background-color: var(--main-mid);
  padding: 6rem 1rem;
}
body .journey-values h1,
body .reflexes-values h1 {
  font-family: var(--header-font);
  padding-bottom: 4rem;
}
body .journey-values__container,
body .reflexes-values__container {
  max-width: 1180px;
  width: 100%;
  margin: auto;
}
body .journey-values__container-text,
body .reflexes-values__container-text {
  padding: 4rem 0;
}
body .journey-values__container > ul,
body .reflexes-values__container > ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-left: 0;
  margin-left: 0;
}
@media (max-width: 550px) {
  body .journey-values__container > ul,
  body .reflexes-values__container > ul {
    flex-direction: column;
  }
}
body .journey-values__container > ul li,
body .reflexes-values__container > ul li {
  list-style: none;
  display: inline;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--info-font);
}
@media (max-width: 550px) {
  body .journey-values__container > ul li,
  body .reflexes-values__container > ul li {
    padding-bottom: 2.5rem;
  }
  body .journey-values__container > ul li:last-of-type,
  body .reflexes-values__container > ul li:last-of-type {
    padding-bottom: 0;
  }
}
body .journey-values__container > ul li > svg,
body .reflexes-values__container > ul li > svg {
  margin-bottom: 1rem;
}
body .kinesiology-session {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  padding: 4rem 0;
}
@media (max-width: 1000px) {
  body .kinesiology-session {
    padding: unset;
    padding: 0;
    padding-top: 4rem;
  }
}
body .kinesiology-session__title {
  margin-block-start: 0;
  margin-block-end: 0;
  max-width: 1180px;
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 24pt; /* Adjust font size as needed */
  margin: 0 auto; /* Space around the heading */
  font-family: var(--header-font);
  color: var(--secondary-dark);
  margin-bottom: 4rem;
}
body .kinesiology-session__title .line {
  position: absolute;
  left: 0;
  margin: 0 1rem;
  right: 0;
  top: 50%; /* Center the line vertically */
  height: 1px; /* Thickness of the line */
  background-color: var(--secondary-dark); /* Line color */
  z-index: 1; /* Ensure line is behind the text */
}
@media (max-width: 500px) {
  body .kinesiology-session__title .line {
    background-color: var(--background-light);
  }
}
body .kinesiology-session__title span {
  background-color: var(--background-light); /* Match background color to hide the line */
  padding: 0 10px; /* Add padding to create space around the text */
  position: relative; /* Allow positioning of the text */
  z-index: 2; /* Ensure text is above the line */
}
body .kinesiology-session__block {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  padding: 0 1rem;
}
@media (max-width: 1000px) {
  body .kinesiology-session__block {
    flex-direction: column-reverse;
    align-items: center;
  }
}
body .kinesiology-session__block-item:first-child {
  flex: 0 0 70%;
  padding-left: 2rem;
  align-content: center;
}
@media (max-width: 1000px) {
  body .kinesiology-session__block-item:first-child {
    padding: unset;
  }
}
body .kinesiology-session__block-item:last-child {
  flex: 0 0 30%;
}
body .kinesiology-session__block-item__info {
  font-family: var(--info-font);
  text-align: center;
  line-height: 35px;
}
@media (max-width: 1000px) {
  body .kinesiology-session__block-item__info {
    padding-top: 2rem;
  }
}
body .kinesiology-session__block-item__text {
  padding: 4rem 1rem;
}
@media (max-width: 1000px) {
  body .kinesiology-session__block-item__text {
    padding: 4rem 1rem;
  }
}
body .kinesiology-session__block-item__text > h2 {
  font-family: var(--info-font);
  color: var(--main-dark);
  padding-top: 2rem;
}
body .kinesiology-session__block-item__text > h2:first-of-type {
  padding-top: 0;
}
body .kinesiology-session__block-item > img {
  padding-left: 2rem;
  height: 100%;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  box-sizing: border-box; /* Prevent padding overflow */
}
@media (max-width: 1000px) {
  body .kinesiology-session__block-item > img {
    max-width: 200px;
    height: auto;
    margin: auto;
    padding-left: 0;
  }
}
body .kinesiology-support {
  background-color: var(--main-dark);
  padding: 6rem 0;
  color: var(--background-light);
  font-family: var(--info-font);
  /* Media Queries for Responsive Design */
}
@media (max-width: 500px) {
  body .kinesiology-support {
    padding: 6rem 1rem;
  }
}
body .kinesiology-support__info {
  font-size: 11pt;
  font-family: var(--body-font);
  font-style: italic;
  font-weight: 300;
  padding-bottom: 4rem;
  text-align: center;
}
body .kinesiology-support > h1 {
  font-family: var(--header-font);
  text-align: center;
  font-weight: 100;
}
body .kinesiology-support__board {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Use flexible fractions */
  grid-template-rows: repeat(3, auto); /* Let rows adjust height */
  gap: 1px;
  background-color: var(--main-dark);
  width: 100%; /* Ensure it scales with the container */
}
body .kinesiology-support__board-cell {
  background-color: transparent;
  display: flex;
  justify-content: left;
  align-items: center;
  padding-left: 2rem;
  border-right: 1px solid var(--background-light);
  border-bottom: 1px solid var(--background-light);
  padding-right: 1rem;
  line-height: 35px;
  position: relative;
}
@media (max-width: 1200px) {
  body .kinesiology-support__board-cell {
    padding-left: 0;
    padding-right: 0;
  }
}
body .kinesiology-support__board-cell > span {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0 1rem;
  overflow: hidden;
}
@media (max-width: 380px) {
  body .kinesiology-support__board-cell > span {
    padding: 0;
  }
}
body .kinesiology-support__board-cell > span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 49%;
  width: 0;
  height: 1px;
  background-color: white;
  z-index: 0;
  transition: all 0.3s ease;
  transform: translateX(-50%) scaleX(0);
}
body .kinesiology-support__board-cell > span:hover::after {
  z-index: 0;
  width: 100%;
  transform: translateX(-50%) scaleX(1);
}
body .kinesiology-support__board-cell > span > h3 {
  background-color: var(--main-dark);
  font-family: var(--info-font);
  font-size: inherit;
  font-weight: 300;
  z-index: 2;
  padding: 0 5px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
}
@media (max-width: 380px) {
  body .kinesiology-support__board-cell > span > h3 {
    max-width: unset;
    overflow: unset;
    white-space: unset;
    padding: 0;
  }
}
body .kinesiology-support__board-cell > svg {
  padding-left: 1rem;
  cursor: pointer;
}
body .kinesiology-support__board-cell:nth-child(3n) {
  border-right: none; /* Remove right border on last column */
}
body .kinesiology-support__board-cell:nth-last-child(-n+3) {
  border-bottom: none; /* Remove bottom border on last row */
}
body .kinesiology-support__board-cell > img {
  padding: 2rem;
}
@media (max-width: 1200px) {
  body .kinesiology-support__board {
    max-width: 500px;
    grid-template-columns: 1fr; /* Change to 1 column */
  }
  body .kinesiology-support__board-cell {
    border-right: 0;
    text-align: left;
  }
  body .kinesiology-support__board-cell:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--background-light); /* Remove bottom border on last row */
  }
}
body .kinesiology-faqs {
  background-color: var(--main-mid);
  padding: 6rem 1rem;
}
body .kinesiology-faqs__title {
  margin-block-start: 0;
  margin-block-end: 0;
  max-width: 1180px;
  width: 100%;
  position: relative;
  font-size: 24pt; /* Adjust font size as needed */
  margin: 0 auto; /* Space around the heading */
  font-family: var(--header-font);
  color: var(--secondary-dark);
  margin-bottom: 4rem;
}
body .kinesiology-faqs__title .line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%; /* Center the line vertically */
  height: 1px; /* Thickness of the line */
  background-color: var(--secondary-dark); /* Line color */
  z-index: 1; /* Ensure line is behind the text */
}
body .kinesiology-faqs__title span {
  background-color: var(--main-mid); /* Match background color to hide the line */
  padding: 0 10px; /* Add padding to create space around the text */
  position: relative; /* Allow positioning of the text */
  z-index: 2; /* Ensure text is above the line */
}
body .kinesiology-faqs__accordion {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}
body .kinesiology-faqs__accordion > li {
  list-style: none;
}
body .kinesiology-faqs__accordion > li:last-child {
  padding-top: 2rem;
  font-size: 11pt;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-flow: wrap;
}
@media (max-width: 755px) {
  body .kinesiology-faqs__accordion > li:last-child {
    display: block;
    text-align: center;
  }
}
body .kinesiology-faqs__accordion > li:last-child > svg {
  padding-right: 7px;
}
body .kinesiology-faqs__accordion > li:last-child > a {
  color: var(--main-dark);
}
body .kinesiology-faqs__accordion > li:last-child > a:hover {
  transition: 0.4s;
  color: var(--main-light);
}
body .kinesiology-faqs__accordion-item {
  border-bottom: 1px solid var(--secondary-dark);
  list-style: none;
}
body .kinesiology-faqs__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  padding-left: 10px;
  cursor: pointer;
  font-family: var(--info-font);
  padding-top: 30px;
  line-height: 35px;
}
body .kinesiology-faqs__accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-family: var(--body-font);
  padding-left: 10px;
}
body .kinesiology-faqs input[type=checkbox] {
  display: none;
}
body .kinesiology-faqs input:checked ~ .kinesiology-faqs__accordion-content {
  max-height: 895px;
  padding: 10px;
}
body .kinesiology-room {
  padding: 6rem 0;
  width: 100%;
}
body .kinesiology-room > h1 {
  font-family: var(--header-font);
  text-align: center;
  padding-bottom: 4rem;
  color: var(--secondary-dark);
}
body .kinesiology-room > ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 650px) {
  body .kinesiology-room > ul {
    flex-direction: column;
  }
}
body .kinesiology-room > ul li {
  list-style: none;
  display: inline-flex;
}
body .kinesiology-room > ul li:nth-child(2) {
  padding: 0 2rem;
}
@media (max-width: 650px) {
  body .kinesiology-room > ul li:nth-child(2) {
    padding: 0;
  }
}
body .kinesiology-room > ul li > img {
  width: 100%;
  height: auto;
}
@media (max-width: 650px) {
  body .kinesiology-room > ul li > img {
    padding: 1rem 0;
  }
}
body .error-404 {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding: 9rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .error-404 > h1 {
  font-family: var(--header-font);
}
body .error-404 > button:hover {
  transition: 0.4s;
  box-shadow: none;
}/*# sourceMappingURL=css.css.map */