@font-face {
  font-family: "the-seasons";
  src: url("/assets/fonts/The-Seasons/the-seasons-light.woff2") format("woff2"), url("/assets/fonts/The-Seasons/the-seasons-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "the-seasons";
  src: url("/assets/fonts/The-Seasons/the-seasons-light-italic.woff2") format("woff2"), url("/assets/fonts/The-Seasons/the-seasons-light-italic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "the-seasons";
  src: url("/assets/fonts/The-Seasons/the-seasons-regular.woff2") format("woff2"), url("/assets/fonts/The-Seasons/the-seasons-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "the-seasons";
  src: url("/assets/fonts/The-Seasons/the-seasons-regular-italic.woff2") format("woff2"), url("/assets/fonts/The-Seasons/the-seasons-regular-italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "the-seasons";
  src: url("/assets/fonts/The-Seasons/the-seasons-bold.woff2") format("woff2"), url("/assets/fonts/The-Seasons/the-seasons-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "the-seasons";
  src: url("/assets/fonts/The-Seasons/the-seasons-bold-italic.woff2") format("woff2"), url("/assets/fonts/The-Seasons/the-seasons-bold-italic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "peridot-pe-variable";
  src: url("/assets/fonts/Peridot-PE-Variable/peridot-pe-variable-regular.woff2") format("woff2"), url("/assets/fonts/Peridot-PE-Variable/peridot-pe-variable-regular.woff") format("woff");
  font-weight: 100 200 300 400 500 600 700 800 900;
  font-style: normal;
  font-display: swap;
  ascent-override: 92%;
  descent-override: 18%;
  line-gap-override: 0%;
}
.dropdown {
  position: relative;
}
.dropdown__content {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  width: 100vw;
  max-width: 1440px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 14px 0 0 0;
}
.dropdown__container {
  background-color: #FFFFFF;
  border-radius: 35px;
  overflow: hidden;
  padding: 25px;
}
.dropdown__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-bottom: 12px;
}
.dropdown__link-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  background: rgba(248, 247, 244, 0.5);
  border: 1px solid transparent;
}
.dropdown__link-item:hover {
  transform: translateY(-2px);
}
.dropdown__link-item:hover .dropdown__link {
  color: #137461;
  transform: translateX(8px);
}
.dropdown__link-item:hover .dropdown__description {
  color: #137461;
  transform: translateX(8px);
}
.dropdown__link-item:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, #137461 0%, rgba(19, 116, 97, 0.6) 100%);
  border-radius: 0 2px 2px 0;
  opacity: 1;
}
.dropdown__link-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #137461 0%, rgba(19, 116, 97, 0.6) 100%);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown__link {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin: 0;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown__link * {
  text-decoration: none !important;
}
.dropdown__link-item {
  text-decoration: none;
}
.dropdown__link-item:hover {
  text-decoration: none;
}
.dropdown__description {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #2A2C29;
  margin: 0;
  line-height: 1.4;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-style: none !important;
  text-underline-offset: unset !important;
  text-decoration-thickness: unset !important;
}
.dropdown__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dropdown__footer-item {
  padding: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.dropdown__footer-item--pink {
  background-color: #F8E7E7;
}
.dropdown__footer-item--mint {
  background-color: #DFE8E6;
}
.dropdown__footer-item:hover {
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.dropdown__footer-item:hover .button {
  background-color: #DD9127;
}
.dropdown__footer-item img {
  width: 28%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 15px;
}
.dropdown__footer-item .footer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dropdown__footer-item h4 {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #2A2C29;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #2A2C29;
  margin: 0;
}
.dropdown__footer-item p {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #2A2C29;
  margin: 0;
}
.dropdown__footer-item .button {
  align-self: flex-start;
  margin-top: 8px;
}
.dropdown:hover .dropdown__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown:hover .main-nav__link {
  color: #137461;
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .dropdown__content {
    width: 96%;
    top: 90px;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .dropdown__content {
    width: calc(100vw - 4%);
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    top: 75px;
  }
  .dropdown__content:hover {
    transform: translateX(-50%) translateY(0);
  }
  .dropdown__links {
    grid-template-columns: 1fr;
  }
  .dropdown__footer {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .dropdown__footer-item {
    padding: 16px 20px;
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }
  .dropdown__footer-item img {
    flex-shrink: 0;
  }
  .dropdown__footer-item .footer-content {
    align-items: flex-start;
    gap: 8px;
    flex: 1;
  }
  .dropdown__footer-item h4 {
    font-size: 1.25rem;
    text-align: left;
  }
  .dropdown__footer-item p {
    font-size: 0.875rem;
    text-align: left;
  }
}
@media (max-width: 869px) {
  .dropdown__content {
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    top: 64px;
  }
  .dropdown__content:hover {
    transform: translateX(-50%) translateY(0);
  }
}
.main-header {
  background-color: transparent;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.3s ease;
  transform: translateY(0);
}
.main-header.hidden {
  transform: translateY(-100%);
}

.main-nav {
  background-color: transparent;
  width: 1520px;
  margin: 0 auto;
  margin-top: 0;
  padding: 20px 0px;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: margin-top 0.3s ease, padding 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
}
.main-nav.scrolled {
  margin-top: 10px;
  padding: 10px 0;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF;
}
.main-nav.scrolled .main-nav__menu {
  margin-left: 20px;
}
.main-nav__logo .logo-container {
  z-index: 10;
  position: relative;
  display: flex;
  align-items: center;
  height: 34px;
  overflow: hidden;
  width: 170px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav__logo .logo-text {
  height: 34px;
  width: auto;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
}
.main-nav__logo .logo-e {
  height: 25px;
  width: auto;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
  margin-bottom: 1px;
  align-self: flex-end;
  z-index: 10;
  position: relative;
}
.main-nav__logo.scrolled .logo-container {
  width: 45px;
}
.main-nav__logo.scrolled .logo-text {
  transform: translateX(-100%);
  opacity: 0;
}
.main-nav__logo.scrolled .logo-e {
  transform: translateX(-400%);
  opacity: 1;
}
.main-nav__menu {
  background-color: transparent;
  display: flex;
  margin-left: 50px;
  gap: 34px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav__item {
  position: relative;
}
.main-nav__link {
  color: #2A2C29;
  text-decoration: none;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  padding: 34px 0;
  position: relative;
}
.main-nav__link:hover:after {
  width: 100%;
}
.main-nav__link:hover {
  color: #137461;
}
.main-nav__buttons {
  display: flex;
  gap: 10px;
  margin-left: auto;
  align-items: center;
}

body.prelaunch-page .main-nav {
  background-color: #F8F7F4;
  width: 100%;
  margin: 0;
  margin-top: 0;
  padding: 20px 20px 20px 100px;
}
body.prelaunch-page .main-nav__buttons {
  margin-right: 60px;
}

.nav-icon {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 10px;
}
.nav-icon img {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}
.nav-icon:hover img {
  content: url("/assets/images/icons/Icon_connexion_yellow.svg");
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .main-nav {
    width: 96%;
    max-width: 1620px;
    margin-left: 2%;
    margin-right: 2%;
    padding: 20px 0;
  }
  .main-nav__menu {
    margin-left: 0px;
    gap: clamp(12px, 1.5vw, 34px);
  }
  .main-nav__link {
    font-size: clamp(1.25rem, 1.2vw, 1.375rem);
  }
  .main-nav__buttons {
    gap: clamp(2px, 0.5vw, 10px);
    margin-left: auto;
  }
  body.prelaunch-page .main-nav {
    background-color: #F8F7F4;
    width: 100%;
  }
  .nav-icon img {
    width: clamp(45px, 4.5vw, 60px);
  }
  body.prelaunch-page .main-nav .main-nav__burger {
    right: 20px;
    display: block;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .main-nav {
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
    padding: 15px 0;
  }
  .main-nav.scrolled {
    margin-top: 5px;
    padding: 10px 0 10px 0;
  }
  .main-nav__menu {
    margin-left: clamp(20px, 2vw, 30px);
    gap: clamp(15px, 1.5vw, 25px);
  }
  .main-nav__link {
    font-size: clamp(1.125rem, 1vw, 1.25rem);
    padding: 27.5px 0;
  }
  .main-nav__buttons {
    gap: 5px;
    margin-left: auto;
  }
  .main-nav__buttons .button:not(.nav-icon) {
    display: none;
  }
  body.prelaunch-page .main-nav .button:not(.nav-icon) {
    display: block;
  }
  .nav-icon img {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
    padding: 15px 0px 15px 15px;
    position: relative;
  }
  .main-nav.scrolled {
    margin-top: 5;
    padding: 10px 0px 10px 15px;
  }
  .main-nav__menu {
    display: none;
  }
  .main-nav__buttons {
    margin-left: auto;
    gap: 10px;
    display: none;
  }
  .main-nav__burger {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
  }
  .main-nav__burger span {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #137461;
    transition: all 0.3s ease;
    border-radius: 3px;
  }
  .main-nav__burger span:nth-child(1) {
    top: 0;
  }
  .main-nav__burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .main-nav__burger span:nth-child(3) {
    bottom: 0;
  }
  .main-nav__burger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  .main-nav__burger.active span:nth-child(2) {
    opacity: 0;
  }
  .main-nav__burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
  }
  .nav-icon img {
    width: 40px;
    height: 40px;
  }
  .main-nav__burger {
    display: block;
    margin-right: 30px;
  }
  body.prelaunch-page .main-nav {
    padding: 20px 20px 20px 20px;
  }
}
.main-nav__mobile-menu {
  display: none;
  position: fixed;
  top: calc(64px + 30px);
  left: 0;
  width: 100%;
  height: calc(100vh - 64px - 30px);
  background-color: transparent;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(0);
  overflow-y: auto;
}
.main-nav__mobile-menu.active {
  display: block;
  opacity: 1;
  visibility: visible;
}
.main-nav__mobile-menu.active.hidden {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.main-nav__mobile-menu .mobile-menu__container {
  background-color: #FFFFFF;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  border-radius: 0 0 20px 20px;
  padding: 5px 24px 40px 24px;
  z-index: 0;
  margin-bottom: 20px;
  margin-top: 0;
}
.main-nav__mobile-menu .mobile-menu__item {
  margin-bottom: 6px;
}
.main-nav__mobile-menu .mobile-menu__item:last-child {
  margin-bottom: 0;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  text-decoration: none;
  background: rgba(248, 247, 244, 0.5);
  border: 1px solid transparent;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link .mobile-menu__link-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link:hover {
  background: linear-gradient(135deg, rgba(19, 116, 97, 0.05) 0%, rgba(19, 116, 97, 0.02) 100%);
  border-color: rgba(19, 116, 97, 0.2);
  color: #137461;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link:hover .mobile-menu__link-title {
  color: #137461;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link:hover .mobile-menu__arrow {
  color: #137461;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link.active {
  background: linear-gradient(135deg, rgba(19, 116, 97, 0.05) 0%, rgba(19, 116, 97, 0.02) 100%);
  border-color: rgba(19, 116, 97, 0.2);
  color: #137461;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link.active .mobile-menu__link-title {
  color: #137461;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link.active .mobile-menu__arrow {
  color: #137461;
  transform: rotate(180deg);
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link-title {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #2A2C29;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__arrow {
  width: 12px;
  height: 8px;
  color: #2A2C29;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(0deg);
  flex-shrink: 0;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 8px;
  padding-left: 10px;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown.active {
  max-height: 1000px;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px;
  margin-bottom: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  background: linear-gradient(135deg, transparent 0%, transparent 100%);
  border: 1px solid transparent;
  text-decoration: none;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link:hover, .main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link.active {
  background: linear-gradient(135deg, rgba(19, 116, 97, 0.05) 0%, rgba(19, 116, 97, 0.02) 100%);
  transform: translateX(8px);
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link:hover .mobile-menu__dropdown-title, .main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link.active .mobile-menu__dropdown-title {
  color: #137461;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link:hover .mobile-menu__dropdown-description, .main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link.active .mobile-menu__dropdown-description {
  color: #137461;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link .mobile-menu__dropdown-title {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration-line: underline;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link .mobile-menu__dropdown-description {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #2A2C29;
  margin: 0;
  line-height: 1.4;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
}
.main-nav__mobile-menu .mobile-menu__button {
  width: 100%;
  margin-top: 12px;
}
.main-nav__mobile-menu .mobile-menu__promo {
  background-color: #F8E7E7;
  border-radius: 20px;
  padding: 15px;
  margin-top: 20px;
}
.main-nav__mobile-menu .mobile-menu__promo .mobile-menu__promo-content {
  background-image: url("/assets/images/common/famille.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.main-nav__mobile-menu .mobile-menu__promo .mobile-menu__promo-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  border-radius: 15px;
}
.main-nav__mobile-menu .mobile-menu__promo .mobile-menu__promo-content h4 {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.5625rem;
  color: #F8F7F4;
  margin: 0 0 8px 0;
  position: relative;
  z-index: 1;
}
.main-nav__mobile-menu .mobile-menu__promo .mobile-menu__promo-content p {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #F8F7F4;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 1;
}
.main-nav__mobile-menu .mobile-menu__promo .mobile-menu__promo-content .button {
  position: relative;
  z-index: 1;
}

.mobile-menu__top-border {
  position: fixed;
  top: calc(64px + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  height: 20px;
  background: #FFFFFF;
  border-radius: 20px 20px 0 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.mobile-menu__top-border.active {
  opacity: 1;
  visibility: visible;
}

.footer {
  position: relative;
  background-color: #F7F0E5;
  border-top-left-radius: 55px;
  border-top-right-radius: 55px;
  padding-top: 67px;
  overflow-x: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1800px;
  height: 100%;
  background-image: url("/assets/images/common/footer/desk/desk_1.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (min-width: 1620px) {
  .footer::before {
    background-size: cover;
    background-position: bottom;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .footer::before {
    background-size: 700% 123%;
    background-position: center bottom;
  }
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 85%;
  width: calc((100vw - 1620px) / 2 + 400px);
  height: 100%;
  background: linear-gradient(to right, transparent 0%, #137461 100px);
  border-top-left-radius: 12.5%;
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 2300px) {
  .footer::after {
    left: 80%;
  }
}
@media (max-width: 1725px) {
  .footer::after {
    display: none;
  }
}
.footer__content {
  position: relative;
  z-index: 1;
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 7%;
  height: 1000px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.footer__tablet, .footer__mobile {
  display: none;
}
.footer__partners-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 15px;
}
.footer__partner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: white;
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__partner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.footer__legal-texts {
  text-align: right;
  max-width: 500;
  margin: 0 auto;
}
.footer__legal-text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  color: #F8F7F4;
  line-height: 1.5;
  margin: 0 0 20px 0;
}
.footer__legal-text:last-child {
  margin-bottom: 0;
}
.footer__grid-item {
  position: relative;
}
.footer__grid-item--1 {
  grid-area: 1/1/2/3;
}
.footer__grid-item--2 {
  grid-area: 1/3/2/4;
}
.footer__grid-item--3 {
  grid-area: 1/4/2/5;
}
.footer__grid-item--4 {
  grid-area: 2/1/3/3;
}
.footer__grid-item--5 {
  grid-area: 2/3/3/4;
}
.footer__grid-item--6 {
  grid-area: 2/4/3/5;
}
.footer__grid-item--7 {
  grid-area: 3/1/4/2;
}
.footer__grid-item--8 {
  grid-area: 3/2/4/3;
}
.footer__grid-item--9 {
  grid-area: 3/3/4/5;
}
.footer__grid-item--10 {
  grid-area: 4/1/5/2;
}
.footer__grid-item--11 {
  grid-area: 4/2/5/3;
}
.footer__grid-item--12 {
  grid-area: 4/3/5/5;
  display: flex;
  flex-direction: column;
  align-items: right;
  justify-content: right;
  padding-bottom: 20px;
}
.footer__grid-item-1-logo {
  width: 200px;
  max-height: 20%;
  object-fit: contain;
  object-position: left;
}
.footer__grid-item-1-subtitle {
  color: #2A2C29;
  -webkit-text-stroke: 0.5px #2A2C29;
  -webkit-text-fill-color: #2A2C29;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.1875rem;
  font-weight: 700;
  margin: 20px 0;
  width: 80%;
}
.footer__grid-item-1-text {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.5625rem;
  font-weight: 400;
  margin-bottom: 20px;
  width: 80%;
}
.footer__grid-item-2-title {
  width: 150%;
  color: #137461;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.75rem;
  font-weight: 700;
  -webkit-text-stroke: 1px #137461;
  -webkit-text-fill-color: #137461;
  margin-bottom: 10px;
  margin-left: 20px;
  overflow: visible;
  z-index: 2;
}
.footer__grid-item-2-text {
  color: #2A2C29;
  width: 90%;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 20px;
  margin-left: 20px;
}
.footer__grid-item-2-button {
  margin-left: 20px;
}
.footer__grid-item-4-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  gap: 1%;
  margin-bottom: 2%;
}
.footer__grid-item-4-social-item {
  width: 50px;
  height: 50px;
  transform: translate(-10%, 100%);
}
.footer__grid-item-4-social-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.footer__grid-item-4-social-item img:hover {
  transform: scale(1.1);
}
.footer__grid-item-4-social-number {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.5625rem;
  font-weight: 700;
  margin-bottom: 2%;
  transform: translateY(150%);
}
.footer__grid-item-4-social-number a[href^=tel],
.footer__grid-item-4-social-number a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  -webkit-text-fill-color: inherit;
}
.footer__grid-item-4-social-number a[href^=tel]:hover,
.footer__grid-item-4-social-number a[href^="tel:"]:hover {
  color: inherit;
  text-decoration: none;
}
.footer__grid-item-4-social-time {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 2%;
  transform: translateY(150%);
}
.footer__grid-item-4-social-location {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  transform: translateY(70%);
}
.footer__grid-item-5-title {
  color: #F8F7F4;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 20px;
  transform: translate(49%, 105%);
  width: 102%;
  max-width: 340px;
}
.footer__grid-item-5-text {
  color: #F8F7F4;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
  transform: translate(50%, 55%);
}
.footer__grid-item-8-title {
  color: #F8F7F4;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 20px;
  transform: translate(55%, 145%);
}
.footer__grid-item-8-text {
  color: #F8F7F4;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
  transform: translate(55%, 45%);
}
.footer__grid-item-10-title {
  color: #F8F7F4;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 20px;
  transform: translate(70%, 0%);
}
.footer__bottom {
  background-color: #F8E7E7;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 40px;
  padding: 9px 0 13px 0;
  overflow-x: hidden;
}
.footer__bottom {
  background-color: #F8F7F4;
  border-top: 1px solid rgba(42, 44, 41, 0.1);
  margin-top: 0;
  margin-bottom: 40px;
  position: relative;
  z-index: 10010;
}
.footer__bottom-content {
  max-width: 1620px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0 7%;
}
.footer__bottom-link {
  color: #2A2C29;
  text-decoration: none;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
}
.footer__bottom-link:hover {
  color: #137461;
}
.footer .footer__partners-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  width: 100%;
}
.footer .footer__legal-texts {
  text-align: right;
  max-width: 100%;
  margin-left: auto;
  width: 100%;
}
.footer .footer__legal-text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  color: #F8F7F4;
  line-height: 1.5;
  width: 100%;
  text-align: right;
  margin-left: auto;
}
.footer .footer__legal-text:last-child {
  margin-bottom: 0;
}
.footer .footer__partner {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background-color: white;
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer__partner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.footer .footer__grid-item-5-text a,
.footer .footer__grid-item-8-text a,
.footer .footer__tablet-content-2-text-1 a,
.footer .footer__tablet-content-2-text-2 a,
.footer .footer__tablet-content-2-text-3 a,
.footer .footer__mobile-column-list-1 a,
.footer .footer__mobile-column-list-2 a,
.footer .footer__mobile-column-list-3 a {
  text-decoration: none;
  color: rgba(248, 247, 244, 0.85);
}
.footer .footer__grid-item-5-text a:hover,
.footer .footer__grid-item-8-text a:hover,
.footer .footer__tablet-content-2-text-1 a:hover,
.footer .footer__tablet-content-2-text-2 a:hover,
.footer .footer__tablet-content-2-text-3 a:hover,
.footer .footer__mobile-column-list-1 a:hover,
.footer .footer__mobile-column-list-2 a:hover,
.footer .footer__mobile-column-list-3 a:hover {
  text-decoration: none;
  color: #F8F7F4;
}
.footer a[href^=tel],
.footer a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  -webkit-text-fill-color: inherit;
}
.footer a[href^=tel]:hover,
.footer a[href^="tel:"]:hover {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .footer {
    background-image: url("/assets/images/common/footer/tab/fond.png");
    background-size: 170% 88%;
    background-position: bottom;
    background-repeat: no-repeat;
  }
  .footer::before {
    display: none;
  }
  .footer__content {
    display: none;
  }
  .footer__mobile {
    display: none;
  }
  .footer__grid-item {
    display: none;
  }
  .footer__tablet {
    display: flex;
    flex-direction: column;
    padding: 40px 45px;
    order: 1;
    position: relative;
    z-index: 1;
    min-height: 80vh;
  }
  .footer__tablet-content-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .footer__tablet-content-1-left {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 20px;
  }
  .footer__tablet-content-1-left img {
    width: 150px;
    max-height: 15%;
    object-fit: contain;
    object-position: left;
  }
  .footer__tablet-content-1-left-title {
    width: 100%;
    color: #137461;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 2.5rem;
    font-weight: 700;
    -webkit-text-stroke: 1px #137461;
    -webkit-text-fill-color: #137461;
    transform: none;
    text-align: left;
    margin-bottom: 10px;
    overflow: visible;
    z-index: 2;
  }
  .footer__tablet-content-1-left-text {
    width: 60%;
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    transform: none;
    text-align: left;
    margin-bottom: 0;
  }
  .footer__tablet-content-1-right {
    display: flex;
    flex-direction: column;
    align-items: right;
    justify-content: right;
  }
  .footer__tablet-content-1-right-icons {
    display: flex;
    flex-direction: row;
    align-items: right;
    justify-content: right;
    gap: 10px;
  }
  .footer__tablet-content-1-right-item-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: right;
    margin-bottom: 5%;
  }
  .footer__tablet-content-1-right-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .footer__tablet-content-1-right-item-number {
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.5625rem;
    font-weight: 700;
    margin-bottom: 5%;
    transform: none;
    text-align: right;
  }
  .footer__tablet-content-1-right-item-number a[href^=tel],
  .footer__tablet-content-1-right-item-number a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    -webkit-text-fill-color: inherit;
  }
  .footer__tablet-content-1-right-item-number a[href^=tel]:hover,
  .footer__tablet-content-1-right-item-number a[href^="tel:"]:hover {
    color: inherit;
    text-decoration: none;
  }
  .footer__tablet-content-1-right-item-time {
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 5%;
    transform: none;
    text-align: right;
  }
  .footer__tablet-content-1-right-item-location {
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    transform: none;
    text-align: right;
  }
  .footer__tablet-button {
    width: 100%;
    margin-top: 40px;
    transform: none;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
  }
  .footer__tablet-content-1 {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  .footer__tablet-content-1-left, .footer__tablet-content-1-right {
    flex: 1;
  }
  .footer__tablet-content-2 {
    display: block;
    position: relative;
    margin-top: 120px;
    margin-bottom: 70px;
  }
  .footer__tablet-content-2-bg {
    position: relative;
    background-image: url("/assets/images/common/footer/tab/tab_1.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 400px auto;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer__tablet-content-2-columns {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 45% 30%;
    gap: 25%;
  }
  .footer__tablet-content-2-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer__tablet-content-2-group-1 {
    transform: translateY(20%);
  }
  .footer__tablet-content-2-group-2 {
    transform: translateY(20%);
  }
  .footer__tablet-content-2-group-3 {
    transform: none;
  }
  .footer__tablet-content-2-center {
    display: none;
  }
  .footer__tablet-content-2-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    margin-left: auto;
    justify-self: end;
    width: 100%;
  }
  .footer__tablet-content-2-title-3, .footer__tablet-content-2-text-3 {
    width: 100%;
    text-align: right;
  }
  .footer__tablet-content-2-title-3 {
    margin: 0;
    padding: 0;
  }
  .footer__tablet-content-2-text-3 {
    margin: 0;
    padding: 0;
  }
  .footer__tablet-content-1-title-1, .footer__tablet-content-1-title-2, .footer__tablet-content-1-title-3 {
    color: #F8F7F4;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 15px;
    white-space: nowrap;
    word-break: keep-all;
    hyphens: none;
  }
  .footer__tablet-content-1-text-1, .footer__tablet-content-1-text-2, .footer__tablet-content-1-text-3 {
    color: #F8F7F4;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    overflow: visible;
    white-space: nowrap;
    word-break: keep-all;
    hyphens: none;
    width: 320px;
    max-width: none;
    flex: 0 0 320px;
  }
  .footer__tablet-content-2-title-1, .footer__tablet-content-2-title-2, .footer__tablet-content-2-title-3 {
    color: #F8F7F4;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .footer__tablet-content-2-text-1, .footer__tablet-content-2-text-2, .footer__tablet-content-2-text-3 {
    color: #F8F7F4;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .footer__tablet-content-2-title-1 {
    width: auto;
    max-width: 300px;
    min-width: 200px;
    transform: none;
    margin-bottom: 0;
    margin-left: 0;
  }
  .footer__tablet-content-2-text-1 {
    margin-bottom: 175px;
    width: 100%;
    transform: none;
    margin-left: 0;
  }
  .footer__tablet-content-2-title-2 {
    width: 60%;
    transform: none;
    margin-left: 0;
    margin-bottom: 0;
  }
  .footer__tablet-content-2-text-2 {
    width: 100%;
    transform: none;
    margin-left: 0;
  }
  .footer__tablet-content-2-title-3 {
    width: auto;
    transform: none;
    margin: 0;
  }
  .footer__tablet-content-2-text-3 {
    width: auto;
    transform: none;
    margin: 0;
  }
  .footer__tablet-bottom {
    margin-top: -70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: center;
  }
  .footer__tablet-bottom .footer__partners-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
  }
  .footer__tablet-bottom .footer__legal-texts {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
  .footer__tablet-bottom .footer__legal-text {
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    color: #F8F7F4;
    line-height: 1.5;
    margin: 0 auto 20px auto;
    width: 80%;
    text-align: center;
  }
  .footer__tablet-bottom .footer__legal-text:last-child {
    margin-bottom: 0;
  }
  .footer__tablet-bottom .footer__partner {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background-color: white;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer__tablet-bottom .footer__partner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}
@media (max-width: calc(780px - 1px)) {
  .footer {
    background-image: url("/assets/images/common/footer/mobile/fond.png");
    background-size: 150% 75%;
    background-position: bottom;
    background-repeat: no-repeat;
  }
  .footer::before {
    display: none;
  }
  .footer__content {
    display: none;
  }
  .footer__content::before {
    display: none;
  }
  .footer__tablet {
    display: none;
  }
  .footer__tablet::before {
    display: none;
  }
  .footer__nav {
    margin-bottom: 40px;
  }
  .footer__mobile {
    display: flex;
    flex-direction: column;
    padding: 40px 24px 0 24px;
    order: 1;
    position: relative;
    z-index: 1;
  }
  .footer__mobile::before {
    display: none;
  }
  .footer__mobile-logo {
    width: 180px;
    height: 100%;
    object-fit: contain;
    object-position: center;
    margin-top: -50px;
  }
  .footer__mobile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .footer__mobile-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer__mobile-title {
    width: 80%;
    color: #137461;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 2.5rem;
    font-weight: 700;
    -webkit-text-stroke: 1px #137461;
    -webkit-text-fill-color: #137461;
    text-align: center;
    margin-bottom: 10px;
    overflow: visible;
    z-index: 2;
    margin-top: 20px;
    line-height: 1.4;
  }
  .footer__mobile-subtitle {
    width: 70%;
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    text-align: center;
  }
  .footer__mobile-button {
    width: 100%;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    margin: 15px 0 50px 0;
  }
  .footer__mobile-socials {
    display: flex;
    flex-direction: row;
    align-items: right;
    justify-content: right;
    gap: 10px;
  }
  .footer__mobile-social {
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: right;
    margin-bottom: 5%;
  }
  .footer__mobile-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .footer__mobile-contact {
    display: flex;
    flex-direction: column;
    align-items: right;
    justify-content: right;
    gap: 10px;
  }
  .footer__mobile-contact-phone {
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.5625rem;
    font-weight: 700;
    text-align: center;
  }
  .footer__mobile-contact-phone a[href^=tel],
  .footer__mobile-contact-phone a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    -webkit-text-fill-color: inherit;
  }
  .footer__mobile-contact-phone a[href^=tel]:hover,
  .footer__mobile-contact-phone a[href^="tel:"]:hover {
    color: inherit;
    text-decoration: none;
  }
  .footer__mobile-contact-hours {
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    text-align: center;
  }
  .footer__mobile-contact-adress {
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 35%;
  }
  .footer__mobile-column {
    margin-top: 15%;
    padding: 0 10%;
    align-items: center;
    position: relative;
    justify-content: center;
  }
  .footer__mobile-column::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #DD9127;
    z-index: 1;
  }
  .footer__mobile-column::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #137461;
    z-index: 2;
  }
  .footer__mobile-column-list-1, .footer__mobile-column-list-2, .footer__mobile-column-list-3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 3;
  }
  .footer__mobile-column-title-1, .footer__mobile-column-title-2, .footer__mobile-column-title-3 {
    color: #F8F7F4;
    -webkit-text-stroke: 1px #F8F7F4;
    -webkit-text-fill-color: #F8F7F4;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 1.875rem;
    font-weight: 400;
    text-align: center;
    position: relative;
    z-index: 3;
    margin-bottom: 10px;
  }
  .footer__mobile-column-list-1-item, .footer__mobile-column-list-2-item, .footer__mobile-column-list-3-item {
    color: #F8F7F4;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    text-align: center;
    position: relative;
    z-index: 3;
  }
  .footer__mobile-column-title-1, .footer__mobile-column-list-1-item {
    text-align: left;
    margin-left: 15%;
  }
  .footer__mobile-column-title-2, .footer__mobile-column-list-2-item {
    text-align: right;
    margin-right: 15%;
  }
  .footer__mobile-column:nth-child(2)::before {
    left: auto;
    right: -10px;
  }
  .footer__mobile-column:nth-child(2)::after {
    left: auto;
    right: 0;
  }
  .footer__mobile-column-title-3, .footer__mobile-column-list-3-item {
    text-align: left;
    margin-left: 15%;
  }
  .footer__mobile-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 80px 0 20px 0;
  }
  .footer__mobile-partners img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #F8F7F4;
    padding: 6px;
    object-fit: contain;
  }
  .footer__mobile-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 92%;
    text-align: center;
    margin: 0 auto;
  }
  .footer__mobile-text {
    color: #F8F7F4;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    margin-bottom: 40px;
  }
  .footer__mobile-bottom {
    background: #137461;
    padding: 16px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
.button {
  display: inline-block;
  height: auto;
  padding: 12px 23px 14px 23px;
  border-radius: 30px;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease-in-out;
}
.button--primary {
  background-color: #137461;
  color: #F8F7F4;
}
.button--primary:hover {
  background-color: #DD9127;
}
.button--secondary {
  background-color: #DD9127;
  color: #F8F7F4;
}
.button--secondary:hover {
  background-color: #137461;
}
.button--white {
  background-color: #F8F7F4;
  color: #137461;
}
.button--white:hover {
  background-color: #137461;
  color: #F8F7F4;
}
.button--white-outline {
  background-color: rgba(248, 247, 244, 0.35);
  color: #F8F7F4;
  border: 1px solid #F8F7F4;
}
.button--white-outline:hover {
  background-color: #F8F7F4;
  color: #137461;
}
.button--primary-hover-pink {
  background-color: #137461;
  color: #F8F7F4;
}
.button--primary-hover-pink:hover {
  background-color: #F8E7E7;
  border: 1px solid #E8B0B0;
  color: #137461;
}
.button--primary-hover-dark-primary {
  background-color: #137461;
  color: #F8F7F4;
}
.button--primary-hover-dark-primary:hover {
  background-color: #0C5A4B;
}
.button--outline-primary {
  background-color: transparent;
  color: #137461;
  border: 1px solid #137461;
}
.button--outline-primary:hover {
  color: #DD9127;
  border: 1px solid #DD9127;
}
.button--outline-primary-background-mint {
  background-color: #DFE8E6;
  color: #137461;
  border: 1px solid #137461;
}
.button--outline-primary-background-mint:hover {
  background-color: #F8E7E7;
  border: 1px solid #E8B0B0;
}
.button--outline-secondary {
  background-color: transparent;
  color: #DD9127;
  border: 1px solid #DD9127;
}
.button--outline-secondary:hover {
  background-color: #DD9127;
  color: #F8F7F4;
}

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

body {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  background-color: #F8F7F4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main {
  padding-top: 90px;
}

@media (min-width: 1300px) and (max-width: 1620px) {
  main {
    padding-top: 90px;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  main {
    padding-top: 75px;
  }
}
@media (max-width: calc(780px - 1px)) {
  main {
    padding-top: 64px;
  }
}
.blog-header .blog-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
}
.blog-header .blog-nav__logo .logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-header .blog-nav__logo .logo-container .logo-text,
.blog-header .blog-nav__logo .logo-container .logo-e {
  height: 52px;
}
.blog-header .blog-nav__logo .logo-container .logo-blog-label {
  font-weight: 700;
  font-size: 14px;
  color: #2A2C29;
}
.blog-header .blog-nav__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-header .blog-nav__menu .blog-nav__link {
  color: #2A2C29;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}
.blog-header .blog-nav__menu .blog-nav__link:hover, .blog-header .blog-nav__menu .blog-nav__link:focus-visible {
  color: #137461;
}
.blog-header .blog-nav__cta .button {
  white-space: nowrap;
  padding: 10px 16px;
}
.blog-header .blog-nav__burger {
  display: none;
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .blog-header .blog-nav__menu .blog-nav__link {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .blog-header .blog-nav__menu .blog-nav__link {
    font-size: 1.125rem !important;
  }
}
@media (max-width: 900px) {
  .blog-header .blog-nav__menu {
    display: none;
  }
  .blog-header .blog-nav__cta {
    display: none;
  }
  .blog-header .blog-nav__burger {
    display: block;
  }
}
.author {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 40px 0;
}
.author__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}
.author__header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.author__header--image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(19, 116, 97, 0.1);
}
.author__header--image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.author__header--image__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #137461;
}
.author__header--image__placeholder svg {
  width: 80px;
  height: 80px;
}
.author__header--content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.author__header--content__name {
  color: #2A2C29;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #2A2C29;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.author__header--content__bio {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.author__header--content__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.author__header--content__meta__count {
  color: rgba(42, 44, 41, 0.47);
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
}
.author__header--content__meta__linkedin {
  display: flex;
  align-items: center;
  color: #137461;
  transition: opacity 0.2s ease;
}
.author__header--content__meta__linkedin:hover {
  opacity: 0.8;
}
.author__header--content__meta__linkedin svg {
  width: 24px;
  height: 24px;
}

.author-articles {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 60px 0;
}
.author-articles__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}
.author-articles__title {
  color: #2A2C29;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #2A2C29;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 40px 0;
}
.author-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.author-articles__load-more {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.author-articles__load-more__button {
  overflow: hidden;
  color: #137461;
  text-align: center;
  text-overflow: ellipsis;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  transition: opacity 0.2s ease;
}
.author-articles__load-more__button:hover {
  color: #DD9127;
}

.author-articles .articles__card {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.author-articles .articles__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.author-articles .articles__card--content__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .author__container {
    padding: 0 7%;
  }
  .author__header {
    gap: 30px;
  }
  .author__header--image {
    width: 180px;
    height: 180px;
  }
  .author-articles__container {
    padding: 0 7%;
  }
  .author-articles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .author {
    padding: 40px 0 30px 0;
  }
  .author__container {
    padding: 0 45px;
  }
  .author__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }
  .author__header--image {
    width: 150px;
    height: 150px;
  }
  .author__header--content__name {
    font-size: 1.875rem;
  }
  .author__header--content__bio {
    font-size: 1.25rem;
  }
  .author-articles {
    padding: 30px 0 40px 0;
  }
  .author-articles__container {
    padding: 0 45px;
  }
  .author-articles__title {
    font-size: 1.875rem;
    margin-bottom: 30px;
  }
  .author-articles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: calc(780px - 1px)) {
  .author {
    padding: 30px 0 20px 0;
  }
  .author__container {
    padding: 0 24px;
  }
  .author__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .author__header--image {
    width: 120px;
    height: 120px;
  }
  .author__header--content__name {
    font-size: 1.875rem;
  }
  .author__header--content__bio {
    font-size: 1.125rem;
  }
  .author__header--content__meta {
    justify-content: center;
  }
  .author-articles {
    padding: 20px 0 30px 0;
  }
  .author-articles__container {
    padding: 0 24px;
  }
  .author-articles__title {
    font-size: 1.875rem;
    margin-bottom: 25px;
  }
  .author-articles__grid {
    grid-template-columns: 1fr;
  }
}
.articles {
  width: 100%;
  margin: 0 auto 45px auto;
}
.articles__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.articles__sidebar {
  width: 26.5%;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}
.articles__search {
  width: 100%;
  margin-bottom: 40px;
}
.articles__search-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 27.813px;
  border: 0.795px solid #F8E7E7;
  background: rgba(248, 231, 231, 0.3);
}
.articles__search-icon {
  display: flex;
  align-items: center;
  color: rgba(42, 44, 41, 0.47);
  flex-shrink: 0;
}
.articles__search-input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}
.articles__search-input::placeholder {
  color: rgba(42, 44, 41, 0.47);
}
.articles__search-input::-webkit-search-cancel-button, .articles__search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.articles__search-input::-ms-clear {
  display: none;
}
.articles__search-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: #137461;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.articles__search-clear:hover {
  opacity: 0.85;
  background: rgba(19, 116, 97, 0.08);
}
.articles__search-clear:focus {
  outline: none;
}
.articles__search-clear svg {
  display: block;
}
.articles__categories {
  width: 100%;
}
.articles__categories__label {
  display: block;
  color: #6C727E;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.articles__categories__filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.articles__categories__filters__item {
  display: flex;
  padding: 10px 12px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 35px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}
.articles__categories__filters__item__text {
  color: #6C727E;
  text-align: center;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.articles__categories__filters__item__count {
  display: flex;
  opacity: 0;
  visibility: hidden;
  width: 0;
  padding: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, width 0.3s ease, padding 0.3s ease;
}
.articles__categories__filters__item--active {
  border: 1px solid rgba(19, 116, 97, 0.08);
  background: rgba(19, 116, 97, 0.08);
}
.articles__categories__filters__item--active .articles__categories__filters__item__text {
  color: #111927;
}
.articles__categories__filters__item--active .articles__categories__filters__item__count {
  opacity: 1;
  visibility: visible;
  width: 38.81px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  color: #2A2C29;
  text-align: center;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}
.articles__categories__filters__item:hover:not(.articles__categories__filters__item--active) {
  background: rgba(19, 116, 97, 0.04);
}
.articles__categories__filters__item:hover:not(.articles__categories__filters__item--active) .articles__categories__filters__item__count {
  opacity: 1;
  visibility: visible;
  width: 38.81px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  color: #2A2C29;
  text-align: center;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}
.articles__grid-container {
  width: calc(73.5% - 30px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.articles__card,
.articles a.articles__card {
  display: flex;
  flex-direction: column;
  border-radius: 22.416px;
  border: 0.64px solid rgba(221, 145, 39, 0.2);
  background: #F8F7F4;
  overflow: hidden;
  padding: 25px 20px;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.articles__card--load-more-hidden,
.articles a.articles__card--load-more-hidden {
  display: none;
}
.articles__card:hover,
.articles a.articles__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.articles__card--image,
.articles a.articles__card--image {
  width: 100%;
  position: relative;
  margin-bottom: 18px;
}
.articles__card--image__badge,
.articles a.articles__card--image__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  padding: 8px 15px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 80px;
  border: 1px solid rgba(221, 145, 39, 0.2);
  background: #FFF;
  z-index: 1;
}
.articles__card--image__badge-label,
.articles a.articles__card--image__badge-label {
  overflow: hidden;
  color: #2A2C29;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
}
.articles__card--image__img,
.articles a.articles__card--image__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.articles__card:hover,
.articles a.articles__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.articles__card--content,
.articles a.articles__card--content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.articles__card--content__title,
.articles a.articles__card--content__title {
  color: #2A2C29;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #2A2C29;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.articles__card--content__description,
.articles a.articles__card--content__description {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.articles__card--content__meta,
.articles a.articles__card--content__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.articles__card--content__meta__lecture-time,
.articles a.articles__card--content__meta__lecture-time {
  display: flex;
  align-items: center;
  gap: 4px;
}
.articles__card--content__meta__lecture-time__icon,
.articles a.articles__card--content__meta__lecture-time__icon {
  width: 15px;
  height: 15px;
}
.articles__card--content__meta__lecture-time__label,
.articles a.articles__card--content__meta__lecture-time__label {
  color: rgba(42, 44, 41, 0.47);
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 12px;
}
.articles__card--content__meta__author,
.articles a.articles__card--content__meta__author {
  color: rgba(42, 44, 41, 0.47);
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.articles__load-more {
  width: 100%;
  display: flex;
  justify-content: center;
}
.articles__load-more__button {
  overflow: hidden;
  color: #137461;
  text-align: center;
  text-overflow: ellipsis;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  transition: opacity 0.2s ease;
}
.articles__load-more__button:hover {
  color: #DD9127;
}
.articles__search-loading {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 140px;
  gap: 12px;
}
.articles__search-loading__spinner {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(19, 116, 97, 0.15);
  border-top-color: #137461;
  border-radius: 50%;
  animation: articles-spin 0.65s linear infinite;
}
.articles__search-loading__text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  color: rgba(42, 44, 41, 0.6);
}

@keyframes articles-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 1300px) and (max-width: 1620px) {
  .articles__container {
    padding: 0 7%;
  }
  .articles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .articles__container {
    padding: 0 45px;
    flex-direction: column;
  }
  .articles__sidebar {
    width: 100%;
    position: static;
  }
  .articles__grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: calc(780px - 1px)) {
  .articles__container {
    padding: 0 24px;
    flex-direction: column;
  }
  .articles__sidebar {
    width: 100%;
    position: static;
  }
  .articles__grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .articles__card--image__img {
    height: 150px;
  }
  .articles__card--content {
    padding: 15px;
  }
  .articles__card--content__title {
    font-size: 1.125rem;
  }
  .articles__card--content__description {
    font-size: 11px;
  }
}
