.roboto-regular {
  font-family: "Roboto", sans-serif;
}

.amatic-sc-regular {
  font-family: "Amatic SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.amatic-sc-bold {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: normal;
}


html{
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

*,
*::after
*::before{
  box-sizing: inherit;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  color: var(--main-color);
  transition: 0.45s;
}

li{
  list-style: none;
}

.container{
  max-width: 1600px;
  padding: 0 10px;
  margin: 0 auto;
}

img{
  max-width: 100%;
}

body{
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #1B1B1B;
  overflow-x: hidden;
}

:root {
  --main-color: #fb5b32;
  --button-color: #ff5c21; /* Цвет рамки кнопки */
  --button-hover-color: #000000;
}

.header{
  display: block;
  height: 700px;
  position: relative;
}

/* ------------- top-header ------------- */
.top-header{
  background-color: #4d40ca;
  width: 100%;
  height: 50px;
  position: absolute;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.top-header__inner{
  display: flex;
  justify-content: space-between;
}

@media (max-width: 701px){
  .top-header__inner {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    line-height: 30px;
  }
  .top-header {
    background-color: #4d40ca;
    width: 100%;
    height: 60px;
    position: absolute;
    display: flex;
    align-items: center;
    padding: 0 10px;
  }
}

@media (max-width: 571px){
  .top-header__item {
    color: #fff;
    display: none;
  }
}

.top-header__items{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

@media (max-width: 571px){
  .top-header__items{
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
  }
}

.top-header__item {
  color: #fff;
}

.fa.fa-volume-control-phone, .fa.fa-map-marker, .fa.fa-clock-o{
  font-size: 20px;
}

.top-header__phone, .top-header__item-address, .top-header__item-time{
  gap: 10px;
  display: flex;
  font-size: 14px;
  text-align: center;
  align-items: center;
}

.top-header__item-translator{
  color: #fff;
  font-size: 14px;
}

a.glink.gt-current-lang {
    font-weight: bold;
    color: var(--main-color);
}

@media (max-width: 571px){
  .top-header__item-translator {
    color: #fff;
    font-size: 19px;
  }
}

.top-header__item-translator a.active {
  color: #fb5b32;
  font-weight: bold;
}

.top-header__item-sociom {
  display: flex;
  gap: 10px;
  color: #fff;
}

@media (max-width: 571px){
  .top-header__item-sociom {
    display: flex;
    gap: 10px;
    color: #fff;
    font-size: 21px;
  }
}

.fa.fa-instagram-square, .fa.fa-facebook-square{
  font-size: 20px;
  color: red;
}

/* ==================== бургер меню ==================== */
.open{
  display: flex!important;
}
.burger {
  display: none;
  position: relative;
  z-index: 50;
  align-items: center;
  justify-content: end;
  width: 30px;
  height: 18px;
}
.burger span {
  height: 2px;
  width: 80%;
  transform: scale(1);
  background-color: var(--main-color)
}
.header.scrolled .burger span {
  background-color: #000;
}
.burger .scrolled span {
  height: 2px;
  width: 80%;
  transform: scale(1);
  background-color: #000;
}
.burger::before, .burger::after{
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #000;
  transition: all 0.3s ease 0s;
}
.burger::before{
  top: 0;
}
.burger::after{
  bottom: 0;
}
.burger.active span{
  transform: scale(0);
}
.burger.active::before{
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}
.burger.active::after{
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}

  .fa-circle:before {
    content: "\f111";
    left: -5px;
    position: relative;
  }
  
@media (min-width: 1098px){
  .burger-name{
    position: relative;
    margin-left: -20px;
    font-size: 24px;
    display: none;
  }
}

@media (min-width: 1198px){
    .btn-header {
    background-color: var(--button-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    right: 0;
    position: relative;
    margin-right: 60px;
  }
}

@media (max-width: 1309px) {
  .burger {
    display: flex;
    cursor: pointer;
  }
  .logo__img-menu{
    width: 150px;
    height: auto;
    position: absolute;
    top: 0;
    margin-top: 20px;
  }
  .menu {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    animation: burgerAnimation 0.4s;
    background-color: #fff;
  }
  .menu ul {
    flex-direction: column;
    row-gap: 30px;
  }
  .menu__list {
    font-family: "Roboto", sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-left: 30px;
    }
  .menu__link {
    font-family: "Poppins", sans-serif;
    color: #000000;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: color 0.24s ease 0s;
    letter-spacing: 0.1em;
    line-height: 10px;
  }
  .menu__link::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: 20px; 
    height: 1px; 
    width: 110%;
    background-color: #ffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.24s ease-in-out;
  }
  .menu__link:hover::after {
    transform: scaleX(1);
  }
  .translator {
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    gap: 20px;
    color: var(--main-color);
    margin-top: -180px;
    margin-bottom: 30px;
  }
  .burger__items {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .burger-name{
    position: relative;
    margin-left: -23px;
    font-size: 21px;
  }
  .btn-header {
    background-color: var(--button-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    right: 0;
    position: absolute;
    margin-right: 60px;
  }
}

@media (max-width: 1098px){
  .dropdown-center {
    position: absolute;
    right: 0;
    margin-right: 70px;
  }
}

@keyframes burgerAnimation{
  from {opacity: 0;}
  to {opacity: 1;}
}

/* ------------- header ------------- */

.bootom-header{
  width: 100%;
  position: absolute;
  top: 50px;
  padding: 10px 0;
  background-color: transparent;
  background-image: linear-gradient(180deg, #FFF6F1 0%, #FFFFFF00 100%);
}

@media (max-width: 701px){
  .bootom-header {
    width: 100%;
    position: absolute;
    top: 60px;
    padding: 10px 0;
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFF6F1 0%, #FFFFFF00 100%);
  }
}

.bootom-header__inner{
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.logo{
  width: 200px;
  min-width: 200px;
  height: auto;
}

@media (max-width: 767px){
  .logo{
    width: 120px;
    min-width: 120px;
    height: auto;
  }
}

.menu__list {
  display: flex;
  gap: 30px;
}

.fa.fa-circle{
  font-size: 5px;
  top: -4px;
  position: relative;
}

.btn-header {
  background-color: var(--button-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 12px;
  width: 14em;
  height: 3.5em;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}

@media (max-width: 571px){
  .btn-header {
    background-color: var(--button-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 12px;
    width: 14em;
    height: 3em;
    overflow: hidden;
    z-index: 1;
  }
}

.btn-header::before{
  content: '';
  position: absolute;
  width: 0;
  height: 3.5em;
  border-radius: 20px;
  color: #fff;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #000 0%, #000 100% );
  transition: .5s ease;
  display: block;
  z-index: -1;
}

.btn-header:hover::before {
  width: 14em;
}

.bootom-header__subtitle{
  text-align: center;
  margin-top: 100px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 100;
  color: var(--main-color);
  text-transform: uppercase;
}

@media (max-width: 467px){
  .bootom-header__subtitle{
    font-size: 14px;
  }
}

.bootom-header__title{
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 467px){
  .bootom-header__title {
    font-size: 35px;
  }
}

.bootom-header__text{
  text-align: center;
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: 100;
  color: gray;
  padding: 0 10px;
  margin-top: 20px;
}

.search-tour-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  position: relative;
  width: 70%;
  margin: 0 auto;
  background-color: #edebff;
  padding: 20px 20px 0;
  border-radius: 20px;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, .1);
}

[type=submit]:not(:disabled) {
    cursor: pointer;
    color: #fff !important;
    /*font-size: 21px;*/
}

.search-tour-form .label-phone {
  position: absolute;
  background-color: #edecff;
  padding: 1px 5px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: -5px;
  color: #757575;
}

.search-tour-form .label-date {
  position: absolute;
  background-color: #edecff;
  padding: 1px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: -8px;
  margin-left: 20px;
  color: #757575;
}

/*.label-container {*/
/*    box-sizing: border-box;*/
/*    width: 100%;*/
/*}*/

.label-container {
    width: 100%;
    display: block;
  }

.label-date {
    font-size: 14px;
    margin-bottom: 5px;
  }

input[type="date"] {
    width: 100%; /* Полная ширина контейнера */
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Учет границ и отступов */
    -webkit-appearance: none; /* Сброс WebKit-стилей */
    appearance: none;
  }



@media (max-width: 1125px) {
  .search-tour-form {
    grid-template-columns: 1fr;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
  }
  .search-tour-form input, .search-tour-form select {
    width: 48.6%!important;
  }
  /*.form-top-btn {*/
  /*  width: 100% !important;*/
  /*}*/
}

/*@media (max-width: 768px) {*/
/*  .label-container {*/
/*    width: 100%;  */
/*  }*/
/*}*/

/*@media (max-width: 571px) {*/
/*  .search-tour-form {*/
/*    grid-template-columns: repeat(1, 1fr);*/
/*    width: 90%;*/
/*    margin: 0 auto;*/
/*  }*/
/*}*/

.search-tour-form input:active {
  border-radius: 20px;
  border: 1px solid red !important;
  padding: 10px 20px;
}

.search-tour-form input,
.search-tour-form select {
  border-radius: 20px;
  border: 1px solid #cdcdcd;
  padding: 10px 20px;
  color: #757575 !important;
  height: 50px;
  background-color: #fff;
  font-size: 14px;
  width: 24%;
  margin: 5px;
}

.form-top-btn{
   cursor: pointer;
   background-color: #ff5c22!important;
   color: #fff!important;
   width: 49%!important;
   color: #fff!important;
   text-transform: uppercase;
   font-size: 21px;
}

.search-tour-form .form-btn {
  border-radius: 20px;
  border: none;
  padding: 10px 20px;
  position: relative;
  width: 204%;
  height: 2.7em;
  overflow: hidden;
  background-color: var(--button-color);
  color: #fff;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  z-index: 1;
  top: -13px;
}

.search-tour-form .form-btn::before{
  content: '';
  position: absolute;
  width: 0;
  height: 2.7em;
  border-radius: 20px;
  color: #fff;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #000 0%, #000 100% );
  transition: 1.5s ease;
  display: block;
  z-index: -1;
}

.search-tour-form .form-btn:hover::before {
  width: 204%;
}


@media (max-width: 468px) {
   .search-tour-form input, .search-tour-form select {
    width: 100%!important;
    margin: 5px 0;
  }
  .search-tour-form {
    padding: 20px 20px 0;
  }
  .form-top-btn {
    width: 100%!important;
  }
  /*.search-tour-form .form-btn {*/
  /*  border-radius: 20px;*/
  /*  border: none;*/
  /*  padding: 10px 20px;*/
  /*  width: 100%;*/
  /*  background-color: var(--button-color);*/
  /*  color: #fff;*/
  /*  text-align: center;*/
  /*  font-size: 18px;*/
  /*  text-transform: uppercase;*/
  /*  transition: all 0.3s ease-in-out;*/
  /*}*/
}

/* .search-tour-form .form-btn:hover {
  background-color: var(--button-hover-color);
  border-radius: 20px;
} */


.bootom-header__bg{
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: -30px;
  height: auto;
}

@media (max-width: 911px){
  .bootom-header__bg{
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0;
  }
}

/* ------------- photo reviews ------------- */
.photo-reviews{
  margin-bottom: 50px;
}

.photo-reviews-titles {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 300px;
  font-family: "Amatic SC", sans-serif;
  bottom: -80px;
}

.photo-reviews-title {
  font-family: "Amatic SC", sans-serif;
  font-weight: 100;
  font-size: 80px;
  color: #ff5c22;
}

@media (max-width: 911px){
  .photo-reviews-titles {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 230px;
    font-family: "Amatic SC", sans-serif;
  }
  .photo-reviews-title {
    font-family: "Amatic SC", sans-serif;
    font-weight: 100;
    font-size: 60px;
    color: #ff5c22;
  }
}

@media (max-width: 460px){
  .photo-reviews-titles {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-family: "Amatic SC", sans-serif;
    top: 10px;
  }
}

.photo-reviews__item {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  position: relative;
  align-items: center;
  gap: 20px;
  position: relative;
  margin-bottom: 100px;
  /* margin-top: -80px; */
}

/* .photo-reviews__one.hidden{
  position: relative;
  display: inline-block;
} */


.photo-reviews__one {
  position: relative;
  display: inline-block;
}

.photo-reviews__img-one {
  width: 100%;
  border-radius: 20px;
  height: 214px;
  object-fit: cover;
  display: block;
}

@media (max-width: 571px){
  .photo-reviews__img-one {
    width: 100%;
    height: auto;
    border-radius: 20px;
    height: 280px;
    object-fit: cover;
  }
}

.photo-reviews__two {
  position: relative;
  display: inline-block; /* Или block, в зависимости от ваших потребностей */
}

.photo-reviews__img-two {
  width: 100%;
  height: 285px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.photo-reviews__two-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  padding: 5px;
  text-align: center;
  width: 100%;
  border-radius: 0 0 20px 20px;
  font-weight: 300;
}

.photo-reviews__two-text::before{
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 300%;
  bottom: 0;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.photo-reviews__three-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.photo-reviews__three-item {
  position: relative;
  display: inline-block;
}

.photo-reviews__img-three-item-one {
  width: 100%;
  height: 160px;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 571px){
  .photo-reviews__img-three-item-one {
    width: 100%;
    height: auto;
    border-radius: 20px;
    height: 280px;
    object-fit: cover;
  }
}

.photo-reviews__img-three-item-two {
  width: 100%;
  height: 214px;
  border-radius: 20px;
  object-fit: cover;
}

.photo-reviews__four-items{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.photo-reviews__four-item {
  position: relative;
  display: inline-block;
}

.photo-reviews__img-four-item-one{
  width: 100%;
  height: 371px;
  border-radius: 20px;
  object-fit: cover;
}

.photo-reviews__img-four-item-two{
  width: 100%;
  height: 178px;
  border-radius: 20px;
  object-fit: cover;
}

.photo-reviews__five-items{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.photo-reviews__five-item {
  position: relative;
  display: inline-block;
}

.photo-reviews__img-five-item-one{
  width: 100%;
  height: 214px;
  border-radius: 20px;
  object-fit: cover;
}

.photo-reviews__img-five-item-two{
  width: 100%;
  height: 160px;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 1125px){
  .photo-reviews {
    margin-bottom: 50px;
    margin-top: 150px;
  }
}

@media (max-width: 1024px) {
  .hidden {
    display: none; /* Скрывает элементы с классом hidden */
  }
  .photo-reviews__item {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    align-items: center;
    gap: 20px;
    /* top: 50px; */
  }
}

@media (max-width: 767px) {
  .hidden {
    display: block;
  }
  .photo-reviews__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
  }
  .photo-reviews {
    margin-bottom: 50px;
    margin-top: 50px;
  }
}

@media (max-width: 571px){
  .photo-reviews {
    margin-bottom: 50px;
    margin-top: 350px;
  }
  .form-btn {
    border-radius: 20px;
    border: none;
    padding: 10px 20px;
    width: 100%;
    background-color: var(--button-color);
    color: #fff;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
  }
}
/* ------------- end photo reviews ------------- */

/* ------------- advantages ------------- */
.advantages{
  margin-bottom: 50px;
}

.advantages__title{
  text-align: center;
  margin-bottom: 60px;
  font-size: 50px;
  font-weight: 600;
}

@media (max-width: 460px){
  .advantages__title{
    text-align: center;
    margin-bottom: 60px;
    font-size: 35px;
  }  
}

.advantages__text{
  text-align: center;
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 100;
  color: var(--main-color);
}

.advantages__inner{
  background-color: #eceaff;
  width: 100%;
  height: auto;
  border-radius: 20px;
  padding: 20px;
  position: relative;
}

.advantages__bg-right {
  position: absolute;
  opacity: 0.2;
  right: 0;
  top: 0;
  width: 200px;
  height: auto;
}

.advantages__bg-left {
  position: absolute;
  opacity: 0.2;
  bottom: 0;
  width: 300px;
  height: 290px;
}

.advantages__items{
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

@media (max-width: 1181px){
  .advantages__items {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-direction: column;
  }
  .advantages__items-two {
    display: flex;
    gap: 20px;
    position: relative;
    flex-direction: row;
  }
}

.advantages__items-one {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 800px;
}

@media (max-width: 1181px){
  .advantages__items-one {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    height: 480px;
  }
}

@media (max-width: 460px) {
  .advantages__items-one {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      height: 310px;
  }
}

.advantages__box-one {
  background-color: #ef571f;
  border-radius: 20px;
  height: 100%;
  width: 100%;
}

.advantages__box-one-title {
  font-size: 50px;
  color: #fff;
  font-weight: 900;
  padding-left: 30px;
  position: relative;
  padding-top: 20px;
}

@media (max-width: 460px){
  .advantages__box-one-title {
    font-size: 30px;
    color: #fff;
    font-weight: 900;
    padding-left: 10px;
    position: relative;
    padding-top: 20px;
  }
}

.advantages__box-one-text {
  color: #fff;
  margin-left: 30px;
  width: 200px;
  font-size: 21px;
  margin-bottom: 40px;
}

@media (max-width: 460px){
  .advantages__box-one-text {
    color: #fff;
    margin-left: 10px;
    width: 200px;
    font-size: 16px;
    margin-bottom: 40px;
    width: 100px;
  }
}

.advantages__item {
  position: relative;
  overflow: hidden;
}

.advantages__item__bg-left {
  position: absolute;
  width: 290px;
  left: 210px;
  margin-top: -69px;
}

.advantages__box-one-img {
  border-radius: 20px;
  width: 100%;
  height: 330px;
  object-fit: cover;
  bottom: 0;
  position: absolute;
}

@media (max-width: 460px){
  .advantages__box-one-img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    position: absolute;
    height: 160px;
  }
}

.advantages__box-two{
  background-color: #4e40ca;
  border-radius: 20px;
  height: 100%;
  width: 100%;
}

.advantages__box-two-title {
  font-size: 50px;
  color: #fff;
  font-weight: 900;
  padding-left: 30px;
  position: relative;
  padding-top: 20px;
}

@media (max-width: 460px){
  .advantages__box-two-title {
    font-size: 30px;
    color: #fff;
    font-weight: 900;
    padding-left: 10px;
    position: relative;
    padding-top: 20px;
  }
}

.advantages__box-two-text {
  color: #fff;
  margin-left: 30px;
  width: 200px;
  font-size: 21px;
  margin-bottom: 40px;
}

@media (max-width: 460px){
  .advantages__box-two-text {
    color: #fff;
    margin-left: 10px;
    width: 200px;
    font-size: 16px;
    margin-bottom: 40px;
    width: 100px;
  }
}

.advantages__box-two-img {
  border-radius: 20px;
  width: 100%;
  height: 330px;
  object-fit: cover;
  bottom: 0;
  position: absolute;
}

@media (max-width: 460px){
  .advantages__box-two-img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    position: absolute;
    height: 160px;
  }
}

.advantages__box-one-vertical,
.advantages__box-two-vertical,
.advantages__box-three-vertical {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  background-color: #fff;
  border-radius: 20px;
  padding: 15px;
  align-items: center;
}

@media (max-width: 1181px){
  .advantages__box-one-vertical, .advantages__box-two-vertical, .advantages__box-three-vertical {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 781px){
  .advantages__box-one-vertical, .advantages__box-two-vertical, .advantages__box-three-vertical {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}

.advantages__box-one-vertical-icons, 
.advantages__box-two-vertical-icons,
.advantages__box-three-vertical-icons {
  width: 50px;
  height: auto;
}

.advantages__items-two {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  /* width: 550px; */
}

@media (max-width: 1181px){
  .advantages__items-two {
    display: flex;
    gap: 20px;
    position: relative;
    flex-direction: row;
    width: 100%;
  }
}

@media (max-width: 781px){
  .advantages__items-two {
    display: flex;
    gap: 20px;
    position: relative;
    flex-direction: column;
    width: 100%;
  }
}

.advantages__box-one-vertical-title,
.advantages__box-two-vertical-title,
.advantages__box-three-vertical-title {
  font-size: 21px;
  margin-bottom: 10px;
}

.advantages__box-one-vertical-text,
.advantages__box-two-vertical-text,
.advantages__box-three-vertical-text {
  max-width: 250px;
  font-size: 16px;
}
/* ------------- end advantages ------------- */

/* ------------- tours ------------- */
.tours {
  margin-bottom: 50px;
}
.tours .container{
  max-width: 1400px;
}

.tours__text{
  text-align: center;
  margin-top: 100px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 100;
  color: var(--main-color);
}

.tours__title{
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 460px){
  .tours__title{
    text-align: center;
    font-size: 35px;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 10px 0;
  z-index: 1;
  display: block;
  margin-top: 30px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.swiper-slide img {
  display: block;
  width: 95%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.tours .swiper-slide::before {
  content: '';
  position: absolute;
  width: 95%;
  height: 300px;
  top: 0;
  background: rgb(16 16 16 / 9%);
  border-radius: 20px;
}

.swiper-slide .sale{
  font-size: 14px;
  font-weight: 500;
  background-color: red;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 45px;
  padding: 0 10px;
  border-radius: 0 20px 20px 0;
  margin-left: 2.5%;
}

.swiper-slide .accent{
  font-size: 14px;
  font-weight: 500;
  background-color: #4e40ca;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 20px;
  padding: 0 10px;
  border-radius: 0 20px 20px 0;
  margin-left: 2.5%;
}

.swiper-slide__items {
  background-color: #fff;
  width: 95%;
  height: auto;
  border-radius: 20px;
  margin-top: -30px;
  padding: 20px;
  /* box-shadow: 0px -1px 10px 0px rgb(220, 218, 218); */
  box-shadow: 0 4px 10px 0 rgb(77 76 76 / 10%);
  z-index: 1;
}

.swiper-slide__item {
  border-bottom: 1px dashed #bfbfbf;
  margin-bottom: 20px;
}

.swiper-slide__item-title {
  font-size: 16px;
  text-align: start;
  color: var(--main-color);
  height: auto;
  margin-bottom: 3px;
}

.swiper-slide__item-subtitle {
  font-size: 14px;
  text-align: start;
  margin-bottom: 10px;
  color: #acacac;
}

.swiper-slide__items-infos{
  display: flex;
}

.swiper-slide-info__item {
  height: 160px;
}

.swiper-slide-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.swiper-slide-info__apartament{
  text-align: start;
  display: flex;
  align-items: center;
}

.fa-calendar-days:before {
  content: "\f073";
  color: #4e40ca;
  margin-left: 4px;
}

.fa-plane:before {
  content: "\f072";
  color: #4e40ca;
}

.fa-utensils:before {
  content: "\f2e7";
  color: #4e40ca;
  margin-left: 2px;
}

.fa-heart:before {
  content: "\f004";
  color: var(--main-color);
  font-size: 22px;
  transition: 0.5s;
}

.fa-heart:hover:before {
  content: "\f004";
  color: #ffffff;
  cursor: pointer;
  transition: 0.5s;
}

.tours .fa-location-dot:before {
  content: "\f3c5";
  color: #4e40ca;
}

.fa-bed:before {
  content: "\f236";
  color: #4e40ca;
  margin-left: -3px;
}

.fa-user-group:before {
  content: "\f500";
  color: #4e40ca;
}

.swiper-slide-heart__item {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 20px;
  margin-top: 20px;
  color: #fff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: rgb(255 255 255 / 19%);
  padding: 10px 5px 5px 5px;
  border-radius: 20px;
}

.fa-arrow-left:before {
  content: "\f060";
  padding: 15px;
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.fa-arrow-left:hover:before{
  background-color: #000;
}

.fa-arrow-right:before {
  content: "\f061";
  padding: 15px;
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.fa-arrow-right:hover:before{
  background-color: #000;
}

.swiper-slide-info span{
  font-size: 14px;
}

.swiper-slide-price {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.swiper-slide-price__sale{
  font-size: 16px;
  text-decoration: line-through;
  color: #bfbfbf;
  position: absolute;
  /* margin-left: 180px; */
  margin-top: -15px;
}

.swiper-slide-price__title {
  font-size: 35px;
  font-weight: 900;
  color: var(--main-color);
  text-align: start;
}

.swiper-slide-price__text {
  font-size: 14px;
  gap: 10px;
  display: flex;
  align-items: center;
  text-align: start;
}

.swiper-slide__btn {
  /* background-color: var(--button-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out; */
  border-radius: 20px;
  border: none;
  padding: 10px 20px;
  position: relative;
  width: 13em;
  height: 2.5em;
  overflow: hidden;
  background-color: var(--button-color);
  color: #fff;
  text-align: center;
  font-size: 18px;
  z-index: 1;
}

.swiper-slide__btn::before{
  content: '';
  position: absolute;
  width: 0;
  height: 2.5em;
  border-radius: 20px;
  color: #fff;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #000 0%, #000 100% );
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}

.swiper-slide__btn:hover::before {
  width: 13em;
}

/* .swiper-slide__btn:hover {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
} */

.swiper-button-next:after, 
.swiper-button-prev:after{
  content: none;
}

.container-arrow {
  position: relative;
  padding: 0;
  max-width: 1400px;
}

.about__arrow {
  margin-top: 60px;
  top: -30px;
}

.swiper-button-prev {
  right: 0;
  left: auto;
  margin-right: 65px;
}

.swiper-button-next, .swiper-button-prev, img{
  width: 55px;
  height: 33px;
}

/* Анимация легкого сдвига */
@keyframes slideHint {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px); /* сдвиг влево */
  }
  100% {
    transform: translateX(0); /* возвращение */
  }
}

/* Класс для применения анимации */
.swiper-slide.hint {
  animation: slideHint 0.6s ease;
}

/* ------------- end tours ------------- */

/* ------------- best offers ------------- */
.best-offers{
  margin-bottom: 50px;
}

@media (min-width: 1301px) {
  .best-offers__img-left {
    width: 180px;
    height: auto;
    position: absolute;
    right: 0;
    z-index: -1;
    margin-top: 180px;
    opacity: 0.2;
  }
  .best-offers__img-right{
    width: 180px;
    height: auto;
    position: absolute;
    left: 0;
    z-index: -1;
    opacity: 0.2;
    margin-top: -350px;
  }
}

@media (max-width: 1300px) {
  .best-offers__img-left {
    display: none;
  }
  .best-offers__img-right{
    display: none;
  }
}


.best-offers__iiner {
  gap: 20px;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.best-offers__text {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 100;
  color: var(--main-color);
}

.best-offers__title {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 460px){
  .best-offers__title {
    font-size: 35px;
  }
}

.best-offers__items-one {
  display: flex;
  justify-items: center;
  justify-content: center;
  gap: 20px;
  /* flex-wrap: wrap; */
  display: none;
}

@media (max-width: 767px){
  .best-offers__items-one {
    display: flex;
    justify-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    display: none;
  }
}

.best-offers__item-one{
  background-image: url(/img/h1_deal-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 404px;
  height: 440px;
  border-radius: 20px;
}

.best-offers__item-subtitle-one {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
}

.best-offers__item-title-one {
  text-align: center;
  font-size: 30px;
  max-width: 350px;
  margin: 0 auto;
  line-height: 30px;
  color: #fff;
  /* margin-bottom: 40px; */
  margin-top: 30px;
}

.best-offers__btn-one {
  margin: 0 auto;
  display: block;
}

.best-offers__item-two{
  background-image: url(/img/h1_deal-2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 404px;
  height: 440px;
  border-radius: 20px;
}

.best-offers__item-subtitle-two {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
}

.best-offers__item-title-two {
  text-align: center;
  font-size: 30px;
  max-width: 350px;
  margin: 0 auto;
  line-height: 30px;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  font-weight: 900;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
}

/* .best-offers__item-title-two span {
  font-size: 16px;
  display: flex;
  line-height: 20px;
  justify-content: flex-end;
  align-items: center;
  text-align: start;
  font-weight: 400;
} */

.best-offers__item-three{
  background-image: url(/img/h1_deal-3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 404px;
  height: 440px;
  border-radius: 20px;
}

.best-offers__item-subtitle-three {
  text-align: center;
  /* margin-top: 10px; */
  font-size: 16px;
  color: #fff;
  /* margin-bottom: 30px; */
  max-width: 350px;
  margin: 0 auto;
  padding: 0 10px;
}

.best-offers__item-title-three {
  text-align: center;
  margin-top: 20px;
  font-size: 30px;
  color: #fff;
  padding: 0 40px;
  /* margin-bottom: 30px; */
}

.best-offers__items-two {
  display: flex;
  gap: 20px;
  justify-content: center;
  /* flex-wrap: wrap; */
}

.best-offers__item-subtitle-two-price {
  font-size: 35px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  margin-left: 30px;
  position: relative;
}

@media (max-width: 767px){
  .best-offers__items-two {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.best-offers__btn-two {
  display: block;
}

.best-offers__item-four{
  background-image: url(/img/pexels-vome-3714137.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 615px;
  height: 350px;
  border-radius: 20px;
  position: relative;
}

.best-offers__item-four::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 350px;
  bottom: 0;
  top: 0;
  border-radius: 20px;
  background: linear-gradient(80deg, rgb(255 144 0) 0%, rgba(0, 0, 0, 0.031) 80%);
}

.best-offers__item-subtitle-four {
  font-size: 16px;
  color: #dcdcdc;
  margin-bottom: 20px;
  padding: 0 30px;
  max-width: 330px;
  position: relative;
}

@media (max-width: 967px){
  .best-offers__item-subtitle-four {
    font-size: 18px;
    margin-bottom: 50px;
    padding: 0 30px;
    max-width: 300px;
    position: relative;
  }
}

.best-offers__item-title-four {
  margin-top: 20px;
  font-size: 29px;
  color: #fff;
  margin-bottom: 10px;
  padding: 0 30px;
  max-width: 460px;
  position: relative;
}

@media (max-width: 967px){
  .best-offers__item-title-four {
    margin-top: 20px;
    font-size: 23px;
    margin-bottom: 10px;
    padding: 0 30px;
    max-width: 360px;
    position: relative;
  }
}

.best-offers__item-text-four {
  font-size: 21px;
  color: #fff;
  margin-bottom: 50px;
  padding: 0 30px;
}

.best-offers__btn-two {
  left: 30px;
  position: relative;
}

.best-offers__item-five{
  background-image: url(/img/formula1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 615px;
  height: 350px;
  border-radius: 20px;
  position: relative;
}

.best-offers__item-five::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 350px;
  bottom: 0;
  top: 0;
  border-radius: 20px;
  background: linear-gradient(80deg, rgb(255 0 0) 0%, rgba(0, 0, 0, 0.031) 80%);
}

.best-offers__item-subtitle-five {
  font-size: 16px;
  color: #dcdcdc;
  margin-bottom: 20px;
  padding: 0 30px;
  max-width: 330px;
  position: relative;
}

@media (max-width: 967px){
  .best-offers__item-subtitle-five {
    font-size: 18px;
    margin-bottom: 50px;
    padding: 0 30px;
    max-width: 320px;
    position: relative;
  }
}

.best-offers__item-title-five {
  margin-top: 20px;
  font-size: 29px;
  color: #fff;
  margin-bottom: 10px;
  padding: 0 30px;
  max-width: 400px;
  position: relative;
}

@media (max-width: 967px){
  .best-offers__item-title-five {
    margin-top: 20px;
    font-size: 23px;
    color: #fff;
    margin-bottom: 10px;
    padding: 0 30px;
    max-width: 300px;
    position: relative;
  }
}

/* .best-offers__item-text-five {
  font-size: 21px;
  color: #fff;
  margin-bottom: 50px;
  padding: 0 30px;
} */

.best-offers__item-subtitle-one-price {
  font-size: 35px;
  font-weight: 900;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 30px;
}

/* .best-offers__item-text-five span{
  color: var(--main-color)
} */

.best-offers__item-img {
  width: 380px;
  height: 440px;
  border-radius: 20px;
}
/* ------------- end best offers ------------- */

/* ------------- journey ------------- */
.journey{
/* margin-bottom: 100px; */
  background-color: transparent;
  background-image: linear-gradient(360deg, #FFF6F1 0%, #FFFFFF00 100%);
  position: relative;
}

.journey .container{
  max-width: 1400px;
}

.journey__text {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 100;
  color: var(--main-color);
}

.journey__title {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 460px) {
  .journey__title {
    font-size: 35px;
  }
}

.journey .swiper {
  width: 100%;
  height: 100%;
}

.journey.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.journey .swiper-slide img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  padding: 10px;
}

.journey .swiper-slide-heart__item {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 20px;
  margin-top: 90px;
  color: #fff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: rgb(255 255 255 / 19%);
  padding: 10px 5px 5px 5px;
  border-radius: 20px;
}

.tab-content { 
  display: none; 
}

.tab-content.active { 
  display: block; 
}

.tabs { 
  display: flex;
  cursor: pointer;
  justify-content: center;
  margin-top: 30px;
  text-transform: uppercase;
  margin-bottom: 100px;
}

@media (max-width: 460px) {
  .tabs { 
    display: flex;
    overflow-x: scroll;
    white-space: nowrap;
    scrollbar-width: none;
    justify-content: flex-start;
    letter-spacing: 0.038em;
    align-items: center;
  }
  .tabs::after{
    content: '';
    position: absolute;
    left: 0;
    width: 40%;
    height: 30px;
    background: linear-gradient(90deg, rgb(255 255 255) 0%, rgb(0 0 0 / 0%) 50%);
    pointer-events: none;
  }
  .tabs::before{
    content: '';
    position: absolute;
    right: 0;
    width: 40%;
    height: 30px;
    background: linear-gradient(-90deg, rgb(255 255 255) 0%, rgb(0 0 0 / 0%) 50%);
    pointer-events: none;
  }
}

.tab { 
  padding: 10px; 
  margin-right: 5px; 
  color: #000;
}

.tab:hover { 
  color: var(--main-color);
}

.tab.active { 
  color: var(--main-color); 
}

.journey .swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 10px;
  z-index: 0;
  display: block;
  bottom: 100px;
}

.journey .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #f5f5fb;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid #e8e8ff;
}

.journey .swiper-slide__item {
  border-bottom: none;
  margin-bottom: -5px;
  margin-top: 5px;
  margin-left: 15px;
  height: 70px;
}

.journey .swiper-slide-info__item {
  height: 160px;
  margin-left: 15px;
  margin-top: 20px;
}

.journey .swiper-slide-price {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  margin-left: 15px;
}

.journey .swiper-slide__btn {
  background-color: var(--button-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
  margin-bottom: 20px;
}

.journey .swiper-slide__item-title {
  font-size: 16px;
  text-align: start;
  color: var(--main-color);
  line-height: 20px;
  height: auto;
  margin-bottom: 3px;
}

.journey .swiper-slide__item-subtitle {
  font-size: 14px;
  text-align: start;
  margin-bottom: 0px;
  color: #acacac;
}

.journey .swiper-slide-price__subtitle {
  font-size: 12px;
  text-align: start;
  color: green;
  width: 230px;
}

.journey .swiper-slide-price__text {
  font-size: 14px;
  gap: 10px;
  display: flex;
  align-items: center;
  text-align: start;
  margin-bottom: 10px;
}

.journey .swiper-slide-price__item {
  height: 100px;
}

.journey .accent{
  margin-top: 90px;
  position: absolute;
  margin-left: 10px;
}

.journey .sale{
  margin-top: 115px;
  position: absolute;
  margin-left: 10px;
}

.journey .fa-location-dot:before {
  content: "\f3c5";
  color: #4e40ca;
}

/* .swiper-button-lock {
  display: block;
} */

/* ------------- end journey ------------- */

/* ------------- telegram ------------- */
.telegram {
  margin-bottom: 100px;
  position: relative;
  z-index: 0;
}

.telegram .container {
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
}

.telegram__inner {
  /* background-color: #fff6f1; */
  /* width: 100%; */
  background-color: transparent;
  background-image: linear-gradient(180deg, #FFF6F1 0%, #FFFFFF00 100%);
}

.telegram__items {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.telegram__content__left-item {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.telegram__title {
  font-size: 50px;
  max-width: 750px;
  margin-top: 50px;
  margin-bottom: 20px;
  left: 30px;
  position: relative;
}

.telegram__text {
  font-size: 20px;
  max-width: 640px;
  left: 30px;
  position: relative;
  margin-bottom: 50px;
}

.telegram__btn {
  background-color: #169bdc;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  /* transition: all 0.3s ease-in-out; */
  left: 30px;
  position: relative;
  top: -20px;
  width: 14em;
  height: 2.7em;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}

.telegram__btn::before{
  content: '';
  position: absolute;
  width: 0;
  height: 2.7em;
  border-radius: 20px;
  color: #fff;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #000 0%, #000 100% );
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}

.telegram__btn:hover::before {
  width: 14em;
}

.telegram__btn:hover{
  color: #fff;
}

.telegram__content__right-img {
  display: flex;
}

/* .telegram__left-bg {
  position: absolute;
  width: 300px;
  height: auto;
  opacity: 0.2;
} */

.telegram__right-bg {
  position: absolute;
  width: 300px;
  height: auto;
  margin-left: -100px;
  /* margin-top: 50px; */
  opacity: 0.2;
}

.telegram__content-item {
  width: 100%;
  height: 500px;
  position: relative;
}

@media (max-width: 1039px) {
  .telegram__btn {
    background-color: #169bdc;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    left: 30px;
    position: relative;
    top: -20px;
  }
  .telegram__content-item {
    width: 100%;
    height: 400px;
    position: relative;
    display: none;
  }
  .telegram__right-bg{
    /* display: none; */
    right: 0;
    top: 0;
  }
}

@media (max-width: 903px) {
  .telegram__title {
    font-size: 39px;
    width: 550px;
    left: 0;
  }
  .telegram__text {
    font-size: 20px;
    width: 540px;
    left: 0;
  }
  .telegram__btn {
    left: 0;
  }
}

@media (max-width: 468px) {
  .telegram__title {
    font-size: 29px;
    width: 300px;
    left: 0;
  }
  .telegram__text {
    font-size: 20px;
    width: 300px;
    left: 0;
  }
  .telegram__btn {
    left: 0;
  }
  .telegram__right-bg{
    /* display: none; */
    right: 0;
    top: 0;
  }
}

/* ------------- end telegram ------------- */

/* ------------- bus-tours ------------- */
.bus-tours{
  margin-bottom: 100px;
}

.bus-tours .container{
  max-width: 900px;
  max-width: 1380px;
}

.bus-tours__items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 0 20px;
  margin-bottom: 50px;
}

/* @media (max-width: 1390px){
  .bus-tours__items-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 0 20px;
  }
} */

.bus-tours__items {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  width: 100%;
  gap: 20px;
  margin: 0 auto;
  border-radius: 10px;
  align-items: center;
  margin-bottom: 20px;
  /* box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .15); */
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .1);
}

@media (min-width: 768px){
  .bus-tours__item-info {
    border-right: 1px solid #eeeeee;
    height: 100%;
    padding: 0 20px 10px 0;
  }
}

.bus-tours__text{
  text-align: center;
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 100;
  color: var(--main-color);
}

.bus-tours_title{
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.bus-tours__item-img {
  display: flex;
}

.bus-tours__item-img img{
  width: 100%;
  /* height: 210px; */
  height: 250px;
  object-fit: cover;
  min-width: 250px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .1);
}

.bus-tours__item-data{
  font-size: 14px;
  color: #646464;
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.bus-tours__item-data .fa-calendar-days:before {
  content: "\f073";
  color: #4e40ca;
  margin-left: 4px;
  margin-right: 11px;
}

.bus-tours__item-title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.2em;
}

.bus-tours__item-city {
  font-size: 12px;
  color: #646464;
  margin-bottom: 15px;
  height: 70px;
}

.bus-tours__item-city span {
  font-size: 16px;
  color: #4e40ca;
}

.fa-bus:before {
  content: "\f207";
  color: #4e40ca;
}

.bus-tours__item-food {
  gap: 10px;
  display: flex;
  align-items: baseline;
  font-size: 14px;
  color: #646464;
}

.bus-tours__item-food span{
  font-weight: 600;
  color: #000;
}

.bus-tours__item-box {
  display: flex;
  flex-wrap: wrap;
}

.bus-tours__item-price{
  color: #646464;
  font-size: 16px;
  line-height: 1.2em;
}

.bus-tours__item-price span{
  color: var(--main-color);
  /* font-size: 28px; */
  font-size: 22px;
  font-weight: 600;
}

.bus-tours__item-piple {
  font-size: 14px;
  color: #646464;
}

.bus-tours__item-btn {
  cursor: pointer;
  background-color: var(--button-color);
  border: none;
  border-radius: 20px;
  color: #fff;
  padding: 5px 20px;
  top: 10px;
  position: relative;
  width: 7em;
  height: 2em;
  overflow: hidden;
  z-index: 1;
}

.bus-tours__item-btn::before{
  content: '';
  position: absolute;
  width: 0;
  height: 2em;
  border-radius: 20px;
  color: #fff;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #000 0%, #000 100% );
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}

.bus-tours__item-btn:hover::before {
  width: 7em;
}

/* .bus-tours__item-btn:hover{
  background-color: #000;
  color: #fff;
} */

.bus-tours .hidden {
  display: none;
}

.load-more-btn {
  position: relative;
  cursor: pointer;
  background-color: var(--button-color);
  border: none;
  border-radius: 20px;
  color: #fff;
  padding: 10px 30px;
  display: block;
  margin: 0 auto;
  width: 12em;
  height: 2.7em;
  overflow: hidden;
  z-index: 1;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}

.load-more-btn::before{
  content: '';
  position: absolute;
  width: 0;
  height: 2.7em;
  border-radius: 20px;
  color: #fff;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #000 0%, #000 100% );
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}

.load-more-btn:hover::before {
  width: 12em;
}

@media (max-width: 1390px) {
  .bus-tours__items {
    grid-template-columns: 1fr; 
  }
  .bus-tours__item-img img {
    border-radius: 10px 10px 0 0;
    height: 270px;
  }
  .bus-tours__item-info {
    border-bottom: 1px solid #eeeeee;
    height: 100%;
    padding: 0 10px 10px;
  }
  .bus-tours__item-box {
    display: grid;
    justify-items: start;
    grid-template-columns: 3fr 1fr;
    align-items: start;
    padding: 0 10px;
  }
  .bus-tours__items {
    gap: 0;
  }
  /* .bus-tours__item-btn {
    padding: 10px 40px;
  } */
  .bus-tours__item-price {
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .bus-tours__items {
    grid-template-columns: 1fr; 
  }
  .bus-tours__item-img img {
    border-radius: 10px 10px 0 0;
    height: 270px;
  }
  .bus-tours__item-info {
    border-bottom: 1px solid #eeeeee;
    height: 100%;
    padding: 0 10px 10px;
  }
  .bus-tours__item-box {
    display: grid;
    justify-items: start;
    grid-template-columns: 3fr 1fr;
    align-items: baseline;
    padding: 0 10px;
  }
  .bus-tours__items {
    gap: 0;
  }
  /* .bus-tours__item-btn {
    padding: 10px 40px;
  } */
  .bus-tours__item-price {
    padding: 10px 0;
  }
}

@media (max-width: 468px){
  .bus-tours__items-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 0 20px;
  }
  .bus-tours{
    margin-bottom: 100px;
  }
.bus-tours_title{
  font-size: 35px;
  }
}

/* ------------- end bus-tours ------------- */

/* ------------- form-bottom ------------- */
.form-bottom__items {
  display: flex;
  justify-content: center;
  /*gap: 20px;*/
  margin-bottom: 100px;
}

/*.form-bottom {*/
/*  display: flex;*/
/*  flex-direction: row;*/
/*  align-items: baseline;*/
/*  margin-bottom: 100px;*/
/*}*/

.form-bottom-title {
  font-size: 36px;
  max-width: 500px;
  margin-bottom: 10px;
}

.form-bottom-text {
  font-size: 16px;
  margin-bottom: 30px;
  width: 300px;
}

.form-bottom-img{
  width: 700px;
  height: auto;
}

.form-bottom__name {
  margin-top: 20px;
  position: absolute;
  margin-left: 20px;
  background-color: #fff;
  padding: 0 5px;
  color: #757575;
  border-radius: 20px;
  font-size: 16px;
}

.form-bottom__phone {
  margin-top: 20px;
  position: absolute;
  margin-left: 185px;
  background-color: #fff;
  padding: 0 5px;
  color: #757575;
  border-radius: 20px;
  font-size: 16px;
}

.form-bottom__btn {
  position: relative;
  background-color: var(--main-color);
  color: #fff;
}

.form-bottom__btn:hover {
  width: 30%;
  background-color: #000;
  transition: all 1s ease;
}

.form-bottom input {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 13px;
  height: 42px;
  width: 30%;
  margin-left: 10px;
}

@media (max-width: 468px){
  .form-bottom__items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
  }
  .form-bottom {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .form-bottom input {
    width: 100%;
    margin-left: 0;
  }
  .form-bottom__btn {
    position: relative;
    width: 100%;
  }
  .form-bottom__name {
    margin-top: -5px;
  }
  .form-bottom__phone {
    margin-top: 50px;
    margin-left: 18px;
  }
  .form-bottom-title {
    font-size: 27px;
  }
  /*.form-bottom-img {*/
  /*  margin-top: -50px;*/
  /*}*/
}

@media (min-width: 468px){
.form-bottom__item {
    width: 600px;
  }
}
/* ------------- end form-bottom ------------- */

/* ------------- wonderfult offers ------------- */
.wonderful-offers{
  margin-bottom: 50px;
}

@media (min-width: 1301px) {
  .wonderful-offers__img-left {
    width: 180px;
    height: auto;
    position: absolute;
    right: 0;
    z-index: -1;
    margin-top: 180px;
    opacity: 0.2;
  }
  .wonderful-offers__img-right{
    width: 180px;
    height: auto;
    position: absolute;
    left: 0;
    z-index: -1;
    opacity: 0.2;
    margin-top: -350px;
  }
}

@media (max-width: 1300px) {
  .wonderful-offers__img-left {
    display: none;
  }
  .wonderful-offers__img-right{
    display: none;
  }
}


.wonderful-offers__iiner {
  gap: 20px;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.wonderful-offers__text {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 100;
  color: var(--main-color);
}

.wonderful-offers__title {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 460px){
  .wonderful-offers__title {
    font-size: 35px;
  }
}

.wonderful-offers__items-one {
  display: flex;
  justify-items: center;
  justify-content: center;
  gap: 20px;
  /* flex-wrap: wrap; */
  display: none;
}

@media (max-width: 767px){
  .wonderful-offers__items-one {
    display: flex;
    justify-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
}

.wonderful-offers__item-one{
  background-image: url(/img/h1_deal-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 404px;
  height: 440px;
  border-radius: 20px;
}

.wonderful-offers__item-subtitle-one {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
}

.wonderful-offers__item-title-one {
  text-align: center;
  font-size: 30px;
  max-width: 350px;
  margin: 0 auto;
  line-height: 30px;
  color: #fff;
  /* margin-bottom: 40px; */
  margin-top: 30px;
}

.wonderful-offers__btn-one {
  margin: 0 auto;
  display: block;
}

.wonderful-offers__item-two{
  background-image: url(/img/h1_deal-2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 404px;
  height: 440px;
  border-radius: 20px;
}

.wonderful-offers__item-subtitle-two {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
}

.wonderful-offers__item-title-two {
  text-align: center;
  font-size: 30px;
  max-width: 350px;
  margin: 0 auto;
  line-height: 30px;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  font-weight: 900;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
}

/* .best-offers__item-title-two span {
  font-size: 16px;
  display: flex;
  line-height: 20px;
  justify-content: flex-end;
  align-items: center;
  text-align: start;
  font-weight: 400;
} */

.wonderful-offers__item-three{
  background-image: url(/img/h1_deal-3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 404px;
  height: 440px;
  border-radius: 20px;
}

.wonderful-offers__item-subtitle-three {
  text-align: center;
  /* margin-top: 10px; */
  font-size: 16px;
  color: #fff;
  /* margin-bottom: 30px; */
  max-width: 350px;
  margin: 0 auto;
  padding: 0 10px;
}

.wonderful-offers__item-title-three {
  text-align: center;
  margin-top: 20px;
  font-size: 30px;
  color: #fff;
  padding: 0 40px;
  /* margin-bottom: 30px; */
}

.wonderful-offers__items-two {
  display: flex;
  gap: 20px;
  justify-content: center;
  /* flex-wrap: wrap; */
  margin-bottom: 100px;
}

.wonderful-offers__item-subtitle-two-price {
  font-size: 35px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  margin-left: 30px;
  position: relative;
}

@media (max-width: 767px){
  .wonderful-offers__items-two {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.wonderful-offers__btn-two {
  display: block;
}

.wonderful-offers__item-four{
  background-image: url(/img/pexels-lahbabi-10906311.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 615px;
  height: 350px;
  border-radius: 20px;
  position: relative;
}


.wonderful-offers__item-four::before {
  content: '';
  position: absolute;
  right: 0;
  width: 100%;
  height: 350px;
  bottom: 0;
  top: 0;
  border-radius: 20px;
  background: linear-gradient(80deg, rgb(71 0 255 / 84%) 0%, rgba(0, 0, 0, 0.031) 80%);
}

.wonderful-offers__item-subtitle-four {
  font-size: 16px;
  color: #dcdcdc;
  margin-bottom: 20px;
  padding: 0 30px;
  max-width: 330px;
  position: relative;
}

@media (max-width: 967px){
  .wonderful-offers__item-subtitle-four {
    font-size: 18px;
    margin-bottom: 50px;
    padding: 0 30px;
    max-width: 300px;
    position: relative;
  }
}

.wonderful-offers__item-title-four {
  margin-top: 20px;
  font-size: 29px;
  color: #fff;
  margin-bottom: 10px;
  padding: 0 30px;
  max-width: 400px;
  position: relative;
}

@media (max-width: 967px){
  .wonderful-offers__item-title-four {
    margin-top: 20px;
    font-size: 23px;
    margin-bottom: 10px;
    padding: 0 30px;
    max-width: 360px;
    position: relative;
  }
}

.wonderful-offers__item-text-four {
  font-size: 21px;
  color: #fff;
  margin-bottom: 50px;
  padding: 0 30px;
}

.wonderful-offers__btn-two {
  left: 30px;
  position: relative;
}

.wonderful-offers__item-five{
  background-image: url(/img/pexels-thatguycraig000-3411132.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 615px;
  height: 350px;
  border-radius: 20px;
  position: relative;
}

.wonderful-offers__item-five::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 350px;
  bottom: 0;
  top: 0;
  border-radius: 20px;
  background: linear-gradient(80deg, rgb(0 113 255 / 84%) 0%, rgba(0, 0, 0, 0.031) 80%);
}

.wonderful-offers__item-subtitle-five {
  font-size: 16px;
  color: #dcdcdc;
  margin-bottom: 20px;
  padding: 0 30px;
  max-width: 330px;
  position: relative;
}

@media (max-width: 967px){
  .wonderful-offers__item-subtitle-five {
    font-size: 18px;
    margin-bottom: 50px;
    padding: 0 30px;
    max-width: 320px;
    position: relative;
  }
}

.wonderful-offers__item-title-five {
  margin-top: 20px;
  font-size: 29px;
  color: #fff;
  margin-bottom: 10px;
  padding: 0 30px;
  max-width: 400px;
  position: relative;
}

@media (max-width: 967px){
  .wonderful-offers__item-title-five {
    margin-top: 20px;
    font-size: 23px;
    color: #fff;
    margin-bottom: 10px;
    padding: 0 30px;
    max-width: 300px;
    position: relative;
  }
}

/* .best-offers__item-text-five {
  font-size: 21px;
  color: #fff;
  margin-bottom: 50px;
  padding: 0 30px;
} */

.wonderful-offers__item-subtitle-one-price {
  font-size: 35px;
  font-weight: 900;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 30px;
}

/* .best-offers__item-text-five span{
  color: var(--main-color)
} */

.wonderful-offers__item-img {
  width: 380px;
  height: 440px;
  border-radius: 20px;
}
/* ------------- end wonderful offers ------------- */

/* ------------- reviews ------------- */
.reviews {
  margin-bottom: 100px;
}


.reviews-title {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.reviews-title span{
color: var(--main-color)
}

.swiper.mySwiperReviews {
  width: 60%;
  height: 100%;
}

.swiper-slide.mySwiperReviews{
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide.mySwiperReviews img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--main-color);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--main-color);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.swiper-pagination {
  position: relative;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  margin-top: 70px;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--main-color);
}

@media (max-width: 468px){
  .reviews-title {
    font-size: 35px;
  }
  .swiper.mySwiperReviews {
    width: 100%;
    height: 100%;
  }
  .swiper-slide {
    font-size: 16px;
  }
}
/* ------------- end reviews ------------- */

/* ------------- seo-text ------------- */
.seo-text{
margin-bottom: 20px;
}

.seo-text .container{
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}

.seo-text h2{
  font-size: 36px;
}

.seo-text h3{
  font-size: 26px;
}

/*#myBtn{*/
/*  padding: 5px 20px;*/
/*  background-color: var(--main-color);*/
/*  color: #fff;*/
/*  font-weight: 300;*/
/*  transition: all 0.3s ease-in-out;*/
/*}*/

#myBtn {
  border-radius: 20px;
  border: none;
  padding: 10px 20px;
  position: relative;
  width: 11em;
  height: 2.5em;
  overflow: hidden;
  background-color: var(--button-color);
  color: #fff;
  text-align: center;
  font-size: 18px;
  z-index: 1;
  margin: 0 auto;
  margin-top: 30px;
}

#myBtn::before{
  content: '';
  position: absolute;
  width: 0;
  height: 2.5em;
  border-radius: 20px;
  color: #fff;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #000 0%, #000 100% );
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}

#myBtn:hover::before {
  width: 11em;
}

/*#myBtn:hover{*/
/*  color: #fff;*/
/*  background-color: #000;*/
/*}*/

#more {display: none;}

@media (max-width: 460px){
  .seo-text h2 {
    font-size: 30px;
  }
}
/* ------------- end seo-text ------------- */


/* ------------- footer ------------- */
.footer{
width: 100%;
height: auto;
background-color: #4e40ca;
}

.footer .logo {
  margin-bottom: 10px;
}

.footer__items {
  position: relative;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #fff;
  margin-bottom: 20px;
}

.footer .container{
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}

.footer__text {
  color: #fff;
  width: 300px;
  margin-bottom: 30px;
}

.footer__item-sociom {
  font-size: 30px;
  color: #fff;
  display: inline-block;
}

.footer-sutitle {
  color: #fb5c32;
  margin-bottom: 10px;
  font-size: 21px;
  text-transform: uppercase;
}

.footer-menu__list {
  display: flex;
  gap: 15px;
  flex-direction: column;
  color: #fff;
}

.footer__time {
  color: #fff;
  font-size: 16px;
  margin-bottom: 23px;
}

.footer__address {
  font-size: 16px;
  color: #fff;
  margin-bottom: 23px;
}

.footer__phone {
  display: flex;
  flex-direction: column;
  color: #fff;
  margin-bottom: 23px;
  font-size: 16px;
  gap: 10px;
}

.footer__mail {
  font-size: 16px;
  color: #fff;
  margin-bottom: 23px;
}

.footer .fa-clock:before {
  content: "\f017";
  padding: 0 5px 0 0;
}

.footer .fa-location-dot:before {
  content: "\f3c5";
  color: #fff;
  padding: 0 5px 0 0;
}

.footer .fa-phone:before {
  content: "\f095";
  padding: 0 5px 0 0;
}

.footer .fa-envelope:before {
  content: "\f0e0";
  padding: 0 5px 0 0;
}

.footer_copyright-items {
  display: flex;
  justify-content: space-around;
}

.footer_copyright_item {
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer_copyright_item span{
  color: var(--main-color);
}

@media (max-width: 468px){
  .footer .logo {
    margin-bottom: 10px;
    width: 300px;
    height: auto;
  }
  .footer__text {
    color: #fff;
    width: 300px;
    margin: 0 auto;
  }
  .footer__item-sociom {
    font-size: 30px;
    color: #fff;
    display: inline-block;
    margin-top: 30px;
  }
  .footer__items {
    position: relative;
    padding: 30px 0;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    text-align: center;
  }
  .footer__item {
    margin-bottom: 50px;
    position: relative;
  } 
  .footer_copyright-items {
    display: flex;
    justify-content: space-around;
    flex-direction: column-reverse;
    align-items: center;
  }
}
/* ------------- end footer ------------- */

/* ------------- подсказка ------------- */
    /* Стиль кнопки */
    .button-icon {
      position: relative;
      display: inline-block;
      cursor: pointer;
      background-color: transparent !important;
      border: none;
      color: var(--main-color)!important;
      border-radius: 100%;
      font-size: 15px;
      padding: 0 3px;
  }

  /* Стиль подсказки */
  .map-tooltip {
    visibility: hidden;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    white-space: nowrap;

    /* Позиционирование */
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Положение над иконкой */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    /*transition: opacity 0.3s;*/
}

  /* Отображение подсказки при наведении */
  .button-icon:hover .map-tooltip {
      visibility: visible;
      opacity: 1;
  }

  /* Стрелочка подсказки */
  .map-tooltip::after {
      content: "";
      position: absolute;
      top: 100%; /* Положение стрелочки снизу */
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: var(--main-color) transparent transparent transparent;
  }

@media (max-width: 460px) {
  .map_title {
      font-size: 35px;
  }
  .map__img {
    margin-top: 100px;
  }
}
/* ------------- подсказка ------------- */

/* ------------- кнопка чат ------------- */
.chat-button {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  animation: spineer 2s infinite;
  border: 13px solid var(--main-color);
   /* animation: pulse 2s infinite; */
}

@media (max-width: 460px){
    .chat-button {
  bottom: 20px;
  right: 20px;
}
}

/* Отключаем анимацию при наведении на саму кнопку или иконки */
.chat-button:hover,
.chat-button:active {
    animation: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Стандартный box-shadow */
}

@keyframes spineer {
  from {
      box-shadow: 0 0 0 0 var(--main-color);
  }
  to {
      box-shadow: 0 0 0 45px rgba(114, 156, 41, .01);
  }
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.chat-button i {
    color: var(--main-color);
    font-size: 25px;
    transition: transform 0.3s ease;
}

.social-icons {
    position: fixed;
    bottom: 130px;
    right: 50px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 9999999;
}

@media (max-width: 460px){
.social-icons {
    bottom: 110px;
    right: 30px;
}
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.social-icons a i {
    font-size: 20px;
    color: var(--main-color);
}

.show-icons {
    display: flex;
}

.rotate {
    transform: rotate(45deg);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Полупрозрачный черный */
  display: none; /* Скрыт по умолчанию */
  z-index: 998; /* Под иконками, но над другим контентом */
}

/* Стиль подсказок */
.tooltip {
  position: absolute;
  padding: 5px 10px;
  /* background-color: rgba(0, 0, 0, 0.75);
  color: #fff; */
  background-color: var(--main-color);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
  display: none; /* Скрыта по умолчанию */
}
@media (max-width: 960px){
  .tooltip {
     position: absolute;
     padding: 5px 10px;
     border-radius: 20px;
     font-size: 14px;
     white-space: nowrap;
     pointer-events: none;
     opacity: 0;
     transition: opacity 0.3s ease;
     z-index: 1000;
     display: none!important;
}
	}
/* ------------- end кнопка чат ------------- */

/* ------------- Стили для модального окна ------------- */
.modal {
  display: none; 
  position: fixed; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999999;
}

.modal-fon{
  display: none; 
  position: fixed; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.8); 
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
  text-align: center;
}

.modal-content__mob {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 95%;
  max-width: 400px; 
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#modalPrice {
  font-size: 40px;
  font-weight: 900;
  color: var(--main-color);
  line-height: 1.2em;
}

.modal-content h2{
  font-size: 30px;
  margin-bottom: 10px;
  line-height: 1;
  padding: 0 50px;
}

.modal-content__mob h2{
  font-size: 25px;
  margin-bottom: 10px;
  line-height: 1;
  padding: 0;
}

.modal-content p{
  font-size: 16px;
  margin-bottom: 20px;
  padding: 0 30px;
}

.modal-content__mob p{
  font-size: 16px;
  margin-bottom: 30px;
  padding: 0;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.modal-close{
  position: relative;
  top: -35px;
  font-size: 22px;
  cursor: pointer;
  margin: 0 auto;
  color: #fff;
  background-color: #ff5c22;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease-in-out;
  right: 0;
}

.modal-close:hover{
  background-color: #000;
}

/* Стили для формы */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* form label .label-name {
  margin-top: -4px;
  position: absolute;
  margin-left: 20px;
  background-color: #fff;
  padding: 0 5px;
  color: #757575;
  border-radius: 20px;
  font-size: 12px;
} */

.label-name {
    margin-top: -4px;
    position: relative;
    /*margin-left: 20px;*/
    background-color: #fff;
    padding: 0 5px;
    color: #757575;
    border-radius: 20px;
    font-size: 12px;
}

form .label-phone{
  margin-top: 47px;
  position: absolute;
  margin-left: 20px;
  background-color: #fff;
  padding: 0 5px;
  color: #757575;
  border-radius: 20px;
  font-size: 12px;
}

.form-name {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 13px;
  width: 100%;
}

/* form button {
  padding: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  cursor: pointer;
} */

/* form button:hover {
  background-color: #de7700;
} */

.form-btn {
  /* background-color: var(--button-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out; */
  border-radius: 20px;
  border: none;
  padding: 10px 20px;
  position: relative;
  width: 100%;
  height: 2.5em;
  overflow: hidden;
  background-color: var(--button-color);
  color: #fff;
  text-align: center;
  font-size: 18px;
  z-index: 1;
  margin: 0 auto;
  margin-top: 30px;
  transition: all 1s ease;
}

.form-btn::before{
  content: '';
  position: absolute;
  width: 0;
  height: 2.5em;
  border-radius: 20px;
  color: #fff;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #000 0%, #000 100% );
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}

.form-btn:hover {
  width: 100%;
  background-color: #000;
  transition: all 1s ease;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    border-radius: 20px;
    margin-top: -30px;
}

button:not(:disabled) {
  cursor: pointer;
  background-color: var(--button-color);
  border: none;
  border-radius: 20px;
  color: #fff;
  z-index: 0;
}

@media (max-width: 460px) {
  .form-btn {
    width: 100%;
  }
  .form-btn:hover {
  width: 100%;
  background-color: #000;
  transition: all 1s ease;
  }
}

/* button:not(:disabled):hover {
  cursor: pointer;
  background-color: #000;
  border: none;
  border-radius: 20px;
  color: #fff;
} */
/* ------------- end Стили для модального окна ------------- */


.faq__items {
  display: grid;
  justify-content: space-evenly;
  gap: 30px;
  align-items: center;
  margin-bottom: 100px;
  grid-template-columns: 1fr;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.faq-container {
  max-width: 800px; /* Фиксированная ширина */
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box; /* Учитывает padding в ширине */
}

.faq h2 {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  padding: 15px;
  background-color: #4e40ca;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--main-color);
}

.faq-answer {
  display: none; /* Скрыть ответ по умолчанию */
  padding: 15px;
  background-color: #f9f9f9;
  border-left: 4px solid #4e40ca;
  margin-top: 5px;
  border-radius: 5px;
}

.faq-answer p {
  margin: 0;
}

.faq__item-img {
  width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 460px) {
  .faq h2 {
    font-size: 35px;
    margin-bottom: 50px;
  }
}

  /* ------------- Фиксированое видео  ------------- */
#mini-video-container {
  position: fixed;
  bottom: 10px;
  left: 10px;
/*   width: 210px;
  height: 371px; */
  width: 400px;
  height: 225px;
  z-index: 990;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  overflow: visible; /* Убираем ограничение на видимость содержимого */
}

@media (max-width: 768px) {
  #mini-video-container {
    bottom: 25px;
    left: 10px;
    width: 350px;
    height: 180px;
	z-index: 999;
  }
}

#mini-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}

/* Позиционирование кнопки крестика снаружи контейнера */
#close-mini-video {
    position: absolute;
    top: 0;
    right: -31px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Эффект при наведении на крестик */
#close-mini-video:hover svg {
  stroke: #fb5c32;
  transition: stroke 0.3s ease;
}

#close-mini-video span {
    margin: auto;
    box-shadow: #fff 0 0 0 1px;
    border-radius: 2px;
    width: 26px;
    height: 26px;
    position: absolute;
}

#logo_video {
    position: absolute;
    color: #ffffff63;
    padding: 5px 0 0 5px;
    font-size: 10px;
    text-transform: uppercase;
    z-index: 1;
}
  /* ------------- End Фиксированое видео  ------------- */