* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

:root {
  --brand-dark-blue: #171b27;
  --brand-orange: #e25331;
  --brand-white: #f2f2f2;
  --font-family: "Wix Madefor Display", sans-serif;
}

* {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  box-shadow: none;
  scroll-behavior: smooth;
  font-family: var(--font-family);
}

html {
  scrollbar-gutter: stable;
}

body {
  margin: 0 auto;
  background: var(--brand-dark-blue);
}

.main {
  overflow: hidden;
  max-width: 100%;
}

section {
  max-width: 2200px;
  margin: 0 auto;
}

[class*=__container] {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 240px 0 240px;
}
@media (max-width: 1500px) {
  [class*=__container] {
    max-width: 100%;
    padding: 0 200px 0 112px;
  }
}
@media (max-width: 1200px) {
  [class*=__container] {
    padding: 0 32px;
  }
}
@media (max-width: 990px) {
  [class*=__container] {
    padding: 0 16px;
  }
}

.button {
  padding: 12px;
  width: 100%;
  max-width: 214px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--brand-orange);
  border-radius: 8px;
}
.button span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand-white);
}
@media (hover: hover) {
  .button:hover {
    background: #c43f1f;
  }
}
.button:active {
  background: #a63518;
}

.button-transparent {
  padding: 12px 12px;
  border: 1px solid var(--brand-white);
  border-radius: 8px;
  transition: background-color 0.5s ease;
}
.button-transparent span {
  width: 100%;
  display: inline-block;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand-white);
}
@media (hover: hover) {
  .button-transparent:hover {
    background: rgba(242, 242, 242, 0.1);
  }
}
.button-transparent:active {
  background: rgba(242, 242, 242, 0.25);
}

.top-title {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-white);
}
.top-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--brand-orange);
}

.title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: var(--brand-white);
  vertical-align: top;
}
@media (max-width: 1100px) {
  .title {
    font-size: 48px;
  }
}
@media (max-width: 640px) {
  .title {
    font-size: 24px;
  }
}
.title span.numb {
  position: absolute;
  display: inline-block;
  padding-top: 22px;
  padding-left: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-white);
  vertical-align: text-top;
}
@media (max-width: 1100px) {
  .title span.numb {
    padding-top: 15px;
  }
}
@media (max-width: 640px) {
  .title span.numb {
    padding-top: 7px;
    padding-left: 5px;
  }
}

.swiper-pagination {
  position: static;
  margin: 0;
  padding: 0;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.swiper-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 4px;
  height: 4px;
  opacity: 1;
  background-color: var(--brand-white);
  transition: transform 0.5s ease, background-color 0.5s ease;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(2);
  background-color: var(--brand-orange);
}

.swiper-button-next,
.swiper-button-prev {
  position: static;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 36px;
  border: 1px solid var(--brand-white);
  border-radius: 8px;
  transition: background-color 0.5s ease;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 20px;
  height: auto;
}
@media (hover: hover) {
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: rgba(242, 242, 242, 0.1);
  }
}
.swiper-button-next:active,
.swiper-button-prev:active {
  background: rgba(242, 242, 242, 0.25);
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form label.input {
  margin-bottom: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 6px;
}
.form label.input span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: var(--brand-white);
}
.form label.input .iti {
  width: 100%;
  max-width: 100%;
}
.form label.input input {
  padding: 12px 16px;
  width: 100%;
  border: 1px solid #d5d7da;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
  background: var(--brand-white);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--brand-dark-blue);
}
.form label.input input::-moz-placeholder {
  opacity: 0.5;
}
.form label.input input::placeholder {
  opacity: 0.5;
}
.form label.input input._form-error {
  box-shadow: 0 0 0 4px #fdc1b1, 0 1px 2px 0 rgba(10, 13, 18, 0.05);
  border-color: #a63518;
}
.form label.policy {
  position: relative;
  margin-top: 8px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  cursor: pointer;
}
.form label.policy::before {
  content: "";
  position: relative;
  padding-top: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #d5d7da;
  border-radius: 6px;
  background-color: var(--brand-white);
  cursor: pointer;
  z-index: 2;
}
.form label.policy:has(input:checked)::before {
  content: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.6668 3.5L5.25016 9.91667L2.3335 7" stroke="%23171B27" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /></svg>');
  background-color: #dfe4f5;
  border-color: var(--brand-dark-blue);
}
.form label.policy input {
  opacity: 0;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.form label.policy .policy-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--brand-white);
}
.form label.policy .policy-text a {
  text-decoration: underline;
}
.form__error {
  display: none !important;
}
.form button[type=submit] {
  margin-bottom: 16px;
  width: 100%;
  max-width: 100%;
}
.form a.button-transparent {
  width: 100%;
  max-width: 100%;
}
.form:has(.thanks.active) label {
  opacity: 0;
}
.form:has(.thanks.active) a {
  opacity: 0;
}
.form:has(.thanks.active) button[type=submit] {
  opacity: 0;
}
.form .thanks {
  position: absolute;
  inset: 0;
  background: var(--brand-light-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.form .thanks.active {
  opacity: 1 !important;
  visibility: visible;
}
.form .thanks .icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.form .thanks .icon svg.ok {
  position: relative;
  z-index: 3;
}
.form .thanks .icon svg.ok path {
  fill: var(--brand-white);
}
.form .thanks .icon svg.bg {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: auto;
}
.form .thanks__title {
  margin: 24px 0 8px;
}
.form .thanks__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--brand-white);
  text-align: center;
}
@media (max-width: 640px) {
  .form .thanks__text {
    font-size: 16px;
  }
}

.iti--inline-dropdown:not(.iti--container) .iti__dropdown-content {
  z-index: 4;
}

.iti__dropdown-content {
  border: 1px solid #d5d7da;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
  background: var(--brand-white);
  overflow: hidden;
}

.iti__search-icon {
  display: none;
}

.iti__search-input-wrapper {
  border: none !important;
}

.iti__search-input {
  padding: 12px 16px !important;
  border: 1px solid #d5d7da;
  border-radius: 8px;
  background: var(--brand-white);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--brand-dark-blue);
}
.iti__search-input::-moz-placeholder {
  opacity: 0.5;
}
.iti__search-input::placeholder {
  opacity: 0.5;
}

.form label.input .iti__country-name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--brand-dark-blue);
}

.iti__dial-code {
  color: var(--brand-dark-blue) !important;
}

.page-template-policy-page .policy__container {
  padding-top: 140px;
}
.page-template-policy-page .policy__container * {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 115%;
  letter-spacing: -0.04em;
  color: var(--brand-white);
}
.page-template-policy-page .policy__container h1 {
  margin-bottom: 48px;
}
.page-template-policy-page .policy__container h2, .page-template-policy-page .policy__container h3, .page-template-policy-page .policy__container h4, .page-template-policy-page .policy__container h5, .page-template-policy-page .policy__container h6 {
  margin-bottom: 32px;
}
.page-template-policy-page .policy__container p, .page-template-policy-page .policy__container ul {
  margin-bottom: 24px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid rgba(242, 242, 242, 0.5);
  z-index: 20;
  transition: transform 0.5s ease;
}
.header._header-scroll {
  transform: translateY(calc(-100% - 17px));
}
.header._header-show {
  transform: translateY(0);
}
.menu-open .header {
  transform: translateY(0) !important;
}
.header::before {
  content: "";
  position: absolute;
  top: 72px;
  right: 173px;
  width: 17px;
  height: 17px;
  background-color: var(--brand-white);
}
@media (max-width: 1200px) {
  .header::before {
    display: none;
  }
}
.header__wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: 16px 200px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .header__wrap {
    padding: 16px 32px;
  }
}
@media (max-width: 990px) {
  .header__wrap {
    padding: 16px;
  }
}
.header__logo-link {
  width: 100%;
  max-width: 150px;
}
.header__logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__link {
  margin-left: auto;
}
@media (max-width: 1200px) {
  .header__link {
    margin-right: 64px;
  }
}
@media (max-width: 640px) {
  .header__link {
    display: none !important;
  }
}
.header__burger {
  display: none;
}
@media (max-width: 1200px) {
  .header__burger {
    position: relative;
    display: flex;
    width: 24px;
    min-width: 24px;
    height: 24px;
  }
  .header__burger span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand-white);
    transform: translateY(-50%);
    transition: all 0.5s ease 0s;
  }
  .header__burger::after, .header__burger::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand-white);
    transition: all 0.5s ease 0s;
  }
  .header__burger::before {
    top: 5px;
  }
  .header__burger::after {
    bottom: 5px;
  }
  .menu-open .header__burger span {
    opacity: 0;
    visibility: hidden;
  }
  .menu-open .header__burger::before {
    top: calc(50% - 1px);
    transform: rotate(45deg);
  }
  .menu-open .header__burger::after {
    bottom: calc(50% - 1px);
    transform: rotate(-45deg);
  }
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  max-width: 182px;
  display: flex;
  z-index: 19;
  border-left: 1px solid var(--brand-white);
}
@media (max-width: 1200px) {
  .menu {
    border: none;
    right: 0;
    max-width: 360px;
    background: var(--brand-dark-blue);
    transform: translateX(100%);
    transition: transform 0.5s ease;
  }
  .menu-open .menu {
    transform: translateX(0);
  }
}
@media (max-width: 640px) {
  .menu {
    max-width: 185px;
  }
}
.menu__wrap {
  width: 100%;
  padding-left: 16px;
  height: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .menu__wrap {
    padding-left: 32px;
  }
}
.menu__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 48px;
}
@media (max-width: 640px) {
  .menu__list {
    row-gap: 32px;
  }
}
.menu__list li a {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand-white);
  transition: color 0.5s ease;
}
@media (max-width: 640px) {
  .menu__list li a {
    font-size: 14px;
    padding: 4px 0;
  }
}
.menu__list li a::before {
  content: "";
  display: flex;
  width: 0;
  height: 1px;
  background-color: var(--brand-white);
  transition: width 0.5s ease, background-color 0.5s ease;
}
.menu__list li a.active::before {
  width: 20px;
}
@media (hover: hover) {
  .menu__list li a:hover::before {
    width: 20px;
  }
}
.menu__list li a:active {
  color: #e5e5e5;
}
.menu__list li a:active::before {
  width: 20px;
  background-color: #e5e5e5;
}

.footer__container {
  position: relative;
  z-index: 3;
}
.footer__top {
  padding: 96px 0 214px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 990px) {
  .footer__top {
    padding: 48px 0 109px;
  }
}
@media (max-width: 640px) {
  .footer__top {
    padding-bottom: 70px;
  }
}
.footer__title {
  margin-bottom: 24px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--brand-white);
  opacity: 0.4;
}
@media (max-width: 640px) {
  .footer__title {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }
}
.footer__top-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (max-width: 990px) {
  .footer__top-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .footer__top-wrap {
    flex-direction: column;
    align-items: center;
    row-gap: 48px;
  }
}
.footer__phone {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: var(--brand-white);
  white-space: nowrap;
}
@media (max-width: 990px) {
  .footer__phone {
    font-size: 48px;
  }
}
@media (max-width: 640px) {
  .footer__phone {
    font-size: 24px;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.footer__social li a {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brand-white);
  border-radius: 100%;
}
.footer__social li a svg {
  max-width: 25px;
  height: auto;
}
.footer__middle {
  padding-bottom: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid var(--brand-white);
}
@media (max-width: 640px) {
  .footer__middle {
    padding-bottom: 16px;
  }
}
.footer__logo-wrap {
  width: 100%;
  max-width: 781px;
  margin-bottom: 16px;
}
.footer__logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 990px) {
  .footer__logo {
    max-width: 100%;
  }
}
.footer__middle-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 740px) {
  .footer__middle-wrap {
    flex-direction: column;
    row-gap: 12px;
    align-items: center;
  }
}
.footer__middle-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 740px) {
  .footer__middle-left {
    align-items: center;
  }
}
.footer__company {
  padding: 4px 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
  color: #f4f4f4;
}
@media (max-width: 740px) {
  .footer__company {
    text-align: center;
  }
}
.footer__middle-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 740px) {
  .footer__middle-right {
    align-items: center;
  }
}
.footer__link {
  padding: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.1em;
  color: var(--brand-white);
}
@media (max-width: 740px) {
  .footer__link {
    text-align: center;
  }
}
.footer__bottom {
  padding: 16px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 680px) {
  .footer__bottom {
    padding: 8px 0 36px;
  }
}
.footer__copy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--brand-white);
}
.footer__up {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--brand-white);
}
@media (max-width: 680px) {
  .footer__up {
    margin-top: 20px;
    width: 100%;
  }
}
.footer__up svg {
  width: 20px;
  height: auto;
}
.footer__samoliot {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--brand-white);
}
.footer__samoliot span {
  padding-top: 3px;
}
@media (max-width: 680px) {
  .footer__samoliot {
    width: 100%;
  }
}
.footer__samoliot svg {
  width: 100px;
  height: auto;
}

.welcome {
  position: relative;
  max-width: 100%;
  display: flex;
  height: 100%;
  min-height: 1024px;
}
@media (min-width: 1922px) {
  .welcome {
    aspect-ratio: 2/1;
  }
}
@media (max-width: 640px) {
  .welcome {
    min-height: 640px;
  }
}
.welcome::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 84%;
  background: linear-gradient(180deg, rgba(23, 27, 39, 0) 0%, #171b27 100%);
  z-index: 2;
}
.welcome__slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.welcome__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.welcome .swiper-pagination {
  position: absolute;
  bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  z-index: 3;
}
@media (max-width: 640px) {
  .welcome .swiper-pagination {
    bottom: 32px;
  }
}
.welcome__container {
  position: relative;
  padding-top: 128px;
  padding-bottom: 300px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 4;
}
@media (max-width: 640px) {
  .welcome__container {
    padding-top: 104px;
    padding-bottom: 72px;
  }
}
.welcome__title {
  width: 100%;
  max-width: 1150px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--brand-white);
}
@media (max-width: 640px) {
  .welcome__title {
    font-size: 32px;
  }
}
.welcome__title span.wrap {
  margin-left: auto;
  width: 100%;
  max-width: 557px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .welcome__title span.wrap {
    max-width: 294px;
  }
}
.welcome__title span.orange {
  padding: 4px 10px;
  background: var(--brand-orange);
}
.welcome__title span.two {
  padding: 0 10px;
}
.welcome__title span.numb {
  position: absolute;
  display: inline-block;
  padding-top: 22px;
  padding-left: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-white);
  vertical-align: text-top;
}
@media (max-width: 1100px) {
  .welcome__title span.numb {
    padding-top: 15px;
  }
}
@media (max-width: 640px) {
  .welcome__title span.numb {
    padding-top: 7px;
    padding-left: 5px;
  }
}
.welcome__text {
  width: 100%;
  max-width: 497px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--brand-white);
}

.welcome-sub {
  position: relative;
  max-width: 2200px;
  margin: 0 auto;
}
.welcome-sub .elem-svg {
  position: absolute;
  left: -213px;
  bottom: -157px;
  width: 600px;
  height: 600px;
  border-radius: 100%;
  background: linear-gradient(180deg, #e25231 32.21%, #e25231 100%);
  filter: blur(200px);
  opacity: 0.6;
}
@media (max-width: 640px) {
  .welcome-sub .elem-svg {
    left: -393px;
    bottom: -470px;
  }
}
.welcome-sub__wrap {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.welcome-sub__col {
  width: 595px;
  min-width: 595px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.welcome-sub .welcome-sub-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 16px;
  width: 198px;
  height: 198px;
}
.welcome-sub .welcome-sub-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--brand-white);
  opacity: 0.5;
  border-radius: 100%;
  z-index: 1;
}
.welcome-sub .welcome-sub-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border: 1px solid var(--brand-white);
  opacity: 0.5;
  border-radius: 100%;
  z-index: 1;
}
.welcome-sub .welcome-sub-item:nth-child(3)::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300%;
  height: 300%;
  border: 1px solid var(--brand-white);
  opacity: 0.5;
  border-radius: 100%;
  z-index: 1;
}
.welcome-sub .welcome-sub-item__numb {
  position: relative;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--brand-white);
  z-index: 3;
}
.welcome-sub .welcome-sub-item__text {
  position: relative;
  max-width: 175px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  color: var(--brand-white);
  z-index: 3;
}
.welcome-sub__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 198px;
  height: 198px;
  border-radius: 100%;
  transition: background-color 0.5s ease;
}
.welcome-sub__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--brand-orange);
  border-radius: 100%;
  z-index: 1;
  transition: border-color 0.5s ease;
}
.welcome-sub__btn span {
  position: relative;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  color: var(--brand-white);
  z-index: 3;
}
@media (hover: hover) {
  .welcome-sub__btn:hover {
    background-color: var(--brand-orange);
  }
}
.welcome-sub__btn:active {
  background-color: #c43f1f;
}
.welcome-sub__btn:active::before {
  border-color: #c43f1f;
}

.community {
  position: relative;
  padding: 80px 0;
}
@media (max-width: 640px) {
  .community {
    padding: 40px 0;
  }
}
.community {
  max-width: 100%;
  overflow: hidden;
}
.community__container {
  position: relative;
  z-index: 3;
}
.community__top {
  position: relative;
  margin-bottom: 48px;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 640px) {
  .community__top {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 32px;
  }
}
.community__title {
  text-align: center;
}
@media (max-width: 990px) {
  .community__title {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .community__title {
    max-width: 100%;
  }
}
.community__btns {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media (max-width: 640px) {
  .community__btns {
    position: relative;
    margin-left: auto;
    bottom: auto;
    right: auto;
  }
}
.community__btns:has(.swiper-button-lock) {
  display: none;
}
.community__wrapper {
  align-items: stretch;
}
.community .community-item {
  position: relative;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 342px;
  height: auto;
  min-height: 440px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  background: rgba(242, 242, 242, 0.05);
  overflow: hidden;
}
@media (max-width: 1500px) {
  .community .community-item {
    max-width: 371px;
  }
}
@media (max-width: 1200px) {
  .community .community-item {
    max-width: 314px;
  }
}
@media (max-width: 990px) {
  .community .community-item {
    max-width: 364px;
  }
}
@media (max-width: 640px) {
  .community .community-item {
    width: 344px;
    max-width: 95%;
  }
}
.community .community-item__photo-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
  z-index: 2;
}
.community .community-item__photo-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.community .community-item video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.community .community-item__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(242, 242, 242, 0.2);
  border-radius: 4px;
  z-index: 3;
}
.community .community-item__btn.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.community .community-item__text {
  margin: 42px 0 80px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--brand-white);
}
.community .community-item__bottom {
  position: relative;
  margin-top: auto;
  z-index: 2;
}
.community .community-item__name {
  margin-bottom: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--brand-white);
}
.community .community-item__position {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--brand-white);
  opacity: 0.4;
}

.whom {
  position: relative;
  padding: 80px 0;
}
.whom .elem-svg {
  position: absolute;
  right: -135px;
  bottom: -220px;
  width: 600px;
  height: 600px;
  border-radius: 100%;
  background: linear-gradient(180deg, #e25231 32.21%, #e25231 100%);
  filter: blur(200px);
  opacity: 0.6;
}
@media (max-width: 1500px) {
  .whom .elem-svg {
    bottom: -155px;
  }
}
@media (max-width: 990px) {
  .whom .elem-svg {
    bottom: -243px;
  }
}
@media (max-width: 640px) {
  .whom .elem-svg {
    right: -355px;
    bottom: auto;
    top: calc(100% + 43px);
  }
}
.whom__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}
.whom__title {
  margin: 24px 0 48px;
  width: 100%;
  max-width: 1075px;
  text-align: center;
}
@media (max-width: 990px) {
  .whom__title {
    margin-bottom: 24px;
  }
}
.whom__text {
  margin-bottom: 48px;
  max-width: 560px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: var(--brand-white);
}
@media (max-width: 640px) {
  .whom__text {
    font-size: 16px;
  }
}
.whom__wrap {
  margin-bottom: 48px;
  min-width: 0;
  max-width: 100%;
}
.whom__btns {
  margin-bottom: 12px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.whom__btns:has(.swiper-button-lock) {
  display: none;
}
.whom__slider {
  max-width: 100%;
  width: 100%;
}
.whom__wrapper {
  align-items: stretch;
}
.whom .whom-item {
  padding: 20px;
  width: 100%;
  max-width: 275px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(242, 242, 242, 0.05);
  border-radius: 8px;
  transition: background-color 0.5s ease;
}
@media (hover: hover) {
  .whom .whom-item:hover {
    background-color: var(--brand-orange);
  }
  .whom .whom-item:hover svg {
    transform: scale(1.05);
  }
}
.whom .whom-item:active {
  background: var(--brand-orange);
}
.whom .whom-item:active svg {
  transform: scale(1.15);
}
@media (max-width: 1200px) {
  .whom .whom-item {
    max-width: 234px;
  }
}
@media (max-width: 990px) {
  .whom .whom-item {
    max-width: 240px;
  }
}
@media (max-width: 640px) {
  .whom .whom-item {
    max-width: 95%;
  }
}
.whom .whom-item__numb {
  width: 100%;
  text-align: left;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-white);
}
.whom .whom-item svg {
  margin: 48px 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.whom .whom-item__text {
  width: 100%;
  text-align: left;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--brand-white);
}
.whom__button {
  width: 100%;
  max-width: 385px;
}

.what {
  padding: 80px 0;
}
.what__container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 1200px) {
  .what__container {
    flex-direction: column;
    align-items: center;
    row-gap: 48px;
  }
}
.what__left {
  width: 100%;
  max-width: 798px;
}
@media (max-width: 1200px) {
  .what__left {
    max-width: 768px;
  }
}
.what__title-small {
  margin: 24px 0 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  color: var(--brand-white);
}
@media (max-width: 640px) {
  .what__title-small {
    font-size: 20px;
  }
}
.what__title {
  margin-bottom: 96px;
}
@media (max-width: 990px) {
  .what__title {
    margin-bottom: 48px;
  }
}
.what__list {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 64px;
}
@media (max-width: 640px) {
  .what__list {
    row-gap: 32px;
  }
}
.what .what-item {
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 24px;
       column-gap: 24px;
  border-top: 1px solid rgba(242, 242, 242, 0.5);
}
@media (max-width: 640px) {
  .what .what-item {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 12px;
  }
}
.what .what-item__left {
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.what .what-item__numb {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: var(--brand-white);
}
.what .what-item__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--brand-white);
}
.what .what-item__text {
  max-width: 50%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--brand-white);
  opacity: 0.4;
  text-align: left;
}
@media (max-width: 640px) {
  .what .what-item__text {
    max-width: 100%;
  }
}
.included {
  position: relative;
  padding: 80px 0;
}
.included .elem-svg {
  position: absolute;
  left: -213px;
  bottom: -430px;
  width: 600px;
  height: 600px;
  border-radius: 100%;
  background: linear-gradient(180deg, #e25231 32.21%, #e25231 100%);
  filter: blur(200px);
  opacity: 0.6;
}
@media (max-width: 1500px) {
  .included .elem-svg {
    bottom: -250px;
  }
}
@media (max-width: 1200px) {
  .included .elem-svg {
    bottom: auto;
    top: 290px;
  }
}
@media (max-width: 990px) {
  .included .elem-svg {
    top: 430px;
  }
}
@media (max-width: 640px) {
  .included .elem-svg {
    left: -353px;
    top: auto;
    bottom: -104px;
  }
}
.included__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}
.included__title {
  margin: 24px 0;
  text-align: center;
}
@media (max-width: 760px) {
  .included__title {
    max-width: 450px;
  }
}
@media (max-width: 640px) {
  .included__title {
    max-width: 200px;
  }
}
.included__wrap {
  width: 100%;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1500px) {
  .included__wrap {
    max-width: 768px;
  }
}
@media (max-width: 990px) {
  .included__wrap {
    max-width: 640px;
  }
}
.included__img {
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 840/360;
}
@media (max-width: 1500px) {
  .included__img {
    aspect-ratio: 768/360;
  }
}
@media (max-width: 990px) {
  .included__img {
    aspect-ratio: 640/360;
  }
}
@media (max-width: 640px) {
  .included__img {
    aspect-ratio: 343/200;
  }
}
.included__list {
  width: 100%;
  max-width: 100%;
  margin: 24px 0 48px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.included__item {
  width: 100%;
  max-width: 100%;
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 16px;
       column-gap: 16px;
  border-bottom: 1px solid rgba(242, 242, 242, 0.5);
}
@media (max-width: 640px) {
  .included__item {
    flex-wrap: wrap;
    row-gap: 12px;
  }
}
.included__item .numb {
  padding-top: 3px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-white);
}
.included__item .title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--brand-white);
}
.included__item .text {
  margin-left: auto;
  width: 100%;
  max-width: 60%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--brand-white);
  opacity: 0.4;
}
@media (max-width: 640px) {
  .included__item .text {
    max-width: 100%;
  }
}
.included__button {
  width: 100%;
  max-width: 323px;
}

.honestly {
  position: relative;
  padding: 80px 0;
}
.honestly .elem-svg {
  position: absolute;
  left: 434px;
  bottom: 38px;
  width: 600px;
  height: 600px;
  border-radius: 100%;
  background: linear-gradient(180deg, #e25231 32.21%, #e25231 100%);
  filter: blur(200px);
  opacity: 0.6;
}
@media (max-width: 1500px) {
  .honestly .elem-svg {
    left: 234px;
  }
}
@media (max-width: 1200px) {
  .honestly .elem-svg {
    left: 84px;
  }
}
@media (max-width: 990px) {
  .honestly .elem-svg {
    left: -46px;
    bottom: -241px;
  }
}
@media (max-width: 640px) {
  .honestly .elem-svg {
    left: -272px;
    bottom: -390px;
  }
}
.honestly__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
}
.honestly__title {
  margin: 24px 0 48px;
  max-width: 700px;
  text-align: left;
}
@media (max-width: 1100px) {
  .honestly__title {
    max-width: 600px;
  }
}
@media (max-width: 990px) {
  .honestly__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 640px) {
  .honestly__title {
    max-width: 300px;
  }
}
.honestly__text {
  margin-bottom: 96px;
  max-width: 560px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--brand-white);
}
@media (max-width: 990px) {
  .honestly__text {
    margin-bottom: 48px;
  }
}
.honestly__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 640px) {
  .honestly__wrap {
    grid-template-columns: 1fr;
  }
}
.honestly__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.honestly__item-img {
  width: 100%;
  height: auto;
  min-height: 240px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .honestly__item-img {
    min-height: 200px;
  }
}
@media (hover: hover) {
  .honestly__item-img:hover img {
    transform: scale(1.05);
  }
}
.honestly__item-img:active img {
  transform: scale(1.05);
}
.honestly__item {
  position: relative;
  padding: 16px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid rgba(242, 242, 242, 0.1);
  transition: background-color 0.5s ease;
}
@media (max-width: 640px) {
  .honestly__item {
    min-height: 180px;
  }
}
@media (hover: hover) {
  .honestly__item:hover {
    background-color: var(--brand-orange);
  }
}
.honestly__item:active {
  background: var(--brand-orange);
}
.honestly__item .numb {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-white);
}
.honestly__item .text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--brand-white);
}
.honestly__item svg {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 12px;
  height: auto;
}

.trips {
  position: relative;
  padding: 80px 0;
}
.trips__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}
.trips__title {
  margin: 24px 0 48px;
  text-align: center;
}
@media (max-width: 990px) {
  .trips__title {
    max-width: 500px;
  }
}
@media (max-width: 640px) {
  .trips__title {
    max-width: 350px;
  }
}
.trips__year {
  position: relative;
  padding-bottom: 8px;
  width: 100%;
  text-align: left;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  color: var(--brand-white);
}
@media (max-width: 640px) {
  .trips__year {
    font-size: 24px;
  }
}
.trips__year::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brand-white);
  opacity: 0.4;
}
.trips__wrap {
  margin: 48px auto;
  width: 100%;
  max-width: 841px;
}
@media (max-width: 640px) {
  .trips__wrap {
    margin-top: 12px;
  }
}
.trips .trips-item {
  padding: 32px 16px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr 0.5fr;
  justify-content: space-between;
  -moz-column-gap: 16px;
       column-gap: 16px;
  border-bottom: 1px solid rgba(242, 242, 242, 0.4);
}
@media (max-width: 640px) {
  .trips .trips-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 12px;
  }
}
.trips .trips-item__left {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (max-width: 640px) {
  .trips .trips-item__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 4px;
  }
}
.trips .trips-item__numb {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-white);
  transition: color 0.5s ease;
}
.trips .trips-item__month {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--brand-white);
  transition: color 0.5s ease;
}
.trips .trips-item__place {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 5px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--brand-white);
  transition: color 0.5s ease;
}
.trips .trips-item__note {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--brand-white);
  opacity: 0.4;
  transition: color 0.5s ease;
}
.trips .trips-item__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media (max-width: 640px) {
  .trips .trips-item__link {
    margin-left: auto;
  }
}
.trips .trips-item__link span {
  display: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand-dark-blue);
}
@media (max-width: 990px) {
  .trips .trips-item__link span {
    display: none !important;
  }
}
.trips .trips-item__link svg path {
  transition: fill 0.5s ease;
}
@media (hover: hover) {
  .trips .trips-item:hover {
    background: var(--brand-white);
    grid-template-columns: 1fr 2fr 2fr;
  }
}
@media (hover: hover) and (max-width: 990px) {
  .trips .trips-item:hover {
    grid-template-columns: 1fr 2fr 0.5fr;
  }
}
@media (hover: hover) {
  .trips .trips-item:hover .trips-item__numb {
    color: var(--brand-dark-blue);
  }
  .trips .trips-item:hover .trips-item__month {
    color: var(--brand-dark-blue);
  }
  .trips .trips-item:hover .trips-item__place {
    color: var(--brand-dark-blue);
  }
  .trips .trips-item:hover .trips-item__note {
    color: var(--brand-dark-blue);
  }
  .trips .trips-item:hover .trips-item__link span {
    display: block;
  }
  .trips .trips-item:hover .trips-item__link svg path {
    fill: var(--brand-dark-blue);
  }
}
.trips .trips-item:active {
  background: var(--brand-white);
  grid-template-columns: 1fr 2fr 2fr;
}
@media (max-width: 990px) {
  .trips .trips-item:active {
    grid-template-columns: 1fr 2fr 0.5fr;
  }
}
.trips .trips-item:active .trips-item__numb {
  color: var(--brand-dark-blue);
}
.trips .trips-item:active .trips-item__month {
  color: var(--brand-dark-blue);
}
.trips .trips-item:active .trips-item__place {
  color: var(--brand-dark-blue);
}
.trips .trips-item:active .trips-item__note {
  color: var(--brand-dark-blue);
}
.trips .trips-item:active .trips-item__link span {
  display: block;
}
.trips .trips-item:active .trips-item__link svg path {
  fill: var(--brand-dark-blue);
}

.formats {
  position: relative;
  padding: 80px 0;
}
.formats__container {
  position: relative;
  z-index: 3;
}
.formats__title {
  margin: 24px 0 96px;
  width: 100%;
  max-width: 964px;
}
@media (max-width: 990px) {
  .formats__title {
    margin: 24px 0 48px;
  }
}
@media (max-width: 640px) {
  .formats__title {
    margin: 24px 0;
  }
}
.formats__title span.two {
  width: 100%;
  display: inline-block;
  text-align: right;
}
@media (max-width: 1200px) {
  .formats__title span.two {
    text-align: left;
  }
}
.formats__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 16px;
}
@media (max-width: 990px) {
  .formats__wrap {
    grid-template-columns: 1fr;
  }
}
.formats .formats-item {
  position: relative;
  min-height: 400px;
  display: flex;
  mix-blend-mode: overlay;
  background: var(--brand-dark-blue);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(242, 242, 242, 0.2);
}
.formats .formats-item__numb {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 2;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-white);
}
.formats .formats-item__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  mix-blend-mode: overlay;
}
.formats .formats-item__wrap {
  position: relative;
  margin-top: auto;
  padding: 32px;
  max-width: 460px;
  min-height: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0 16px 0 0;
  backdrop-filter: blur(50px);
  background: rgba(242, 242, 242, 0.05);
  z-index: 3;
}
@media (max-width: 640px) {
  .formats .formats-item__wrap {
    padding: 32px 24px;
    min-height: 280px;
  }
}
.formats .formats-item__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  color: var(--brand-white);
}
@media (max-width: 640px) {
  .formats .formats-item__title {
    font-size: 24px;
  }
}
.formats .formats-item__text {
  margin: 16px 0 64px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--brand-white);
}
@media (max-width: 640px) {
  .formats .formats-item__text {
    margin-bottom: 32px;
  }
}
.formats .formats-item__button {
  width: 100%;
  max-width: 275px;
}
.formats .formats-item__icon {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: var(--brand-white);
  z-index: 2;
}

.how {
  padding: 80px 0 160px;
}
@media (max-width: 1200px) {
  .how {
    padding-bottom: 80px;
  }
}
.how__col {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.how__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
}
.how__title {
  margin: 24px 0 48px;
}
@media (max-width: 990px) {
  .how__title {
    margin-bottom: 24px;
  }
}
.how__wrap {
  margin: 0 auto 96px;
  width: 100%;
  max-width: 1160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1420px) {
  .how__wrap {
    max-width: 1040px;
  }
}
@media (max-width: 1200px) {
  .how__wrap {
    max-width: 960px;
  }
}
@media (max-width: 1020px) {
  .how__wrap {
    padding: 3px 32px 3px 16px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .how__wrap::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 990px) {
  .how__wrap {
    margin-bottom: 48px;
  }
}
.how .how-item {
  flex: 0 0 320px;
  margin-right: clamp(-200px, (100% - 1280px) / 3, 0px);
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 24px;
  border-radius: 100%;
  background: rgba(242, 242, 242, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(242, 242, 242, 0.2);
}
@media (max-width: 1420px) {
  .how .how-item {
    flex: 0 0 260px;
    margin-right: clamp(-200px, (100% - 1120px) / 3, 0px);
  }
}
@media (max-width: 1200px) {
  .how .how-item {
    flex: 0 0 260px;
    margin-right: clamp(-200px, (100% - 1040px) / 3, 0px);
  }
}
@media (max-width: 1020px) {
  .how .how-item {
    margin-right: clamp(-16px, (100% - 1040px) / 3, 0px);
  }
}
.how .how-item__numb {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--brand-white);
}
.how .how-item__text {
  max-width: 205px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: var(--brand-white);
  opacity: 0.4;
}
.how__text {
  margin: 0 auto;
  width: 100%;
  max-width: 440px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: var(--brand-white);
}

.line {
  background: var(--brand-orange);
  overflow: hidden;
}
.line__content {
  display: flex;
  align-items: center;
  -moz-column-gap: 96px;
       column-gap: 96px;
}
@media (max-width: 640px) {
  .line__content {
    -moz-column-gap: 64px;
         column-gap: 64px;
  }
}
.moderators {
  padding: 160px 0 80px;
}
@media (max-width: 640px) {
  .moderators {
    padding-top: 80px;
  }
}
.moderators__title {
  margin: 24px 0 48px;
}
@media (max-width: 640px) {
  .moderators__title {
    margin-bottom: 24px;
  }
}
.moderators .tabs {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 640px) {
  .moderators .tabs {
    align-items: flex-start;
  }
}
.moderators .tabs__nav {
  padding: 4px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  backdrop-filter: blur(10px);
  background: rgba(242, 242, 242, 0.05);
  border-radius: 8px;
}
@media (max-width: 640px) {
  .moderators .tabs__nav {
    width: 100%;
    max-width: 100%;
    overflow-x: scroll;
    justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .moderators .tabs__nav::-webkit-scrollbar {
    display: none;
  }
}
.moderators .tabs__btn {
  padding: 12px 48px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand-white);
  border-radius: 4px;
  transition: background-color 0.5s ease;
  white-space: nowrap;
}
.moderators .tabs__btn.active {
  background-color: var(--brand-orange) !important;
}
@media (hover: hover) {
  .moderators .tabs__btn:hover {
    background-color: rgba(242, 242, 242, 0.1);
  }
}
.moderators .tabs__btn:active {
  background-color: rgba(242, 242, 242, 0.1);
}
.moderators .tabs__body {
  display: none;
  flex-direction: column;
}
.moderators .tabs__body.active {
  display: flex;
}
.moderators .moderators-item__img {
  width: 100%;
  max-width: 100%;
  min-height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 990px) {
  .moderators .moderators-item__img {
    min-height: 420px;
  }
}
@media (max-width: 640px) {
  .moderators .moderators-item__img {
    min-height: 200px;
  }
}
.moderators .moderators-item__wrap {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.moderators .moderators-item__photo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
}
@media (max-width: 990px) {
  .moderators .moderators-item__photo-wrap {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 550px) {
  .moderators .moderators-item__photo-wrap {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
}
.moderators .moderators-item__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.moderators .moderators-item__right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
@media (max-width: 990px) {
  .moderators .moderators-item__right {
    max-width: 390px;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 16px;
  }
}
.moderators .moderators-item__name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  color: var(--brand-white);
}
@media (max-width: 640px) {
  .moderators .moderators-item__name {
    font-size: 20px;
  }
}
.moderators .moderators-item__text {
  width: 100%;
  max-width: 390px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--brand-white);
  opacity: 0.4;
}
@media (max-width: 990px) {
  .moderators .moderators-item__text {
    max-width: 100%;
  }
}

.experts {
  position: relative;
}
.experts .elem-svg {
  position: absolute;
  right: 164px;
  top: 164px;
  width: 600px;
  height: 600px;
  border-radius: 100%;
  background: linear-gradient(180deg, #e25231 32.21%, #e25231 100%);
  filter: blur(200px);
  opacity: 0.6;
}
@media (max-width: 1500px) {
  .experts .elem-svg {
    top: -60px;
    right: -316px;
  }
}
@media (max-width: 1200px) {
  .experts .elem-svg {
    display: none;
  }
}
.experts__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  z-index: 3;
}
.experts__title {
  margin-bottom: 48px;
}
.experts__wrap {
  position: relative;
  margin: 0 auto;
  min-width: 0;
  max-width: 840px;
  width: 100%;
}
.experts__wrapper {
  align-items: stretch;
}
.experts .experts-item {
  padding: 8px;
  display: flex;
  flex-direction: column;
  height: auto;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  background: rgba(242, 242, 242, 0.05);
  overflow: hidden;
  transition: background-color 0.5s ease;
}
@media (max-width: 990px) {
  .experts .experts-item {
    width: 100%;
    max-width: 240px;
  }
}
@media (hover: hover) {
  .experts .experts-item:hover {
    background-color: var(--brand-orange);
  }
}
.experts .experts-item:active {
  background: var(--brand-orange);
}
.experts .experts-item__top {
  position: relative;
  width: 100%;
  min-height: 152px;
}
.experts .experts-item__top svg {
  position: absolute;
  bottom: 0;
  right: -4px;
  z-index: 1;
}
.experts .experts-item__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 96px;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  z-index: 2;
}
.experts .experts-item__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.experts .experts-item__bottom {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 8px;
}
.experts .experts-item__name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--brand-white);
}
.experts .experts-item__position {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--brand-white);
  opacity: 0.4;
}
.experts__btns {
  position: absolute;
  bottom: 0;
  left: calc(100% + 16px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media (max-width: 1200px) {
  .experts__btns {
    position: static;
    margin: 24px auto 0;
    justify-content: center;
  }
}
.experts__btns:has(.swiper-button-lock) {
  display: none;
}
.podcast {
  padding: 80px 0;
}
.podcast__wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}
@media (max-width: 990px) {
  .podcast__wrap {
    max-width: 100%;
  }
}
.podcast__wrap video {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
@media (max-width: 990px) {
  .podcast__wrap video {
    aspect-ratio: 2/1;
    min-height: 200px;
    max-width: 100%;
    aspect-ratio: 736/400;
  }
}
.podcast__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(242, 242, 242, 0.2);
  border-radius: 4px;
  z-index: 3;
}
.podcast__btn.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.geography {
  padding: 80px 0;
}
.geography__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.geography__title {
  margin: 24px 0 48px;
}
@media (max-width: 640px) {
  .geography__title {
    margin-bottom: 24px;
  }
}
.geography__wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 950px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .geography__wrap {
    max-height: 350px;
  }
}
.geography__wrap svg {
  position: absolute;
  width: 850px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.geography__slider {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.geography__wrapper {
  transition-timing-function: linear !important;
}
.geography__slide {
  padding: 12px 0;
  opacity: 0.1;
  transition: opacity 0.5s ease;
}
@media (max-width: 640px) {
  .geography__slide {
    padding: 10px 0;
  }
}
.geography__slide.swiper-slide-active {
  opacity: 0.9;
}
.geography__slide.swiper-slide-prev, .geography__slide.swiper-slide-next {
  opacity: 0.5;
}
.geography__slide .city {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  color: var(--brand-orange);
}
@media (max-width: 640px) {
  .geography__slide .city {
    font-size: 24px;
  }
}

.experience {
  padding: 80px 0;
}
@media (max-width: 640px) {
  .experience {
    padding: 40px 0;
  }
}
.experience__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.experience__title {
  margin-bottom: 48px;
}
@media (max-width: 640px) {
  .experience__title {
    margin-bottom: 24px;
  }
}
.experience__wrap {
  width: 100%;
}
.experience__items {
  position: relative;
  padding: 127px 0;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 117px;
  -moz-column-gap: 250px;
       column-gap: 250px;
}
@media (max-width: 990px) {
  .experience__items {
    padding: 78px 0;
    max-width: 585px;
    -moz-column-gap: 55px;
         column-gap: 55px;
    row-gap: 65px;
  }
}
@media (max-width: 640px) {
  .experience__items {
    padding: 37px 0;
    max-width: 360px;
    -moz-column-gap: 48px;
         column-gap: 48px;
    row-gap: 40px;
  }
}
.experience__items .svg-left,
.experience__items .svg-right {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media (max-width: 990px) {
  .experience__items .svg-left,
  .experience__items .svg-right {
    max-width: 500px;
    height: auto;
  }
}
@media (max-width: 640px) {
  .experience__items .svg-left,
  .experience__items .svg-right {
    max-width: 314px;
  }
}
.experience__items .svg-left {
  right: 100%;
  animation-name: rotate-one;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media (max-width: 990px) {
  .experience__items .svg-left {
    right: calc(100% - 42px);
  }
}
@media (max-width: 640px) {
  .experience__items .svg-left {
    right: calc(100% - 20px);
  }
}
.experience__items .svg-right {
  left: 100%;
  animation-name: rotate-one;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media (max-width: 990px) {
  .experience__items .svg-right {
    left: calc(100% - 42px);
  }
}
@media (max-width: 640px) {
  .experience__items .svg-right {
    left: calc(100% - 20px);
  }
}
@keyframes rotate-one {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.experience__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 170px;
  z-index: 3;
}
@media (max-width: 640px) {
  .experience__item {
    height: 115px;
  }
}
.experience__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 420px;
  height: 420px;
  display: flex;
  z-index: 2;
  border: 1px solid rgba(242, 242, 242, 0.2);
  background: rgba(242, 242, 242, 0.05);
  backdrop-filter: blur(5px);
}
@media (max-width: 990px) {
  .experience__item::before {
    width: 306px;
    height: 306px;
  }
}
@media (max-width: 640px) {
  .experience__item::before {
    width: 216px;
    height: 216px;
  }
}
.experience__item.center {
  grid-column-start: 1;
  grid-column-end: 3;
  z-index: 2;
}
.experience__item.center::before {
  display: none;
}
.experience__item.center .numb {
  font-size: 96px;
  font-weight: 600;
}
@media (max-width: 990px) {
  .experience__item.center .numb {
    font-size: 64px;
  }
}
@media (max-width: 640px) {
  .experience__item.center .numb {
    font-size: 48px;
  }
}
.experience__item.center .mark {
  font-size: 32px;
}
@media (max-width: 640px) {
  .experience__item.center .mark {
    font-size: 20px;
  }
}
@media (max-width: 990px) {
  .experience__item.center svg {
    max-width: 500px;
    height: auto;
  }
}
@media (max-width: 990px) and (max-width: 640px) {
  .experience__item.center svg {
    max-width: 314px;
  }
}
@media (max-width: 990px) {
  .experience__item.center svg.two {
    max-width: 744px;
    height: auto;
  }
}
@media (max-width: 990px) and (max-width: 640px) {
  .experience__item.center svg.two {
    max-width: 375px;
  }
}
.experience__item .numb {
  position: relative;
  z-index: 3;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--brand-white);
}
@media (max-width: 640px) {
  .experience__item .numb {
    font-size: 32px;
  }
}
.experience__item .mark {
  position: relative;
  z-index: 3;
  margin: 12px 0 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: var(--brand-white);
}
@media (max-width: 640px) {
  .experience__item .mark {
    margin-top: 0;
  }
}
.experience__item .text {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 264px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: var(--brand-white);
  opacity: 0.4;
}
@media (max-width: 640px) {
  .experience__item .text {
    font-size: 14px;
  }
}
.experience__item svg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
}
@media (max-width: 990px) {
  .experience__item svg {
    max-width: 286px;
    height: auto;
  }
}
@media (max-width: 640px) {
  .experience__item svg {
    max-width: 196px;
  }
}
.experience__item svg.two {
  z-index: 2;
}

.open-form {
  max-width: 100% !important;
  position: relative;
  padding: 330px 0;
  overflow: hidden;
  background: linear-gradient(224deg, #171b27 0%, #e25331 74.23%, #f2f2f2 100%);
}
@media (max-width: 1500px) {
  .open-form {
    padding: 298px 0;
  }
}
@media (max-width: 1200px) {
  .open-form {
    padding: 134px 0;
  }
}
@media (max-width: 990px) {
  .open-form {
    padding: 96px 0;
  }
}
@media (max-width: 640px) {
  .open-form {
    padding: 140px 0;
  }
}
.open-form svg.bg-svg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.open-form__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  z-index: 2;
}
@media (max-width: 1200px) {
  .open-form__container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 96px;
  }
}
@media (max-width: 990px) {
  .open-form__container {
    row-gap: 48px;
  }
}
@media (max-width: 640px) {
  .open-form__container {
    row-gap: 24px;
  }
}
.open-form__left {
  width: 100%;
  max-width: 775px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 48px;
}
@media (max-width: 1500px) {
  .open-form__left {
    max-width: 604px;
  }
}
@media (max-width: 1200px) {
  .open-form__left {
    max-width: 100%;
  }
}
@media (max-width: 990px) {
  .open-form__left {
    row-gap: 24px;
  }
}
@media (max-width: 640px) {
  .open-form__left {
    row-gap: 12px;
  }
}
@media (max-width: 1200px) {
  .open-form__title {
    text-align: center;
  }
}
.open-form__text {
  width: 100%;
  max-width: 560px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--brand-white);
}
@media (max-width: 1200px) {
  .open-form__text {
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .open-form__text {
    font-size: 16px;
  }
}
.open-form__right {
  position: relative;
  width: 100%;
  max-width: 480px;
}
@media (max-width: 1500px) {
  .open-form__right {
    max-width: 360px;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  backdrop-filter: blur(10px);
  background: rgba(23, 27, 39, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

html.popup-show body::before {
  opacity: 1;
  visibility: visible;
}

.popup {
  position: fixed;
  inset: 0;
  display: flex;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 150;
}
.popup.popup_show {
  transform: translateX(0);
}
.popup__wrapper {
  position: relative;
  margin-left: auto;
  padding: 0 96px;
  width: 100%;
  max-width: 672px;
  height: auto;
  display: flex;
  align-items: center;
  background: var(--brand-dark-blue);
}
@media (max-width: 640px) {
  .popup__wrapper {
    padding: 0 16px;
  }
}
.popup__content {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.popup__close {
  position: absolute;
  top: 48px;
  right: 96px;
  width: 52px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-white);
  border-radius: 8px;
  transition: background-color 0.5s ease;
}
@media (max-width: 640px) {
  .popup__close {
    right: 16px;
    top: 24px;
  }
}
@media (hover: hover) {
  .popup__close:hover {
    background: rgba(242, 242, 242, 0.1);
  }
}
.popup__close:active {
  background: rgba(242, 242, 242, 0.25);
}
.popup__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  color: var(--brand-white);
}
@media (max-width: 640px) {
  .popup__title {
    font-size: 24px;
  }
}
.popup__text {
  margin: 24px 0 48px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: var(--brand-white);
}
@media (max-width: 640px) {
  .popup__text {
    margin: 16px 0 24px;
  }
}
.popup .form .thanks {
  background-color: var(--brand-dark-blue);
}

.err-page {
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}
@media (max-width: 990px) {
  .err-page {
    padding: 0;
  }
}
.err-page__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  z-index: 3;
}
.err-page__numb {
  display: flex;
  align-items: flex-end;
}
.err-page__numb span {
  position: relative;
  margin-bottom: 5px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 128px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--brand-white);
}
.err-page__numb span:first-child {
  right: -20px;
}
.err-page__numb span:last-child {
  left: -20px;
}
@media (max-width: 640px) {
  .err-page__numb {
    margin-bottom: -20px;
    align-items: center;
  }
  .err-page__numb svg {
    max-width: 200px;
  }
  .err-page__numb span {
    font-size: 100px;
  }
}
.err-page__title {
  text-align: center;
}
.err-page__text {
  margin: 8px 0 32px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: var(--brand-white);
}
@media (max-width: 640px) {
  .err-page__text {
    font-size: 14px;
  }
}
.err-page__elem {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  min-width: 1920px;
}

body:has(.err-page) .menu__list {
  display: none !important;
}
body:has(.err-page) .header__burger {
  display: none !important;
}
body:has(.err-page) .header__link {
  margin-right: 0 !important;
}
body:has(.err-page) .footer {
  display: none !important;
}/*# sourceMappingURL=style.css.map */