@font-face {
  font-family: "Lato";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Lato-Light.woff2") format("woff2"), url("../fonts/Lato-Light.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Lato-Regular.woff2") format("woff2"), url("../fonts/Lato-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Lato-Bold.woff2") format("woff2"), url("../fonts/Lato-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  font-weight: 800;
  font-style: normal;
  src: url("../fonts/Lato-ExtraBold.woff2") format("woff2"), url("../fonts/Lato-ExtraBold.woff") format("woff");
  font-display: swap;
}
*, :before, :after {
  outline: none !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root { 
  --app-height: 100vh;
  --section-offset: 160px;
  --section-small-offset: 120px;
  --main-color: #DCB288;
  scroll-behavior: auto;
}

::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

::-moz-placeholder {
  opacity: 1;
  -moz-transition: 0.4s;
  transition: 0.4s;
}

:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.4s;
  transition: 0.4s;
}

::-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.4s;
  transition: 0.4s;
}

::placeholder {
  opacity: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #050813;
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

body, html {
  font-size: 16px;
}

body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  background: #0A0F1E url("../img/bg.svg") repeat-y 50% 0;
  font-family: "Lato", sans-serif;
  line-height: 1.5;
  font-weight: 300;
  color: #fff;
}

a {
  text-decoration: underline;
  color: var(--main-color);
}
a:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
}

strong, b {
  font-weight: bold;
}

p, blockquote, ul, ol {
  margin: 0 0 20px;
}

ul, ol {
  padding-left: 1.5em;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
  font-weight: bold;
}

h1, h2 {
  line-height: 1.16;
  font-size: 50px;
}

h3 {
  line-height: 1.25;
  font-size: 32px;
}

h4 {
  line-height: 1.3;
  font-size: 28px;
}

h5 {
  line-height: 1.45;
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 100%;
}

.wrapper {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: var(--app-height);
}
.wrapper:before {
  content: "";
  position: absolute;
  z-index: -10;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(50% 50% at 50% 50%, #17294B, #0A0F1E);
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  width: 100%;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.container {
  width: 1210px;
  margin: 0 auto;
  padding: 0 15px;
}

.img-box {
  position: relative;
}
.img-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.tt-upper {
  text-transform: uppercase;
}

.tt-none {
  text-transform: none;
}

.c-main {
  color: var(--main-color);
}

.m-sect {
  margin: var(--section-offset) 0;
}
.m-sect:first-child {
  margin-top: calc(var(--section-offset) + 30px);
}
.m-sect:last-child {
  margin-bottom: var(--section-small-offset);
}

.mt-sect {
  margin-top: var(--section-offset);
}

.mb-sect {
  margin-bottom: var(--section-offset);
}
.mb-sect:first-child {
  margin-top: calc(var(--section-offset) + 30px);
}
.mb-sect:last-child {
  margin-bottom: var(--section-small-offset);
}

.p-sect {
  padding: var(--section-offset) 0;
}

.pt-sect {
  padding-top: var(--section-offset);
}

.pb-sect {
  padding-bottom: var(--section-offset);
}

[data-animate-item] {
  opacity: 0;
}

[data-children-animate] > * {
  opacity: 0;
}

[data-animate] {
  opacity: 0;
  will-change: transform;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
[data-animate].animated {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

[data-animate=fadeLeft].animated {
  -webkit-animation-name: fadeLeft;
          animation-name: fadeLeft;
}

[data-animate=fadeRight].animated {
  -webkit-animation-name: fadeRight;
          animation-name: fadeRight;
}

[data-animate=fadeDown].animated {
  -webkit-animation-name: fadeDown;
          animation-name: fadeDown;
}

[data-animate=zoomIn].animated {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
            transform: translate3d(100px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
            transform: translate3d(100px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
            transform: translate3d(-100px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
            transform: translate3d(-100px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
            transform: translate3d(0, -100px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
            transform: translate3d(0, -100px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.decor-el {
  position: absolute;
  z-index: -5;
  opacity: 0.2;
  -webkit-animation: spin 130s linear infinite;
          animation: spin 130s linear infinite;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.bg-pattern {
  background: #1b2b4c url("../img/pattern.jpg") repeat top center;
}

.bg-pattern-green {
  background: #003D3C url("../img/pattern-green.jpg") repeat top center;
}

.home-page {
  background-image: url("../img/bg-home.svg");
}
.home-page .header {
  border-bottom-color: transparent;
}
.home-page .header__logo {
  display: none;
}
.home-page .foot-main {
  padding-top: 0;
}
.home-page .foot-main:before {
  display: none;
}

.box {
  padding: 60px;
  border-radius: 14px;
}

.big-txt {
  font-size: 22px;
}

.title {
  margin: 0 auto 60px;
  text-align: center;
}

.title-line {
  margin-bottom: 20px;
  height: 16px;
  background: url("../img/title-line.svg") no-repeat center;
}

.content > :last-child {
  margin-bottom: 0;
}

.btn {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 10px 39px;
  min-height: 70px;
  border: 1px solid var(--main-color);
  border-radius: 100px;
  background: var(--main-color);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.4;
  font-size: 14px;
  color: #fff;
  -webkit-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
}
.btn > span {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.btn > .ic {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  font-size: 20px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.btn > .ic-more {
  font-size: 12px;
}
.btn > .ic-more:last-child {
  margin-left: 2px;
}
.btn:hover {
  background: none;
  color: var(--main-color);
}
.btn:hover > :first-child {
  -webkit-transform: translate(-3px, 0);
      -ms-transform: translate(-3px, 0);
          transform: translate(-3px, 0);
}
.btn:hover > :last-child {
  -webkit-transform: translate(3px, 0);
      -ms-transform: translate(3px, 0);
          transform: translate(3px, 0);
}
.btn._glare:after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  background: #fff;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  opacity: 0.5;
  -webkit-animation: btn-glare 4s infinite;
          animation: btn-glare 4s infinite;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.btn._glare:hover:after {
  opacity: 0;
}
.btn._bd {
  background: none;
  color: var(--main-color);
}
.btn._bd:hover {
  background-color: var(--main-color);
  color: #fff;
}
.btn._small {
  padding: 10px 19px;
  min-height: 50px;
  font-size: 16px;
}
.btn._full {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

@-webkit-keyframes btn-glare {
  0% {
    right: 100%;
    -webkit-transform: skewX(-28deg);
            transform: skewX(-28deg);
  }
  40%, 100% {
    right: -150%;
    -webkit-transform: skewX(-28deg);
            transform: skewX(-28deg);
  }
}

@keyframes btn-glare {
  0% {
    right: 100%;
    -webkit-transform: skewX(-28deg);
            transform: skewX(-28deg);
  }
  40%, 100% {
    right: -150%;
    -webkit-transform: skewX(-28deg);
            transform: skewX(-28deg);
  }
}
.close-btn {
  overflow: hidden;
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  padding: 0;
  border: none;
  border-radius: 0 14px;
  background: #00504B;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  color: #fff;
}
.close-btn:before {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}
.close-btn:hover:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.form-title {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
.form-title > :last-child {
  margin-bottom: 0;
}

.form-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.form-grid .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 30%;
  margin-bottom: 0;
}
.form-grid .form-group._full {
  min-width: 100%;
}
.form-grid .form-group._half {
  min-width: 40%;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group._ic .form-field {
  padding-right: 60px;
}
.form-group._ic .ic {
  pointer-events: none;
  position: absolute;
  z-index: 5;
  top: 35px;
  right: 30px;
  margin-top: -0.5em;
  font-size: 18px;
}

.form-field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  padding: 22px 30px 21px;
  border: none;
  border-radius: 14px;
  background: #34425D;
  line-height: 1.5;
  font-weight: 300;
  font-size: 18px;
  color: #fff;
}
.form-field:focus::-webkit-input-placeholder {
  opacity: 0.5;
}
.form-field:focus::-moz-placeholder {
  opacity: 0.5;
}
.form-field:focus:-ms-input-placeholder {
  opacity: 0.5;
}
.form-field:focus::-ms-input-placeholder {
  opacity: 0.5;
}
.form-field:focus::placeholder {
  opacity: 0.5;
}
.form-field[readonly] {
  cursor: default;
}

select.form-field {
  cursor: pointer;
  padding-right: 55px;
  background-image: url("../img/select.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 30px) 50%;
  text-overflow: ellipsis;
}

option {
  background: #0A0F1E;
}

textarea.form-field {
  resize: none;
}
textarea.form-field:not([rows]) {
  height: 110px;
}

.form-option {
  cursor: pointer;
  position: relative;
  display: inline-block;
  min-height: 30px;
  line-height: 24px;
  font-weight: 300;
  font-size: 16px;
}
.form-option input,
.form-option span:before,
.form-option span:after,
.wpcf7-acceptance label > span::before,
.wpcf7-acceptance label > span::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
}
.form-option input,
.wpcf7-acceptance label input {
  opacity: 0;
}
.form-option input:checked ~ span:after,
.wpcf7-acceptance input:checked ~ span::after {
  opacity: 1;
}
.form-option span,
.wpcf7-acceptance label > span {
  display: block;
  position: relative;
  padding: 2px 0 0 50px;
}
.form-option span:before, .form-option span:after,
.wpcf7-acceptance label > span::before,
.wpcf7-acceptance label > span::after {
  border-radius: 50%;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.form-option span:before,
.wpcf7-acceptance label > span::before {
  content: "";
  border: 1px solid var(--main-color);
}
.form-option span:after,
.wpcf7-acceptance label > span::after {
  text-align: center;
  content: "\e903";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 30px;
  font-size: 12px;
  opacity: 0;
  color: #fff;
}
.form-option a {
  display: inline-block;
  color: inherit;
}

.form-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.form-action__policy {
  width: 100%;
  margin-bottom: 20px;
}
.form-action__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.advant-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}
.advant-icon img {
  max-width: 48px;
  max-height: 48px;
  -webkit-filter: drop-shadow(2px 2px 0 rgba(255, 255, 255, 0.2));
          filter: drop-shadow(2px 2px 0 rgba(255, 255, 255, 0.2));
}
.advant-icon._small {
  width: 52px;
  height: 52px;
}
.advant-icon._small img {
  max-width: 28px;
  max-height: 28px;
}

.sandwich {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: rgba(10, 15, 30, 0.5);
  backdrop-filter: blur(5px);
  color: inherit;
}
.sandwich span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 1px;
  margin-left: -13px;
  border-radius: 1px;
  background: currentColor;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
}
.sandwich span:nth-child(1) {
  -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
          transform: translateY(-8px);
}
.sandwich span:nth-child(3) {
  -webkit-transform: translateY(8px);
      -ms-transform: translateY(8px);
          transform: translateY(8px);
}
.sandwich.active span:nth-child(2) {
  width: 10px;
}

.lang-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: normal;
}
.lang-menu li {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}
.lang-menu li:nth-child(n+2) {
  margin-left: 8px;
  padding-left: 20px;
}
.lang-menu li:nth-child(n+2):after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  border-bottom: 1px solid currentColor;
  opacity: 0.2;
}
.lang-menu span {
  cursor: default;
  opacity: 0.4;
}
.lang-menu a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.lang-menu a:hover {
  color: var(--main-color);
}

.social__grid {
  cursor: default;
  margin: 0 -3px -10px;
}
.social__grid .social-item {
  margin: 0 3px 10px;
}

.social-item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  color: inherit;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.social-item:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: var(--main-color);
  color: #fff;
}
.social-item._bd {
  background: none;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.social-item._bd:hover {
  background-color: var(--main-color);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}
.social-item._big {
  width: 70px;
  height: 70px;
  line-height: 70px;
}

.nav-arrow-prev,
.nav-arrow-next {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  z-index: 10;
  top: 50%;
  margin: -35px 0 0;
  padding: 0;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: none;
  line-height: 68px;
  text-align: center;
  font-size: 18px;
  color: inherit;
  -webkit-transition: opacity 0.15s, color 0.3s, border-color 0.3s, background-color 0.3s;
  transition: opacity 0.15s, color 0.3s, border-color 0.3s, background-color 0.3s;
}
.nav-arrow-prev:hover,
.nav-arrow-next:hover {
  border-color: transparent;
  background-color: var(--main-color);
  color: #fff;
}
.nav-arrow-prev.swiper-button-disabled,
.nav-arrow-next.swiper-button-disabled {
  cursor: default;
  border-color: rgba(255, 255, 255, 0.1);
  background-color: transparent;
  color: #666;
}
.nav-arrow-prev.swiper-button-lock,
.nav-arrow-next.swiper-button-lock {
  display: none !important;
}

.nav-arrow-prev {
  left: 0;
}

.nav-arrow-next {
  right: 0;
}

.nav-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.nav-arrows .nav-arrow-prev,
.nav-arrows .nav-arrow-next {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 40px 0 0;
}

.header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 40px;
  padding: 0 40px;
  height: 89px;
}
.header__col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__col._right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__logo {
  display: inline-block;
  max-width: 180px;
}
.header__logo img {
  display: block;
  max-height: 50px;
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.contact-item:last-child {
  margin-bottom: 0;
}
.contact-item__icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-right: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  color: var(--main-color);
}
.contact-item__descr {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: normal;
  font-size: 12px;
  color: var(--main-color);
}
.contact-item__descr > * {
  margin-bottom: 0;
}
.contact-item__descr a {
  text-decoration: none;
}
.contact-item__descr a:hover {
  text-decoration: underline;
}

.menu-toggle {
  position: fixed;
  z-index: 105;
  top: 45px;
  left: 40px;
  margin-top: -23px;
}

.menu {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 100%;
  width: 380px;
  max-width: 100%;
  -webkit-box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.2);
          box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.2);
  height: var(--app-height);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.menu._show {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.menu__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: var(--app-height);
  padding: 100px 40px 40px;
}
.menu__wrapper > :last-child {
  margin-bottom: 0;
}
.menu__list {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.menu__list a {
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: normal;
  font-size: 14px;
  color: inherit;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.menu__list a:hover, .menu__list a.active {
  color: var(--main-color);
}
.menu__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.menu__list > li:last-child {
  margin-bottom: 0;
}
.menu__list > li > a {
  margin-bottom: -1px;
  max-width: 100%;
  padding-bottom: 19px;
  border-bottom: 1px solid transparent;
}
.menu__list > li > a.active {
  border-bottom-color: var(--main-color);
}
.menu__contacts {
  margin-bottom: 20px;
}
.menu__social {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bann-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.bann-bg .swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bann-bg .swiper-slide {
  overflow: hidden;
  position: relative;
}
.bann-bg .swiper-slide > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #17294B no-repeat center/cover;
  -webkit-transition: -webkit-transform 5s;
  transition: -webkit-transform 5s;
  transition: transform 5s;
  transition: transform 5s, -webkit-transform 5s;
}
.bann-bg .swiper-slide > div:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #17294B;
  opacity: 0.6;
}
.bann-bg .swiper-slide-active > div {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.bann {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 140px 0 340px;
  min-height: var(--app-height);
}
.bann__wrap {
  position: relative;
  z-index: 2;
  width: 440px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.bann__wrap > :last-child {
  margin-bottom: 0;
}
.bann__top {
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: normal;
  font-size: 20px;
  color: var(--main-color);
}
.bann__logo {
  margin-bottom: 20px;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.bann__descr {
  font-weight: 300;
  font-size: 18px;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.bann-advants {
  position: relative;
  padding-top: 1px;
}
.bann-advants .decor-el._left {
  right: 90%;
  bottom: -280px;
}
.bann-advants .decor-el._right {
  left: 84%;
  bottom: 20px;
}
.bann-advants__box {
  position: relative;
  z-index: 5;
  margin-top: -210px;
  padding: 60px 100px;
}
.bann-advants__title {
  margin-bottom: 40px;
  text-align: center;
}
.bann-advants__advants {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -22px -20px;
}
.bann-advants__advant {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 22px 20px;
}
.bann-advants__advant:nth-child(3n+1) {
  width: 31%;
}
.bann-advants__advant:nth-child(3n+2) {
  width: 34%;
}
.bann-advants__advant:nth-child(3n+3) {
  width: 35%;
}
.bann-advants__advant .advant-icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 20px;
}
.bann-advants__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 40px;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.foot-main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  padding: var(--section-small-offset) 0 40px;
}
.foot-main:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(220, 178, 136, 0)), color-stop(rgba(220, 178, 136, 0.4)), to(rgba(220, 178, 136, 0)));
  background: linear-gradient(to right, rgba(220, 178, 136, 0), rgba(220, 178, 136, 0.4), rgba(220, 178, 136, 0));
}
.foot-main__logo {
  display: inline-block;
  max-width: 180px;
}
.foot-main__logo img {
  display: block;
  max-height: 50px;
}
.foot-main__head {
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 2px;
  font-size: 12px;
}

.foot-bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 24px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}
.foot-bot__copy {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin: 0;
}
.foot-bot__dev {
  margin: 0;
}

.about {
  position: relative;
}
.about .decor-el._left {
  right: 86%;
  bottom: 15px;
}
.about .decor-el._right {
  top: 25px;
  left: 86%;
}
.about__title {
  max-width: 760px;
}
.about__descr {
  margin-bottom: 60px;
  text-align: center;
}

.about-benefits-slider {
  overflow: visible;
  position: relative;
  margin: 0 auto 60px;
  padding: 0 20px;
  max-width: 1920px;
}
.about-benefits-slider:last-child {
  margin-bottom: 0;
}

.about-benefit {
  position: relative;
}
.about-benefit__img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 680px;
  border-radius: 14px;
}
.about-benefit__img > span {
  position: absolute;
  z-index: 1;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: no-repeat center/cover;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.about-benefit__img:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgba(23, 41, 75, 0.2);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 15, 30, 0)), to(rgba(10, 15, 30, 0.9)));
  background-image: linear-gradient(to bottom, rgba(10, 15, 30, 0), rgba(10, 15, 30, 0.9));
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.about-benefit__bottom {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 40px 60px;
  text-align: center;
}
.about-benefit__bottom .advant-icon {
  margin: 0 auto 20px;
  backdrop-filter: blur(5px);
}
.about-benefit__content {
  max-width: 400px;
  margin: 0 auto;
  font-size: 18px;
}
.about-benefit__content > * {
  margin-bottom: 10px;
}
.about-benefit__content > *:last-child {
  margin-bottom: 0;
}

.about-advants {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.about-advant {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 30%;
  padding: 40px;
  border-radius: 14px;
  text-align: center;
}
.about-advant:nth-child(odd) {
  background: #1b2b4c url("../img/pattern.jpg") repeat top center;
}
.about-advant:nth-child(even) {
  background: #003D3C url("../img/pattern-green.jpg") repeat top center;
}
.about-advant .advant-icon {
  margin: 0 auto 20px;
}
.about-advant__descr {
  max-width: 280px;
  margin: 0 auto;
  font-size: 18px;
}

.advants {
  position: relative;
}
.advants .decor-el {
  top: 65px;
  left: 84%;
}
.advants__title {
  max-width: 840px;
}
.advants__title p:not(.big-txt) {
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.advants-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 0;
  padding: 0 10px;
}

.advant-item {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
}
.advant-item__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}
.advant-item__main {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 50%;
  padding: 40px;
}
.advant-item__main > :last-child {
  margin-bottom: 0;
}
.advant-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.advant-item__top .advant-icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.advant-item__head {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin: 0;
}
.advant-item__img {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  position: relative;
  border-radius: 14px 0 0 14px;
  background: no-repeat center/cover;
}
.advant-item__img:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgba(23, 41, 75, 0.4);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.advant-item:nth-child(4n+1) .advant-item__img, .advant-item:nth-child(4n+2) .advant-item__img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  border-radius: 0 14px 14px 0;
}

.thanks-links {
  position: relative;
}
.thanks-links .decor-el {
  right: 70%;
  bottom: -180px;
}
.thanks-links._private .decor-el {
  bottom: -70px;
}
.thanks-links__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 14px;
}
.thanks-links__img {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  overflow: hidden;
  position: relative;
  border-radius: 14px 0 0 14px;
  background: url("../img/thanks-links.jpg") center/cover;
}
.thanks-links__img:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgba(23, 41, 75, 0.2);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 15, 30, 0)), to(rgba(10, 15, 30, 0.9)));
  background-image: linear-gradient(to bottom, rgba(10, 15, 30, 0), rgba(10, 15, 30, 0.9));
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.thanks-links__logo {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 60px;
  margin: 0 auto;
  width: 50%;
  max-width: 280px;
}
.thanks-links__main {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 640px;
}
.thanks-links__btns > :nth-child(n+2) {
  margin-top: 20px;
}

.insta-gallery .title {
  max-width: 600px;
}
.insta-gallery__action {
  margin-top: 60px;
  text-align: center;
}
.insta-gallery__action .btn {
  min-width: 300px;
}

.gallery-slider {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(15%, rgba(0, 0, 0, 0.6)), color-stop(50%, #000), color-stop(85%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 15%, #000 50%, rgba(0, 0, 0, 0.6) 85%, rgba(0, 0, 0, 0) 100%);
          mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(15%, rgba(0, 0, 0, 0.6)), color-stop(50%, #000), color-stop(85%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
          mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 15%, #000 50%, rgba(0, 0, 0, 0.6) 85%, rgba(0, 0, 0, 0) 100%);
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.gallery-slider .swiper-slide {
  display: block;
  overflow: hidden;
  position: relative;
  width: 252px;
  max-height: 340px;
  border-radius: 14px;
}
.gallery-slider .swiper-slide > span {
  display: block;
  width: 100%;
  padding-bottom: 135%;
  border-radius: inherit;
  background: no-repeat center/cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.gallery-slider .swiper-slide:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgba(23, 41, 75, 0.2);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.gallery-slider .swiper-slide:hover > span {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.events {
  position: relative;
}
.events .decor-el {
  top: 20px;
  right: 87%;
}

.events-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 0;
  padding: 0 10px;
}

.event-item {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 25%;
  padding: 0 10px;
}
.event-item__wrap {
  cursor: pointer;
  position: relative;
  height: 340px;
}
.event-item__wrap:hover .event-item__img > span {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.event-item__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}
.event-item__img > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: no-repeat center/cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.event-item__img:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgba(23, 41, 75, 0.2);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(10, 15, 30, 0)), to(rgba(10, 15, 30, 0.9)));
  background-image: linear-gradient(to bottom, rgba(10, 15, 30, 0) 50%, rgba(10, 15, 30, 0.9));
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.event-item__bottom {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 40px;
}
.event-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.event-item__top .advant-icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 20px;
}
.event-item__descr {
  margin: 0;
  font-weight: normal;
  font-style: italic;
  font-size: 18px;
}

.events-slider .nav-arrow-prev {
  left: 50%;
  margin-left: -480px;
}
.events-slider .nav-arrow-next {
  right: 50%;
  margin-right: -480px;
}
.events-slider .swiper-slide {
  width: 760px;
  height: auto;
}
.events-slider .event-slide {
  pointer-events: none;
  min-height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.events-slider .swiper-slide-prev .event-slide,
.events-slider .swiper-slide-next .event-slide,
.events-slider .swiper-slide-active .event-slide {
  visibility: visible;
}
.events-slider .swiper-slide-prev .event-slide,
.events-slider .swiper-slide-next .event-slide {
  opacity: 0.2;
}
.events-slider .swiper-slide-active .event-slide {
  pointer-events: all;
  opacity: 1;
}
.events-slider .swiper-slide-active .event-slide__main:before {
  opacity: 1;
}

.event-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.event-slide__img {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 63.15%;
  border-radius: 14px;
  background: no-repeat center/cover;
}
.event-slide__img:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgba(23, 41, 75, 0.2);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.event-slide__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 40px;
  border-radius: 14px;
  background: #161B29;
}
.event-slide__main:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: #003D3C url("../img/pattern-green.jpg") repeat top center;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.event-slide__main > * {
  margin-bottom: 0;
}
.event-slide__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.event-slide__top .advant-icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 20px;
}
.event-slide__head {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin: 0;
}
.event-slide__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--main-color);
}
.event-slide__date .ic {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
}
.event-slide__date > span {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: normal;
  font-size: 12px;
}
.event-slide__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.event-slide__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.order-form {
  position: relative;
}
.order-form .decor-el._left {
  right: 89%;
  bottom: -190px;
}
.order-form .decor-el._right {
  top: 95px;
  left: 71%;
}
.order-form__title {
  margin-bottom: 60px;
  text-align: center;
}
.order-form__title .big-txt {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.order-form__head img {
  max-height: 1.2em;
}
.order-form__list, .order-form__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 40px;
  padding: 0;
  list-style: none;
}
.order-form__list li {
  position: relative;
  padding-left: 1.9em;
  line-height: 1.4;
  font-weight: 600;
  font-size: 22px;
  color: var(--main-color);
}
.order-form__list li:before {
  position: absolute;
  top: 0.1em;
  left: 0;
  content: "\e901";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-size: 1.25em;
}

.gallery {
  position: relative;
}
.gallery .decor-el {
  top: -305px;
  left: 85%;
}
.gallery .title {
  max-width: 930px;
}
.gallery__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.private-price {
  position: relative;
}
.private-price .decor-el {
  top: 330px;
  right: 72%;
}
.private-price__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.private-price__item-boxes {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.private-price__item-box {
  padding: 40px;
  border-radius: 14px;
}
.private-price__item-box:nth-child(n+2) {
  margin-top: 20px;
}
.private-price__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.private-price__item-top .advant-icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 20px;
}
.private-price__item-head {
  margin: 0;
  max-width: 290px;
}
.private-price__item-img {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  position: relative;
  border-radius: 14px;
  background: no-repeat center/cover;
}
.private-price__item-img:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgba(23, 41, 75, 0.2);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.private-price__item:nth-child(n+2) {
  margin-top: 20px;
}
.private-price__item:nth-child(2n) .private-price__item-boxes {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.gastroset-tabs {
  position: relative;
  margin-bottom: 60px;
}
.gastroset-tabs .decor-el {
  right: -220px;
  bottom: -250px;
}
.gastroset-tabs__grid {
  display: -ms-grid;
  display: grid;
  /* -ms-grid-columns: (1fr)[4]; */
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gastroset-tab {
  cursor: pointer;
  position: relative;
  height: 240px;
}
.gastroset-tab__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}
.gastroset-tab__img > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: no-repeat center/cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.gastroset-tab__img:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgba(23, 41, 75, 0.2);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(10, 15, 30, 0)), to(rgba(10, 15, 30, 0.9)));
  background-image: linear-gradient(to bottom, rgba(10, 15, 30, 0) 50%, rgba(10, 15, 30, 0.9));
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.gastroset-tab__bottom {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
}
.gastroset-tab__option {
  position: relative;
  padding-left: 35px;
  min-height: 1.5em;
  line-height: 1.5;
  font-weight: normal;
  font-style: italic;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.gastroset-tab__icon {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.gastroset-tab__icon .ic {
  display: block;
  text-align: center;
  line-height: 20px;
  font-size: 10px;
  opacity: 0;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.gastroset-tab:hover .gastroset-tab__img > span {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.gastroset-tab.active .gastroset-tab__img:after {
  -webkit-box-shadow: inset 0 0 0 1px var(--main-color);
          box-shadow: inset 0 0 0 1px var(--main-color);
}
.gastroset-tab.active .gastroset-tab__option {
  color: var(--main-color);
}
.gastroset-tab.active .gastroset-tab__icon {
  background-color: var(--main-color);
}
.gastroset-tab.active .gastroset-tab__icon .ic {
  opacity: 1;
}

.gastroset-item:nth-child(n+2) {
  display: none;
}
.gastroset-item__img {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-height: 580px;
  border-radius: 14px;
  background: no-repeat center/cover;
}
.gastroset-item__img:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 55%;
}
.gastroset-item__img:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgba(23, 41, 75, 0.2);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.gastroset-item__box {
  position: relative;
  z-index: 2;
  margin: -155px 60px 0 auto;
  max-width: 760px;
}
.gastroset-item__box .content {
  font-size: 18px;
}
.gastroset-item__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.gastroset-item__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.contacts {
  position: relative;
}
.contacts .title {
  max-width: 1070px;
}
.contacts .decor-el {
  top: 125px;
  right: 74%;
}
.contacts__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 14px;
}
.contacts__main {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 500px;
}
.contacts__item:nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.contacts__item-head {
  max-width: 280px;
  margin-bottom: 15px;
  line-height: 1.45;
  font-size: 14px;
}
.contacts__map {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  overflow: hidden;
  position: relative;
  border-radius: 0 14px 14px 0;
}
.contacts__map > div {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}

.vacancy-form {
  position: relative;
}
.vacancy-form .decor-el._left {
  right: 87%;
  bottom: -180px;
}
.vacancy-form .decor-el._right {
  top: -175px;
  left: 87%;
}
.vacancy-form .title {
  max-width: 960px;
}

/* Modals */
.modal-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 41, 75, 0.6);
  backdrop-filter: blur(5px);
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 560px;
  height: var(--app-height);
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.2);
          box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.2);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.modal._show {
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}
.modal .close-btn {
  border-top-right-radius: 0;
}
.modal__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  min-height: var(--app-height);
}
.modal__wrap {
  width: 100%;
}

/* Popups */
.popup {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 760px;
  margin: 30px auto;
  padding: 60px;
  border-radius: 14px;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.popup._big {
  max-width: 1180px;
}

.post-popup .content h2,
.post-popup .content h3 {
  word-wrap: break-word;
}

.tx-popup.popup {
  max-width: 540px;
}

/* Customize plugins */
.mfp-bg {
  background: rgba(23, 41, 75, 0.6);
  backdrop-filter: blur(5px);
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 1;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-container.mfp-inline-holder {
  padding: 0 15px;
}

.mfp-figure:after {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #fff;
}

.mfp-arrow:before {
  display: none;
}

.mfp-title {
  color: #fff;
}

.mfp-iframe-scaler iframe {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mfp-image-holder .close-btn,
.mfp-iframe-holder .close-btn {
  overflow: visible;
  right: 0;
  height: 40px;
  border-radius: 0;
  background: none;
  text-align: right;
  line-height: 40px;
}

.mfp-image-holder .close-btn {
  top: 0;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  width: 100%;
}

.mfp-iframe-holder .close-btn {
  width: auto;
  top: -40px;
}

.air-datepicker {
  --adp-z-index: 5000;
  font-weight: normal;
}

.SumoSelect {
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  text-align: left;
  line-height: 1.5;
  font-weight: 300;
  font-size: 18px;
  color: #fff;
}

.SumoSelect > .CaptionCont {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 22px 55px 0 30px;
  border: none;
  border-radius: 14px;
  background: #34425D;
}
.SumoSelect > .CaptionCont:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -4px;
  width: 12px;
  height: 8px;
  background: url("../img/select.svg") no-repeat center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.SumoSelect > .CaptionCont > span {
  cursor: pointer;
}

.SumoSelect.open > .CaptionCont {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.SumoSelect.open > .CaptionCont:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.SumoSelect:focus > .CaptionCont,
.SumoSelect:hover > .CaptionCont,
.SumoSelect.open > .CaptionCont {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.SumoSelect > .CaptionCont > span {
  padding: 0;
}

.SumoSelect > .CaptionCont > span.placeholder {
  font: inherit;
  color: #fff;
}

.SumoSelect > .CaptionCont > label {
  display: none;
}

.SumoSelect.open .search-txt {
  padding: 0 55px 0 30px;
  background: none;
  height: 100%;
  line-height: 70px;
  color: inherit;
}

.SumoSelect > .optWrapper {
  top: 100% !important;
  border: none;
  border-top: 1px solid rgba(10, 15, 30, 0.3);
  border-radius: 0 0 14px 14px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background: #34425D;
  font-size: 16px;
}

.SumoSelect > .optWrapper > .options,
.SumoSelect > .optWrapper > .options > li.opt:nth-child(n) {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.opt {
  cursor: pointer;
  padding: 11px 30px;
  border-color: rgba(10, 15, 30, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.SumoSelect > .optWrapper > .options li.opt:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.SumoSelect > .optWrapper > .options li.opt.selected {
  background: var(--main-color);
  color: #fff;
}

.SumoSelect > .optWrapper > .options li.opt.disabled:first-child {
  display: none;
}

.SumoSelect > .optWrapper > .options li label {
  white-space: normal;
}

.SumoSelect > .optWrapper.multiple > .options li.opt {
  padding-left: 40px;
  padding-right: 10px;
  background: none;
  font-weight: inherit !important;
  color: #fff !important;
}

.SumoSelect > .optWrapper.multiple > .options li.opt:hover {
  background: rgba(0, 0, 0, 0.04) !important;
}

.SumoSelect .select-all > span,
.SumoSelect > .optWrapper.multiple > .options li.opt span {
  left: 0;
  margin-left: 0;
  width: 40px;
}
.SumoSelect .select-all > span i,
.SumoSelect > .optWrapper.multiple > .options li.opt span i {
  border-color: #e5e5e5;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
}

.SumoSelect .select-all.partial > span i,
.SumoSelect .select-all.selected > span i, .SumoSelect > .optWrapper.multiple > .options li.opt.selected span i {
  background-color: var(--main-color);
}

[class*=ymaps-2-1][class*=-ground-pane] {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.menu__list a:hover, .menu__list .current-menu-item a {
  color: var(--main-color);
}
.menu__list > .current-menu-item > a {
  border-bottom-color: var(--main-color);
}
.lang-menu a {
	padding: 0;
}
.wpml-ls-legacy-list-horizontal {
	padding: 0;
	border: none;
}

.wpml-ls-legacy-list-horizontal a span {
	vertical-align: baseline;
	opacity: 1;
  cursor: pointer;
}

.wpml-ls-legacy-list-horizontal .wpml-ls-current-language a span {
  opacity: 0.4;
}

.bann-advants__advant-descr p:last-child {
	margin: 0;
}

textarea.form-field {
  height: 110px;
}

.wpcf7-response-output {
	display: none;
}
.form-field {
  border: 1px solid #34425D;
}

.wpcf7-not-valid {
	border-color: #c31d1dad;
}

.wpcf7-not-valid-tip {
	display: none;
}
.wpcf7-acceptance input {
	position: absolute;
}

.wpcf7-list-item {
	margin: 0;
}

.bann__descr p:last-child {
  margin-bottom: 0;
}

.etiquette-wrapper .advants__title p:not(.big-txt) {
  max-width: none;
}