@charset "UTF-8";
:root {
  --error: #BE0000;
  --success: #20aea4;
  --white: #fff;
  --black: #000;
  --opacity-black: rgba(0,0,0,.7);
  --grey-faq: #2c2c2c;
  --grey-link: #a3a3a3;
  --grey-lang: #606060;
  --grey-input: #636363;
  --transparent: rgba(255,255,255,0);
  --gradient-description: linear-gradient(90deg, #414141 1.76%, rgba(35, 35, 35, 0) 100%);
  --gradient-border: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.39) 55.03%, rgba(255,255,255,0) 100%);
  --14-fonts: .729166vw;
  --15-fonts: .78125vw;
  --16-fonts: .83334vw;
  --18-fonts: .9375vw;
  --btn-fonts: .9375vw;
  --20-fonts: 1.04167vw;
  --24-fonts: 1.25vw;
  --30-fonts: 1.5625vw;
  --40-fonts: 2.083334vw;
  --60-fonts: 3.125vw;
  --width: 67.4%;
}

body {
  width: 100%;
  line-height: 1;
  color: var(--white);
  font-style: normal;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: var(--16-fonts);
  background-color: var(--black);
  background-image: url(img/bg-all-twox.jpg);
  background-position: center top 76vh;
  background-size: cover;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

section {
  overflow-x: hidden;
}

h1 {
  width: 100%;
  font-weight: 300;
  line-height: 1.3333333333;
  font-size: var(--60-fonts);
}

h2 {
  width: 100%;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.005em;
  font-size: var(--40-fonts);
}

h3 {
  width: 100%;
  font-size: var(--30-fonts);
}

h4 {
  width: 100%;
  font-size: var(--20-fonts);
}

h5 {
  width: 100%;
  line-height: 1.625;
  font-size: var(--24-fonts);
}

.wrapper {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: var(--width);
  width: 100%;
}

section > .picture {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
section > .picture img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}
section > .picture:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.btn {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  max-width: 10.417vw;
  padding: 1.042vw 1vw;
  width: 100%;
  color: var(--black);
  font-size: var(--btn-fonts);
  border: 0.05vw solid var(--white);
  background: var(--transparent);
  transition: 0.3s all;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: calc(100% - 0.5vw);
  height: calc(100% - 0.5vw);
  background: var(--white);
  border: 0.05vw solid var(--white);
  transform: translate(-50%, -50%);
  transition: 0.3s all;
}
.btn:hover {
  color: var(--white);
  background: var(--transparent);
}
.btn:hover:before {
  background: var(--transparent);
}
.btn.big {
  max-width: 20vw;
}

.checkbox {
  cursor: pointer;
  position: relative;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 0.3vw 0 1vw;
  z-index: 2;
}
.checkbox > input {
  pointer-events: none;
  width: 0;
  height: 0;
  font-size: 0;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
  overflow: hidden;
}
.checkbox span {
  pointer-events: all;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 0 0.8vw 0 0;
  width: 1.042vw;
  height: 1.042vw;
  border: 0.05vw solid var(--grey-input);
}
.checkbox span:before {
  pointer-events: none;
  position: absolute;
  content: "";
  width: 1.042vw;
  height: 1.042vw;
  background: rgba(0, 0, 0, 0);
  background: url(img/icon-check.svg) center no-repeat;
  background-size: 70% auto;
  transition: 0.3s all;
  opacity: 0;
}
.checkbox.error_input span {
  border: 0.05vw solid var(--error);
}
.checkbox > p {
  pointer-events: all;
  position: relative;
  font-size: var(--14-fonts);
}
.checkbox > p a {
  margin: 0 0 0 5px;
  text-decoration: underline;
}
.checkbox > p a:hover {
  text-decoration: none;
}
.checkbox > input:checked + span:before {
  opacity: 1;
}

.mob-img, .pc-img, .tab-img {
  display: none;
}

.header {
  position: relative;
  padding: 1.05vw 0;
  width: 100%;
  font-weight: 300;
  z-index: 5;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
.header:after {
  pointer-events: none;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 1px;
  height: 0.09vw;
  background: var(--gradient-border);
}

.logo {
  width: 10.3vw;
}
.logo img {
  width: 100%;
  height: auto;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  margin: 0 1.9vw 0 0;
  width: 38.3vw;
  letter-spacing: 0.05em;
}
.menu-btn {
  display: none;
}
.menu .mail {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 0 0 1.2vw;
}
.menu .mail img {
  margin: 0 0.65vw 0 0;
  width: 1.3vw;
}
.menu .mail span {
  position: relative;
}
.menu .mail span:after {
  pointer-events: none;
  position: absolute;
  content: "";
  bottom: -0.1vw;
  left: 0;
  width: 100%;
  height: 0.05vw;
  min-height: 1px;
  background: var(--transparent);
  transition: 0.3s all;
  background: var(--white);
}
.menu .mail span:hover:after {
  background: var(--transparent);
}
.menu .message {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  margin: 0 0 1vw 0.2vw;
}
.menu .message a {
  margin: 0 0.5vw;
}
.menu .message a img {
  opacity: 1;
  transition: 0.3s all;
}
.menu .message a img:hover {
  opacity: 0.7;
}
.menu .message a:first-child img {
  width: 1.065vw;
  height: auto;
}
.menu .message a:nth-child(2) img {
  width: 0.956vw;
  height: auto;
}
.menu .message a:last-child img {
  width: 1.27vw;
  height: auto;
}
.menu .callback {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-direction: column;
}
.menu .callback p {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 0 0 0.2vw;
  font-weight: 500;
  letter-spacing: 0em;
}
.menu .callback p img {
  margin: 0.2vw 0.8vw 0 0;
  width: 1.1vw;
  height: auto;
}
.menu .callback a {
  position: relative;
  margin: 0 0 0.35vw 0.5vw;
}
.menu .callback a:after {
  pointer-events: none;
  position: absolute;
  content: "";
  bottom: -0.1vw;
  left: 0;
  width: 100%;
  height: 0.05vw;
  min-height: 1px;
  background: var(--transparent);
  transition: 0.3s all;
}
.menu .callback a:hover:after {
  background: var(--white);
}

.lang {
  margin: 0 0 1.5vw;
  width: 5.18vw;
}
.lang ul {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  width: 100%;
}
.lang ul li {
  pointer-events: none;
  position: relative;
}
.lang ul li a {
  pointer-events: all;
  font-weight: 300;
  color: var(--grey-lang);
  text-transform: uppercase;
  transition: 0.3s all;
}
.lang ul li:not(:last-child):after {
  pointer-events: none;
  position: absolute;
  content: "";
  content: "/";
  top: 50%;
  right: -0.5vw;
  color: var(--grey-lang);
  transform: translateY(-50%);
}
.lang ul li:hover a, .lang ul li.active a {
  color: var(--white);
}
.lang ul li.active a {
  pointer-events: none;
}

.main {
  position: relative;
  width: 100%;
  height: 93.7vh;
  background-color: var(--black);
  overflow: hidden;
}
.main:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 50%;
  left: -45%;
  min-width: 1880px;
  width: 100vw;
  min-height: 1880px;
  height: 100vw;
  background: radial-gradient(38.04% 38.04% at 51.38% 45.65%, rgba(69, 69, 69, 0.98) 2.41%, rgba(0, 0, 0, 0) 100%);
  transform: translateY(-50%);
  z-index: 3;
}
.main:after {
  pointer-events: none;
  position: absolute;
  content: "";
  bottom: 3vw;
  right: 0;
  width: 12.6567vw;
  height: 27.24vw;
  background-image: url(img/bg-main-right-twox.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
}
.main > .wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-content: flex-end;
  align-items: flex-end;
  height: 100%;
}
.main .left {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
  padding: 0 0 2.45vw;
  width: 75%;
  align-self: flex-start;
  z-index: 3;
}
.main .left h1 {
  letter-spacing: 0.015em;
}
.main .left .description {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 3.15vw 0 0;
  width: 65.4%;
}
.main .left .description .item {
  margin: 0 0 3.7vw;
  width: 53%;
}
.main .left .description .item h4 {
  font-weight: 500;
}
.main .left .description .item:first-child {
  width: 45%;
}
.main .left .description .item:nth-child(3) {
  width: 60%;
}
.main .left .description .item > * {
  width: 100%;
}
.main .left .description .item p {
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 1vw 0 0;
  font-weight: 300;
  color: var(--grey-link);
  font-size: var(--18-fonts);
}
.main .left .description .item p > * {
  cursor: pointer;
  pointer-events: all;
}
.main .left .description .item p img {
  margin: 0 0 0 0.5vw;
  padding: 0.5vw;
  width: 4vw;
  height: auto;
  transform: rotate(180deg);
  transition: 0.3s all;
}
.main .left .description .item p:hover img {
  margin: 0 0 0 0.65vw;
}
.main .left .description .item:nth-last-child(-n+3), .main .left .description .item:last-child {
  margin: 0;
}
.main .left .description .block-btn {
  display: flex;
  justify-content: flex-end;
  align-content: flex-end;
  align-items: flex-end;
  margin: 0 0 0.45vw;
  width: 40%;
  align-self: flex-end;
}
.main .left .all-lang {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 8.2vw 0 0;
  width: 100%;
  font-weight: 500;
  font-size: var(--20-fonts);
}
.main .left .all-lang .lang {
  margin: 0 0 0 0.2vw;
}
.main .left .all-lang .lang li:not(:last-child) {
  margin: 0 0.85vw 0 0;
}
.main .right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
  background: var(--black);
  z-index: 2;
}
.main .right .picture {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main .right .picture img {
  position: absolute;
  bottom: 0;
  right: -2.4vw;
  width: auto;
  height: 95%;
}

.hotel {
  position: relative;
  padding: 6.25vw 0;
  width: 100%;
}
.hotel .options {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.hotel .options .margin-x-y {
  min-width: 28px;
  width: 1.2vw;
}
.hotel .options .height {
  min-width: 50px;
  width: 0.9vw;
}
.hotel .block-btn {
  display: flex;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  margin: 1.3vw 0 0;
  width: 100%;
}
.hotel .hotel__grid {
  display: grid;
  width: 100%;
  /* Будет создано 4 колонки */
  grid-template-columns: repeat(12, 4.221vw);
  /* Будет создано 7 ряда */
  grid-template-rows: 6.305367vw 15.94581vw 15.94581vw 2.9355567136vw 2.9355567136vw 2.9355567136vw;
  /* Автоматическое размещение в ряд */
  grid-auto-flow: row dense;
  /* Отступы между ячейками */
  gap: 1.459vw;
  transition: 0.3s all;
  overflow: hidden;
}
.hotel .hotel__grid.more-item {
  grid-template-rows: 6.305367vw 15.94581vw 15.94581vw 2.9355567136vw 2.9355567136vw 2.9355567136vw 15.9458051vw 10.422vw 18.65555vw;
}
.hotel .hotel__grid-item {
  position: relative;
  overflow: hidden;
  transition: 0.3s all;
}
.hotel .hotel__grid-item.show-more-item {
  display: none;
}
.hotel .hotel__grid-item__content {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hotel .hotel__grid-item__content .popup-fade {
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.hotel .hotel__grid-item__content h2 {
  padding: 0 1vw 0 4.3vw;
}
.hotel .hotel__grid-item__content .picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hotel .hotel__grid-item__content .picture img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  width: auto;
  transform: translate(-50%, -50%);
  filter: grayscale(0%);
  transition: 0.3s all;
}
.hotel .hotel__grid-item__content .picture:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: 0.3s all;
  z-index: 2;
}
.hotel .hotel__grid-item__content .picture.grey:after {
  background: rgba(0, 0, 0, 0.3);
}
.hotel .hotel__grid-item__content .picture.dark:after {
  background: rgba(0, 0, 0, 0.4);
}
.hotel .hotel__grid-item__content h3 {
  position: absolute;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
  z-index: 3;
}
.hotel .hotel__grid-item__content > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: var(--30-fonts);
  transform: translate(-50%, -50%);
  z-index: 3;
}
.hotel .hotel__grid-item:hover img {
  filter: grayscale(100%);
}
.hotel .hotel__grid-item:hover picture:after {
  background: rgba(0, 0, 0, 0.5);
}
.hotel .hotel__grid-item:nth-child(1) {
  grid-area: item_one;
  grid-column-start: 4;
  grid-column-end: 13;
  grid-row-start: 1;
  grid-row-end: 2;
}
.hotel .hotel__grid-item:nth-child(2) {
  grid-area: item_two;
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 3;
}
.hotel .hotel__grid-item:nth-child(3) {
  grid-area: item_three;
  grid-column-start: 4;
  grid-column-end: 7;
  grid-row-start: 2;
  grid-row-end: 3;
}
.hotel .hotel__grid-item:nth-child(4) {
  grid-area: item_four;
  grid-column-start: 7;
  grid-column-end: 13;
  grid-row-start: 2;
  grid-row-end: 3;
}
.hotel .hotel__grid-item:nth-child(5) {
  grid-area: item_five;
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 3;
  grid-row-end: 4;
}
.hotel .hotel__grid-item:nth-child(6) {
  grid-area: item_six;
  grid-column-start: 4;
  grid-column-end: 7;
  grid-row-start: 3;
  grid-row-end: 4;
}
.hotel .hotel__grid-item:nth-child(7) {
  grid-area: item_seven;
  grid-column-start: 7;
  grid-column-end: 10;
  grid-row-start: 3;
  grid-row-end: 4;
}
.hotel .hotel__grid-item:nth-child(8) {
  grid-area: item_eight;
  grid-column-start: 10;
  grid-column-end: 13;
  grid-row-start: 3;
  grid-row-end: 4;
  grid-row-end: 6;
}
.hotel .hotel__grid-item:nth-child(9) {
  grid-area: item_nine;
  grid-column-start: 5;
  grid-column-end: 10;
  grid-row-start: 4;
  grid-row-end: 7;
}
.hotel .hotel__grid-item:nth-child(10) {
  grid-area: item_ten;
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 4;
  grid-row-end: 7;
}
.hotel .hotel__grid-item:nth-child(11) {
  grid-area: item_eleven;
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 7;
  grid-row-end: 6;
  grid-row-end: 8;
}
.hotel .hotel__grid-item:nth-child(12) {
  grid-area: item_twelve;
  grid-column-start: 4;
  grid-column-end: 10;
  grid-row-start: 7;
  grid-row-end: 8;
}
.hotel .hotel__grid-item:nth-child(13) {
  grid-area: item_thirteen;
  grid-column-start: 10;
  grid-column-end: 13;
  grid-row-start: 7;
  grid-row-end: 8;
}
.hotel .hotel__grid-item:nth-child(14) {
  grid-area: item_fourteen;
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 8;
  grid-row-end: 10;
}
.hotel .hotel__grid-item:nth-child(15) {
  grid-area: item_fifteen;
  grid-column-start: 4;
  grid-column-end: 8;
  grid-row-start: 8;
  grid-row-end: 9;
}
.hotel .hotel__grid-item:nth-child(16) {
  grid-area: item_sixteen;
  grid-column-start: 8;
  grid-column-end: 13;
  grid-row-start: 8;
  grid-row-end: 9;
}
.hotel .hotel__grid-item:nth-child(17) {
  grid-area: item_seventeen;
  grid-column-start: 4;
  grid-column-end: 10;
  grid-row-start: 9;
  grid-row-end: 10;
}
.hotel .hotel__grid-item:nth-child(17) h3 {
  font-size: var(--24-fonts);
  line-height: 1.5;
}
.hotel .hotel__grid-item:nth-child(18) {
  grid-area: item_eighteen;
  grid-column-start: 10;
  grid-column-end: 13;
  grid-row-start: 9;
  grid-row-end: 10;
}
.hotel .hotel__grid-item:nth-child(19) {
  display: flex;
  grid-column: 3 span;
  grid-row: 1 span;
  justify-content: flex-start;
}
.hotel .hotel__grid-item:nth-child(19) .btn {
  position: relative;
  max-height: 100%;
  max-width: unset;
  width: auto;
  flex-grow: 1;
}
.hotel .hotel__grid-item:nth-child(19) .btn span {
  position: relative;
}
.hotel .hotel__grid-item:nth-child(19) .btn span:after {
  position: relative;
  content: "Alles zeigen";
}
.hotel .hotel__grid-item:nth-child(19) .btn.ru span:after {
  content: "Показать все";
}
.hotel .hotel__grid-item:nth-child(19) .btn.ua span:after {
  content: "Показати все";
}
.hotel .hotel__grid.more-item .hotel__grid-item:nth-child(8) {
  grid-row-end: 7;
}
.hotel .hotel__grid.more-item .hotel__grid-item:nth-child(19) {
  grid-column: 13 span;
  justify-content: center;
}
.hotel .hotel__grid.more-item .hotel__grid-item:nth-child(19) .btn {
  max-width: 15.625vw;
}
.hotel .hotel__grid.more-item .hotel__grid-item:nth-child(19) .btn span:after {
  content: "Ausblenden";
}
.hotel .hotel__grid.more-item .hotel__grid-item:nth-child(19) .btn.ru span:after {
  content: "Свернуть";
}
.hotel .hotel__grid.more-item .hotel__grid-item:nth-child(19) .btn.ua span:after {
  content: "Згорнути";
}

.taxi {
  position: relative;
  padding: 5.4vw 0 6.25vw;
  width: 100%;
}
.taxi .wrapper {
  position: relative;
  z-index: 2;
}
.taxi .content {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 2.4vw 0 0;
  width: 100%;
}
.taxi .content .item {
  padding: 0.8vw 1vw;
  margin: 0 0 1.1vw;
  width: 50%;
  font-size: var(--18-fonts);
  background: var(--gradient-description);
}
.taxi .block-btn {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 0.5vw 0 0;
  width: 100%;
}

.agency {
  position: relative;
  padding: 5.4vw 0 5.3vw;
  width: 100%;
  overflow: hidden;
}
.agency .content {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 1.8vw 0 0;
  width: 100%;
}
.agency .content .item {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 2.5vw;
  width: 100%;
}
.agency .content .item:last-child {
  margin: 0;
}
.agency .content .item:nth-child(2n) .description {
  order: 2;
}
.agency .content .item:nth-child(2n) .picture {
  display: flex;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  order: 1;
}
.agency .content .item > .picture {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  order: 2;
  width: 41%;
}
.agency .content .item > .picture .picture {
  position: relative;
}
.agency .content .item > .picture .picture img {
  position: relative;
  left: 0;
  min-width: 100%;
  width: initial;
  height: initial;
}
.agency .content .item > .picture .picture:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.agency .content .item .description {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  order: 1;
  width: 57%;
}
.agency .content .item .description h4 {
  position: relative;
  padding: 0 0 1vw;
  line-height: 1.75;
  letter-spacing: 0.01em;
}
.agency .content .item .description h4:after {
  pointer-events: none;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 56.5%;
  height: 0.05vw;
  min-height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.agency .content .item .description ul {
  padding: 1vw 0 0 1.2vw;
  width: 100%;
  line-height: 2.185;
}
.agency .content .item .description ul li {
  position: relative;
}
.agency .content .item .description ul li:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0.85vw;
  left: -0.75vw;
  width: 0.15vw;
  min-width: 3px;
  height: 0.15vw;
  min-height: 3px;
  border-radius: 100%;
  background: var(--white);
}

.about {
  padding: 0 0 5vw;
  width: 100%;
}
.about .content {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  margin: 2.25vw 0 0;
  width: 100%;
}
.about .content .item {
  position: relative;
  width: calc(25% - 1.277vw);
}
.about .content .item .img {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 0 0 0 -6px;
  width: 9.896vw;
  min-width: 190px;
  height: 9.896vw;
  min-height: 190px;
  border-radius: 100%;
  border: 0.4vw solid rgba(255, 255, 255, 0.17);
  background: var(--black);
}
.about .content .item .img img {
  position: relative;
  width: auto;
  height: 3.1775vw;
  min-height: 66px;
  z-index: 2;
}
.about .content .item .img:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 8.334vw;
  min-width: 160px;
  height: 8.334vw;
  min-height: 160px;
  border-radius: 100%;
  background: var(--white);
  transform: translate(-50%, -50%);
}
.about .content .item .img:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 50%;
  right: -5.3vw;
  width: 2.6vw;
  min-width: 50px;
  height: 1.92vw;
  min-height: 37px;
  background: url(img/icon-double-arrow.svg) center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
.about .content .item .descritpion {
  margin: 1.3vw 0 0;
  width: 100%;
  line-height: 1.625;
}
.about .content .item:last-child .img:before {
  display: none;
}

.faq {
  padding: 0 0 5.45vw;
  width: 100%;
}
.faq .content {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 2.3vw 0 0;
  width: 100%;
}
.faq .content .item {
  margin: 0 0 1.2vw;
  width: 100%;
  font-size: var(--15-fonts);
  background: var(--grey-faq);
}
.faq .content .item:last-child {
  margin: 0;
}
.faq .content .item.active .item__header span {
  transform: rotate(180deg);
}
.faq .content .item__header {
  cursor: pointer;
  position: relative;
  padding: 1vw 3vw 1vw 1vw;
  width: 100%;
  font-size: var(--18-fonts);
}
.faq .content .item__header span {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0.4vw;
  right: 0.916vw;
  width: 2.084vw;
  min-width: 40px;
  height: 2.084vw;
  min-height: 40px;
  border-radius: 100%;
  background: var(--black);
  transform: rotate(0deg);
  transition: 0.3s all;
}
.faq .content .item__header span img {
  width: 0.7295vw;
  min-width: 14px;
  height: auto;
}
.faq .content .item .description {
  display: none;
  padding: 1vw 3vw 1vw 1vw;
  width: 100%;
  line-height: 1.4;
  font-weight: 300;
  box-shadow: inset 0 0 0.7vw 0 rgba(0, 0, 0, 0.7);
}
.faq .content .item .description > *:not(:last-child) {
  margin: 0 0 1vw;
}
.faq .content .item .description > p {
  width: 100%;
}
.faq .content .item .description > ul {
  padding: 0 0 0 1vw;
  width: 100%;
}
.faq .content .item .description > ul li {
  position: relative;
  margin: 0 0 0.5vw;
}
.faq .content .item .description > ul li:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0.55vw;
  left: -0.9vw;
  width: 0.15vw;
  min-width: 3px;
  height: 0.15vw;
  min-height: 3px;
  border-radius: 100%;
  background: var(--white);
}

.partner {
  padding: 0 0 6.25vw;
  width: 100%;
}
.partner .content {
  position: relative;
  margin: 2.35vw 0 0;
  width: 100%;
}
.partner .content .swiper-container {
  width: 100%;
  overflow: hidden;
}
.partner .content .swiper-container .swiper-slide {
  position: relative;
  width: 9.896vw;
  min-width: 190px;
  height: 4.688vw;
  min-height: 90px;
  background: var(--white);
  overflow: hidden;
}
.partner .content .swiper-container .swiper-slide .picture {
  position: absolute;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.partner .content .swiper-container .swiper-slide .picture img {
  width: initial;
  height: initial;
}
.partner .content .container-arrow {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 122.8%;
  transform: translate(-50%, -50%);
}
.partner .content .container-arrow .swiper-button-next,
.partner .content .container-arrow .swiper-button-prev {
  pointer-events: all;
  margin: 0;
  width: auto;
  height: auto;
  color: var(--transparent);
  transform: translateY(-50%);
}
.partner .content .container-arrow .swiper-button-next img,
.partner .content .container-arrow .swiper-button-prev img {
  min-width: 81px;
  width: 4.25vw;
  height: auto;
}
.partner .content .container-arrow .swiper-button-next:after, .partner .content .container-arrow .swiper-button-next:before,
.partner .content .container-arrow .swiper-button-prev:after,
.partner .content .container-arrow .swiper-button-prev:before {
  display: none;
}
.partner .content .container-arrow .swiper-button-prev img {
  transform: rotate(180deg);
}

.consultation {
  position: relative;
  padding: 4.15vw 0 4.45vw;
  width: 100%;
}
.consultation > picture:after {
  background: rgba(0, 0, 0, 0.54);
}
.consultation .wrapper {
  position: relative;
  z-index: 2;
}
.consultation form {
  padding: 3.98vw 5.54vw;
  margin: 0 auto;
  min-width: 1062px;
  width: 56vw;
  background: var(--opacity-black);
}
.consultation form .first_code,
.consultation form .second_code {
  display: none;
}
.consultation form .iti__selected-flag > .iti__flag {
  display: none;
}
.consultation form .iti--separate-dial-code .iti__selected-dial-code {
  margin: 0 0 0 1vw;
}
.consultation form .iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 0.05vw solid;
}
.consultation form h3 {
  font-weight: 500;
}
.consultation form .content {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 1.85vw 0 0;
  width: 100%;
}
.consultation form .content .input {
  position: relative;
  margin: 0 0 1vw;
  width: 48.5%;
  border: 0.05vw solid var(--grey-input);
}
.consultation form .content .input.error_input {
  border: 0.05vw solid var(--error);
}
.consultation form .content .input.phone {
  z-index: 3;
}
.consultation form .content .input.active {
  z-index: 5;
}
.consultation form .content .input input {
  padding: 0.8vw 1.5vw;
  width: 100%;
}
.consultation form .content .input > p:not(.error) {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 0.8vw 3vw 0.8vw 1.5vw;
  width: 100%;
  color: var(--white);
}
.consultation form .content .input > p:not(.error) > span {
  white-space: nowrap;
  overflow: hidden;
}
.consultation form .content .input > p:not(.error) img {
  position: absolute;
  right: 1vw;
  width: 0.7295vw;
  min-width: 14px;
  height: auto;
  transform: rotate(0deg);
  transition: 0.3s all;
}
.consultation form .content .input.active p img {
  transform: rotate(180deg);
}
.consultation form .content .input .drop-down {
  display: none;
  position: absolute;
  top: 100%;
  left: -0.05vw;
  padding: 0.4vw 0;
  width: calc(100% + 0.1vw);
  max-height: 9.2vw;
  border: 0.05vw solid var(--grey-input);
  background: var(--grey-faq);
  overflow-y: auto;
  z-index: 3;
}
.consultation form .content .input .drop-down ul {
  width: 100%;
}
.consultation form .content .input .drop-down ul li {
  cursor: pointer;
  padding: 0.4vw 1vw;
  margin: 0 0 0.1vw;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s all;
}
.consultation form .content .input .drop-down ul li:last-child {
  margin: 0;
}
.consultation form .content .input .drop-down ul li:hover {
  background: rgba(0, 0, 0, 0.5);
}
.consultation form .content .input:after {
  pointer-events: none;
  position: absolute;
  content: "";
  content: "*";
  top: 0.8vw;
  left: 0.95vw;
}
.consultation form .content .input:nth-child(2):after {
  color: var(--grey-input);
}
.consultation form .content .input:nth-child(4):after {
  display: none;
}
.consultation form .content .input.error_input:after {
  color: var(--error);
}
.consultation form .content .error {
  pointer-events: none;
  position: absolute;
  bottom: calc(100% + 3px);
  left: 0;
  width: 100%;
  line-height: 1.3;
  color: var(--error);
  font-size: var(--14-fonts);
}
.consultation form .content .textarea {
  padding: 0.8vw 1vw;
  margin: 0 0 1vw;
  width: 100%;
  line-height: 1.1;
  border: 0.05vw solid var(--grey-input);
}
.consultation form .content .captcha {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.consultation form .content .captcha > p {
  margin: 0.5vw 0 1vw;
  width: 100%;
}
.consultation form .content .captcha__img {
  position: relative;
  margin: 0 4vw 0 0;
  width: 9vw;
  opacity: 0.7;
}
.consultation form .content .captcha__img img {
  max-width: 100%;
  height: auto;
}
.consultation form .content .captcha__img .reload-captcha {
  position: absolute;
  top: 50%;
  left: calc(100% + 1vw);
  width: 2vw;
  height: 2vw;
  transform: translateY(-50%);
}
.consultation form .content .captcha__img .reload-captcha > * {
  cursor: pointer;
  width: 100%;
  height: auto;
  transform: rotate(0deg);
  transition: 0.3s all;
}
.consultation form .content .captcha__img .reload-captcha > * path {
  fill: var(--grey-link);
}
.consultation form .content .captcha__img .reload-captcha > *:hover {
  transform: rotate(270deg);
}
.consultation form .content .captcha .captcha__input {
  position: relative;
  flex-grow: 1;
  align-self: center;
}
.consultation form .content .captcha .captcha__input .input {
  margin: 0;
}
.consultation form .content .captcha .captcha__input .input:after {
  left: auto;
  right: 0.95vw;
}
.consultation form .content .block-btn {
  margin: 1.5vw 0 0;
  width: 100%;
}
.consultation form .content .block-btn .btn {
  max-width: 21.4vw;
}

.footer {
  padding: 2.1vw 0 2vw;
  width: 100%;
  background: var(--black);
}
.footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
.footer .menu {
  margin: 0 0 1vw 1vw;
  width: 29.8vw;
}
.footer .copyright {
  display: flex;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 0 1vw 0;
  max-width: 18vw;
  width: 100%;
  font-weight: 300;
}
.footer .copyright ul {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  margin: 0 0 1vw;
  width: 100%;
}
.footer .copyright ul li {
  cursor: pointer;
  position: relative;
}
.footer .copyright ul li:after {
  pointer-events: none;
  position: absolute;
  content: "";
  bottom: -0.1vw;
  left: 0;
  width: 100%;
  height: 0.05vw;
  min-height: 1px;
  background: var(--transparent);
  transition: 0.3s all;
  background: var(--white);
}
.footer .copyright ul li:hover:after {
  background: var(--transparent);
}

.popup {
  display: none;
}

#popup-hotel {
  width: 100%;
  height: 100%;
}
#popup-hotel .popup__content .info {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 4.167vw 5.6775vw;
  min-width: 844px;
  max-width: 44vw;
  width: 100%;
  color: var(--black);
  background: var(--white);
}
#popup-hotel .popup__content .picture {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}
#popup-hotel .popup__content .picture img {
  width: 100%;
  height: initial;
  max-height: unset;
}
#popup-hotel .popup__content h5 {
  pointer-events: none;
  padding: 0 0 1.157vw;
  line-height: 1.4;
  text-align: center;
}
#popup-hotel .popup__content .description {
  padding: 0 1.8vw;
  line-height: 1.625;
  height: 11vw;
  text-align: center;
  overflow-y: auto;
}

#popup-rechtslage {
  width: 100%;
  height: 100%;
}
#popup-rechtslage .popup__content .info {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 4.167vw 5.6775vw;
  min-width: 1062px;
  max-width: 60vw;
  width: 100%;
  color: var(--black);
  background: var(--white);
}
#popup-rechtslage .popup__content h5 {
  pointer-events: none;
  padding: 0 0 1.157vw;
  line-height: 1.4;
  text-align: left;
}
#popup-rechtslage .popup__content .description {
  padding: 0 1.8vw 0 0;
  line-height: 1.625;
  height: 26vw;
  text-align: left;
  overflow-y: auto;
}
#popup-rechtslage .popup__content .description p {
  margin: 0 0 0.8vw;
}

#popup-success {
  width: 100%;
  height: 100%;
}
#popup-success .popup__content .info {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 3.511vw 3.6775vw;
  min-width: 626px;
  max-width: 32.6045vw;
  max-height: 15.521vw;
  width: 100%;
  color: var(--black);
  background: var(--white);
}
#popup-success .popup__content p {
  margin: 1vw 0 0;
  width: 100%;
  line-height: 1.2;
  text-align: center;
  color: var(--black);
  font-size: var(--40-fonts);
}

.fancybox-slide > * {
  width: 100%;
  background: #fff !important;
  overflow: unset;
}

.fancybox-close-small {
  pointer-events: none;
  top: 1.563vw;
  right: 1.563vw;
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  background: #fff;
}
.fancybox-close-small:after {
  pointer-events: auto;
  content: "";
  top: 0;
  right: 0;
  width: 1vw;
  height: 1vw;
  color: var(--transparent);
  background: url(img/icon-close.svg) center no-repeat;
  background-size: 100% auto;
  transform: rotate(0deg);
  transition: 0.3s all;
}
.fancybox-close-small:hover:after {
  color: var(--transparent);
  background: url(img/icon-close.svg) center no-repeat;
  background-size: 100% auto;
  transform: rotate(180deg);
}

.popup {
  position: fixed;
  display: none;
  overflow-y: auto;
  z-index: 10;
}

.popup,
.bg-popup,
.popup__content {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.bg-popup {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
}

.popup__content {
  position: absolute;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-content: flex-start;
  align-items: center;
}

.modal-popup {
  pointer-events: all;
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  max-width: 100%;
  height: 100vh;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 11;
}

.close-popup {
  cursor: pointer;
  position: absolute;
  right: 32px;
  top: 28px;
  height: 16px;
  width: 16px;
  z-index: 2;
}
.close-popup:after, .close-popup:before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 1px);
  width: 100%;
  height: 2px;
  background-color: var(--black);
}
.close-popup:before {
  transform: rotate(-45deg);
}
.close-popup:after {
  transform: rotate(45deg);
}

@media (max-width: 3800px) {
  body {
    background-image: url(img/bg-all.jpg);
    background-position: center top 76vh;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .hotel .options .height {
    min-width: 23px;
    width: 0.43vw;
  }
}
@media (max-width: 3700px) {
  .pc-img {
    display: block;
  }
  .uh-img {
    display: none;
  }
}
@media (max-width: 1919px) {
  .hotel .options .height {
    min-width: 12px;
    width: 0.2vw;
  }
  .hotel .options .margin-x-y {
    min-width: 14px;
    width: 0.6vw;
  }
  .consultation form {
    min-width: 850px;
  }
  .about .content .item .img {
    min-width: unset;
    min-height: unset;
  }
  .about .content .item .img img {
    min-height: unset;
  }
  .about .content .item .img:after, .about .content .item .img:before {
    min-width: unset;
    min-height: unset;
  }
  .faq .content .item__header span {
    min-width: unset;
    min-height: unset;
  }
  .faq .content .item__header span img {
    min-width: unset;
  }
  .consultation form .content .input > p:not(.error) img {
    min-width: unset;
  }
  .partner .content .swiper-container .swiper-slide {
    min-width: unset;
    min-height: unset;
  }
}
@media (max-width: 1910px) {
  :root {
    --14-fonts: 1vw;
    --15-fonts: 1.1vw;
    --16-fonts: 1.3vw;
    --18-fonts: 1.35vw;
    --btn-fonts: 1.4vw;
    --20-fonts: 1.5vw;
    --24-fonts: 1.25vw;
    --30-fonts: 1.5625vw;
    --40-fonts: 3vw;
    --60-fonts: 4vw;
    --width: calc(100% - 100px);
  }
  body {
    line-height: 1.2;
  }
  section > picture img {
    width: auto;
    height: 100%;
  }
  .btn {
    min-width: 15.417vw;
    padding: 1.5vw 1vw;
  }
  .checkbox {
    margin: 1vw 0 1.5vw;
  }
  .checkbox span {
    margin: 0 1.2vw 0 0;
    width: 2vw;
    height: 2vw;
  }
  .logo {
    width: 15vw;
  }
  .menu {
    margin: 0;
    width: 55vw;
  }
  .menu .mail img {
    margin: 0 0.65vw 0 0;
    width: 2.5vw;
  }
  .menu .message a:first-child img,
.menu .message a:nth-child(2) img,
.menu .message a:last-child img,
.menu .callback p img {
    width: 2vw;
    height: auto;
  }
  .lang {
    width: auto;
  }
  .lang ul li {
    margin: 0 1.25vw 0 0;
  }
  .lang ul li:last-child {
    margin: 0;
  }
  .lang ul li a {
    font-weight: 400;
  }
  .lang ul li:not(:last-child):after {
    right: -1vw;
  }
  .main {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 75vh;
    align-items: flex-end;
  }
  .main .wrapper {
    flex-grow: 1;
  }
  .main .left .all-lang .lang {
    margin: 0 0 0 0.5vw;
  }
  .main .left .all-lang .lang li:not(:last-child) {
    margin: 0 1.25vw 0 0;
  }
  .main .left .description .block-btn {
    flex-shrink: 0;
    width: auto;
  }
  .main .right {
    right: 3vw;
    width: 42%;
  }
  .main:after {
    right: -5.5vw;
    height: 13.24vw;
  }
  .main:before {
    left: -60%;
    width: 150vw;
    height: 150vw;
  }
  .taxi .content {
    margin: 4.4vw 0 0;
  }
  .taxi .content .item {
    padding: 1.5vw;
    margin: 0 0 1.5vw;
  }
  .agency .content .item {
    margin: 0 0 4.5vw;
  }
  .agency .content .item .description ul {
    line-height: 1.5;
  }
  .about .content .item .img:before {
    right: -8.5vw;
  }
  .about .content .item .descritpion {
    line-height: 1.5;
  }
  .about .content .item .descritpion br {
    display: none;
  }
  .faq .content .item {
    margin: 0 0 1.7vw;
  }
  .faq .content .item .description > ul {
    padding: 0 0 0 20px;
  }
  .faq .content .item__header span {
    top: 0.8vw;
  }
  .partner .content .swiper-container .swiper-slide {
    height: 7.688vw;
  }
  .partner .content .container-arrow {
    bottom: calc(100% + 48px);
    top: auto;
    width: 100%;
  }
  .partner .content .container-arrow .swiper-button-next,
.partner .content .container-arrow .swiper-rtl .swiper-button-prev {
    right: 0;
    left: auto;
  }
  .partner .content .container-arrow .swiper-button-prev,
.partner .content .container-arrow .swiper-rtl .swiper-button-next {
    left: auto;
    right: 108px;
  }
  .partner .content .container-arrow .swiper-button-next img,
.partner .content .container-arrow .swiper-button-prev img {
    min-width: unset;
    width: 66px;
    height: auto;
  }
  .consultation form {
    min-width: unset;
    width: 100%;
  }
  .consultation form .content .input {
    margin: 0 0 2.5vw;
  }
  .consultation form .content .input input {
    padding: 1.2vw 1.5vw;
  }
  .consultation form .content .input > p:not(.error) {
    padding: 1.2vw 3vw 1.2vw 1.5vw;
  }
  .consultation form .content .input .drop-down {
    max-height: 10.5vw;
  }
  .consultation form .content .captcha > p {
    margin: 0 0 2vw;
  }
  .consultation form .content .captcha__img {
    width: 15vw;
  }
  .consultation form .content .block-btn {
    margin: 2.5vw 0 0;
  }
  .footer .menu {
    margin: 0;
    width: 44vw;
  }
  .footer .copyright {
    margin: 0;
    max-width: 27vw;
  }
  .hotel .hotel__grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(12, 6.85%);
    grid-template-rows: 9.68432vw 24.4909330622vw 24.4909330622vw 4.5086780147vw 4.5086780147vw 4.5086780147vw;
    grid-auto-flow: row dense;
    gap: 1.459vw;
  }
  .hotel .hotel__grid-item__content picture img {
    max-width: unset;
    min-width: 100%;
    width: auto;
    min-height: 100%;
  }
  .hotel .hotel__grid.more-item {
    grid-template-rows: 9.68432vw 24.4909330622vw 24.4909330622vw 4.5086780147vw 4.5086780147vw 4.5086780147vw 24.4909330622vw 16.00699522vw 28.6527825359vw;
  }
  #popup-hotel {
    padding: 0;
    margin: 0;
    min-width: unset;
  }
  #popup-hotel .popup__content picture img {
    max-height: unset;
    max-width: 55%;
    width: 100%;
  }
  #popup-hotel .popup__content h5 {
    padding: 25px 0;
    font-weight: 500;
  }
  #popup-hotel .popup__content .description {
    height: auto;
    max-height: 15vw;
    line-height: 25px;
    font-size: var(--15-fonts);
  }
  .fancybox-close-small,
.fancybox-close-small:after {
    width: 2.5vw;
    height: 2.5vw;
  }
  #popup-rechtslage {
    min-width: unset;
  }
  #popup-rechtslage .popup__content .description {
    height: auto;
  }
  #popup-success {
    min-width: 320px;
    max-width: unset;
    width: 100%;
    max-height: unset;
  }
  #popup-success .popup__content .info {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    max-height: unset;
  }
  .main .left .all-lang {
    margin: 3vw 0 0;
  }
}
@media (max-width: 1279px) {
  .main .wrapper {
    padding: 0;
  }
  .main .left {
    padding: 0 0 3vw;
  }
  .main .right {
    width: 50%;
    right: 2vw;
  }
  .main:before {
    left: -65%;
  }
}
@media (max-width: 1100px) {
  .hotel .hotel__grid-item__content h2 {
    line-height: 1.3;
  }
  :root {
    --14-fonts: 14px;
    --15-fonts: 15px;
    --16-fonts: 14px;
    --18-fonts: 16px;
    --btn-fonts: 16px;
    --20-fonts: 18px;
    --24-fonts: 18px;
    --30-fonts: 20px;
    --40-fonts: 25px;
    --60-fonts: 40px;
    --width: calc(100% - 40px);
  }
  body {
    background-image: url(img/bg-all-tab.jpg);
    background-position: center top 47vh;
  }
  .btn {
    min-width: 20.95vw;
    padding: 2.2vw 1vw;
  }
  .btn.big {
    max-width: 33vw;
  }
  .pc-img {
    display: none;
  }
  .tab-img {
    display: block;
  }
  .agency .content .item > .picture .picture img {
    min-width: calc(100% + 60px);
  }
  .agency .content .item > .picture .picture:after {
    width: calc(100% + 60px);
  }
  .logo {
    width: 22.5%;
  }
  .header {
    padding: 20px 0;
  }
  .header .wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
  }
  .menu {
    margin: 1px 0 0 0;
    width: 56%;
    justify-content: space-around;
  }
  .menu .message {
    position: absolute;
    right: 0;
    bottom: -5px;
    margin: 0;
  }
  .menu .message a {
    margin: 0 0.85vw;
  }
  .menu .message a:first-child img, .menu .message a:nth-child(2) img {
    width: 21px;
    height: auto;
  }
  .menu .message a:last-child {
    margin: 0 0 0 0.85vw;
  }
  .menu .message a:last-child img {
    width: 2.6vw;
  }
  .menu .mail {
    margin: 0 0 13px;
  }
  .menu .mail img {
    margin: 0 10px 0 0;
    width: 24px;
  }
  .menu .callback p img {
    margin: 7px 6px 0 0;
    width: 21px;
    height: auto;
  }
  .lang {
    margin: 7px 0 0;
  }
  .main {
    min-height: 655px;
  }
  .main .left {
    padding: 0 0 31px;
    width: 72%;
  }
  .main .left .description {
    margin: 34px 0 0;
    width: 100%;
  }
  .main .left .description .item {
    margin: 0 0 3.7vw;
    width: 56%;
  }
  .main .left .description .item p {
    margin: 1.3vw 0 0;
  }
  .main .left .description .item p img {
    margin: 0 0 0 1.7vw;
    width: 8.8vw;
  }
  .main .left .description .item p:hover img {
    margin: 0 0 0 2vw;
  }
  .main .left .description .item:first-child {
    width: 43%;
  }
  .main .left .description .block-btn {
    width: 34%;
  }
  .main .left .description .block-btn .btn {
    min-width: 100%;
  }
  .main .left .all-lang {
    margin: 100px 0 0;
    font-size: 15px;
  }
  .main .right {
    width: 61%;
    right: -20px;
  }
  .main .right .picture img {
    width: auto;
    height: 100%;
  }
  .main:after {
    display: none;
  }
  .main:before {
    left: -135%;
  }
  .hotel {
    padding: 80px 0 75px;
  }
  .hotel .wrapper {
    padding: 0 0 0 1vw;
  }
  .hotel .hotel__grid-item:nth-child(19) .btn {
    min-width: unset;
    max-width: 100%;
    padding: 1vw;
  }
  .hotel .hotel__grid br {
    display: none;
  }
  .hotel .hotel__grid-item:nth-child(1) {
    grid-column-start: 5;
  }
  .hotel .hotel__grid-item:nth-child(2) {
    grid-column-end: 5;
  }
  .hotel .hotel__grid-item:nth-child(3) {
    grid-column-start: 5;
    grid-column-end: 8;
  }
  .hotel .hotel__grid-item:nth-child(4) {
    grid-column-start: 8;
  }
  .hotel .hotel__grid-item:nth-child(15) {
    grid-column-end: 9;
  }
  .hotel .hotel__grid-item:nth-child(16) {
    grid-column-start: 9;
  }
  .taxi {
    padding: 70px 0 82px;
  }
  .taxi .content {
    margin: 30px 0 0;
  }
  .taxi .content .item {
    padding: 11px 9px;
    margin: 0 0 21px;
  }
  .taxi .block-btn {
    margin: 1.3vw 0 0;
  }
  .agency {
    padding: 71px 0 67px;
  }
  .agency .content {
    margin: 70px 0 0;
  }
  .agency .content .item {
    margin: 0 0 3.2vw;
  }
  .agency .content .item > .picture {
    width: 40%;
  }
  .agency .content .item .description h4 {
    padding: 0 0 21px;
    font-weight: 500;
    line-height: 26px;
    font-size: var(--18-fonts);
  }
  .agency .content .item .description ul {
    padding: 21px 0 0 20px;
    line-height: 25px;
    font-size: var(--15-fonts);
  }
  .about {
    padding: 0 0 74px;
  }
  .about .content {
    margin: 29px 0 0;
  }
  .about .content .item {
    width: calc(25% - 1.5vw);
  }
  .about .content .item .img {
    margin: 0;
    width: 108px;
    height: 108px;
  }
  .about .content .item .img img {
    height: 38px;
  }
  .about .content .item .img:before {
    width: 33px;
    height: 24px;
  }
  .about .content .item .img:after {
    width: 90px;
    height: 90px;
  }
  .about .content .item .descritpion {
    margin: 12px 0 0;
    line-height: 25px;
    font-size: var(--15-fonts);
  }
  .faq {
    padding: 0 0 70px;
  }
  .faq .content {
    margin: 29px 0 0;
  }
  .faq .content .item {
    margin: 0 0 19px;
    font-size: var(--14-fonts);
  }
  .faq .content .item__header {
    padding: 16px 50px 15px 20px;
  }
  .faq .content .item__header span {
    top: 9px;
    right: 10px;
    width: 32px;
    height: 32px;
  }
  .faq .content .item__header span img {
    width: 12px;
  }
  .faq .content .item .description {
    padding: 16px 50px 15px 20px;
  }
  .faq .content .item .description > ul {
    padding: 0 0 0 20px;
  }
  .faq .content .item .description > ul li:before {
    top: 6px;
    left: -13px;
  }
  .partner {
    padding: 0 0 81px;
  }
  .partner .content {
    margin: 30px 0 0;
  }
  .partner .content .swiper-container .swiper-slide {
    height: 71px;
  }
  .partner .content .swiper-container .swiper-slide .pc-img {
    display: block;
  }
  .consultation {
    padding: 80px 0;
  }
  .consultation form {
    padding: 46px 66px 52px;
  }
  .consultation form .content {
    margin: 25px 0 0;
  }
  .consultation form .content .input {
    margin: 0 0 24px;
  }
  .consultation form .content .input input,
.consultation form .content .input > p:not(.error) {
    padding: 14px 40px 14px 28px;
  }
  .consultation form .content .input input:not(.error) img,
.consultation form .content .input > p:not(.error):not(.error) img {
    right: 21px;
    width: 14px;
  }
  .consultation form .content .input:after {
    top: 9px;
    left: 20px;
  }
  .consultation form .content .textarea {
    padding: 18px 19px;
    margin: 0 0 17px;
  }
  .consultation form .content .captcha__img {
    width: 170px;
    margin: 0 30px 0 0;
  }
  .consultation form .content .captcha__input .error {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .consultation form .content .block-btn {
    margin: 13px 0 0;
  }
  .consultation form .content .block-btn .btn {
    max-width: 240px;
  }
  .checkbox span {
    margin: 0 13px 0 1px;
    width: 20px;
    height: 20px;
  }
  .checkbox span:before {
    width: 12px;
    height: 10px;
    background-size: 100% auto;
  }
  .footer {
    padding: 29px 0 36px;
  }
  .footer .wrapper {
    flex-wrap: wrap;
  }
  .footer .logo {
    width: 19.5%;
  }
  .footer .menu {
    width: 74%;
  }
  .footer .menu .message {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0 30px 0 0;
  }
  .footer .menu .message a {
    margin: 0 12px;
  }
  .footer .menu .message a:last-child {
    margin: 0 0 0 12px;
  }
  .footer .copyright {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    margin: 20px 0 0;
    max-width: 100%;
    width: 100%;
    flex-wrap: nowrap;
  }
  .footer .copyright ul {
    margin: 0;
    width: 38.8%;
  }
  #popup-hotel {
    padding: 80px 66px;
  }
  #popup-hotel .popup__content picture img {
    max-height: unset;
    max-width: 100%;
    width: 100%;
  }
  #popup-hotel .popup__content h5 {
    padding: 25px 0;
    font-weight: 500;
  }
  #popup-hotel .popup__content .description {
    height: auto;
    max-height: 26vw;
    line-height: 25px;
    font-size: var(--15-fonts);
  }
  .hotel .hotel__grid-item__content > h3,
.hotel .hotel__grid-item__content > span {
    font-size: 18px;
  }
  #popup-hotel {
    padding: 0;
    margin: 0;
    min-width: unset;
  }
  #popup-hotel .popup__content .info {
    min-width: unset;
    max-width: 95vw;
  }
  #popup-hotel .popup__content .picture img {
    max-height: unset;
    max-width: 55%;
    width: 100%;
  }
  #popup-hotel .popup__content h5 {
    padding: 25px 0;
    font-weight: 500;
  }
  #popup-hotel .popup__content .description {
    height: auto;
    max-height: 75vw;
    line-height: 25px;
    font-size: var(--15-fonts);
  }
  .fancybox-close-small,
.fancybox-close-small:after {
    width: 2.5vw;
    height: 2.5vw;
  }
  #popup-rechtslage {
    min-width: unset;
  }
  #popup-rechtslage .popup__content .info {
    min-width: unset;
    max-width: 90vw;
  }
  #popup-rechtslage .popup__content .description {
    height: auto;
    max-height: 80vh;
  }
  #popup-success {
    min-width: 320px;
    max-width: unset;
    width: 100%;
    max-height: unset;
  }
  #popup-success .popup__content .info {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    max-height: unset;
  }
  #popup-success .popup__content .info br {
    display: inline-block;
  }
}
@media (max-width: 762px) {
  .hotel .wrapper {
    padding: 0;
  }
}
@media (max-width: 700px) {
  .main .left {
    width: 85%;
  }
}
@media (max-width: 650px) {
  :root {
    --14-fonts: 14px;
    --15-fonts: 15px;
    --16-fonts: 14px;
    --18-fonts: 16px;
    --btn-fonts: 16px;
    --20-fonts: 18px;
    --24-fonts: 18px;
    --30-fonts: 20px;
    --40-fonts: 25px;
    --60-fonts: 26px;
    --width: calc(100% - 40px);
  }
  body {
    background-position: center top 130vh;
  }
  .tab-img {
    display: none;
  }
  .mob-img {
    display: block;
  }
  .wrapper {
    min-width: 280px;
  }
  .hotel .hotel__grid-item__content picture img {
    max-width: unset;
    max-height: unset;
    width: auto;
    min-height: unset;
    min-width: unset;
    height: auto;
    min-height: 100%;
    min-width: 100%;
  }
  .agency .content .item .picture picture img {
    min-width: unset;
    max-width: 100%;
  }
  section > picture img {
    width: 100%;
    min-width: unset;
    min-height: unset;
    height: auto;
  }
  h1,
h2 {
    line-height: 40px;
  }
  br {
    display: none;
  }
  .mobile {
    position: relative;
  }
  .mobile:after {
    pointer-events: none;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: 0.3s all;
  }
  .mobile.open-menu:after {
    pointer-events: all;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3;
  }
  .btn {
    padding: 18px 15px 19px;
    min-width: unset;
    max-width: unset;
    width: 204px;
  }
  .menu {
    display: none;
  }
  .header {
    padding: 0;
  }
  .header .wrapper {
    position: unset;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 17px 0;
  }
  .header .wrapper > *:not(.menu) {
    position: relative;
    z-index: 3;
  }
  .header .menu {
    pointer-events: none;
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
    display: none;
    flex-wrap: wrap;
    left: 0;
    top: 0;
    padding: 19px 0 30px;
    margin: 0 auto;
    width: 100%;
    background: var(--black);
  }
  .header .menu > * {
    position: relative;
  }
  .header .menu:before {
    pointer-events: none;
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--black);
    transform: translateX(-50%);
    box-shadow: 0px 4px 20px rgba(255, 255, 255, 0.22);
  }
  .header .menu > * {
    pointer-events: all;
  }
  .header .menu .callback {
    margin: 22px 0 0;
  }
  .header .menu .message {
    position: relative;
    right: auto;
    bottom: auto;
    order: 2;
    margin: 23px 0 26px;
    width: 100%;
    justify-content: center;
  }
  .header .menu .message a:last-child,
.header .menu .message a {
    margin: 0 7px;
  }
  .header .menu .message a:last-child:last-child img,
.header .menu .message a:last-child img {
    width: 23px;
  }
  .header .menu .mail {
    order: 3;
    margin: 0;
  }
  .logo {
    order: 2;
    width: 170px;
  }
  .menu-btn {
    cursor: pointer;
    order: 3;
    display: flex;
    width: 26px;
    height: 26px;
    background: url(img/icon-phone.svg) center no-repeat;
    background-size: contain;
  }
  .open-menu .menu-btn {
    background: url(img/icon-close-w.svg) center no-repeat;
  }
  .lang {
    margin: 0 0 6px;
    width: 100%;
  }
  .lang ul {
    display: flex;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
  }
  .lang ul li {
    margin: 0 13px 0 0;
  }
  .lang ul li:not(:last-child):after {
    right: -10px;
  }
  .main > .wrapper {
    flex-wrap: wrap;
    padding: 50px 0 0;
    height: auto;
  }
  .main .left {
    position: unset;
    padding: 0;
    width: 100%;
  }
  .main .left .description {
    margin: 38px 0 0;
  }
  .main .left .description .item,
.main .left .description .item:first-child,
.main .left .description .item:nth-last-child(-n+3),
.main .left .description .item:last-child {
    margin: 0 0 23px;
    width: 100%;
  }
  .main .left .description .item p,
.main .left .description .item:first-child p,
.main .left .description .item:nth-last-child(-n+3) p,
.main .left .description .item:last-child p {
    margin: 11px 0 0;
  }
  .main .left .description .item p img,
.main .left .description .item:first-child p img,
.main .left .description .item:nth-last-child(-n+3) p img,
.main .left .description .item:last-child p img {
    margin: 0 0 0 13px;
    width: 65px;
  }
  .main .left .description .block-btn {
    padding: 5px 0 0;
    width: 100%;
    justify-content: flex-start;
  }
  .main .left .description .block-btn .btn {
    padding: 18px 15px 19px;
    min-width: unset;
    max-width: unset;
    width: 204px;
  }
  .main .left .all-lang {
    position: absolute;
    bottom: 59px;
    left: 0;
    margin: 0;
    width: 100%;
    font-size: var(--18-fonts);
  }
  .main .left .all-lang > p {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    width: 100%;
  }
  .main .left .all-lang .lang {
    margin: 0;
    width: unset;
  }
  .main .left .all-lang .lang li:not(:last-child) {
    margin: 0 13px 0 0;
  }
  .main .left .all-lang .lang li:not(:last-child):not(:last-child):after {
    right: -10px;
  }
  .main .right {
    position: relative;
    bottom: 38px;
    width: 100%;
    height: auto !important;
  }
  .main .right .picture {
    position: relative;
    top: auto;
    left: 0;
    width: 100%;
    height: auto;
  }
  .main .right .picture img {
    position: relative;
    bottom: 0;
    right: auto;
    left: 50%;
    min-width: 320px;
    width: 100%;
    height: auto;
    transform: translateX(-50%);
  }
  .main .right:before {
    pointer-events: none;
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 300%;
    height: 100%;
    background: var(--black);
    transform: translateX(-50%);
  }
  .main:before {
    background-position: left 0 top 0;
  }
  .hotel {
    margin: -5px 0 0;
    padding: 0px 0 75px;
  }
  .hotel .wrapper {
    max-width: 87.5%;
  }
  .hotel .hotel__grid {
    grid-template-columns: repeat(4, 21.8%);
    grid-template-rows: 39vw 40vw 40vw 40vw 40vw 17vw;
    gap: 4vw;
  }
  .hotel .hotel__grid.more-item {
    grid-template-rows: 39vw 40vw 40vw 40vw 40vw 30vw 30vw 40vw 40vw 40vw 40vw 40vw 60vw;
  }
  .hotel .hotel__grid.more-item .hotel__grid-item:nth-child(8),
.hotel .hotel__grid.more-item .hotel__grid-item:nth-child(9),
.hotel .hotel__grid.more-item .hotel__grid-item:nth-child(10) {
    display: initial;
  }
  .hotel .hotel__grid-item__content h2 {
    padding: 0;
  }
  .hotel .hotel__grid-item:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .hotel .hotel__grid-item:nth-child(1) .hotel__grid-item__content {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
  }
  .hotel .hotel__grid-item:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 4;
  }
  .hotel .hotel__grid-item:nth-child(3) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .hotel .hotel__grid-item:nth-child(4) {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 4;
    grid-row-end: 5;
  }
  .hotel .hotel__grid-item:nth-child(5) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .hotel .hotel__grid-item:nth-child(6) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 5;
    grid-row-end: 6;
  }
  .hotel .hotel__grid-item:nth-child(7) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 5;
    grid-row-end: 6;
  }
  .hotel .hotel__grid-item:nth-child(8) {
    display: none;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 6;
    grid-row-end: 7;
  }
  .hotel .hotel__grid-item:nth-child(9) {
    display: none;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 7;
    grid-row-end: 8;
  }
  .hotel .hotel__grid-item:nth-child(10) {
    display: none;
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 6;
    grid-row-end: 7;
  }
  .hotel .hotel__grid-item:nth-child(11) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 8;
    grid-row-end: 9;
  }
  .hotel .hotel__grid-item:nth-child(12) {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 9;
    grid-row-end: 10;
  }
  .hotel .hotel__grid-item:nth-child(13) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 8;
    grid-row-end: 9;
  }
  .hotel .hotel__grid-item:nth-child(14) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 12;
    grid-row-end: 12;
  }
  .hotel .hotel__grid-item:nth-child(15) {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 10;
    grid-row-end: 10;
  }
  .hotel .hotel__grid-item:nth-child(16) {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 11;
    grid-row-end: 12;
  }
  .hotel .hotel__grid-item:nth-child(17) {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 13;
    grid-row-end: 14;
  }
  .hotel .hotel__grid-item:nth-child(17) h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .hotel .hotel__grid-item:nth-child(18) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 12;
    grid-row-end: 13;
  }
  .hotel .hotel__grid-item:nth-child(19) {
    display: flex;
    grid-column: 4 span;
    grid-row: 1 span;
    justify-content: center;
  }
  .hotel .hotel__grid-item:nth-child(19) .btn {
    max-width: unset;
    width: 100%;
    flex-grow: 0;
  }
  .hotel .hotel__grid-item:nth-child(19) .btn:before {
    width: calc(100% - 3px);
    height: calc(100% - 4px);
  }
  .hotel .hotel__grid.more-item .hotel__grid-item:nth-child(8) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 6;
    grid-row-end: 8;
  }
  .hotel .hotel__grid.more-item .hotel__grid-item:nth-child(19) {
    grid-column: 4 span;
    grid-row: 4 span;
  }
  .hotel .hotel__grid.more-item .hotel__grid-item:nth-child(19) .btn {
    max-width: unset;
    flex-grow: 0;
  }
  .close-popup {
    right: 5px;
    top: 5px;
  }
  .taxi {
    padding: 55px 0 72px;
  }
  .taxi .content {
    margin: 30px 0 0;
  }
  .taxi .content .item {
    order: 1;
    padding: 10px 11px 9px;
    margin: 0 0 9px;
    width: 100%;
    line-height: 24px;
  }
  .taxi .content .item:nth-child(2n) {
    order: 2;
  }
  .taxi .block-btn {
    margin: 8px 0 0;
  }
  .taxi .block-btn .btn.big {
    max-width: 100%;
    width: 100%;
  }
  #popup-hotel .popup__content .pc-img {
    display: none;
  }
  #popup-hotel .popup__content .mob-img {
    display: block;
  }
  .agency {
    padding: 58px 0 50px;
  }
  .agency .content {
    margin: 29px 0 0;
  }
  .agency .content .item {
    margin: 0 0 30px;
  }
  .agency .content .item > .picture {
    right: -20px;
  }
  .agency .content .item .picture {
    margin: 0 0 9px;
    width: 100%;
    overflow: hidden;
  }
  .agency .content .item .description {
    order: 2;
    width: 100%;
  }
  .agency .content .item .description h4 {
    padding: 0 0 12px;
  }
  .agency .content .item .description h4:after {
    left: -10%;
    width: 83%;
  }
  .agency .content .item .description ul {
    padding: 15px 0 0 24px;
  }
  .agency .content .item .description ul li:before {
    top: 11px;
    left: -14px;
    width: 3px;
    min-width: 3px;
    height: 3px;
    min-height: 3px;
  }
  .agency .content .item:nth-child(2n) > .picture {
    right: auto;
    left: -20px;
  }
  .about {
    padding: 0 0 55px;
  }
  .about .content {
    margin: 28px 0 0;
    flex-wrap: wrap;
  }
  .about .content .item {
    margin: 0 0 81px;
    width: 100%;
  }
  .about .content .item:last-child {
    margin: 0;
  }
  .about .content .item .img {
    margin: 0 auto;
    width: 170px;
    height: 170px;
  }
  .about .content .item .img img {
    height: 60px;
  }
  .about .content .item .img:after {
    width: 144px;
    height: 144px;
  }
  .about .content .item .img:before {
    display: none;
  }
  .about .content .item .descritpion {
    position: relative;
    line-height: 27px;
    text-align: center;
  }
  .about .content .item:not(:last-child) .descritpion:before {
    pointer-events: none;
    position: absolute;
    content: "";
    top: calc(100% + 17px);
    left: 50%;
    width: 50px;
    height: 37px;
    background: url(img/icon-double-arrow.svg) center no-repeat;
    background-size: contain;
    transform: translateX(-50%) rotate(90deg);
  }
  .faq {
    padding: 0 0 57px;
  }
  .faq .content .item {
    line-height: 26px;
  }
  .faq .content .item__header {
    padding: 13px 47px 13px 10px;
  }
  .faq .content .item__header span {
    top: 7px;
    right: 14px;
  }
  .faq .content .item .description {
    padding: 13px 47px 13px 10px;
  }
  .partner {
    padding: 0 0 94px;
  }
  .partner .content .container-arrow {
    bottom: -23px;
  }
  .partner .content .container-arrow .swiper-button-prev,
.partner .content .container-arrow .swiper-rtl .swiper-button-next {
    left: 18%;
    right: auto;
  }
  .partner .content .container-arrow .swiper-button-next,
.partner .content .container-arrow .swiper-rtl .swiper-button-prev {
    right: 18%;
  }
  .partner .content .container-arrow .swiper-button-next img,
.partner .content .container-arrow .swiper-button-prev img {
    min-width: unset;
    width: 80px;
    height: auto;
  }
  .partner .content .swiper-container .swiper-slide {
    height: 61px;
  }
  .partner .content .swiper-container .swiper-slide .picture img {
    max-width: 80%;
    max-height: unset;
    overflow: hidden;
  }
  .consultation {
    padding: 0;
  }
  .consultation .wrapper {
    max-width: 100%;
    width: 100%;
  }
  .consultation form {
    padding: 65px 20px 74px;
    background: var(--transparent);
  }
  .consultation form h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .consultation form .content {
    margin: 30px 0 0;
  }
  .consultation form .content .input {
    margin: 0 0 24px;
    width: 100%;
  }
  .consultation form .content .input:after {
    top: 5px;
    left: 5px;
  }
  .consultation form .content .captcha {
    margin: 10px 0 0;
  }
  .consultation form .content .captcha > p {
    margin: 0 0 15px;
  }
  .consultation form .content .captcha .captcha__img .reload-captcha {
    left: calc(100% + 40px);
    width: 30px;
    height: 30px;
  }
  .consultation form .content .captcha .captcha__input {
    margin: 24px 0;
  }
  .consultation form .content .block-btn .btn {
    max-width: 100%;
    width: 100%;
  }
  .checkbox {
    margin: 9px 0 0;
    line-height: 22px;
  }
  .checkbox span {
    flex-shrink: 0;
    margin: 2px 12px 0 0;
    align-self: flex-start;
  }
  .consultation form .content .input .drop-down {
    max-height: 31.5vw;
  }
  .consultation form .content .input .drop-down ul li {
    padding: 5px 20px 5px 28px;
    margin: 0 0 5px;
  }
  .footer {
    padding: 38px 0 45px;
  }
  .footer .wrapper {
    justify-content: center;
  }
  .footer .logo {
    order: 1;
    width: 197px;
  }
  .footer .menu {
    order: 2;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .footer .menu .mail {
    margin: 26px auto 30px;
  }
  .footer .menu .mail img {
    margin: 0 23px 0 0;
  }
  .footer .menu .message {
    margin: 0 0 16px;
    width: 100%;
    justify-content: center;
  }
  .footer .menu .message a {
    margin: 0 10px;
  }
  .footer .menu .message a:last-child {
    margin: 0 0 0 10px;
  }
  .footer .menu .message a:first-child img,
.footer .menu .message a:nth-child(2) img,
.footer .menu .message a:last-child img {
    width: auto;
    height: 29px;
  }
  .footer .menu .callback {
    font-size: 16px;
    line-height: 26px;
  }
  .footer .copyright {
    order: 3;
    flex-wrap: wrap;
    margin: 25px 0 0;
    justify-content: center;
  }
  .footer .copyright ul {
    margin: 0;
    flex-wrap: wrap;
    width: 100%;
  }
  .footer .copyright ul li {
    display: flex;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
    margin: 0 0 21px;
    width: 100%;
    font-size: 16px;
  }
  .footer .copyright ul li a {
    position: relative;
  }
  .footer .copyright ul li a:after {
    pointer-events: none;
    position: absolute;
    content: "";
    bottom: -0.1vw;
    left: 0;
    width: 100%;
    height: 0.05vw;
    min-height: 1px;
    background: var(--transparent);
    transition: 0.3s all;
    background: var(--white);
    transition: 0.3s all;
  }
  .footer .copyright ul li a:hover:after {
    background: var(--transparent);
  }
  .footer .copyright ul li:after {
    display: none;
  }
  .footer .copyright > p {
    display: flex;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 10px 0 0;
    width: 100%;
    font-size: 15px;
    line-height: 26px;
  }
  .main:before {
    left: -175%;
    top: 28%;
    min-width: 1300px;
    min-height: 1300px;
  }
}/*# sourceMappingURL=style.css.map */