@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-overflow-scrolling: touch;
}
html:focus-within {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  will-change: auto;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  loading: lazy;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:focus, a:hover {
  text-decoration: underline;
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  color: #5f4538;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-wrap: balance;
}
.section-title .highlight {
  text-decoration: underline;
  text-decoration-color: #f7eacd;
  text-decoration-thickness: 5px;
  text-underline-offset: 3px;
}

.section-title-info {
  margin-top: 0.5em;
  color: #161616;
  font-size: 1.7rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.17, 0.55, 0.55, 1), transform 0.8s cubic-bezier(0.17, 0.55, 0.55, 1);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0);
}
.reveal--fade-up {
  transform: translateY(40px);
}
.reveal--fade-down {
  transform: translateY(-40px);
}
.reveal--fade-left {
  transform: translateX(40px);
}
.reveal--fade-right {
  transform: translateX(-40px);
}
.reveal--scale {
  transform: scale(0.9);
}
.reveal--rotate {
  transform: rotate(-5deg) scale(0.9);
}

.top-section {
  position: relative;
  overflow: hidden;
}
.top-section .top-section-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.top-section .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(0); /* Domyślnie widoczna */
  transition: transform 0.3s ease-in-out;
}
.top-section .navbar-container-mobile .navbar-logo {
  position: relative;
  padding: 0.7em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-section .navbar-container-mobile .navbar-logo .logo {
  font-size: 2rem;
  font-weight: bold;
  color: #5f4538;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.top-section .navbar-container-mobile .navbar-logo .logo:hover, .top-section .navbar-container-mobile .navbar-logo .logo:focus {
  color: #382720;
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle {
  position: relative;
  display: flex;
  z-index: 1000;
  flex-direction: column;
  justify-content: space-around;
  height: 48px;
  width: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1em 0.2em;
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #5f4538;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle span:nth-child(1) {
  width: 36px;
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle span:nth-child(2) {
  width: 28px;
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle span:nth-child(3) {
  width: 20px;
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 36px;
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 36px;
}
.top-section .navbar-container-mobile .menu-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: white;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5em;
  margin-bottom: 4em;
  overscroll-behavior: contain;
  overflow: hidden;
}
.top-section .navbar-container-mobile .menu-mobile .menu-logo {
  align-items: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #5f4538;
  padding: 0em 3em;
  margin: 0 auto 2.5em;
  margin-bottom: 1.5em;
  border-bottom: 2px solid #f7eacd;
}
.top-section .navbar-container-mobile .menu-mobile .menu-mobile-list {
  list-style: none;
  color: #5f4538;
}
.top-section .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item {
  font-size: 1.6rem;
  color: #161616;
  font-weight: bold;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 0.7em 0;
}
.top-section .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .fa-solid {
  margin-left: 3em;
  font-size: 1.5rem;
  padding: 0.5em 0.7em;
  border-radius: 50%;
  color: #5f4538;
  background-color: #fff7e6;
  transition: transform 0.3s ease-in;
}
.top-section .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .menu-link {
  font-weight: bold;
  text-decoration: none;
  color: #161616;
  cursor: pointer;
  font-size: 1.6rem;
  transition: transform 0.3s ease-in;
}
.top-section .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .menu-link:hover {
  font-weight: 700;
}
.top-section .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .menu-link:hover .fa-solid {
  transform: translateX(15px);
}
.top-section .navbar-container-mobile .menu-mobile .menu-mobile-list .show {
  opacity: 1;
  transform: translateY(0);
}
.top-section .navbar-container-mobile .menu-mobile .social-link-nav {
  display: flex;
  flex-direction: row;
  width: 80%;
  margin: 2.5em auto 3em;
  justify-content: space-around;
  align-items: center;
}
.top-section .navbar-container-mobile .menu-mobile .social-link-nav .social-link {
  border: 2px solid #5f4538;
  padding: 0.6em 1.5em;
  font-size: 1.45rem;
  margin: 0.5em auto;
  border-radius: 30px;
  color: #161616;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.top-section .navbar-container-mobile .menu-mobile .social-link-nav .social-link i {
  margin-right: 0.3em;
  font-size: 1.7rem;
}
.top-section .navbar-container-mobile .menu-mobile .social-link-nav .social-link:hover, .top-section .navbar-container-mobile .menu-mobile .social-link-nav .social-link:focus {
  background-color: #5f4538;
  color: white;
  transform: translateY(-2px);
}
.top-section .navbar-container-mobile .menu-open {
  transform: translateX(0);
}
.top-section .navbar.sticky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.top-section .navbar.scrolled-bg {
  background-color: #f7eacd;
}
.top-section .navbar.sticky-hidden {
  transform: translateY(-110%);
}
.top-section .navbar-container-desktop {
  display: none;
}
.top-section .header {
  background-image: radial-gradient(circle at 30% 40%, rgba(247, 234, 205, 0.5) 0%, rgba(255, 255, 255, 0) 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 100;
  padding: 5.5em 1.5em 2em;
}
.top-section .header .header-title {
  font-size: 3.5rem; /* Duży, gruby font */
  line-height: 1.25em;
  color: #5f4538;
  margin: 2em 0 0;
  text-align: center;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}
.top-section .header .header-title .black-text {
  color: #161616;
  font-weight: 100;
  font-size: 2.8rem;
  display: inline-block;
}
.top-section .header .header-text-info {
  color: #161616;
  margin-top: 0.5em;
  font-size: 1.65rem;
  text-align: center;
  font-weight: bold;
}
.top-section .header .header-text-info-second {
  display: none;
}
.top-section .header .header-text-info-tag {
  text-align: center;
  margin-top: 1.5em;
  color: #161616;
  font-size: 1.75rem;
  font-weight: bold;
}
.top-section .header .header-text-info-tag .highlight {
  text-decoration: underline;
  text-decoration-color: #f7eacd;
  text-decoration-thickness: 5px;
  text-underline-offset: 3px;
}
.top-section .header .header-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1.5em;
}
.top-section .header .header-links .header-link {
  margin: 1em 0 0;
  padding: 0.8em 1.5em;
  font-size: 1.55rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 16px;
}
.top-section .header .header-links .header-link .fa-solid {
  margin-left: 0.3em;
}
.top-section .header .header-links .header-link-meeting {
  background-color: #f7eacd;
  color: #5f4538;
}
.top-section .header .header-links .header-link-about-me {
  background-color: #5f4538;
  color: #fff7e6;
}
.top-section .header .header-img {
  margin-top: 2.5em;
}
.top-section .header .header-img .header-photo {
  -o-object-fit: cover;
     object-fit: cover;
}
.top-section .header .header-links-desktop {
  display: none;
}
.top-section .header-sec {
  background-image: radial-gradient(circle at 30% 40%, rgba(247, 234, 205, 0.5) 0%, rgba(255, 255, 255, 0) 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 100;
  padding: 7.5em 1.5em 2em;
}
.top-section .header-sec .header-title {
  font-size: 3.5rem;
  line-height: 1.55em;
  color: #5f4538;
  margin: 2em 0 0;
  text-align: center;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}
.top-section .header-sec .header-title .highlight {
  text-decoration: underline;
  text-decoration-color: #f7eacd;
  text-decoration-thickness: 5px;
  text-underline-offset: 3px;
}
.top-section .header-sec .header-text-info {
  color: #161616;
  margin-top: 0.5em;
  font-size: 1.7rem;
  text-align: center;
}
.top-section .header-sec .header-text-info-second {
  display: none;
}
.top-section .header-sec .header-text-info-tag {
  text-align: center;
  margin-top: 0.5em;
  color: #161616;
  font-size: 1.75rem;
  font-weight: bold;
}
.top-section .header-sec .header-text-info-tag .highlight {
  text-decoration: underline;
  text-decoration-color: #f7eacd;
  text-decoration-thickness: 5px;
  text-underline-offset: 3px;
}
.top-section .header-sec .header-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
}
.top-section .header-sec .header-links .header-link {
  margin: 1.5em 0 0;
  padding: 0.8em 1.5em;
  font-size: 1.55rem;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 16px;
}
.top-section .header-sec .header-links .header-link .fa-solid {
  margin-left: 0.3em;
}
.top-section .header-sec .header-links .header-link-meeting {
  background-color: #f7eacd;
  color: #5f4538;
}
.top-section .header-sec .header-links .header-link-about-me {
  background-color: #5f4538;
  color: #fff7e6;
}
.top-section .header-sec .header-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3em auto 0;
}
.top-section .header-sec .header-img .header-photo {
  max-width: 350px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-section .header-sec .header-links-desktop {
  display: none;
}
.community-section {
  padding: 4em 2em;
}
.community-section .community-card-boxs {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 2.5em;
}
.community-section .community-card-boxs .community-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin: 1em 0;
}
.community-section .community-card-boxs .community-card .community-card-text {
  width: 70%;
}
.community-section .community-card-boxs .community-card .community-card-text .community-card-title {
  font-weight: bold;
  color: #161616;
  font-size: 1.75rem;
}
.community-section .community-card-boxs .community-card .community-card-text .community-card-description {
  font-size: 1.5rem;
  color: #161616;
  margin-top: 0.2em;
}
.community-section .community-card-boxs .community-card .community-card-text .community-card-extra-info {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  border-top: 2px solid #f7eacd;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.3s;
}
.community-section .community-card-boxs .community-card .community-card-text .community-card-extra-info .community-card__list {
  list-style: none;
}
.community-section .community-card-boxs .community-card .community-card-text .community-card-extra-info .community-card__list li {
  margin-bottom: 0.3em;
  font-size: 1.5rem;
  color: #161616;
  margin-top: 1em;
}
.community-section .community-card-boxs .community-card .community-card-text .community-card-extra-info .community-card__list li i {
  margin-right: 0.5em;
  color: #382720;
}
.community-section .community-card-boxs .community-card .community-card-text.active .community-card-extra-info {
  max-height: 500px;
  opacity: 1;
  margin-top: 0.5em;
}
.community-section .community-card-boxs .community-card .community-card-photo {
  width: 80px;
  height: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.community-section .community-card-boxs .community-card .community-card-photo .community-card-icon {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.community-section .btn-show-more {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1em 2em;
  color: #5f4538;
  border-radius: 25px;
  border: 2px solid #f7eacd;
  background: white;
  cursor: pointer;
  margin: 3em auto 0;
  transition: all 0.3s ease-in;
}
.community-section .btn-show-more.rotate .btn-show-more__icon {
  transform: rotate(180deg);
}
.community-section .btn-show-more:hover {
  background-color: #f7eacd;
  transform: translateY(-3px);
}

.language-facts {
  padding: 3em 2em 3em;
}
.language-facts .language-facts-photo {
  display: flex;
  justify-content: center;
  margin: 0.5em auto 1.5em;
  max-width: 200px;
}
.language-facts .language-facts-photo .language-facts-img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 150px;
  height: auto;
}
.language-facts .language-facts-boxs {
  margin-top: 2.5em;
}
.language-facts .language-facts-box {
  text-align: center;
  margin-top: 1.5em;
}
.language-facts .language-facts-box .language-facts-title {
  display: inline-block;
  background-color: #fff7e6;
  font-size: 1.7rem;
  border-radius: 16px;
  padding: 0.25em 0.8em;
  margin-bottom: 0.4em;
  color: #161616;
}
.language-facts .language-facts-box .language-facts-info {
  color: #161616;
  font-size: 1.5rem;
  padding: 0 1em;
}
.language-facts .language-facts-box .language-facts-info span {
  font-weight: bold;
  color: #5f4538;
}

.language-desc {
  padding: 5em 2em 3em;
  background-image: radial-gradient(circle at 80% 40%, rgba(247, 234, 205, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
}
.language-desc .lng-desc-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 1.5em;
}
.language-desc .lng-desc-box .lng-desc-img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 90px;
}
.language-desc .lng-desc-box .lng-desc-title {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 1.65rem;
  color: #5f4538;
  margin-top: 0.8em;
}
.language-desc .lng-desc-box .lng-desc-text {
  color: #161616;
  font-size: 1.55rem;
}
.language-desc .lng-desc-box .lng-desc-text span {
  font-weight: bold;
}

.language-offer-hisp {
  padding: 6em 2em 2em;
}
.language-offer-hisp .language-boxs {
  margin-top: 2.5em;
}
.language-offer-hisp .language-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 2em 0;
  border: 1px solid #f7eacd;
  padding: 2em 1em 1.5em;
  border-radius: 16px;
  transition: all 0.3s ease-in;
}
.language-offer-hisp .language-box .fas {
  font-size: 2.5rem;
  background-color: #fff7e6;
  color: #5f4538;
  margin: 0 auto;
  padding: 0.5em 0.4em;
  border-radius: 50%;
  transition: all 0.3s ease-in;
  text-align: center;
}
.language-offer-hisp .language-box .language-title {
  font-size: 1.8rem;
  text-align: center;
  color: #5f4538;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  margin-top: 0.7em;
}
.language-offer-hisp .language-box .language-info {
  margin-top: 0.7em;
  color: #161616;
  font-size: 1.55rem;
}
.language-offer-hisp .language-box .language-info-client {
  margin-top: 1em;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #5f4538;
  letter-spacing: 1px;
  padding-bottom: 1em;
  border-bottom: 2px solid #fff7e6;
}
.language-offer-hisp .language-box .language-info-client .fa-solid {
  margin-right: 0.3em;
}
.language-offer-hisp .language-box .language-info-client .language-info-client-impt {
  font-weight: bold;
}
.language-offer-hisp .language-box .language-prize-title {
  padding-top: 1.2em;
  font-size: 1.45rem;
  margin-bottom: 0.3em;
  text-transform: uppercase;
  color: #5f4538;
  letter-spacing: 1px;
  font-weight: bold;
}
.language-offer-hisp .language-box .language-prize-tag {
  color: #161616;
  font-size: 1.55rem;
  margin-top: 0.3em;
  letter-spacing: 0.5px;
}
.language-offer-hisp .language-box .language-prize-tag span {
  font-weight: bold;
}
.language-offer-hisp .language-box .language-btn {
  display: flex;
  justify-content: center;
  margin: 1.5em 0 0;
}
.language-offer-hisp .language-box .language-btn .language-link {
  font-size: 1.55rem;
  padding: 0.8em 1.8em;
  background-color: #fff7e6;
  color: #5f4538;
  text-decoration: none;
  letter-spacing: 0.7px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 16px;
  transition: all 0.3s ease-in;
}
.language-offer-hisp .language-box .language-btn .language-link .fas {
  display: none;
  padding: 0;
  font-size: 1.8rem;
  margin-left: 0.3em;
}
.language-offer-hisp .language-box .language-btn .language-link:hover {
  background-color: #f7eacd;
}
.language-offer-hisp .language-box:hover {
  border: 1px solid #f3deb0;
  transform: translateY(-5px);
}
.language-offer-hisp .language-box:hover .fas {
  background-color: #f7eacd;
}
.about-me {
  padding: 4em 1em 3em;
  position: relative;
}
.about-me .section-description {
  margin-top: 0.5em;
  font-size: 1.55rem;
  text-align: center;
}
.about-me .section-description span {
  font-weight: 700;
}
.about-me .about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 2em auto;
}
.about-me .about-image .about-img {
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  max-width: 350px;
  height: auto;
}
.about-me .about-box {
  margin-top: 1em;
  padding: 0 0.5em;
}
.about-me .about-box .bio-headline {
  font-size: 1.7rem;
  border-left: 4px solid #5f4538;
  padding-left: 0.3em;
  font-family: Poppins;
  margin: 1em 0;
  font-weight: bold;
  color: #161616;
}
.about-me .about-box .bio-text {
  font-size: 1.6rem;
  margin-top: 0.8em;
  color: #161616;
}
.about-me .about-box .bio-text .about-me-text-link {
  font-weight: bold;
  text-decoration: none;
  color: #161616;
  cursor: pointer;
  transition: all 3s ease;
}
.about-me .about-box .bio-text .about-me-text-link:hover {
  color: #5f4538;
}
.about-me .about-box .bio-text span {
  font-weight: bold;
}
.about-me .header-badges {
  display: flex;
  flex-direction: column;
  margin-top: 1.5em;
}
.about-me .header-badges .badge {
  margin: 0.8em;
  padding: 1.2em 1.7em;
  background-color: #fff7e6;
  color: #161616;
  font-weight: bold;
  text-align: center;
  border-radius: 16px;
  font-size: 1.55rem;
}
.about-me .header-badges .badge .fas {
  margin-right: 0.4em;
  color: #5f4538;
  font-size: 1.8rem;
}
.language-offer {
  padding: 6em 2em 2em;
}
.language-offer .language-boxs {
  margin-top: 2.5em;
}
.language-offer .language-box {
  margin: 1.5em 0;
  border: 2px solid #f7eacd;
  padding: 2em 1em;
  border-radius: 16px;
  transition: all 0.3s ease-in;
}
.language-offer .language-box .fas {
  font-size: 2.5rem;
  background-color: #fff7e6;
  color: #5f4538;
  padding: 0.5em 0.4em;
  border-radius: 50%;
  transition: all 0.3s ease-in;
}
.language-offer .language-box .language-title {
  font-size: 1.85rem;
  text-align: center;
  color: #5f4538;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  margin-top: 0.7em;
}
.language-offer .language-box .language-info {
  margin-top: 0.6em;
  color: #161616;
  font-size: 1.55rem;
}
.language-offer .language-box .language-info strong {
  color: #5f4538;
  font-weight: bold;
  font-size: 1.7rem;
}
.language-offer .language-box .language-prize-title {
  color: #5f4538;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  border-radius: 16px;
  color: #161616;
  text-align: center;
  margin: 1.5em auto 0.4em;
}
.language-offer .language-box .language-prize-title span {
  font-weight: bold;
  font-size: 1.6rem;
  color: #5f4538;
  margin-left: 0.5em;
}
.language-offer .language-box .language-prize-tag {
  margin-top: 0.1em;
  color: #161616;
  text-align: center;
}
.language-offer .language-box .language-prize-tag span {
  font-weight: bold;
  color: #5f4538;
  font-size: 1.75rem;
}
.language-offer .language-box .language-btn {
  display: flex;
  justify-content: center;
  margin: 2em 0 0;
}
.language-offer .language-box .language-btn .language-link {
  font-size: 1.6rem;
  padding: 0.8em 1.2em;
  background-color: #fff7e6;
  color: #5f4538;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 16px;
  transition: all 0.3s ease-in;
}
.language-offer .language-box .language-btn .language-link .fas {
  padding: 0;
  font-size: 1.8rem;
  margin-left: 0.3em;
}
.language-offer .language-box .language-btn .language-link:hover {
  background-color: #f7eacd;
}
.language-offer .language-box:hover {
  border: 2px solid #f3deb0;
}
.language-offer .language-box:hover .fas {
  background-color: #f7eacd;
}
.lesson {
  padding: 6em 1.5em 3em;
  background-image: radial-gradient(circle at 30% 50%, rgba(247, 234, 205, 0.5) 0%, rgba(255, 255, 255, 0) 50%);
  position: relative;
  overflow: hidden;
}
.lesson .lesson-bcg {
  position: absolute;
  left: 0;
  top: 20%;
  z-index: -2;
}
.lesson .lesson-boxs {
  margin-top: 3em;
  z-index: 100;
}
.lesson .lesson-box {
  margin: 2em 0;
  padding: 2.5em 1.5em;
  border: 2px solid #fff7e6;
  background-color: white;
  border-radius: 16px;
  transition: all 0.3s ease-in;
  z-index: 100;
}
.lesson .lesson-box .lesson-title {
  color: #5f4538;
  font-size: 1.85rem;
}
.lesson .lesson-box .lesson-info {
  font-size: 1.55rem;
  margin-top: 0.5em;
  color: #161616;
}
.lesson .lesson-box:hover {
  border: 2px solid #f7eacd;
}
.about-lng {
  padding: 5em 2em;
  background-image: radial-gradient(circle at 30% 50%, rgba(247, 234, 205, 0.5) 0%, rgba(255, 255, 255, 0) 50%);
}
.about-lng .about-lng-boxs {
  margin-top: 2.5em;
}
.about-lng .about-lng-photo .lng-photo {
  transform: rotate(-2deg);
  background-color: #fff7e6;
  padding: 1em 0.5em;
  border: 2px solid #f7eacd;
  border-radius: 16px;
}
.about-lng .about-lng-info {
  text-align: center;
}
.about-lng .about-lng-info .about-lng-title {
  display: none;
}
.about-lng .about-lng-info .about-lng-text {
  margin-top: 1.5em;
  color: #161616;
  text-align: center;
}
.about-lng .about-lng-info .about-lng-note {
  text-align: center;
  display: inline-block;
  background-color: #fff7e6;
  font-size: 1.6rem;
  border-radius: 16px;
  padding: 0.25em 0.8em;
  font-weight: bold;
  margin-top: 1.8em;
  color: #5f4538;
}
.about-lng .about-lng-info .about-lng-wrp {
  display: flex;
  margin-top: 1.5em;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.about-lng .about-lng-info .about-lng-wrp .about-lng-item {
  margin: 1em 0.5em;
}
.about-lng .about-lng-info .about-lng-wrp .about-lng-item .about-lng-item-title {
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: #5f4538;
  text-align: center;
}
.about-lng .about-lng-info .about-lng-wrp .about-lng-item .about-lng-item-text {
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #161616;
  font-size: 1.5rem;
}
.about-lng .about-lng-info .about-lng-bnt {
  display: flex;
  justify-content: center;
  margin: 1.5em 0 0;
}
.about-lng .about-lng-info .about-lng-bnt .about-lng-link {
  font-size: 1.55rem;
  padding: 0.8em 1.2em;
  background-color: #5f4538;
  color: #fff7e6;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 16px;
  transition: all 0.3s ease-in;
}
.about-lng .about-lng-info .about-lng-bnt .about-lng-link .fas {
  padding: 0;
  font-size: 1.8rem;
  margin-left: 0.3em;
}
.about-lng .about-lng-info .about-lng-bnt .about-lng-link:hover {
  background-color: #382720;
}
.offer {
  padding: 6em 2em 4em;
}
.offer .section-text {
  color: #161616;
  margin-top: 1em;
  font-size: 1.6rem;
  text-align: center;
}
.offer .section-text span {
  font-weight: 700;
}
.offer .offer-boxs {
  margin: 2em 0 1em;
}
.offer .offer-box {
  margin: 2em 0;
  box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.offer .offer-name {
  padding: 3em 1em 2em;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
  background-color: #f7eacd;
}
.offer .offer-name .offer-name-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.offer .offer-name .offer-name-box .offer-imggg {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.offer .offer-name .offer-name-box .offer-box-title {
  font-size: 1.85rem;
  color: #5f4538;
  text-align: center;
  margin: 0 0.5em;
  font-family: Poppins;
}
.offer .details-list {
  margin-top: 0.5em;
  border-bottom: 2px solid #f7eacd;
  padding: 0.5em 1em 1em;
}
.offer .details-list .detail-item {
  list-style: none;
  color: #161616;
  margin-top: 0.5em;
  font-size: 1.6rem;
}
.offer .details-list .detail-item span {
  font-weight: bold;
}
.offer .details-list .detail-item i {
  font-size: 1.6rem;
  margin-right: 0.3em;
  padding: 0.5em;
  color: #5f4538;
  background-color: #fff7e6;
  border-radius: 50%;
}
.offer .offer-list {
  padding: 1.5em 1em 1em;
}
.offer .offer-list .offer-item {
  list-style: none;
  color: #161616;
  margin-top: 0.5em;
}
.offer .offer-list .offer-item .fas {
  font-size: 1.55rem;
  margin-right: 0.3em;
  padding: 0.4em;
  color: #5f4538;
  background-color: #fff7e6;
  border-radius: 50%;
}
.offer .offer-list .offer-item:last-child {
  border-bottom: none;
}
.offer .offer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5em auto 2em;
}
.offer .offer-btn .offer-link {
  padding: 0.8em 1.3em;
  cursor: pointer;
  text-decoration: none;
  background-color: #5f4538;
  border-radius: 16px;
  color: #fff7e6;
  font-weight: bold;
  box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.1);
  font-size: 1.55rem;
  transition: all 0.3s ease;
}
.offer .offer-btn .offer-link .fa-solid {
  font-weight: bold;
  font-size: 1.6rem;
  margin-left: 0.3em;
}
.offer .offer-btn .offer-link:hover {
  background-color: #382720;
  box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.2);
}
.offer .offer-box:hover {
  box-shadow: 4px 8px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.offer .offer-box-text-info {
  margin: 4.5em 0 0.5em;
  text-align: center;
  color: #161616;
  font-size: 1.75rem;
}
.offer .offer-box-text-info span {
  font-weight: bold;
}

.opinion {
  padding: 5em 2em;
  background-color: rgb(255, 255, 255);
  background-image: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 251, 238) 49%, rgb(255, 255, 255) 100%);
}
.opinion .carousel-container {
  margin-top: 3em;
}
.opinion .carousel-container .carousel-wrapper .carousel-slide {
  transition: all 0.3s ease;
}
.opinion .carousel-container .carousel-wrapper .carousel-slide .step-card {
  margin: 1.5em 0;
  padding: 2.5em 1.5em;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  border: 1px solid #f7eacd;
  transition: all 0.3s ease;
}
.opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #f7eacd;
  padding-bottom: 0.5em;
}
.opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-text .opinion-customer {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: Poppins;
  color: #5f4538;
}
.opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-text .opinion-date {
  font-size: 1.4rem;
  color: #161616;
}
.opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-badge {
  background: white;
  color: #5f4538;
  width: 35px;
  height: 35px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-badge .facebook-icon {
  width: 35px;
  height: 35px;
  border-radius: 25px;
}
.opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-description {
  font-size: 1.6rem;
  color: #161616;
  font-style: italic;
  margin-top: 1em;
}
.opinion .carousel-container .carousel-wrapper .carousel-slide:hover .step-card {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.opinion .opinion-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3em;
}
.opinion .opinion-link .opinion-btn {
  color: #fff7e6;
  font-weight: bold;
  padding: 0.8em 1.7em;
  border-radius: 30px;
  font-size: 1.6rem;
  cursor: pointer;
  text-decoration: none;
  background-color: #5f4538;
  transition: background-color 0.3s ease;
}
.opinion .opinion-link .opinion-btn .fa-solid {
  font-size: 1.7rem;
  margin-left: 0.3em;
}
.opinion .opinion-link .opinion-btn:hover {
  background-color: #382720;
}

.contact-space {
  padding: 3em 2em 5em;
  background-color: rgb(255, 255, 255);
  background-image: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 254, 239) 71%, rgb(255, 255, 255) 100%);
}
.contact-space .wrapper {
  margin-top: 3em;
}
.contact-space .contact-media .contact-title {
  font-size: 1.6rem;
  text-align: center;
  color: #5f4538;
  font-family: "Poppins", sans-serif;
}
.contact-space .contact-media .contact-cards .cnt-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #161616;
  margin: 1em 0;
  text-decoration: none;
  border: 1px solid #f7eacd;
  padding: 1em 0.5em;
  background-color: white;
  border-radius: 16px;
  transition: all 0.3s ease-in;
}
.contact-space .contact-media .contact-cards .cnt-card .cnt-icon {
  border-radius: 16px;
  background-color: #fff7e6;
  padding: 0.8em;
  transition: all 0.3s ease;
}
.contact-space .contact-media .contact-cards .cnt-card .cnt-icon i {
  color: #5f4538;
  font-size: 2rem;
  font-weight: bold;
}
.contact-space .contact-media .contact-cards .cnt-card .cnt-text {
  margin-left: 1em;
}
.contact-space .contact-media .contact-cards .cnt-card .cnt-text .cnt-title {
  font-size: 1rem;
  text-transform: uppercase;
}
.contact-space .contact-media .contact-cards .cnt-card .cnt-text .cnt-value {
  font-size: 1.55rem;
  font-weight: bold;
}
.contact-space .contact-media .contact-cards .cnt-card .fa-arrow-right {
  position: absolute;
  right: 20px;
  color: rgba(95, 69, 56, 0.5);
  font-size: 1.6rem;
  transition: all 0.3s ease-in;
}
.contact-space .contact-media .contact-cards .cnt-card:hover {
  box-shadow: 2px 6px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0d1b1;
}
.contact-space .contact-media .contact-cards .cnt-card:hover .cnt-icon {
  transform: scale(1.02);
}
.contact-space .contact-media .contact-cards .cnt-card:hover .fa-arrow-right {
  color: #5f4538;
}
.contact-space .contact-media .contact-about {
  padding: 2em 1.5em;
  background-color: #382720;
  border-radius: 16px;
}
.contact-space .contact-media .contact-about .contact-header {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.contact-space .contact-media .contact-about .contact-header .cnt-header-photo {
  height: 60px;
  width: 60px;
  border-radius: 50px;
}
.contact-space .contact-media .contact-about .contact-header .cnnt-header-text {
  display: flex;
  flex-direction: column;
  margin-left: 1em;
  color: #f7eacd;
}
.contact-space .contact-media .contact-about .contact-header .cnnt-header-text .cnt-header-title {
  font-weight: bold;
  font-size: 1.7rem;
}
.contact-space .contact-media .contact-about .contact-header .cnnt-header-text .cnt-header-name {
  font-size: 1.1rem;
  text-transform: uppercase;
}
.contact-space .contact-media .contact-about .cnt-header-info {
  margin-top: 1.5em;
  color: #f7eacd;
}
.contact-space .form-cnt-container {
  display: flex;
  flex-direction: column;
  margin-top: 4em;
}
.contact-space .form-cnt-container .cnt-form {
  padding: 4em 1em 2em;
  box-shadow: 0 1px 4px 8px rgba(22, 22, 22, 0.02);
  border-radius: 16px;
  background-color: white;
}
.contact-space .form-cnt-container .cnt-form .contact-title-form {
  font-size: 2rem;
  text-align: center;
  color: #5f4538;
  font-family: "Poppins", sans-serif;
}
.contact-space .form-cnt-container .cnt-form .input-wrapper {
  display: flex;
  flex-direction: column;
}
.contact-space .form-cnt-container .cnt-form .input-wrapper label {
  font-size: 1.1rem;
  font-weight: bold;
  color: #161616;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 5px;
  margin: 1.5em 0 0.5em;
}
.contact-space .form-cnt-container .cnt-form .input-wrapper input, .contact-space .form-cnt-container .cnt-form .input-wrapper textarea, .contact-space .form-cnt-container .cnt-form .input-wrapper select {
  width: 100%;
  padding: 14px 20px;
  background-color: rgba(95, 69, 56, 0.05);
  border: none;
  border-radius: 16px;
  font-family: inherit;
  font-weight: 500;
  color: #161616;
  outline: none;
  transition: all 0.2s ease;
  font-size: 16.2px;
}
.contact-space .form-cnt-container .cnt-form .input-wrapper input::-moz-placeholder, .contact-space .form-cnt-container .cnt-form .input-wrapper textarea::-moz-placeholder, .contact-space .form-cnt-container .cnt-form .input-wrapper select::-moz-placeholder {
  color: #cbd5e1;
}
.contact-space .form-cnt-container .cnt-form .input-wrapper input::placeholder, .contact-space .form-cnt-container .cnt-form .input-wrapper textarea::placeholder, .contact-space .form-cnt-container .cnt-form .input-wrapper select::placeholder {
  color: #cbd5e1;
}
.contact-space .form-cnt-container .cnt-form .input-wrapper input:focus, .contact-space .form-cnt-container .cnt-form .input-wrapper textarea:focus, .contact-space .form-cnt-container .cnt-form .input-wrapper select:focus {
  background-color: white;
  box-shadow: 0 0 0 4px rgba(22, 22, 22, 0.05);
}
.contact-space .form-cnt-container .cnt-form .select-container {
  position: relative;
}
.contact-space .form-cnt-container .cnt-form .select-container::after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M19 9l-7 7-7-7"/></svg>');
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  pointer-events: none;
  opacity: 0.4;
}
.contact-space .form-cnt-container .cnt-form .select-container select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.contact-space .form-cnt-container .cnt-form textarea {
  resize: none;
  line-height: 1.6;
}
.contact-space .form-cnt-container .cnt-form .form-checkbox {
  margin-top: 1em;
}
.contact-space .form-cnt-container .cnt-form .form-checkbox label {
  font-size: 1rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.05em;
}
.contact-space .form-cnt-container .cnt-form .submit-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em auto;
}
.contact-space .form-cnt-container .cnt-form .submit-wrapper .btn-primary {
  background-color: #5f4538;
  color: #fff7e6;
  padding: 1em 1.5em;
  border: none;
  border-radius: 16px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.5rem;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(95, 69, 56, 0.1);
}
.contact-space .form-cnt-container .cnt-form .submit-wrapper .btn-primary:hover:not(:disabled) {
  background-color: #5a3e32;
}
.contact-space .form-cnt-container .cnt-form .submit-wrapper .btn-primary:active:not(:disabled) {
  transform: scale(0.95);
}
.contact-space .form-cnt-container .cnt-form .submit-wrapper .btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.contact-space .form-cnt-container .success-screen {
  text-align: center;
  padding: 48px 0;
  animation: zoomIn 0.5s ease both;
}
.contact-space .form-cnt-container .success-screen .success-icon {
  width: 80px;
  height: 80px;
  background: rgba(95, 69, 56, 0.1);
  color: #5f4538;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}
.contact-space .form-cnt-container .success-screen h3 {
  font-size: 24px;
  font-weight: 900;
  color: #161616;
  margin-bottom: 12px;
}
.contact-space .form-cnt-container .success-screen p {
  color: #161616;
  margin-bottom: 32px;
  font-weight: 500;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.contact-space .form-cnt-container .spinner {
  width: 20px;
  height: 20px;
  animation: rotate 1s linear infinite;
}
.contact-space .form-cnt-container .spinner circle {
  opacity: 0.25;
}
.contact-space .form-cnt-container .spinner path {
  opacity: 0.75;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.counter-section {
  padding: 2em 2em 4em;
  background-image: radial-gradient(circle at 50% 70%, rgba(252, 235, 199, 0.3) 0%, rgba(255, 255, 255, 0) 50%);
}
.counter-section .counter-boxs .counters-list .counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 3.5em;
  list-style: none;
  padding-bottom: 0.5em;
  border-bottom: 3px solid #f7eacd;
}
.counter-section .counter-boxs .counters-list .counter-item .counter-info {
  color: #161616;
  font-size: 1.55rem;
  font-weight: bold;
}
.counter-section .counter-boxs .counters-list .counter-item .counter {
  letter-spacing: 1.5px;
  font-size: 4.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: #5f4538;
}
.counter-section .counter-boxs .counters-list .counter-item:last-child {
  border-bottom: none;
}

.benefits {
  padding: 6em 3em;
  background-color: #5f4538;
  position: relative;
  border: transparent;
  outline: none;
  overflow: hidden;
}
.benefits .section-title-info-benefits {
  text-align: center;
  margin-top: 1.5em;
  color: #fff7e6;
}
.benefits .section-title-info-benefits-tag {
  text-align: center;
  font-weight: bold;
  margin-top: 0.8em;
  color: #fff7e6;
}
.benefits .wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  line-height: 0;
}
.benefits .section-title {
  color: #f7eacd;
}
.benefits .benefits-photo {
  display: none;
}
.benefits .benefits-container {
  margin-top: 2.5em;
}
.benefits .language-box {
  display: flex;
  border-radius: 16px;
  text-align: center;
  flex-direction: column;
  margin-top: 1.5em;
  align-items: center;
  padding: 1.5em 0.5em 1.5em;
}
.benefits .language-box .language-title {
  color: #f7eacd;
  margin-top: 0.7em;
  font-size: 1.75rem;
}
.benefits .language-box .benefits-icon {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 120px;
}
.benefits .language-box .benefits-desc {
  font-size: 1.5rem;
  color: #fff7e6;
}
.benefits .language-btn {
  display: flex;
  justify-content: center;
  margin: 2.5em 0 0;
}
.benefits .language-btn .language-link {
  font-size: 1.55rem;
  padding: 0.8em 1.2em;
  background-color: #fff7e6;
  color: #5f4538;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 16px;
  transition: all 0.3s ease-in;
}
.benefits .language-btn .language-link .fas {
  padding: 0;
  font-size: 1.8rem;
  margin-left: 0.3em;
}
.benefits .language-btn .language-link:hover {
  background-color: #f7eacd;
}
.benefits .header-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}
.benefits .header-wave svg {
  display: block;
  width: 100%;
  transform: scale(1.01);
  height: auto;
  vertical-align: bottom;
}

.faq-section {
  padding: 3em 2em 4em;
}
.faq-section .faq-container {
  margin-top: 3em;
}
.faq-section .faq-container .faq-item {
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  overflow: hidden;
}
.faq-section .faq-container .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-section .faq-container .faq-item .faq-question .faq-question-title {
  color: #161616;
  font-size: 1.6rem;
  width: 88%;
  transition: all 0.3s ease;
}
.faq-section .faq-container .faq-item .faq-question .faq-toggle-icon {
  font-size: 2.3rem;
  line-height: 1;
  color: #161616;
  transition: transform 0.3s ease;
  text-align: center;
  font-weight: bold;
}
.faq-section .faq-container .faq-item .faq-question:hover .faq-question-title {
  color: black;
}
.faq-section .faq-container .faq-item .faq-question:hover .faq-toggle-icon {
  transform: translateY(-8px);
}
.faq-section .faq-container .faq-item .faq-answer {
  padding: 0em 0em;
  max-height: 0;
  line-height: 1.7;
  opacity: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  border-bottom: 2px solid #f7eacd;
}
.faq-section .faq-container .faq-item .faq-answer p {
  padding: 0;
  padding-bottom: 1.5em;
  margin: 0;
  color: #161616;
  font-size: 1.5rem;
}
.faq-section .faq-container .faq-item:last-child {
  border-bottom: none;
}
.faq-section .faq-container .faq-item.active .faq-toggle-icon {
  color: #382720;
  transform: rotate(30deg);
}
.faq-section .faq-container .faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0;
  opacity: 1;
}
.cta {
  padding: 6em 2em 4em;
  background-color: #5f4538;
}
.cta .section-title {
  color: #f7eacd;
}
.cta .section-title span {
  color: white;
  font-size: 2.5rem;
}
.cta .cta-text {
  color: #fff7e6;
  font-size: 1.55rem;
  margin: 1.5em 0 0;
  text-align: center;
}
.cta .cta-text-info {
  color: #fff7e6;
  font-size: 1.55rem;
  margin: 0.5em 0;
  text-align: center;
}
.cta .cta-text-info span {
  font-weight: bold;
}
.cta .cta-btn {
  margin: 2em auto 1em;
  display: flex;
  justify-content: center;
}
.cta .cta-btn .cta-link {
  color: #5f4538;
  font-weight: bold;
  padding: 0.8em 1.7em;
  border-radius: 30px;
  font-size: 1.55rem;
  cursor: pointer;
  text-decoration: none;
  background-color: #f7eacd;
  transition: background-color 0.3s ease;
}
.cta .cta-btn .cta-link:hover {
  background-color: #fff7e6;
}

.footer-sec {
  padding: 3em 2em 9em;
  position: relative;
}
.footer-sec .footer-photo {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -5;
}
.footer-sec .footer-photo .footer-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.footer-sec .footer-photo .footer-img-desktop {
  display: none;
}
.footer-sec .footer-sec-box {
  text-align: center;
  z-index: 10;
  margin-top: 3em;
}
.footer-sec .footer-sec-box .footer-sec-title {
  font-size: 1.9rem;
  color: #5f4538;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.footer-sec .footer-sec-box .footer-sec-info {
  color: #161616;
}
.footer-sec .footer-sec-box .footer-sec-social-title {
  font-size: 1.8rem;
  margin-top: 1.5em;
  color: #5f4538;
}
.footer-sec .footer-sec-box .footer-sec-social {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 1em;
}
.footer-sec .footer-sec-box .footer-sec-social .footer-sec-social-item {
  list-style: none;
  transition: all 0.3s ease-in;
}
.footer-sec .footer-sec-box .footer-sec-social .footer-sec-social-item .footer-social-link {
  text-decoration: none;
  color: #5f4538;
  padding: 0.4em 0.45em;
  border-radius: 16px;
  background-color: #fff7e6;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
.footer-sec .footer-sec-box .footer-sec-social .footer-sec-social-item .footer-social-link:hover {
  color: #382720;
  background-color: #f7eacd;
}
.footer-sec .footer-sec-box .footer-sec-social .footer-sec-social-item:hover {
  transform: translateY(-2px);
}
.footer-sec .footer-sec-box .footer-sec-list {
  margin-top: 1em;
}
.footer-sec .footer-sec-box .footer-sec-list .footer-sec-item {
  list-style: none;
  margin: 0.7em 0;
}
.footer-sec .footer-sec-box .footer-sec-list .footer-sec-item .footer-sec-link {
  text-decoration: none;
  color: #161616;
  transition: color 0.3s ease-in;
  padding: 0.8em 0;
  cursor: pointer;
}
.footer-sec .footer-sec-box .footer-sec-list .footer-sec-item .footer-sec-link:hover {
  color: #5f4538;
}
.footer-sec .footer-sec-box:last-of-type {
  margin-bottom: 2.5em;
}
.footer-sec .footer-bottom {
  padding-top: 1.5em;
  border-top: 2px solid #f7eacd;
}
.footer-sec .footer-bottom .footer-bottom-text {
  color: #161616;
  text-align: center;
  font-size: 1.5rem;
}
.footer-sec .footer-bottom .footer-bottom-text span {
  font-weight: bold;
}
.footer-sec .footer-bottom .footer-bottom-text .footer-link-creator {
  text-decoration: none;
  color: #161616;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease-in;
}
.footer-sec .footer-bottom .footer-bottom-text .footer-link-creator:hover {
  color: #5f4538;
}

.footer-sec-esp {
  padding: 3em 2em 13em;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  transform: translateY(100%);
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
  padding: 2em 0;
  z-index: 9999;
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: bottom;
  contain: layout;
}
.cookie-banner .cookie-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 1em;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-banner .cookie-banner-container .cookie-banner-close {
  position: absolute;
  top: -12px;
  right: 5px;
  background: none;
  border: none;
  font-size: 3.8rem;
  color: #161616;
  cursor: pointer;
  padding: 0.2em;
  display: flex;
  transition: color 0.2s;
}
.cookie-banner .cookie-banner-container .cookie-banner-close:hover {
  color: black;
}
.cookie-banner .cookie-banner-container .cookie-banner-content p {
  margin: 0;
  font-weight: 700;
  font-size: 1.65rem;
  color: #161616;
  margin-top: 0.8em;
}
.cookie-banner .cookie-banner-container .cookie-banner-content .cookie-description {
  font-weight: 500;
  font-size: 1.5rem;
  color: #161616;
  margin-top: 0.5em;
}
.cookie-banner .cookie-banner-container .cookie-banner-content .cookie-description .cookie-link {
  text-decoration: none;
  font-weight: bold;
}
.cookie-banner .cookie-banner-container .cookie-banner-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 1.5em;
}
.cookie-banner .cookie-banner-container .cookie-banner-actions .btn {
  background-color: #f7eacd;
  padding: 1em 1.8em;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  font-size: 1.5rem;
  color: #161616;
  transition: all 0.3s ease;
}
.cookie-banner .cookie-banner-container .cookie-banner-actions .btn:hover {
  background-color: #e6d9be;
}

.cookie-banner--active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.6rem;
  }
  .section-title-info {
    margin-top: 0.7em;
    padding: 0 3.5em;
    font-size: 1.75rem;
  }
  .top-section {
    position: relative;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo {
    padding: 0.8em 1em;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo .logo {
    font-size: 2.2rem;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo .navbar-toggle {
    height: 52px;
    width: 52px;
    padding: 1em 0.5em;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo .navbar-toggle span {
    height: 3px;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo .navbar-toggle span:nth-child(1) {
    width: 38px;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo .navbar-toggle span:nth-child(2) {
    width: 30px;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo .navbar-toggle span:nth-child(3) {
    width: 22px;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo .navbar-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 36px;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    padding-top: 3.5em;
    overscroll-behavior: contain;
    overflow: hidden;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item {
    padding: 0.8em 2em 0.8em;
    font-size: 1.7rem;
    font-weight: bold;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .fa-solid {
    margin-left: 5em;
    font-size: 1.5rem;
    padding: 0.5em 0.8em;
    border-radius: 50%;
    color: #5f4538;
    background-color: #f7eacd;
    transition: transform 0.3s ease-in;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .menu-link {
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease-in;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .menu-link:hover {
    font-weight: 700;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .menu-link:hover .fa-solid {
    transform: translateX(15px);
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .link-course {
    padding-left: 1em;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .menu-mobile-list .show {
    opacity: 1;
    transform: translateY(0);
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .social-link-nav {
    display: flex;
    flex-direction: row;
    width: 70%;
    margin: 2.5em auto 3em;
    justify-content: space-around;
    align-items: center;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .social-link-nav .social-link {
    border: 2px solid #5f4538;
    padding: 0.6em 1.5em;
    font-size: 1.45rem;
    margin: 0.5em auto;
    border-radius: 30px;
    color: #161616;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .social-link-nav .social-link i {
    margin-right: 0.3em;
    font-size: 1.7rem;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .social-link-nav .social-link:hover, .top-section .navbar .navbar-container-mobile .menu-mobile .social-link-nav .social-link:focus {
    background-color: #5f4538;
    color: white;
    transform: translateY(-2px);
  }
  .top-section .navbar .navbar-container-mobile .menu-open {
    transform: translateX(0);
  }
  .top-section .navbar .navbar-container-desktop {
    display: none;
  }
  .top-section .header {
    padding: 6em 2.5em 2em;
  }
  .top-section .header .header-title {
    font-size: 4rem;
    margin: 3em 0 0;
  }
  .top-section .header .header-title .black-text {
    font-size: 3rem;
  }
  .top-section .header .header-text-info {
    font-size: 1.85rem;
  }
  .top-section .header .header-text-info-second {
    display: block;
    font-size: 1.7rem;
    font-weight: 500;
  }
  .top-section .header .header-text-info-tag {
    font-size: 1.9rem;
  }
  .top-section .header .header-links {
    margin-top: 1.5em;
  }
  .top-section .header .header-links .header-link {
    margin: 1.5em 0 0;
    font-size: 1.65rem;
  }
  .top-section .header .header-img {
    width: 70%;
    margin: 2.5em auto 0;
  }
  .top-section .header .header-img .header-photo {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-section .header-sec {
    padding: 7.5em 2.5em 2em;
  }
  .top-section .header-sec .header-title {
    font-size: 4rem;
  }
  .top-section .header-sec .header-text-info {
    font-weight: bold;
    margin-top: 0.5em;
    font-size: 1.8rem;
  }
  .top-section .header-sec .header-text-info-second {
    display: block;
    font-weight: 100;
  }
  .top-section .header-sec .header-text-info-tag {
    margin-top: 1.5em;
    font-size: 1.85rem;
  }
  .top-section .header-sec .header-links {
    margin-top: 0.5em;
  }
  .community-section {
    padding: 5em 2em 2em;
  }
  .community-section .community-card-boxs {
    margin-top: 3.5em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  .community-section .community-card-boxs .community-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 30%;
    margin: 0;
  }
  .community-section .community-card-boxs .community-card .community-card-text {
    width: 65%;
  }
  .community-section .community-card-boxs .community-card .community-card-text .community-card-title {
    font-size: 1.75rem;
  }
  .community-section .community-card-boxs .community-card .community-card-text .community-card-description {
    font-size: 1.4rem;
  }
  .community-section .community-card-boxs .community-card .community-card-text .community-card-extra-info .community-card__list li {
    margin-bottom: 0.3em;
    font-size: 1.4rem;
    color: #161616;
    margin-top: 1em;
  }
  .community-section .community-card-boxs .community-card .community-card-photo {
    width: 70px;
    height: 70px;
  }
  .community-section .btn-show-more {
    margin: 3.5em auto 0;
    font-size: 1.45rem;
    padding: 1em 2em;
  }
  .language-facts {
    position: relative;
  }
  .language-facts .language-facts-photo {
    margin: 0.5em auto 1em;
    max-width: 200px;
  }
  .language-facts .language-facts-boxs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5em;
  }
  .language-facts .language-facts-box {
    width: 45%;
    margin-top: 0em;
    margin: 1em 0.5em;
  }
  .language-facts .language-facts-box .language-facts-title {
    font-size: 1.65rem;
  }
  .language-facts .language-facts-box .language-facts-info {
    font-size: 1.5rem;
    padding: 0;
  }
  .contact-space {
    padding: 5em 5em;
  }
  .benefits {
    padding: 8em 2em 4em;
  }
  .benefits .wave-top {
    height: 100px;
  }
  .benefits .section-title {
    font-size: 2.8rem;
  }
  .benefits .benefits-container {
    margin-top: 2.5em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .benefits .language-box {
    width: 45%;
  }
  .benefits .language-box .language-title {
    font-size: 1.7rem;
  }
  .benefits .language-box .benefits-icon {
    width: 100px;
  }
  .benefits .language-btn {
    margin: 3em 0 0;
  }
  .benefits .language-btn .language-link {
    font-size: 1.6rem;
    padding: 0.8em 1.5em;
  }
   .offer .offer-boxs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 2em 0 1em;
  }
  .offer .offer-box {
    margin: 2em 1.3em;
  }
  .offer .offer-name {
    padding: 2.5em 1em 2em;
  }
  .offer .offer-name .offer-name-box .offer-imggg {
    width: 35px;
  }
  .offer .offer-name .offer-name-box .offer-box-title {
    font-size: 1.7rem;
  }
  .offer .details-list .detail-item {
    font-size: 1.5rem;
  }
  .offer .details-list .detail-item i {
    font-size: 1.5rem;
  }
  .offer .offer-list .offer-item {
    font-size: 1.5rem;
  }
  .offer .offer-list .offer-item .fas {
    font-size: 1.55rem;
  }
  .offer .offer-btn {
    margin: 1em auto 2em;
  }
  .offer .offer-btn .offer-link {
    padding: 0.7em 1.3em;
    font-size: 1.45rem;
  }
  .offer .offer-btn .offer-link .fa-solid {
    font-size: 1.6rem;
  }
   .offer .offer-box-text-info {
    margin: 2.5em 0 0.5em;
    font-size: 1.75rem;
  }
  .lesson {
    padding: 6em 2em 1em;
  }
  .lesson .lesson-boxs {
    margin-top: 1.5em;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .lesson .lesson-box {
    width: 45%;
  }
  .lesson .lesson-box .lesson-title {
    font-size: 1.7rem;
  }
  .lesson .lesson-box .lesson-info {
    font-size: 1.5rem;
    margin-top: 0.3em;
  }
  .language-offer .language-boxs {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2.5em;
  }
  .language-offer .language-box {
    width: 42%;
    margin: 1.5em 0;
  }
  .language-offer .language-box .fas {
    font-size: 2.2rem;
  }
  .language-offer .language-box .language-title {
    font-size: 1.6rem;
  }
  .language-offer .language-box .language-info {
    font-size: 1.5rem;
  }
  .language-offer .language-box .language-btn .language-link {
    font-size: 1.5rem;
  }
  .language-offer-hisp {
    padding: 6em 2em 2em;
  }
  .language-offer-hisp .language-boxs {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2.5em;
  }
  .language-offer-hisp .language-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 2em 1em 1.5em;
    width: 45%;
    margin: 1.5em 0;
  }
  .language-offer-hisp .language-box .fas {
    font-size: 2.5rem;
    margin: 0;
  }
  .language-offer-hisp .language-box .language-title {
    font-size: 1.8rem;
    text-align: left;
  }
  .language-offer-hisp .language-box .language-info {
    font-size: 1.55rem;
  }
  .language-offer-hisp .language-box .language-info-client {
    font-size: 1.3rem;
  }
  .language-offer-hisp .language-box .language-prize-title {
    font-size: 1.45rem;
  }
  .language-offer-hisp .language-box .language-prize-tag {
    font-size: 1.55rem;
  }
  .language-offer-hisp .language-box .language-btn {
    display: flex;
    justify-content: center;
    margin: 1.5em auto 0;
  }
  .language-offer-hisp .language-box .language-btn .language-link {
    font-size: 1.55rem;
    padding: 0.8em 1.8em;
  }
  .opinion .carousel-container {
    margin-top: 3em;
  }
  .opinion .carousel-container .carousel-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide {
    width: 45%;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card {
    min-height: 390px;
    padding: 2.5em 1.5em 1em;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-text .opinion-customer {
    font-size: 1.6rem;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-text .opinion-date {
    font-size: 1.4rem;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-badge {
    width: 35px;
    height: 35px;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-badge .facebook-icon {
    width: 35px;
    height: 35px;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-description {
    font-size: 1.6rem;
  }
  .opinion .opinion-link {
    margin-top: 3em;
  }
  .opinion .opinion-link .opinion-btn {
    padding: 0.8em 1.7em;
    font-size: 1.6rem;
  }
  .about-lng .about-lng-boxs {
    margin-top: 2.5em;
  }
  .about-lng .about-lng-photo {
    width: 70%;
    margin: 0 auto;
  }
  .about-lng .about-lng-photo .lng-photo {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about-lng .about-lng-info {
    text-align: center;
  }
  .about-lng .about-lng-info .about-lng-text {
    margin-top: 1.8em;
    font-size: 1.65rem;
  }
  .about-lng .about-lng-info .about-lng-note {
    font-size: 1.75rem;
    margin-top: 2.5em;
  }
  .about-lng .about-lng-info .about-lng-wrp {
    margin-top: 2.5em;
  }
  .about-lng .about-lng-info .about-lng-wrp .about-lng-item {
    margin: 1em 0.5em;
  }
  .about-lng .about-lng-info .about-lng-wrp .about-lng-item .about-lng-item-title {
    font-size: 4rem;
  }
  .about-lng .about-lng-info .about-lng-wrp .about-lng-item .about-lng-item-text {
    font-size: 1.6rem;
  }
  .about-lng .about-lng-info .about-lng-bnt {
    margin: 1.5em 0 0;
  }
  .about-lng .about-lng-info .about-lng-bnt .about-lng-link {
    font-size: 1.6rem;
    padding: 0.9em 1.5em;
  }
  .counter-section {
    padding: 3em 1em;
  }
  .counter-section .counter-boxs .counters-list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 3em;
  }
  .counter-section .counter-boxs .counters-list .counter-item {
    width: 33%;
    padding-bottom: 1em;
    margin: 2.5em 0.5em 1em;
  }
  .counter-section .counter-boxs .counters-list .counter-item .counter-info {
    font-size: 1.5rem;
  }
  .counter-section .counter-boxs .counters-list .counter-item .counter {
    font-size: 4rem;
  }
  .counter-section .counter-boxs .counters-list .counter-item:last-child {
    border-bottom: 2px solid #f7eacd;
  }
  .faq-section {
    padding: 6em 2em;
  }
  .faq-section .faq-container {
    margin-top: 3em;
  }
  .faq-section .faq-container .faq-item .faq-question .faq-question-title {
    font-size: 1.65rem;
    width: 80%;
  }
  .faq-section .faq-container .faq-item .faq-question .faq-toggle-icon {
    font-size: 2.6rem;
  }
  .faq-section .faq-container .faq-item .faq-answer p {
    font-size: 1.55rem;
  }
  .footer-sec {
    padding: 4em 2em 2em;
  }
  .footer-sec .footer-photo {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -5;
  }
  .footer-sec .footer-photo .footer-img {
    display: none;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 3rem;
  }
  .section-title-info {
    margin-top: 0.5em;
    padding: 0 4.5em;
    font-size: 1.7rem;
  }
  .top-section {
    position: relative;
  }
  .top-section .navbar {
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    border-bottom: none;
  }
  .top-section .navbar .navbar-container-mobile {
    display: none;
  }
  .top-section .navbar .navbar-container-desktop {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1em 1em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .top-section .navbar .navbar-container-desktop .company-name {
    font-size: 2.2rem;
    color: #5f4538;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
  }
  .top-section .navbar .navbar-container-desktop .company-name a {
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease-in;
  }
  .top-section .navbar .navbar-container-desktop .company-name a:hover {
    color: #382720;
  }
  .top-section .navbar .navbar-container-desktop .menu-desktop {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-around;
    border-bottom: 2.5px solid #f7eacd;
  }
  .top-section .navbar .navbar-container-desktop .menu-desktop .menu-item {
    position: relative;
    padding: 1em 1.2em 0.5em;
    list-style: none;
    font-size: 1.65rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    color: #5f4538;
  }
  .top-section .navbar .navbar-container-desktop .menu-desktop .menu-item a {
    text-decoration: none;
    cursor: pointer;
  }
  .top-section .navbar .navbar-container-desktop .menu-desktop .menu-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2.5px;
    background-color: #5f4538;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .top-section .navbar .navbar-container-desktop .menu-desktop .menu-item:hover::after {
    transform: scaleX(1);
  }
  .top-section .navbar .navbar-container-desktop .company-number .company-number-link {
    border: 2px solid #5f4538;
    padding: 0.6em 0.8em;
    color: #5f4538;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.45rem;
    transition: all 0.3s ease-in;
  }
  .top-section .navbar .navbar-container-desktop .company-number .company-number-link .fa-regular {
    margin-right: 0.5em;
    font-size: 1.7rem;
  }
  .top-section .navbar .navbar-container-desktop .company-number .company-number-link:hover {
    color: #fff7e6;
    background-color: #5f4538;
  }
  .top-section .header {
    padding: 4.5em 2.5em 2em;
  }
  .top-section .header .header-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    padding: 7em 0 2em;
  }
  .top-section .header .header-text {
    margin-right: 1.5em;
  }
  .top-section .header .header-title {
    font-size: 3.5rem;
    margin: 0em 0 0;
  }
  .top-section .header .header-title .black-text {
    font-size: 2.7rem;
  }
  .top-section .header .header-text-info {
    font-size: 1.75rem;
  }
  .top-section .header .header-text-info-second {
    display: block;
    font-size: 1.65rem;
    font-weight: 500;
  }
  .top-section .header .header-text-info-tag {
    margin-top: 0.5em;
    font-size: 1.9rem;
  }
  .top-section .header .header-links {
    display: none;
  }
  .top-section .header .header-links-desktop {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 1.5em auto 0;
  }
  .top-section .header .header-links-desktop .header-link-desktop {
    margin: 1em;
    padding: 0.9em 1.8em;
    font-size: 1.6rem;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 16px;
  }
  .top-section .header .header-links-desktop .header-link-desktop .fa-solid {
    margin-left: 0.3em;
    transition: all 0.3s ease;
  }
  .top-section .header .header-links-desktop .header-link-meeting {
    background-color: #f7eacd;
    color: #5f4538;
  }
  .top-section .header .header-links-desktop .header-link-meeting:hover {
    background-color: #f0deb7;
  }
  .top-section .header .header-links-desktop .header-link-meeting:hover .fa-solid {
    margin-left: 0.6em;
  }
  .top-section .header .header-links-desktop .header-link-about-me {
    background-color: #5f4538;
    color: #fff7e6;
  }
  .top-section .header .header-links-desktop .header-link-about-me:hover {
    background-color: #382720;
  }
  .top-section .header .header-links-desktop .header-link-about-me:hover .fa-solid {
    margin-left: 0.6em;
  }
  .top-section .header .header-img {
    width: 70%;
    margin: 0 auto 0;
  }
  .top-section .header-sec {
    padding: 7.5em 1.5em 2em;
  }
  .top-section .header-sec .header-wrapper {
    display: flex;
    margin-top: 3em;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .top-section .header-sec .header-text {
    margin-right: 1.5em;
  }
  .top-section .header-sec .header-title {
    font-size: 3.8rem;
    margin: 0em;
  }
  .top-section .header-sec .header-text-info {
    padding: 0 1.5em;
    margin-top: 0.8em;
    font-size: 1.75rem;
  }
  .top-section .header-sec .header-text-info-tag {
    margin-top: 0.5em;
    font-size: 1.8rem;
  }
  .top-section .header-sec .header-links-desktop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
  }
  .top-section .header-sec .header-links-desktop .header-link-desktop {
    margin: 1.5em 0 0;
    padding: 0.8em 1.5em;
    font-size: 1.55rem;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 16px;
  }
  .top-section .header-sec .header-links-desktop .header-link-desktop .fa-solid {
    margin-left: 0.3em;
  }
  .top-section .header-sec .header-links-desktop .header-link-meeting {
    background-color: #f7eacd;
    color: #5f4538;
    transition: all 0.3s ease;
  }
  .top-section .header-sec .header-links-desktop .header-link-meeting:hover {
    background-color: #f0e0bd;
    transform: translateY(-3px);
  }
  .top-section .header-sec .header-links-desktop .header-link-about-me {
    background-color: #5f4538;
    color: #fff7e6;
    transition: all 0.3s ease;
  }
  .top-section .header-sec .header-links-desktop .header-link-about-me:hover {
    background-color: #382720;
    transform: translateY(-3px);
  }
  .top-section .header-sec .header-img {
    margin: 0em auto;
  }
  .top-section .header-sec .header-img .header-photo {
    max-width: 370px;
  }
  .top-section .header-sec .header-link {
    display: none;
  }
  .language-facts .language-facts-boxs {
    margin-top: 1.5em;
  }
  .language-facts .language-facts-box {
    width: 30%;
  }
  .language-facts .language-facts-box .language-facts-title {
    font-size: 1.7rem;
  }
  .language-facts .language-facts-box .language-facts-info {
    font-size: 1.55rem;
  }
  .language-desc {
    padding: 6em 2em 3em;
    background-color: #ffffff;
    background-image: radial-gradient(circle at 80% 40%, rgba(248, 236, 210, 0.4) 10%, rgba(255, 255, 255, 0) 50%);
  }
  .language-desc .lng-desc-boxs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2.5em;
  }
  .language-desc .lng-desc-box {
    margin: 1em;
    width: 45%;
  }
  .language-desc .lng-desc-box .lng-desc-img {
    width: 75px;
  }
  .language-desc .lng-desc-box .lng-desc-title {
    font-size: 1.65rem;
    margin-top: 0.8em;
  }
  .language-desc .lng-desc-box .lng-desc-text {
    font-size: 1.55rem;
  }
  .language-offer .language-boxs {
    margin-top: 2.5em;
  }
  .language-offer .language-box {
    width: 44%;
    padding: 3em 1.5em;
    margin: 1.5em 0;
  }
  .language-offer .language-box .fas {
    font-size: 2.5rem;
  }
  .language-offer .language-box .language-title {
    font-size: 1.75rem;
  }
  .language-offer .language-box .language-info {
    font-size: 1.6rem;
  }
  .language-offer .language-box .language-btn .language-link {
    font-size: 1.55rem;
  }
  .language-offer-hisp {
    padding: 6em 2em 2em;
  }
  .language-offer-hisp .language-boxs {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2.5em;
  }
  .language-offer-hisp .language-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 2em 1em 1.5em;
    width: 45%;
    margin: 1.5em 0;
  }
  .language-offer-hisp .language-box .fas {
    font-size: 2.5rem;
    margin: 0;
  }
  .language-offer-hisp .language-box .language-title {
    font-size: 1.8rem;
    text-align: left;
  }
  .language-offer-hisp .language-box .language-info {
    font-size: 1.55rem;
  }
  .language-offer-hisp .language-box .language-info-client {
    font-size: 1.3rem;
  }
  .language-offer-hisp .language-box .language-prize-title {
    font-size: 1.45rem;
  }
  .language-offer-hisp .language-box .language-prize-tag {
    font-size: 1.55rem;
  }
  .language-offer-hisp .language-box .language-btn {
    display: flex;
    justify-content: center;
    margin: 1.5em auto 0;
  }
  .language-offer-hisp .language-box .language-btn .language-link {
    font-size: 1.55rem;
    padding: 0.8em 1.8em;
  }
  .about-me {
    padding: 5em 2em 1em;
  }
  .about-me .section-description {
    font-size: 1.6rem;
  }
  .about-me .about-boxs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2.5em;
  }
  .about-me .about-image {
    margin: 0em auto;
  }
  .about-me .about-image .about-img {
    max-width: 400px;
  }
  .about-me .about-box {
    margin: 0em;
    padding: 0;
    width: 55%;
  }
  .about-me .about-box .bio-headline {
    font-size: 1.6rem;
  }
  .about-me .about-box .bio-text {
    font-size: 1.5rem;
  }
  .about-me .header-badges {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 1.5em;
  }
  .about-me .header-badges .badge {
    margin: 0.8em;
    padding: 1.2em 1.7em;
    background-color: #fff7e6;
    color: #161616;
    font-weight: bold;
    text-align: center;
    border-radius: 16px;
    font-size: 1.55rem;
  }
  .about-me .header-badges .badge .fas {
    margin-right: 0.4em;
    color: #5f4538;
    font-size: 1.8rem;
  }
  .offer .section-text {
    margin-top: 1em;
    padding: 0 2.5em;
    font-size: 1.7rem;
  }
  .offer .offer-box {
    margin: 2em 2.5em;
  }
  .offer .offer-name {
    padding: 3em 1em 2.5em;
  }
  .offer .offer-name .offer-name-box .offer-imggg {
    width: 40px;
  }
  .offer .offer-name .offer-name-box .offer-box-title {
    font-size: 1.85rem;
  }
  .offer .details-list .detail-item {
    font-size: 1.55rem;
  }
  .offer .details-list .detail-item i {
    font-size: 1.55rem;
  }
  .offer .offer-list .offer-item {
    font-size: 1.55rem;
  }
  .offer .offer-list .offer-item .fas {
    font-size: 1.55rem;
  }
  .offer .offer-btn {
    margin: 0.5em auto 2em;
  }
  .offer .offer-btn .offer-link {
    padding: 0.8em 1.3em;
    font-size: 1.55rem;
  }
   .offer .offer-box-text-info {
    padding: 0 5em;
    margin: 2.5em 0 0.5em;
    font-size: 1.85rem;
  }
  .lesson .lesson-boxs {
    margin-top: 1.5em;
  }
  .lesson .lesson-box {
    width: 45%;
    padding: 2.5em 1.5em;
  }
  .lesson .lesson-box .lesson-title {
    font-size: 1.8rem;
  }
  .lesson .lesson-box .lesson-info {
    font-size: 1.5rem;
    margin-top: 0.3em;
  }
  .contact-space {
    padding: 5em 2em;
  }
  .contact-space .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 4.5em;
  }
  .contact-space .contact-media {
    width: 48%;
    margin-top: 0;
  }
  .contact-space .contact-media .contact-title {
    font-size: 1.8rem;
  }
  .contact-space .contact-media .contact-cards .cnt-card .cnt-text .cnt-title {
    font-size: 1rem;
  }
  .contact-space .contact-media .contact-cards .cnt-card .cnt-text .cnt-value {
    font-size: 1.6rem;
  }
  .contact-space .contact-media .contact-about {
    padding: 1.5em 1em;
  }
  .contact-space .contact-media .contact-about .contact-header .cnt-header-photo {
    height: 50px;
    width: 50px;
  }
  .contact-space .contact-media .contact-about .contact-header .cnnt-header-text .cnt-header-title {
    font-size: 1.6rem;
  }
  .contact-space .contact-media .contact-about .contact-header .cnnt-header-text .cnt-header-name {
    font-size: 1rem;
  }
  .contact-space .contact-media .contact-about .cnt-header-info {
    font-size: 1.5rem;
    margin-top: 1.5em;
  }
  .contact-space .form-cnt-container {
    width: 42%;
    margin-top: 0em;
  }
  .contact-space .form-cnt-container .cnt-form {
    padding: 4em 2em 2em;
  }
  .contact-space .form-cnt-container .cnt-form .contact-title-form {
    font-size: 1.8rem;
    text-align: center;
  }
  .contact-space .form-cnt-container .cnt-form .submit-wrapper {
    margin: 2em auto;
  }
  .contact-space .form-cnt-container .cnt-form .submit-wrapper .btn-primary {
    padding: 0.8em 1.5em;
    font-size: 1.5rem;
  }
  .cta {
    padding: 7em 2em 4em;
  }
  .cta .section-title span {
    font-size: 3.2rem;
  }
  .cta .cta-text {
    font-size: 1.75rem;
    margin: 1em 0 0;
  }
  .cta .cta-text-info {
    font-size: 1.75rem;
  }
  .cta .cta-btn {
    margin: 2em auto 1em;
  }
  .cta .cta-btn .cta-link {
    padding: 0.8em 1.7em;
    font-size: 1.55rem;
  }
  .footer-sec {
    padding: 5em 1em 2em;
  }
  .footer-sec .footer-sec-boxs {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .footer-sec .footer-sec-box {
    text-align: left;
    margin-top: 0em;
  }
  .footer-sec .footer-sec-box .footer-sec-title {
    font-size: 1.8rem;
  }
  .footer-sec .footer-sec-box .footer-sec-info {
    margin-top: 1em;
    font-size: 1.5rem;
  }
  .footer-sec .footer-sec-box .footer-sec-social-title {
    font-size: 1.7rem;
  }
  .footer-sec .footer-sec-box .footer-sec-social {
    width: 70%;
  }
  .footer-sec .footer-sec-box .footer-sec-social .footer-sec-social-item .footer-social-link {
    padding: 0.4em;
    font-size: 2.8rem;
  }
  .footer-sec .footer-sec-box .footer-sec-list .footer-sec-item {
    margin: 0.5em 0;
  }
  .footer-sec .footer-sec-box .footer-sec-list .footer-sec-item .footer-sec-link {
    font-size: 1.5rem;
  }
  .footer-sec .footer-sec-box-main {
    width: 45%;
    margin-bottom: 1.5em;
  }
  .footer-sec .footer-sec-box:last-of-type {
    margin-bottom: 0em;
  }
  .footer-sec .footer-bottom .footer-bottom-text {
    font-size: 1.5rem;
  }
  .footer-sec .footer-bottom .footer-bottom-text .footer-link-creator {
    font-size: 1.6rem;
  }
  .benefits {
    padding: 8em 2em 4em;
  }
  .benefits .section-title-info-benefits {
    margin-top: 1em;
  }
  .benefits .section-title-info-benefits-tag {
    margin-top: 0.5em;
  }
  .benefits .wave-top {
    height: 90px;
  }
  .benefits .section-title {
    font-size: 3rem;
  }
  .benefits .benefits-container {
    margin-top: 2em;
  }
  .benefits .language-box {
    width: 30%;
  }
  .benefits .language-box .language-title {
    font-size: 1.65rem;
  }
  .benefits .language-box .benefits-icon {
    width: 90px;
  }
  .benefits .language-btn {
    margin: 3.5em 0 0;
  }
  .benefits .language-btn .language-link {
    font-size: 1.6rem;
    padding: 0.8em 1.5em;
  }
  .about-lng {
    padding: 5em 2em;
  }
  .about-lng .section-title {
    display: none;
  }
  .about-lng .about-lng-boxs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5em;
  }
  .about-lng .about-lng-photo {
    width: 45%;
  }
  .about-lng .about-lng-photo .lng-photo {
    max-width: 420px;
  }
  .about-lng .about-lng-info {
    text-align: center;
    width: 50%;
  }
  .about-lng .about-lng-info .about-lng-title {
    display: block;
    font-size: 2.8rem;
    text-align: center;
    color: #5f4538;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    text-wrap: balance;
  }
  .about-lng .about-lng-info .about-lng-text {
    margin-top: 0.5em;
    text-align: left;
    font-size: 1.55rem;
  }
  .about-lng .about-lng-info .about-lng-note {
    font-size: 1.7rem;
    margin-bottom: 0.5em;
    padding: 0.3em 0.8em;
  }
  .about-lng .about-lng-info .about-lng-wrp {
    margin-top: 1.5em;
  }
  .about-lng .about-lng-info .about-lng-wrp .about-lng-item {
    margin: 1em 0.5em;
  }
  .about-lng .about-lng-info .about-lng-wrp .about-lng-item .about-lng-item-title {
    font-size: 3rem;
  }
  .about-lng .about-lng-info .about-lng-wrp .about-lng-item .about-lng-item-text {
    font-size: 1.5rem;
  }
  .about-lng .about-lng-info .about-lng-bnt {
    margin: 0.5em 0 0;
  }
  .about-lng .about-lng-info .about-lng-bnt .about-lng-link {
    font-size: 1.55rem;
    padding: 0.8em 1.2em;
  }
  .opinion {
    padding: 8em 2em 4em;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide {
    width: 30%;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card {
    min-height: 440px;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-text .opinion-customer {
    font-size: 1.65rem;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-text .opinion-date {
    font-size: 1.4rem;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-badge {
    width: 40px;
    height: 40px;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-badge .facebook-icon {
    width: 40px;
    height: 40px;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-description {
    font-size: 1.6rem;
  }
  .faq-section {
    padding: 6em 2em;
  }
  .faq-section .faq-container {
    margin: 4em auto 0;
    width: 80%;
  }
  .faq-section .faq-container .faq-item .faq-question .faq-question-title {
    font-size: 1.65rem;
    width: 80%;
  }
  .faq-section .faq-container .faq-item .faq-question .faq-toggle-icon {
    font-size: 2.6rem;
  }
  .faq-section .faq-container .faq-item .faq-answer p {
    font-size: 1.55rem;
  }
}
@media (min-width: 1200px) {
  .section-title {
    font-size: 3.8rem;
  }
  .section-title .highlight {
    text-decoration-thickness: 7px;
    text-underline-offset: 5px;
  }
  .section-title-info {
    margin-top: 0.5em;
    padding: 0 6em;
    font-size: 2.1rem;
  }
  .top-section {
    position: relative;
    background-color: #ffffff;
  }
  .top-section .navbar .navbar-container-mobile {
    display: none;
  }
  .top-section .navbar .navbar-container-desktop .company-name {
    font-size: 3.2rem;
  }
  .top-section .navbar .navbar-container-desktop .menu-desktop .menu-item {
    font-size: 1.85rem;
  }
  .top-section .navbar .navbar-container-desktop .company-number .company-number-link {
    font-size: 1.7rem;
  }
  .top-section .header {
    padding: 4em 2.5em 2em;
  }
  .top-section .header .header-wrapper {
    padding: 5em 0 2em;
  }
  .top-section .header .header-text {
    margin-right: 1.5em;
  }
  .top-section .header .header-title {
    font-size: 5rem;
    margin: 0em 0 0;
  }
  .top-section .header .header-title .black-text {
    font-size: 3.8rem;
  }
  .top-section .header .header-text-info {
    font-size: 1.9rem;
  }
  .top-section .header .header-text-info-second {
    font-size: 1.85rem;
  }
  .top-section .header .header-text-info-tag {
    margin-top: 0.5em;
    font-size: 2rem;
  }
  .top-section .header .header-links-desktop {
    width: 70%;
    margin: 2em auto 0;
  }
  .top-section .header .header-links-desktop .header-link-desktop {
    padding: 0.8em 1.8em;
    font-size: 1.75rem;
  }
  .top-section .header .header-img {
    width: 42%;
  }
   .top-section .header-sec .header-wrapper {
    max-width: 1200px;
    margin-top: 2em;
  }
  .top-section .header-sec .header-text {
    margin-right: 1em;
  }
  .top-section .header-sec .header-title {
    font-size: 4.5rem;
  }
  .top-section .header-sec .header-text-info {
    padding: 0 1.5em;
    margin-top: 0.5em;
    font-size: 1.9rem;
  }
  .top-section .header-sec .header-text-info-tag {
    margin-top: 0.8em;
    font-size: 2rem;
  }
  .top-section .header-sec .header-links-desktop {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 1em auto 0;
    width: 70%;
  }
  .top-section .header-sec .header-links-desktop .header-link-desktop {
    margin: 1.5em 0 0;
    padding: 0.9em 1.8em;
    font-size: 1.65rem;
  }
  .top-section .header-sec .header-img .header-photo {
    max-width: 420px;
  }
  .language-facts .language-facts-photo {
    margin: 0.5em auto 1.5em;
    max-width: 250px;
  }
  .language-facts .language-facts-boxs {
    margin-top: 1.5em;
  }
  .language-facts .language-facts-box {
    width: 31%;
    border: 2px solid #fff7e6;
    padding: 2.5em 1em;
    border-radius: 16px;
  }
  .language-facts .language-facts-box .language-facts-title {
    font-size: 1.8rem;
  }
  .language-facts .language-facts-box .language-facts-info {
    margin-top: 0.5em;
    font-size: 1.7rem;
  }
  .community-section {
    padding: 7em 2em 2em;
  }
  .community-section .community-card-boxs {
    margin-top: 4.5em;
  }
  .community-section .community-card-boxs .community-card {
    width: 30%;
  }
  .community-section .community-card-boxs .community-card .community-card-text {
    width: 70%;
  }
  .community-section .community-card-boxs .community-card .community-card-text .community-card-title {
    font-size: 2rem;
  }
  .community-section .community-card-boxs .community-card .community-card-text .community-card-description {
    font-size: 1.7rem;
    padding-bottom: 0.5em;
  }
  .community-section .community-card-boxs .community-card .community-card-text .community-card-extra-info {
    padding-top: 0.5em;
  }
  .community-section .community-card-boxs .community-card .community-card-text .community-card-extra-info .community-card__list li {
    margin-bottom: 0.5em;
    font-size: 1.65rem;
    margin-top: 1em;
  }
  .community-section .community-card-boxs .community-card .community-card-photo {
    width: 95px;
    height: 95px;
  }
  .community-section .btn-show-more {
    font-size: 1.6rem;
  }
  .lesson .lesson-boxs {
    margin-top: 1.5em;
  }
  .lesson .lesson-box {
    width: 31%;
    padding: 3em 1.5em 2em;
  }
  .lesson .lesson-box .lesson-title {
    font-size: 2rem;
  }
  .lesson .lesson-box .lesson-info {
    font-size: 1.55rem;
    margin-top: 0.5em;
  }
  .language-desc {
    padding: 6em 2em 2em;
  }
  .language-desc .lng-desc-boxs {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 2.5em;
  }
  .language-desc .lng-desc-box {
    margin: 1em;
    width: 30%;
  }
  .language-desc .lng-desc-box .lng-desc-img {
    width: 95px;
  }
  .language-desc .lng-desc-box .lng-desc-title {
    font-size: 1.85rem;
  }
  .language-desc .lng-desc-box .lng-desc-text {
    font-size: 1.65rem;
  }
  .language-offer .language-boxs {
    margin-top: 2em;
  }
  .language-offer .language-box {
    width: 30%;
    padding: 2.5em 1em;
    margin: 1.5em 0;
  }
  .language-offer .language-box .fas {
    font-size: 2.8rem;
  }
  .language-offer .language-box .language-title {
    font-size: 1.85rem;
  }
  .language-offer .language-box .language-info {
    font-size: 1.6rem;
  }
  .language-offer .language-box .language-prize-title {
    font-size: 1.8rem;
  }
  .language-offer .language-box .language-btn .language-link {
    font-size: 1.65rem;
  }
  .language-offer-hisp .language-box {
    padding: 2.5em 1em 1.5em;
    width: 30%;
    margin: 1.5em 0;
  }
  .language-offer-hisp .language-box .fas {
    font-size: 2.7rem;
    margin: 0;
  }
  .language-offer-hisp .language-box .language-title {
    font-size: 1.9rem;
  }
  .language-offer-hisp .language-box .language-info {
    font-size: 1.6rem;
  }
  .language-offer-hisp .language-box .language-info-client {
    font-size: 1.3rem;
    margin-top: 1.5em;
  }
  .language-offer-hisp .language-box .language-prize-title {
    font-size: 1.45rem;
  }
  .language-offer-hisp .language-box .language-prize-tag {
    font-size: 1.6rem;
  }
  .language-offer-hisp .language-box .language-btn .language-link {
    font-size: 1.6rem;
    padding: 0.9em 2.5em;
  }
   .offer .section-text {
    margin-top: 1.5em;
    padding: 0 3em;
    font-size: 1.8rem;
  }
  .offer .offer-boxs {
    justify-content: center;
  }
  .offer .offer-box {
    margin: 2em 3em;
  }
  .offer .offer-name {
    padding: 3.5em 1em 2em;
  }
  .offer .offer-name .offer-name-box .offer-box-title {
    font-size: 2rem;
  }
  .offer .details-list {
    padding: 1.5em 1em;
  }
  .offer .details-list .detail-item {
    font-size: 1.65rem;
  }
  .offer .details-list .detail-item i {
    font-size: 1.7rem;
  }
  .offer .offer-list .offer-item {
    font-size: 1.65rem;
  }
  .offer .offer-list .offer-item .fas {
    font-size: 1.7rem;
  }
  .offer .offer-btn .offer-link {
    padding: 0.9em 1.4em;
    font-size: 1.55rem;
  }
    .offer .offer-box-text-info {
    padding: 0 10em;
    font-size: 2rem;
  }
  .contact-space {
    padding: 6em 2em 4em;
  }
  .contact-space .contact-media {
    width: 48%;
  }
  .contact-space .contact-media .contact-title {
    display: none;
    font-size: 2rem;
  }
  .contact-space .contact-media .contact-cards .cnt-card .cnt-text .cnt-title {
    font-size: 1.2rem;
  }
  .contact-space .contact-media .contact-cards .cnt-card .cnt-text .cnt-value {
    font-size: 1.7rem;
  }
  .contact-space .contact-media .contact-about {
    padding: 2em 1.5em;
  }
  .contact-space .contact-media .contact-about .contact-header .cnt-header-photo {
    height: 60px;
    width: 60px;
  }
  .contact-space .contact-media .contact-about .contact-header .cnnt-header-text .cnt-header-title {
    font-size: 1.7rem;
  }
  .contact-space .contact-media .contact-about .contact-header .cnnt-header-text .cnt-header-name {
    font-size: 1.2rem;
  }
  .contact-space .contact-media .contact-about .cnt-header-info {
    font-size: 1.55rem;
    margin-top: 1.5em;
  }
  .contact-space .form-cnt-container .cnt-form {
    padding: 4em 2em 2em;
  }
  .contact-space .form-cnt-container .cnt-form .contact-title-form {
    font-size: 2rem;
  }
  .contact-space .form-cnt-container .cnt-form .submit-wrapper {
    margin: 2em auto;
  }
  .contact-space .form-cnt-container .cnt-form .submit-wrapper .btn-primary {
    padding: 1em 1.8em;
    font-size: 1.55rem;
  }
   .about-me .section-description {
    font-size: 1.65rem;
  }
  .about-me .about-image .about-img {
    max-width: 480px;
  }
  .about-me .about-box {
    width: 52%;
  }
  .about-me .about-box .bio-headline {
    font-size: 1.8rem;
  }
  .about-me .about-box .bio-text {
    font-size: 1.7rem;
  }
  .about-me .header-badges {
    margin-top: 2em;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .about-me .header-badges .badge {
    margin: 0.8em 1em;
    padding: 1.2em 1.7em;
    font-size: 1.7rem;
  }
  .about-me .header-badges .badge .fas {
    font-size: 1.9rem;
  }
  .benefits {
    padding: 14em 2em 6em;
  }
  .benefits .section-title-info-benefits {
    font-size: 1.9rem;
    margin-top: 0.3em;
  }
  .benefits .section-title-info-benefits-tag {
    font-size: 1.95rem;
  }
  .benefits .section-title {
    font-size: 4rem;
  }
  .benefits .benefits-container {
    margin-top: 2em;
  }
  .benefits .language-box {
    width: 30%;
  }
  .benefits .language-box .language-title {
    font-size: 1.85rem;
  }
  .benefits .language-box .benefits-icon {
    width: 145px;
  }
  .benefits .language-box .benefits-desc {
    font-size: 1.6rem;
  }
  .benefits .language-btn {
    margin: 3.5em 0 0;
  }
  .benefits .language-btn .language-link {
    font-size: 1.65rem;
    padding: 0.9em 1.8em;
  }
  .footer-sec {
    padding: 5em 1em 2em;
  }
  .footer-sec .footer-sec-box .footer-sec-title {
    font-size: 2rem;
  }
  .footer-sec .footer-sec-box .footer-sec-info {
    font-size: 1.65rem;
  }
  .footer-sec .footer-sec-box .footer-sec-social-title {
    font-size: 1.85rem;
  }
  .footer-sec .footer-sec-box .footer-sec-social {
    width: 65%;
  }
  .footer-sec .footer-sec-box .footer-sec-social .footer-sec-social-item {
    margin-top: 0.5em;
  }
  .footer-sec .footer-sec-box .footer-sec-social .footer-sec-social-item .footer-social-link {
    padding: 0.4em 0.45em;
    font-size: 2.5rem;
  }
  .footer-sec .footer-sec-box .footer-sec-list .footer-sec-item {
    margin: 0.5em 0;
  }
  .footer-sec .footer-sec-box .footer-sec-list .footer-sec-item .footer-sec-link {
    font-size: 1.65rem;
  }
  .footer-sec .footer-sec-box-main {
    width: 42%;
    margin-bottom: 2.5em;
  }
  .footer-sec .footer-bottom .footer-bottom-text {
    font-size: 1.55rem;
  }
  .footer-sec .footer-bottom .footer-bottom-text .footer-link-creator {
    font-size: 1.6rem;
  }
  .about-lng {
    padding: 6em 2em 4em;
    background-image: radial-gradient(circle at 25% 40%, rgba(247, 234, 205, 0.5) 0%, rgba(255, 255, 255, 0) 50%);
  }
  .about-lng .section-title {
    display: none;
  }
  .about-lng .about-lng-photo {
    width: 48%;
  }
  .about-lng .about-lng-photo .lng-photo {
    max-width: 500px;
  }
  .about-lng .about-lng-info {
    text-align: center;
    width: 50%;
  }
  .about-lng .about-lng-info .about-lng-title {
    font-size: 3.2rem;
  }
  .about-lng .about-lng-info .about-lng-text {
    margin-top: 1.5em;
    font-size: 1.65rem;
  }
  .about-lng .about-lng-info .about-lng-note {
    margin-top: 1em;
    font-size: 1.85rem;
    padding: 0.3em 0.8em;
  }
  .about-lng .about-lng-info .about-lng-wrp {
    margin-top: 0.5em;
  }
  .about-lng .about-lng-info .about-lng-wrp .about-lng-item {
    margin: 1em 0.5em;
  }
  .about-lng .about-lng-info .about-lng-wrp .about-lng-item .about-lng-item-title {
    font-size: 4rem;
  }
  .about-lng .about-lng-info .about-lng-wrp .about-lng-item .about-lng-item-text {
    font-size: 1.6rem;
  }
  .about-lng .about-lng-info .about-lng-bnt {
    margin: 0.5em 0 0;
  }
  .about-lng .about-lng-info .about-lng-bnt .about-lng-link {
    font-size: 1.6rem;
    padding: 0.9em 1.8em;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide {
    width: 31%;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card {
    min-height: 370px;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-text .opinion-customer {
    font-size: 1.75rem;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-text .opinion-date {
    font-size: 1.5rem;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-badge {
    width: 40px;
    height: 40px;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-header .opinion-badge .facebook-icon {
    width: 40px;
    height: 40px;
  }
  .opinion .carousel-container .carousel-wrapper .carousel-slide .step-card .step-description {
    font-size: 1.65rem;
  }
  .opinion .opinion-link {
    margin-top: 3em;
  }
  .opinion .opinion-link .opinion-btn {
    padding: 0.8em 1.7em;
    font-size: 1.6rem;
  }
  .counter-section {
    padding: 3em 2em 5em;
  }
  .counter-section .counter-boxs .counters-list {
    margin-top: 3em;
  }
  .counter-section .counter-boxs .counters-list .counter-item {
    width: 32%;
    padding-bottom: 1.5em;
  }
  .counter-section .counter-boxs .counters-list .counter-item .counter-info {
    font-size: 1.75rem;
  }
  .counter-section .counter-boxs .counters-list .counter-item .counter {
    font-size: 5rem;
  }
   .cta {
    padding: 6em 18em 4em;
  }
  .cta .section-title span {
    font-size: 4rem;
  }
  .cta .cta-text {
    font-size: 1.95rem;
  }
  .cta .cta-text-info {
    font-size: 1.95rem;
  }
  .cta .cta-btn {
    margin: 2em auto 1em;
  }
  .cta .cta-btn .cta-link {
    font-size: 1.6rem;
  }
  .faq-section {
    padding: 6em 2em 5em;
  }
  .faq-section .faq-container {
    margin: 4em auto 0;
    width: 70%;
  }
  .faq-section .faq-container .faq-item .faq-question .faq-question-title {
    font-size: 1.85rem;
    width: 70%;
  }
  .faq-section .faq-container .faq-item .faq-question .faq-toggle-icon {
    font-size: 3rem;
  }
  .faq-section .faq-container .faq-item .faq-answer {
    width: 90%;
  }
  .faq-section .faq-container .faq-item .faq-answer p {
    font-size: 1.75rem;
  }
}/*# sourceMappingURL=sec.css.map */