@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playball&display=swap");
@keyframes bounce {
  0% {
    transform: translateY(-25%);
  }
  50% {
    transform: translateY(-75%);
  }
  100% {
    transform: translateY(-25%);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 5.2rem;
  padding: 0.6rem 1.2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.1254901961);
  z-index: 6;
}
nav .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
nav .logo .logo-img {
  width: 3.2rem;
  height: 4.2rem;
}
nav .logo .logo-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #002942;
  letter-spacing: 2px;
}
nav .logo .logo-title span {
  font-family: "Playball", cursive;
  font-weight: 500;
  color: #ce8ae1;
  letter-spacing: 2px;
}
nav ul {
  display: flex;
}
nav ul li {
  list-style-type: none;
}
nav ul li a {
  padding: 0 0.8rem;
  position: relative;
  display: inline-block;
  font-size: 1.1363636364rem;
  font-weight: 500;
  color: #002942;
  transition: color 0.3s ease-in-out;
}
nav ul li .link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #9747ff;
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}
nav ul li .link:hover {
  color: rgba(0, 41, 66, 0.4588235294);
}
nav ul li .link:hover::after {
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
nav ul li .active {
  color: #002942;
  font-weight: bold;
}
nav ul li .active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: #9747ff;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

@media screen and (min-width: 480px) and (max-width: 768px) {
  nav {
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  nav .logo {
    margin: 0 auto;
  }
  nav .logo .logo-img {
    height: 3.6rem;
  }
  nav ul {
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
  }
  nav .logo {
    z-index: 2;
  }
  nav .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 2rem;
    height: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 1.5rem;
    right: 1.2rem;
    z-index: 2;
  }
  nav .burger-menu span {
    width: 100%;
    height: 3px;
    background: #002942;
    transition: all 0.3s ease-in-out;
  }
  nav .burger-menu.active span:nth-child(1) {
    transform: translateY(15px) rotate(45deg);
  }
  nav .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  nav .burger-menu.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1;
  }
  nav ul.menu-open {
    transform: translateY(0);
  }
}
.home {
  width: 100%;
  min-height: 100dvh;
}
.home__bg {
  display: flex;
  width: clamp(280px, 720px, 100%);
  height: 240px;
  background-image: url("../assets/home-bg.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.home__content {
  min-height: 360px;
  min-width: 310px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 3.6rem;
}
.home__content__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.home__content__wrapper .home-logo {
  display: none;
}
.home__content__wrapper .heading-wrapper {
  text-align: center;
}
.home__content__wrapper .heading-wrapper h2 {
  color: #002942;
  font-size: 2rem;
}
.home__content .scroll-next {
  position: relative;
  color: #002942;
  font-weight: 500;
  cursor: pointer;
}
.home__content .scroll-next span {
  width: 24px;
  height: 24px;
  background-image: url("../assets/chevron-down.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: -24px;
  animation: bounce 1.5s ease-in-out infinite;
}

@media screen and (min-width: 768px) {
  .home {
    flex-direction: row;
  }
  .home__content {
    justify-content: space-between;
  }
  .home__bg {
    min-height: 600px;
  }
  .home__content {
    min-height: 480px;
  }
  .home__content__wrapper .home-logo {
    display: flex;
  }
}
@media screen and (min-width: 480px) and (max-width: 768px) {
  .home {
    margin-top: 4.8rem;
  }
}
@media screen and (max-width: 480px) {
  .home {
    margin-top: 2.4rem;
  }
}
.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}
.about__content p {
  font-size: 1rem;
  text-wrap: pretty;
}
.about__content p,
.about__content h1,
.about__content h2 {
  width: 100%;
  text-align: center;
}
.about__content__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  width: clamp(300px, 560px, 100%);
}
.about__content__col iframe {
  min-width: 280px !important;
}
.about__content__col .mission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
}
.about__content__col .mission__title {
  letter-spacing: 2px;
  color: #002942;
  font-size: 2.5rem;
  font-weight: 700;
}
.about__content__col .mission__description .highlight {
  display: block;
}
.about__content__col ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}
.about__content__col ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}
.about__content__col ul li .value__title {
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
  color: #002942;
  font-size: 1.75rem;
}

@media screen and (min-width: 768px) {
  .about__content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
  }
  .about__content p,
  .about__content h1,
  .about__content h2 {
    text-align: start;
  }
  .about__content__col {
    display: flex;
    flex-direction: column;
    justify-content: center center;
    gap: 1.2rem;
    padding: 1.2rem;
    width: clamp(280px, 440px, 100%);
  }
  .about__content__col .mission {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .about__content__col .mission__title {
    letter-spacing: 2px;
    color: #002942;
    font-size: 2.5rem;
    font-weight: 700;
  }
  .about__content__col .mission__description .highlight {
    display: block;
  }
  .about__content__col ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 760px;
    gap: 1.2rem;
  }
  .about__content__col ul li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
}
.team {
  position: relative;
  overflow: hidden;
}
.team__content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
.team__content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  width: 110%;
  height: 200px;
  visibility: hidden;
  background: linear-gradient(90deg, #002942 0%, #3a6ea5 20%, #9747ff 40%, #5a189a 50%, #9747ff 60%, #3a6ea5 80%, #002942 100%);
  z-index: -1;
}
.team__content__card {
  width: clamp(280px, 360px, 100%);
  min-height: 428px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.8rem;
  padding: 2.4rem 1rem;
  border-radius: 25px;
  background-color: #ffffff;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.1254901961), -1px -1px 6px 0 rgba(255, 255, 255, 0.1450980392);
}
.team__content__card__img-wrapper {
  width: 204px;
  height: 204px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #002942, #9747ff, #ce8ae1);
}
.team__content__card__img-wrapper img {
  width: 194px;
  height: 194px;
}
.team__content__card__details {
  text-align: center;
}
.team__content__card__details h2 {
  font-size: 1.5rem;
  color: #002942;
}
.team__content__card__details h4 {
  font-size: 1.1rem;
  color: #9747ff;
  letter-spacing: 1px;
}
.team__content__card__btn {
  border: none;
  color: #002942;
  background-color: transparent;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.team__modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
  background: rgba(0, 0, 0, 0.3137254902);
  opacity: 0;
  z-index: 999;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.team .modal-content {
  position: relative;
  width: clamp(310px, 960px, 100%);
  padding: 1.2rem;
  margin: auto;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.8rem;
  border-radius: 10px;
  background: #ffffff;
  text-align: center;
}
.team .modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(-135deg, #002942 10%, #3a6ea5 30%, #9747ff 55%, #5a189a 70%, #ce8ae1 85%, #eadcf8 100%);
}
.team .modal-content > * {
  position: relative;
  z-index: 2;
}
.team .modal-content .modal-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
.team .modal-content .modal-header .modal-img {
  border: 4px solid #ffffff;
  border-radius: 125px;
}
.team .modal-content .modal-header .modal-headings {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.team .modal-content .modal-header .modal-headings h2 {
  color: #002942;
  font-size: 2rem;
}
.team .modal-content .modal-header .modal-headings h4 {
  text-align: center;
  max-width: 30rem;
  color: #ce8ae1;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.team .modal-content .modal-description {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
.team .modal-content .modal-description h2 {
  color: #002942;
  font-size: 1.75rem;
}
.team .modal-content .modal-description p {
  background-color: rgba(191, 167, 239, 0.2509803922);
  padding: 1.2rem;
  border-radius: 10px;
}
.team .open-modal {
  opacity: 1;
  pointer-events: auto;
}
.team .close-modal {
  height: 36px;
  width: 36px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  color: #ff0000;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.team .close-modal:hover {
  background-color: #dedede;
}

@media screen and (min-width: 480px) {
  .team__content {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .team__content__card {
    max-width: 320px;
  }
  .team .modal-content {
    align-items: flex-start;
    gap: 3.6rem;
  }
  .team .modal-content .modal-header {
    margin-top: 0;
    flex-direction: row;
    align-items: flex-end;
    gap: 3.2rem;
  }
  .team .modal-content .modal-header .modal-headings {
    align-items: flex-start;
    padding: 1.2rem 0;
  }
  .team .modal-content .modal-header .modal-headings h4 {
    text-align: start;
  }
  .team .modal-content .modal-description {
    align-items: flex-start;
    padding-bottom: 2.4rem;
  }
  .team .modal-content .modal-description p {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .team__content {
    flex-wrap: nowrap;
  }
  .team__content::after {
    visibility: visible;
  }
}
.services__content {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
.services__content__card {
  width: clamp(300px, 820px, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.1254901961), -1px -1px 6px 0 rgba(255, 255, 255, 0.1450980392);
}
.services__content__card .card-heading {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
}
.services__content__card .card-heading .service-img {
  width: 56px;
  height: 56px;
  background-image: url("../assets/clinical-eval.png");
  background-size: 65%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(58, 110, 165, 0.0823529412);
  border-radius: 50%;
}
.services__content__card .card-heading .service-name {
  font-size: 1.25rem;
  color: #002942;
}
.services__content__card .card-heading .service-price {
  font-size: 1.1363636364rem;
  color: #c5a3e6;
}
.services__content__card .card-heading .service-duration {
  color: #002942;
}
.services__content__card .card-description {
  text-align: center;
  text-wrap: balance;
}
.services__packages {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}
.services__packages .package {
  position: relative;
  width: clamp(300px, 360px, 100%);
  height: 480px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 1.2rem;
  background-color: #ffffff;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.1254901961), -1px -1px 6px 0 rgba(255, 255, 255, 0.1450980392);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.services__packages .package__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.services__packages .package__heading__title {
  color: #002942;
}
.services__packages .package__heading__therapy {
  color: #ce8ae1;
}
.services__packages .package__heading__price {
  color: #002942;
}
.services__packages .package img {
  width: 160px;
  height: 160px;
}
.services__packages .package__benefits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
.services__packages .package__benefits ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
.services__packages .package__benefits ul li {
  text-align: center;
  color: #8a8a8a;
}
.services__packages .package .package-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.services__packages .package:hover .package-btn {
  width: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

@media screen and (min-width: 768px) {
  .services__content__card {
    flex-direction: row;
    gap: 1.8rem;
  }
  .services__content__card .card-heading {
    min-width: 220px;
  }
  .services__content__card .card-description {
    text-align: start;
    text-wrap: pretty;
  }
  .services__packages {
    flex-direction: row;
  }
}
.contact__content {
  width: clamp(260px, 480px, 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 2.4rem;
  border-radius: 25px;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.1254901961), -1px -1px 6px 0 rgba(255, 255, 255, 0.1450980392);
  background-color: #ffffff;
  overflow: hidden;
}
.contact__content img {
  width: 100%;
  max-height: 180px;
}
.contact__content__divider {
  width: 100%;
  background-color: rgba(58, 110, 165, 0.0823529412);
}
.contact__content__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
.contact__content__form h2 {
  padding: 0.6rem 0;
  text-align: center;
  width: 100%;
  color: #002942;
}
.contact__content__form form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2.4rem;
  width: 100%;
}
.contact__content__form form .input-group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  position: relative;
  width: 100%;
}
.contact__content__form form .input-group .input-label {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  padding: 0 0.2rem;
  font-size: 1.1363636364rem;
  background-color: #ffffff;
  border-radius: 5px;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  z-index: 2;
}
.contact__content__form form .input-group .textarea-label {
  font-size: 1.1363636364rem;
  padding: 0.6rem 0;
}
.contact__content__form form .input-group input,
.contact__content__form form .input-group textarea {
  padding: 0.6rem;
  width: 100%;
  font-size: 1.1363636364rem;
  color: #002942;
  background: transparent;
  border: 1px solid #002942;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  resize: none;
}
.contact__content__form form .input-group input:focus, .contact__content__form form .input-group input.has-text,
.contact__content__form form .input-group textarea:focus,
.contact__content__form form .input-group textarea.has-text {
  outline: none;
  border-color: #9747ff;
}
.contact__content__form form .input-group .invalid-input {
  border-color: #ff0000 !important;
}
.contact__content__form form .input-group .invalid-label {
  color: #ff0000 !important;
}
.contact__content__form button {
  padding-left: 3.6rem;
  padding-right: 3.6rem;
  margin: 1.2rem 0;
}

@media screen and (min-width: 768px) {
  .contact__content {
    flex-direction: row;
    width: clamp(260px, 820px, 100%);
  }
  .contact__content img {
    width: 50%;
    min-height: 580px;
  }
}
.footer {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}
.footer__row {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}
.footer__row__logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}
.footer__row__logo .logo-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #002942;
  font-size: 1.75rem;
}
.footer__row__logo .logo-title .under-title {
  font-family: "Playball", cursive;
  font-size: 1.5rem;
  font-weight: 500;
  color: #ce8ae1;
  letter-spacing: 2px;
}
.footer__row__logo .logo-title .current-year {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #8a8a8a;
}
.footer__row ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer__row ul li a {
  color: rgba(0, 41, 66, 0.4588235294);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.footer__row ul li a:hover {
  color: #002942;
}
.footer__row ul li .social-media-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.6rem;
  margin: 0 0.6rem;
  border-radius: 50%;
}
.footer__row ul li .social-media-link:hover {
  box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.1254901961), -1px -1px 6px 0 #ffffff;
  background-color: #f5f5f5;
}

@media screen and (min-width: 768px) {
  .footer__row {
    flex-direction: row;
  }
}
body {
  position: relative;
}
body .top-redirect {
  width: 36px;
  height: 36px;
  position: fixed;
  bottom: 72px;
  right: 0;
  padding: 0.6rem;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  box-shadow: -2px 2px 4px 0 rgba(0, 0, 0, 0.1254901961);
  background-color: #ffffff;
  background-image: url("../assets/top-redirect.png");
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main section {
  width: 100%;
  min-height: 100dvh;
  padding: 5.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 3.2rem;
  column-gap: 1.8rem;
}
@media screen and (min-width: 768px) {
  main section {
    padding: 7.2rem 2.4rem;
  }
}

.section-primary {
  background-color: rgba(234, 220, 248, 0.2509803922);
}

.section-secondary {
  background-color: rgba(58, 110, 165, 0.0823529412);
}

.custom-btn, .package-btn, .primary-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 1.1363636364rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.primary-btn {
  background-color: #002942;
  color: #ffffff;
  border: none;
}
.primary-btn:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1254901961);
  background-color: #3a6ea5;
}

.package-btn {
  width: fit-content;
  background-color: #ce8ae1;
  color: #ffffff;
  border: none;
  border-radius: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.package-btn:hover {
  background-color: #9747ff;
}

.section-heading {
  padding: 0.6rem 1.2rem;
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
  color: #002942;
  letter-spacing: 2px;
  text-align: center;
}
.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 50%;
  background-color: #9747ff;
}

.section-description {
  width: clamp(260px, 820px, 100%);
  font-size: 1.1363636364rem;
  text-align: justify;
  text-wrap: pretty;
}

ul li {
  list-style: none;
}

.highlight {
  letter-spacing: 1px;
  color: #5a189a;
  font-weight: 700;
  font-size: 1.1363636364rem;
}

@media screen and (min-width: 768px) {
  .section-description {
    text-align: center;
    text-wrap: balance;
  }
}/*# sourceMappingURL=main.css.map */