@font-face {
  font-family: "Source";
  src: url(/fonts/source-sans-pro.regular.woff2) format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Source";
  src: url(/fonts/source-sans-pro.light.woff2) format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "Playfair";
  src: url(/fonts/playfair-display.regular.woff2) format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Domine";
  src: url(/fonts/domine.regular.woff2) format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Source";
  src: url(/fonts/source-sans-pro.semibold.woff2) format("woff");
  font-weight: 600;
}
@font-face {
  font-family: "Source";
  src: url(/fonts/source-sans-pro.extralight.woff2) format("woff");
  font-weight: 200;
}
body {
  margin: 0;
}

.nav-menu {
  background-color: #FFFFFF;
  font-size: 24px;
  font-family: "Source";
  font-weight: 400;
  border-bottom: 4px solid #089D93;
}
.nav-menu .nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
@media (max-width: 767.98px) {
  .nav-menu .nav {
    font-size: 18px;
    padding: 10px;
  }
}
@media (max-width: 559.98px) {
  .nav-menu .nav {
    flex-direction: column;
    text-align: center;
  }
}
.nav-menu .nav-link {
  color: #000000;
  text-decoration: none;
}
.nav-menu a {
  position: relative;
  text-decoration: none;
  display: inline-block;
  color: #000000;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: #089D93;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
.nav-menu a:hover::after {
  transform: scaleX(1);
}
.nav-menu .burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 30px;
}
@media (max-width: 767.98px) {
  .nav-menu .nav {
    display: none;
    flex-direction: column;
    gap: 20px;
    padding: 80px 0 30px;
  }
  .nav-menu .header {
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .nav-menu .burger {
    justify-content: space-between;
    justify-self: stretch;
    display: flex;
    position: static;
    z-index: 1001;
    margin: 20px;
  }
  .nav-menu .burger.open {
    justify-content: center;
  }
  .nav-menu .burger.open img[alt=logo] {
    display: none;
  }
}
.nav-menu .nav.active {
  display: flex;
  padding: 10px;
}

.heroshot {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 0 10%;
}
.heroshot .hero-container {
  display: flex;
  align-items: stretch;
  gap: 120px;
}
@media (max-width: 1023.98px) {
  .heroshot .hero-container {
    gap: 40px;
  }
}
@media (max-width: 767.98px) {
  .heroshot .hero-container {
    padding: 20px 0 20px 0;
    flex-direction: column;
    text-align: center;
  }
  .heroshot .hero-container video {
    width: 100%;
    height: auto;
  }
}
.heroshot video {
  max-width: 560px;
  height: 350px;
}
.heroshot h1 {
  font-size: 18px;
  font-family: "Source";
  font-weight: 400;
}
.heroshot h2 {
  font-size: 36px;
  font-family: "Playfair";
  font-weight: 400;
}
.heroshot p {
  font-size: 24px;
  font-family: "Source";
  font-weight: 300;
}
.heroshot .btn {
  width: 164px;
  height: 40px;
  background-color: #62A1A4;
  color: #FFFFFF;
  font-family: "Domine";
  font-weight: 400;
  border: 1px solid #62A1A4;
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0px #62A1A4;
}
.heroshot .btn:hover {
  background-color: #FFFFFF;
  color: #089D93;
  transition: all 0.2s ease-in-out;
}

.newsletter {
  background: #E8E8E8;
  text-align: center;
  padding: 60px 0;
}
.newsletter h3 {
  font-size: 36px;
  font-family: "Playfair";
  font-weight: 400;
}
.newsletter p {
  font-size: 24px;
  font-family: "Source";
  font-weight: 300;
  padding: 0 160px;
}
@media (max-width: 767.98px) {
  .newsletter p {
    padding: 0 20px;
  }
}
.newsletter form {
  margin-top: 20px;
}
@media (max-width: 559.98px) {
  .newsletter form {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 15px;
  }
  .newsletter form input {
    width: 100%;
    margin-right: 0;
  }
}
.newsletter form input {
  border-color: transparent;
  border-radius: 4px;
  width: 300px;
  height: 40px;
  margin-right: 10px;
  font-family: "Source";
  font-weight: 400;
}
.newsletter form input::-moz-placeholder {
  color: #089D93;
}
.newsletter form input::placeholder {
  color: #089D93;
}
@media (max-width: 767.98px) {
  .newsletter form input {
    text-align: center;
  }
}
.newsletter form .btn-primary {
  width: 164px;
  height: 40px;
  background-color: #62A1A4;
  color: #FFFFFF;
  font-family: "Domine";
  font-weight: 400;
  border: 1px solid #62A1A4;
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0px #62A1A4;
}
.newsletter form .btn-primary:hover {
  background-color: #FFFFFF;
  color: #089D93;
  transition: all 0.2s ease-in-out;
}

.programs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.programs .swiper-pagination {
  display: none;
}
.programs h2 {
  text-align: center;
  font-family: "Playfair";
  font-weight: 400;
  font-size: 36px;
}
.programs p {
  text-align: center;
  font-family: "Source";
  font-weight: 400;
  font-size: 24px;
}
.programs .card {
  align-items: center;
  gap: 10%;
  flex: 0 0 33.3333333333%;
}
.programs .card img {
  border-radius: 4px;
}
.programs .card h3 {
  text-align: center;
  font-family: "Source";
  font-weight: 400;
  font-size: 24px;
}
.programs .card p {
  font-family: "Source";
  font-weight: 300;
  font-size: 18px;
}
.programs .card .secondary-btn {
  margin: 0 auto;
  display: block;
  width: 164px;
  height: 40px;
  background-color: #62A1A4;
  color: #FFFFFF;
  font-family: "Domine";
  font-weight: 400;
  border-color: #089D93;
  border: 1px solid #62A1A4;
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0px #62A1A4;
  cursor: pointer;
}
.programs .card .secondary-btn:hover {
  background-color: #FFFFFF;
  color: #089D93;
  transition: all 0.2s ease-in-out;
}
.programs .swiper {
  overflow: hidden;
  position: relative;
  padding: 0 60px;
  max-width: 1200px;
  transition: 1.5s ease;
  max-width: 1200px;
  margin: 0 auto;
}
.programs .swiper-wrapper {
  display: flex !important;
  transition: transform 1.3s ease;
}
.programs .swiper-slide {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  width: 33.3333333333%;
  padding: 15px;
  box-sizing: border-box;
}
.programs .swiper-button-next,
.programs .swiper-button-prev {
  position: absolute;
  top: 35% !important;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.programs .swiper-button-next::after,
.programs .swiper-button-prev::after {
  display: none !important;
  content: "" !important;
}
.programs .swiper-button-next::before,
.programs .swiper-button-prev::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 4px solid #00a699;
  border-right: 4px solid #00a699;
}
.programs .swiper-button-prev {
  left: 20px;
}
.programs .swiper-button-prev::before {
  transform: rotate(-135deg);
}
.programs .swiper-button-next {
  right: 20px;
}
.programs .swiper-button-next::before {
  transform: rotate(45deg);
}
@media (max-width: 767.98px) {
  .programs {
    overflow-x: hidden;
  }
  .programs .programs.container {
    padding: 0 20px;
  }
  .programs .program-explanation {
    padding: 20px;
  }
  .programs .swiper {
    width: 100%;
    padding: 0;
  }
  .programs .swiper-slide {
    width: 100% !important;
    margin: 0;
    padding: 0 10px 10px 0;
  }
  .programs .card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .programs .swiper-button-next,
  .programs .swiper-button-prev {
    display: none;
  }
  .programs .swiper-pagination {
    display: block;
    margin-top: 20px;
    position: static;
  }
}
.programs .swiper-pagination-bullet {
  background: #E8E8E8;
  opacity: 1;
}
.programs .swiper-pagination-bullet-active {
  background: #62A1A4;
}

.student {
  border-top: 4px solid #089D93;
  border-bottom: 4px solid #089D93;
  width: 100%;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 30px;
}
.student .student-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.student .student-swiper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
}
.student .student-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0 !important;
  transition: opacity 0.7s ease-in-out;
  background: transparent;
}
.student .student-swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.student .student-swiper .student-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.student .student-swiper .student-card h2 {
  font-family: "Playfair";
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 30px;
}
.student .student-swiper .student-card .student-pic-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00a699;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.student .student-swiper .student-card .student-pic-wrapper .student-pic {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.student .student-swiper .student-card .comment {
  font-family: "Source";
  font-weight: 400;
  font-size: 24px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 40px;
  padding: 0 20px 0 20px;
}
.student .student-swiper .student-card .student-name {
  font-family: "Source";
  font-weight: 400;
  font-size: 24px;
  color: #000000;
  margin-bottom: 10px;
}
.student .student-prev,
.student .student-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  color: #00a699 !important;
}
@media (max-width: 767.98px) {
  .student .student-prev,
  .student .student-next {
    padding: 0 25px 0 25px;
  }
}

.partners {
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}
.partners h2 {
  font-size: 36px;
  font-family: "Playfair";
  font-weight: 400;
}
.partners .partner-logos {
  animation: scroll 20s linear infinite;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 100px;
  align-items: center;
  margin-top: 50px;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partners .partner-logos:hover {
  animation-play-state: paused;
}

.enroll {
  background-color: #E8E8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  gap: 100px;
}
.enroll .enroll-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.enroll .enroll-content h1 {
  font-size: 36px;
  font-family: "Playfair";
  font-weight: 400;
  margin-bottom: 10px;
  color: #000000;
}
.enroll .enroll-content p {
  font-size: 24px;
  color: #000000;
  font-family: "Source";
  font-weight: 300;
  margin-bottom: 30px;
  max-width: 614px;
}
.enroll .enroll-content .btn {
  width: 164px;
  height: 40px;
  background-color: #62A1A4;
  color: #FFFFFF;
  font-family: "Domine";
  font-weight: 400;
  border: 1px solid #62A1A4;
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0px #62A1A4;
}
.enroll .enroll-content .btn:hover {
  background-color: #FFFFFF;
  color: #089D93;
  transition: all 0.2s ease-in-out;
}
.enroll video {
  max-width: 560px;
  height: 350px;
}
@media (max-width: 767.98px) {
  .enroll {
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
  }
  .enroll .enroll-box,
  .enroll .enroll-video {
    width: 100% !important;
    max-width: 100%;
  }
  .enroll .enroll-box video,
  .enroll .enroll-video video {
    width: 100% !important;
    height: auto;
    border-radius: 10px;
    display: block;
  }
}

.footer {
  padding: 60px 90px 20px;
}
.footer .footer-container {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #000000;
}
.footer .social-icons {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer .footer-contact {
  font-family: "Source";
  font-weight: 400;
  font-size: 18px;
}
.footer h3 {
  font-family: "Playfair";
  font-size: 24px;
  font-weight: 400;
}
.footer .footer-bottom {
  display: flex;
  text-align: left;
  font-size: 14px;
  border-color: #000000;
  margin-top: 20px;
  color: #000000;
  font-family: "Source";
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 767.98px) {
  .footer {
    padding: 40px 20px;
  }
  .footer .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .footer .social-icons {
    justify-content: center;
    margin-top: 40px;
  }
  .footer .footer-bottom {
    justify-content: space-around;
  }
}

.full-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999999;
  overflow-y: auto;
}
.full-popup.active {
  display: block;
}
.full-popup h6 {
  font-family: "Source";
  font-weight: 400;
  font-size: 18px;
}
.full-popup h1 {
  font-family: "Playfair";
  font-weight: 400;
  font-size: 36px;
}
.full-popup p {
  font-family: "Source";
  font-weight: 300;
  font-size: 18px;
}
.full-popup .popup-container {
  background: #FFFAFA;
  max-width: 1300px;
  margin: 40px auto;
  position: relative;
  border-radius: 4px;
  color: #000000;
}
.full-popup .popup-container .close-x {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 35px;
  border: none;
  background: none;
  cursor: pointer;
}
.full-popup .pop-header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  text-align: left;
  padding: 60px 60px 20px;
  gap: 30px;
  margin-bottom: 50px;
}
@media (max-width: 767.98px) {
  .full-popup .pop-header {
    flex-direction: column-reverse;
    padding: 70px 30px;
    align-items: center;
    text-align: center;
    gap: 0;
    padding-bottom: 0px;
  }
}
.full-popup .pop-header .pop-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
}
.full-popup .pop-header .pop-text h1 {
  font-size: 32px;
  margin: 10px 0;
}
.full-popup .pop-header .pop-img {
  flex: 1;
}
.full-popup .pop-header .pop-img img {
  width: 100%;
  border-radius: 4px;
  opacity: 80%;
}
.full-popup .pop-section {
  background-color: #E8E8E8;
  align-items: center;
  text-align: center;
  padding: 40px 100px;
}
.full-popup .pop-section h3 {
  margin-top: 40px;
  font-family: "Playfair";
  font-weight: 400;
  font-size: 24px;
}
.full-popup .pop-section p {
  font-family: "Source";
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .full-popup .pop-section {
    padding: 20px 30px;
  }
}
.full-popup .btn-main {
  width: 164px;
  height: 40px;
  background-color: #62A1A4;
  color: #FFFFFF;
  font-family: "Domine";
  font-weight: 400;
  border: 1px solid #62A1A4;
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0px #62A1A4;
}
.full-popup .btn-main:hover {
  background-color: #FFFFFF;
  color: #089D93;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767.98px) {
  .full-popup .btn-main {
    align-self: center;
  }
}
.full-popup .long-btn {
  width: 194px !important;
}
.full-popup .pop-info {
  background: #FFFAFA;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  padding: 30px 50px;
  align-items: stretch;
}
@media (max-width: 767.98px) {
  .full-popup .pop-info {
    display: flow-root;
    align-items: center;
    text-align: center;
  }
}
.full-popup .pop-info .intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  padding: 30px 20px;
}
.full-popup .pop-info .intro h3 {
  font-family: "Playfair";
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 20px;
}
.full-popup .pop-info .intro p {
  font-family: "Source";
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 30px;
  color: #000000;
  max-width: 70%;
}
@media (max-width: 767.98px) {
  .full-popup .pop-info .intro {
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    padding: 10px 20px;
  }
}
.full-popup .pop-info .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 35px;
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .full-popup .pop-info .info-grid {
    gap: 50px 40px;
  }
}
.full-popup .pop-info h4 {
  font-family: "Source";
  font-weight: 400;
  font-size: 18px;
  margin: 0;
}
.full-popup .pop-info p {
  font-family: "Source";
  font-weight: 300;
  font-size: 18px;
  color: #000000;
  margin: 0;
}
.full-popup .pop-info .info-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767.98px) {
  .full-popup .pop-info .info-card {
    align-items: center;
    text-align: center;
  }
}
.full-popup .pop-info .info-card .icon-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}
.full-popup .pop-info .info-card .icon-wrapper .icon-elipse {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  z-index: 1;
}
.full-popup .pop-info .info-card .icon-wrapper .btn-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  z-index: 2;
  filter: brightness(0) invert(1);
}
.full-popup .pop-info .info-card .icon-wrapper .btn-main {
  font-family: "Domine";
  font-weight: 400;
  font-size: 14px;
}
.full-popup .pop-info .info-card .icon-wrapper .btn-main:hover {
  background-color: #FFFFFF;
  color: #089D93;
  transition: all 0.2s ease-in-out;
}
.full-popup .info {
  text-align: center;
  padding: 60px 40px;
  background: #E8E8E8;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .full-popup .info {
    padding: 30px 40px;
  }
}
.full-popup .info .pricing-btn {
  width: 100px;
  height: 40px;
  background-color: rgba(98, 161, 164, 0.3294117647);
  color: #089D93;
  border: transparent;
  text-align: center;
  border-radius: 4px;
  font-family: "Playfair";
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
}
.full-popup .info h3 {
  font-family: "Playfair";
  font-weight: 400;
  font-size: 32px;
  color: #000000;
  margin-bottom: 10px;
}
.full-popup .info p {
  font-family: "Source";
  font-weight: 300;
  font-size: 18px;
  color: #000000;
}
.full-popup .info .subtitle {
  color: #000000;
  margin-bottom: 40px;
}
.full-popup .info .pop-pricing {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  align-items: stretch;
  padding: 0 100px;
}
@media (max-width: 767.98px) {
  .full-popup .info .pop-pricing {
    display: inline;
    justify-content: center;
  }
}
.full-popup .info .pop-pricing ul {
  list-style: none;
  padding: 0;
}
.full-popup .info .pop-pricing li {
  font-family: "Source";
  font-weight: 300;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.full-popup .enroll-box {
  background: #fdfdfd;
  border: 1px solid #eee;
  padding: 30px;
  flex: 1;
  border-radius: 12px;
  text-align: left;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767.98px) {
  .full-popup .enroll-box {
    margin-bottom: 20px;
  }
}
.full-popup .enroll-box h2 {
  font-family: "Playfair";
  font-weight: 700;
  font-size: 14px;
  color: #089D93;
}
.full-popup .enroll-box p {
  font-family: "Source";
  font-weight: 300;
  font-size: 14px;
  color: #000000;
}
.full-popup .enroll-box li {
  font-family: "Source";
  font-weight: 400;
  font-size: 14px;
  color: #089D93;
}
.full-popup .enroll-box .btn-enroll {
  font-family: "Domine";
  font-weight: 400;
  font-size: 14px;
  width: 100%;
  margin-top: 20px;
  background: #62A1A4;
  color: #FFFFFF;
  padding: 12px;
  border: 1px solid #62A1A4;
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0px #62A1A4;
}
.full-popup .enroll-box .btn-enroll:hover {
  background-color: #FFFFFF;
  color: #089D93;
  transition: all 0.2s ease-in-out;
}
.full-popup .enroll-box .list-icon {
  filter: invert(44%) sepia(91%) saturate(1348%) hue-rotate(141deg) brightness(91%) contrast(96%);
}
.full-popup .price-box {
  background: #589b9b;
  color: white;
  padding: 30px;
  flex: 2;
  border-radius: 12px;
  text-align: left;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.full-popup .price-box h2 {
  font-family: "Playfair";
  font-weight: 400;
  font-size: 18px;
}
.full-popup .price-box p {
  font-family: "Source";
  font-weight: 300;
  font-size: 14px;
  color: #FFFFFF;
  max-width: 224px;
  margin: 20px 0 60px 0;
}
.full-popup .price-box .price-container {
  display: flex;
  align-items: stretch;
  height: 100%;
  padding: 0 50px;
}
@media (max-width: 767.98px) {
  .full-popup .price-box .price-container {
    padding: 0;
  }
}
.full-popup .price-box .vertical-divider {
  width: 1px;
  height: 200px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 30px;
}
.full-popup .price-box .price-value {
  font-family: "Source";
  font-weight: 600;
  font-size: 36px;
  font-weight: bold;
  margin-top: 15px;
}
.full-popup .price-box .features-details {
  text-align: left;
}
.full-popup .consultation-text {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 25px;
}
.full-popup .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .full-popup .buttons {
    gap: 20px;
  }
}
.full-popup .buttons a {
  font-size: 14px;
  width: 164px;
  height: 40px;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #62A1A4;
  color: #FFFFFF;
  font-family: "Domine";
  font-weight: 400;
  border: 1px solid #62A1A4;
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0px #62A1A4;
  cursor: pointer;
}
.full-popup .buttons .btn-long {
  width: 199px !important;
}

.programs-hero {
  position: relative;
  min-height: 50vh;
  background: url("../img/programs-hero.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
@media (max-width: 767.98px) {
  .programs-hero {
    min-height: 40vh;
    padding: 0 20px 10px;
  }
}
.programs-hero .programs-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
}
.programs-hero .programs-hero__content {
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.programs-hero .programs-hero__title {
  font-family: "Playfair";
  font-weight: 400;
  font-size: 36px;
  color: #000000;
  margin: 12px 0;
  padding: 0;
  text-align: center;
}
@media (max-width: 767.98px) {
  .programs-hero .programs-hero__title {
    font-size: 28px;
  }
}

.programs-hero__text {
  font-family: "Source";
  font-weight: 300;
  font-size: 24px;
  color: #000000;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .programs-hero__text {
    font-size: 18px;
  }
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}
@media (max-width: 559.98px) {
  .buttons {
    flex-direction: column;
    gap: 15px;
  }
  .buttons .btn-main,
  .buttons .btn-long {
    width: 100%;
  }
}
.buttons .btn-main {
  width: 164px;
  height: 40px;
  font-family: "Domine";
  font-weight: 400;
  font-size: 14px;
  background-color: #62A1A4;
  color: #FFFFFF;
  border: transparent;
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0px rgba(98, 161, 164, 0.6);
}
.buttons .btn-main:hover {
  background-color: #FFFFFF;
  color: #089D93;
  transition: all 0.2s ease-in-out;
  border: 1px solid rgb(8, 157, 147);
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0px rgba(115, 115, 115, 0.6);
}
.buttons .btn-long {
  width: 164px;
  height: 40px;
  font-family: "Domine";
  font-weight: 400;
  font-size: 14px;
  background-color: #FFFFFF;
  color: #62A1A4;
  border: 1px solid rgb(8, 157, 147);
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0px rgba(115, 115, 115, 0.6);
}
.buttons .btn-long:hover {
  background-color: #62A1A4;
  color: #FFFFFF;
  transition: all 0.2s ease-in-out;
  border: 1px solid #62A1A4;
}

.programs-card {
  background: #FFFFFF;
  margin-top: 10px;
  padding-top: 10px;
  justify-content: center;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .programs-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 767.98px) {
  .programs-card {
    grid-template-columns: 1fr;
  }
}
.programs-card h1 {
  text-align: center;
  padding: 0;
  font-family: "Playfair";
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 10px;
  text-align: left;
  padding: 0 140px;
}
@media (max-width: 767.98px) {
  .programs-card h1 {
    text-align: center;
    padding: 0 !important;
  }
}

.programs-section {
  padding: 65px 20px;
  justify-items: center;
  gap: 30px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 120px;
}
@media (max-width: 1023.98px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 767.98px) {
  .programs-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

.program-card {
  width: 100%;
  max-width: 333px;
  min-height: 333px;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.program-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.program-card .card-content {
  padding: 20px;
  background-color: rgba(217, 217, 217, 0.3019607843);
}
.program-card .card-content h3 {
  font-family: "Source";
  font-weight: 600;
  color: #1ba6a6;
  font-size: 18px;
  margin-bottom: 10px;
}
.program-card .card-content p {
  font-family: "Source";
  font-weight: 200;
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}
.program-card .card-content .read-more {
  font-family: "Source";
  font-weight: 400;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}
.program-card .card-content .read-more:hover {
  color: #1ba6a6;
}

.testimonials {
  background-color: #62A1A4;
  padding: 20px 70px;
  color: #FFFFFF;
  align-items: center;
}
.testimonials .testimonials-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  text-align: center;
  min-height: 500px;
}
@media (max-width: 767.98px) {
  .testimonials .testimonials-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }
}
.testimonials .section-heading {
  flex: 1;
  max-width: 550px;
  text-align: left;
}
@media (max-width: 767.98px) {
  .testimonials .section-heading {
    text-align: center;
    max-width: 100%;
    margin-bottom: 40px;
  }
  .testimonials .section-heading h2 {
    margin: 0 auto 20px;
  }
  .testimonials .section-heading p {
    margin: 20px 0;
    font-size: 18px;
  }
}
.testimonials .section-heading h2 {
  font-family: "Playfair";
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  max-width: 300px;
  margin-bottom: 30px;
}
.testimonials .section-heading p {
  font-family: "Source";
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 30px;
  margin: 60px 0;
}
.testimonials .testimonials-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
.testimonials .testimonials-grid .testimonial-card {
  width: 498px;
  height: 116px;
  background: white;
  color: #333;
  padding: 20px;
  display: flex;
  align-items: center;
  text-align: left;
  border-radius: 4px;
  gap: 20px;
  width: 450px;
  box-shadow: 0px 2px 6px 1px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 450px;
  height: auto;
  align-self: center !important;
}
.testimonials .testimonials-grid .testimonial-card .card-image img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .testimonials-grid .testimonial-card h4 {
  font-family: "Source";
  font-weight: 400;
  margin: 0;
  color: #737373;
  font-size: 14px;
}
.testimonials .testimonials-grid .testimonial-card p {
  font-family: "Source";
  font-weight: 400;
  font-style: italic;
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.4;
}
.testimonials .testimonials-grid .testimonial-card:nth-child(1) {
  color: #737373;
  align-self: flex-end;
}
@media (max-width: 767.98px) {
  .testimonials .testimonials-grid .testimonial-card:nth-child(1) {
    align-self: center !important;
  }
}
.testimonials .testimonials-grid .testimonial-card:nth-child(2) {
  color: #000000;
  align-self: center;
}
.testimonials .testimonials-grid .testimonial-card:nth-child(2) h4 {
  color: #000000 !important;
}
.testimonials .testimonials-grid .testimonial-card:nth-child(3) {
  color: #737373;
  align-self: flex-end;
}
@media (max-width: 767.98px) {
  .testimonials .testimonials-grid .testimonial-card:nth-child(3) {
    align-self: center !important;
  }
}
.testimonials .btn-view {
  width: 164px;
  height: 40px;
  font-family: "Playfair";
  font-weight: 400;
  font-size: 14px;
  background: #FFFFFF;
  color: #089D93;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.testimonials .btn-view:hover {
  background-color: #62A1A4;
  color: #FFFFFF;
  transition: all 0.2s ease-in-out;
  border: 1px solid #FFFFFF;
}/*# sourceMappingURL=main.css.map */