@import url("https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap");
* {
  font-family: "Ubuntu Sans", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  border-radius: 5rem;
  background-color: #2978ff;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

section {
  padding: 0 1rem;
  margin: 10rem 0;
}

.shadow {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1000;
}
.shadow.active {
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: all;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}

#order-call {
  cursor: pointer;
}

.container-lg {
  max-width: 140rem;
  margin: 0 auto;
}

.container {
  max-width: 130rem;
  margin: 0 auto;
}

.container-sm {
  max-width: 73.8rem;
  margin: 0 auto;
}

.logo {
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  text-transform: uppercase;
  max-width: 126px;
  color: #fff;
}

#search-tour {
  cursor: pointer;
}

.btn-want {
  width: 100%;
  padding: 1.5rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  background: radial-gradient(circle, #5f9aff 0%, #005eff 100%);
  border-radius: 2.5rem;
  transition: all 0.4s ease-in-out;
}

.heading h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.heading p {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  box-shadow: inset -0.5px -0.5px 0 rgba(255, 255, 255, 0.8), inset 0.5px 0.5px 0 rgba(255, 255, 255, 0.8);
}

.datepicker-container {
  position: relative;
}
.datepicker-container .datepicker {
  position: absolute;
  top: 100%;
  z-index: 100;
  margin-top: 0.6rem;
  background-color: #fff;
  padding: 1.6rem;
  border-radius: 1.6rem;
  box-shadow: 0 0.4rem 1rem 0 rgba(0, 0, 0, 0.15);
}
.datepicker-container .datepicker button {
  cursor: pointer;
  border: none;
  background: transparent;
  text-transform: uppercase;
  transition: 0.3s;
}
.datepicker-container .datepicker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.datepicker-container .datepicker-header .monthYear {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.4rem;
  color: #1f1f1f;
}
.datepicker-container .datepicker-header .datepicker-action {
  width: 2.4rem;
  height: 2.4rem;
}
.datepicker-container .datepicker .days,
.datepicker-container .datepicker .dates {
  display: grid;
  grid-template-columns: repeat(7, 3.3rem);
}
.datepicker-container .datepicker .days {
  margin-top: 1.2rem;
}
.datepicker-container .datepicker .days span {
  aspect-ratio: 1;
  font-size: 1.1rem;
  line-height: 1.4rem;
  font-weight: 600;
  color: #7c7c7c;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.datepicker-container .datepicker .dates button {
  color: #45454a;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.4rem;
  aspect-ratio: 1;
  border-radius: 0.8rem;
}
.datepicker-container .datepicker .dates button:hover {
  background-color: rgba(119, 136, 153, 0.1);
}
.datepicker-container .datepicker .dates button.today {
  background: rgba(72, 152, 251, 0.2);
  color: #005eff;
}
.datepicker-container .datepicker .dates button.selected {
  background-color: #005eff;
  color: #fff;
}
.datepicker-container .datepicker .dates button:disabled {
  color: #d6d8e1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.counter-container {
  position: relative;
}
.counter-container .counter {
  box-shadow: 0 0.4rem 1rem 0 rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 100%;
  z-index: 100;
  margin-top: 0.6rem;
  background-color: #fff;
  padding: 1.4rem 1.5rem;
  border-radius: 1.6rem;
}
.counter-container .counter .counter-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.counter-container .counter .counter-wrapper .counter-item {
  display: flex;
  align-items: center;
  gap: 3.6rem;
}
.counter-container .counter .counter-wrapper .counter-item .counter-title {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #1f1f1f;
}
.counter-container .counter .counter-wrapper .counter-item .counter-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.counter-container .counter .counter-wrapper .counter-item .counter-actions button {
  width: 2.5rem;
  height: 2.5rem;
}
.counter-container .counter .counter-wrapper .counter-item .counter-actions button svg {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #005eff;
  border-radius: 0.8rem;
}
.counter-container .counter .counter-wrapper .counter-item .counter-actions span {
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.4rem;
  color: #1f1f1f;
}

.item {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
  border-radius: 2.5rem;
  overflow: hidden;
}
.item:hover .item__image {
  transform: scale(1.1);
}
.item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2.5rem;
  z-index: -1;
}
.item .item__price {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}
.item .item__price span {
  font-weight: 700;
  font-size: 2rem;
}

.callback-button {
  display: inline-block;
  padding: 1.5rem 2.4rem;
  border-radius: 10rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  white-space: nowrap;
}

.language-button {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
}

.theme-switcher {
  position: absolute;
  right: 4.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  padding: 1rem 0.7rem;
  gap: 1rem;
  border-radius: 2.5rem;
}
.theme-switcher button {
  background: transparent;
  display: block;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-switcher button svg {
  fill: #bebebe;
}
.theme-switcher button.active {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  box-shadow: inset -0.5px -0.5px 0 rgba(255, 255, 255, 0.8), inset 0.5px 0.5px 0 rgba(255, 255, 255, 0.8);
}
.theme-switcher button.active svg {
  fill: #fff;
}
.theme-switcher.mobile {
  display: none;
  position: static;
  flex-direction: row;
  transform: translateY(0);
  padding: 0.7rem 1rem;
}

.header {
  padding: 1rem;
  height: 67.5rem;
  border-radius: 4rem;
  position: relative;
}
.header-container {
  background-image: url("/assets/images/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  border-radius: 4rem;
  padding: 3rem;
}
.header-container .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-container .header-wrapper .nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-container .header-wrapper .nav-list {
  display: flex;
  align-items: center;
  padding: 0.8rem;
  border-radius: 10rem;
}
.header-container .header-wrapper .nav-list .nav-item .nav-link {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 10rem;
  white-space: nowrap;
}
.header-container .header-wrapper .nav-list .nav-item .nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
.header-container .header-wrapper .header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-container .header-wrapper .header-actions .btn-menu {
  display: none;
  width: 4.5rem;
  height: 4.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 5rem;
}
.header-container .hero {
  max-width: 101rem;
  margin: 15rem auto 0;
}
.header-container .hero-title {
  text-align: center;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  max-width: 80rem;
  margin: 0 auto 1rem;
  color: #fff;
}
.header-container .hero-subtitle {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}
.header-container .hero .form {
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  border-radius: 10rem;
  margin-top: 2rem;
}
.header-container .hero .form-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-container .hero .form-container .input-block {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  gap: 1rem;
  width: 100%;
  max-width: 18.8rem;
}
.header-container .hero .form-container .input-block input {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  color: #222222;
  width: 100%;
}
.header-container .hero .form-container .input-block input::-moz-placeholder {
  color: #c9c9c9;
}
.header-container .hero .form-container .input-block input::placeholder {
  color: #c9c9c9;
}
.header-container .hero .form .submit-button {
  padding: 1.5rem 1.5rem;
  border-radius: 10rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  background: #5f9aff;
  background: radial-gradient(circle, #5f9aff 0%, #005eff 100%);
}

.directions-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: 130rem;
  padding: 0 3rem;
  margin: 0 auto 5rem;
}
.directions-header .heading {
  text-align: left;
}
.directions-header .heading h2 {
  color: #005eff;
}
.directions-header .heading p {
  color: #222222;
}
.directions-header .directions-pagination {
  width: -moz-fit-content;
  width: fit-content;
}
.directions-header .directions-pagination .my-pagination {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.directions-header .directions-pagination .my-pagination .numbers {
  color: #222222;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-align: left;
}
.directions-header .directions-pagination .my-pagination .line {
  width: 20rem;
  height: 0.5rem;
  border-radius: 1rem;
  background-color: #dbe9ff;
  overflow: hidden;
  position: relative;
}
.directions-header .directions-pagination .my-pagination .line span {
  position: absolute;
  top: 0;
  display: inline-block;
  background-color: #005eff;
  height: 100%;
}
.directions .directions-swiper .swiper-slide {
  display: flex;
}
.directions .directions-swiper .swiper-slide .directions-item {
  position: relative;
  padding: 3rem 3rem 2.5rem 3rem;
  aspect-ratio: 5.5/4;
  max-height: 32rem;
}
.directions .directions-swiper .swiper-slide .directions-item:hover .btn-want {
  right: 3rem;
}
.directions .directions-swiper .swiper-slide .directions-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.directions .directions-swiper .swiper-slide .directions-item__header .directions-item__title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
.directions .directions-swiper .swiper-slide .directions-item__description {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  max-width: 34.6rem;
  margin-top: 1.5rem;
}
.directions .directions-swiper .swiper-slide .directions-item__footer {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: #c7c7c7;
  margin-top: 40px;
}
.directions .directions-swiper .swiper-slide .directions-item__footer span {
  color: #fff;
  font-weight: 600;
}
.directions .directions-swiper .swiper-slide .directions-item .btn-want {
  width: 100%;
  max-width: 23rem;
  padding: 1.5rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  background: radial-gradient(circle, #5f9aff 0%, #005eff 100%);
  border-radius: 2.5rem;
  position: absolute;
  bottom: 2.5rem;
  right: -110%;
  transition: all 0.3s linear;
}

.tours .heading h2 {
  color: #222222;
  text-align: center;
}
.tours .heading p {
  color: #005eff;
  text-align: center;
}
.tours .tours-swiper {
  margin-top: 5.5rem;
}
.tours .tours-swiper .swiper-slide {
  border-radius: 3rem;
}
.tours .tours-item {
  aspect-ratio: 5/6;
  max-height: 52rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 3rem;
  overflow: hidden;
  padding: 2rem;
}
.tours .tours-item:hover .btn-want {
  transform: translateY(0);
}
.tours .tours-item:hover .tours-item__content {
  transform: translateY(0);
}
.tours .tours-item .btn-want {
  margin-top: 2.5rem;
  transform: translateY(10rem);
}
.tours .tours-item__image {
  border-radius: 3rem;
}
.tours .tours-item__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.tours .tours-item__header .price {
  padding: 1.05rem 1.5rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.3);
}
.tours .tours-item__content {
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1.5rem;
  transform: translateY(8rem);
}
.tours .tours-item__content .tour-item__title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.tours .tours-item__content .tour-item__list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.tours .tours-item__content .tour-item__list li {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: #fff;
  font-weight: 400;
  line-height: 1;
  font-size: 1.6rem;
}
.tours .tours-item__content .tour-item__list li svg {
  width: 1.6rem;
}
.tours .tours-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}
.tours .tours-pagination .my-pagination .line {
  background-color: #dbe9ff;
  border-radius: 1rem;
  height: 0.5rem;
  overflow: hidden;
}
.tours .tours-pagination .my-pagination .line span {
  display: inline-block;
  width: 6rem;
  height: 100rem;
  background-color: transparent;
  transform: translateY(-0.4rem);
}
.tours .tours-pagination .my-pagination .line span.active {
  background-color: #005eff;
}

.why-us .heading {
  max-width: 58.6rem;
  text-align: center;
  margin: 0 auto 5rem;
}
.why-us .heading h2 {
  margin-top: 1rem;
  color: #222222;
}
.why-us .heading h2 span {
  color: #005eff;
}
.why-us .why-us-swiper .swiper-wrapper .swiper-slide .why-us-item {
  height: 23rem;
  padding: 2rem;
  background-color: #e6efff;
  border: 0.2rem solid transparent;
  border-radius: 2rem;
}
.why-us .why-us-swiper .swiper-wrapper .swiper-slide .why-us-item:hover {
  border: 0.2rem solid #005eff;
}
.why-us .why-us-swiper .swiper-wrapper .swiper-slide .why-us-item__img {
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background-color: #005eff;
  margin-bottom: 3.4rem;
}
.why-us .why-us-swiper .swiper-wrapper .swiper-slide .why-us-item__title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  color: #222222;
  margin-bottom: 1rem;
}
.why-us .why-us-swiper .swiper-wrapper .swiper-slide .why-us-item__description {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  color: #565656;
}
.why-us .why-us-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}
.why-us .why-us-pagination .my-pagination .line {
  background-color: #dbe9ff;
  border-radius: 1rem;
  height: 0.5rem;
  overflow: hidden;
}
.why-us .why-us-pagination .my-pagination .line span {
  display: inline-block;
  width: 6rem;
  height: 100rem;
  background-color: transparent;
  transform: translateY(-0.4rem);
}
.why-us .why-us-pagination .my-pagination .line span.active {
  background-color: #005eff;
}

.about {
  padding: 0 1rem;
}
.about .container-lg {
  padding: 1rem;
  background-image: url("/assets/images/about.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 67rem;
  border-radius: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .container-lg .container-sm .about-title {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  width: 60rem;
}
.about .container-lg .container-sm .about-title .about-title__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.about .container-lg .container-sm .about-title .about-title__wrapper img {
  position: absolute;
  width: 100%;
  max-width: 33.1rem;
  left: -2rem;
  bottom: -6rem;
}
.about .container-lg .container-sm .about-title .about-title__wrapper .blue {
  color: #005eff;
}
.about .container-lg .container-sm .about-description {
  max-width: 69.2rem;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  margin-top: 7.4rem;
}
.about .container-lg .container-sm .about-btn {
  display: inline-block;
  max-width: 69.2rem;
  width: 100%;
  padding: 1.8rem;
  border-radius: 3rem;
  background: radial-gradient(circle, #5f9aff 0%, #005eff 100%);
  margin-top: 4rem;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}

.gallery .heading {
  margin-bottom: 3rem;
}
.gallery .heading h2 {
  color: #222222;
  text-align: center;
}
.gallery .heading p {
  color: #222222;
  text-align: center;
  max-width: 63.8rem;
  margin: 1rem auto 0;
}
.gallery .gallery-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.gallery .gallery-wrapper .gallery-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: calc(50% - 0.75rem);
}
.gallery .gallery-wrapper .gallery-item .gallery-img {
  width: calc(50% - 0.75rem);
  height: 27rem;
}
.gallery .gallery-wrapper .gallery-item .gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
.gallery .gallery-wrapper .gallery-item__banner {
  width: calc(50% - 0.75rem);
}
.gallery .gallery-wrapper .gallery-item__banner .gallery-img {
  width: 100%;
  height: 27rem;
}
.gallery .gallery-wrapper .gallery-item__banner .gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
  border-radius: 2rem;
}

.footer {
  padding: 1rem;
}
.footer .container-lg {
  background: radial-gradient(circle, #5f9aff 0%, #005eff 100%);
  padding: 3rem;
  border-radius: 4rem;
  min-height: 27.8rem;
}
.footer .container-lg .footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5rem;
}
.footer .container-lg .footer-wrapper .footer-heading {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer .container-lg .footer-wrapper .footer-heading .footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer .container-lg .footer-wrapper .footer-heading .footer-social .footer-social-item {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .container-lg .footer-wrapper .footer-nav {
  width: 100%;
  max-width: 60rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}
.footer .container-lg .footer-wrapper .footer-nav .footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.footer .container-lg .footer-wrapper .footer-nav .footer-nav-list li {
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
}
.footer .container-lg .footer-wrapper .footer-nav .footer-nav-list li .footer-nav-list__subtitle {
  font-size: 1.3rem;
  color: #cacaca;
  margin-bottom: 1rem;
}
.footer .container-lg .footer-wrapper .footer-nav .footer-nav-list li a {
  display: block;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
}
.footer .container-lg .footer-wrapper .footer-nav .footer-nav-list li.footer-nav-list__phone a {
  margin-bottom: 1rem;
}
.footer .container-lg .footer-wrapper .footer-nav .footer-nav-list .footer-nav-list__title {
  font-weight: 600;
  color: #ececed;
  margin-bottom: 2rem;
}
.footer .container-lg .footer-wrapper .footer-actions {
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  gap: 1rem;
}

.menu__modal {
  position: fixed;
  top: 0;
  left: -110%;
  width: 100%;
  max-width: 39rem;
  padding: 1.6rem;
  background-color: #fff;
  height: 100vh;
  overflow: hidden;
  z-index: 2000;
}
.menu__modal .menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.menu__modal .menu-header .logo {
  color: #005eff !important;
}
.menu__modal .menu-header .close-button {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.menu__modal .menu-header .close-button svg {
  fill: #222222;
}
.menu__modal .menu-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.menu__modal .menu-nav ul li {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  color: #222222;
}
.menu__modal .menu-nav ul li .menu-nav__subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  color: #005eff;
  line-height: 1;
  margin-bottom: 1rem;
}
.menu__modal .menu-nav ul li a {
  display: block;
  margin-bottom: 1rem;
  color: #222222;
  font-weight: 500;
  font-size: 2rem;
}
.menu__modal .menu-nav ul .menu-nav__title {
  font-weight: 600;
  color: #c1c1c1;
  margin-bottom: 2rem;
}
.menu__modal .menu-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.menu__modal .menu-socials a {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #005eff;
}
.menu__modal .menu-socials a svg {
  fill: #fff;
}
.menu__modal .menu-bg {
  position: absolute;
  background-image: url("/assets/images/menu.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  height: 50vh;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.2;
}
.menu__modal.active {
  left: 0;
}

.modal-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.modal-success.active {
  opacity: 1;
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.modal-success.active .modal-success-container {
  transform: scale(1) !important;
}
.modal-success .modal-success-container {
  padding: 3rem;
  max-width: 45rem;
  width: 100%;
  background-color: #fff;
  border-radius: 3rem;
  transform: scale(0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.modal-success .modal-success-container .modal-success-title {
  color: #181818;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1;
  margin: 2.5rem 0 1rem;
}
.modal-success .modal-success-container .modal-success-subtitle {
  max-width: 33.9rem;
  text-align: center;
  color: #979797;
  font-synthesis-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 5rem;
}
.modal-success .modal-success-container .btn-close {
  display: block;
  width: 100%;
  padding: 1.8rem;
  font-weight: 500;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 1rem;
  background: radial-gradient(circle, #5f9aff 0%, #005eff 100%);
}

.modal-request {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.modal-request.active {
  opacity: 1;
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.modal-request.active .modal-request-wrapper {
  transform: scale(1) !important;
}
.modal-request-wrapper {
  max-width: 55.5rem;
  width: 100%;
  padding: 2rem;
  background-color: #fff;
  border-radius: 3rem;
  transform: scale(0.5);
}
.modal-request-wrapper .modal-container {
  max-width: 39rem;
  margin: 0 auto;
}
.modal-request-wrapper .modal-container .modal-title {
  color: #222222;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 1rem;
}
.modal-request-wrapper .modal-container .modal-subtitle {
  color: #222222;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 4rem;
  text-align: center;
}
.modal-request-wrapper .modal-container .modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-request-wrapper .modal-container .modal-form input {
  width: 100%;
  padding: 1.8rem 2rem;
  border: 0.1rem solid #e2e2e2;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  color: #222222;
  border-radius: 1rem;
}
.modal-request-wrapper .modal-container .modal-form input::-moz-placeholder {
  color: #dadada;
}
.modal-request-wrapper .modal-container .modal-form input::placeholder {
  color: #dadada;
}
.modal-request-wrapper .modal-container .modal-form .btn-send {
  padding: 1.8rem 2rem;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  font-size: 1.6rem;
  background: radial-gradient(circle, #5f9aff 0%, #005eff 100%);
  border-radius: 1rem;
  margin: 2rem 0;
}
.modal-request-wrapper .modal-container .modal-form p {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: #979797;
  text-align: center;
}
.modal-request-wrapper .modal-container .modal-form-inf {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-request-wrapper .modal-container .modal-form-inf .input-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.8rem 1.1rem;
  border: 0.1rem solid #e2e2e2;
  border-radius: 1rem;
}
.modal-request-wrapper .modal-container .modal-form-inf .input-block input {
  width: 100%;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  color: #222222;
}
.modal-request-wrapper .modal-container .modal-form-inf .input-block input::-moz-placeholder {
  color: #dadada;
}
.modal-request-wrapper .modal-container .modal-form-inf .input-block input::placeholder {
  color: #dadada;
}
.modal-request-wrapper .modal-container .modal-form-inf .btn-send {
  padding: 1.8rem 2rem;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  font-size: 1.6rem;
  background: radial-gradient(circle, #5f9aff 0%, #005eff 100%);
  border-radius: 1rem;
  margin: 2rem 0;
}
.modal-request-wrapper .modal-container .modal-form-inf p {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: #979797;
  text-align: center;
}

.dark {
  background-color: #000712;
}
.dark .header-container .hero .form-container .input-block {
  background-color: #2a2a2a;
}
.dark .header-container .hero .form-container .input-block input {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  width: 100%;
  background-color: #2a2a2a;
}
.dark .header-container .hero .form-container .input-block input::-moz-placeholder {
  color: #858585;
}
.dark .header-container .hero .form-container .input-block input::placeholder {
  color: #858585;
}
.dark .header-container .hero .form .submit-button {
  background: radial-gradient(circle, #0147c0 0%, #033489 100%);
}
.dark .directions-header .heading p {
  color: #fff;
}
.dark .directions-header .directions-pagination .my-pagination .numbers {
  color: #fff;
}
.dark .directions .directions-swiper .swiper-slide .directions-item .btn-want {
  background: radial-gradient(circle, #0147c0 0%, #033489 100%) !important;
}
.dark .tours .heading h2 {
  color: #fff;
}
.dark .tours .tours-item .btn-want {
  background: radial-gradient(circle, #0147c0 0%, #033489 100%);
}
.dark .why-us .heading h2 {
  color: #fff;
}
.dark .why-us .heading p {
  color: #fff !important;
}
.dark .why-us-swiper .swiper-slide .why-us-item {
  background-color: #011d4a !important;
}
.dark .why-us-swiper .swiper-slide .why-us-item:hover {
  border-color: #fff !important;
}
.dark .why-us-swiper .swiper-slide .why-us-item__img {
  background: radial-gradient(circle, #0147c0 0%, #033489 100%);
}
.dark .why-us-swiper .swiper-slide .why-us-item__title {
  color: #fff !important;
}
.dark .why-us-swiper .swiper-slide .why-us-item__description {
  color: #d5d5d5 !important;
}
.dark .about .container-lg .container-sm .about-btn {
  background: radial-gradient(circle, #0147c0 0%, #033489 100%);
}
.dark .gallery .heading h2 {
  color: #fff;
}
.dark .gallery .heading p {
  color: #fff;
}
.dark .footer .container-lg {
  background: radial-gradient(circle, #0b3070 0%, #010c1f 100%);
}
.dark .datepicker-container .datepicker {
  background-color: #2a2a2a;
}
.dark .datepicker-container .datepicker-header .monthYear {
  color: #fff;
}
.dark .datepicker-container .datepicker .days span {
  color: #7c7c7c;
}
.dark .datepicker-container .datepicker .dates button {
  color: #8a8a8a;
}
.dark .datepicker-container .datepicker .dates button:hover {
  background-color: rgba(119, 136, 153, 0.1);
}
.dark .datepicker-container .datepicker .dates button.today {
  background: rgba(72, 152, 251, 0.2);
  color: #005eff;
}
.dark .datepicker-container .datepicker .dates button.selected {
  background-color: #005eff;
  color: #fff;
}
.dark .datepicker-container .datepicker .dates button:disabled {
  color: #45454a;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.dark .counter-container {
  position: relative;
}
.dark .counter-container .counter {
  background-color: #2a2a2a;
}
.dark .counter-container .counter .counter-wrapper .counter-item .counter-title {
  color: #fff;
}
.dark .counter-container .counter .counter-wrapper .counter-item .counter-actions button {
  background-color: transparent;
}
.dark .counter-container .counter .counter-wrapper .counter-item .counter-actions span {
  color: #fff;
}
.dark .modal-request-wrapper {
  background-color: #1c1c1c;
}
.dark .modal-request-wrapper .modal-container .modal-title {
  color: #fff;
}
.dark .modal-request-wrapper .modal-container .modal-subtitle {
  color: #fff;
}
.dark .modal-request-wrapper .modal-container .modal-form input {
  border: 0.1rem solid #3b82f6;
  background-color: #2a2a2a;
  color: #fff;
}
.dark .modal-request-wrapper .modal-container .modal-form input::-moz-placeholder {
  color: #e7e7e7;
}
.dark .modal-request-wrapper .modal-container .modal-form input::placeholder {
  color: #e7e7e7;
}
.dark .modal-request-wrapper .modal-container .modal-form .btn-send {
  background: radial-gradient(circle, #0147c0 0%, #033489 100%);
}
.dark .modal-request-wrapper .modal-container .modal-form p {
  color: #9e9e9e;
}
.dark .modal-request-wrapper .modal-container .modal-form-inf .input-block {
  border: 0.1rem solid #3b82f6;
  background-color: #2a2a2a;
}
.dark .modal-request-wrapper .modal-container .modal-form-inf .input-block input {
  color: #fff;
  background-color: #2a2a2a;
}
.dark .modal-request-wrapper .modal-container .modal-form-inf .input-block input::-moz-placeholder {
  color: #e7e7e7;
}
.dark .modal-request-wrapper .modal-container .modal-form-inf .input-block input::placeholder {
  color: #e7e7e7;
}
.dark .modal-request-wrapper .modal-container .modal-form-inf .btn-send {
  background: radial-gradient(circle, #0147c0 0%, #033489 100%);
}
.dark .modal-request-wrapper .modal-container .modal-form-inf p {
  color: #9e9e9e;
}
.dark .menu__modal {
  background-color: #000712;
}
.dark .menu__modal .menu-header .close-button svg {
  fill: #fff !important;
}
.dark .menu__modal .menu-nav ul li {
  color: #dfdfdf;
}
.dark .menu__modal .menu-nav ul li .menu-nav__subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  color: #005eff;
  line-height: 1;
  margin-bottom: 1rem;
}
.dark .menu__modal .menu-nav ul li a {
  color: #dfdfdf;
}
.dark .menu__modal .menu-nav ul .menu-nav__title {
  color: #8c8c8c;
}
.dark .menu__modal .menu-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dark .menu__modal .menu-socials a {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #005eff;
}
.dark .menu__modal .menu-socials a svg {
  fill: #fff;
}
.dark .menu__modal .menu-bg {
  background-position: top !important;
  background-color: #000712;
  background-image: url("/assets/images/menu-dark.png");
}
.dark .menu__modal.active {
  left: 0;
}
.dark .modal-success .modal-success-container {
  background-color: #1c1c1c;
}
.dark .modal-success .modal-success-container .modal-success-title {
  color: #fff;
}
.dark .modal-success .modal-success-container .modal-success-subtitle {
  color: #9e9e9e;
}
.dark .modal-success .modal-success-container .btn-close {
  background: radial-gradient(circle, #0147c0 0%, #033489 100%);
}

@media (max-width: 1250px) {
  .header .theme-switcher.desktop {
    display: none;
  }
  .header .theme-switcher.mobile {
    display: flex;
  }
  .header .header-wrapper .nav {
    display: none;
  }
  .header .header-wrapper .header-actions .callback-button {
    display: none;
  }
  .header .header-wrapper .header-actions .language-button {
    display: none;
  }
  .header .header-wrapper .header-actions .btn-menu {
    display: block;
  }
}
@media (max-width: 1150px) {
  .footer-wrapper {
    flex-direction: column;
    position: relative;
  }
  .footer-wrapper .footer-actions {
    position: absolute;
    top: 0rem;
    right: 0rem;
    flex-direction: column;
    align-items: end;
  }
  .footer-wrapper .footer-actions .callback-button {
    padding: 1rem;
  }
  .footer-wrapper .footer-actions .language-button {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media (max-width: 1024px) {
  .gallery .container-lg .gallery-wrapper {
    flex-direction: column;
  }
  .gallery .container-lg .gallery-wrapper .gallery-item {
    width: 100%;
  }
  .gallery .container-lg .gallery-wrapper .gallery-item__banner {
    width: 100%;
  }
  .tours-item {
    max-height: 42rem !important;
  }
}
@media (max-width: 980px) {
  .header .hero .form {
    border-radius: 2.5rem;
  }
  .header .hero .form .form-container {
    flex-wrap: wrap;
  }
  .header .hero .form .form-container .input-block,
  .header .hero .form .form-container .counter-container,
  .header .hero .form .form-container .datepicker-container {
    width: calc(50% - 0.5rem);
    max-width: 100%;
  }
  .header .hero .form .form-container .input-block .input-block,
  .header .hero .form .form-container .counter-container .input-block,
  .header .hero .form .form-container .datepicker-container .input-block {
    width: 100%;
  }
  .header .hero .form .submit-button {
    width: 100%;
  }
}
@media (max-width: 850px) {
  .header .hero .hero-title {
    font-size: 3.2rem;
  }
  .heading h2 {
    font-size: 2.6rem;
  }
  .heading p {
    font-size: 1.6rem;
  }
  .directions-header {
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
  .directions-header .directions-pagination .my-pagination .numbers {
    font-size: 1.6rem;
  }
  .about .container-lg {
    height: 55.5rem;
  }
  .about .container-lg .about-title {
    font-size: 3.2rem !important;
    width: 50rem !important;
    margin: 0 auto;
  }
  .about .container-lg .about-title .about-title__wrapper img {
    max-width: 26rem !important;
    left: 5rem !important;
    bottom: -5rem !important;
  }
  .about .container-lg .about-description {
    font-size: 1.6rem !important;
  }
  .tours-swiper .tours-item {
    max-height: 37.5rem !important;
  }
  .tours-pagination .my-pagination .line span.active {
    width: 3rem !important;
  }
}
@media (max-width: 768px) {
  .directions-item .btn-want {
    right: 3rem !important;
    max-width: 16rem !important;
    font-size: 1.6rem !important;
  }
  .tours-item .btn-want {
    transform: translateY(0) !important;
    font-size: 1.6rem !important;
  }
  .tours-item .tours-item__content {
    transform: translateY(0) !important;
  }
  .header-container {
    padding: 2rem;
  }
  .why-us .container .why-us-swiper .swiper-slide .why-us-item {
    border: 0.2rem solid #005eff;
  }
  .dark .why-us .container .why-us-swiper .swiper-slide .why-us-item {
    border: 0.2rem solid #fff;
  }
}
@media (max-width: 680px) {
  .header .hero {
    margin: 5rem auto 0;
  }
  .header .hero .form {
    padding: 3rem;
  }
  .header .hero .form .form-container .input-block,
  .header .hero .form .form-container .counter-container,
  .header .hero .form .form-container .datepicker-container {
    width: 100%;
    max-width: 100%;
  }
  .header .hero .hero-title {
    font-size: 2.4rem;
  }
  .header .hero .hero-subtitle {
    font-size: 1.4rem;
  }
  .about .container-lg .about-title {
    font-size: 2.4rem !important;
    width: 25.5rem !important;
  }
  .about .container-lg .about-title .about-title__wrapper img {
    max-width: 15rem !important;
    left: -4rem !important;
    bottom: -3rem !important;
  }
  .gallery .container-lg .gallery-wrapper {
    flex-direction: column;
  }
  .gallery .container-lg .gallery-wrapper .gallery-item {
    width: 100%;
  }
  .gallery .container-lg .gallery-wrapper .gallery-item .gallery-img {
    height: 17.5rem !important;
  }
  .gallery .container-lg .gallery-wrapper .gallery-item__banner {
    width: 100%;
  }
  .gallery .container-lg .gallery-wrapper .gallery-item__banner .gallery-img {
    height: 17.5rem !important;
  }
}
@media (max-width: 390px) {
  .directions-item {
    padding: 2rem !important;
    aspect-ratio: 4/5 !important;
  }
  .directions-item .btn-want {
    right: 2rem !important;
    bottom: 2rem !important;
    max-width: 11rem !important;
    padding: 1rem !important;
  }
}