@charset "UTF-8";
/* Gilroy Font - SemiBold 600 */
@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Semibold.eot");
  src: url("/fonts/Gilroy-Semibold.eot?#iefix") format("embedded-opentype"), url("/fonts/Gilroy-Semibold.woff2") format("woff2"), url("/fonts/Gilroy-Semibold.woff") format("woff"), url("/fonts/Gilroy-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Iconly custom icon font */
@font-face {
  font-family: "Iconly";
  src: url("../img/icons/icon-custom-font-font/iconly.eot");
  src: url("../img/icons/icon-custom-font-font/iconly.eot?#iefix") format("embedded-opentype"), url("../img/icons/icon-custom-font-font/iconly.woff2") format("woff2"), url("../img/icons/icon-custom-font-font/iconly.woff") format("woff"), url("../img/icons/icon-custom-font-font/iconly.ttf") format("truetype"), url("../img/icons/icon-custom-font-font/iconly.svg#Iconly") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Onest", Arial, sans-serif;
  color: #424c5c;
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
    padding: 30px;
  }
}

.container-mobile {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
}

.container-tablet {
  max-width: 768px;
  padding: 15px;
  margin: 0 auto;
}

.container-desktop {
  max-width: 1440px;
  padding: 30px;
  margin: 0 auto;
}

.container-large {
  max-width: 1440px;
  padding: 30px;
  margin: 0 auto;
}

@media (min-width: 0px) and (max-width: 767px) {
  [class*=__container] {
    padding: 0 16px;
  }
}

@media (min-width: 1440px) {
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
  }
  .animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .animate-fade-in.animate-visible {
    opacity: 1;
  }
  .animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .animate-slide-up.animate-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .animate-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .animate-slide-left.animate-visible {
    opacity: 1;
    transform: translateX(0);
  }
  .animate-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .animate-slide-right.animate-visible {
    opacity: 1;
    transform: translateX(0);
  }
  .animate-delay-1 {
    transition-delay: 0.1s;
  }
  .animate-delay-2 {
    transition-delay: 0.2s;
  }
  .animate-delay-3 {
    transition-delay: 0.3s;
  }
  .animate-delay-4 {
    transition-delay: 0.4s;
  }
  .animate-delay-5 {
    transition-delay: 0.5s;
  }
}
.section {
  padding: 64px 0;
}
.section--small {
  padding: 40px 0;
}
.section--large {
  padding: 96px 0;
}

.section-title {
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.05;
  color: #5b60cc;
  letter-spacing: -2px;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1439px) {
  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
  }
}

.section-subtitle {
  font-size: 20px;
  color: #424c5c;
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
}

.grid {
  display: grid;
  gap: 24px;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1439px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1439px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1439px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.card__title {
  font-size: 20px;
  font-weight: 600;
  color: #424c5c;
  margin-bottom: 8px;
}
.card__description {
  font-size: 16px;
  color: #424c5c;
  line-height: 1.6;
  opacity: 0.8;
}

.section {
  padding: 64px 0;
}

.section-title {
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.05;
  color: #5b60cc;
  letter-spacing: -2px;
  margin-bottom: 40px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 44px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__logo {
  display: block;
  width: 275px;
  height: 74px;
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo:hover {
  opacity: 0.9;
}
.header__logo-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__logo-image {
  width: 275px;
  height: 74px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.header__nav {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.header__nav-item {
  display: flex;
  align-items: center;
  position: relative;
}
.header__nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  color: #ffffff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header__nav-link:hover {
  opacity: 0.8;
}
.header__nav-link:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  border-radius: 4px;
}
.header__nav-arrow {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  transition: transform 0.3s ease;
}
.header__nav-item--dropdown {
  position: relative;
  contain: layout;
}
.header__nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin: 0;
  padding: 19px 24px 29px 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 10;
  overflow: hidden;
  will-change: transform, opacity;
}
.header__nav-dropdown-list {
  width: 420px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.header__nav-item--dropdown:hover .header__nav-dropdown, .header__nav-item--dropdown.is-open .header__nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.header__nav-item--dropdown:hover .header__nav-arrow, .header__nav-item--dropdown.is-open .header__nav-arrow {
  transform: rotate(180deg);
}
.header__nav-dropdown-item {
  align-self: stretch;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  padding: 12px 16px;
  text-decoration: none;
  color: #2D2B30;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 26.4px;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
}
.header__nav-dropdown-item--active {
  background: #EBE4D2;
  border-radius: 6px;
}
.header__nav-dropdown-item--active.header__nav-dropdown-item--border {
  border-bottom: none;
}
.header__nav-dropdown-item--border {
  border-bottom: 1px solid #D9CCB2;
}
.header__nav-dropdown-item:hover, .header__nav-dropdown-item:focus-visible {
  outline: none;
  background: #EBE4D2;
  border-radius: 6px;
}
.header__nav-dropdown-number {
  width: 55px;
  text-align: right;
  color: #C2171C;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  flex-shrink: 0;
}
.header__nav-dropdown-text {
  flex: 1 1 0;
  color: #2D2B30;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 26.4px;
}
.header__nav-dropdown-image-container {
  position: relative;
  width: 400px;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(235, 228, 210, 0.5);
  display: flex;
  align-items: stretch;
  min-height: 100%;
  border-radius: 0px 30px 0px 30px;
}
.header__nav-dropdown-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.header__nav-dropdown-image--1 {
  opacity: 1;
}
.header__nav-dropdown-image[src=""] {
  display: none;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}
.header__button {
  display: inline-block;
  padding: 16px 32px;
  border: none;
  border-radius: 6px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: 2px solid transparent;
  outline-offset: -2px;
}
.header__button--primary {
  background: #C2171C;
  color: #ffffff;
  outline-color: #C2171C;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.header__button--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.header__button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(171.202764977, 20.297235023, 24.7096774194);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.header__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 23, 28, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}
.header__button--primary:hover::before {
  left: 100%;
}
.header__button--primary:hover::after {
  opacity: 1;
}
.header__button--primary:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.header__button--primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(194, 23, 28, 0.3);
}
.header__language {
  display: flex;
  align-items: center;
  position: relative;
}
.header__language-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.header__language-btn:hover {
  opacity: 0.8;
}
.header__language-btn:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  border-radius: 4px;
}
.header__language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}
.header__language-option {
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #2D2B30;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.header__language-option:hover, .header__language-option:focus-visible {
  outline: none;
  background: rgba(144, 142, 146, 0.1);
}
.header__language-option--active {
  color: #C2171C;
}
.header__language.is-open .header__language-arrow {
  transform: rotate(180deg);
}
.header__language.is-open .header__language-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.header__language-text {
  color: #ffffff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}
.header__language-arrow {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
}
.header__menu-toggle {
  display: none;
  width: 38px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
  z-index: 101;
}
.header__menu-toggle:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  border-radius: 4px;
}
.header__menu-toggle-line {
  height: 4px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.header__menu-toggle-line--1 {
  width: 38px;
}
.header__menu-toggle-line--2 {
  width: 30px;
}
.header__menu-toggle-line--3 {
  width: 30px;
}
@media (max-width: 1439px) {
  .header__container {
    padding: 16px 24px;
    gap: 24px;
  }
  .header__nav-list {
    gap: 12px;
  }
  .header__nav-link {
    font-size: 14px;
    padding: 10px 6px;
  }
  .header__button {
    padding: 14px 24px;
    font-size: 14px;
  }
}
@media (max-width: 1439px) {
  .header__container {
    padding: 12px 16px;
    justify-content: space-between;
  }
  .header__logo {
    width: 163px;
    height: 44px;
  }
  .header__logo-image {
    width: 163px;
    height: 44px;
  }
  .header__menu-toggle {
    display: inline-flex !important;
  }
  .header__nav {
    display: none !important;
  }
  .header__actions {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .header__container {
    padding: 12px 16px;
    justify-content: space-between;
  }
  .header__logo {
    width: 163px;
    height: 44px;
  }
  .header__logo-image {
    width: 163px;
    height: 44px;
  }
  .header__menu-toggle {
    display: inline-flex !important;
  }
  .header__nav {
    display: none !important;
  }
  .header__actions {
    display: none !important;
  }
}

.header.white-header {
  background-color: #ffffff;
}
.header.white-header .header__nav-link {
  color: #2D2B30;
}
.header.white-header .header__nav-link:hover {
  opacity: 0.7;
}
.header.white-header .header__nav-link:focus {
  outline: none;
}
.header.white-header .header__nav-arrow {
  color: #2D2B30;
}
.header.white-header .header__language-text {
  color: #2D2B30;
}
.header.white-header .header__language-arrow {
  color: #2D2B30;
}
.header.white-header .header__language-btn:focus {
  outline: 2px solid #2D2B30;
  outline-offset: 2px;
  border-radius: 4px;
}
.header.white-header .header__menu-toggle-line {
  background: #2D2B30;
}
.header.white-header .header__menu-toggle:focus {
  outline: none;
}
.header.white-header .header__menu-toggle:active {
  outline: none;
}
@media (max-width: 1439px) {
  .header.white-header .header__nav {
    display: none !important;
  }
  .header.white-header .header__actions {
    display: none !important;
  }
  .header.white-header .header__menu-toggle {
    display: inline-flex !important;
  }
}
@media (max-width: 767px) {
  .header.white-header .header__nav {
    display: none !important;
  }
  .header.white-header .header__actions {
    display: none !important;
  }
  .header.white-header .header__menu-toggle {
    display: inline-flex !important;
  }
}

.header-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #2D2B30;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}
.header-mobile-menu--open {
  transform: translateX(0);
}
.header-mobile-menu__header {
  width: 100%;
  height: 70px;
  position: relative;
}
.header-mobile-menu__blur {
  width: 100%;
  height: 70px;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(45, 43, 48, 0.45);
  box-shadow: 80px 80px 80px;
  filter: blur(40px);
}
.header-mobile-menu__close {
  position: absolute;
  right: 16px;
  top: 20px;
  width: 38px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: opacity 0.3s ease;
}
.header-mobile-menu__close:hover {
  opacity: 0.8;
}
.header-mobile-menu__close-icon {
  width: 38px;
  height: 24px;
  display: block;
  object-fit: contain;
}
.header-mobile-menu__logo {
  width: 163px;
  height: 44px;
  position: absolute;
  left: 16px;
  top: 14px;
  overflow: hidden;
}
.header-mobile-menu__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-mobile-menu__content {
  padding: 90px 16px 200px 65px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
  display: flex;
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  padding-bottom: 175px;
}
@media (max-width: 767px) {
  .header-mobile-menu__content {
    gap: 33px;
  }
}
.header-mobile-menu__nav-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.header-mobile-menu__nav-header {
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  display: inline-flex;
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.3s ease;
}
.header-mobile-menu__nav-header:hover {
  opacity: 0.8;
}
.header-mobile-menu__nav-title {
  color: white;
  font-size: 24px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 24px;
  word-wrap: break-word;
}
.header-mobile-menu__nav-arrow {
  display: inline-block;
  color: white;
  font-size: 16px;
  transition: transform 0.3s ease;
  transform-origin: center;
}
.header-mobile-menu__nav-section--open .header-mobile-menu__nav-arrow {
  transform: rotate(180deg);
}
.header-mobile-menu__nav-submenu {
  padding-left: 24px;
  padding-right: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 27px;
  display: flex;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
  padding-top: 0;
  padding-bottom: 0;
}
.header-mobile-menu__nav-section--open .header-mobile-menu__nav-submenu {
  max-height: 500px;
  padding-top: 24px;
  padding-bottom: 3px;
}
.header-mobile-menu__nav-link {
  color: white;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 21.6px;
  word-wrap: break-word;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header-mobile-menu__nav-link:hover {
  opacity: 0.8;
}
.header-mobile-menu__nav-item {
  color: white;
  font-size: 24px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 24px;
  word-wrap: break-word;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header-mobile-menu__nav-item:hover {
  opacity: 0.8;
}
.header-mobile-menu__footer {
  position: absolute;
  left: 0;
  bottom: 75px;
  width: 100%;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  background: #2D2B30;
  z-index: 10;
}
.header-mobile-menu__button {
  padding: 16px 32px;
  background: #C2171C;
  border-radius: 6px;
  outline: 2px #C2171C solid;
  outline-offset: -2px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  display: inline-flex;
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.header-mobile-menu__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.header-mobile-menu__button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(171.202764977, 20.297235023, 24.7096774194);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.header-mobile-menu__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 23, 28, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}
.header-mobile-menu__button:hover::before {
  left: 100%;
}
.header-mobile-menu__button:hover::after {
  opacity: 1;
}
.header-mobile-menu__button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(194, 23, 28, 0.3);
}
.header-mobile-menu__languages {
  width: 140px;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  display: inline-flex;
}
.header-mobile-menu__language-btn {
  padding: 12px 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #B9B9B9;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 16px;
  transition: color 0.3s ease;
}
.header-mobile-menu__language-btn--active {
  color: white;
}
.header-mobile-menu__language-btn:hover {
  color: white;
}

.footer {
  width: 100%;
  position: relative;
  margin-top: -96px;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 96px;
}
.footer__main {
  align-self: stretch;
  padding: 120px 44px 44px;
  background: #2D2B30;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.footer__container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 170px;
}
.footer__left {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}
.footer__logo-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.footer__logo-wrapper {
  width: 288px;
  height: 77px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.footer__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.footer-logo {
  height: 77px;
  width: auto;
  object-fit: contain;
  display: block;
}

.name-logo-footer {
  height: 39px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer__contact-section {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  margin-left: 135px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .footer__contact-section {
    margin-left: 0;
  }
}
.footer__contact-info {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .footer__contact-info {
    padding-left: 131px;
  }
}
.footer__contact-text {
  color: #ffffff;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 21.6px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .footer__contact-text {
    font-size: 11px;
  }
}
.footer__address {
  width: 235px;
  text-align: left;
  color: #B9B9B9;
  font-size: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  word-wrap: break-word;
  margin: 0;
}
.footer .logo-footer-mobile {
  display: none;
}
.footer__nav {
  align-self: stretch;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 181px;
}
.footer__nav-column {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.footer__nav-link {
  justify-content: center;
  display: flex;
  flex-direction: column;
  color: #B9B9B9;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 16px;
  word-wrap: break-word;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: #ffffff;
}
.footer__social {
  width: 226px;
  align-self: stretch;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
  margin-left: auto;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .footer__social {
    margin-left: 0;
  }
}
.footer__social-content {
  flex: 1 1 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.footer__social-title {
  color: #ffffff;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 21.6px;
  word-wrap: break-word;
  margin: 0;
}
.footer__social-links {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.footer__social-link {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.footer__social-link:hover {
  opacity: 0.8;
}
.footer__social-icon {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.footer__social-text {
  color: #D2CED8;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 21.6px;
  word-wrap: break-word;
}
.footer__bottom {
  align-self: stretch;
  padding: 16px 44px;
  background: #151313;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 48px;
}
.footer__bottom-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 48px;
}
.footer__copyright {
  color: #B9B9B9;
  font-size: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 19.6px;
  word-wrap: break-word;
  margin: 0;
}
.footer__languages {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
.footer__language-btn {
  padding: 12px 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}
.footer__language-btn:hover {
  opacity: 0.8;
}
.footer__language-btn span {
  color: #B9B9B9;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 16px;
  word-wrap: break-word;
}
.footer__language-btn--active span {
  color: #ffffff;
}
.footer__newsletter {
  width: 1360px;
  max-width: calc(100% - 80px);
  padding: 48px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -48px;
  background: #444347;
  box-shadow: 0px 1.85px 3.15px rgba(0, 0, 0, 0);
  border-top-left-radius: 36px;
  border-bottom-right-radius: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  z-index: 0;
}
.footer__newsletter-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
.footer__newsletter-text {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.footer__newsletter-title {
  width: 485px;
  color: #ffffff;
  font-size: 30px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 36px;
  word-wrap: break-word;
  margin: 0;
}
.footer__newsletter-description {
  width: 513px;
  color: #ffffff;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
  margin: 0;
}
.footer__newsletter-form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
}
.footer__newsletter-input {
  width: 350px;
  height: 56px;
  padding: 0 21px;
  background: #F3EFE7;
  border-radius: 6px;
  border: none;
  outline: none;
  box-sizing: border-box;
  color: #B9B9B9;
  font-size: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 14px;
  word-wrap: break-word;
}
.footer__newsletter-input::placeholder {
  color: #B9B9B9;
}
.footer__newsletter-input:focus {
  outline: 2px solid #C2171C;
  outline-offset: -2px;
}
.footer__newsletter-button {
  height: 56px;
  padding: 0 32px;
  background: #C2171C;
  border-radius: 6px;
  outline: 2px solid #C2171C;
  outline-offset: -2px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 16px;
  word-wrap: break-word;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.footer__newsletter-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.footer__newsletter-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(171.202764977, 20.297235023, 24.7096774194);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.footer__newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 23, 28, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}
.footer__newsletter-button:hover::before {
  left: 100%;
}
.footer__newsletter-button:hover::after {
  opacity: 1;
}
.footer__newsletter-button:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.footer__newsletter-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(194, 23, 28, 0.3);
}
.footer__newsletter-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: currentColor;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .footer__main {
    padding: 80px 24px 24px;
  }
  .footer__container {
    flex-direction: column;
    gap: 40px;
  }
  .footer__content {
    flex-direction: column;
    gap: 40px;
  }
  .footer__nav {
    gap: 24px;
  }
  .footer__nav-column {
    flex: 1;
  }
  .footer__newsletter {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -48px;
    width: 1360px;
    max-width: calc(100% - 80px);
    padding: 48px;
    margin: 0;
    flex-direction: column;
  }
  .footer__newsletter-content {
    flex-direction: column;
    width: 100%;
  }
  .footer__newsletter-text {
    width: 100%;
  }
  .footer__newsletter-title, .footer__newsletter-description {
    width: 100%;
  }
  .footer__newsletter-form {
    width: 100%;
  }
  .footer__newsletter-input {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .footer__social-title {
    display: none;
  }
  .footer__social-links {
    flex-direction: row;
    justify-content: flex-end;
  }
  .footer__main {
    padding: 157px 24px 51px;
  }
  .footer__content {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .footer__left {
    flex: 1 1 calc(50% - 24px);
  }
  .footer__nav {
    flex: 1 1 calc(50% - 24px);
  }
  .footer__social {
    flex: 1 1 100%;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .footer__main {
    padding: 138px 16px 44px;
  }
  .footer__container {
    gap: 32px;
  }
  .footer__content {
    gap: 32px;
  }
  .footer__logo-wrapper {
    width: 100%;
    max-width: 288px;
  }
  .footer__contact-section {
    flex-direction: column;
  }
  .footer__logo-section {
    display: none;
  }
  .footer .logo-footer-mobile {
    display: block;
    width: 100%;
  }
  .footer .logo-footer-mobile__image {
    width: 163px;
    height: 44px;
    object-fit: contain;
    display: block;
  }
  .footer__newsletter {
    width: 100%;
    max-width: calc(100% - 20px);
    padding: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -48px;
    margin: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  .footer__newsletter-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
  }
  .footer__newsletter-text {
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }
  .footer__newsletter-title {
    align-self: stretch;
    font-size: 18px;
    line-height: 21.6px;
    width: 100%;
  }
  .footer__newsletter-description {
    align-self: stretch;
    font-size: 14px;
    line-height: 19.6px;
    width: 100%;
  }
  .footer__newsletter-form {
    align-self: stretch;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;
    width: 100%;
  }
  .footer__newsletter-input {
    flex: 1 1 0;
    padding: 21px 16px;
    background: white;
    font-size: 12px;
    height: auto;
    width: auto;
  }
  .footer__newsletter-input::placeholder {
    color: #B9B9B9;
  }
  .footer__newsletter-icon {
    font-size: 28px;
  }
  .footer__newsletter-button {
    padding: 16px;
    height: auto;
    flex-shrink: 0;
  }
  .footer__newsletter-button span:first-child {
    display: none;
  }
  .footer__contact-text {
    font-size: 11px;
    line-height: 120%;
  }
  .footer__contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .footer .logo-footer-mobile {
    flex: 1 1 calc(50% - 24px);
  }
  .footer__contact-text {
    flex: 1 1 calc(50% - 24px);
  }
  .footer__address {
    width: auto;
    text-align: center;
    flex: 1 1 100%;
    font-size: 12px;
  }
  .footer__social-title {
    display: none;
  }
  .footer__social-links {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__social-text {
    font-size: 12px;
  }
  .footer__bottom {
    padding: 22px 16px;
  }
  .footer__copyright {
    font-size: 8px;
  }
}

[class=icon],
[class^=icon-],
[class*=" icon-"] {
  display: inline-flex;
  font-family: "Iconly" !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.icon-star-filled::before {
  content: "\e000";
}

.icon-star-empty::before {
  content: "\e001";
}

.icon-social-youtube::before {
  content: "\e002";
}

.icon-social-vk::before {
  content: "\e003";
}

.icon-social-telegram::before {
  content: "\e004";
}

.icon-social-rutube::before {
  content: "\e005";
}

.icon-social-instagram::before {
  content: "\e006";
}

.icon-social-facebook::before {
  content: "\e007";
}

.icon-social-discord::before {
  content: "\e008";
}

.icon-search::before {
  content: "\e009";
}

.icon-profile::before {
  content: "\e00a";
}

.icon-menu::before {
  content: "\e00b";
}

.icon-insta-white::before {
  content: "\e00c";
}

.icon-favorite::before {
  content: "\e00d";
}

.icon-favorite-white::before {
  content: "\e00e";
}

.icon-chevron-right::before {
  content: "\e00f";
}

.icon-chevron-down::before {
  content: "\e010";
}

.icon-cart::before {
  content: "\e011";
}

.icon-cart-white::before {
  content: "\e012";
}

.icon-arrow::before {
  content: "\e013";
}

.icon-message::before {
  content: "\e014";
}

.icon-vector::before {
  content: "\e015";
}

.icon-close::before {
  content: "\e016";
}

.icon-time-circle::before {
  content: "\e017";
}

.icon-location::before {
  content: "\e018";
}

.icon-headline::before {
  content: "\e019";
}

.icon-calender::before {
  content: "\e01a";
}

.icon-arrow-top-right::before {
  content: "\e01b";
}

.icon-arrow-top-left::before {
  content: "\e01b";
  display: inline-block;
}

.icon-arrow-right::before {
  content: "\e01c";
}

.icon-arrow-down::before {
  content: "\e01d";
}

.icon-arrow-down-bold::before {
  content: "\e01e";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button--primary {
  background-color: #5b60cc;
  color: #ffffff;
}
.button--primary:hover {
  opacity: 0.9;
}
.button--secondary {
  background-color: transparent;
  color: #5b60cc;
  border: 1px solid #cbcdf4;
}
.button--secondary:hover {
  background-color: rgba(91, 96, 204, 0.05);
}
.button--large {
  padding: 16px 48px;
  font-size: 20px;
}
.button--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 100px;
  background-color: rgba(91, 96, 204, 0.08);
  position: relative;
}
.button--icon svg {
  width: 24px;
  height: 24px;
}
.button--icon:hover {
  background-color: rgba(91, 96, 204, 0.15);
}

.input {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: 1px solid rgba(66, 76, 92, 0.12);
  border-radius: 8px;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}
.input:focus {
  outline: none;
  border-color: #5b60cc;
}
.input::placeholder {
  color: #424c5c;
  opacity: 0.6;
}
.input--error {
  border-color: #e74c3c;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.input-group__label {
  font-size: 16px;
  font-weight: 500;
  color: #424c5c;
}
.input-group__error {
  font-size: 16px;
  color: #e74c3c;
  margin-top: 8px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal--active {
  opacity: 1;
  visibility: visible;
}
.modal__content {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: all 0.3s ease;
}
.modal--active .modal__content {
  transform: scale(1);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}
.modal__close:hover {
  opacity: 0.7;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__header {
  margin-bottom: 24px;
  text-align: center;
}
.modal__title {
  font-size: 40px;
  font-weight: 700;
  color: #424c5c;
  margin-bottom: 8px;
}
.modal__subtitle {
  font-size: 20px;
  color: #818181;
  line-height: 1.5;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal .form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal .form__group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}
.modal .form__label {
  font-size: 16px;
  font-weight: 500;
  color: #424c5c;
}
.modal .form__input, .modal .form__textarea {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: 1px solid rgba(66, 76, 92, 0.12);
  border-radius: 8px;
  background-color: #ffffff;
  color: #424c5c;
  transition: border-color 0.3s ease;
}
.modal .form__input:focus, .modal .form__textarea:focus {
  outline: none;
  border-color: #5b60cc;
}
.modal .form__input::placeholder, .modal .form__textarea::placeholder {
  color: #818181;
  opacity: 0.6;
}
.modal .form__textarea {
  resize: vertical;
  min-height: 100px;
}
.modal .form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.modal .form__checkbox input[type=checkbox] {
  margin: 0;
  margin-top: 2px;
}
.modal .form__checkbox-text {
  font-size: 16px;
  color: #818181;
  line-height: 1.4;
}
.modal .form__link {
  color: #5b60cc;
  text-decoration: underline;
}
.modal .form__link:hover {
  text-decoration: none;
}
.modal .form__submit {
  background-color: #5b60cc;
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal .form__submit:hover {
  background-color: rgba(91, 96, 204, 0.8);
}
.modal .form__submit:disabled {
  background-color: #818181;
  cursor: not-allowed;
}
.modal__content--centered {
  text-align: center;
}
.modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.modal__success-icon {
  margin-bottom: 8px;
}
.modal__close-btn {
  background-color: #5b60cc;
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal__close-btn:hover {
  background-color: rgba(91, 96, 204, 0.8);
}
.modal__close span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #424c5c;
  margin: 3px 0;
  transition: all 0.3s ease;
}
.modal__close span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.modal__close span:last-child {
  transform: rotate(-45deg) translate(7px, -6px);
}

.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  max-width: 400px;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
.toast--active {
  transform: translateX(0);
}
.toast__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.toast__title {
  font-size: 20px;
  font-weight: 600;
  color: #424c5c;
}
.toast__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}
.toast__close:hover {
  opacity: 0.7;
}
.toast__description {
  font-size: 16px;
  color: #424c5c;
  line-height: 1.5;
  opacity: 0.8;
}

.breadcrumbs {
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .breadcrumbs {
    margin-bottom: 32px;
  }
}
.breadcrumbs__wrapper {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.breadcrumbs__list {
  align-self: stretch;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  max-width: 100%;
}
.breadcrumbs__list::-webkit-scrollbar {
  display: none;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .breadcrumbs__list {
    gap: 8px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .breadcrumbs__list {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
}
.breadcrumbs__link {
  color: #2D2B30;
  font-size: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  text-decoration: underline;
  line-height: 16.8px;
  word-wrap: break-word;
  transition: color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.breadcrumbs__link:hover {
  color: #908E92;
  text-decoration: underline;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .breadcrumbs__link {
    font-size: 12px;
    line-height: 14.4px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .breadcrumbs__link {
    font-size: 8px;
    line-height: 9.6px;
  }
}
.breadcrumbs__separator {
  color: #908E92;
  font-size: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 16.8px;
  word-wrap: break-word;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .breadcrumbs__separator {
    font-size: 12px;
    line-height: 14.4px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .breadcrumbs__separator {
    font-size: 8px;
    line-height: 9.6px;
  }
}
.breadcrumbs__current {
  color: #908E92;
  font-size: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 16.8px;
  word-wrap: break-word;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .breadcrumbs__current {
    font-size: 12px;
    line-height: 14.4px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .breadcrumbs__current {
    font-size: 8px;
    line-height: 9.6px;
  }
}

.loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader-screen--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.loader-screen__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F5F1E9;
  z-index: 1;
}
.loader-screen__container {
  position: relative;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.loader-screen__window {
  position: relative;
  width: 600px;
  height: 180px;
  overflow: hidden;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10001;
  background: transparent;
  pointer-events: auto;
  clip-path: inset(0);
}
.loader-screen__window--expanded-width {
  width: 100vw;
  height: 180px;
}
.loader-screen__window--expanded-full {
  width: 100vw;
  height: 100vh;
}
.loader-screen__slide-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.loader-screen__slide-preview .hero-slider__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.loader-screen__slide-preview .hero-slider__image {
  width: 100vw;
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  z-index: 0;
}
.loader-screen__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.loader-screen__container--expanded .loader-screen__content {
  opacity: 0;
}
.loader-screen__text {
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  color: black;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 16px;
  word-wrap: break-word;
}
.loader-screen__progress-bar {
  width: 600px;
  height: 4px;
  background: white;
  overflow: hidden;
}
.loader-screen__progress-fill {
  width: 0%;
  height: 100%;
  background: #C2171C;
  transition: width 2s linear;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-slider > .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.hero-slider__swiper {
  width: 100%;
  height: 100%;
}
.hero-slider__swiper .swiper-slide {
  transition: opacity 2.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity;
}
.hero-slider__swiper .swiper-slide-active {
  opacity: 1;
}
.hero-slider__swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0;
}
.hero-slider__swiper .swiper-slide-duplicate-active,
.hero-slider__swiper .swiper-slide-prev,
.hero-slider__swiper .swiper-slide-next {
  transition: opacity 2.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hero-slider__slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-slider__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  z-index: 0;
  overflow: hidden;
}
.hero-slider__image {
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  will-change: transform, opacity;
  animation: none;
  transition: opacity 0.3s ease-out;
}
@keyframes zoomOut {
  0% {
    transform: translate(-50%, -50%) scale(1.25);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes zoomIn {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.15);
  }
}
.hero-slider.slider-active .hero-slider__slide[data-slide="1"].swiper-slide-active .hero-slider__image, .hero-slider.slider-active .hero-slider__slide[data-slide="3"].swiper-slide-active .hero-slider__image {
  animation: zoomOut 14s ease-out forwards;
}
.hero-slider.slider-active .hero-slider__slide[data-slide="2"].swiper-slide-active .hero-slider__image {
  animation: zoomIn 14s ease-out forwards;
}
.hero-slider__content {
  position: absolute;
  z-index: 2;
  width: 641px;
  left: 80px;
  top: 282px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 300px;
}
.hero-slider__title {
  align-self: stretch;
  color: #ffffff;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 57.6px;
  word-wrap: break-word;
  margin: 0;
  margin-bottom: 60px;
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.hero-slider__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-slider__actions {
  position: absolute;
  top: 240px;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 48px;
}
.hero-slider__button {
  padding: 16px 32px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  transition: all 0.3s ease;
  outline: 2px solid transparent;
  outline-offset: -2px;
}
.hero-slider__button--primary {
  background: #C2171C;
  color: #ffffff;
  outline-color: #C2171C;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-slider__button--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.hero-slider__button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(171.202764977, 20.297235023, 24.7096774194);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.hero-slider__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 23, 28, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}
.hero-slider__button--primary:hover::before {
  left: 100%;
}
.hero-slider__button--primary:hover::after {
  opacity: 1;
}
.hero-slider__button--primary:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.hero-slider__button--primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(194, 23, 28, 0.3);
}
.hero-slider__button--outline {
  background: transparent;
  color: #ffffff;
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}
.hero-slider__button--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hero-slider__button--outline:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.hero-slider__button-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.hero-slider__navigation {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 820px;
  background: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
.hero-slider__navigation-progress {
  width: 100%;
  height: 4px;
  background: #FFCC00;
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.hero-slider__navigation-content {
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.hero-slider__nav-block {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 24px;
  position: relative;
}
.hero-slider__nav-block:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5px;
  height: 56px;
  background: rgba(255, 255, 255, 0.4);
}
.hero-slider__nav-item {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: opacity 0.3s ease;
}
.hero-slider__nav-item:hover {
  opacity: 0.8;
}
.hero-slider__nav-item--active .hero-slider__nav-number {
  color: rgba(255, 255, 255, 0.5);
}
.hero-slider__nav-item--active .hero-slider__nav-title {
  color: rgba(255, 255, 255, 0.9);
}
.hero-slider__nav-item--active .hero-slider__nav-subtitle {
  color: rgba(255, 255, 255, 0.75);
}
.hero-slider__nav-item:not(.hero-slider__nav-item--active) .hero-slider__nav-number {
  color: rgba(255, 255, 255, 0.25);
}
.hero-slider__nav-item:not(.hero-slider__nav-item--active) .hero-slider__nav-title {
  color: rgba(255, 255, 255, 0.4);
}
.hero-slider__nav-item:not(.hero-slider__nav-item--active) .hero-slider__nav-subtitle {
  color: rgba(255, 255, 255, 0.25);
}
.hero-slider__nav-number {
  font-size: 40px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 300;
  line-height: 40px;
  word-wrap: break-word;
  transition: color 0.3s ease;
}
.hero-slider__nav-info {
  flex: 1 1 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
}
.hero-slider__nav-title {
  align-self: stretch;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 18px;
  word-wrap: break-word;
  transition: color 0.3s ease;
}
.hero-slider__nav-subtitle {
  align-self: stretch;
  font-size: 12px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 12px;
  word-wrap: break-word;
  transition: color 0.3s ease;
}
.hero-slider__nav-divider {
  width: 56px;
  height: 0px;
  transform: rotate(90deg);
  transform-origin: top left;
  outline: 0.5px solid rgba(255, 255, 255, 0.4);
  outline-offset: -0.25px;
}
@media (max-width: 1439px) {
  .hero-slider__content {
    width: 90%;
    max-width: 641px;
    left: 5%;
    top: 20%;
  }
  .hero-slider__title {
    font-size: 36px;
    line-height: 44px;
  }
  .hero-slider__navigation {
    width: 90%;
    right: 5%;
    left: auto;
    top: auto;
    bottom: 40px;
  }
}
@media (max-width: 1439px) {
  .hero-slider {
    height: 80vh;
  }
  .hero-slider__content {
    top: 40%;
    gap: 40px;
  }
  .hero-slider__title {
    font-size: 40px;
    line-height: 48px;
  }
  .hero-slider__actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    width: 100%;
  }
  .hero-slider__button {
    flex: 1;
    justify-content: center;
  }
  .hero-slider__navigation {
    width: 100%;
    right: 0;
    left: auto;
    bottom: 0;
  }
  .hero-slider__navigation-content {
    gap: 16px;
    padding: 16px;
  }
  .hero-slider__nav-divider {
    width: 100%;
    height: 1px;
    transform: none;
    outline: none;
    border-top: 0.5px solid rgba(255, 255, 255, 0.4);
  }
  .hero-slider__nav-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero-slider__nav-number {
    order: 1;
  }
  .hero-slider__nav-info {
    order: 2;
  }
}
@media (max-width: 767px) {
  .hero-slider {
    height: 550px;
  }
  .hero-slider__image-wrapper {
    height: 100%;
    width: 100%;
    min-height: auto;
  }
  .hero-slider__image {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    animation: none !important;
  }
  .swiper-slide-active .hero-slider__image {
    animation: none !important;
    transform: none;
  }
  .hero-slider__content {
    width: 343px;
    max-width: calc(100% - 32px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 46px;
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-height: auto;
    padding: 0 16px;
    box-sizing: border-box;
    margin: 0;
  }
  .hero-slider__title {
    align-self: stretch;
    color: white;
    font-size: 24px;
    font-family: "Manrope", Arial, sans-serif;
    font-weight: 700;
    line-height: 28.8px;
    word-wrap: break-word;
    margin: 0;
    margin-bottom: 0;
    min-height: auto;
    display: block;
    text-align: left;
    width: 100%;
  }
  .hero-slider__actions {
    position: relative;
    top: auto;
    left: auto;
    align-self: stretch;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    display: flex;
    gap: 24px;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .hero-slider__button {
    padding: 14px 20px;
    border-radius: 6px;
    outline: 2px solid;
    outline-offset: -2px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    display: flex;
    font-size: 16px;
    font-family: "Manrope", Arial, sans-serif;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
  }
  .hero-slider__button--primary {
    background: #C2171C;
    color: white;
    outline-color: #C2171C;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .hero-slider__button--primary span {
    white-space: nowrap;
  }
  .hero-slider__button--outline {
    background: transparent;
    color: white;
    outline: 2px white solid;
    outline-offset: -2px;
  }
  .hero-slider__button-icon {
    width: 24px;
    height: 24px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-slider__navigation {
    width: 100%;
    right: 0;
    left: 0;
    bottom: 0;
  }
  .hero-slider__navigation-content {
    width: 100%;
    flex-direction: row;
    gap: 0;
    padding: 16px 5px;
    justify-content: center;
    align-items: center;
  }
  .hero-slider__nav-block {
    flex: 1 1 0;
    padding: 0 12px;
  }
  .hero-slider__nav-block:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5px;
    height: 56px;
    background: rgba(255, 255, 255, 0.4);
  }
  .hero-slider__nav-divider {
    display: none;
  }
  .hero-slider__nav-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
  }
  .hero-slider__nav-number {
    order: 1;
  }
  .hero-slider__nav-title {
    font-size: 10px;
  }
  .hero-slider__nav-subtitle {
    font-size: 8px;
  }
  .hero-slider__nav-info {
    order: 2;
    align-items: center;
    gap: 0;
  }
}

.events {
  width: 100%;
  background: rgba(235, 228, 210, 0.5);
  padding: 80px 0;
}
.events__container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .events__container {
    padding: 0 40px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .events__container {
    padding: 0 20px;
  }
}
.events__header {
  align-self: stretch;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
.events__header-content {
  flex: 1 1 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.events__subtitle {
  align-self: stretch;
  text-align: center;
  color: #908E92;
  font-size: 20px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  margin: 0;
}
.events__title {
  align-self: stretch;
  text-align: center;
  color: #2D2B30;
  font-size: 60px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 66px;
  word-wrap: break-word;
  margin: 0;
}
.events__events {
  align-self: stretch;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.events__events.swiper {
  display: block;
}
.events__events .swiper-wrapper {
  display: flex;
  gap: 20px;
}
.events__events.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.events__event-card {
  width: 413px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.events__event-card:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.events__event-card:focus {
  outline: 2px solid #2D2B30;
  outline-offset: 4px;
  border-radius: 4px;
}
.events__event-image-wrapper {
  align-self: stretch;
  position: relative;
  background: #ffffff;
  overflow: hidden;
  border-top-right-radius: 36px;
  border-bottom-left-radius: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.events__event-image {
  align-self: stretch;
  height: 310px;
  width: 100%;
  object-fit: cover;
  display: block;
}
.events__event-badge {
  padding: 8px 16px;
  position: absolute;
  left: 24px;
  top: 258px;
  background: #F5F1E9;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #2D2B30;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 19.2px;
  word-wrap: break-word;
}
.events__event-content {
  width: 413px;
  padding: 16px 24px 24px;
  background: #ffffff;
  border-top-left-radius: 36px;
  border-bottom-right-radius: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.events__event-meta {
  align-self: stretch;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
.events__event-date, .events__event-time {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  color: #2D2B30;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 19.2px;
  word-wrap: break-word;
}
.events__event-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgb(144, 142, 146);
  flex-shrink: 0;
}
.events__event-icon--date, .events__event-icon--time, .events__event-icon--location {
  color: rgb(144, 142, 146);
}
.events__event-title {
  align-self: stretch;
  color: #2D2B30;
  font-size: 17px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 20.4px;
  word-wrap: break-word;
  margin: 0;
}
.events__event-location {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  text-align: center;
  color: #2D2B30;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 19.2px;
  word-wrap: break-word;
}
.events__actions {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.events__button {
  padding: 16px 32px;
  background: #C2171C;
  border-radius: 6px;
  outline: 2px solid #C2171C;
  outline-offset: -2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 16px;
  word-wrap: break-word;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.events__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.events__button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(171.202764977, 20.297235023, 24.7096774194);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.events__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 23, 28, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}
.events__button:hover::before {
  left: 100%;
}
.events__button:hover::after {
  opacity: 1;
}
.events__button:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.events__button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(194, 23, 28, 0.3);
}
.events__button-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
@media (max-width: 1439px) {
  .events__container {
    padding: 0 40px;
    gap: 32px;
  }
  .events__title {
    font-size: 48px;
    line-height: 54px;
  }
  .events__events {
    flex-wrap: wrap;
    justify-content: center;
  }
  .events__event-card {
    width: 100%;
    max-width: 413px;
  }
}
@media (max-width: 1439px) {
  .events {
    padding: 60px 0;
    overflow: hidden;
  }
  .events__container {
    padding: 0 24px;
    gap: 24px;
  }
  .events__header {
    flex-direction: column;
    gap: 12px;
  }
  .events__subtitle {
    font-size: 18px;
  }
  .events__title {
    font-size: 36px;
    line-height: 42px;
  }
  .events__events {
    overflow: visible;
  }
  .events__events.swiper {
    overflow: hidden;
  }
  .events__events .swiper-wrapper {
    display: flex;
    gap: 0px;
  }
  .events__event-card {
    width: 100%;
    flex-shrink: 0;
    height: auto;
  }
  .events__event-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .events {
    padding: 40px 0;
    overflow: hidden;
  }
  .events__container {
    padding: 0 16px;
    gap: 40px;
  }
  .events__subtitle {
    font-size: 14px;
  }
  .events__title {
    font-size: 32px;
    line-height: 34px;
  }
  .events__events {
    overflow: visible;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .events__events.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .events__events.swiper {
    overflow: hidden;
  }
  .events__events .swiper-wrapper {
    display: flex;
    gap: 0px;
  }
  .events__event-card {
    width: calc(100% - 20px);
    max-width: calc(100vw - 32px - 20px);
    flex-shrink: 0;
    height: auto;
  }
  .events__actions {
    width: 100%;
    display: flex;
  }
  .events__button {
    width: 100%;
    display: flex;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .events-swiper .swiper-slide {
    width: calc(100% - 20px);
    max-width: calc(100vw - 32px - 20px);
  }
}

.projects {
  width: 100%;
  position: relative;
  padding: 80px 0;
}
.projects__container {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.projects__container.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.projects__sidebar {
  width: 414px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  position: sticky;
  top: 0;
  align-self: flex-start;
  padding-top: 0px;
}
.projects__header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 80px;
}
.projects__subtitle {
  align-self: stretch;
  color: #908E92;
  font-size: 20px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  margin: 0;
}
.projects__title {
  align-self: stretch;
  color: #2D2B30;
  font-size: 60px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 66px;
  word-wrap: break-word;
  margin: 0;
  padding-right: 10px;
}
.projects__title span {
  display: block;
}
.projects__info {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 31px;
}
.projects__info-mobile {
  display: none;
}
.projects__description {
  align-self: stretch;
  color: #2D2B30;
  font-size: 27px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 32.4px;
  word-wrap: break-word;
  margin: 0;
}
.projects__button {
  padding: 16px 32px;
  background: #C2171C;
  border-radius: 6px;
  outline: 2px solid #C2171C;
  outline-offset: -2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 16px;
  word-wrap: break-word;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.projects__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.projects__button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(171.202764977, 20.297235023, 24.7096774194);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.projects__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 23, 28, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}
.projects__button:hover::before {
  left: 100%;
}
.projects__button:hover::after {
  opacity: 1;
}
.projects__button:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.projects__button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(194, 23, 28, 0.3);
}
.projects__button-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.projects__content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.projects__row {
  align-self: stretch;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.projects__spacer {
  flex: 1 1 0;
  align-self: stretch;
  padding-top: 106px;
  padding-bottom: 106px;
}
.projects__card {
  width: 413px;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 36px;
  position: relative;
}
.projects__card-number {
  width: 100%;
  height: 100%;
  position: relative;
}
.projects__card-decor {
  width: 50px;
  height: 50px;
  left: 78px;
  top: 72px;
  position: absolute;
  transform: rotate(-180deg);
  transform-origin: top left;
  background: #EBE4D2;
  border-top-left-radius: 18px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 5px;
}
.projects__card-number-text {
  position: relative;
  z-index: 1;
  color: #C2171C;
  font-size: 60px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 72px;
  word-wrap: break-word;
}
.projects__card-body {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}
.projects__card-header {
  align-self: stretch;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.projects__card-header:hover .projects__card-title {
  color: #C2171C;
}
.bullet-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}
.projects__card-title {
  color: #2D2B30;
  font-size: 32px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 38.4px;
  word-wrap: break-word;
  margin: 0;
}
.projects__card-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #C2171C;
  flex-shrink: 0;
}
.projects__card-description {
  width: 346px;
  color: #2D2B30;
  font-size: 22px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 30.8px;
  word-wrap: break-word;
  margin: 0;
}
.projects__card-image-wrapper {
  align-self: stretch;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
}
.projects__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .projects__container {
    padding: 0 40px;
    flex-direction: column;
  }
  .projects__sidebar {
    width: 100%;
    position: relative;
  }
  .projects__content {
    width: 100%;
  }
  .projects__row {
    align-items: center;
  }
  .projects__spacer {
    display: none;
  }
  .projects__card {
    width: 100%;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .projects {
    padding: 40px 0;
  }
  .projects__container {
    padding: 0 20px;
    gap: 24px;
  }
  .projects__header {
    gap: 80px;
  }
  .projects__title {
    font-size: 32px;
    line-height: 110%;
    text-align: center;
  }
  .projects__title span {
    display: inline;
  }
  .projects__row {
    flex-direction: column;
  }
  .projects__subtitle {
    text-align: center;
    font-size: 14px;
  }
  .projects__sidebar {
    padding-top: 0;
    position: relative;
    top: 0;
  }
  .projects__card {
    gap: 20px;
  }
  .projects__description {
    font-size: 22px;
    line-height: 28px;
  }
  .projects__card-number {
    font-size: 48px;
    line-height: 58px;
  }
  .projects__card-title {
    font-size: 32px;
    line-height: 34px;
  }
  .projects__card-description {
    width: 100%;
    font-size: 18px;
    line-height: 26px;
  }
  .projects__info {
    display: none;
  }
  .projects__info-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .projects__description-mobile {
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 60px;
  }
  .projects__button-mobile {
    padding: 16px 32px;
    background: #C2171C;
    border-radius: 6px;
    outline: 2px solid #C2171C;
    outline-offset: -2px;
    color: #ffffff;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .projects__button-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  .projects__button-mobile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(171.202764977, 20.297235023, 24.7096774194);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }
  .projects__button-icon-mobile {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
  .projects__button-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 23, 28, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  .projects__button-mobile:hover::before {
    left: 100%;
  }
  .projects__button-mobile:hover::after {
    opacity: 1;
  }
  .projects__button-mobile:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
  }
  .projects__button-mobile:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(194, 23, 28, 0.3);
  }
}

.categories {
  padding: 40px 0;
  background-color: #f4f5f9;
}
.offer {
  padding: 40px 0;
  background-color: #ffffff;
}
.about {
  padding: 40px 0;
  background-color: #ffffff;
}
.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1439px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #424c5c;
  margin-bottom: 16px;
}
.about__description {
  font-size: 20px;
  color: #424c5c;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.8;
}
.about__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.about__feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.about__feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-color: rgba(91, 96, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #424c5c;
}
.about__feature-description {
  font-size: 16px;
  color: #424c5c;
  opacity: 0.8;
}
.about__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.gallery {
  padding: 40px 0;
  background-color: #f4f5f9;
}
.table {
  padding: 40px 0;
  background-color: #f4f5f9;
}
.accordion {
  border: 1px solid rgba(66, 76, 92, 0.12);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.accordion:hover {
  border-color: #5b60cc;
}
.accordion--active {
  border-color: #5b60cc;
}
.accordion__header {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}
.accordion__header:hover {
  background-color: rgba(91, 96, 204, 0.05);
}
.accordion__title {
  font-size: 20px;
  font-weight: 600;
  color: #424c5c;
}
.accordion__icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.accordion--active .accordion__icon {
  transform: rotate(45deg);
}
.accordion__content {
  padding: 0 24px 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion--active .accordion__content {
  max-height: 500px;
}
.accordion__text {
  font-size: 16px;
  color: #424c5c;
  line-height: 1.6;
  opacity: 0.8;
}

.benefits {
  padding: 40px 0;
  background-color: #ffffff;
}
.process {
  padding: 40px 0;
  background-color: #f4f5f9;
}
.feedback {
  padding: 40px 0;
  background-color: #ffffff;
}
.contact {
  padding: 40px 0;
  background-color: #f4f5f9;
}
.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1439px) {
  .contact__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #424c5c;
  margin-bottom: 16px;
}
.contact__description {
  font-size: 20px;
  color: #424c5c;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.8;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.contact__item:hover {
  transform: translateY(-2px);
}
.contact__icon {
  width: 40px;
  height: 40px;
  background-color: rgba(91, 96, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__label {
  font-size: 16px;
  color: #424c5c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.6;
}
.contact__value {
  font-size: 20px;
  font-weight: 600;
  color: #424c5c;
}
.contact__link {
  color: #5b60cc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact__link:hover {
  color: #5b60cc;
  opacity: 0.8;
}
.contact__copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}
.contact__copy-btn:hover {
  opacity: 0.7;
}
.contact__form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-join {
  width: 100%;
  position: relative;
  padding-top: 111px;
  padding-bottom: 136px;
  overflow: hidden;
}
.about-join::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(235, 228, 210, 0.5);
  z-index: 0;
  transform: translateY(100%);
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-join.is-visible-bg::before {
  transform: translateY(0);
}
.about-join__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  position: relative;
  z-index: 1;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-join__container {
    padding: 0 40px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-join__container {
    padding: 0 20px;
  }
}
.about-join__content {
  align-self: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 66px;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-join__content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.about-join.is-visible-content .about-join__content {
  opacity: 1;
  transform: translateY(0);
}
.about-join__col-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.about-join__header {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.about-join__subtitle {
  align-self: stretch;
  color: #908E92;
  font-size: 20px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}
.about-join__heading {
  align-self: stretch;
  color: #2D2B30;
  font-size: 60px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 66px;
  margin: 0;
}
.about-join__left {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 36px;
}
.about-join__stats {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-join__stat-row {
  align-self: stretch;
  padding: 12px 0;
  border-bottom: 1px #D9CCB2 solid;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 48px;
}
.about-join__stat-number {
  width: 150px;
  flex-shrink: 0;
  color: #C2171C;
  font-size: 70px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 84px;
}
.about-join__stat-text {
  flex: 1;
  min-width: 0;
  color: #2D2B30;
  font-size: 22px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 26.4px;
}
.about-join__cta {
  padding: 16px 32px;
  background: #C2171C;
  border-radius: 6px;
  outline: 2px #C2171C solid;
  outline-offset: -2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.about-join__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.about-join__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(171.202764977, 20.297235023, 24.7096774194);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.about-join__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 23, 28, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}
.about-join__cta:hover::before {
  left: 100%;
}
.about-join__cta:hover::after {
  opacity: 1;
}
.about-join__cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(194, 23, 28, 0.3);
}
.about-join__cta-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: currentColor;
}
.about-join__right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-self: end;
}
.about-join__group-secondary {
  position: relative;
  width: 476px;
  min-height: 573px;
}
.about-join__group-secondary::before, .about-join__group-secondary::after {
  content: "";
  position: absolute;
  z-index: 2;
  display: block;
}
.about-join__group-secondary::before {
  left: 384px;
  top: 44px;
  width: 92px;
  height: 84px;
  background: #C2171C;
  border-top-right-radius: 34px;
  border-bottom-left-radius: 34px;
}
.about-join__group-secondary::after {
  left: 329px;
  top: 66px;
  width: 116px;
  height: 119px;
  background: #EBE4D2;
  border-top-right-radius: 34px;
  border-bottom-left-radius: 34px;
}
.about-join__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 476px;
  height: 549px;
  object-fit: cover;
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  border-bottom-right-radius: 236.5px;
  display: block;
  z-index: 1;
}
.about-join__image-secondary {
  position: absolute;
  left: -138px;
  top: -196px;
  width: 367px;
  height: 546px;
  object-fit: cover;
  border-top-left-radius: 236.5px;
  border-top-right-radius: 236.5px;
  border-bottom-right-radius: 236.5px;
  display: block;
  z-index: 0;
}
@media (max-width: 1439px) {
  .about-join__right {
    margin-top: 107px;
  }
}
@media (max-width: 767px) {
  .about-join {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .about-join__col-left {
    gap: 0;
  }
  .about-join__subtitle {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
  }
  .about-join__heading {
    font-size: 32px;
    text-align: center;
  }
  .about-join__stat-number {
    font-size: 60px;
    width: 112px;
    flex-shrink: 0;
  }
  .about-join__stat-text {
    flex: 1;
    min-width: 0;
    font-size: 18px;
    line-height: 120%;
  }
  .about-join__cta {
    width: 100%;
  }
  .about-join__right {
    justify-content: flex-end;
    align-self: center;
    margin-top: 129px;
  }
  .about-join__group-secondary {
    width: 238px;
    min-height: 343px;
  }
  .about-join__group-secondary::before {
    left: 192px;
    top: 22px;
    width: 46px;
    height: 42px;
    border-radius: 0px 18.99px 0px 18.99px;
  }
  .about-join__group-secondary::after {
    left: 164px;
    top: 33px;
    width: 58px;
    height: 60px;
    border-radius: 0px 18.99px 0px 18.99px;
  }
  .about-join__image {
    width: 266px;
    height: 343px;
  }
  .about-join__image-secondary {
    left: -69px;
    top: -134px;
    width: 220.02px;
    height: 346.01px;
  }
}

.join-us {
  width: 100%;
  background: rgba(235, 228, 210, 0.5);
  padding-bottom: 236px;
}
.join-us__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .join-us__container {
    padding: 0 20px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .join-us__container {
    padding: 0 16px;
    gap: 24px;
  }
}
.join-us__header {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  display: flex;
}
.join-us__subtitle {
  align-self: stretch;
  text-align: center;
  color: #908E92;
  font-size: 20px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .join-us__subtitle {
    font-size: 14px;
    line-height: 24px;
  }
}
.join-us__title {
  align-self: stretch;
  text-align: center;
  color: #2D2B30;
  font-size: 60px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 66px;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .join-us__title {
    font-size: 48px;
    line-height: 54px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .join-us__title {
    font-size: 32px;
    line-height: 38px;
  }
}
.join-us__cards {
  align-self: stretch;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  display: flex;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 0px) and (max-width: 1439px) {
  .join-us__cards {
    flex-direction: column;
    gap: 24px;
  }
}
.join-us__cards.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.join-us__card {
  flex: 1 1 0;
  align-self: stretch;
  padding: 48px;
  background: white;
  border-top-left-radius: 36px;
  border-bottom-right-radius: 36px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 36px;
  display: flex;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .join-us__card {
    padding: 32px;
    gap: 24px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .join-us__card {
    padding: 24px;
    gap: 20px;
  }
}
.join-us__card-image {
  align-self: stretch;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}
@media (min-width: 0px) and (max-width: 767px) {
  .join-us__card-image {
    height: 150px;
  }
}
.join-us__card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 36px;
}
.join-us__card-title {
  align-self: stretch;
  color: #2D2B30;
  font-size: 24px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .join-us__card-title {
    font-size: 20px;
    line-height: 24px;
  }
}
.join-us__card-description {
  align-self: stretch;
  color: rgb(45, 43, 48);
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .join-us__card-description {
    font-size: 16px;
    line-height: 22px;
  }
}
.join-us__card-button {
  padding: 16px 32px;
  border-radius: 6px;
  outline: 2px #C2171C solid;
  outline-offset: -2px;
  background: transparent;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  display: inline-flex;
  color: #C2171C;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 16px;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease, outline-color 0.3s ease;
}
.join-us__card-button:hover {
  background: #C2171C;
  color: #ffffff;
  outline-color: #C2171C;
}
@media (min-width: 0px) and (max-width: 767px) {
  .join-us__card-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}
.join-us__card-button-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: currentColor;
  flex-shrink: 0;
}
@media (max-width: 1439px) {
  .join-us__card {
    display: flex;
    flex-direction: row;
  }
  .join-us__card-image {
    height: 207px;
  }
  .join-us__card-content {
    text-align: left;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .join-us__card {
    display: flex;
    flex-direction: row;
    padding: 16px;
  }
  .join-us__card-image {
    height: auto;
    width: 120px;
  }
  .join-us__card-button {
    padding: 12px 11px;
  }
}

.anketa-page {
  background-color: #f4f5f9;
  min-height: 100vh;
}

.anketa {
  padding-top: 120px;
  padding-bottom: 0;
  min-height: 100vh;
  background-color: #ffffff;
}
.anketa__container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .anketa__container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .anketa__container {
    max-width: 1440px;
    padding: 30px;
  }
}
.anketa__container {
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 0px) and (max-width: 767px) {
  .anketa__container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.anketa__header {
  text-align: center;
  margin-bottom: 64px;
}
.anketa__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #424c5c;
  margin-bottom: 16px;
}
.anketa__subtitle {
  font-size: 20px;
  color: #818181;
  line-height: 1.6;
}
.anketa__form {
  background-color: #ffffff;
  padding: 64px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1439px) {
  .anketa__form {
    padding: 40px;
  }
}
.anketa__section {
  margin-bottom: 64px;
}
.anketa__section:last-of-type {
  margin-bottom: 0;
}
.anketa__section-title {
  font-size: 24px;
  font-weight: 600;
  color: #424c5c;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(66, 76, 92, 0.12);
}
.anketa__form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 1439px) {
  .anketa__form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.anketa__required {
  color: #C2171C;
  font-weight: 600;
}
.anketa__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.anketa__checkbox-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #424c5c;
  cursor: pointer;
  padding: 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.anketa__checkbox-label:hover {
  background-color: rgba(91, 96, 204, 0.05);
}
.anketa__checkbox-label--agreement {
  padding: 24px;
  background-color: #f4f5f9;
  border-radius: 8px;
  line-height: 1.6;
}
.anketa__checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #5b60cc;
}
.anketa__actions {
  display: flex;
  gap: 24px;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 2px solid rgba(66, 76, 92, 0.12);
}
@media (max-width: 1439px) {
  .anketa__actions {
    flex-direction: column;
  }
}

.input--textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Onest", Arial, sans-serif;
  line-height: 1.6;
}

.input-group--full {
  grid-column: 1/-1;
}

.anketa-intro {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 64px;
}
@media (max-width: 1439px) {
  .anketa-intro {
    flex-direction: column;
    gap: 32px;
  }
}
.anketa-intro__left {
  width: 413px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  position: sticky;
  top: 0;
  padding-top: 48px;
  align-self: flex-start;
}
@media (max-width: 1439px) {
  .anketa-intro__left {
    width: 100%;
    position: static;
    padding-top: 0;
  }
}
.anketa-intro__title {
  align-self: stretch;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 39.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (max-width: 1439px) {
  .anketa-intro__title {
    font-size: 24px;
    line-height: 33.6px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .anketa-intro__title {
    font-size: 20px;
    line-height: 27.6px;
  }
}
.anketa-intro__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}
@media (max-width: 1439px) {
  .anketa-intro__right {
    gap: 40px;
  }
}
.anketa-intro__description {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 1439px) {
  .anketa-intro__description {
    gap: 40px;
  }
}
.anketa-intro__heading {
  align-self: stretch;
  margin: 0;
}
.anketa-intro__heading-text {
  color: #2D2B30;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  word-wrap: break-word;
}
@media (max-width: 1439px) {
  .anketa-intro__heading-text {
    font-size: 32px;
    line-height: 38.4px;
  }
}
.anketa-intro__heading-text--gray {
  color: #908E92;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  word-wrap: break-word;
}
@media (max-width: 1439px) {
  .anketa-intro__heading-text--gray {
    font-size: 32px;
    line-height: 38.4px;
  }
}
.anketa-intro__benefits-wrapper {
  align-self: stretch;
  position: relative;
}
.anketa-intro__benefits {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .anketa-intro__benefits {
    max-height: 220px;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .anketa-intro__benefits.is-expanded {
    max-height: none;
  }
}
.anketa-intro__read-more {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 16px;
  color: #3771C8;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
  text-align: left;
}
@media (min-width: 0px) and (max-width: 767px) {
  .anketa-intro__read-more {
    display: block;
  }
}
.anketa-intro__benefit-item {
  align-self: stretch;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 36px;
}
@media (max-width: 1439px) {
  .anketa-intro__benefit-item {
    flex-direction: column;
    gap: 16px;
  }
}
.anketa-intro__benefit-title {
  width: 300px;
  color: #2D2B30;
  font-size: 22px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  line-height: 26.4px;
  word-wrap: break-word;
  flex-shrink: 0;
}
@media (max-width: 1439px) {
  .anketa-intro__benefit-title {
    width: 100%;
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .anketa-intro__benefit-title {
    font-size: 22px;
  }
}
.anketa-intro__benefit-content {
  flex: 1 1 0;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
  list-style: none;
  padding: 0;
  margin: 0;
}
.anketa-intro__benefit-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.anketa-intro__benefit-content li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background-color: #2D2B30;
  border-radius: 50%;
}
.anketa-intro__benefit-content li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1439px) {
  .anketa-intro__benefit-content {
    font-size: 16px;
    line-height: 22.4px;
  }
}

.anketa-highlight {
  width: 100%;
  background-color: rgb(245, 241, 233);
  padding-top: 64px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.anketa-highlight__container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .anketa-highlight__container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .anketa-highlight__container {
    max-width: 1440px;
    padding: 30px;
  }
}
.anketa-highlight__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 300px;
}
@media (max-width: 1439px) {
  .anketa-highlight__container {
    flex-direction: column;
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .anketa-highlight__container {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 215px;
    text-align: left;
  }
}
.anketa-highlight__image {
  width: 354px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  align-self: flex-start;
  padding-top: 48px;
}
.anketa-highlight__image img {
  width: 354px;
  height: 429px;
  border-top-left-radius: 189px;
  border-top-right-radius: 189px;
  border-bottom-left-radius: 189px;
  object-fit: cover;
  display: block;
}
@media (max-width: 1439px) {
  .anketa-highlight__image {
    width: 100%;
    position: static;
    padding-top: 0;
  }
  .anketa-highlight__image img {
    width: 100%;
    max-width: 354px;
    margin: 0 auto;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .anketa-highlight__image {
    display: none;
  }
}
.anketa-highlight__content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .anketa-highlight__content {
    gap: 24px;
  }
}
.anketa-highlight__title {
  color: #2D2B30;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  margin: 0;
}
@media (max-width: 1439px) {
  .anketa-highlight__title {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .anketa-highlight__title {
    font-size: 20px;
  }
}
.anketa-highlight__card {
  width: 600px;
  max-width: 100%;
  padding: 60px 80px;
  background: #ffffff;
  border-top-right-radius: 38px;
  border-bottom-left-radius: 38px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) and (max-width: 1439px) {
  .anketa-highlight__card {
    margin: 0 auto;
  }
}
@media (max-width: 1439px) {
  .anketa-highlight__card {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .anketa-highlight__card {
    padding: 24px 16px;
    border-radius: 0px 38px 0px 38px;
    width: 100%;
  }
}
.anketa-highlight__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.anketa-highlight__card-title {
  color: #2D2B30;
  font-size: 22px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  line-height: 26.4px;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .anketa-highlight__card-title {
    font-size: 18px;
    text-align: left;
    line-height: 120%;
  }
}
.anketa-highlight__card-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.anketa-highlight__field {
  position: relative;
  height: 70px;
  width: 440px;
}
.anketa-highlight__field--wide {
  width: 100%;
}
@media (max-width: 1439px) {
  .anketa-highlight__field {
    width: 100%;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .anketa-highlight__field {
    height: auto;
  }
}
.anketa-highlight__field-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.anketa-highlight__field-row .anketa-highlight__field {
  flex: 1 1 0;
  width: 208px;
}
@media (max-width: 767px) {
  .anketa-highlight__field-row {
    gap: 16px;
  }
  .anketa-highlight__field-row .anketa-highlight__field {
    flex: 1 1 0;
    width: auto;
  }
  .anketa-highlight__field-row--stacked {
    flex-direction: column;
  }
  .anketa-highlight__field-row--stacked .anketa-highlight__field {
    flex: none;
    width: 100%;
    min-width: 0;
  }
}
.anketa-highlight__field-label {
  position: relative;
  display: block;
  padding-bottom: 3px;
  color: #2D2B30;
  font-size: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 19.6px;
  pointer-events: none;
}
@media (min-width: 1440px) {
  .anketa-highlight__field-label {
    padding-left: 20px;
  }
}
.anketa-highlight__field-input {
  position: relative;
  width: 100%;
  height: 52.75px;
  padding: 0 18.14px;
  background: #ffffff;
  border: 1px solid rgba(116, 118, 136, 0.5);
  border-radius: 12px;
  color: #908E92;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  outline: none;
  transition: border-color 0.3s ease;
}
.anketa-highlight__field-input:focus {
  border-color: #2D2B30;
  color: #2D2B30;
}
.anketa-highlight__field-input::placeholder {
  color: #908E92;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.anketa-highlight__field-input:focus::placeholder {
  opacity: 0;
}
.anketa-highlight__field-input:-webkit-autofill, .anketa-highlight__field-input:-webkit-autofill:hover, .anketa-highlight__field-input:-webkit-autofill:focus, .anketa-highlight__field-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
  -webkit-text-fill-color: #2D2B30 !important;
  border-color: rgba(116, 118, 136, 0.5) !important;
  background-color: #ffffff !important;
}
.anketa-highlight__field-input.empty_field {
  border-color: rgba(194, 23, 28, 0.5);
}
.anketa-highlight__field-input.rf_error {
  border-color: #C2171C;
  animation: shake 0.5s ease-in-out;
}
.anketa-highlight__field-input.rf_error:-webkit-autofill, .anketa-highlight__field-input.rf_error:-webkit-autofill:hover, .anketa-highlight__field-input.rf_error:-webkit-autofill:focus, .anketa-highlight__field-input.rf_error:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
  -webkit-text-fill-color: #2D2B30 !important;
  border-color: #C2171C !important;
}
.anketa-highlight__field-input.rf_valid {
  border-color: #4CAF50;
}
.anketa-highlight__field-input.rf_valid:focus {
  border-color: #4CAF50;
  color: #2D2B30;
}
.anketa-highlight__field-input.rf_valid:-webkit-autofill, .anketa-highlight__field-input.rf_valid:-webkit-autofill:hover, .anketa-highlight__field-input.rf_valid:-webkit-autofill:focus, .anketa-highlight__field-input.rf_valid:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
  -webkit-text-fill-color: #2D2B30 !important;
  border-color: #4CAF50 !important;
}
.anketa-highlight__field .field-error {
  display: none;
  color: #C2171C;
  font-size: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 19.6px;
  margin-top: 4px;
}
.anketa-highlight__field-textarea {
  resize: none;
  padding-top: 13px;
  padding-bottom: 13px;
  height: 52.75px;
  min-height: 52.75px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .anketa-highlight__field-textarea {
    height: 113px;
    min-height: 113px;
  }
}
.anketa-highlight__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: #C2171C;
  border-radius: 6px;
  outline: 2px solid #C2171C;
  outline-offset: -2px;
  border: none;
  color: #ffffff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.anketa-highlight__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.anketa-highlight__button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(171.202764977, 20.297235023, 24.7096774194);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.anketa-highlight__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 23, 28, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}
.anketa-highlight__button:hover::before {
  left: 100%;
}
.anketa-highlight__button:hover::after {
  opacity: 1;
}
.anketa-highlight__button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.anketa-highlight__button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(194, 23, 28, 0.3);
}
.anketa-highlight__button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.anketa-highlight__button.disabled:hover {
  transform: none;
  box-shadow: none;
}
.anketa-highlight__button.disabled:hover::before {
  left: -100%;
}
.anketa-highlight__button.disabled:hover::after {
  opacity: 0;
}
.anketa-highlight__text {
  align-self: stretch;
  margin-top: 40px;
}
@media (max-width: 1439px) {
  .anketa-highlight__text {
    margin-top: 32px;
  }
}
.anketa-highlight__text-primary {
  color: #2D2B30;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  word-wrap: break-word;
}
@media (max-width: 1439px) {
  .anketa-highlight__text-primary {
    font-size: 32px;
    line-height: 38.4px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .anketa-highlight__text-primary {
    font-size: 28px;
    line-height: 30px;
  }
}
.anketa-highlight__text-secondary {
  color: #908E92;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  word-wrap: break-word;
}
@media (max-width: 1439px) {
  .anketa-highlight__text-secondary {
    font-size: 32px;
    line-height: 38.4px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .anketa-highlight__text-secondary {
    font-size: 28px;
    line-height: 30px;
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
.about-page {
  background-color: #f4f5f9;
  min-height: 100vh;
}

.about-page-content {
  padding-top: 120px;
  padding-bottom: 64px;
  min-height: 100vh;
  background-color: #ffffff;
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-page-content {
    padding-bottom: 0;
  }
}
.about-page-content__container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .about-page-content__container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .about-page-content__container {
    max-width: 1440px;
    padding: 30px;
  }
}
.about-page-content__container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-intro {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 64px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-intro {
    flex-direction: column;
    gap: 32px;
  }
}
.about-intro__left {
  width: 413px;
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-intro__left {
    width: 100%;
  }
}
.about-intro__title {
  align-self: stretch;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 39.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-intro__title {
    font-size: 24px;
    line-height: 33.6px;
  }
}
.about-intro__right {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-intro__right {
    gap: 40px;
  }
}
.about-intro__content {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-intro__content {
    gap: 40px;
  }
}
.about-intro__heading {
  align-self: stretch;
  margin: 0;
}
.about-intro__heading-text {
  color: #2D2B30;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-intro__heading-text {
    font-size: 32px;
    line-height: 38.4px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-intro__heading-text {
    font-size: 28px;
    line-height: 34px;
  }
}
.about-intro__heading-text--gray {
  color: #908E92;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-intro__heading-text--gray {
    font-size: 32px;
    line-height: 38.4px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-intro__heading-text--gray {
    font-size: 28px;
    line-height: 34px;
  }
}
.about-intro__description {
  align-self: stretch;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-intro__description {
    font-size: 16px;
    line-height: 22.4px;
  }
}

.about-images {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 64px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-images {
    flex-direction: column;
    gap: 32px;
  }
}
.about-images__left {
  width: 413px;
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  align-self: flex-start;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-images__left {
    width: 100%;
  }
}
.about-images__left-image {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .about-images__left-image {
    height: 513px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-images__left-image {
    height: 218px;
  }
}
.about-images__right {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-images__right {
    gap: 40px;
  }
}
.about-images__right-image-wrapper {
  position: relative;
  width: 755px;
  height: 500px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-images__right-image-wrapper {
    width: 100%;
    max-width: 755px;
    height: auto;
    aspect-ratio: 755/500;
  }
}
.about-images__right-image {
  width: 755px;
  height: 500px;
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  border-bottom-right-radius: 280px;
  object-fit: cover;
  display: block;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-images__right-image {
    width: 100%;
    height: auto;
    aspect-ratio: 755/500;
  }
}
.about-images__badge {
  position: absolute;
  z-index: 2;
}
.about-images__badge--red {
  width: 92px;
  height: 84px;
  background: #C2171C;
  border-top-right-radius: 34px;
  border-bottom-left-radius: 34px;
  right: -86px;
  top: 48px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-images__badge--red {
    right: 20px;
    top: 20px;
    width: 70px;
    height: 64px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-images__badge--red {
    right: 10px;
    top: 10px;
    width: 60px;
    height: 55px;
  }
}
.about-images__badge--beige {
  width: 116px;
  height: 119px;
  background: #EBE4D2;
  border-top-right-radius: 34px;
  border-bottom-left-radius: 34px;
  right: -58px;
  top: 66px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-images__badge--beige {
    right: 40px;
    top: 40px;
    width: 90px;
    height: 92px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-images__badge--beige {
    right: 30px;
    top: 30px;
    width: 75px;
    height: 77px;
  }
}
.about-images__text {
  align-self: stretch;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 47px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-images__text {
    gap: 40px;
  }
}
.about-images__description {
  align-self: stretch;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-images__description {
    font-size: 16px;
    line-height: 22.4px;
  }
}
.about-images__quote {
  align-self: stretch;
}
.about-images__quote-text {
  color: #2D2B30;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-images__quote-text {
    font-size: 32px;
    line-height: 38.4px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-images__quote-text {
    font-size: 28px;
    line-height: 34px;
  }
}
.about-images__quote-text--gray {
  color: #908E92;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-images__quote-text--gray {
    font-size: 32px;
    line-height: 38.4px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-images__quote-text--gray {
    font-size: 28px;
    line-height: 34px;
  }
}

.about-values {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 64px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-values {
    margin-bottom: 40px;
  }
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-values {
    flex-direction: column;
    gap: 32px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-values {
    margin-bottom: 40px;
  }
}
.about-values__left {
  width: 413px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  position: sticky;
  top: 48px;
  align-self: flex-start;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-values__left {
    width: 100%;
    position: static;
    top: auto;
  }
}
.about-values__title {
  align-self: flex-start;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-values__title {
    line-height: 1.2;
    margin-bottom: 24px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-values__title {
    margin-bottom: 0;
  }
}
.about-values__right {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.about-values__grid {
  align-self: stretch;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.about-values__row {
  align-self: stretch;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .about-values__row {
    flex-wrap: wrap;
  }
  .about-values__row .about-values__card {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-values__row {
    flex-direction: column;
    gap: 24px;
  }
}
.about-values__card {
  flex: 1 1 0;
  align-self: stretch;
  padding: 40px;
  background: #F5F1E9;
  border-top-right-radius: 36px;
  border-bottom-left-radius: 36px;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-values__card {
    padding: 40px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-values__card {
    padding: 24px;
  }
}
.about-values__card-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-values__card-icon::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 28px;
  width: 50px;
  height: 50px;
  background: white;
  border-top-right-radius: 18px;
  border-bottom-left-radius: 18px;
  display: block;
  z-index: 1;
}
.about-values__card-number {
  position: relative;
  z-index: 2;
  color: #C2171C;
  font-size: 60px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 72px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-values__card-number {
    font-size: 48px;
    line-height: 58px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-values__card-number {
    font-size: 60px;
    line-height: 120%;
  }
}
.about-values__card-content {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.about-values__card-header {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
.about-values__card-title {
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 33.6px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-values__card-title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-values__card-title {
    font-size: 24px;
    line-height: 26px;
  }
}
.about-values__card-description {
  align-self: stretch;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-values__card-description {
    font-size: 16px;
    line-height: 22.4px;
  }
}

.about-mission {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 64px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-mission {
    flex-direction: column;
    gap: 32px;
  }
}
.about-mission__left {
  width: 413px;
  height: 748px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  position: sticky;
  top: 48px;
  align-self: flex-start;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-mission__left {
    width: 100%;
    height: auto;
    position: static;
    top: auto;
  }
}
.about-mission__title {
  align-self: flex-start;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-mission__title {
    line-height: 1.2;
    margin-bottom: 24px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-mission__title {
    margin-bottom: 0;
  }
}
.about-mission__badges {
  position: relative;
  width: 100%;
  margin-top: 232px;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-mission__badges {
    display: none;
  }
}
.about-mission__badge {
  position: absolute;
  z-index: 2;
}
.about-mission__badge--beige {
  width: 116px;
  height: 119px;
  background: #EBE4D2;
  border-top-right-radius: 34px;
  border-bottom-left-radius: 34px;
  left: 0;
  top: 0;
  z-index: 3;
}
.about-mission__badge--red {
  width: 92px;
  height: 84px;
  background: #C2171C;
  border-top-right-radius: 34px;
  border-bottom-left-radius: 34px;
  left: 54px;
  top: -22px;
  z-index: 2;
}
.about-mission__right {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-mission__right {
    gap: 40px;
  }
}
.about-mission__content {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-mission__content {
    gap: 40px;
  }
}
.about-mission__section {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-mission__section {
    gap: 40px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-mission__section {
    gap: 20px;
  }
}
.about-mission__section-title {
  align-self: stretch;
  color: #2D2B30;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-mission__section-title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-mission__section-title {
    font-size: 28px;
    line-height: 34px;
  }
}
.about-mission__section-text {
  align-self: stretch;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-mission__section-text {
    font-size: 16px;
    line-height: 22.4px;
  }
}
.about-mission__section p {
  align-self: stretch;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-mission__section p {
    font-size: 16px;
    line-height: 22.4px;
  }
}
.about-mission__section strong {
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 25.2px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-mission__section strong {
    font-size: 16px;
    line-height: 22.4px;
  }
}
.about-mission__text-bold {
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 25.2px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-mission__text-bold {
    font-size: 16px;
    line-height: 22.4px;
  }
}
.about-mission__text-normal {
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-mission__text-normal {
    font-size: 16px;
    line-height: 22.4px;
    display: inline-block;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-mission__text-normal {
    display: inline-block;
  }
}

.about-history {
  width: 100%;
  background-color: rgb(245, 241, 233);
  padding: 64px 0;
}
.about-history__container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .about-history__container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .about-history__container {
    max-width: 1440px;
    padding: 30px;
  }
}
.about-history__container {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-history__container {
    flex-direction: column;
    gap: 32px;
  }
}
.about-history__left {
  width: 413px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  position: sticky;
  top: 48px;
  align-self: flex-start;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-history__left {
    width: 100%;
    position: static;
    top: auto;
  }
}
.about-history__title {
  align-self: stretch;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-history__title {
    line-height: 1.2;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-history__title {
    font-size: 20px;
  }
}
.about-history__right {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-history__right {
    gap: 40px;
  }
}
.about-history__headline {
  flex-wrap: wrap;
  gap: 8px;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-history__headline {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-history__headline {
    font-size: 28px;
    line-height: 34px;
  }
}
.about-history__headline-primary {
  color: #2D2B30;
}
.about-history__headline-secondary {
  color: #908E92;
}
.about-history__timeline {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-history__timeline-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px #D9CCB2 solid;
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-history__timeline-item {
    flex-direction: column;
    gap: 12px;
    border-bottom: none;
  }
}
.about-history__timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.about-history__year {
  width: 209px;
  color: #C2171C;
  font-size: 60px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 72px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-history__year {
    font-size: 48px;
    line-height: 58px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-history__year {
    width: 100%;
    flex-shrink: 0;
    font-size: 40px;
    line-height: 44px;
  }
}
.about-history__year-current {
  font-size: 46px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-history__year-current {
    font-size: 40px;
  }
}
.about-history__timeline-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-history__timeline-title {
  margin: 0;
  color: #2D2B30;
  font-size: 22px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  line-height: 26.4px;
}
.about-history__timeline-description {
  margin: 0;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-history__timeline-description {
    font-size: 16px;
  }
}
.about-history__conclusion {
  flex-wrap: wrap;
  gap: 8px;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-history__conclusion {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-history__conclusion {
    font-size: 28px;
    line-height: 34px;
  }
}
.about-history__conclusion-primary {
  color: #2D2B30;
}
.about-history__conclusion-secondary {
  color: #908E92;
}

.about-main {
  margin-bottom: 64px;
}
.about-main__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 66px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-main__content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.about-main__left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.about-main__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-main__stat-row {
  padding: 12px 0;
  border-bottom: 1px #D9CCB2 solid;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
.about-main__stat-number {
  width: 150px;
  color: #C2171C;
  font-size: 70px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 84px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-main__stat-number {
    font-size: 56px;
    line-height: 68px;
    width: 120px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-main__stat-number {
    font-size: 48px;
    line-height: 58px;
    width: 100px;
  }
}
.about-main__stat-text {
  color: #2D2B30;
  font-size: 22px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 26.4px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-main__stat-text {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-main__stat-text {
    font-size: 18px;
    line-height: 22px;
  }
}
.about-main__right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-self: end;
}
.about-main__group-secondary {
  position: relative;
  width: 476px;
  min-height: 573px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-main__group-secondary {
    width: 100%;
    max-width: 476px;
    margin: 0 auto;
  }
}
.about-main__group-secondary::before, .about-main__group-secondary::after {
  content: "";
  position: absolute;
  z-index: 2;
  display: block;
}
.about-main__group-secondary::before {
  left: 384px;
  top: 44px;
  width: 92px;
  height: 84px;
  background: #C2171C;
  border-top-right-radius: 34px;
  border-bottom-left-radius: 34px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-main__group-secondary::before {
    left: calc(100% - 120px);
    width: 80px;
    height: 72px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-main__group-secondary::before {
    left: calc(100% - 100px);
    width: 70px;
    height: 64px;
  }
}
.about-main__group-secondary::after {
  left: 329px;
  top: 66px;
  width: 116px;
  height: 119px;
  background: #EBE4D2;
  border-top-right-radius: 34px;
  border-bottom-left-radius: 34px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-main__group-secondary::after {
    left: calc(100% - 150px);
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-main__group-secondary::after {
    left: calc(100% - 130px);
    width: 90px;
    height: 90px;
  }
}
.about-main__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 476px;
  height: 549px;
  object-fit: cover;
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  border-bottom-right-radius: 236.5px;
  display: block;
  z-index: 1;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-main__image {
    width: 100%;
    max-width: 476px;
    height: auto;
    aspect-ratio: 476/549;
  }
}
.about-main__image-secondary {
  position: absolute;
  left: -138px;
  top: -196px;
  width: 367px;
  height: 546px;
  object-fit: cover;
  border-top-left-radius: 236.5px;
  border-top-right-radius: 236.5px;
  border-bottom-right-radius: 236.5px;
  display: block;
  z-index: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-main__image-secondary {
    left: -100px;
    top: -150px;
    width: 280px;
    height: 420px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-main__image-secondary {
    left: -60px;
    top: -100px;
    width: 220px;
    height: 330px;
  }
}

.about-description {
  margin-bottom: 64px;
  padding: 40px 0;
}
.about-description__content {
  max-width: 900px;
  margin: 0 auto;
}
.about-description__title {
  color: #2D2B30;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  margin: 0 0 32px 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-description__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-description__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.about-description__text {
  color: #2D2B30;
  font-size: 20px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 24px 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-description__text {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-description__text {
    font-size: 16px;
    line-height: 24px;
  }
}
.about-description__text:last-child {
  margin-bottom: 0;
}

.about-directions {
  margin-bottom: 64px;
  padding: 40px 0;
  background-color: rgba(235, 228, 210, 0.5);
}
.about-directions__content {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .about-directions__content {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .about-directions__content {
    max-width: 1440px;
    padding: 30px;
  }
}
.about-directions__content {
  max-width: 1400px;
  margin: 0 auto;
}
.about-directions__title {
  color: #2D2B30;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  margin: 0 0 40px 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-directions__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-directions__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.about-directions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-directions__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.about-directions__card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-directions__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-directions__card {
    padding: 32px;
  }
}
.about-directions__card-number {
  color: #C2171C;
  font-size: 24px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 28px;
}
.about-directions__card-title {
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 33.6px;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-directions__card-title {
    font-size: 24px;
    line-height: 30px;
  }
}
.about-directions__card-description {
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-directions__card-description {
    font-size: 16px;
    line-height: 23px;
  }
}

.about-cta {
  padding: 64px 0;
  background-color: #ffffff;
}
.about-cta__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-cta__title {
  color: #2D2B30;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  margin: 0 0 24px 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-cta__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-cta__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.about-cta__description {
  color: #908E92;
  font-size: 20px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 40px 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .about-cta__description {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-cta__description {
    font-size: 16px;
    line-height: 24px;
  }
}
.about-cta__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-cta__actions {
    flex-direction: column;
  }
}
.about-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 6px;
  outline: 2px solid;
  outline-offset: -2px;
  text-decoration: none;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.about-cta__button--primary {
  background: #C2171C;
  outline-color: #C2171C;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.about-cta__button--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.about-cta__button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(171.202764977, 20.297235023, 24.7096774194);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.about-cta__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 23, 28, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}
.about-cta__button--primary:hover::before {
  left: 100%;
}
.about-cta__button--primary:hover::after {
  opacity: 1;
}
.about-cta__button--primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(194, 23, 28, 0.3);
}
.about-cta__button--outline {
  background: transparent;
  outline-color: #2D2B30;
  color: #2D2B30;
}
.about-cta__button--outline:hover {
  background: #2D2B30;
  color: #ffffff;
}
@media (min-width: 0px) and (max-width: 767px) {
  .about-cta__button {
    width: 100%;
  }
}

.about-page .about-history {
  padding-bottom: 200px;
}

.team-page {
  background-color: #f4f5f9;
  min-height: 100vh;
}

.team-hero {
  padding: 120px 0 80px;
  background-color: #ffffff;
}
.team-hero__container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .team-hero__container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .team-hero__container {
    max-width: 1440px;
    padding: 30px;
  }
}
.team-hero__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .team-hero__container {
    flex-direction: column;
  }
}
.team-hero__left {
  width: 413px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  position: sticky;
  top: 0;
  padding-top: 48px;
  align-self: flex-start;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .team-hero__left {
    width: 100%;
    position: static;
    padding-top: 0;
  }
}
.team-hero__label {
  align-self: stretch;
  margin: 0;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
.team-hero__label span {
  display: block;
}
.team-hero__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.team-hero__title {
  margin: 0;
  color: #2D2B30;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.1;
}
.team-hero__title span {
  color: #908E92;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .team-hero__title {
    font-size: 36px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .team-hero__title {
    font-size: 28px;
  }
}
.team-hero__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.team-card {
  width: 413px;
  padding: 40px;
  border-top-right-radius: 36px;
  border-bottom-left-radius: 36px;
  border: 1px solid #dadada;
  background: #ffffff;
  display: inline-flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .team-card {
    width: calc(50% - 20px);
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .team-card {
    width: 100%;
    padding: 24px;
  }
}
.team-card__photo {
  width: 155px;
  height: 155px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  object-fit: cover;
}
.team-card__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.team-card__name {
  margin: 0;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
}
.team-card__roles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-card__role {
  margin: 0;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
.team-card__region {
  margin: 0;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
}
.team-card__email {
  margin: 0;
  color: #3771C8;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease;
}
.team-card__email:hover, .team-card__email:focus-visible {
  color: rgb(44, 90.4, 160);
  text-decoration: underline;
}

.partners-page {
  background-color: #f4f5f9;
  min-height: 100vh;
}

.partners {
  padding-top: 120px;
  padding-bottom: 64px;
  background-color: #ffffff;
}
.partners__container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .partners__container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .partners__container {
    max-width: 1440px;
    padding: 30px;
  }
}
.partners__container {
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners__container {
    padding: 0 16px;
  }
}

.partners-hero {
  margin-bottom: 64px;
}
.partners-hero__grid {
  display: grid;
  grid-template-columns: 413px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.partners-hero__column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.partners-hero__visual {
  display: inline-flex;
  flex-direction: column;
  gap: 24px;
  align-self: stretch;
  align-items: flex-start;
  position: relative;
  width: 413px;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-hero__visual {
    width: 100%;
  }
}
.partners-hero__label {
  margin: 0;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: #2D2B30;
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-hero__label {
    font-size: 20px;
  }
}
.partners-hero__shapes {
  position: relative;
  width: 150px;
  height: 180px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-hero__shapes {
    display: none;
  }
}
.partners-hero__shape {
  position: absolute;
  border-top-right-radius: 34px;
  border-bottom-left-radius: 34px;
}
.partners-hero__shape--primary {
  width: 92px;
  height: 84px;
  background-color: #C2171C;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-hero__shape--primary {
    display: none;
  }
}
.partners-hero__shape--secondary {
  width: 116px;
  height: 119px;
  background-color: #EBE4D2;
  top: 31px;
  left: 34px;
  z-index: 2;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-hero__shape--secondary {
    display: none;
  }
}
.partners-hero__content {
  display: inline-flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}
.partners-hero__title {
  margin: 0;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.1;
  color: #2D2B30;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-hero__title {
    font-size: 40px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-hero__title {
    font-size: 32px;
  }
}
.partners-hero__title-accent {
  color: #908E92;
}
.partners-hero__description {
  margin: 0;
  color: #2D2B30;
  font-size: 18px;
  line-height: 1.4;
}
.partners-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-hero__actions {
    flex-direction: column;
    width: 100%;
  }
}
.partners-hero__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border: 2px solid #C2171C;
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: background-color 0.3s ease;
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-hero__button {
    width: 100%;
    justify-content: center;
  }
}
.partners-hero__button--primary {
  background-color: #C2171C;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.partners-hero__button--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.partners-hero__button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(171.202764977, 20.297235023, 24.7096774194);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.partners-hero__button--primary:hover, .partners-hero__button--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 23, 28, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}
.partners-hero__button--primary:hover::before, .partners-hero__button--primary:focus-visible::before {
  left: 100%;
}
.partners-hero__button--primary:hover::after, .partners-hero__button--primary:focus-visible::after {
  opacity: 1;
}
.partners-hero__button--primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(194, 23, 28, 0.3);
}
.partners-hero__button--primary:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.partners-hero__button--secondary {
  background-color: transparent;
  color: #C2171C;
}
.partners-hero__button--secondary:hover, .partners-hero__button--secondary:focus-visible {
  background-color: rgba(194, 23, 28, 0.08);
}
.partners-hero__button-icon {
  font-size: 20px;
}
.partners-hero__media {
  width: 100%;
}
.partners-hero__image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-top-right-radius: 280px;
  border-bottom-right-radius: 280px;
  border-bottom-left-radius: 280px;
}

.partners-section-header {
  max-width: 760px;
  margin-bottom: 40px;
}
.partners-section-header__eyebrow {
  color: #908E92;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.partners-section-header__title {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.2;
  color: #2D2B30;
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-section-header__title {
    font-size: 30px;
  }
}
.partners-section-header__description {
  margin: 0;
  font-size: 18px;
  color: #2D2B30;
  line-height: 1.4;
}

.partners-benefits {
  margin-bottom: 64px;
}
.partners-benefits__layout {
  display: flex;
  gap: 40px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-benefits__layout {
    flex-direction: column;
  }
}
.partners-benefits__left {
  width: 413px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  position: sticky;
  top: 0;
  padding-top: 48px;
  align-self: flex-start;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-benefits__left {
    width: 100%;
    position: static;
    padding-top: 0;
  }
}
.partners-benefits__label {
  margin: 0;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: #2D2B30;
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-benefits__label {
    font-size: 20px;
  }
}
.partners-benefits__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.partners-benefits__intro {
  margin: 0;
  max-width: 847px;
  font-size: 18px;
  line-height: 1.4;
  color: #2D2B30;
}
.partners-benefits__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.partners-benefits__row {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-benefits__row {
    flex-direction: column;
  }
}
.partners-benefits__row--narrow {
  max-width: 414px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-benefits__row--narrow {
    max-width: 100%;
  }
}
.partners-benefits__card {
  flex: 1 1 0;
  padding: 40px;
  border-top-right-radius: 36px;
  border-bottom-left-radius: 36px;
  border: 1px solid #dadada;
  background-color: #ffffff;
  display: inline-flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-benefits__card {
    padding: 40px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-benefits__card {
    padding: 24px;
  }
}
.partners-benefits__card-header {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
.partners-benefits__card-header::before {
  display: none;
}
.partners-benefits__number {
  position: relative;
  z-index: 1;
  font-size: 60px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 72px;
  color: #C2171C;
}
.partners-benefits__card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.partners-benefits__card-title {
  margin: 0;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2D2B30;
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-benefits__card-title {
    font-size: 24px;
  }
}
.partners-benefits__card-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: #2D2B30;
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-benefits__card-text {
    font-size: 16px;
  }
}

.partners-programs {
  margin-bottom: 64px;
}
.partners-programs__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-programs__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-programs__list {
    grid-template-columns: 1fr;
  }
}
.partners-programs__item {
  border: 1px solid rgba(66, 76, 92, 0.12);
  border-radius: 24px;
  padding: 40px;
  background: linear-gradient(180deg, rgba(235, 228, 210, 0.18) 0%, rgba(255, 255, 255, 0.9) 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.partners-programs__item-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.partners-programs__item-title {
  margin: 0;
  font-size: 24px;
  color: #2D2B30;
}
.partners-programs__item-tag {
  font-size: 14px;
  color: #908E92;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.partners-programs__item-text {
  margin: 0;
  color: #2D2B30;
  line-height: 1.4;
}
.partners-programs__bullets {
  margin: 0;
  padding-left: 20px;
  color: #908E92;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partners-showcase {
  margin-bottom: 64px;
  padding: 40px;
  border: 1px solid rgba(66, 76, 92, 0.12);
  border-radius: 30px;
  background-color: #f4f5f9;
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-showcase {
    padding: 24px;
  }
}
.partners-showcase__content {
  max-width: 520px;
  margin-bottom: 40px;
}
.partners-showcase__eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #908E92;
  font-size: 14px;
}
.partners-showcase__title {
  margin: 0 0 16px;
  font-size: 36px;
  color: #2D2B30;
}
.partners-showcase__description {
  margin: 0;
  color: #2D2B30;
  line-height: 1.4;
}
.partners-showcase__logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-showcase__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-showcase__logos {
    grid-template-columns: 1fr;
  }
}
.partners-showcase__logo {
  border: 1px dashed #cbcdf4;
  border-radius: 16px;
  padding: 24px;
  font-weight: 600;
  color: #2D2B30;
  text-align: center;
  background-color: #ffffff;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-cta__card {
  border-radius: 32px;
  padding: 64px;
  background: linear-gradient(135deg, #c2171c 0%, #5b60cc 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-cta__card {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-cta__card {
    padding: 40px;
  }
}
.partners-cta__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.partners-cta__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.partners-cta__title {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
}
.partners-cta__description {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}
.partners-cta__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.partners-cta__contact {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}
.partners-cta__contact:hover, .partners-cta__contact:focus-visible {
  text-decoration: underline;
}
.partners-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 260px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-cta__actions {
    width: 100%;
  }
}
.partners-cta__button {
  border-radius: 99px;
  padding: 18px 32px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  transition: background-color 0.3s ease;
}
.partners-cta__button--primary {
  background-color: #ffffff;
  color: #2D2B30;
  border-color: #ffffff;
}
.partners-cta__button--primary:hover, .partners-cta__button--primary:focus-visible {
  background-color: rgba(255, 255, 255, 0.85);
}
.partners-cta__button--outline {
  background-color: transparent;
}
.partners-cta__button--outline:hover, .partners-cta__button--outline:focus-visible {
  background-color: rgba(255, 255, 255, 0.12);
}

.partners-highlight {
  width: 100%;
  background-color: rgb(245, 241, 233);
  padding: 64px 0 300px;
  margin-top: -24px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-highlight {
    padding: 27px 0 186px;
  }
}
.partners-highlight__container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .partners-highlight__container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .partners-highlight__container {
    max-width: 1440px;
    padding: 30px;
  }
}
.partners-highlight__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-highlight__container {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .partners-highlight__container {
    align-items: center;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-highlight__container {
    padding: 0 16px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-highlight__container {
    gap: 20px;
  }
}
.partners-highlight__left {
  width: 413px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  position: sticky;
  top: 0;
  padding-top: 48px;
  align-self: flex-start;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-highlight__left {
    width: 100%;
    position: static;
    padding-top: 0;
  }
}
.partners-highlight__label {
  margin: 0;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-highlight__label {
    font-size: 20px;
  }
}
.partners-highlight__right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.partners-highlight__title {
  margin: 0;
  color: #2D2B30;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.1;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-highlight__title {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-highlight__title {
    font-size: 28px;
  }
}
.partners-highlight__form-area {
  position: relative;
  width: 100%;
  max-width: 600px;
}
.partners-highlight__visual {
  position: absolute;
  width: 379px;
  height: 517px;
  right: -247px;
  bottom: -102px;
  pointer-events: none;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-highlight__visual {
    display: none;
  }
}
.partners-highlight__visual img {
  position: absolute;
  width: 379px;
  height: 517px;
  left: 0;
  top: 0;
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  border-bottom-right-radius: 236.5px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-highlight__visual img {
    position: static;
    width: 100%;
    height: auto;
    margin: 24px auto 0;
  }
}
.partners-highlight__shape {
  position: absolute;
  border-top-right-radius: 34px;
  border-bottom-left-radius: 34px;
}
.partners-highlight__shape--primary {
  width: 92px;
  height: 84px;
  background: #C2171C;
  left: 287px;
  top: 15px;
}
.partners-highlight__shape--secondary {
  width: 116px;
  height: 119px;
  background: #ffffff;
  left: 232px;
  top: 37px;
  border: 1px solid rgba(116, 118, 136, 0.2);
}
.partners-highlight__card {
  width: 600px;
  max-width: 100%;
  padding: 60px 80px;
  background: #ffffff;
  border-top-right-radius: 38px;
  border-bottom-left-radius: 38px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-highlight__card {
    padding: 40px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-highlight__card {
    padding: 24px 16px;
    border-radius: 0px 38px 0px 38px;
    width: 100%;
  }
}
.partners-highlight__card-title {
  margin: 0;
  color: #2D2B30;
  font-size: 22px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
}
@media (min-width: 0px) and (max-width: 767px) {
  .partners-highlight__card-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 120%;
  }
}
.partners-highlight__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.partners-highlight__field {
  position: relative;
  height: 70px;
  width: 100%;
}
.partners-highlight__field-label {
  position: absolute;
  left: 12px;
  top: -5px;
  padding: 0 8px;
  background: #ffffff;
  color: #2D2B30;
  font-size: 14px;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 19.6px;
}
.partners-highlight__field-input {
  position: absolute;
  left: 0;
  top: 17.25px;
  width: 100%;
  height: 52.75px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid rgba(116, 118, 136, 0.5);
  border-radius: 12px;
  color: #908E92;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
}
.partners-highlight__field-row {
  display: flex;
  gap: 24px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .partners-highlight__field-row {
    flex-direction: column;
  }
}
.partners-highlight__submit-icon {
  font-size: 20px;
}
.partners-highlight__submit {
  width: 100%;
  padding: 16px 32px;
  border-radius: 6px;
  outline: 2px solid #C2171C;
  outline-offset: -2px;
  background: #C2171C;
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: none;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.partners-highlight__submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.partners-highlight__submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(171.202764977, 20.297235023, 24.7096774194);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.partners-highlight__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 23, 28, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}
.partners-highlight__submit:hover::before {
  left: 100%;
}
.partners-highlight__submit:hover::after {
  opacity: 1;
}
.partners-highlight__submit:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.partners-highlight__submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(194, 23, 28, 0.3);
}
.partners-highlight__agreement {
  margin: 0;
  font-size: 14px;
  color: #2D2B30;
}

.project-page {
  background-color: #f4f5f9;
  min-height: 100vh;
}

.project {
  padding-top: 120px;
  padding-bottom: 64px;
  background-color: #ffffff;
}
.project__container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .project__container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .project__container {
    max-width: 1440px;
    padding: 30px;
  }
}
.project__container {
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project__container {
    padding: 0 16px;
  }
}

.project-hero__layout {
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  display: inline-flex;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .project-hero__layout {
    flex-direction: column;
  }
}
.project-hero__left {
  width: 413px;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  display: inline-flex;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .project-hero__left {
    width: 100%;
  }
}
.project-hero__content {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  display: flex;
}
.project-hero__title {
  align-self: stretch;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 39.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-hero__title {
    font-size: 20px;
    line-height: 26.2px;
  }
}
.project-hero__right {
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  display: inline-flex;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .project-hero__right {
    width: 100%;
  }
}
.project-hero__description {
  align-self: stretch;
}
.project-hero__description-primary {
  color: #2D2B30;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-hero__description-primary {
    font-size: 28px;
    line-height: 110%;
  }
}
.project-hero__description-secondary {
  color: #908E92;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-hero__description-secondary {
    font-size: 28px;
    line-height: 110%;
  }
}

.project-tabs {
  background: white;
  padding: 0;
}
.project-tabs__container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .project-tabs__container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .project-tabs__container {
    max-width: 1440px;
    padding: 30px;
  }
}
.project-tabs__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-tabs__container {
    padding: 0 16px;
  }
}
.project-tabs__wrapper {
  background: white;
  justify-content: center;
  align-items: center;
  gap: 6px;
  display: inline-flex;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-tabs__wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    justify-content: flex-start;
  }
  .project-tabs__wrapper::-webkit-scrollbar {
    display: none;
  }
}
.project-tabs__tab {
  padding: 16px 30px;
  border-radius: 6px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  display: inline-flex;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.project-tabs__tab--active {
  background: #2D2B30;
}
.project-tabs__tab:not(.project-tabs__tab--active) {
  outline: 1px #979797 solid;
  outline-offset: -1px;
}
.project-tabs__tab:hover {
  outline-color: #2D2B30;
}
.project-tabs__tab:hover .project-tabs__tab-content {
  color: #2D2B30;
}
.project-tabs__tab--active:hover {
  background: #2D2B30;
}
.project-tabs__tab--active:hover .project-tabs__tab-content {
  color: white;
}
.project-tabs__tab-content {
  color: #979797;
  font-size: 20px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 28px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-tabs__tab-content {
    font-size: 16px;
  }
}
.project-tabs__tab--active .project-tabs__tab-content {
  color: white;
}

.project-content {
  padding: 42px 0 20px 0;
  background-color: #ffffff;
}
.project-content__container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .project-content__container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .project-content__container {
    max-width: 1440px;
    padding: 30px;
  }
}
.project-content__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-content__container {
    padding: 0 16px;
  }
}
.project-content__block {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  visibility: hidden;
}
.project-content__block--active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
  visibility: visible;
}

.project-education {
  margin-bottom: 40px;
}
.project-education__layout {
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  display: inline-flex;
  margin-bottom: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .project-education__layout {
    flex-direction: column;
  }
}
.project-education__left {
  width: 413px;
  height: 625px;
  position: relative;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .project-education__left {
    width: 100%;
    height: auto;
  }
}
.project-education__title-wrapper {
  width: 413px;
  height: 748px;
  left: 0px;
  top: 0px;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  display: inline-flex;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .project-education__title-wrapper {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.project-education__title {
  align-self: stretch;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 39.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-education__title {
    font-size: 20px;
    line-height: 26.2px;
  }
}
.project-education__right {
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  display: inline-flex;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .project-education__right {
    width: 100%;
    min-width: 0;
  }
}
.project-education__right p {
  align-self: stretch;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
  margin: 0 0 20px 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-education__right p {
    font-size: 16px;
  }
}
.project-education__right p:last-child {
  margin-bottom: 0;
}
.project-education__intro {
  align-self: stretch;
  justify-content: center;
  display: flex;
  flex-direction: column;
  color: #2D2B30;
  font-size: 22px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  line-height: 26.4px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-education__intro {
    font-size: 18px;
  }
}
.project-education__text {
  align-self: stretch;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
  margin: 0 0 20px 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-education__text {
    font-size: 16px;
  }
}
.project-education__text:last-child {
  margin-bottom: 0;
}
.project-education__list {
  align-self: stretch;
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.project-education__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
}
.project-education__list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background-color: #2D2B30;
  border-radius: 50%;
}
.project-education__list li:last-child {
  margin-bottom: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-education__list li {
    font-size: 16px;
    line-height: 22.4px;
  }
}
.project-education__images-row {
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  display: inline-flex;
  width: 100%;
  min-width: 0;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .project-education__images-row {
    gap: 20px;
    flex-wrap: wrap;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-education__images-row {
    flex-direction: column;
    gap: 20px;
  }
}
.project-education__image {
  flex: 1 1 0;
  height: 280px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  object-fit: cover;
  width: 50%;
  max-width: 100%;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .project-education__image {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-education__image {
    width: 100%;
    height: auto;
    min-height: 280px;
    flex: none;
  }
}
.project-education__images-bottom {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  display: flex;
}
.project-education__layout--school {
  margin-top: 60px;
}
.project-education__school-content {
  align-self: stretch;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
}
.project-education__school-text {
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
  margin: 0 0 20px 0;
}
.project-education__school-text:last-child {
  margin-bottom: 0;
}
.project-education ul.project-education__school-text {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.project-education ul.project-education__school-text li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.project-education ul.project-education__school-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background-color: #2D2B30;
  border-radius: 50%;
}
.project-education ul.project-education__school-text li:last-child {
  margin-bottom: 0;
}
.project-education__school-subtitle {
  color: #2D2B30;
  font-size: 20px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 28px;
  word-wrap: break-word;
  margin-bottom: 20px;
  margin-top: 0;
}
.project-education__school-gallery {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  display: flex;
  width: 100%;
  min-width: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-education__school-gallery {
    gap: 20px;
    padding: 0;
  }
}
.project-education__pagination {
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.project-education__pagination::-webkit-scrollbar {
  display: none;
}
@media (min-width: 0px) and (max-width: 767px) {
  .project-education__pagination {
    padding: 0 16px;
  }
}
.project-education__pagination-btn {
  padding: 8px 12px;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #1E1E1E;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 16px;
  transition: opacity 0.3s ease;
}
.project-education__pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.project-education__pagination-btn:not(:disabled):hover {
  opacity: 0.8;
}
.project-education__pagination-btn svg {
  flex-shrink: 0;
}
.project-education__pagination-numbers {
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: flex;
}
.project-education__pagination-number {
  padding: 8px 12px;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #1E1E1E;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.project-education__pagination-number:hover {
  background-color: rgba(45, 43, 48, 0.1);
}
.project-education__pagination-number--active {
  background: #2D2B30;
  color: #F5F5F5;
}

.news-page {
  background-color: #f4f5f9;
  min-height: 100vh;
}

.news-page-content {
  padding-top: 120px;
  padding-bottom: 160px;
  min-height: 100vh;
  background-color: #ffffff;
}
.news-page-content__container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .news-page-content__container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .news-page-content__container {
    max-width: 1440px;
    padding: 30px;
  }
}
.news-page-content__container {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.news-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
.news-page-header__title {
  color: #2D2B30;
  font-size: 60px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 66px;
  word-wrap: break-word;
  margin: 0;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-page-header__title {
    font-size: 40px;
    line-height: 44px;
  }
}
@media (max-width: 767px) {
  .news-page-header__title {
    font-size: 32px;
    line-height: 35px;
  }
}
.news-page-header__subtitle {
  color: #908E92;
  font-size: 20px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  margin: 0;
  max-width: 600px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-page-header__subtitle {
    font-size: 18px;
    line-height: 22px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .news-page-header__subtitle {
    font-size: 16px;
    line-height: 20px;
  }
}

.news-tabs {
  margin-top: 64px;
  margin-bottom: 64px;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-tabs {
    margin-top: 40px;
    margin-bottom: 40px;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .news-tabs::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 767px) {
  .news-tabs {
    padding-left: 0;
    padding-right: 0;
  }
}
.news-tabs__wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: white;
  padding: 0;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-tabs__wrapper {
    gap: 4px;
    justify-content: flex-start;
    min-width: max-content;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .news-tabs__wrapper {
    gap: 4px;
    padding-left: 0;
    padding-right: 0;
  }
}
.news-tabs__button {
  padding: 16px 30px;
  border-radius: 6px;
  border: none;
  background: transparent;
  outline: 1px solid #979797;
  outline-offset: -1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #979797;
  white-space: nowrap;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-tabs__button {
    padding: 14px 24px;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .news-tabs__button {
    padding: 12px 20px;
    font-size: 16px;
    line-height: 22px;
  }
}
.news-tabs__button:hover {
  outline-color: #2D2B30;
  color: #2D2B30;
}
.news-tabs__button:focus-visible {
  outline: 2px solid #2D2B30;
  outline-offset: 2px;
}
.news-tabs__button--active {
  background: #2D2B30;
  outline: none;
  color: white;
}
.news-tabs__button--active:hover {
  background: #2D2B30;
  color: white;
}
.news-tabs__button-text {
  word-wrap: break-word;
}

.news-content {
  position: relative;
  min-height: 200px;
  margin-top: 64px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-content {
    margin-top: 40px;
  }
}
.news-content__panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
}
.news-content__panel--active {
  display: block;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  align-items: stretch;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
  text-decoration: none;
  color: inherit;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  height: 100%;
}
.news-card:hover {
  text-decoration: none;
  color: inherit;
  border: none;
  outline: none;
}
.news-card:active {
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.news-card:focus {
  outline: none;
  border: none;
}
.news-card:focus-visible {
  outline: 2px solid #2D2B30;
  outline-offset: 4px;
  border-radius: 4px;
}
.news-card--wide, .news-card--fixed {
  width: 100%;
}
.news-card__image-wrapper {
  align-self: stretch;
  position: relative;
  background: white;
  overflow: hidden;
  border-top-right-radius: 36px;
  border-bottom-left-radius: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.news-card__image {
  align-self: stretch;
  height: 310px;
  object-fit: cover;
  width: 100%;
  display: block;
  flex-shrink: 0;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .news-card__image {
    height: 230px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .news-card__image {
    height: 262px;
  }
}
.news-card__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 8px 16px;
  background: #F5F1E9;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #2D2B30;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 19.2px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-card__badge {
    left: 16px;
    bottom: 16px;
    font-size: 14px;
    padding: 6px 12px;
  }
}
.news-card__content {
  align-self: stretch;
  padding: 16px 24px 24px;
  background: white;
  border-top-left-radius: 36px;
  border-bottom-right-radius: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-card__content {
    padding: 16px 20px 20px;
    gap: 16px;
  }
}
.news-card__meta {
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.news-card__meta:has(.news-card__date:only-child) {
  justify-content: flex-start;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-card__meta {
    align-items: flex-start;
    gap: 12px;
  }
}
.news-card__date, .news-card__time {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  color: #2D2B30;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 19.2px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-card__date, .news-card__time {
    font-size: 14px;
    line-height: 17px;
  }
}
.news-card__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #908E92;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-card__icon {
    width: 18px;
    height: 18px;
    font-size: 14px;
  }
}
.news-card__title {
  align-self: stretch;
  color: #2D2B30;
  font-size: 17px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 20.4px;
  word-wrap: break-word;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-card__title {
    font-size: 16px;
    line-height: 19px;
  }
}
.news-card__location {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  color: #2D2B30;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 19.2px;
  text-align: center;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-card__location {
    font-size: 14px;
    line-height: 17px;
  }
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
  margin-bottom: 88px;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-pagination {
    margin-top: 40px;
    flex-wrap: wrap;
  }
}
.news-pagination__button {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: #757575;
  text-decoration: none;
}
.news-pagination__button:hover:not(:disabled) {
  background: rgba(45, 43, 48, 0.05);
  color: #1E1E1E;
}
.news-pagination__button:focus-visible {
  outline: 2px solid #2D2B30;
  outline-offset: 2px;
}
.news-pagination__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #757575;
}
.news-pagination__button--prev .news-pagination__icon {
  transform: rotate(180deg);
}
.news-pagination__icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #1E1E1E;
}
.news-pagination__text {
  color: inherit;
}
.news-pagination__pages {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.news-pagination__page {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: #1E1E1E;
  min-width: 32px;
  height: 32px;
}
.news-pagination__page:hover {
  background: rgba(45, 43, 48, 0.05);
}
.news-pagination__page:focus-visible {
  outline: 2px solid #2D2B30;
  outline-offset: 2px;
}
.news-pagination__page--active {
  background: #2D2B30;
  color: #F5F5F5;
}
.news-pagination__page--active:hover {
  background: #2D2B30;
  color: #F5F5F5;
}
.news-pagination__ellipsis {
  padding: 8px 16px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  color: black;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .news-pagination__button {
    font-size: 14px;
    padding: 6px 10px;
  }
  .news-pagination__page {
    font-size: 14px;
    padding: 6px 10px;
    min-width: 28px;
    height: 28px;
  }
  .news-pagination__ellipsis {
    font-size: 14px;
    padding: 6px 12px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .news-pagination {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
  }
  .news-pagination__pages {
    order: 1;
    justify-content: center;
    width: 100%;
    flex-basis: 100%;
    display: flex;
  }
  .news-pagination__button--prev {
    order: 2;
  }
  .news-pagination__button--next {
    order: 2;
  }
}

.single-news-page {
  background-color: #f4f5f9;
  min-height: 100vh;
}

.single-news-content {
  padding-top: 120px;
  padding-bottom: 64px;
  min-height: 100vh;
  background-color: #ffffff;
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-content {
    padding-top: 73px;
  }
}
.single-news-content__container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .single-news-content__container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .single-news-content__container {
    max-width: 1440px;
    padding: 30px;
  }
}
.single-news-content__container {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.single-news-hero {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-hero {
    gap: 32px;
    margin-bottom: 40px;
  }
}
.single-news-hero__image-wrapper {
  width: 100%;
  height: 640px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-hero__image-wrapper {
    height: auto;
  }
}
.single-news-hero__image {
  width: 100%;
  height: 100%;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  object-fit: cover;
  display: block;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-hero__image {
    border-top-right-radius: 24px;
    border-bottom-left-radius: 24px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-hero__image {
    height: auto;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}
.single-news-hero__meta {
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-hero__meta {
    gap: 32px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-hero__meta {
    gap: 8px;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-around;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .single-news-hero__meta::-webkit-scrollbar {
    display: none;
  }
}
.single-news-hero__badge {
  padding: 8px 16px;
  background: #F5F1E9;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #2D2B30;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 19.2px;
  word-wrap: break-word;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-hero__badge {
    font-size: 14px;
    padding: 6px 12px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-hero__badge {
    font-size: 12px;
    padding: 4px 8px;
    line-height: 14px;
  }
}
.single-news-hero__date, .single-news-hero__time, .single-news-hero__location {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  color: #2D2B30;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 19.2px;
  word-wrap: break-word;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-hero__date, .single-news-hero__time, .single-news-hero__location {
    font-size: 14px;
    line-height: 17px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-hero__date, .single-news-hero__time, .single-news-hero__location {
    font-size: 12px;
    line-height: 14px;
    gap: 4px;
  }
}
.single-news-hero__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #908E92;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-hero__icon {
    width: 18px;
    height: 18px;
    font-size: 14px;
  }
}
.single-news-hero__title {
  align-self: stretch;
  text-align: center;
  color: #2D2B30;
  font-size: 60px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 66px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-hero__title {
    font-size: 40px;
    line-height: 44px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-hero__title {
    font-size: 32px;
    line-height: 35px;
    text-align: center;
  }
}

.single-news-text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 64px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-text {
    margin-bottom: 40px;
  }
}
.single-news-text__content {
  width: 100%;
  max-width: 700px;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-text__content {
    font-size: 16px;
    line-height: 22.4px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-text__content {
    font-size: 14px;
    line-height: 19.6px;
  }
}
.single-news-text__content img {
  width: 100%;
  height: auto;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  display: block;
  margin: 24px 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-text__content img {
    border-top-right-radius: 24px;
    border-bottom-left-radius: 24px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-text__content img {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}
.single-news-text__content h2 {
  color: #2D2B30;
  font-size: 32px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 38.4px;
  word-wrap: break-word;
  margin: 0 0 24px 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-text__content h2 {
    font-size: 28px;
    line-height: 33.6px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-text__content h2 {
    font-size: 24px;
    line-height: 28.8px;
  }
}
.single-news-text__content h3 {
  color: #2D2B30;
  font-size: 24px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 28.8px;
  word-wrap: break-word;
  margin: 0 0 24px 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-text__content h3 {
    font-size: 22px;
    line-height: 26.4px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-text__content h3 {
    font-size: 20px;
    line-height: 24px;
  }
}
.single-news-text__content ul {
  margin: 0 0 24px 0;
  padding-left: 0;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  list-style: none;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-text__content ul {
    font-size: 16px;
    line-height: 22.4px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-text__content ul {
    font-size: 14px;
    line-height: 19.6px;
  }
}
.single-news-text__content ul li {
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}
.single-news-text__content ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: #2D2B30;
  font-size: 18px;
  line-height: 25.2px;
  font-family: "Manrope", Arial, sans-serif;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-text__content ul li {
    padding-left: 20px;
  }
  .single-news-text__content ul li::before {
    font-size: 16px;
    line-height: 22.4px;
    left: 6px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-text__content ul li {
    padding-left: 18px;
  }
  .single-news-text__content ul li::before {
    font-size: 14px;
    line-height: 19.6px;
    left: 5px;
  }
}
.single-news-text__content ul li:last-child {
  margin-bottom: 0;
}
.single-news-text__content ol {
  margin: 0 0 24px 0;
  padding-left: 24px;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  list-style-type: decimal;
  list-style-position: outside;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-text__content ol {
    font-size: 16px;
    line-height: 22.4px;
    padding-left: 20px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-text__content ol {
    font-size: 14px;
    line-height: 19.6px;
    padding-left: 18px;
  }
}
.single-news-text__content ol li {
  margin-bottom: 8px;
  padding-left: 4px;
}
.single-news-text__content ol li::marker {
  color: #2D2B30;
  font-size: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
}
.single-news-text__content ol li:last-child {
  margin-bottom: 0;
}
.single-news-text__content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid #C2171C;
  background: #F5F1E9;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  font-style: italic;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-text__content blockquote {
    font-size: 16px;
    line-height: 22.4px;
    padding: 16px 20px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-text__content blockquote {
    font-size: 14px;
    line-height: 19.6px;
    padding: 12px 16px;
    border-left-width: 3px;
  }
}
.single-news-text__content blockquote p {
  margin: 0;
}
.single-news-text__content blockquote p:last-child {
  margin-bottom: 0;
}
.single-news-text__content p {
  margin: 0 0 24px 0;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-text__content p {
    font-size: 16px;
    line-height: 22.4px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-text__content p {
    font-size: 14px;
    line-height: 19.6px;
  }
}
.single-news-text__content p:first-child {
  padding-bottom: 20px;
}
.single-news-text__content p:last-child {
  margin-bottom: 0;
}
.single-news-text__content p.single-news-text__bold {
  font-weight: 700;
}
.single-news-text__underline {
  position: relative;
  color: #2D2B30;
  text-decoration: none;
  display: inline;
}
.single-news-text__underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background-color: #2D2B30;
}
.single-news-text__link {
  color: #3771C8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.single-news-text__link:hover {
  text-decoration: underline;
}
.single-news-text__paragraph-block {
  display: block;
  padding-bottom: 20px;
}
.single-news-text__bold {
  font-weight: 700 !important;
  color: #2D2B30;
}

.single-meet-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 64px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-meet-gallery {
    margin-bottom: 40px;
  }
}
.single-meet-gallery__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 20px;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .single-meet-gallery__container {
    padding: 0 16px;
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .single-meet-gallery__container {
    width: 847px;
    padding: 0;
  }
}
.single-meet-gallery__grid {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.single-meet-gallery__grid.swiper {
  padding-bottom: 50px;
}
.single-meet-gallery__grid .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.single-meet-gallery__grid .swiper-slide {
  width: calc((100% - 30px) / 2);
  height: auto;
  display: flex;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-meet-gallery__grid .swiper-slide {
    width: 100%;
  }
}
.single-meet-gallery__image {
  width: 100%;
  height: 280px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  object-fit: cover;
  display: block;
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-meet-gallery__image {
    height: auto;
    max-height: 280px;
  }
}
.single-meet-gallery__navigation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
  padding: 0 20px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-meet-gallery__navigation {
    padding: 0 10px;
  }
}
.single-meet-gallery__button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #999999;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
  margin-top: -30px;
  position: relative;
}
.single-meet-gallery__button:hover {
  background: #FFFFFF;
  border-color: #2D2B30;
}
.single-meet-gallery__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.single-meet-gallery__button .icon {
  width: 24px;
  height: 24px;
  color: #2D2B30;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.single-meet-gallery__button--prev .icon {
  transform: translate(-50%, -50%) rotate(180deg);
}
.single-meet-gallery__button--prev {
  left: 0;
}
.single-meet-gallery__button--next {
  right: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-meet-gallery__button {
    display: none;
  }
}
.single-meet-gallery__pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 10;
  text-align: center;
  margin: 0;
  padding: 0;
}
.single-meet-gallery__pagination.swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
}
.single-meet-gallery__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #908E92;
  opacity: 1;
  margin: 0 3px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.single-meet-gallery__pagination .swiper-pagination-bullet-active {
  background: #2D2B30;
  width: 16px;
  border-radius: 3px;
}

.single-news-share {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  margin-bottom: 64px;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-share {
    gap: 32px;
    margin-bottom: 40px;
  }
}
.single-news-share__title {
  text-align: center;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 39.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-share__title {
    font-size: 24px;
    line-height: 33.6px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-share__title {
    font-size: 20px;
    line-height: 28px;
  }
}
.single-news-share__buttons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-share__buttons {
    gap: 32px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-share__buttons {
    gap: 11px;
    flex-direction: column;
    align-items: flex-start;
    width: 239px;
  }
}
.single-news-share__button {
  padding: 8px 16px;
  border-radius: 6px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-share__button {
    width: 100%;
    max-width: fit-content;
  }
}
.single-news-share__button:hover {
  opacity: 0.8;
}
.single-news-share__button:focus-visible {
  outline: 2px solid #2D2B30;
  outline-offset: 2px;
}
.single-news-share__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-share__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    align-self: flex-start;
  }
}
.single-news-share__text {
  color: inherit;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 21.6px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-share__text {
    font-size: 16px;
    line-height: 19.2px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-share__text {
    font-size: 14px;
    line-height: 16.8px;
  }
}
.single-news-share__button--facebook .single-news-share__text {
  color: #1778F2;
}
.single-news-share__button--viber .single-news-share__text {
  color: #7F4DA0;
}
.single-news-share__button--telegram .single-news-share__text {
  color: #27A3E4;
}

.single-news-related {
  align-self: stretch;
  background: rgba(235, 228, 210, 0.5);
  padding: 64px 0 160px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .single-news-related {
    padding: 40px 0 193px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-related {
    padding: 40px 0 188px;
    overflow: hidden;
  }
}
.single-news-related__container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .single-news-related__container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .single-news-related__container {
    max-width: 1440px;
    padding: 30px;
  }
}
.single-news-related__container {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-related__container {
    gap: 32px;
  }
}
.single-news-related__title {
  width: 100%;
  max-width: 407px;
  text-align: center;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 39.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .single-news-related__title {
    font-size: 24px;
    line-height: 33.6px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-related__title {
    font-size: 20px;
    line-height: 28px;
  }
}
.single-news-related__grid {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  align-items: stretch;
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-related__grid.swiper {
    display: block;
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }
}
.single-news-related__grid .swiper-wrapper {
  display: contents;
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-related__grid .swiper-wrapper {
    display: flex;
    gap: 0;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-related__grid .swiper-slide {
    width: calc((100% - 20px) / 1.2);
    margin-right: 20px;
    flex-shrink: 0;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .single-news-related__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .single-news-related__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.contact-content {
  padding-top: 120px;
  padding-bottom: 64px;
  min-height: 100vh;
  background-color: #ffffff;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-content {
    padding-top: 81px;
  }
}
.contact-content__container {
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .contact-content__container {
    max-width: 768px;
    padding: 15px;
  }
}
@media (min-width: 1440px) {
  .contact-content__container {
    max-width: 1440px;
    padding: 30px;
  }
}
.contact-content__container {
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 88px;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .contact-content__container {
    padding-left: 40px;
    padding-right: 40px;
    gap: 40px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-content__container {
    padding-left: 20px;
    padding-right: 20px;
    gap: 60px;
  }
}

.contact-main {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .contact-main {
    flex-direction: column;
    gap: 32px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-main {
    flex-direction: column;
    gap: 22px;
  }
}
.contact-main__left {
  width: 413px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .contact-main__left {
    width: 100%;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-main__left {
    width: 100%;
  }
}
.contact-main__title-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.contact-main__title {
  align-self: stretch;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 39.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .contact-main__title {
    font-size: 24px;
    line-height: 33.6px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-main__title {
    font-size: 20px;
    line-height: 28px;
  }
}
.contact-main__right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-main__right {
    width: 100%;
    gap: 52px;
  }
}
.contact-main__info {
  align-self: stretch;
  color: #2D2B30;
  font-size: 36px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 50.4px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .contact-main__info {
    font-size: 28px;
    line-height: 39.2px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-main__info {
    font-size: 20px;
    line-height: 28px;
  }
}
.contact-main__label {
  color: #908E92;
}
.contact-main__value {
  color: #2D2B30;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.contact-main__value:hover {
  opacity: 0.8;
}
.contact-main__social {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.contact-main__social-title {
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 21.6px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .contact-main__social-title {
    font-size: 16px;
    line-height: 19.2px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-main__social-title {
    align-self: stretch;
    font-size: 18px;
  }
}
.contact-main__social-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 23px;
  flex-wrap: wrap;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-main__social-buttons {
    gap: 8px;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
}
.contact-main__social-button {
  padding: 8px 16px;
  border-radius: 6px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.contact-main__social-button:hover {
  opacity: 0.9;
}
.contact-main__social-button:focus-visible {
  outline: 2px solid #2D2B30;
  outline-offset: 2px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-main__social-button {
    padding: 8px 10px;
    gap: 6px;
  }
}
.contact-main__social-button--facebook {
  background: #1778F2;
}
.contact-main__social-button--instagram {
  background: linear-gradient(360deg, #FFAE4D 0%, #FF8146 19%, #E7486D 49%, #AD35B2 75%, #7046CA 100%);
}
.contact-main__social-button--youtube {
  background: #F70001;
}
.contact-main__social-icon-wrapper {
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-main__social-icon {
  width: 20px;
  height: 20px;
  display: block;
}
.contact-main__social-button--instagram .contact-main__social-icon {
  width: 16px;
  height: 16px;
}
.contact-main__social-button--youtube .contact-main__social-icon {
  width: 16px;
  height: 16px;
}
.contact-main__social-text {
  color: white;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 21.6px;
  word-wrap: break-word;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .contact-main__social-text {
    font-size: 16px;
    line-height: 19.2px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-main__social-text {
    font-size: 12px;
    line-height: 14.4px;
  }
}

.contact-regional {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .contact-regional {
    flex-direction: column;
    gap: 32px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-regional {
    flex-direction: column;
    gap: 19px;
  }
}
.contact-regional__left {
  width: 413px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  position: sticky;
  top: 48px;
  align-self: flex-start;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .contact-regional__left {
    width: 100%;
    position: static;
    top: auto;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-regional__left {
    width: 100%;
    position: static;
    top: auto;
  }
}
.contact-regional__title {
  align-self: stretch;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 39.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .contact-regional__title {
    font-size: 24px;
    line-height: 33.6px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-regional__title {
    font-size: 20px;
    line-height: 28px;
  }
}
.contact-regional__right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-regional__right {
    width: 100%;
  }
}
.contact-regional__subtitle {
  align-self: stretch;
  color: #2D2B30;
  font-size: 48px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 52.8px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .contact-regional__subtitle {
    font-size: 36px;
    line-height: 39.6px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-regional__subtitle {
    font-size: 24px;
    line-height: 28px;
  }
}
.contact-regional__subtitle-text {
  color: #2D2B30;
}
.contact-regional__subtitle-label {
  color: #908E92;
}
.contact-regional__select-wrapper {
  width: 261px;
  height: 49px;
  position: relative;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-regional__select-wrapper {
    width: 100%;
  }
}
.contact-regional__select {
  width: 100%;
  position: relative;
  cursor: pointer;
}
.contact-regional__select:hover:not([data-open]) .contact-regional__select-trigger {
  background: #F5F1E9;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  border: none;
}
.contact-regional__select:hover:not([data-open]) .contact-regional__select-arrow-wrapper {
  opacity: 0.5;
}
.contact-regional__select[data-open] .contact-regional__dropdown {
  display: flex;
}
.contact-regional__select[data-open] .contact-regional__select-trigger {
  background: #F5F1E9;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  border: none;
}
.contact-regional__select[data-open] .contact-regional__select-arrow-wrapper {
  opacity: 0.5;
}
.contact-regional__select[data-open] .contact-regional__select-arrow {
  transform: rotate(180deg);
}
.contact-regional__select-trigger {
  width: 261px;
  min-height: 49px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: background-color 0.3s ease, outline 0.3s ease, border 0.3s ease;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-regional__select-trigger {
    width: 100%;
  }
}
.contact-regional__select-trigger:focus {
  outline: 2px solid #2D2B30;
  outline-offset: 2px;
}
.contact-regional__select-text {
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
}
.contact-regional__select-arrow-wrapper {
  width: 18px;
  height: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.contact-regional__select-arrow {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 1px;
  top: 1.75px;
  transition: transform 0.3s ease;
  display: block;
  object-fit: contain;
}
.contact-regional__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 1000;
  align-self: stretch;
  padding-top: 8px;
  padding-bottom: 8px;
  background: white;
  border-radius: 8px;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  max-height: 300px;
  overflow-y: auto;
}
.contact-regional__dropdown-item {
  align-self: stretch;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  display: inline-flex;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-regional__dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.contact-regional__cards {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-top: 20px;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .contact-regional__cards {
    gap: 16px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-regional__cards {
    flex-direction: column;
    gap: 32px;
    margin-top: 0;
  }
}
.contact-regional__card {
  width: 413.5px;
  padding: 40px;
  border-top-right-radius: 36px;
  border-bottom-left-radius: 36px;
  border: 1px solid #DADADA;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .contact-regional__card {
    width: calc(50% - 10px);
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-regional__card {
    width: 100%;
    padding: 34px 16px 16px 16px;
    border-top-right-radius: 24px;
    border-bottom-left-radius: 24px;
  }
}
.contact-regional__card::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  transform: rotate(-180deg);
  background: #EBE4D2;
  border-top-left-radius: 18px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 5px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-regional__card::after {
    top: 16px;
    right: -16px;
  }
}
.contact-regional__card-title {
  color: #C2171C;
  font-size: 32px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 38.4px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .contact-regional__card-title {
    font-size: 28px;
    line-height: 33.6px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-regional__card-title {
    font-size: 28px;
    line-height: 28px;
  }
}
.contact-regional__card-content {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.contact-regional__card-address {
  align-self: stretch;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 21.6px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .contact-regional__card-address {
    font-size: 16px;
    line-height: 19.2px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-regional__card-address {
    font-size: 18px;
  }
}
.contact-regional__card-contact {
  align-self: stretch;
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .contact-regional__card-contact {
    font-size: 16px;
    line-height: 22.4px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-regional__card-contact {
    font-size: 18px;
    line-height: 24.4px;
  }
}
.contact-regional__card-email {
  color: #3771C8;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.contact-regional__card-email:hover {
  opacity: 0.8;
}

.contact-form-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-form-section {
    flex-direction: column;
    gap: 32px;
  }
}
.contact-form-section__left {
  width: 413px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-form-section__left {
    width: 100%;
  }
}
.contact-form-section__title {
  align-self: stretch;
  color: #2D2B30;
  font-size: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 39.2px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .contact-form-section__title {
    font-size: 24px;
    line-height: 33.6px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-form-section__title {
    font-size: 20px;
    line-height: 28px;
  }
}
.contact-form-section__right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
  position: relative;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-form-section__right {
    width: 100%;
    gap: 32px;
  }
}
.contact-form-section__decorative {
  position: relative;
  width: 379px;
  height: 517px;
  align-self: flex-start;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-form-section__decorative {
    width: 100%;
    height: auto;
  }
}
.contact-form-section__image {
  width: 379px;
  height: 517px;
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  border-bottom-right-radius: 236.5px;
  object-fit: cover;
  display: block;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-form-section__image {
    width: 100%;
    height: auto;
    border-radius: 24px;
  }
}
.contact-form-section__decoration {
  position: absolute;
  border-top-right-radius: 34px;
  border-bottom-left-radius: 34px;
}
.contact-form-section__decoration--red {
  width: 92px;
  height: 84px;
  background: #C2171C;
  top: 20px;
  right: -20px;
  z-index: 1;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-form-section__decoration--red {
    display: none;
  }
}
.contact-form-section__decoration--white {
  width: 116px;
  height: 119px;
  background: white;
  bottom: 20px;
  left: -30px;
  z-index: 1;
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-form-section__decoration--white {
    display: none;
  }
}
.contact-form-section__form {
  width: 600px;
  padding: 80px;
  background: white;
  border-top-right-radius: 38px;
  border-bottom-left-radius: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: flex-start;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .contact-form-section__form {
    width: 100%;
    padding: 40px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-form-section__form {
    padding: 32px;
    border-top-right-radius: 24px;
    border-bottom-left-radius: 24px;
  }
}
.contact-form-section__form-title {
  align-self: stretch;
  text-align: center;
  color: #2D2B30;
  font-size: 22px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  line-height: 26.4px;
  word-wrap: break-word;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .contact-form-section__form-title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .contact-form-section__form-title {
    font-size: 18px;
    line-height: 21.6px;
  }
}
.contact-form-section__form-field {
  align-self: stretch;
  height: 70px;
  position: relative;
}
.contact-form-section__form-label {
  padding: 0 8px;
  position: absolute;
  left: 12px;
  top: -5px;
  background: white;
  color: #2D2B30;
  font-size: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 19.6px;
  z-index: 1;
}
.contact-form-section__form-input {
  width: 100%;
  height: 52.75px;
  padding: 0 18px;
  position: absolute;
  left: 0;
  top: 17.25px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(116.36, 118.33, 136.07, 0.5);
  color: #2D2B30;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 25.2px;
}
.contact-form-section__form-input::placeholder {
  color: #908E92;
}
.contact-form-section__form-input:focus {
  outline: 2px solid #2D2B30;
  outline-offset: 2px;
}
.contact-form-section__form-submit {
  align-self: stretch;
  height: 56px;
  padding: 16px 32px;
  background: #C2171C;
  border: 2px solid #C2171C;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contact-form-section__form-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.contact-form-section__form-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(171.202764977, 20.297235023, 24.7096774194);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.contact-form-section__form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 23, 28, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}
.contact-form-section__form-submit:hover::before {
  left: 100%;
}
.contact-form-section__form-submit:hover::after {
  opacity: 1;
}
.contact-form-section__form-submit:focus-visible {
  outline: 2px solid #2D2B30;
  outline-offset: 2px;
}
.contact-form-section__form-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(194, 23, 28, 0.3);
}
.contact-form-section__form-submit-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form-section__form-note {
  color: #2D2B30;
  font-size: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 19.6px;
  word-wrap: break-word;
  margin: 0;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
