* {
  padding: 0;
  margin: 0;
  border: 0
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

:active,
:focus {
  outline: 0
}

a:active,
a:focus {
  outline: 0
}

aside,
footer,
header,
nav {
  display: block
}

body,
html {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable
}

button,
input,
textarea {
  font-family: inherit
}

input::-ms-clear {
  display: none
}

input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0
}

button {
  cursor: pointer;
  background-color: transparent
}

button::-moz-focus-inner {
  padding: 0;
  border: 0
}

a {
  display: inline-block
}

a,
a:visited {
  text-decoration: none
}

a:hover {
  text-decoration: none
}

ul li {
  list-style: none
}

img {
  vertical-align: top
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit
}

picture {
  display: block;
  width: 100%;
  height: 100%
}

@font-face {
  font-family: Cinzel;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Cinzel-Regular.woff2) format("woff2")
}

@font-face {
  font-family: Forum;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Forum-Regular.woff2) format("woff2")
}

:root {
  --font-main: "Forum", sans-serif;
  --font-second: "Cinzel", sans-serif;
  --container-width: 1120px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 10px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --background-page: #F4F4F4;
  --main: #000000;
  --black: #000000;
  --white: #ffffff;
  --gray: #EFEFEF;
  --hover: rgba(0, 0, 0, .35);
  --active: #000000
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step)
}

@media (max-width:991px) {
  .container {
    padding: 0 var(--container-step-tablet)
  }
}

@media (max-width:600px) {
  .container {
    padding: 0 var(--container-step-mobile)
  }
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-main);
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--background-page)
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

main:not(:last-child) {
  margin-bottom: 120px
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0)
}

.webp .hero {
  background-image: url(../img/hero.webp)
}

.no-webp .hero {
  background-image: url(../img/hero.jpg)
}

.tt-64-40 {
  font-family: var(--font-second);
  font-weight: 400;
  font-size: 64px;
  line-height: 129%
}

@media (max-width:991px) {
  .tt-64-40 {
    font-size: 52px
  }
}

@media (max-width:600px) {
  .tt-64-40 {
    font-size: 40px
  }
}

.tt-53-32 {
  font-family: var(--font-second);
  font-weight: 400;
  font-size: 53px;
  line-height: 120%
}

@media (max-width:991px) {
  .tt-53-32 {
    font-size: 42px
  }
}

@media (max-width:600px) {
  .tt-53-32 {
    font-size: 32px
  }
}

.tt-37-26 {
  font-family: var(--font-second);
  font-weight: 400;
  font-size: 37px;
  line-height: 130%
}

@media (max-width:991px) {
  .tt-37-26 {
    font-size: 30px
  }
}

@media (max-width:600px) {
  .tt-37-26 {
    font-size: 26px
  }
}

.tt-31-21 {
  font-family: var(--font-second);
  font-weight: 400;
  font-size: 31px;
  line-height: 140%
}

@media (max-width:991px) {
  .tt-31-21 {
    font-size: 26px
  }
}

@media (max-width:600px) {
  .tt-31-21 {
    font-size: 21px
  }
}

.tx-22 {
  font-weight: 400;
  font-size: 22px;
  line-height: 150%
}

.tx-17 {
  font-weight: 400;
  font-size: 17px;
  line-height: 150%
}

.but {
  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;
  padding: 10px 24px;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  color: var(--white);
  background-color: var(--black);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 36px;
  min-width: 204px;
  min-height: 51px;
  -webkit-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out
}

@media (max-width:991px) {
  .but {
    font-size: 18px
  }
}

@media (max-width:600px) {
  .but {
    font-size: 16px
  }
}

@media (any-hover:hover) {
  .but:hover {
    background-color: var(--hover)
  }
}

.but:focus-visible {
  background-color: var(--hover)
}

.but:active {
  background-color: var(--active);
  -webkit-transition-duration: .1s;
  -o-transition-duration: .1s;
  transition-duration: .1s
}

.input {
  display: block;
  padding: 0 24px;
  border-radius: 5px;
  width: 100%;
  min-height: 63px;
  background-color: var(--gray);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--black);
  border: 2px solid transparent;
  -webkit-transition: border-color .3s ease-in-out;
  -o-transition: border-color .3s ease-in-out;
  transition: border-color .3s ease-in-out
}

@media (max-width:991px) {
  .input {
    font-size: 18px;
    min-height: 55px;
    padding: 0 16px
  }
}

@media (max-width:600px) {
  .input {
    font-size: 16px;
    min-height: 50px
  }
}

@media (any-hover:hover) {
  .input:hover {
    border-color: var(--hover)
  }
}

.input:focus-visible {
  border-color: var(--hover)
}

.input::-webkit-input-placeholder {
  opacity: .5;
  color: var(--black)
}

.input::-moz-placeholder {
  opacity: .5;
  color: var(--black)
}

.input:-ms-input-placeholder {
  opacity: .5;
  color: var(--black)
}

.input::-ms-input-placeholder {
  opacity: .5;
  color: var(--black)
}

.input::placeholder {
  opacity: .5;
  color: var(--black)
}

.header {
  padding: 24px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5
}

.header_2 .burger span {
  background-color: var(--white)
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 16px
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--background-page);
  z-index: 100;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: auto;
  -webkit-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out;
  transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out
}

@media (max-width:600px) {
  .header__menu {
    padding: 24px 16px
  }
}

@media (max-width:600px) {
  .header__menu {
    padding: 24px 10px
  }
}

.header__menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible
}

.header__exit-menu {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  background-color: transparent;
  margin-left: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.header__exit-menu:not(:last-child) {
  margin-bottom: 24px
}

.header__exit-menu::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.header__exit-menu::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.nav {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.nav__list {
  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;
  width: 100%;
  height: 100%
}

.nav__item:not(:last-child) {
  margin-bottom: 24px
}

.nav__link {
  color: var(--main);
  -webkit-transition: color .3s ease-in-out;
  -o-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

@media (any-hover:hover) {
  .nav__link:hover {
    color: var(--hover)
  }
}

.nav__link:focus-visible {
  color: var(--hover)
}

.nav__link:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  -o-transition-duration: .1s;
  transition-duration: .1s
}

.burger {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 28px;
  height: 14px;
  background-color: transparent
}

@media (any-hover:hover) {
  .burger:hover span {
    background-color: var(--hover)
  }
}

.burger:focus-visible span {
  background-color: var(--hover)
}

.burger:active span {
  background-color: var(--active);
  -webkit-transition-duration: .1s;
  -o-transition-duration: .1s;
  transition-duration: .1s
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  border-radius: 8px;
  -webkit-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out
}

.burger span:nth-child(2) {
  width: 70%;
  margin-left: auto
}

.hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative
}

.hero:not(:last-child) {
  margin-bottom: 120px
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-width: 50%;
  height: 100%;
  background: rgba(17, 17, 17, .67)
}

@media (max-width:1220px) {
  .hero::before {
    min-width: 70%
  }
}

@media (max-width:768px) {
  .hero::before {
    min-width: 0;
    width: 100%
  }
}

.hero__container {
  position: relative;
  z-index: 2;
  min-height: 721px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px
}

.hero__descr {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 544px;
  flex: 0 1 544px;
  width: 100%
}

.hero__subtitle {
  text-transform: uppercase;
  color: var(--white)
}

.hero__subtitle:not(:last-child) {
  margin-bottom: 8px
}

.hero__title {
  text-transform: uppercase;
  color: var(--white)
}

.hero__title:not(:last-child) {
  margin-bottom: 8px
}

.hero__texts {
  width: 100%;
  max-width: 492px
}

.hero__text {
  color: var(--white)
}

.hero__text:not(:last-child) {
  margin-bottom: 8px
}

.instalaciones:not(:last-child) {
  margin-bottom: 120px
}

.instalaciones__title {
  color: var(--main);
  text-align: center
}

.instalaciones__title:not(:last-child) {
  margin-bottom: 24px
}

.instalaciones__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px 32px
}

.instalaciones__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 352px;
  flex: 0 0 352px;
  position: relative;
  min-height: 334px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px
}

@media (max-width:600px) {
  .instalaciones__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%
  }
}

.instalaciones__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.instalaciones__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 7, 41, 0)), color-stop(250%, #0c061e));
  background: -o-linear-gradient(top, rgba(16, 7, 41, 0) 0, #0c061e 250%);
  background: linear-gradient(180deg, rgba(16, 7, 41, 0) 0, #0c061e 250%);
  z-index: 1
}

.instalaciones__image picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}

.instalaciones__subtitle {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  color: var(--white);
  text-align: center
}

.instalaciones__subtitle:not(:last-child) {
  margin-bottom: 16px
}

.habitaciones:not(:last-child) {
  margin-bottom: 120px
}

.habitaciones__title {
  color: var(--main);
  text-align: center
}

.habitaciones__title:not(:last-child) {
  margin-bottom: 24px
}

.habitaciones__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template: auto/repeat(3, 1fr);
  gap: 24px 32px
}

@media (max-width:991px) {
  .habitaciones__list {
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template: auto/repeat(2, 1fr);
    gap: 24px
  }
}

@media (max-width:600px) {
  .habitaciones__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr
  }
}

.habitaciones__item {
  width: 100%;
  background-color: var(--gray)
}

.habitaciones__image {
  height: 306px;
  width: 100%
}

@media (max-width:600px) {
  .habitaciones__image {
    height: 260px
  }
}

.habitaciones__image picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}

.habitaciones__descr {
  width: 100%;
  padding: 16px
}

@media (max-width:991px) {
  .habitaciones__descr {
    padding: 16px 10px
  }
}

.habitaciones__subtitle {
  color: var(--main)
}

.habitaciones__subtitle:not(:last-child) {
  margin-bottom: 8px
}

.habitaciones__texts {
  width: 100%
}

.habitaciones__text {
  color: var(--main);
  opacity: .5
}

.habitaciones__text:not(:last-child) {
  margin-bottom: 8px
}

.eventos:not(:last-child) {
  margin-bottom: 120px
}

.eventos__title {
  color: var(--main);
  text-align: center
}

.eventos__title:not(:last-child) {
  margin-bottom: 24px
}

.eventos__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 32px 1fr;
  grid-template: auto/repeat(2, 1fr);
  gap: 24px 32px
}

@media (max-width:768px) {
  .eventos__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr
  }
}

.eventos__item {
  width: 100%
}

.eventos__image {
  width: 100%;
  height: 300px
}

.eventos__image:not(:last-child) {
  margin-bottom: 24px
}

.eventos__image picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}

.eventos__descr {
  width: 100%
}

.eventos__subtitle {
  color: var(--main);
  text-align: center
}

.eventos__subtitle:not(:last-child) {
  margin-bottom: 8px
}

.eventos__texts {
  width: 100%
}

.eventos__text {
  color: var(--main);
  text-align: center
}

.eventos__text:not(:last-child) {
  margin-bottom: 8px
}

.footer {
  padding-bottom: 60px
}

.footer__list {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 16px
}

.footer__link {
  text-align: center;
  color: var(--main);
  -webkit-transition: color .3s ease-in-out;
  -o-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

@media (any-hover:hover) {
  .footer__link:hover {
    color: var(--hover)
  }
}

.footer__link:focus-visible {
  color: var(--hover)
}

.footer__link:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  -o-transition-duration: .1s;
  transition-duration: .1s
}

.slots {
  padding: 160px 0 0 0
}

@media (max-width:991px) {
  .slots {
    padding: 140px 0 0 0
  }
}

@media (max-width:600px) {
  .slots {
    padding: 120px 0 0 0
  }
}

.slots__title {
  color: var(--main);
  text-align: center
}

.slots__title:not(:last-child) {
  margin-bottom: 24px
}

.slots__list {
  width: 100%
}

.slots__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 32px 1fr;
  grid-template: auto/repeat(2, 1fr);
  gap: 24px 32px
}

.slots__item:not(:last-child) {
  margin-bottom: 120px
}

@media (max-width:991px) {
  .slots__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr
  }
}

.slots__descr {
  width: 100%;
  margin-top: 16px
}

@media (max-width:991px) {
  .slots__descr {
    margin-top: 0
  }
}

.slots__subtitle {
  color: var(--main);
  text-align: center
}

.slots__subtitle:not(:last-child) {
  margin-bottom: 16px
}

.slots__texts {
  width: 100%
}

.slots__text {
  color: var(--main)
}

.slots__text:not(:last-child) {
  margin-bottom: 16px
}

.slots__images {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 32px 1fr;
  grid-template: auto/repeat(2, 1fr);
  gap: 24px 32px;
  width: 100%
}

@media (max-width:991px) {
  .slots__images {
    gap: 10px
  }
}

.slots__image {
  height: 453px;
  width: 100%
}

@media (max-width:991px) {
  .slots__image {
    height: 350px
  }
}

@media (max-width:600px) {
  .slots__image {
    height: 250px
  }
}

@media (max-width:450px) {
  .slots__image {
    height: 150px
  }
}

.slots__image picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}

.slots__image_2 {
  margin-top: 123px
}

@media (max-width:991px) {
  .slots__image_2 {
    margin-top: 90px
  }
}

@media (max-width:600px) {
  .slots__image_2 {
    margin-top: 60px
  }
}

.slots__image_solo {
  height: 503px
}

@media (max-width:991px) {
  .slots__image_solo {
    height: 400px;
    max-width: 544px;
    margin: 0 auto
  }
}

@media (max-width:600px) {
  .slots__image_solo {
    height: 300px
  }
}

.contacts {
  padding: 160px 0 0 0
}

@media (max-width:991px) {
  .contacts {
    padding: 140px 0 0 0
  }
}

@media (max-width:600px) {
  .contacts {
    padding: 120px 0 0 0
  }
}

.contacts__top {
  width: 100%
}

.contacts__top:not(:last-child) {
  margin-bottom: 24px
}

.contacts__title {
  color: var(--main);
  text-align: center
}

.contacts__title:not(:last-child) {
  margin-bottom: 24px
}

.contacts__texts {
  max-width: 736px;
  width: 100%;
  margin: 0 auto
}

.contacts__text {
  color: var(--main);
  text-align: center
}

.contacts__text:not(:last-child) {
  margin-bottom: 8px
}

.contacts__middle {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px 32px
}

.contacts__middle:not(:last-child) {
  margin-bottom: 120px
}

@media (max-width:991px) {
  .contacts__middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.contacts__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 640px;
  flex: 0 1 640px;
  height: 224px;
  width: 100%
}

@media (max-width:991px) {
  .contacts__image {
    max-width: 640px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin: 0 auto
  }
}

.contacts__image picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}

.contacts__bottom {
  width: 100%
}

.contacts__map {
  width: 100%;
  height: 498px
}

.contacts__map:not(:last-child) {
  margin-bottom: 16px
}

@media (max-width:991px) {
  .contacts__map {
    height: 400px
  }
}

@media (max-width:600px) {
  .contacts__map {
    height: 300px
  }
}

.contacts__map iframe {
  width: 100%;
  height: 100%
}

.contacts__address {
  width: 100%;
  font-style: normal
}

.contacts__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px 24px
}

@media (max-width:1220px) {
  .contacts__info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

.contacts__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  color: var(--main)
}

@media (max-width:1220px) {
  .contacts__info-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
}

@media (max-width:600px) {
  .contacts__info-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center
  }
}

@media (max-width:1220px) {
  .contacts__info-item br {
    display: none
  }
}

.contacts__info-item span {
  opacity: .5;
  padding-top: 3px
}

@media (max-width:1220px) {
  .contacts__info-item span {
    padding-top: 0
  }
}

.contacts__info-item a {
  color: inherit;
  -webkit-transition: color .3s ease-in-out;
  -o-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

@media (any-hover:hover) {
  .contacts__info-item a:hover {
    color: var(--hover)
  }
}

.contacts__info-item a:focus-visible {
  color: var(--hover)
}

.contacts__info-item a:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  -o-transition-duration: .1s;
  transition-duration: .1s
}

.form {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 448px;
  flex: 0 1 448px;
  width: 100%
}

@media (max-width:991px) {
  .form {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: 448px;
    margin: 0 auto
  }
}

.form__inputs {
  width: 100%
}

.form__inputs:not(:last-child) {
  margin-bottom: 16px
}

.form__input:not(:last-child) {
  margin-bottom: 16px
}

.form__button {
  margin-left: auto
}

.terms {
  padding: 160px 0 0 0
}

@media (max-width:991px) {
  .terms {
    padding: 140px 0 0 0
  }
}

@media (max-width:600px) {
  .terms {
    padding: 120px 0 0 0
  }
}

.terms h1 {
  font-size: 42px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 700
}

@media (max-width:991px) {
  .terms h1 {
    font-size: 32px
  }
}

@media (max-width:600px) {
  .terms h1 {
    font-size: 16px
  }
}

.terms h1:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .terms h1:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .terms h1:not(:last-child) {
    margin-bottom: 15px
  }
}

.terms h2 {
  font-size: 36px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 700
}

@media (max-width:991px) {
  .terms h2 {
    font-size: 25px
  }
}

@media (max-width:600px) {
  .terms h2 {
    font-size: 14px
  }
}

.terms h2:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .terms h2:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .terms h2:not(:last-child) {
    margin-bottom: 15px
  }
}

.terms p {
  font-size: 20px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 400
}

@media (max-width:991px) {
  .terms p {
    font-size: 18px
  }
}

@media (max-width:600px) {
  .terms p {
    font-size: 12px
  }
}

.terms p:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .terms p:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .terms p:not(:last-child) {
    margin-bottom: 15px
  }
}

.terms ul:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .terms ul:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .terms ul:not(:last-child) {
    margin-bottom: 15px
  }
}

.terms li {
  font-size: 18px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 400
}

@media (max-width:991px) {
  .terms li {
    font-size: 16px
  }
}

@media (max-width:600px) {
  .terms li {
    font-size: 12px
  }
}

.terms li:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .terms li:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .terms li:not(:last-child) {
    margin-bottom: 15px
  }
}

.popup {
  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;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out;
  transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out;
  height: 100vh
}

.popup.popup-active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  display: none
}

.popup.popup-active.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.popup__close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .9);
  z-index: 1
}

.popup__body {
  position: relative;
  width: 540px;
  background-color: var(--black);
  border-radius: 5px;
  z-index: 2;
  padding: 30px 15px
}

@media (max-width:600px) {
  .popup__body {
    width: 95%;
    padding: 15px 10px
  }
}

.popup__text {
  font-size: 16px;
  line-height: 1.3;
  color: var(--white);
  font-weight: 400;
  text-align: center
}

.popup__text:not(:last-child) {
  margin-bottom: 40px
}

@media (max-width:991px) {
  .popup__text:not(:last-child) {
    margin-bottom: 30px
  }
}

@media (max-width:600px) {
  .popup__text:not(:last-child) {
    margin-bottom: 20px
  }
}

.popup__button {
  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;
  padding: 10px 20px;
  min-width: 169px;
  min-height: 41px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--black);
  border: 2px solid var(--white);
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  margin: 0 auto;
  color: var(--white);
  -webkit-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out
}

@media (any-hover:hover) {
  .popup__button:hover {
    background-color: var(--hover)
  }
}

.popup__button:active {
  background-color: var(--active);
  -webkit-transition-duration: .1s;
  -o-transition-duration: .1s;
  transition-duration: .1s
}