@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pragati+Narrow:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
}

ul {
  list-style: none;
  padding-left: 0;
  list-style-position: inside;
}

header {
  padding: 40px 0;
  background-color: transparent;
  position: fixed;
  z-index: 1000;
  width: 100%;
  transition: background-color 0.3s ease;
}

body {
  overflow-x: hidden;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.secondary-button {
  width: 286px;
  height: 54px;
  gap: 0px;
  border-radius: 27px;
  background: rgba(33, 79, 179, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 300;
  line-height: 17.36px;
  letter-spacing: -0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
  z-index: 2;
}

.cta-button {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.cta-button::after {
  content: "";
  background-color: white;
  width: 286px;
  height: 54px;
  position: absolute;
  transform: translateY(4px);
  border-radius: 27px;
  z-index: 1;
}

.cta-button-specialization {
  width: 100%;
  margin-top: 49px;
  position: relative;
}

.cta-button-specialization > .secondary-button {
  width: 100%;
  display: flex;
  gap: 21px;
  align-items: center;
}

.cta-button-specialization > .secondary-button > p {
  font-family: Unbounded;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 17.36px;
  letter-spacing: -0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 0;
}

.secondary-button-outlay {
  width: 100%;
  height: 54px;
  background-color: rgba(192, 192, 192, 1);
  border-radius: 27px;
  position: absolute;
  top: 4px;
  left: 2px;
}

.logo img {
  height: 90px;
  object-fit: contain;
}

.nav-links ul {
  display: flex;
  list-style: none;
}

.nav-links ul li {
  margin: 0 15px;
}

.nav-links ul li a {
  text-decoration: none;
  color: rgba(33, 79, 179, 1);
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 400;
  line-height: 21.6px;
  letter-spacing: -0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.nav-links ul li a.selected {
  color: rgba(242, 115, 23, 1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1200px) {
  .cta-button::after {
    width: 200px;
  }

  .secondary-button {
    width: 200px;
  }

  .logo > img {
    width: 200px;
  }
}

@media (max-width: 991px) {
  .logo > img {
    height: 75px;
    width: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full screen height */
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%); /* Start off-screen */
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links ul {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .nav-links ul li {
    margin: 20px 0;
  }

  .nav-links ul li a {
    font-size: 1.5rem;
    color: #333;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .cta-button {
    display: none;
  }
}

@media (max-width: 576px) {
  header {
    padding: 20px 0;
  }

  .logo > img {
    height: 60px;
  }
}

/* ----------------------- MAIN -------------------- */

.main {
  height: 100vh;
  width: 100%;
  background-image: url("/assets/images/home/main.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 120px;
  overflow-x: hidden;
}

.main-container {
  display: flex;
  align-items: end;
  height: 100%;
}

.main-data {
  width: 50%;
}

.main-data > h1 {
  font-family: Unbounded;
  font-size: 40px;
  font-weight: 600;
  line-height: 61px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(242, 115, 23, 1);
  margin-bottom: 35px;
}

.main-data > p {
  font-family: Satoshi;
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(142, 142, 142, 1);
  margin-bottom: 40px;
}

.main-button {
  background-color: rgba(33, 79, 179, 1);
  width: fit-content;
  height: fit-content;
  font-family: Satoshi;
  font-size: 14px;
  font-weight: 700;
  line-height: 13.4px;
  letter-spacing: -0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
  padding: 24px 43px;
  border-radius: 40px;
  text-transform: uppercase;
  cursor: pointer;
}

.main-button:hover {
  color: white;
}

@media (max-width: 1200px) {
  .main-data > h1 {
    font-size: 32px;
    line-height: 48px;
  }
}

@media (max-width: 993px) {
}

@media (max-width: 768px) {
  .main {
    background-image: url("/assets/images/home/main_small.png");
    background-size: cover;
  }
  .main-data {
    width: 100%;
  }

  .main-data > h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .main-data > p {
    font-size: 14px;
    line-height: 24px;
    color: whitesmoke;
  }

  .main-button {
    padding: 18px 36px;
  }
}

@media (max-width: 576px) {
  .main-container {
    align-items: center;
  }

  .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }

  .main-data {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .main-data > h1,
  .main-data > p {
    text-align: center;
  }
}

/* ------------------------ THERAPIST --------------------------------
.find-therapist-container {
  margin-top: 150px;
}

.find-therapist {
}

.find-therapist > h1 {
  font-family: Unbounded;
  font-weight: 600;
  font-size: 30px;
  line-height: 122%;
  letter-spacing: 0%;
  text-transform: uppercase;
  width: 30%;
}

.find-therapist > p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -2%;
  color: rgba(142, 142, 142, 1);
  width: 40%;
  margin-bottom: 36px;
}

.therapist-details {
  background-color: rgba(237, 240, 249, 1);
  border-radius: 35px;
  padding: 34px auto;
}

.therapist-profile {
  display: flex;
  flex-direction: row;
  gap: 28px;
  height: 130px;
  align-items: center;
}

.therapist-profile > img {
  height: 95px;
  width: 95px;
  object-fit: cover;
  border-radius: 50%;
  object-position: top;
}

.therapist-profile-data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.therapist-profile-data h1 {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 20px;
  line-height: 122%;
  letter-spacing: -7%;
  color: rgba(33, 79, 179, 1);
}

.therapist-profile-data p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -2%;
  color: rgba(109, 109, 109, 1);
}

.therapist-profile-data a {
  font-family: Satoshi;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -2%;
  color: rgba(242, 115, 23, 1);
  text-decoration: underline;
}

.therapist-divider {
  border: 1px solid rgba(130, 130, 130, 0.09);
}

.therapist-data {
  height: 164px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.therapist-data > p {
  margin: 0;
  font-family: Satoshi;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -2%;
}

.therapist-data > p > span {
  font-weight: 900;
}

@media (max-width: 1400px) {
  .find-therapist > h1 {
    width: 50%;
  }

  .find-therapist > p {
    width: 60%;
  }

  .therapist-profile-data h1 {
    font-size: 18px;
  }

  .therapist-profile-data p {
    font-size: 14px;
    line-height: 18px;
  }

  .therapist-profile-data a {
    font-size: 14px;
  }

  .therapist-details .cta-button-specialization .secondary-button p {
    font-size: 12px;
  }

  .therapist-details .cta-button-specialization .secondary-button img {
    height: 32px;
  }

  .therapist-details .cta-button-specialization > .secondary-button {
    gap: 10px;
  }
}

@media (max-width: 1200px) {
  .therapist-details .cta-button-specialization .secondary-button p {
    font-size: 16px;
  }

  .find-therapist-container {
    margin-top: 100px;
  }

  .find-therapist > h1 {
    font-size: 24px;
  }

  .find-therapist > p {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .therapist-details .cta-button-specialization .secondary-button p {
    font-size: 12px;
  }

  .therapist-data > p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .therapist-data > p {
    font-size: 16px;
  }

  .therapist-details .cta-button-specialization .secondary-button p {
    font-size: 16px;
  }

  .find-therapist > h1 {
    width: 80%;
  }

  .find-therapist > p {
    width: 80%;
  }

  .find-therapist-container {
    margin-top: 80px;
  }
}

@media (max-width: 576px) {
  .find-therapist-container {
    margin-top: 50px;
  }

  .therapist-data > p {
    font-size: 14px;
  }

  .therapist-details .cta-button-specialization .secondary-button p {
    font-size: 12px;
  }

  .therapist-details .cta-button-specialization .secondary-button img {
    height: 24px;
  }

  .find-therapist > h1 {
    width: 90%;
    font-size: 20px;
  }

  .find-therapist > p {
    width: 90%;
    font-size: 14px;
  }
} */

/* ---------------------------- THERAPISTS DATA -------------------------------- */
.therapists-container {
  background-color: #e37a35;
  margin-top: 150px;
  padding: 35px 0;
}

.therapists {
}

.therapists > h1 {
  font-family: Unbounded;
  font-weight: 600;
  font-size: 30px;
  line-height: 122%;
  letter-spacing: 0%;
  text-transform: uppercase;
  width: 30%;
  color: rgba(241, 241, 241, 1);
}

.therapists > p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -2%;
  color: white;
  width: 40%;
  margin-bottom: 36px;
}

.single-therapist-item {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding-bottom: 24px;
  cursor: pointer;
}

.therapist-data {
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  align-items: center;
}

.therapist-data > h1 {
  font: normal normal 600 24px/21px Poppins;
  letter-spacing: 0px;
  color: #000000;
}

.therapist-data > h2 {
  font: normal normal normal 16px/16px Poppins;
  letter-spacing: 0px;
  color: #666666;
}

@media (max-width: 1200px) {
  .therapists > h1 {
    font-size: 24px;
    width: 50%;
  }

  .therapists > p {
    font-size: 16px;
    width: 70%;
  }

  .therapist-data > h1 {
    font: normal normal 600 18px/21px Poppins;
  }

  .therapist-data > h2 {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .therapists-container {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  .single-therapist-item {
    height: 300px;
    border-radius: 20px;
    padding-bottom: 10px;
  }

  .therapist-data {
    padding: 10px 20px;
  }

  .therapist-data > h1 {
    font-size: 16px;
  }

  .therapist-data > h2 {
    font-size: 12px;
  }

  .therapists > h1 {
    width: 70%;
  }

  .therapists > p {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .therapists > h1 {
    width: 90%;
    font-size: 20px;
  }

  .therapists > p {
    width: 90%;
    font-size: 14px;
    line-height: 24px;
  }

  .therapists-container {
    margin-top: 50px;
  }

  .therapist-data > h1 {
    font-size: 14px;
  }

  .therapist-data > h2 {
    font-size: 12px;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .shaji-card {
    background-position: center;
  }

  .single-therapist-item {
    margin: 0 50px;
  }

  .aswathi-therapist {
    background-image: url("/assets/images/home/therapist/aswathi_small.png") !important;
    background-position: center !important;
  }
}

/* --------------------- SPECIALIZATION -------------------------- */
.section-header {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 300;
  line-height: 36.6px;
  letter-spacing: -0.07em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(33, 79, 179, 1);
  margin-top: 100px;
}

.div-header {
  margin-top: 30px;
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 600;
  line-height: 36.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(41, 41, 41, 1);
  text-transform: uppercase;
}

.specialization-data {
  padding: 0;
}

.specialization-item {
  background-color: rgba(237, 240, 249, 1);
  box-shadow: 4px 4px 4px -1px rgba(0, 0, 0, 0.07);
  padding: 40px 32px;
  border-radius: 35px;
}

.specialization-item > h1 {
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.4px;
  letter-spacing: -0.07em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(33, 79, 179, 1);
}

.specialization-item > p {
  margin-top: 20px;
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(142, 142, 142, 1);
  min-height: 70px;
}

.specialization-item > div.divider {
  margin: 16px -32px;
  border: 1px solid rgba(130, 130, 130, 0.09);
}

.specialization-item > ul {
  list-style-image: url("/assets/images/common/list_arrow_orange.svg");
  padding-left: 2rem;
}

.specialization-item > ul > li > h2 {
  font-family: Satoshi;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(41, 41, 41, 1);
}

/* ------------------------------ ABOUT US ------------------------------------- */

.about-us {
  margin-top: 138px;
}

.about-us-image > img {
  border-radius: 35px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-heading-secondary {
  display: flex;
  gap: 18px;
}

.about-us-heading-secondary > h2 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 300;
  line-height: 36.6px;
  letter-spacing: -0.07em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(54, 54, 54, 1);
}

.about-us-heading-secondary > img {
  height: 36px;
}

.about-us-data {
}

.about-us-data > h1 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 600;
  line-height: 36.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(41, 41, 41, 1);
  margin-top: 20px;
}

.about-us-data > p {
  font-family: Satoshi;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(142, 142, 142, 1);
  margin-top: 35px;
}

.about-us-data > ul {
  margin-top: 25px;
  list-style-image: url("/assets/images/common/list_arrow_orange.svg");
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-us-data > ul > li {
  color: rgba(33, 79, 179, 1);
  font-family: Satoshi;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.about-us-data > ul > li > p {
  padding-left: 20px;
}

@media (max-width: 1200px) {
  .about-us-heading-secondary > h2 {
    font-size: 24px;
  }

  .about-us-heading-secondary > img {
    height: 32px;
  }

  .about-us-data > h1 {
    margin-top: 16px;
    font-size: 24px;
  }

  .about-us-data > p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
  }

  .about-us-data > ul > li {
    font-size: 16px;
    line-height: 24px;
  }

  .about-us-container .main-button {
    padding: 18px 36px;
  }
}

@media (max-width: 992px) {
  .about-us {
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .about-us-heading-secondary {
    margin-top: 24px;
  }
}

@media (max-width: 576px) {
  .about-us {
    margin-top: 50px;
  }

  .about-us-heading-secondary {
    align-items: center;
    gap: 10px;
  }

  .about-us-heading-secondary > h2 {
    font-size: 14px;
    margin-bottom: 0;
  }

  .about-us-heading-secondary > img {
    height: 18px;
  }

  .about-us-data > h1 {
    margin-top: 14px;
    font-size: 20px;
  }

  .about-us-data > p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 24px;
  }

  .about-us-data > ul > li {
    font-size: 14px;
    line-height: 24px;
  }

  .about-us-container .main-button {
    padding: 14px 24px;
  }
}

/* ------------------------- APPOINTMENTS --------------------------------- */

.appointments {
  margin-top: 148px;
}

.make-appointments {
  background: linear-gradient(127.54deg, #214fb3 26.92%, #1e3669 97.96%);
  border-radius: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 65px 0px;
  width: 100%;
  gap: 30px;
}

.make-appointments > h1 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 600;
  line-height: 36.6px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(241, 241, 241, 1);
}

.button-secondary {
  background-color: rgba(242, 115, 23, 1);
  font-family: Satoshi;
  font-size: 14px;
  font-weight: 700;
  line-height: 13.4px;
  letter-spacing: -0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 24px 43px;
  color: white;
  text-transform: uppercase;
  border-radius: 40px;
  cursor: pointer;
}

.appointment-data {
  margin-top: 10px;
}

.appointment-data > div > div {
  background: url("/assets/images/home/appointment_bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  width: calc(50% - 5px);
  padding: 56px 95px;
  display: flex;
  flex-direction: column;
  border-radius: 35px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.appointment-data h1 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 600;
  line-height: 36.6px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(33, 79, 179, 1);
  margin-top: 50px;
}

.appointment-data p {
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(142, 142, 142, 1);
}

.appointment-data p > span {
  font-family: Satoshi;
  font-size: 23px;
  font-weight: 900;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(241, 101, 0, 1);
}

.appointment-data img {
  height: 150px;
  width: 190px;
}

@media (max-width: 1200px) {
  .make-appointments {
    padding: 54px 0;
    gap: 10px;
  }

  .make-appointments > h1 {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .appointment-data > div > div {
    padding: 56px 50px;
  }

  .appointment-data h1 {
    font-size: 20px;
  }

  .appointment-data p {
    font-size: 14px;
  }

  .appointment-data p > span {
    font-size: 18px;
  }
}

@media (max-width: 764px) {
  .appointments {
    margin-top: 80px;
  }

  .make-appointments > h1 {
    font-size: 20px;
    width: 80%;
  }

  .make-appointments .button-secondary {
    font-size: 12px;
    padding: 18px 36px;
  }

  .make-appointments > h1 {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 576px) {
  .appointments {
    margin-top: 50px;
  }

  .appointment-data h1 {
    font-size: 16px;
    width: 80%;
    line-height: 24px;
  }

  .appointment-data p {
    font-size: 12px;
  }

  .appointment-data p > span {
    font-size: 16px;
  }
}

/* ----------------------- MASTERY ------------------------------ */
.mastery {
}

.container-item {
  background-color: rgba(245, 245, 245, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px 32px;
  min-height: 250px;
  border-radius: 35px;
  box-shadow: 4px 4px 4px -1px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.goto-div {
  align-self: self-end;
  background-color: rgba(213, 209, 209, 1);
  height: 38px;
  width: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.goto-div > img {
  height: 15px;
}

.container-item > h2 {
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 300;
  line-height: 24.4px;
  letter-spacing: -0.07em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(41, 41, 41, 1);
  transition: all 0.3s ease;
}

.container-item > p {
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(142, 142, 142, 1);
  margin-top: 20px;
}

.container-item:hover {
  background-color: rgba(33, 79, 179, 1);
}

.container-item:hover > h2 {
  color: rgba(241, 241, 241, 1);
}

.container-item:hover > p {
  color: rgba(181, 181, 181, 1);
}

.container-item:hover > .goto-div {
  background-color: rgba(241, 241, 241, 1);
}

.mastery > div.row > div {
}

.mastery > div.row {
  margin-top: 30px;
}

.mastery > div.row > div > div {
  margin-left: 2px;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .container-item > h2 {
    font-size: 16px;
  }

  .container-item > p {
    font-size: 13px;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .container-item > h2 {
    font-size: 18px;
  }

  .container-item > p {
    font-size: 14px;
  }

  .container-item {
    padding: 20px;
  }
}

/* --------------------- HYPNOSYS --------------------------------- */

.hypnosis {
  background: linear-gradient(138.14deg, #ff9040 -14.55%, #f16500 87.93%);
  margin-top: 150px;
}

.hypnosis h1 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 600;
  line-height: 36.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(241, 241, 241, 1);
}

.hypnosis p {
  font-family: Satoshi;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(225, 225, 225, 1);
  margin-top: 10px;
  margin-bottom: 40px;
}

.hypnosis-image {
  width: 40%;
}

.hypnosis-image > img {
  height: 400px;
  width: 100%;
}

.hypnosis-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

@media (max-width: 1200px) {
  .hypnosis-image > img {
    height: 300px;
  }

  .hypnosis h1 {
    font-size: 24px;
    margin-bottom: 0;
  }

  .hypnosis p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hypnosis-data .main-button {
    padding: 12px 24px;
  }
}

@media (max-width: 992px) {
  .hypnosis-image {
    display: none;
  }

  .hypnosis-data {
    width: 80%;
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .hypnosis {
    margin-top: 100px;
  }

  .hypnosis-data {
    align-items: center;
    width: 100%;
  }

  .hypnosis-data > h1 {
    width: 80%;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
  }

  .hypnosis-data > p {
    width: 80%;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
  }
}

/* -------------------------- APPROACH ----------------------------- */
.approach {
}

.approach > p {
  margin-top: 20px;
  font-family: Satoshi;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(142, 142, 142, 1);
  width: 70%;
}

.approach-image {
}

.approach-image > div > img {
  height: 200px;
  width: min-content;
  object-fit: contain;
  max-width: 200px;
}

.approach-image p {
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.96px;
  letter-spacing: -0.07em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(33, 79, 179, 1);
  margin-top: 10px;
}

.approach > h1 {
  width: 50%;
}

@media (max-width: 1200px) {
  .approach > p {
    font-size: 16px;
  }

  .approach > h1 {
    width: 80%;
  }

  .approach-image p {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .approach-image > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .approach > h1 {
    width: 90%;
  }

  .approach > p {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .approach-image > div > img {
    height: 150px;
  }
}

/* ---------------------- TESTIMONIALS ------------------------ */
.testimonial-section {
  background-color: rgba(33, 79, 179, 0.06);
  padding-top: 10px;
  padding-bottom: 180px;
  margin-top: 100px;
}

.controllers {
  display: flex;
  gap: 25px;
  transform: translateY(-21px);
  width: 100%;
  justify-content: end;
}

.controllers > div {
  background-color: rgba(33, 79, 179, 1);
  height: 42px;
  width: 42px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.testimonial-section .div-header {
  margin-bottom: 0;
}

.testimonials {
  margin-top: 75px;
  display: flex;
  flex-direction: row;
  gap: 25px;
}

.testimonial {
  background-color: rgba(255, 255, 255, 1);
  padding: 30px;
  box-shadow: 0px 4px 9.2px -3px rgba(0, 0, 0, 0.24);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.testimonial > img {
  height: 20px;
  width: fit-content !important;
}

.testimonial > p {
  font-family: Satoshi;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(21, 21, 21, 1);
  margin-top: 25px;
  height: 130px;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.testimonial > .divider {
  border: 1px solid rgba(228, 228, 228, 1);
}

.user-data {
  margin-top: 25px;
  display: flex;
  gap: 20px;
}

.user-data > img {
  height: 64px;
  width: 64px;
  border-radius: 8px;
}

.user-text-data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
}

.user-text-data > h1 {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(21, 21, 21, 1);
}

.stars {
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
  .testimonials {
    margin-top: 55px;
  }

  .controllers {
    gap: 10px;
  }

  .controllers > div {
    height: 30px;
    width: 30px;
  }

  .controllers > div > img {
    width: 10px;
  }

  .testimonial-section {
    padding-bottom: 100px;
    margin-top: 80px;
  }
}

@media (max-width: 576px) {
  .testimonials {
    margin-top: 30px;
  }

  .controllers {
    transform: none;
    gap: 5px;
  }

  .testimonial-section {
    padding-bottom: 80px;
    margin-top: 50px;
  }

  .testimonial > p {
    height: 180px;
  }
}

/* --------------------- TEAM -------------------------------- */
.team {
}

.section-header {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 300;
  line-height: 36.6px;
  letter-spacing: -0.07em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(33, 79, 179, 1);
  margin-top: 100px;
}

.div-header {
  margin-top: 30px;
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 600;
  line-height: 36.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(41, 41, 41, 1);
}

.team-images {
  margin-top: 30px;
}

.team-images > div > img {
  border-radius: 35px;
  height: 417px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.team-images > div > p {
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 500;
  line-height: 24.4px;
  letter-spacing: -0.07em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-top: 25px;
  color: rgba(41, 41, 41, 1);
}

.team-images > div > h2 {
  font-family: Satoshi;
  font-size: 20px;
  line-height: 20px;
}

@media (max-width: 1200px) {
  .team-images > div > p {
    font-size: 18px;
    margin-top: 20px;
    line-height: 16px;
  }

  .team-images > div > h2 {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .team-images > div > img {
    height: 350px;
  }

  .team-images > div > p {
    line-height: 14px;
  }

  .team-images > div > h2 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .team-images > div > img {
    width: 80%;
    aspect-ratio: 1 / 1;
  }

  .team-images > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .team-images {
    margin-top: 0;
  }

  .team-images > div > p {
    margin-bottom: 0;
  }

  .team-images > div > h2 {
    font-size: 12px;
  }
}

/* ----------------------- CONTACT FORM ----------------------------- */
.section-header {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 300;
  line-height: 36.6px;
  letter-spacing: -0.07em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(33, 79, 179, 1);
  margin-top: 100px;
}

.div-header {
  margin-top: 30px;
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 600;
  line-height: 36.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(41, 41, 41, 1);
}

.contact-form > .container > p {
  display: none;
}

.all-form {
  margin-top: 50px;
  display: flex;
}

.all-form > .detail {
  background: linear-gradient(180deg, #214fb3 0%, #0e224d 100%);
  width: 36%;
  position: relative;
  padding: 105px 0 0 0;
  border-radius: 32px 0 0 32px;
  flex: 4;
}

.all-form > .detail > img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.0005;
  margin-top: 50px;
}

.all-form > .detail > h1 {
  font-family: Unbounded;
  font-weight: 700;
  font-size: 20px;
  line-height: 33px;
  letter-spacing: -2%;
  text-align: center;
  color: rgba(241, 241, 241, 1);
  padding: 0 77px;
}

.all-form > .form {
  background-color: rgba(242, 244, 250, 1);
  width: 100%;
  border-radius: 0px 32px 32px 0px;
  flex: 6;
}

.all-form > .form {
  padding: 0 59px;
}

.all-form > .form > h1 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(21, 21, 21, 1);
}

form > .row {
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

form input[type="submit"] {
  width: fit-content;
  padding: 16px 24px;
  font-family: Satoshi;
  font-size: 14px;
  font-weight: 700;
  line-height: 13.4px;
  letter-spacing: -0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  background-color: rgba(33, 79, 179, 1);
  border: none;
  border-radius: 30px;
  color: rgba(255, 255, 255, 1);
  margin-top: 24px;
}

form input[type="text"] {
  border-radius: 6px;
  border: 0;
  background-color: white;
  padding: 17px 15px;
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  width: 100%;
}

form input[type="text"]::placeholder,
textarea::placeholder {
  color: rgba(171, 171, 171, 1);
}

form input[type="text"]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: rgba(171, 171, 171, 1);
}

form input[type="text"]:active {
  border: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form textarea {
  border: none;
  padding: 17px 15px !important;
  resize: none;
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  width: calc(100% - 1.25rem);
}

form textarea:focus {
  border: none;
  outline: none;
}

form select {
  background-color: rgba(255, 255, 255, 1);
  border: none;
  padding: 0 15px !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -2%;
  border-radius: 6px;
  width: 100%;
  height: 56px;
}

@media (max-width: 1200px) {
  .all-form > .detail {
    width: 40%;
    padding: 75px 0px;
    padding-bottom: 0;
  }

  .all-form > .detail > h1 {
    font-size: 18px;
    padding: 0 50px;
  }

  .section-header {
    font-size: 24px;
  }

  .div-header {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .all-form > .detail {
    display: none;
  }

  .contact-form > .container > p {
    display: block;
    margin-top: 20px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -2%;
    color: rgba(142, 142, 142, 1);
    width: 90%;
  }

  .all-form > .form {
    padding: 59px;
    border-radius: 32px;
  }
}

@media (max-width: 576px) {
  .section-header {
    font-size: 20px;
  }

  .div-header {
    font-size: 20px;
    margin-top: 0px;
  }

  .all-form > .form {
    padding: 24px;
  }
}

/* -------------------------------- FOOTER ------------------------------- */
.footer {
  background-color: rgba(245, 245, 245, 1);
  margin-top: 100px;
  padding-top: 52px;
  padding-bottom: 45px;
}

.footer-logo > img {
  height: 117px;
}

.footer-divider {
  border: 0.8px solid rgba(205, 205, 205, 1);
  margin-top: 45px;
  margin-bottom: 32px;
}

.footer-navigations > div > div h2 {
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(54, 54, 54, 1);
}

.footer-navigations {
  /* display: flex;
  gap: 220px; */
  margin-top: 50px;
}

.footer-navigations ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-navigations li {
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(54, 54, 54, 1);
}

.footer-socials {
  display: flex;
  justify-content: space-between;
}

.footer-socials > .socials {
  display: flex;
  gap: 35px;
}

@media (max-width: 992px) {
  .div-header {
    margin-top: 0px;
  }

  .section-header {
    margin-top: 80px;
  }

  .footer {
    margin-top: 80px;
  }
}

@media (max-width: 576px) {
  .footer-socials {
    flex-direction: column;
    gap: 25px;
  }

  .section-header {
    margin-top: 50px;
  }

  .footer {
    margin-top: 50px;
  }
}

.owl-carousel .owl-item img {
  width: auto;
}

/* WHATSAPP FLOAT */

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-float {
}

.float:hover {
  color: white;
}

@media (max-width: 768px) {
  .float {
    width: 50px;
    height: 50px;
    bottom: 35px;
    right: 35px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .float {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
}
