/* ==================== ШРИФТЫ ==================== */
@font-face {
    font-family: 'EngraversGothic-bold';
    src: url('../fonts/EngraversGothic-Bold.eot');
    src: local('EngraversGothic-Bold'),
         url('../fonts/EngraversGothic-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/EngraversGothic-Bold.woff2') format('woff2'),
         url('../fonts/EngraversGothic-Bold.woff') format('woff'),
         url('../fonts/EngraversGothic-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Engravers Gothic';
    src: url('../fonts/EngraversGothic.eot');
    src: local('Engravers Gothic'),
         url('../fonts/EngraversGothic.eot?#iefix') format('embedded-opentype'),
         url('../fonts/EngraversGothic.woff2') format('woff2'),
         url('../fonts/EngraversGothic.woff') format('woff'),
         url('../fonts/EngraversGothic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ==================== БАЗОВЫЕ СТИЛИ ==================== */
html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Engravers Gothic', sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
    background-color: #fff;
    background-image: url('images/hero_4.jpg');
    
    /* ✅ ИСПРАВЛЕНО: стабильное поведение на всех устройствах */
    background-size: cover;          /* Растягивает фото без искажений */
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;   /* ← Было fixed, теперь фон стоит мертво */
    min-height: 100vh;
}

.bg-image-2 {
    background-image: url('images/hero_4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}

/* ==================== АДАПТИВ ==================== */
@media only screen and (max-width: 767px) {
    .mouse { margin-top: 20px; }
    body {
        background-attachment: scroll;
        background-size: cover;
    }
}

@media screen and (min-width: 1920px) {
    body { background-size: cover; }
}






/* Стили для виджета бегущей строки */
    .weather-widget {
        background-color: rgba(0, 45, 75, 1);
        color: #fff;
        font-family: 'Engravers Gothic', Arial, sans-serif;
        padding: 8px;
        
        overflow: hidden;
    }

    .weather-widget a {
        color: #fff;
        text-decoration: none;
    }

    .ticker {
        white-space: nowrap; /* Для бегущей строки */
        overflow: hidden;
        width: 100%; /* Растягиваем строку по ширине */
    }

    .ticker span {
        display: inline-flex; /* Используем flexbox для выравнивания иконок и данных */
        align-items: center; /* Выравниваем элементы по вертикали */
        margin-right: 30px;
        animation: ticker 10s linear infinite; /* Анимация бегущей строки */
    }

    .ticker span img {
        margin-right: 7px; /* Добавляем небольшой отступ между иконкой и данными */
        width: 30px; /* Задаем ширину иконок для более равномерного отображения */
        height: auto; /* Автоматический подбор высоты для сохранения пропорций */
    }

    @keyframes ticker {
        -75% {
            transform: translateX(90%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    /* Конец стилей для виджета бегущей строки */

 /*---------------------
  Главная (гостевые дома)
-----------------------*/
/* Стили для адаптации текста */
.room-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.room-price {
    font-size: 1rem;
    display: block;
}

.img-wrap {
    text-align: center; /* Центрируем содержимое */
}

.img-wrap img {
    max-width: 100%; 
    height: auto;
    display: inline-block; /* Для центрирования через text-align */
}

/* Мобильная версия */
@media (max-width: 575.98px) {
    .room-title {
        font-size: 1.6rem !important;
    }
    
    .room-price {
        font-size: 1rem !important;
    }
    
  @media (max-width: 575.98px) {
    .img-wrap img {
        max-width: 280px !important;
        width: 100%; /* Добавляем адаптивность */
    }
}

/* Планшетная версия */
@media (min-width: 576px) and (max-width: 991.98px) {
    .room-title {
        font-size: 1.6rem;
    }
     .room-price {
        font-size: 1rem !important;
    }
    .img-wrap img {
        max-width: 240px;
    }
}
 /*---------------------
  Главная (гостевые дома)
-----------------------*/

/*=================== АКЦИЯ ====================*/

  .promotion-image {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .promotion-box {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 10px 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: -10px;
  }

  .promotion-title {
    color: #002d4b;
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .highlight {
    color: #002d4b;
    font-weight: bold;
  }

  .promotion-details {
    color: #555;
    font-size: 22px;
    line-height: 1.6;
    padding: 10px 0;
  }

 
  .hide { display: none; }
  .popbox { position: fixed; top: 0; left: 0; bottom: 0; width: 100%; z-index: 1000000; }
  .pop-content {
    width: 500px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.5);
  }
  .popcontent {
    width: 100%;
    padding: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
  }
  .pop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
  }

  .popbox-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
  }
  

  @media (max-width: 600px) {
    .pop-content { width: 90%; }
    .promotion-title { font-size: 20px; }
    .promotion-details { font-size: 16px; }
  }

  .popbox-close-button svg { vertical-align: middle; }
        
/*=================== АКЦИЯ ====================*/

/*=================== ЦЕНЫ И КНОПКА МОБ====================*/
  /* Стиль для обычной версии */
    .display-4 {
        font-size: 2rem;
        line-height: 1.2;
    }
    

    /* Стиль для мобильных устройств */
    @media (max-width: 360px) {
        .display-4 {
            font-size: 1.5rem; /* Меньший размер шрифта для мобильных */
        }
       
        .price-container div {
            margin-bottom: 10px; /* Добавляем немного пространства */
        }
    }
    
     @media (max-width: 360px) {
        .btn {
            font-size: 0.7rem; /* Уменьшенный шрифт кнопок */
            padding: 8px 13px; /* Компактные отступы */
            margin-bottom: 5px; /* Расстояние между кнопками */
        }
        .booking-note {
            font-size: 0.75rem; /* Уменьшенный текст под кнопками */
            text-align: center; /* Выравнивание текста */
        }
        
       
    }
    
     @media (max-width: 320px) {
        .btn {
            font-size: 0.6rem; /* Уменьшенный шрифт кнопок */
            padding: 7px 13px; /* Компактные отступы */
            margin-bottom: 5px; /* Расстояние между кнопками */
        }
     }
        
/*=================== ЦЕНЫ И КНОПКА МОБ====================*/
        
/*=================== ЦВЕТ ИКОНОК ПРИ НАВЕДЕНИИ ====================*/
  .social a i {
            color: #b3c0c9; /* Начальный цвет иконок */
            transition: color 0.5s ease; /* Плавное изменение цвета */
        }

        .social.vk:hover a i {
            color: #0077FF; /* Цвет иконки vk при наведении */
        }

        .social.instagram:hover a i {
            color: #E1306C; /* Цвет иконки instagram при наведении */
        }

        .social.whatsapp:hover a i {
            color: #43d854; /* Цвет иконки whatsapp при наведении */
        }

        .social.telegram:hover a i {
            color: #2AABEE; /* Цвет иконки telegram при наведении */
        }
}
.fancybox-content {
    border-radius: 15px; /* Или другое значение, которое вам подходит */
}
.bg-white.rounded {
    border-radius: 50px; /* Или другое значение, которое вам нужно */
    
    
    
}

.rounded-clicked {
    border-radius: 13px;
    transition: border-radius 0.5s ease; /* Добавляем анимацию для сглаживания перехода */
}
/* Общие стили для кнопки закладки */
#bookmark-button {
    display: none; /* По умолчанию скрываем кнопку */
}

/* Стили для пк версии */
@media screen and (min-width: 992px) {
    #bookmark-button {
        display: block; /* Показываем кнопку только на экранах шире 992px */
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

#bookmark-button {
    cursor: pointer;
}

.site-block-half {
    background-color: rgba(255, 255, 255, 0.5); /* Прозрачный белый цвет фона */
    /* Другие стили */
}
/*=================== ЦВЕТ ИКОНОК ПРИ НАВЕДЕНИИ КОНЕЦ ====================*/

/*=================== Банкетное меню ====================*/

/* line 1 */
.best_burgers_area {
  padding-bottom: 115px;
  padding-top: 110px;

  
}

@media (max-width: 767px) {
  /* line 1 */
  .best_burgers_area {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

/* line 12*/
.best_burgers_area .single_delicious {
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  /* line 12*/
  .best_burgers_area .single_delicious {
    display: block !important;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 12*/
  .best_burgers_area .single_delicious {
    display: block !important;
  }
}

/* line 21*/
.best_burgers_area .single_delicious .thumb {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/* line 23*/
.best_burgers_area .single_delicious .thumb img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/* line 27*/
.best_burgers_area .single_delicious .info {
  padding-left: 20px;
}

@media (max-width: 767px) {
  /* line 27*/
  .best_burgers_area .single_delicious .info {
    padding-left: 0;
    margin-bottom: 15px;
    margin-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 27*/
  .best_burgers_area .single_delicious .info {
    padding-left: 0;
    margin-top: 30px;
  }
}

/* line 38*/
.best_burgers_area .single_delicious .info h3 {
  font-size: 23px;
  color: #002d4b;
  font-weight: 700;
  font-family: "Engravers Gothic", sans-serif;
}

/* line 44, ../../Arafath/CL/December/229. Restaurant (Burger)/HTML/scss/_delicious.scss */
.best_burgers_area .single_delicious .info p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 16px;
  margin-bottom: 6px;
  color: #6E6E6E;
  font-family: "Engravers Gothic", sans-serif;
}

/* line 53, ../../Arafath/CL/December/229. Restaurant (Burger)/HTML/scss/_delicious.scss */
.best_burgers_area .single_delicious .info span {
  display: block;
  font-weight: 700;
  font-size: 24px;
  color: #ffba5a;
  font-family: "Engravers Gothic", sans-serif;
}

/* line 62, ../../Arafath/CL/December/229. Restaurant (Burger)/HTML/scss/_delicious.scss */
.best_burgers_area .iteam_links {
  margin-top: 50px;
}

@media (max-width: 767px) {
  /* line 62, ../../Arafath/CL/December/229. Restaurant (Burger)/HTML/scss/_delicious.scss */
  .best_burgers_area .iteam_links {
    margin-top: 20px;
  }
}

/* line 68, ../../Arafath/CL/December/229. Restaurant (Burger)/HTML/scss/_delicious.scss */
.best_burgers_area .iteam_links a {
  display: block;
}

/*=================== Банкетное меню ====================*/


/*=================== модальное окно для услуг  ====================*/
   /* Закругление для fancybox-content ТОЛЬКО внутри .custom-fancybox-parent */
/* Стили для fancybox-content только при открытии через data-fancybox="custom" */
[data-fancybox="custom"] .fancybox-content {
  border-radius: 20px;
}

 /* Исправляем ширину и высоту для мобильных */
    @media (max-width: 768px) {
        .fancybox-slide--iframe .fancybox-content {
            max-width: 110% !important; /* Увеличиваем ширину */
            height: 90% !important; /* Подгоняем высоту */
        }
    }

    /* Убираем двойной скролл на ПК */
    .fancybox-slide--iframe .fancybox-content iframe {
        overflow: hidden !important;
        height: 100% !important; /* Растягиваем внутри контейнера */
    }
    
/*=================== модальное окно для услуг  ====================*/


/*=================== Окно подтверждения вызова на кнопке ====================*/

.confirmation-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.confirmation-box {
    padding: 20px;
    text-align: center;
}

.confirmation-box h2 {
    margin-top: 0;
    font-size: 20px;
}

.confirmation-box button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

.confirmation-box button:hover {
    background-color: #45a049;
}

.warning {
    margin-top: 15px;
    font-size: 12px;
    color: #6c757d;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 767px) {
    .confirmation-modal {
        width: 70%;
    }

    .confirmation-box h2 {
        font-size: 18px;
    }

    .confirmation-box button {
        padding: 6px 12px;
    }

    .warning {
        font-size: 8px;
    }
}

/*=================== Окно подтверждения вызова конец ====================*


/*=================== СКРОЛЛБАР ====================*/
::-webkit-scrollbar-button {
  background-image: url('');
  background-repeat: no-repeat;
  width: 6px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background-color: #002d4b;
  box-shadow: 0px 0px 2px #000 inset;
}
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #fbc390;
  box-shadow: 0px 1px 1px #fff inset;
  background-image: url('../images/scroll_img_resized.png'); /* Обновленная версия изображения */
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; /* или background-size: cover; в зависимости от ваших предпочтений */
}

::-webkit-resizer {
  background-image: url('');
  background-repeat: no-repeat;
  width: 7px;
  height: 0px;
}

::-webkit-scrollbar {
  width: 20px;
}
/*=================== СКРОЛЛБАР КОНЕЦ ====================*/

/* Стили для мобильной версии */
@media only screen and (max-width: 767px) {
  ::-webkit-scrollbar-button,
  ::-webkit-resizer {
    display: none; /* Скрываем кнопку и ресайзер в мобильной версии */
  }

  ::-webkit-scrollbar {
    width: 12px; /* Меняем ширину скроллбара в мобильной версии */
  }
  
    /*---------------------
  Социальные кнопки
-----------------------*/
 .contact-button {
            position: fixed;
            left: 20px;
            bottom: 20px;
            background-color: #002d4b;
            color: #ffc994;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            z-index: 1000;
            transition: transform 0.3s, background-color 0.3s;
        }

        .contact-button:hover {
            background-color: #002d4b;
        }

        .contact-button.active {
            background-color: #002d4b;
            color: #ffc994;
        }

        .contact-menu {
            display: flex;
            flex-direction: column;
            position: fixed;
            left: 20px;
            bottom: 100px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .contact-menu.show {
            opacity: 1;
            visibility: visible;
        }

        .contact-menu a {
            margin-bottom: 10px;
            text-decoration: none;
        }

        .contact-menu button {
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
            color: #ffc994;
            background-color: #002d4b;
            transition: transform 0.3s, background-color 0.3s, opacity 0.3s, transform 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }

        .contact-menu button:nth-child(1) {
            transition-delay: 0.1s;
        }

        .contact-menu button:nth-child(2) {
            transition-delay: 0.2s;
        }

        .contact-menu button:nth-child(3) {
            transition-delay: 0.3s;
        }

        .contact-menu button:nth-child(4) {
            transition-delay: 0.4s;
        }

        .contact-menu button:nth-child(5) {
            transition-delay: 0.5s;
        }

        .contact-menu button:nth-child(6) {
            transition-delay: 0.6s;
        }

        .contact-menu button:nth-child(7) {
            transition-delay: 0.7s;
        }

        .contact-menu.show button {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-menu button:hover {
            transform: scale(1.1);
        }
  /*---------------------
  Социальные кнопки
-----------------------*/


.phone-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; /* Отступ между элементами */
}

.phone-numbers span {
    white-space: nowrap; /* Не переносить строки внутри спанов */
}

    /*---------------------
  ПОГОДА
-----------------------*/

    /* Стили для виджета */
    .weather-widget {
        background-color: rgba(0, 45, 75, 1);
        color: #fff;
        font-family: 'Engravers Gothic', Arial, sans-serif;
        padding: 12px;
        overflow: hidden;
    }

    .weather-widget a {
        color: #fff;
        text-decoration: none;
    }

    /* Стили для бегущей строки */
    .ticker {
    white-space: nowrap;

    animation: animMarquee linear infinite; /* Изменил анимацию на бегущую слева направо */
}

    .ticker span {
        display: inline-flex;
        align-items: center;
        margin-right: 30px;
    }

    .ticker span img {
        margin-right: 9px;
        width: 33px;
        height: auto;
    }

    @keyframes animMarquee {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    /*---------------------
  ПОГОДА
-----------------------*/




    /*---------------------
  Блок с сервисами
-----------------------*/
.service-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.service-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.service-link:hover {
    transform: scale(1.3);
}

.service-item img {
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.service-item:hover img {
    transform: scale(1.3);
}

.services-section {
    padding-bottom: 60px;
    border-top: 1px solid #e5e5e5;
}
.services-section .section-title {
    margin-bottom: 36px;
}
.service-item {
    text-align: center;
    padding: 30px 35px 18px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}



.service-item h4 {
    color: #002d4b;
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.service-item p {
    color: #707079;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
  
.section-title {
    text-align: center;
    margin-bottom: 22px;
}
.section-title span {
    font-size: 14px;
    color: #002d4b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-title h2 {
    font-size: 44px;
    color: #002d4b;
    line-height: 58px;
    margin-top: 10px;
}
.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

    .service-link {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: inherit;
    }
.service-item a:hover {
        color: #707079; /* Укажите желаемый цвет для ссылки при наведении */
    }
    
  /*---------------------
  Блок с сервисами
-----------------------*/

  /*=================== ВИДЕО====================*/
.video-container {
  position: relative;
  max-width: 100%; /* Ширина контейнера будет равна ширине его родительского элемента */
  margin: 20px auto 40px; /* Отступ перед видео и после него */
  text-align: center;
}
.video-cover {
  max-width: 100%; /* Установим максимальную ширину для изображения */
  height: auto; /* Поддерживаем соотношение сторон */
  border-radius: 15px; /* Задаем желаемый радиус закругления */
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: url('/images/play_button.png') no-repeat;
  background-size: cover;
  border: none;
  cursor: pointer;
}

video {
  max-width: 100%; /* Добавим это свойство */
  height: auto; /* Добавим это свойство */
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Стили для мобильных устройств */
@media (max-width: 767px) {
  .play-button {
    display: block; /* Отображаем кнопку в мобильной версии */
  }
  video {
    max-width: 100%; /* Уменьшаем размер видео в мобильной версии */
    height: auto;
    width: 100%; /* Добавляем это свойство для мобильных устройств */
  }
}

/* Стили для десктопных устройств */
@media (min-width: 768px) {
  .play-button {
    display: none; /* Скрываем кнопку в десктопной версии */
  }
  video {
    width: 60%; /* Устанавливаем ширину видео на 60% для десктопных устройств */
    height: auto; /* Автоматический подбор высоты для сохранения пропорций */
  }
}


/* Анимация открытия видео */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Задаем продолжительность анимации */
        .fancybox-is-opening .fancybox-content {
            animation: fadeIn 1s;
        }


/*=================== КНОПКИ МАРШРУТА: ====================*/
  .navigator {
        background-color: #ffba5a;
        color: black;
        border-radius: 10px;
        padding: 10px 20px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

    .navigator svg {
        width: 17px;
        height: 17px;
    }

    .navigator span {
        margin-left: 5px;
    }

    h2 {
        margin-bottom: 10px;
    }

    .button-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    @media only screen and (max-width: 600px) {
        .button-container {
            flex-direction: column;
            align-items: center;
        }

        .navigator {
            margin-bottom: 10px;
        }
    }


/*=================== ВИДЕО ====================*/

.contact-info p {
  line-height: 1.5; /* Измените значение по вашему усмотрению */
}
.contact-info h2 {
  font-weight: bold;
  font-size: 1.2em;
}
.contact-info h2 {
  margin-top: 20px; /* Выберите нужное вам значение отступа */
}
.contact-info h2,
.contact-info p b {
  font-weight: bold;
  font-size: 1.1em; /* Выберите нужный размер текста */
  color: inherit; /* Наследует цвет у родительского элемента (в данном случае, заголовка h2) */
}


/*===================== КНОПКА ТЕЛЕФОНА========================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  
}

.your-element-selector {
    background-repeat: no-repeat;     /* Предотвращаем повторение фонового изображения */
    background-size: cover;          /* Масштабируем изображение так, чтобы оно покрывало весь блок */
}


#guesthouse1-content .container {
  max-width: 100%;
  overflow-x: hidden;
      max-width: 1200px; /* или любое другое значение, которое вам подходит */
}
#guesthouse3-content .container {
  max-width: 100%;
  overflow-x: hidden;
      max-width: 1200px; /* или любое другое значение, которое вам подходит */
}

#guesthouse4-content .container {
  max-width: 100%;
  overflow-x: hidden;
      max-width: 1200px; /* или любое другое значение, которое вам подходит */
}





/* Стили для контента модальных окон */
#guesthouse1-content, #guesthouse3-content, #guesthouse4-content {
    font-family: 'Engravers Gothic';
    color: #333; /* Цвет текста */
    
}

}

#guesthouse1-content .btn {
    font-size: 14px;  /* уменьшите размер шрифта, если он слишком большой */
    padding: 10px 15px; /* уменьшите отступы вокруг текста кнопки */
}

/* btn-call */

.btn-call {
    background: #ffc994;
    border: 2px solid #ffc994;
    border-radius: 50%;
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3);
    cursor: pointer;
    height: 50px;
    width: 50px;
    text-align: center;
   position: fixed; /* Фиксированное позиционирование */
    bottom: 20px; /* Отступ снизу */
    left: 20px; /* Отступ слева */
    z-index: 1000; /* Позиционируем кнопку поверх остального содержимого */
    transition: .3s;
    -webkit-animation: hoverWave linear 1s infinite;
    animation: hoverWave linear 1s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
       
}

.btn-call__ico {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: 1200ms ease 0s normal none 1 running shake;
    animation-iteration-count: infinite;
    -webkit-animation: 1200ms ease 0s normal none 1 running shake;
    -webkit-animation-iteration-count: infinite;
    color: #002d4b;
    font-size: 25px;
    padding-top: 5px;
    transition: .3s all;
}

.btn-call:hover {
    background-color: #ffc994;
}

.btn-call:hover .btn-call__ico {
    color: #002d4b;
}
  .video-container {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding-top: 56.25%; /* Соотношение сторон 16:9 */
    }
    
    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

@-webkit-keyframes hoverWave {
    0% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    40% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    80% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067)
    }

    100% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0.0)
    }
}

@keyframes hoverWave {
    0% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    40% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    80% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067)
    }

    100% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0.0)
    }
}

  /* МАГНИФИК ПОПАП */
.white-popup {
  position: relative;
  background: #FFF;
  padding: 25px;
  max-width: 400px;
  margin: 0 auto; }
  /* ZOOM */
 
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8); }
 
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
 
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1); }
 
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8; }
 
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0; }
 
 
  /* МЕНЮ ЧУТЬ НИЖЕ */
@media (max-width: 767px) {
    .site-navbar ul {  /* Допустим, что ваше меню находится в элементе <ul> внутри .site-navbar */
        margin-left: 26px;  /* Смещаем элементы меню вправо */
        margin-top: 40px;   /* Смещаем элементы меню вниз */
    }
}

#tl-search-form, #tl-search-form a {
    font-family: 'Engravers Gothic', sans-serif !important;
}
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0; }
   /* МАГНИФИК ПОПАП */
   
 /* Стили для мобильных устройств */
@media (max-width: 768px) {
    div.row.pt-5 p.col-md-6 {
        margin-bottom: 10px !important; 
    }

    .contact-block {
        margin-bottom: 10px !important;
    }

    .copyright-mobile-spacing {
        margin-top: 20px;
    }
}

/* Стиль для десктопных устройств */
@media (min-width: 769px) {
    p.col-md-6 {
        margin-bottom: 0;
    }
}

.custom-margin {
    margin-bottom: 0.15rem !important;
}

.diagonal-padding {
    background: linear-gradient(45deg, white 30px, transparent 30px);
    padding-left: 40px; /* Это создает пространство для диагонального эффекта */
}
 
 
/* animations icon */

@keyframes shake {
    0% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }

    10% {
        transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg);
    }

    20% {
        transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
    }

    30% {
        transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg);
    }

    40% {
        transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg);
    }

    50% {
        transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg);
    }

    60% {
        transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg);
    }

    70% {
        transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg);
    }

    80% {
        transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg);
    }

    90% {
        transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg);
    }

    100% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }
}

@-webkit-keyframes shake {
    0% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }

    10% {
        transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg);
    }

    20% {
        transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
    }

    30% {
        transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg);
    }

    40% {
        transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg);
    }

    50% {
        transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg);
    }

    60% {
        transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg);
    }

    70% {
        transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg);
    }

    80% {
        transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg);
    }

    90% {
        transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg);
    }

    100% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }
}


/* ОТЗЫВЫ РЕЙТИНГ */

/* Стили для общего блока отзывов */
.blocks {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

/* Стили для заголовка блока */
.blk_head .h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Стили для каждого элемента отзыва */
.review-item {
    flex: 1;
    border: 1px solid #e0e0e0;
    padding: 15px;
    margin: 0 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.review-rating {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.reviews-link {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: #007bff;
}


/* ОТЗЫВЫ РЕЙТИНГ */


/*=================== special section start ====================*/
/* КНОПКА ТЕЛЕФОНА
============================================================================================ */
 @media (max-width: 768px) {
        .site-navbar {
            font-size: 9px;
        }
    }
  
   @media (max-width: 768px) {
        /* Стили для мобильных устройств с шириной экрана до 768px */
    }

    @media (max-width: 480px) {
        /* Стили для смартфонов */
    }
/*=================== special section start ====================*/
/* Start Video Play css
============================================================================================ */
.video-play-button {
  position: relative;
  box-sizing: content-box;
  display: inline-block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 46px 8px 18px 28px;
  transform: scale(0.8);
  }
  @media (min-width: 800px) {
    .video-play-button {
      transform: scale(1);
      margin-bottom: 10px;
      } }
  .video-play-button:before, .video-play-button:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%); }
  .video-play-button:before {
    z-index: 0;
    -webkit-animation: pulse-border 2000ms ease-out infinite;
    -moz-animation: pulse-border 2000ms ease-out infinite;
    -o-animation: pulse-border 2000ms ease-out infinite;
    animation: pulse-border 2000ms ease-out infinite; }
  .video-play-button:after {
    z-index: 1;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease; }
  .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 16px solid #002d47;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent; }
  .video-play-button:hover:after {
    background-color: #002d4b; }

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7; }
  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 0.1; } }

@-moz-keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7; }
  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 0.1; } }

@-o-keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7; }
  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 0.1; } }

@keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7; }
  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 0.1; } }

/* End Video Play css
=====================================================================================*/
/*=================== video section start ====================*/
.video-area {
  background: url("../images/index/video_bg.jpg") left center no-repeat;
  background-size: cover;
  padding: 50px 10px;
  position: relative;
  z-index: 1; }
  @media (min-width: 750px) {
    .video-area {
      padding: 90px 10px; } }
  @media (min-width: 1000px) {
    .video-area {
      padding: 175px 10px; } }
  .video-area::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 45, 75, 0.7);
    z-index: -1; }
  .video-area h3 {
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px; }
    @media (min-width: 600px) {
      .video-area h3 {
        font-size: 50px; } }
  .video-area p {
    color: #fff;
    margin-bottom: 0; }
  .video-area .play-btn {
    width: 80px;
    height: 80px;
    display: block;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 18px; }
    .video-area .play-btn img {
      margin-top: 34px; }

/*=================== special section end ====================*/




::-moz-selection {
  color: #fff;
  background: #f2f4fb; }

h1 { font-family: "EngraversGothic-Bold"; }
h2 { font-family: "EngraversGothic-Bold"; }
h3 { font-family: "EngraversGothic-Bold"; }
h4 { font-family: "EngraversGothic-Bold"; }
a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

h1, h2, h3, h4, h5 {
  color: #002d4b;
  font-family: "Engravers Gothic"; }
  font-family: 'EngraversGothic-Bold'; }

.bg-light {
  background: #f2f4fb !important; }

.container-fluid {
  max-width: 1600px; }
.btn-container {
  text-align: center; /* Центрируем кнопки по горизонтали */
}

.btn {
  padding: 14px 30px;
  border-radius: 50px;
  text-align: center;
  line-height: 1; /* Значение 1 для ровного расположения текста */
  margin-left: 10px; /* Отступ слева */
}

.container .btn {
  text-align: center;
}

.btn.btn-outline-white,
.btn.btn-outline-white-primary {
  border: 2px solid #fff;
}

.btn.btn-outline-white:hover,
.btn.btn-outline-white-primary:hover {
  border: 2px solid transparent;
}

.btn.btn-outline-white:hover {
  background: #000;
  color: #fff;
}

.btn.btn-outline-white-primary:hover {
  background: #ffba5a;
  color: #fff;
}

.btn.uppercase {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .2em;
}

.btn,
.form-control {
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn:focus,
.btn:active,
.form-control:focus,
.form-control:active {
  outline: none;
}

@media (max-width: 767px) {
  .btn-container {
    text-align: center; /* Центрируем кнопки по горизонтали */
  }
  
  .btn {
    display: inline-block; /* Меняем display на inline-block, чтобы кнопки оставались на одной строке */
    margin: 0 auto; /* Центрируем кнопки по горизонтали */
    margin-bottom: 5px; /* Добавляем отступ снизу между кнопками */
  }
}








}
.form-control {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  height: 50px;
  border-width: 2px; }
  .form-control:active, .form-control:focus {
    border-color: #ffba5a; }

textarea.form-control {
  height: inherit; }

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 60px 0;
  z-index: 2;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out; }
  .site-header.scrolled {
    padding: 20px 0;
    background: #002d4b;
    -webkit-box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.1); }
    .site-header.scrolled .site-menu-toggle {
      top: 10px;
      position: relative; }
      .site-header.scrolled .site-menu-toggle span {
        background: #fbc390; }
    .site-header.scrolled .site-logo {
      position: relative;
      z-index: 100; }
      .site-header.scrolled .site-logo a {
        color: #000; }

.menu-open {
  position: relative; }
  .menu-open .site-header {
    position: fixed; }
  .menu-open .site-logo {
    position: relative;
    z-index: 100; }
    .menu-open .site-logo a {
      color: #000; }
  .menu-open .site-navbar {
    border: 9px solid #002d4b; }

.site-logo {
  padding-left: 40px; }
  .site-logo a {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    font-family: "Engravers Gothic"; }
    @media (max-width: 991.98px) {
      .site-logo a {
        font-size: 27px; } }

.site-navbar {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  border: 20px solid transparent;
  background: #002d4b;
  min-height: 300px;
   }
  .site-navbar nav {
    text-align: left; }
    .site-navbar nav .menu {
      font-family: "Engravers Gothic", times, serif; }
      .site-navbar nav .menu li a {
        color: #fff;
        font-size: 22px;
                position: relative;
font-family: "Engravers Gothic"}
        .site-navbar nav .menu li a:hover:before {
          width: 100%; }
      .site-navbar nav .menu li.active a {
        color: #fcc390; }
        .site-navbar nav .menu li.active a:before {
          width: 100%; }
  .site-navbar .extra-info a {
    color: #000; }
  .site-navbar .extra-info ul li a {
    color: #000; }
  .site-navbar .extra-info h3 {
    font-family: "Engravers Gothic", arial, sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .2em;
    color: #adb5bd;
    margin-bottom: 30px; }
  .site-navbar .extra-info p {
    color: #212529; }

.full-height {
  height: 100vh;
  min-height: 700px; }


/* Основные стили для .site-hero */
.site-hero {
    
     background-size: 120%; /* Увеличиваем размер фонового изображения */
    background: fixed;
    background-repeat: no-repeat; /* Предотвращает повторение изображения */
    height: 100vh;
    min-height: 700px;
    width: 100%;
    position: relative;
  
}

/* Медиа-запрос для мобильных устройств */
@media only screen and (max-width: 768px) {
    .site-hero {
        background-size: cover; /* Изменяем размер фонового изображения на cover */
        background-position: -500px 25px; /* Настраиваем положение фонового изображения в пикселях */
    }
}

.site-hero .heading {
    font-family: 'Engravers Gothic';
    font-weight: bold;
}

.site-hero .scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #192f48;
}

.site-hero.overlay:before {
    background: rgba(0, 45, 75, 0.7);
    content: "";
    position: absolute;
    height: 100vh;
    min-height: 700px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.site-hero.inner-page {
    height: 50vh;
    min-height: 700px;
}

.site-hero.inner-page.overlay:before {
    height: 50vh;
    min-height: 700px;
}

.site-hero-inner {
    height: 100vh;
    min-height: 700px;
}

.site-hero-inner .heading {
    font-size: 80px;
    font-family: 'Engravers Gothic';
    color: #fff;
    line-height: 1;
    font-weight: bold;
}

@media (max-width: 991.98px) {
    .site-hero-inner .heading {
        font-size: 50px;
    }
}

.site-hero-inner .sub-heading {
    font-size: 30px;
    font-weight: 200;
    color: #fff;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .site-hero-inner .sub-heading {
        font-size: 18px;
    }
}

/* Дополнительные стили для мобильных устройств */
@media (max-width: 767px) {
    .mouse {
        margin-top: 20px; /* Или другое значение отступа, которое вам нужно */
    }

    .site-hero.overlay {
        background-attachment: scroll !important;
        background-size: cover; /* Исправил на cover */
        will-change: unset !important;
    }
}



.inner-page .site-hero-inner {
  height: 70vh;
  min-height: 700px; }

.page-inside .site-hero-inner, .page-inside {
  height: 70vh;
  min-height: 500px; }

.page-inside.overlay:before {
  height: 70vh;
  min-height: 500px; }

.menu-open .site-menu-toggle span {
  background: #fbc390; }

.site-menu-toggle {
  top: 0;
  float: right;
  width: 40px;
  height: 45px;
  position: relative;
  margin: 0px auto;
  z-index: 200;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  margin-right: 40px; }
  .site-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fbc390;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out; }
  .site-menu-toggle span:nth-child(1) {
    top: 0px; }
  .site-menu-toggle span:nth-child(2) {
    top: 10px; }
  .site-menu-toggle span:nth-child(3) {
    top: 20px; }
  .site-menu-toggle.open span:nth-child(1) {
    top: 13px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg); }
  .site-menu-toggle.open span:nth-child(2) {
    opacity: 0;
    left: -60px; }
  .site-menu-toggle.open span:nth-child(3) {
    top: 13px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg); }

.section {
  padding: 7em 0; }
  @media (max-width: 991.98px) {
    .section {
      padding: 3em 0; } }

@media (max-width: 991.98px) {
  .lead {
    font-size: 16px; } }

.visit-section .heading {
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Engravers Gothic", arial, sans-serif;
  color: #b3b3b3;
  letter-spacing: .2em;
  margin-bottom: 30px; }

.visit-section .visit a {
  color: #000; }
  .visit-section .visit a:hover {
    color: #ffba5a; }

.visit-section .visit img {
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 15px; }

.visit-section .visit h3 {
  font-size: 20px;
  margin-bottom: 0; }

.visit-section .reviews-star span {
  font-size: 18px;
  color: #ffba5a; }

.visit-section .reviews-count {
  color: #adb5bd;
  font-style: italic; }

.heading-serif, .heading, .testimonial-section .heading, .slider-section .heading, .blog-post-entry .heading {
  font-size: 60px;
  
  font-weight: 700; }
  @media (max-width: 991.98px) {
    .heading-serif, .heading, .testimonial-section .heading, .slider-section .heading, .blog-post-entry .heading {
      font-size: 40px;
    } }

.bg-pattern {
  background: #e9ecef url("../img/round.png"); }

.slider-section {
  position: relative; }

.blog-post-entry {
  position: relative; }

.half .image, .half .text {
  width: 50%; }
  @media (max-width: 991.98px) {
    .half .image, .half .text {
      width: 100%; } }

.half .image {
  background-size: cover;
  background-position: center center; }
  @media (max-width: 991.98px) {
    .half .image {
      height: 300px; } }

.half .text {
  padding: 100px 7%; }
  @media (max-width: 991.98px) {
    .half .text {
      padding-top: 50px;
      padding-bottom: 50px; } }
  .half .text h2 {
    font-size: 70px; }
    @media (max-width: 991.98px) {
      .half .text h2 {
        font-size: 40px; } }

.testimonial blockquote {
  padding: 0; }

.testimonial .author-image img {
  width: 70px; }

.post .media-custom {
  background: #fff;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1); }
  .post .media-custom:hover, .post .media-custom:focus {
    -webkit-box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1); }
  .post .media-custom a {
    color: #000; }
    .post .media-custom a:hover {
      color: #ffba5a; }
  .post .media-custom .media-body {
    padding: 10px 30px; }
  .post .media-custom h2 {
    font-size: 26px; }

.media-custom .meta-post {
  color: #adb5bd;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 14px; }

.owl-carousel .owl-item {
  opacity: .4; }
  .owl-carousel .owl-item.active {
    opacity: 1; }

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -10px; }
    .owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-prev:focus, .owl-carousel .owl-nav .owl-prev:active,
    .owl-carousel .owl-nav .owl-next:hover,
    .owl-carousel .owl-nav .owl-next:focus,
    .owl-carousel .owl-nav .owl-next:active {
      outline: none; }
    .owl-carousel .owl-nav .owl-prev span:before,
    .owl-carousel .owl-nav .owl-next span:before {
      font-size: 40px; }
  .owl-carousel .owl-nav .owl-prev {
    left: 30px !important; }
  .owl-carousel .owl-nav .owl-next {
    right: 30px !important; }

.owl-carousel .owl-dots {
  text-align: center; }
  .owl-carousel .owl-dots .owl-dot {
    border-width: 2px !important;
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%; }

.owl-carousel.home-slider {
  z-index: 1;
  position: relative; }
  .owl-carousel.home-slider .owl-nav {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    .owl-carousel.home-slider .owl-nav button {
      color: #fff; }
  .owl-carousel.home-slider:focus .owl-nav, .owl-carousel.home-slider:hover .owl-nav {
    opacity: 1;
    visibility: visible; }
  .owl-carousel.home-slider .slider-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: calc(100vh - 117px);
    min-height: 700px;
    position: relative; }
    .owl-carousel.home-slider .slider-item .slider-text {
      color: #fff;
      height: calc(100vh - 117px);
      min-height: 700px; }
      .owl-carousel.home-slider .slider-item .slider-text h1 {
        font-size: 40px;
        color: #fff;
        line-height: 1.2;
        font-weight: 800 !important;
        text-transform: uppercase; }
        @media (max-width: 991.98px) {
          .owl-carousel.home-slider .slider-item .slider-text h1 {
            font-size: 40px; } }
      .owl-carousel.home-slider .slider-item .slider-text p {
        font-size: 20px;
        line-height: 1.5;
        font-weight: 300;
        color: white; }
    .owl-carousel.home-slider .slider-item.dark .child-name {
      color: #000; }
    .owl-carousel.home-slider .slider-item.dark h1 {
      color: #000; }
    .owl-carousel.home-slider .slider-item.dark p {
      color: #000; }
  .owl-carousel.home-slider .owl-dots {
    position: absolute;
    bottom: 100px;
    width: 100%; }
    .owl-carousel.home-slider .owl-dots .owl-dot {
      width: 2px;
      height: 2px;
      margin: 3px;
      border-radius: 60%;
      border: 2px solid transparent;
      outline: none !important;
      position: relative;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease;
      background: #fff; }
      .owl-carousel.home-slider .owl-dots .owl-dot.active {
        border: 2px solid white;
        background: none; }

.owl-carousel.major-caousel .owl-stage-outer {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.owl-carousel.major-caousel .owl-stage-outer {
  padding-top: 30px;
  padding-bottom: 30px; }

.owl-carousel.major-caousel .slider-item {
  height: inherit;
  min-height: inherit; }
  .owl-carousel.major-caousel .slider-item img {
    margin-bottom: 0; }

.owl-carousel.major-caousel .owl-nav {
  opacity: 1;
  visibility: visible; }
  .owl-carousel.major-caousel .owl-nav .owl-prev, .owl-carousel.major-caousel .owl-nav .owl-next {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    color: #495057; }
    .owl-carousel.major-caousel .owl-nav .owl-prev:hover, .owl-carousel.major-caousel .owl-nav .owl-prev:focus, .owl-carousel.major-caousel .owl-nav .owl-next:hover, .owl-carousel.major-caousel .owl-nav .owl-next:focus {
      color: #6c757d;
      outline: none; }
    .owl-carousel.major-caousel .owl-nav .owl-prev.disabled, .owl-carousel.major-caousel .owl-nav .owl-next.disabled {
      color: #dee2e6; }
  .owl-carousel.major-caousel .owl-nav .owl-prev {
    left: -60px !important; }
  .owl-carousel.major-caousel .owl-nav .owl-next {
    right: -60px !important; }

.owl-carousel.major-caousel .owl-dots {
  bottom: 50px !important; }
  @media (max-width: 991.98px) {
    .owl-carousel.major-caousel .owl-dots {
      bottom: 10px !important; } }

.owl-carousel.js-carousel-2 .slider-item {
  padding: 0 20px;
  text-align: center; }

.owl-carousel.js-carousel-2 .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 299; }
  .owl-carousel.js-carousel-2 .owl-nav .owl-prev,
  .owl-carousel.js-carousel-2 .owl-nav .owl-next {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -10px; }
    .owl-carousel.js-carousel-2 .owl-nav .owl-prev:hover, .owl-carousel.js-carousel-2 .owl-nav .owl-prev:focus, .owl-carousel.js-carousel-2 .owl-nav .owl-prev:active,
    .owl-carousel.js-carousel-2 .owl-nav .owl-next:hover,
    .owl-carousel.js-carousel-2 .owl-nav .owl-next:focus,
    .owl-carousel.js-carousel-2 .owl-nav .owl-next:active {
      outline: none; }
    .owl-carousel.js-carousel-2 .owl-nav .owl-prev span:before,
    .owl-carousel.js-carousel-2 .owl-nav .owl-next span:before {
      font-size: 40px; }
  .owl-carousel.js-carousel-2 .owl-nav .owl-prev {
    left: -30px !important; }
  .owl-carousel.js-carousel-2 .owl-nav .owl-next {
    right: -30px !important; }

.owl-carousel.js-carousel-2 .owl-dots .owl-dot {
  display: inline-block;
  border: none; }
  .owl-carousel.js-carousel-2 .owl-dots .owl-dot > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e9ecef;
    display: inline-block; }
  .owl-carousel.js-carousel-2 .owl-dots .owl-dot.active > span {
    background: #ffba5a; }
  .owl-carousel.js-carousel-2 .owl-dots .owl-dot:active, .owl-carousel.js-carousel-2 .owl-dots .owl-dot:focus, .owl-carousel.js-carousel-2 .owl-dots .owl-dot:hover {
    outline: none; }

.owl-custom-nav {
  float: right;
  position: relative;
  z-index: 10; }
  .owl-custom-nav .owl-custom-prev,
  .owl-custom-nav .owl-custom-next {
    padding: 10px;
    font-size: 30px;
    background: #ccc;
    line-height: 0;
    width: 60px;
    text-align: center;
    display: inline-block; }

.footer-section {
  background: #002d4b;
  color: #002d4b; }
  .footer-section a {
    color: rgba(255, 255, 255, 0.7); }
    .footer-section a:hover {
      color: #fff; }
  .footer-section p {
    color: rgba(255, 255, 255, 0.5); }
  .footer-section .bordertop {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px; }
  .footer-section .contact-info span.d-block {
    font-style: italic;
    color: #fff; }
  .footer-section .social a {
    font-size: 18px;
    padding: 10px; }
  .footer-section .link li {
    margin-bottom: 10px; }

.footer-newsletter .form-group {
  position: relative; }

.footer-newsletter .form-control {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #fff; }
  .footer-newsletter .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.2);
    font-style: italic; }
  .footer-newsletter .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.2);
    font-style: italic; }
  .footer-newsletter .form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.2);
    font-style: italic; }
  .footer-newsletter .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.2);
    font-style: italic; }
  .footer-newsletter .form-control:active, .footer-newsletter .form-control:focus {
    border-bottom: 1px solid white; }

.footer-newsletter button[type="submit"] {
  background: none;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0; }

.side-box, .sidebar-search {
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px; }
  .side-box .heading, .sidebar-search .heading {
    font-size: 18px;
    margin-bottom: 30px;
    font-family: "Roboto", arial, sans-serif; }

.post-list li {
  margin-bottom: 20px; }
  .post-list li a > div {
    margin-top: -10px; }
  .post-list li a .meta {
    font-size: 13px;
    color: #adb5bd; }
  .post-list li a .image {
    width: 150px; }
  .post-list li a h3 {
    font-size: 16px; }
  .post-list li:last-child {
    margin-bottom: 0; }

.sidebar-search .form-group {
  position: relative;
  margin-bottom: 0; }

.sidebar-search .icon-search {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.sidebar-search .search-input {
  border-color: #dee2e6;
  padding-left: 40px;
  border-radius: 0px; }
  .sidebar-search .search-input:focus, .sidebar-search .search-input:active {
    border-color: #343a40; }

.contact-section .contact-info p {
  font-family: "Engravers Gothic", times, serif;
  font-size: 30px;
  margin-bottom: 30px; }
  .contact-section .contact-info p .d-block {
    font-size: 14px;
    letter-spacing: .2em;
    font-weight: bold;
    font-family: "Engravers Gothic", arial, sans-serif;
    text-transform: uppercase; }

.post-categories li {
  display: block; }
  .post-categories li a {
    display: block;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e9ecef; }
    .post-categories li a .count {
      position: absolute;
      top: 0;
      right: 0;
      color: #6c757d; }

.custom-pagination .page-item .page-link {
  text-align: center;
  border: none;
  background: none;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  padding: 0;
  line-height: 50px;
  margin-right: 10px;
  margin-bottom: 10px; }

.custom-pagination .page-item.active .page-link {
  background: #ffba5a;
  -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2); }

.line-height-1-2 {
  line-height: 1.2; }

/* Mouse Animation */
.mouse {
  width: 100px;
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 140px;
  z-index: 1;
  -webkit-transform: translateX(-25%);
  -ms-transform: translateX(-25%);
  transform: translateX(-25%); }

.mouse-icon {
  width: 25px;
  height: 45px;
  border: 2px solid white;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  text-align: center; }

.mouse-wheel {
  height: 6px;
  margin: 2px auto 0;
  display: block;
  width: 3px;
  background-color: white;
  border-radius: 50%;
  -webkit-animation: 1.6s ease infinite wheel-up-down;
  -moz-animation: 1.6s ease infinite wheel-up-down;
  animation: 1.6s ease infinite wheel-up-down; }

@-webkit-keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0; }
  30% {
    opacity: 1; }
  100% {
    margin-top: 20px;
    opacity: 0; } }

@-moz-keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0; }
  30% {
    opacity: 1; }
  100% {
    margin-top: 20px;
    opacity: 0; } }

@keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0; }
  30% {
    opacity: 1; }
  100% {
    margin-top: 20px;
    opacity: 0; } }

.site-block-half .image, .site-block-half .text {
  width: 100%; }
  @media (min-width: 992px) {
    .site-block-half .image, .site-block-half .text {
      width: 50%;
      border-radius: 18px;} }

@media (max-width: 991.98px) {
  .site-block-half .image {
    margin-bottom: 50px;
    height: 300px; } }

.site-block-half .text {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px; }
  @media (min-width: 992px) {
    .site-block-half .text {
      padding: 4rem; } }

.site-block-half .bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }
  @media (max-width: 991.98px) {
    .site-block-half .bg-image {
      height: 400px; } }

.site-block-half.site-block-video .image {
  position: relative; }
  .site-block-half.site-block-video .image .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 20px;
    width: 70px;
    height: 70px;
    background: #fff;
    display: block;
    border-radius: 50%;
    opacity: 1;
    color: #ffba5a !important; }
    .site-block-half.site-block-video .image .play-button:hover {
      opacity: 1; }
    .site-block-half.site-block-video .image .play-button > span {
      position: absolute;
      left: 55%;
      top: 50%;
      -webkit-transform: translate(-60%, -50%);
      -ms-transform: translate(-60%, -50%);
      transform: translate(-60%, -50%); }

.field-icon-wrap {
  position: relative; }
  .field-icon-wrap .form-control {
    position: relative;
    padding-right: 40px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: #a6a6a6; }
  .field-icon-wrap .icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    z-index: 2; }
  .field-icon-wrap select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%; }

.block-32 {
  background: #fff;
  padding: 30px;
  -webkit-box-shadow: 0 2px 80px -10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 80px -10px rgba(0, 0, 0, 0.2);
  width: 100%; }
  .block-32 .field-icon-wrap {
    position: relative; }
    .block-32 .field-icon-wrap .form-control {
      position: relative;
      padding-right: 40px;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      color: #a6a6a6; }
    .block-32 .field-icon-wrap .icon {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      right: 15px;
      z-index: 2; }
    .block-32 .field-icon-wrap select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      width: 100%; }

.block-2 {
  margin-bottom: 50px;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -ms-transform: perspective(1000px);
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d; }
  .block-2:hover .back, .block-2.hover .back {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg); }
  .block-2:hover .front, .block-2.hover .front {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg); }
  .block-2, .block-2 .front, .block-2 .back {
    width: 100%;
    height: 427px; }
  .block-2 .flipper {
    -webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 0.6s;
    -moz-transition: 0.6s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transition: 0.6s;
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative; }
  .block-2 .front, .block-2 .back {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 4px;
    -webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -webkit-transform: rotateY(0deg);
    -moz-transition: 0.6s;
    -moz-transform-style: preserve-3d;
    -moz-transform: rotateY(0deg);
    -o-transition: 0.6s;
    -o-transform-style: preserve-3d;
    -o-transform: rotateY(0deg);
    -ms-transition: 0.6s;
    -ms-transform-style: preserve-3d;
    -ms-transform: rotateY(0deg);
    transition: 0.6s;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    position: absolute;
    top: 0;
    left: 0; }
  .block-2 .front {
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    background: lightgreen;
    z-index: 2;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
    .block-2 .front:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
      background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); }
    .block-2 .front .box {
      position: absolute;
      bottom: 0;
      left: 20px;
      right: 20px;
      bottom: 20px; }
      .block-2 .front .box h2, .block-2 .front .box p {
        color: #fff;
        margin: 0;
        padding: 0;
        line-height: 1.5; }
      .block-2 .front .box h2 {
        font-size: 20px; }
      .block-2 .front .box p {
        font-size: 12px; }
  .block-2 .back {
    background: #fff;
    -webkit-box-shadow: 0 0 70px -10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 70px -10px rgba(0, 0, 0, 0.4);
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg); }
  .block-2 .back p {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 20px;
    font-size: 18px; }
  .block-2 .author {
    bottom: 0;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px; }
    .block-2 .author .image {
      width: 40px; }
      .block-2 .author .image img {
        border-radius: 50%;
        max-width: 100%; }
    .block-2 .author .position {
      display: block;
      font-size: 12px; }
  @media (max-width: 991.98px) {
    .block-2 .back {
      -webkit-transform: rotateY(0deg);
      -moz-transform: rotateY(0deg);
      -o-transform: rotateY(0deg);
      -ms-transform: rotateY(0deg);
      transform: rotateY(0deg); }
    .block-2 .front {
      -webkit-transform: rotateY(180deg);
      -moz-transform: rotateY(180deg);
      -o-transform: rotateY(180deg);
      transform: rotateY(180deg); } }

.text-black {
  color: #000 !important; }

.check-availabilty {
  margin-top: -170px;
  position: relative; }
  .check-availabilty .block-32 {
    background: #fff;
    border-radius: 10px; }

.room {
  position: relative;
  display: block; }
  .room .img-wrap {
    position: relative;
    overflow: hidden; }
    .room .img-wrap img {
      -webkit-transition: .3s all ease-in-out;
      -o-transition: .3s all ease-in-out;
      transition: .3s all ease-in-out;
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      margin-bottom: 0 !important; }
  .room:hover .img-wrap img, .room:focus .img-wrap img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); }

.letter-spacing-1 {
  letter-spacing: .1em; }

.text-opacity-8 {
  opacity: .8; }

.text-opacity-7 {
  opacity: .7; }

.text-opacity-6 {
  opacity: .6; }

.text-opacity-5 {
  opacity: .5; }

.letter-spacing-2 {
  letter-spacing: .2em; }

.bg-image {
  background-size: cover;
   }

.bg-image-2 {
  background-size: cover;
  background-position: center; }

.food-menu-tabs {
  text-align: center; }
  .food-menu-tabs .nav-tabs {
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    border-bottom: none; }
    .food-menu-tabs .nav-tabs li {
      display: inline-block; }
      .food-menu-tabs .nav-tabs li a {
        border: none;
        background: none;
        font-weight: bold;
        position: relative;
        display: block; }
        .food-menu-tabs .nav-tabs li a:before {
          -webkit-transition: .3s all ease;
          -o-transition: .3s all ease;
          transition: .3s all ease;
          content: "";
          position: absolute;
          bottom: 0;
          left: 16px;
          right: 20px;
          height: 2px;
          background: transparent; }
        .food-menu-tabs .nav-tabs li a.active {
          border: none;
          background: none;
          color: #fff; }
          .food-menu-tabs .nav-tabs li a.active:before {
            background: #fff; }

.custom-caption {
  font-size: 14px;
  letter-spacing: .2em; }

.bg-image {
 background-repeat: no-repeat;
background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1; }
  .bg-image.overlay {
    position: relative; }
    .bg-image.overlay > .container {
      position: relative;
      z-index: 3; }
    .bg-image.overlay:before {
      z-index: 2;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: "";
      background: rgba(0 45 75 / 80%); } 

.img-absolute {
  position: absolute;
  bottom: -100px;
  right: -100px; }
  .img-absolute img {
    max-width: 250px;
    border-radius: 50%;
    border: 10px solid #ffffff; }
  @media (max-width: 991.98px) {
    .img-absolute {
      right: 0px; }
      .img-absolute img {
        max-width: 160px; } }

.custom-breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0; }
  .custom-breadcrumbs li {
    display: inline-block;
    color: #fff;
    margin: 0 4px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .1em;
    font-family:"Engravers Gothic"}
    .custom-breadcrumbs li a {
      font-weight: normal; 
    font-family:"Engravers Gothic"}
      .custom-breadcrumbs li a:hover {
        color: #fff; font-family:"Engravers Gothic"; }

.timeline-item {
  padding: 3em 2em 2em;
  position: relative;
  border-left: 2px solid #dee2e6; }
  .timeline-item::before {
    content: attr(date-is);
    position: absolute;
    left: 2em;
    font-weight: bold;
    top: 1em;
    display: block;
    font-weight: 700;
    font-size: .785rem; }
  .timeline-item::after {
    width: 10px;
    height: 10px;
    display: block;
    top: 1em;
    position: absolute;
    left: -6px;
    border-radius: 10px;
    content: '';
    border: 2px solid #dee2e6;
    background: white; }
  .timeline-item:last-child {
    -webkit-border-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #dee2e6), to(rgba(222, 226, 230, 0))) 1 100%;
    -webkit-border-image: -webkit-linear-gradient(top, #dee2e6 60%, rgba(222, 226, 230, 0)) 1 100%;
    -o-border-image: -o-linear-gradient(top, #dee2e6 60%, rgba(222, 226, 230, 0)) 1 100%;
    border-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #dee2e6), to(rgba(222, 226, 230, 0))) 1 100%;
    border-image: linear-gradient(to bottom, #dee2e6 60%, rgba(222, 226, 230, 0)) 1 100%; }

.custom-pagination {
  text-align: center; }
  .custom-pagination ul {
    padding: 0;
    margin: 0; }
    .custom-pagination ul li {
      display: inline-block; }
      .custom-pagination ul li a {
        background: #fff;
        border-radius: 50%;
        border: 1px solid transparent; }
        .custom-pagination ul li a:hover {
          border: 1px solid #d9d9d9;
          -webkit-box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1); }
      .custom-pagination ul li a, .custom-pagination ul li span {
        display: inline-block;
        width: 47px;
        margin: 2px;
        height: 47px;
        font-size: 1.2rem;
        line-height: 47px; }
      .custom-pagination ul li.active span {
        background: #ffba5a;
        color: #fff;
        border-radius: 50%; }
