/* @font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Black.woff2") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Arial";
  src: url("./fonts/Arial.woff2") format("woff");
}
@font-face {
  font-family: "Arial";
  src: url("./fonts/Arial-bold.woff2") format("woff");
  font-weight: bold;
} */
@font-face {
  font-family: "Roboto";
  src: local("Roboto Black"), url("./fonts/Roboto-Black.woff2") format("woff2"),
    url("./fonts/Roboto-Black.woff") format("woff"),
    url("./fonts/Roboto-Black.ttf") format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: "Arial";
  src: local("Arial"), url("./fonts/Arial.woff2") format("woff2"),
    url("./fonts/Arial.woff") format("woff"),
    url("./fonts/Arial.ttf") format("truetype");
}

@font-face {
  font-family: "Arial";
  src: local("Arial Bold"), url("./fonts/Arial-bold.woff2") format("woff2"),
    url("./fonts/Arial-bold.woff") format("woff"),
    url("./fonts/Arial-bold.ttf") format("truetype");
  font-weight: bold;
}
:root {
  --body-color: #f2f7fa;
  --primary-color: #0062d4;
  --secondary-color: #c7e9ff;
  --third-color: #e5f4ff;
  --additional-color: #2f8fff;
  --substrate-bg-color: #00031928;
  --active-country-color: #daf0ff;
  --substrate-city-bg-color: #0000001a;
  --button-swiper-button: #fff;
  --city-bg-color: #fff;
  --text-first-color: #010000;
  --text-second-color: #fff;
  --font-main-headline: "Roboto", sans-serif;
  --font-second-text: "Arial", sans-serif;
}
body {
  background-color: var(--body-color);
  font-family: var(--font-second-text) !important;
  margin: 0;
}
.header {
  background-color: var(--primary-color);
  padding: 0 50px;
  margin-bottom: 80px;
}
.header__container {
  max-width: 1600px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  padding: 10px;
}
img.header__logo-image {
  width: 150px;
  height: auto;
}
.header__language-list {
  list-style: none;
}
.header__language {
  cursor: pointer;
  border-left: 1px solid var(--substrate-bg-color);
  border-right: 1px solid var(--substrate-bg-color);
  position: relative;
  font-size: 18px;
}
.header__language-main {
  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;
  float: left;
  position: relative;
  width: auto;
  list-style-type: none;
}
.header__language-main-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  align-items: center;
  color: var(--text-second-color);
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  padding: 10px 20px;
  font-size: 18px;
}
svg.header__language-main-icon {
  width: 1em;
  height: auto;
  margin-right: 8px;
  margin-bottom: 2px;
  fill: var(--text-second-color);
}
#header__language-submenu {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  visibility: hidden;
  z-index: 1;
  background: var(--body-color);
  -webkit-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  text-align: center;
  width: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 15px 0px #00142b82;
  box-shadow: 0px 4px 15px 0px #00142b82;
  border-radius: 7px;
}
.header__language:hover #header__language-submenu {
  opacity: 1;
  visibility: visible;
}
.header__language-submenu-item {
  width: 100%;
  height: 40px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.header__language-submenu-item:last-child {
  border-bottom: initial;
}
.header__language-submenu-item:hover {
  background-color: #0f6fe419;
}
.header__language-submenu-link {
  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;
  color: var(--text-first-color);
  text-decoration: none;
  width: 100%;
  height: 100%;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.main-content {
  position: relative;
  padding: 0 50px;
  margin-bottom: 70px;
}
.main-content__container {
  max-width: 1600px;
  height: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.main-content__wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.main-content__left {
  position: relative;
  width: 50%;
  background: var(--secondary-color);
  border-radius: 20px 0px 0px 20px;
  /* overflow:hidden; */
}
.main-content__left-wrapper {
  padding: 80px 50px 120px 50px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.titleH1 {
  font-family: var(--font-main-headline);
  font-size: 40px;
  font-weight: bold;
  color: var(--text-first-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.underlining {
  width: 130px;
  height: 5px;
  background-color: var(--primary-color);
  margin-bottom: 16px;
}
.titleH2 {
  color: var(--text-first-color);
  font-size: 22px;
  line-height: 1.4em;
}
/* form */

.main-content__left-search {
  position: relative;
  height: 100%;
  width: 100%;
}
.main-content__left-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}
.main-content__left-btn {
  border: none;
  outline: none;
  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;
  background-color: var(--third-color);
  width: 100%;
  height: 50px;
  gap: 10px;
  font-size: 20px;
  color: var(--text-first-color);
  padding: 0px 10px;
}

.main-content__left-button-otherSearch {
  width: 100%;
  height: 80px;
  background: var(--primary-color);
  border-radius: 15px;
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  gap: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.main-content__left-button-otherSearch::before {
  content: "";
  position: absolute;
  top: 0px;
  height: 100%;
  width: 75px;
  transform: skewX(-45deg);
  right: 0px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.072)
  );
  animation: 3s linear 0s infinite normal none running flareAnimationButton;
}
@keyframes flareAnimationButton {
  0% {
    left: -80%;
  }
  100% {
    left: 100%;
  }
}

.main-content__left-button-otherSearch-title {
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
}

.main-content__left-button-otherSearch-icon {
  width: 30px;
  height: 30px;
}

.main-content__left-forms {
  height: 100%;
  display: flex;
  align-items: center;
}
.main-content__left-form-search {
  width: 100%;
  height: auto;
  max-height: 400px;
  background-color: var(--third-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.main-content__left-form-search form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.main-content__left-form-search input[type="text"] {
  padding: 15px;
  border-radius: 15px;
  /* border: 1px solid #8a8a8a; */
  border: none;
  height: 100px;
  font-size: 40px;
  outline: none !important;
  background: #fff;
}
.main-content__left-form-search input[type="text"]::placeholder {
  color: #a5a5a5;
}
.main-content__left-form-search button {
  padding: 10px;
  height: 70px;
  border: none;
  border-radius: 15px;
  background-color: var(--primary-color);
  color: white;
  font-size: 25px;
  font-weight: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.main-content__left-form-booking {
  width: 100%;
  height: 100%;
  background-color: var(--third-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.main-content__left-btnScroll-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
  z-index: 1;
}
.main-content__left-btnScroll {
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border-radius: 0px 0px 20px 20px;
}
.main-content__left-btnScroll:hover {
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}
svg.main-content__left-btnScroll-icon {
  width: 2em;
  height: auto;
  fill: var(--text-second-color);
}
.main-content__right {
  width: 50%;
  position: relative;
}
.main-content__right-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0px 20px 20px 0px;
}
.main-content__right-phone {
  position: absolute;
  border-radius: 39px;
  --app-color-accent: #666666;
  box-shadow: 0 0 0 5px #151515, 0 0 0 6px var(--app-color-accent),
    0 -7.5px 1.5px rgba(255, 255, 255, 0.4),
    7.5px 0 1.5px rgba(255, 255, 255, 0.25),
    -7.5px 0 1.5px rgba(255, 255, 255, 0.4),
    0 7.5px 1.5px rgba(255, 255, 255, 0.25), 0 0 0 9px var(--app-color-accent),
    6px 8px 16px rgba(0, 0, 0, 0.25), 20px 32px 72px rgba(0, 0, 0, 0.2);
  width: 390px;
  min-height: 755px;
  height: 100%;
  bottom: 30px;
  overflow: hidden;
  background-color: #fff;
}
.main-content__right-phone-layout {
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: column;
  overflow: hidden;
  height: 100%;
}
.main-content__right-phone-header {
  width: 100%;
}
.main-content__right-phone-header-statusBar {
  position: relative;
  background: #fff;
}
.main-content__right-phone-header-statusBar img {
  box-sizing: border-box;
  width: 100%;
  height: auto;
}
.main-content__right-phone-header-control {
  position: relative;
  background: #fff;
  display: flex;
  justify-content: space-between;
}
.main-content__right-phone-header-control-back,
.main-content__right-phone-header-control-info {
  background: none;
  outline: none;
  display: flex;
  align-items: center;
  color: #fd0000;
}
.main-content__right-phone-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}
.main-content__right-phone-content-loader1-logo {
  width: 200px;
  height: 200px;
  box-shadow: 1px 2px 10px 0px #0000002e;
  border-radius: 50px;
}
.main-content__right-phone-content-loader1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.main-content__right-phone-content-loader1-text {
  font-size: 22px;
}
.main-content__right-download {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.main-content__right-download-arrow {
  position: relative;
  right: 55px;
}
.main-content__right-download-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 10px 14px 10px;
  background: var(--primary-color);
  border-radius: 20px 0px 20px 0px;
  box-shadow: -3px 0px 13px 0px #00000052;
  width: 100%;
  box-sizing: border-box;
}
.button-download {
  font-size: 0;
}
.button-download-img {
  width: 150px;
  height: auto;
}

.button-download-general {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  gap: 10px;
  width: 100%;
  max-width: 150px;
  height: 190px;
  background: linear-gradient(#fefefe, #d4d4d4);
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
  border: 2px solid #cacaca;
  box-shadow: 0px 3px 8px 0px #00000040;
  cursor: pointer;
}

.button-download-general-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 5px;
  color: #201e1e;
  font-weight: 600;
}

.button-download-general-img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0px 1px 5px #22222231);
}
.button-download-general-text-one {
  font-size: 30px;
}
.button-download-general-text-two {
  font-size: 22px;
}

.button-download-general-text-three {
  font-size: 14px;
}

.main-content__right-color::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--substrate-bg-color);
}
.main-content__right-background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.cities-information {
  margin-bottom: 60px;
  position: relative;
  padding: 0 50px;
}
.cities-information__container {
  max-width: 1600px;
  min-height: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  background-color: var(--secondary-color);
  border-radius: 20px;
}
.cities-information__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px 50px;
  min-height: 500px;
}
.cities-information__headlines {
  margin-bottom: 20px;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.titleH3 {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 10px;
  color: var(--text-first-color);
}
.cities-information__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
}
.cities-information__countries {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}
.cities-information__countries-wrapper {
  width: 100%;
  min-height: 150px;
  max-height: 150px;
  background-color: var(--third-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row !important;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-radius: 20px;
  gap: 50px;
  flex-wrap: wrap;
  padding: 40px 30px;
  overflow: hidden;
  box-sizing: border-box;
}
.loader {
  border: 8px solid #ffffff;
  border-top: 8px solid var(--primary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  display: block;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shine {
  to {
    background-position-x: -200%;
  }
}
.hidden {
  display: none !important;
}
.country {
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: flex-start;
  padding: 10px 20px;
  background: #ffffff4a;
  border-radius: 10px;
  border: 1px solid #ffffff63;
  height: 45px;
  width: 100%;
  max-width: 155px;
  gap: 10px;
  flex: 1 0 10%;
  min-width: 130px;
}
.country_background {
  width: 40px;
  height: 40px;
  background-size: cover;
}
.country_title {
  font-size: 20px;
  color: var(--text-second-color);
}
.country.swiper-slide-active .country_title {
  font-size: 28px;
  font-weight: bold;
}
.cities-information__countries-more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  padding: 5px;
  background: var(--primary-color);
  color: var(--text-second-color);
  border-radius: 0px 0px 15px 15px;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cities-information__countries-more::before {
  content: "";
  position: absolute;
  top: 0px;
  height: 100%;
  width: 75px;
  transform: skewX(-45deg);
  right: 0px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.072)
  );
  animation: 3s linear 0s infinite normal none running flareAnimation;
}
@keyframes flareAnimation {
  0% {
    left: -80%;
  }
  100% {
    left: 120%;
  }
}
.cities-information__cities {
  position: relative;
}
.cities-information__cities-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  gap: 50px;
}
.city {
  position: relative;
  width: 340px;
  height: 700px;
  -webkit-transition: opacity 0.7s ease;
  -o-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
  -webkit-box-shadow: 0px 4px 12px 0px #1113;
  box-shadow: 0px 4px 12px 0px #1113;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(25% - 40px);
  flex: 0 1 calc(25% - 40px);
  border-radius: 20px;
  overflow: hidden;
}
.city__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--city-bg-color);
}
.city__content-image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.city__content-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--substrate-city-bg-color);
  background: linear-gradient(90deg, #00000077, #00000007, transparent);
  pointer-events: none;
}
.city__content-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--text-second-color);
  text-transform: capitalize;
  text-shadow: 0px 2px 9px #111;
  padding: 20px 20px;
  overflow: auto;
  z-index: 1;
}
.city__content-country {
  padding: 20px 20px 50px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 1;
}
.city__content-country-title {
  font-size: 16px;
  color: var(--text-second-color);
  text-shadow: 0px 2px 9px #111111b0;
}
.city__content-country-flag {
  width: 24px;
  height: 24px;
  box-shadow: 0px 2px 9px #1111113a;
}
.city__content-info {
  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;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px 20px 35px 20px;
  overflow-y: auto;
}
.city__content-info-description {
  height: 100%;
  overflow-y: auto;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4em;
  color: var(--text-first-color);
}

.city__content-info-description::-webkit-scrollbar {
  width: 8px;
}

.city__content-info-description::-webkit-scrollbar {
  background: #ffffff;
  background-position: right;
}

.city__content-info-description::-webkit-scrollbar-thumb {
  background-color: #ededed;
  border-radius: 6px;
}

.city__content-info-description::-webkit-scrollbar-thumb:hover {
  background-color: #e3e3e3;
}

.city__content-info-button-read {
  color: #0062d4;
  text-decoration: dashed;
  cursor: pointer;
  margin-bottom: 20px;
  background: #c7e9ff;
  position: relative;
  display: flex;
  margin-bottom: 15px;
  width: fit-content;
  border-radius: 7px;
  align-items: center;
  padding: 5px 20px;
  margin-left: auto;
}

.city__content-info-button-read-text {
  font-size: 14px;
}

.city__content-info-button {
  width: 100%;
  height: 50px;
  padding: 5px 10px;
  background-color: var(--primary-color);
  cursor: pointer;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(17, 17, 17, 0.125);
  box-shadow: 0px 4px 12px 0px rgba(17, 17, 17, 0.125);
  overflow: auto;
  border-radius: 10px;
}
.city__content-info-button-text {
  font-size: 20px;
  color: var(--text-second-color);
}
.button-scroll-up {
  opacity: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--additional-color);
  cursor: pointer;
  -webkit-box-shadow: 0px 5px 10px 0px #00000039;
  box-shadow: 0px 5px 10px 0px #00000039;
  outline: none;
  -webkit-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
  z-index: 9;
}
.button-scroll-up__icon {
  fill: var(--body-color);
  width: 20px;
}
.footer {
  width: 100%;
  background-color: var(--primary-color);
}
.footer__container {
  max-width: 1600px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  padding: 10px;
  text-align: center;
}
.footer__container-description,
a.footer__container-description-link {
  color: var(--text-second-color);
}
@media (max-width: 1620px) {
  .header__container {
    height: 50px;
  }
  img.header__logo-image {
    width: 130px;
  }
  .header__language-main-link {
    font-size: 16px;
    padding: 5px 20px;
  }
  .header__language-submenu-item {
    font-size: 16px;
  }
  .header {
    margin-bottom: 65px;
  }
  .main-content__container {
    height: 660px;
  }
  .main-content__left-wrapper {
    padding: 40px 50px 105px 50px !important;
  }
  .main-content__left-headlines {
    margin-bottom: 15px;
  }
  .titleH1 {
    font-size: 34px;
  }
  .underlining {
    width: 115px;
    height: 4px;
  }
  .main-content__left-form-search input[type="text"] {
    height: 80px;
    font-size: 36px;
  }
  .main-content__left-form-search button {
    height: 70px;
    font-size: 23px;
  }
  .main-content__right-phone {
    min-height: 620px;
    width: 320px;
  }
  .titleH2 {
    font-size: 20px;
  }
  .titleH3 {
    font-size: 32px;
  }
  .loader {
    width: 50px;
    height: 50px;
  }
  .country {
    max-width: 160px;
    min-width: 0;
  }
  .cities-information__countries-wrapper {
    gap: 30px;
    padding: 30px;
    min-height: 125px;
    max-height: 125px;
  }
  .country_title {
    font-size: 18px;
  }
  .country_background {
    width: 32px;
    height: 32px;
  }
  .cities-information__wrapper {
    padding: 30px 40px;
  }
  .city {
    height: 600px;
  }
  .city__content-image {
    height: 240px;
  }
  .city__content-country {
    padding: 20px 20px 40px 20px;
  }
  .city__content-info {
    padding: 15px;
  }
  .city__content-info-description {
    height: 100%;
    font-size: 16px;
  }
  .city__content-title {
    font-size: 28px;
  }
  .city__content-info-button {
    height: 45px;
  }
  .city__content-info-button-text {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .main-content__left-form-search input[type="text"] {
    font-size: 30px;
    height: 60px;
  }
  .main-content__left-form-search button {
    height: 55px;
    font-size: 20px;
  }
  .main-content__left-wrapper {
    padding: 25px 40px 95px 40px !important;
  }
  .main-content__left-button-otherSearch {
    height: 60px;
  }
  .main-content__left-button-otherSearch-title {
    font-size: 16px;
  }
  .main-content__left-button-otherSearch-icon {
    width: 25px;
    height: 25px;
  }
  .main-content__container {
    height: 600px;
  }
  .main-content__left-form-wrapper {
    height: 310px;
  }
  .main-content__right-phone {
    min-height: 600px;
    width: 300px;
  }
  .titleH1 {
    font-size: 30px;
  }
  .titleH2 {
    font-size: 16px;
    line-height: 1.6em;
  }
  .titleH3 {
    font-size: 30px;
  }
  .main-content__left-btn {
    height: 45px;
    font-size: 16px;
  }
  .country.swiper-slide-active .country_title {
    font-size: 22px;
  }
  .main-content__right-download {
    width: 140px;
  }
  .button-download-img {
    width: 100%;
  }
  .button-download-general-text-one {
    font-size: 23px;
  }
  .button-download-general {
    height: 170px;
  }
  .button-download-general-text-two {
    font-size: 16px;
  }
  .button-download-general-text-three {
    font-size: 10px;
  }
  .main-content__right-download-buttons {
    gap: 5px;
  }
  .main-content__right-download-arrow {
    width: 40px;
    height: 100%;
    right: 40px;
  }
  .main-content__right-phone-content {
    margin-bottom: 30px;
  }
  .main-content__right-phone-content-loader1-logo {
    width: 150px;
    height: 150px;
    border-radius: 30px;
  }
  .main-content__left-btnScroll-wrapper {
    height: 65px;
  }
  .country {
    flex: 1 0 12%;
  }
  .city {
    flex: 0 0 calc(33% - 33px);
  }
}
@media (max-width: 1250px) {
  .main-content {
    padding: 0 40px;
  }
  .main-content__left-form-wrapper {
    height: 340px;
  }
  .main-content__left-headlines {
    margin-bottom: 10px;
  }
  .titleH1 {
    font-size: 26px;
  }
  .titleH2 {
    font-size: 16px;
  }
  .line-break__H2 {
    display: none;
  }
  .titleH3 {
    font-size: 28px;
  }
  .main-content__left-btn-wrapper {
    gap: 10px;
    margin-bottom: 10px;
  }
  .country {
    flex: 1 0 17%;
  }
  .cities-information {
    padding: 0 40px;
  }
  .city {
    width: 100%;
    min-height: 620px;
    flex: 0 0 calc(33% - 33px);
  }
  .main-content__right-download-arrow {
    right: 00px;
  }
}
@media (max-width: 1110px) {
  .header {
    margin-bottom: 40px;
    padding: 0 30px;
  }
  #qr-code-download {
    display: none;
  }
  .header__language:active #header__language-submenu {
    opacity: 1;
    visibility: visible;
  }
  a.header__language-main-link {
    /* pointer-events: none; */
    cursor: default;
  }
  .main-content {
    padding: 0 30px;
  }
  .main-content__container {
    height: 100%;
    flex-direction: column;
  }
  .main-content__wrapper {
    flex-direction: column;
  }
  .main-content__left {
    border-radius: 20px 20px 0px 0px;
    width: 100%;
    height: 100%;
    overflow: initial;
  }
  .main-content__left-headlines {
    margin-bottom: 20px;
  }
  .main-content__left-form-wrapper {
    height: 360px;
  }
  .main-content__left-btn-wrapper {
    margin-bottom: 20px;
  }
  .main-content__right {
    width: 100%;
    height: 100%;
  }
  .main-content__right-wrapper {
    border-radius: 0px 0px 20px 20px;
    box-sizing: border-box;
    padding: 40px 0px 20px 0px;
  }
  .main-content__right-phone {
    position: relative;
    bottom: 0;
    min-height: 0;
    height: 755px;
    width: 360px;
  }
  .main-content__left-form-search {
    height: 100%;
    max-height: 300px;
  }
  .main-content__left-form-search input[type="text"] {
    height: 80px;
    font-size: 34px;
  }
  .main-content__left-form-search button {
    height: 70px;
    font-size: 23px;
  }
  .main-content__left-wrapper {
    padding: 50px 40px 35px 40px !important;
    height: 600px;
  }
  .titleH1 {
    font-size: 38px;
  }
  .titleH2 {
    font-size: 20px;
  }
  .titleH3 {
    font-size: 30px;
  }
  .cities-information {
    padding: 0 30px;
  }
  .city {
    height: auto;
    flex: 0 0 calc(50% - 15px);
  }
  .city__content-image {
    height: 240px;
  }
  .city__content-title {
    font-size: 32px;
  }
  .city__content-info-description {
    font-size: 20px;
  }
  .city__content-info {
    padding: 20px;
  }
  .city__content-info-button {
    height: 50px;
  }
  .city__content-country-title {
    font-size: 18px;
  }
  .city__content-country-flag {
    width: 30px;
    height: 30px;
  }
  .cities-information__cities-wrapper {
    gap: 30px;
  }
  .country {
    max-width: 145px;
  }
  .main-content__right-download {
    width: 170px;
  }
}
@media (max-width: 778px) {
  .header {
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .main-content {
    padding: 0 20px;
  }
  .titleH1 {
    font-size: 26px;
  }
  .main-content__left-form-search input[type="text"] {
    height: 50px;
    font-size: 26px;
  }
  .underlining {
    width: 80px;
  }
  .main-content__left-form-search {
    height: 220px;
  }
  .main-content__left-form-search button {
    height: 50px;
    font-size: 18px;
  }
  .main-content__left-wrapper {
    height: 600px;
  }
  .titleH2 {
    font-size: 16px;
  }
  .main-content__left-wrapper {
    padding: 15px !important;
  }
  .cities-information__wrapper {
    padding: 30px 15px;
  }
  .main-content__left-btn-wrapper {
    flex-direction: column;
  }
  .main-content__right-phone {
    height: 650px;
    width: 320px;
  }
  .main-content__right-download {
    width: 130px;
  }
  .main-content__right-download-arrow {
    right: 0;
    width: 30px;
  }
  .main-content__left-btn-wrapper {
    margin-bottom: 15px;
  }
  .main-content__left-form-wrapper {
    height: 270px;
  }
  .cities-information {
    padding: 0 20px;
  }
  .titleH3 {
    font-size: 26px;
  }
  .country_background {
    width: 30px;
    height: 30px;
  }
  .country {
    flex: 1 0 22%;
  }
  .cities-information__countries-wrapper {
    padding: 20px;
  }
  .cities-information__content {
    gap: 40px;
  }
  .cities-information__cities-wrapper {
    gap: 30px;
  }
  .city {
    flex: 0 0 calc(50% - 15px);
    min-height: 600px;
  }
  .city__content-image {
    height: 200px;
  }
  .footer__container {
    height: auto;
  }
  .city__content-info-description {
    font-size: 18px;
  }
  .footer__container-description {
    display: flex;
    font-size: 14px;
    gap: 10px;
    flex-direction: column;
  }
  .cities-information__countries-wrapper {
    min-height: 300px;
    max-height: 300px;
  }
  .country {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .city {
    flex: 0 0 100%;
    min-height: 600px;
  }
}
@media (max-width: 555px) {
  .header {
    padding: 0 20px;
  }
  .header__container {
    padding: 10px 0;
  }
  img.header__logo-image {
    width: 110px;
  }
  .main-content {
    padding: 0 20px;
  }
  .main-content__left {
    margin-top: 0px;
  }
  .main-content__left-wrapper {
    height: 600px;
  }
  .titleH1 {
    font-size: 26px;
    line-height: 1.5em;
  }
  .titleH2 {
    font-size: 15px;
  }
  .main-content__left-btn {
    font-size: 18px;
  }
  .main-content__right-wrapper {
    padding: 40px 20px 20px 20px;
  }
  .line-break__H2 {
    display: none;
  }
  .main-content__left-form-search input[type="text"] {
    font-size: 22px;
  }
  .main-content__left-form-wrapper {
    height: auto;
    /* это изменить когда будет форма */
  }
  .cities-information {
    padding: 0 20px;
  }
  .titleH3 {
    font-size: 24px;
  }
  .main-content__right-download-arrow {
    right: 0;
  }
  .main-content__right-phone {
    height: 650px;
    width: 320px;
  }
  .main-content__right-phone-content-loader1-logo {
    width: 130px;
    height: 130px;
  }
  .main-content__right-phone-content-loader1-text {
    font-size: 18px;
  }
  .country {
    flex: initial;
  }
  .main-content__left-form-booking {
    padding: 10px;
  }
}
@media (max-width: 425px) {
  .header__language-main-link,
  .header__language-submenu-item {
    font-size: 14px;
  }
  .main-content__left-form-search input[type="text"] {
    font-size: 18px;
    border-radius: 14px;
  }
  .main-content__left-form-search {
    border-radius: 16px;
    padding: 15px;
  }
  .main-content__left-form-search button {
    border-radius: 10px;
    font-size: 16px;
    gap: 4px;
  }
  .main-content__left-form-search button svg {
    width: 20px;
    height: 20px;
  }
  .main-content__left-form-booking {
    border-radius: 16px;
  }
  .main-content__left-btnScroll-wrapper {
    height: 50px;
  }
  .main-content__left-btnScroll svg {
    width: 24px;
    height: 24px;
  }
  .titleH1 {
    font-size: 24px;
  }
  .underlining {
    width: 75px;
  }
  .titleH2 {
    font-size: 14px;
  }
  .main-content__right-phone {
    height: 610px;
    width: 320px;
  }
  .main-content__left-wrapper {
    height: 600px;
  }
  .main-content__left-btn {
    font-size: 16px;
  }
  .titleH3 {
    font-size: 22px;
  }
  .main-content__right-download-arrow {
    right: -45px;
  }
  .cities-information__countries-wrapper {
    height: 100px;
  }
  .city__content-country-title {
    font-size: 16px;
  }
  .city__content-country-flag {
    width: 25px;
    height: 25px;
  }
  .country.swiper-slide-active .country_title {
    font-size: 18px;
    background-color: initial;
  }
  .city__content-info-button-text {
    font-size: 16px;
  }
  .city__content-title {
    font-size: 28px;
  }
  .country_title {
    font-size: 16px;
  }
  .city__content-info-description {
    font-size: 16px;
  }
  .button-scroll-up {
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 362px) {
  .header__container {
    height: 40px;
  }
  img.header__logo-image {
    width: 95px;
  }
  .main-content__left-wrapper {
    padding: 30px 20px;
  }
  .titleH1 {
    font-size: 22px;
  }
  .underlining {
    width: 65px;
  }
  .titleH2 {
    font-size: 14px;
  }
  .titleH3 {
    font-size: 18px;
  }
  .main-content__left-form-search input[type="text"] {
    font-size: 16px;
    height: 40px;
  }
  .main-content__right-phone {
    height: 530px;
    width: 250px;
    border-radius: 30px;
  }
  .main-content__right-download {
    width: 110px;
  }
  .main-content__right-download-arrow {
    right: -20px;
  }
  .main-content__right-download-buttons {
    padding: 10px 8px;
  }
  .main-content__right-wrapper {
    padding: 40px 20px 20px 20px;
  }
  .main-content__left-btn {
    height: 40px;
    font-size: 14px;
  }
  .main-content__left-btnScroll-wrapper {
    height: 40px;
  }
  .country.swiper-slide-active .country_background {
    margin-bottom: 15px;
  }
  .country_background {
    width: 25px;
    height: 25px;
  }
  .country.swiper-slide-active .country_title {
    font-size: 16px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    top: -17px !important;
  }
  .city__content-title {
    font-size: 30px;
  }
  .city__content-image {
    height: 180px;
  }
  .city__content-info-description {
    font-size: 14px;
  }
  .city__content-info-button {
    height: 40px;
  }
  .city__content-info-button-text {
    font-size: 16px;
  }
  .footer__container-description {
    font-size: 14px;
  }
  .country {
    height: 35px;
  }
  .cities-information__countries-wrapper {
    gap: 15px;
  }
  .cities-information__countries-wrapper {
    min-height: 308px;
    max-height: 308px;
  }
  .city {
    min-height: 550px;
  }
}
