:root {
    /* ---------------------------------- color --------------------------------- */
    --silver: #4b555e;
    --brown: #764741;
    --gold: #8e8157;
    --white: white;
    --black: black;



    /* -------------------------------- tipografy ------------------------------- */
    --primary-ff: "Cormorant", serif;
    --secondary-ff: "Cormorant", serif;

    /* ----------------------------------font-size-------------------------- */

}

/* Scrooling */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    background-color: white;
    font-family: var(--primary-ff) !important;
    font-size: 10px;
    overflow: auto !important;

}

a {
    text-decoration: none !important;

}

a:hover {
    text-decoration: none !important;
}

/* a:focus {
    color: var(--white) !important;
 } */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* обнуляем дефолтные маркеры у всех маркированных списков */
/* form */
button,
input,
select,
textarea {
    margin: 0;
}

img {
    width: 100%;
}

strong {
    color: var(--gold);
    font-weight: 900;
}

.container {
    min-width: 100% !important;
}

.row {
    max-width: 1400px !important;
    margin: 0 auto !important;
}

.margin_top100 {
    margin-top: 100px !important;
}



.btn_up img {
    width: 80%;
}


/* HEADER */

.header_container {
    width: 100%;
    z-index: 3;
    position: fixed;
    top: 0;
    transition: background-color 0.3s ease;
    /* Добавлено для плавного перехода цвета фона */
}

.header_container.transparent {
    background-color: transparent;
}

.header_container.black {
    background-color: rgba(0, 0, 0, 0.76);
}

.logo_text {
    font-size: 30px;
}

.logoimg {
    width: 45%;
    transition: all 0.2s;
}

.row_header {
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;

}

.number {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    margin-right: 10px;
    display: block;
}



.phone_icon {
    color: var(--white);
    font-size: 25px;
    margin-right: 5px;

}




.social_header:hover {
    color: var(--white) !important;
}

.nav {
    justify-content: center;

}

.nav-link {
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    padding: 2px 15px;
}

.nav-link:hover {
    color: var(--white);
}



.botom_border {
    transition: all 0.2s !important;
    border-bottom: 0.1px solid transparent !important;
}

.botom_border:hover {
    border-bottom: 1px solid var(--white) !important;
}


.header_menu {
    font-size: 17px;
}

.contact_block {
    font-size: 20px;
    font-weight: 600;
}

.contact_block ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MOBILE */
.mobile_icon {
    display: none;
}

.mobile_icon a {
    font-size: 17px;
    color: var(--white);
}

.social_header {
    font-size: 25px !important;
}

.burger_icon {
    font-size: 25px !important;
    color: var(--white);
    font-weight: 700;
    display: none;
}

.menu_mob_left {
    visibility: visible;
    background-color: #8e8157dc;

}

.offcanvas-header img {
    width: 100%;
}

.list_mobile_menu {
    font-size: 20px;
    color: var(--dark);
    font-weight: 500;
    border-top: 1px solid var(--yelow);

}

/* INTRO */
.intro_container {
    min-height: 100vh;
    background-image: url(./img/intro4.jpg);
    background-repeat: no-repeat;
    background-position: center;

    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.intro_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%);
}



.intro_row {
    justify-content: flex-start;
    width: 100%;
    z-index: 1;
}

.intro_box {
    position: relative;
    text-align: center;
    border-radius: 5px;
    height: fit-content;
    padding: 20px;

}

.intro_title {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;

    color: var(--white);
}

.intro_undertitle {
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    color: var(--white);
    text-align: left;
}

.more_btn_wrapper {
    margin: 0 auto;
    font-size: 20px;
    margin-top: 50px;
    width: 100%;
    padding: 5px 10px 5px 10px;
    color: white;
    display: flex;
    justify-content: space-evenly;


}

.button {
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: var(--gold);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 3px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 18px;

}



.button:hover {
    transform: scale(1.05);
    border-color: #fff9;
}



.button:hover::before {
    animation: shinen 1.5s ease-out infinite;
}

.button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shinen {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

/* ABOUT */
.about_container {
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 100vh;
    overflow: hidden;
}

.title {
    font-size: 30px;
    text-align: center;
    font-weight: 700;
}

.about_row {
    padding-top: 50px;
}

.team_box p {
    font-size: 22px;
}

.team_box img {
    border-radius: 5px;
}


/* COUNTER */
.counter_container {
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #eeedeb;
}

.stats {
    text-align: center;

}

.stats .counting {
    color: var(--silver);

    font-size: 50px;
}

.stats h5 {
    color: var(--silver);

    font-size: 30px;
}

.stat_icon {
    font-size: 50px;
    color: var(--silver);
}

/* TOUR */
.tour_container {
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 100vh;
    overflow: hidden;
}

.tour_row {
    padding-top: 50px;

}

.tour_box {
    background-color: #f0f7fd;
    padding: 10px;
    border-radius: 10px;
}

.photo_info {
    width: 100%;
}

.info {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.name_tour {
    font-size: 25px;
    font-weight: 700;
}

.time_tour {
    font-size: 20px;
    font-weight: 700;
}

.photo {
    width: 100%;
    height: 400px;
}

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

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

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.swiper {
    width: 100%;


}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
    margin-top: 10px;

}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

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


.about_1 {
    max-height: 0px;
    /* Начальная высота 0 */
    overflow: hidden;
    /* Скрытие контента, который выходит за пределы блока */
    transition: max-height 0.3s;
    /* Анимация изменения высоты */
    margin-top: 20px;
    font-size: 20px;
    line-height: 20px;
}

.about_2 {
    max-height: 0px;
    /* Начальная высота 0 */
    overflow: hidden;
    /* Скрытие контента, который выходит за пределы блока */
    transition: max-height 0.3s;
    /* Анимация изменения высоты */
    margin-top: 20px;
    font-size: 20px;
    line-height: 20px;
}

.about_3 {
    max-height: 0px;
    /* Начальная высота 0 */
    overflow: hidden;
    /* Скрытие контента, который выходит за пределы блока */
    transition: max-height 0.3s;
    /* Анимация изменения высоты */
    margin-top: 20px;
    font-size: 20px;
    line-height: 20px;
}

.about_4 {
    max-height: 0px;
    /* Начальная высота 0 */
    overflow: hidden;
    /* Скрытие контента, который выходит за пределы блока */
    transition: max-height 0.3s;
    /* Анимация изменения высоты */
    margin-top: 20px;
    font-size: 20px;
    line-height: 20px;
}

.about_5 {
    max-height: 0px;
    /* Начальная высота 0 */
    overflow: hidden;
    /* Скрытие контента, который выходит за пределы блока */
    transition: max-height 0.3s;
    /* Анимация изменения высоты */
    margin-top: 20px;
    font-size: 20px;
    line-height: 20px;
}

.about_6 {
    max-height: 0px;
    /* Начальная высота 0 */
    overflow: hidden;
    /* Скрытие контента, который выходит за пределы блока */
    transition: max-height 0.3s;
    /* Анимация изменения высоты */
    margin-top: 20px;
    font-size: 20px;
    line-height: 20px;
}

.about_7 {
    max-height: 0px;
    /* Начальная высота 0 */
    overflow: hidden;
    /* Скрытие контента, который выходит за пределы блока */
    transition: max-height 0.3s;
    /* Анимация изменения высоты */
    margin-top: 20px;
    font-size: 20px;
    line-height: 20px;
}

.about_8 {
    max-height: 0px;
    /* Начальная высота 0 */
    overflow: hidden;
    /* Скрытие контента, который выходит за пределы блока */
    transition: max-height 0.3s;
    /* Анимация изменения высоты */
    margin-top: 20px;
    font-size: 20px;
    line-height: 20px;
}

.about_9 {
    max-height: 0px;
    /* Начальная высота 0 */
    overflow: hidden;
    /* Скрытие контента, который выходит за пределы блока */
    transition: max-height 0.3s;
    /* Анимация изменения высоты */
    margin-top: 20px;
    font-size: 20px;
    line-height: 20px;
}

.about_10 {
    max-height: 0px;
    /* Начальная высота 0 */
    overflow: hidden;
    /* Скрытие контента, который выходит за пределы блока */
    transition: max-height 0.3s;
    /* Анимация изменения высоты */
    margin-top: 20px;
    font-size: 20px;
    line-height: 20px;
}

.about_11 {
    max-height: 0px;
    /* Начальная высота 0 */
    overflow: hidden;
    /* Скрытие контента, который выходит за пределы блока */
    transition: max-height 0.3s;
    /* Анимация изменения высоты */
    margin-top: 20px;
    font-size: 20px;
    line-height: 20px;
}

.about_12 {
    max-height: 0px;
    /* Начальная высота 0 */
    overflow: hidden;
    /* Скрытие контента, который выходит за пределы блока */
    transition: max-height 0.3s;
    /* Анимация изменения высоты */
    margin-top: 20px;
    font-size: 20px;
    line-height: 20px;
}

.detailed_1 {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}

.detailed_2 {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}

.detailed_3 {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}

.detailed_4 {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}

.detailed_5 {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}

.detailed_6 {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}

.detailed_7 {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}

.detailed_8 {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}

.detailed_9 {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}

.detailed_10 {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}

.detailed_11 {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}

.detailed_12 {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}


.order {
    background-color: rgba(0, 128, 0, 0.705);
    width: fit-content;
    padding: 5px 10px;
    border-radius: 10px;
    color: white;
    margin-top: 10px;
    cursor: pointer;
}

.pading_margin {

    margin-top: 20px;
}


/* GALLERY */


.gallery_container {
    min-height: 80vh;
    padding-bottom: 50px;
    padding-top: 50px;
    overflow: hidden;
}



.gallery_row {
    justify-content: center;
    position: relative;
    padding-top: 30px;
}

.review-slider__card {
    width: 100%;
    background-color: var(--silver);
    padding: 45px 30px;
    border-radius: 10px;
    height: 350px;
}

.review-slider__card {
    margin: 0 auto;
    max-width: 350px;
    display: flex;
    flex-direction: column;
}

.review-card__icon {
    margin-bottom: 28px;
}

.review-card__icon {
    text-align: center;
    margin-bottom: 13px;
}

.review-card__text {
    min-height: 120px;
}

.review-card__text {
    min-height: 144px;
    font-size: 14px;
    color: white;
    letter-spacing: 0;
    margin-bottom: 28px;
}

.review-card__author {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    bottom: 10px !important;
}

.review-card__author-image {
    width: 56px;
    height: 56px;
    margin-right: 10px;
}

.review-card__author-image img {
    width: 56px;
    height: 56px;

    border-radius: 50%;
}

.review-card__author-content {
    flex-grow: 1;
    text-align: left;
}

.review-card__author-name {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: white;
}

.review-card__author-text,
.review-card__author-company {
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    color: white;
    margin-top: 4px;
}

/* FOOTER */
.footer_container {
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

.footer_row {
    justify-content: center;
}

.contact_list {
    width: fit-content;
    font-size: 22px;
    margin: 0 auto;
    font-weight: 700;
    text-align: center;
}

.contact_list a {
    color: var(--black);
    font-weight: 500;

}

.contact_list li {
    color: var(--black);
    font-weight: 500;

}

.copyright {
    font-size: 15px;
    color: var(--black);
    text-align: center;
    margin-top: 50px;
}

.time {
    font-size: 17px;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;

}

.title_adress2 {
    color: var(--gold);
}



















































.btn_up {
    /* background-color: rgba(0, 0, 0, 0.541) !important; */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 20px;
    bottom: 120px;
    position: fixed;
    cursor: pointer;
    text-align: center;
    z-index: 100;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;

    padding: 15px 10px;
    border-radius: 5em;
}

.social-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 5px 0px;
    background-color: #fff;
    box-shadow: 0px 0px 4px #00000027;
    transition: 0.3s;
}

.social-button:hover {
    background-color: #f2f2f2;
    box-shadow: 0px 0px 6px 3px #00000027;
}

.social-buttons svg {
    transition: 0.3s;
    height: 20px;
}

.facebook {
    background-color: #7360F2;
}

.facebook svg {
    fill: #f2f2f2;
}

.facebook:hover svg {
    fill: #7360F2;
}


.linkedin {
    background-color: #2AABEE;
}

.linkedin svg {
    fill: #f2f2f2;
}

.linkedin:hover svg {
    fill: #2AABEE;
}

.instagram {
    background-color: #25d366;
}

.instagram svg {
    fill: #f2f2f2;
}

.instagram:hover svg {
    fill: #25d366;
}




/* МEDIA */

/* !TABLET */
@media (min-width: 569px) and (max-width:1024px) {}

/* !MOBILE */
@media (min-width: 0px) and (max-width:568px) {

    /* HEADER */
    .header_menu {
        display: none;
    }

    .logoimg {
        margin-bottom: 10px;
    }

    .contact_block {
        display: none;
    }

    .mobile_icon {
        display: block;
    }

    .phone_icon {
        font-size: 18px;
    }

    .burger_icon {

        display: block;
    }

    .margin_top {
        margin-top: 30px;
    }

    .wrapper_logo {
        margin-bottom: 10px;
        text-align: left;
        /* display: none; */
    }

    /* INTRO */
    .intro_container {}

    .intro_box {
        text-align: center;
        border-radius: 5px;
        height: 700px;
        padding: 10px;
        padding-top: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;

    }

    .intro_title {
        font-size: 40px;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 35px;
        margin-top: -150px;
    }

    .intro_undertitle {
        font-size: 20px;
        font-weight: 500;
        margin-top: 30px;
        line-height: 30px;
        width: 100%;
    }

    .more_btn_wrapper {
        margin: 0 auto;
        font-size: 20px;
        margin-top: 50px;
        width: 100%;
        padding: 5px 10px 5px 10px;
        color: white;
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;
        position: absolute;
        bottom: 50px;

    }

    .order,
    .more {
        width: 100%;
        padding: 10px;
        font-weight: 700;
        cursor: pointer;
        margin-bottom: 10px;
    }

    .modal-bg {
        color: var(--dark);
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .modal-header {
        width: 100%;
    }


    /* COUNTER */
    .counter_container {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .stats {
        text-align: center;
    }

    .stats .counting {
        font-size: 25px;
    }

    .stats h5 {
        font-size: 20px;
    }

    .stat_icon {
        font-size: 40px;
    }


    /* TOUR */
    .pading_margin {
        padding: 0;
        margin-top: 20px;
    }

    .info {
        margin-bottom: 10px;
        display: flex;
        flex-wrap: wrap;
    }

}