@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.eot');
  src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat-Medium.woff') format('woff'), url('../fonts/Montserrat-Medium.ttf') format('truetype'), url('../fonts/Montserrat-Medium.svg#Montserrat-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.eot');
  src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff'), url('../fonts/Montserrat-Regular.ttf') format('truetype'), url('../fonts/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.eot');
  src: url('../fonts/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/Montserrat-SemiBold.woff') format('woff'), url('../fonts/Montserrat-SemiBold.ttf') format('truetype'), url('../fonts/Montserrat-SemiBold.svg#Montserrat-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

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

img,
svg {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  resize: none;
}

select {
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
}

select::-ms-expand {
  /* IE */
  display: none;
}

body {
  font-family: 'Montserrat';
  font-weight: 400;
  min-height: 100vh;
  position: relative;
  font-size: 16px;
  color: #0D1A29;
  line-height: 1.3;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
}

html {
  overflow-x: hidden;
}

.body-block {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.wrapper {
  max-width: 1170px;
  padding: 0 20px;
  margin: 0 auto;
}

.section-title {
  font-size: 50px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.primary-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  border-radius: 10px;
  background: -webkit-linear-gradient(top, #FFE7AA 0%, rgba(211, 188, 131, 0) 100%), #7E5E27;
  background: linear-gradient(180deg, #FFE7AA 0%, rgba(211, 188, 131, 0) 100%), #7E5E27;
  box-shadow: 0px 0px 6px 0px #663E28 inset;
  padding: 18px 0;
  cursor: pointer;
  position: relative;
  text-align: center;
  line-height: 1;
}

.primary-btn::after {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 100%;
  height: 100%;
  background-color: #684D23;
  border-radius: 10px;
  z-index: -1;
}

.primary-btn img {
  display: block;
  margin-left: 3px;
}

.white-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  font-size: 17px;
  font-weight: 500;
  padding: 17px 0;
  background: -webkit-linear-gradient(bottom, #FFF 0%, #FFF 100%), -webkit-linear-gradient(top, #FFF 0%, #F6C23A 100%);
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(180deg, #FFF 0%, #F6C23A 100%);
  stroke-width: 1px;
  stroke: #FFF;
  background-color: #fff;
  color: #0D1A29;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  text-align: center;
  line-height: 1;
}

.white-btn::after {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 100%;
  height: 100%;
  background-color: #A1B8C5;
  border-radius: 10px;
  z-index: -1;
}

.burger {
  display: none;
}

.burger img {
  display: block;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  display: block;
  cursor: pointer;
}

.modal__close img {
  display: block;
}

.modal__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal__form {
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 25px);
  max-width: 600px;
  border-radius: 24px;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
}

.modal__title {
  font-size: 32px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 25px;
}

.modal__btn {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.form {
  padding: 80px 0;
}

.form__main {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form__label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.form__inp {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  margin-bottom: 15px;
  color: #0D1A29;
}

.form__sel {
  margin-bottom: 15px;
  position: relative;
}

.form__sel::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url('../img/icons/arrow-down.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.form__sel select {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  color: #0D1A29;
}

.form__btn {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.header {
  padding: 10px 0;
  background-color: #0D1A29;
  color: #fff;
}

.header__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.header__call {
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.header__call img {
  display: block;
  margin-right: 13px;
}

.header__soc {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.header__soc li:not(:last-child) {
  margin-right: 8px;
}

.header__soc li a {
  display: block;
}

.header__soc li a img {
  display: block;
}

.nav__close {
  display: none;
}

.nav .header__soc {
  display: none;
}

.nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.nav__item:not(:last-child) {
  margin-right: 60px;
}

.nav__link {
  text-transform: uppercase;
  font-size: 14px;
  padding-bottom: 2px;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

.nav__link:hover {
  border-bottom-color: #EBD190;
}

.hero {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('../img/hero-img.webp');
  padding-bottom: 354px;
  padding-top: 105px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.hero-in {
  background-image: url('../img/in-hero-bg.webp');
  color: #0D1A29;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 193px;
  background-image: url('../img/hero-cloud.webp');
  background-size: cover;
  background-position: top;
}

.hero__title {
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 600;
  display: block;
  margin-bottom: 30px;
}

.hero__descr {
  font-weight: 600;
  font-size: 20px;
  max-width: 587px;
  margin-bottom: 28px;
}

.hero__text {
  max-width: 700px;
}

.hero__txt {
  font-size: 18px;
  max-width: 522px;
  margin-bottom: 35px;
}

.hero__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  max-width: 542px;
}

.hero__btn {
  width: calc(50% - 11px);
}

.who {
  padding-top: 150px;
}

.who__img1 {
  position: absolute;
  right: calc(50% + 72px);
  top: -65px;
}

.who__img2 {
  position: absolute;
  left: calc(50% + 110px);
  bottom: 50px;
}

.who__mob {
  display: none;
}

.who__items {
  position: relative;
  padding-bottom: 40px;
  padding-top: 40px;
}

.who__content {
  position: relative;
}

.who__line {
  display: block;
  position: absolute;
  left: 50%;
  height: 100%;
}

.who__item {
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 50px;
  font-size: 18px;
  position: relative;
}

.who__item:nth-child(2) {
  margin-bottom: 170px;
}

.who__item:nth-child(3) {
  padding-left: 156px;
}

.who__item-right {
  padding-left: 36px;
  margin-left: auto;
}

.who__item-left {
  padding-right: 36px;
  margin-right: auto;
}

.who__item-right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50px;
  border: 6px solid #fff;
  outline: 1px solid #695537;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), #695537;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), #695537;
}

.who__item-left::before {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(50%);
      -ms-transform: translateY(-50%) translateX(50%);
          transform: translateY(-50%) translateX(50%);
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50px;
  border: 6px solid #fff;
  outline: 1px solid #695537;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), #695537;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), #695537;
}

.service {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/services-bg.webp);
  border-radius: 70px 70px 0 0;
  padding: 80px 0;
  padding-bottom: 200px;
  position: relative;
  z-index: 2;
}

.service::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 193px;
  background-image: url('../img/hero-cloud.webp');
  background-size: cover;
  background-position: top;
}

.service__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.service__text {
  width: calc(50% - 15px);
  padding: 43px 35px;
  box-sizing: border-box;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(3.5px);
          backdrop-filter: blur(3.5px);
  color: #0D1A29;
}

.service__subtitle {
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.service__descr {
  font-size: 18px;
}

.service__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.service__btn {
  width: 226px;
  margin-top: 17px;
}

.service__cols {
  width: calc(50% - 15px);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.service__col {
  width: calc(50% - 27px);
}

.service__item {
  background-color: #fff;
  padding: 17px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(3.5px);
          backdrop-filter: blur(3.5px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  height: 243px;
  cursor: pointer;
}

.service__item:not(:last-child) {
  margin-bottom: 20px;
}

.service__main {
  background-color: #fff;
  border-radius: 12px;
  position: relative;
  height: 100%;
  box-sizing: border-box;
  padding-bottom: 10px;
  z-index: 2;
}

.service__name {
  color: #0D1A29;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 13px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.service__num {
  display: block;
  position: absolute;
  left: 20px;
  top: 80px;
  font-size: 80px;
  font-weight: 600;
  color: #eee;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: -1;
}

.service__icon {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -12px;
  width: 100px;
  z-index: 2;
}

.service__icon_def,
.service__icon_active {
  display: block;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 100px;
}

.service__icon_def {
  opacity: 1;
}

.service__tr {
  width: 100%;
}

.service__tr path {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.service__item:hover {
  padding: 0;
}

.service__item:hover .service__name {
  font-size: 24px;
  color: #fff;
}

.service__item:hover .service__tr path {
  fill: #fff;
}

.service__item:hover .service__num {
  color: #1b2c40;
}

.service__item:hover .service__main {
  background-color: #0D1A29;
}

.service__item:hover .service__icon_def {
  opacity: 0;
}

.service__item:hover .service__icon_active {
  opacity: 1;
}

.passenger {
  padding-bottom: 60px;
  padding-top: 160px;
}

.passenger__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
  position: relative;
}

.passenger__line {
  position: absolute;
  left: 50%;
  height: 100%;
}

.passenger__item {
  width: calc(50% - 40px);
  margin-left: 20px;
  margin-right: 20px;
}

.passenger__name {
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 24px;
}

.passenger__text {
  font-size: 18px;
}

.vip {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('../img/vip-bg.webp');
  border-radius: 70px 70px 0 0;
  color: #fff;
  padding: 80px 0;
  padding-bottom: 200px;
  position: relative;
  z-index: 10;
}

.vip::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 193px;
  background-image: url('../img/hero-cloud.webp');
  background-size: cover;
  background-position: top;
}

.vip__items {
  max-width: 640px;
}

.vip__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  padding: 25px 0;
  position: relative;
}

.vip__item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: -webkit-linear-gradient(left, rgba(224, 198, 139, 0) 0%, #E0C68B 12.7%, #78664B 91%, #78664B 100%);
  background: linear-gradient(to right, rgba(224, 198, 139, 0) 0%, #E0C68B 12.7%, #78664B 91%, #78664B 100%);
}

.vip__name {
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  display: block;
  width: 100%;
}

.vip__text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  padding-left: 25px;
  box-sizing: border-box;
}

.vip__icon {
  display: block;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  overflow: hidden;
  cursor: pointer;
}

.vip__icon::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 1px solid #EBD190;
}

.vip__icon::after {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  border: 1px solid #EBD190;
  width: calc(100% + 5px);
  height: 100%;
  background-color: #EBD190;
  -webkit-transform: rotate(-45deg) translateY(50%);
      -ms-transform: rotate(-45deg) translateY(50%);
          transform: rotate(-45deg) translateY(50%);
  display: none;
}

.vip__icon.active::after {
  display: block;
}

.vip__descr {
  display: none;
}

.vip__descr.active {
  display: block;
}

.key {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('../img/key-bg.webp');
  border-radius: 70px 70px 0 0;
  color: #fff;
  padding: 80px 0;
  padding-bottom: 200px;
  position: relative;
  z-index: 10;
}

.key__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  font-size: 14px;
  position: relative;
}

.key__items::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 57.47%;
  aspect-ratio: 1;
  background-image: url('../img/icons/key-round.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}

.key__items::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 446px;
  height: 342px;
  background-image: url('../img/icons/key-logo.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.key__col {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.key__item {
  margin-bottom: 45px;
}

.key__col:first-child .key__item:first-child {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
          order: 3;
  max-width: 227px;
}

.key__col:first-child .key__item:nth-child(2) {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
          order: 2;
  max-width: 239px;
}

.key__col:first-child .key__item:last-child {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
          order: 1;
  max-width: 402px;
}

.key__col:last-child .key__item:first-child {
  max-width: 380px;
}

.key__col:last-child .key__item:nth-child(2) {
  max-width: 250px;
  margin-left: auto;
}

.key__col:last-child .key__item:last-child {
  max-width: 250px;
  margin-left: auto;
}

.key__name {
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.air {
  padding-top: 100px;
  position: relative;
  z-index: 2;
}

.air__title {
  margin-bottom: 0;
}

.air__slider {
  padding-left: 70px;
  padding-right: 70px;
  position: relative;
}

.air__slide {
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 4px 40px rgba(5, 19, 53, 0.1));
          filter: drop-shadow(0px 4px 40px rgba(5, 19, 53, 0.1));
  height: unset;
  border-radius: 10px;
}

.air-swiper {
  padding: 60px 2px;
}

.air__img {
  border-radius: 10px;
  height: 277px;
  overflow: hidden;
}

.air__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.air__main {
  padding: 40px 33px 20px 33px;
}

.air-btn-prev,
.air-btn-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  display: block;
}

.air-btn-prev img,
.air-btn-next img {
  display: block;
}

.air-btn-prev {
  left: 0;
}

.air-btn-next {
  right: 0;
}

.air__name {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 25px;
}

.jet {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('../img/jet-bg.webp');
  border-radius: 70px 70px 0 0;
  color: #fff;
  padding: 80px 0;
  padding-bottom: 200px;
  position: relative;
  z-index: 2;
}

.jet::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 193px;
  background-image: url('../img/hero-cloud.webp');
  background-position: top;
  background-size: cover;
}

.jet__slider {
  position: relative;
}

.jet__names {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-bottom: 40px;
}

.jet__name {
  font-size: 20px;
  display: inline-block;
  max-width: 188px;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}

.jet__name.active {
  border-bottom-color: #EBD190;
}

.jet__slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}

.jet__text {
  width: 40.17%;
  background-color: #fff;
  color: #0D1A29;
  box-sizing: border-box;
  padding: 33px;
}

.jet__subtitle {
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 25px;
}

.jet__img {
  width: calc(100% - 40.17%);
  min-height: 427px;
}

.jet__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.jet__txt {
  font-size: 18px;
}

.jet-btn-prev,
.jet-btn-next {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 20px;
  z-index: 11;
}

.jet-btn-prev img,
.jet-btn-next img {
  display: block;
}

.jet-btn-prev {
  left: calc(40.17% - 60px);
}

.jet-btn-next {
  left: calc(40.17% + 18px);
}

.aviation {
  padding-top: 180px;
  padding-bottom: 86px;
  position: relative;
}

.aviation__bg {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.aviation__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-bottom: -20px;
}

.aviation__item {
  width: calc(50% - 15px);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin-bottom: 20px;
}

.aviation__icon {
  display: block;
  margin-right: 30px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.aviation__name {
  font-weight: 600;
  font-size: 18px;
  display: block;
  margin-bottom: 12px;
}

.aviation__descr {
  font-size: 14px;
}

.footer {
  padding: 54px 0;
  background-color: #0D1A29;
  color: #fff;
  margin-top: auto;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 35px;
}

.footer__logo img {
  display: block;
}

.footer__visit {
  display: block;
  font-size: 14px;
}

.footer__info {
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.footer__soc {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.footer__soc li:not(:last-child) {
  margin-right: 7px;
}

.footer__soc li a {
  display: block;
}

.footer__soc li a img {
  display: block;
}

.footer__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.footer__center {
  max-width: 392px;
}

.alert {
  padding: 50px 0;
}

.alert__content {
  background-color: #0D1A29;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  border-radius: 10px;
  padding: 45px 35px;
  position: relative;
}

.alert__icon {
  display: block;
  margin-right: 35px;
}

.alert__arrow {
  display: block;
  position: absolute;
  right: -2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  height: calc(100% + 2px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

.alert__arrow-mob {
  display: none;
}

.alert__text {
  width: 65%;
}

@media screen and (max-width: 1100px) {
  .section-title {
    font-size: 40px;
    margin-bottom: 35px;
  }

  .header__soc {
    display: none;
  }

  .header__call {
    margin-left: auto;
  }

  .header__call span {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0D1A29;
    z-index: 10;
    box-sizing: border-box;
    padding-top: 60px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }

  .nav.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__close {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    margin-bottom: 35px;
  }

  .nav__item {
    text-align: center;
  }

  .nav__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 25px;
  }

  .nav .header__soc {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }

  .burger {
    display: block;
  }

  .hero__title {
    font-size: 50px;
  }

  .hero__text {
    max-width: 600px;
  }

  .who {
    padding: 30px 0;
    overflow: hidden;
  }

  .who__item {
    margin-right: auto;
    margin-left: unset;
    padding-left: 35px;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
    margin-bottom: 40px;
  }

  .who__item:nth-child(3) {
    padding-left: 35px;
  }

  .who__item:nth-child(2) {
    margin-bottom: 55px;
  }

  .who__item-right::before {
    left: 7px;
  }

  .who__item-left::before {
    left: 7px;
    right: unset;
    -webkit-transform: translateY(-50%) translateX(-50%);
        -ms-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }

  .who__img1,
  .who__img2 {
    display: none;
  }

  .who__mob {
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: unset;
    bottom: 0;
  }

  .who__content {
    padding-bottom: 827px;
  }

  .who__items {
    padding: 20px 0;
  }

  .who__line {
    height: calc(100% - 890px);
    left: 7px;
  }

  .service__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .service__text {
    width: 100%;
    max-width: 480px;
  }

  .service__cols {
    width: 100%;
    max-width: 750px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .service__col {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }

  .service__item {
    width: calc(100% / 12 * 4 - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

  .passenger {
    overflow: hidden;
    padding-top: 40px;
  }

  .passenger__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    margin-bottom: -40px;
  }

  .passenger__items svg {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    top: -4%;
  }

  .passenger__item {
    width: calc(100% - 40px);
    text-align: center;
    margin-bottom: 40px;
  }

  .jet__name {
    width: calc(100% / 12 * 4 - 10px);
    max-width: unset;
    margin-bottom: 30px;
    font-size: 18px;
  }

  .jet__names {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    text-align: center;
  }

  .footer__center {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .footer__soc {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
}

@media screen and (max-width: 950px) {
  .jet__names {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }

  .jet__name {
    width: unset;
  }

  .jet__name br {
    display: none;
  }

  .jet-btn-prev,
  .jet-btn-next {
    display: none;
  }

  .jet__slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .jet__text,
  .jet__img {
    width: 100%;
  }

  .jet__text {
    text-align: center;
  }

  .jet__img {
    height: 295px;
    min-height: unset;
  }

  .aviation {
    padding-top: 100px;
  }

  .aviation__item {
    width: 100%;
  }

  .key__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    padding-left: 45px;
  }

  .key__items::before {
    display: none;
  }

  .key__items::after {
    width: 1px;
    background-color: #EBD190;
    height: calc(100% + 88px);
    left: 15px;
    top: unset;
    bottom: 0;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
  }

  .key__item {
    width: 100%;
    max-width: unset !important;
    position: relative;
  }

  .key__item::before {
    content: '';
    position: absolute;
    right: calc(100% + 14px);
    top: 0;
    display: block;
    width: 32px;
    height: 32px;
    background-image: url('../img/icons/key-item-round.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50px;
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  .service__cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }

  .service__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    max-width: 300px;
  }

  .service__col:not(:last-child) {
    margin-bottom: 20px;
  }

  .service__item {
    width: 100%;
    height: unset;
  }

  .service__text {
    text-align: center;
    padding: 20px 10px;
  }

  .service__btns {
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }

  .service__subtitle {
    font-size: 18px;
  }

  .service__descr {
    font-size: 16px;
  }

  .alert__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    text-align: center;
    padding-bottom: 45.2vw;
  }

  .alert__icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .alert__text {
    width: 100%;
  }

  .alert__arrow {
    display: none;
  }

  .alert__arrow-mob {
    display: block;
    position: absolute;
    bottom: -10px;
    left: -2px;
    width: calc(100% + 4px);
    max-width: unset;
  }
}

@media screen and (max-width: 600px) {
  .section-title {
    font-size: 35px;
  }

  .header__logo {
    max-width: 170px;
  }

  .header__call {
    width: 24px;
    margin-right: auto;
  }

  .header__call img {
    margin-right: 0;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 188px;
  }

  .hero__text {
    text-align: center;
  }

  .hero__descr {
    font-size: 18px;
  }

  .hero__txt {
    font-size: 18px;
  }

  .hero__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }

  .hero__btn {
    width: 100%;
    max-width: 320px;
  }

  .hero__btn:not(:last-child) {
    margin-bottom: 25px;
  }

  .hero__title {
    font-size: 40px;
  }

  .modal__title {
    font-size: 24px;
  }

  .passenger {
    padding-top: 0;
  }

  .passenger__name {
    font-size: 18px;
  }

  .passenger__text {
    font-size: 16px;
  }

  .vip__name {
    font-size: 18px;
  }

  .vip__descr {
    font-size: 16px;
  }

  .vip__icon {
    -webkit-transform: rotate(45deg) translateY(-5px);
        -ms-transform: rotate(45deg) translateY(-5px);
            transform: rotate(45deg) translateY(-5px);
  }

  .air {
    overflow: hidden;
    padding-bottom: 40px;
  }

  .air-swiper {
    overflow: unset;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .air__slider {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 50px;
  }

  .air-btn-prev,
  .air-btn-next {
    top: unset;
    bottom: 0;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
  }

  .air-btn-prev {
    left: calc(50% - 60px);
  }

  .air-btn-next {
    right: calc(50% - 60px);
  }

  .jet__subtitle {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .jet__txt {
    font-size: 16px;
  }

  .jet__text {
    padding: 30px 20px;
  }

  .aviation {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .aviation__bg {
    display: none;
  }

  .aviation__icon {
    position: absolute;
    left: 0;
    top: 8px;
  }

  .aviation__item {
    position: relative;
  }

  .aviation__name {
    padding-left: 98px;
    min-height: 90px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }
}