@import url('https://fonts.googleapis.com/css2?family=Cookie&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/*Обнуление*/
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

.img_hov_menu:hover {
    transform: scale(1.1);
    /* Увеличение при наведении */
}

.img_hov:hover {
    transform: scale(1.1);
    /* Увеличение при наведении */
}

.img_hov1:hover {
    transform: scale(1.1);
    /* Увеличение при наведении */
}

button:hover {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(255, 116, 0, 1);
}

a {
    text-decoration: none;
}

a:hover {
    /************************************************/
    text-decoration: underline;
    /* Подчеркивание при наведении */
    color: rgba(255, 116, 0, 1);
}

a:focus {
    /************************************************/
    text-decoration: underline;
    /* Подчеркивание */
    color: rgb(255, 0, 0);
}

a:active {
    /************************************************/
    text-decoration: underline;
    /* Подчеркивание */
    color: rgb(255, 226, 64);
}


ul,
ol,
li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

html,
body {
    height: 100%;
    line-height: 1;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.379);
    font-family: 'Tinos', serif;
}

/*---------------------------------------------------------------------------------------------------------------------*/

.wrapper {
    min-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

._container {
    /*ограничивающий контейнер*/
    max-width: 1109px;
    padding: 0px 15px;
    margin: 0px auto;
    /*выставит по середине*/

    box-sizing: content-box;
}

._ibg {
    position: relative;
}

._ibg>img {
    position: absolute;
    width: 100%;
    height: 800px;
    top: 0;
    left: 0;
    object-fit: cover;
}

/*-------------------------------------------------------*/
button {
    width: 157px;
    height: 47px;

    background-color: rgba(255, 116, 0, 1);
    /* Цвет фона кнопки */
    color: rgba(255, 255, 255, 1);
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    /* Bold */

    font-size: 14px;
}

/*----ШАПКА------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.header {
    position: absolute;
    /*fixed ?*/
    width: 100%;
    left: 0;
    top: 0;
    z-index: 50;
}

.header_container {
    display: flex;
    min-height: 169px;
    align-items: center;


}

/*////////////////////////////////////////////////////////////////////////////////*/

.overlay {
    display: none;
        /* Скрыто по умолчанию */
    z-index: 15;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;

  
}

.burger{
    display: none;
    z-index: 30;
}

.line{
            display: none;
}

.overlay.active {
    display: flex;
    /* Показываем оверлей при активном состоянии */
}

.burger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .line:nth-child(2) {
    opacity: 0;
    /* Скрываем среднюю линию */
}

.burger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/*////////////////////////////////////////////////////////////////////////////////*/
.header__menu {
    margin: 0px 0px 0px 268px;
}

.menu {
    padding: 5px 0px;
}

.menu_list {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.menu_item:not(:last-child) {
    margin: 0px 29px 0px 0px;
}

.menu_link {

    color: inherit;
    color: rgba(255, 255, 255, 1);
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;

}

.menu_link1 {
    font-size: 18px;
}

.menu_link2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    /* Regular */

}

.main-block__image {
    /**/
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/*--page-----------------------------------------------------------------------------------------------------*/
.page {
    flex: 1 1 auto;
}


.main-block {
    position: relative;

}



.main-block_body {
    padding: 323px 0px 331px 0px;
    position: relative;
    z-index: 2;
    max-width: 486px;


}

._container_css3 {
    perspective: 1000px;
}

.main-block__title {
    font-family: 'Tinos', serif;
    color: rgba(214, 126, 53, 1);
    font-size: 50px;
    /*line-height: calc(92/80*100%);*/

    text-align: center;

}




.main-block__title1 {
    font-family: 'Tinos', serif;
    color: rgba(214, 126, 53, 1);
    font-size: 80px;
    text-align: center;
    margin: 11px 0px 0px 0px;

    transition: transform 0.6s;
        /* Плавный переход при трансформации */
        transform-style: preserve-3d;
        /* Сохраняем 3D-эффект для дочерних элементов */
    }
    
    .main-block__title1:hover {
        transform: rotateZ(360deg);
        /* Вращаем текст при наведении */
    }

.main-block__title2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    /* Regular */
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    text-align: center;
    margin: 18px 0px 0px 0px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.main-block__title2>img {
    margin: 0px 8px 0px 8px;
}

.bt2 {
    width: 137px;
    height: 47px;
    margin: 23px auto;
    display: block;

}

.main-block__image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/*----Качества------------------------------------------------------------------------------------------------------------*/
.kachestva_cotent1 {
    position: relative;

    z-index: 2;
    margin: -107px 0px 0px 0px;
    background-color: rgba(255, 255, 255, 1);
    grid-area: cotent1;
    height: 328px;
    box-shadow: 15px 15px 35px 15px rgba(0, 0, 0, 0.1);
}

.kachestva_cotent_img {
    display: grid;
    place-items: center;
    margin: 47px 0px 0px 0px;
}

.kachestva_cotent2 {
    position: relative;

    z-index: 2;
    margin: -107px 0px 0px 0px;
    background-color: rgba(255, 255, 255, 1);
    grid-area: cotent2;
    height: 328px;

    box-shadow: 15px 15px 35px 15px rgba(0, 0, 0, 0.1);
}

.kachestva_cotent3 {
    position: relative;

    z-index: 2;
    margin: -107px 0px 0px 0px;
    background-color: rgba(255, 255, 255, 1);
    grid-area: cotent3;

    height: 328px;

    box-shadow: 15px 15px 35px 15px rgba(0, 0, 0, 0.1);
}

.kachestva_continer {

    height: 328px;

    display: grid;
    grid-template-columns: 349px 349px 349px;
    grid-template-rows: auto;
    gap: 31px;
    grid-template-areas:
        "cotent1 cotent2 cotent3";
    padding: 0px 10px;
    margin: -124px auto 0px auto;
    width: 1109px;
}

.kachestva_text1 {
    font-family: 'Tinos', serif;
    color: rgba(44, 44, 44, 1);
    font-size: 26px;
    text-align: center;
    margin: -11px 0px 0px 0px;
}

.kachestva_text1_1 {
    font-family: 'Tinos', serif;
    color: rgba(188, 144, 96, 1);
    font-size: 26px;
}

.kachestva_text2 {
    font-family: 'Tinos', serif;
    color: rgba(101, 99, 99, 1);
    font-size: 26px;
    text-align: center;
    margin: 33px 0px 0px 0px;
}

/*---------------------------------*/
/*-------Наша история-----------------------------------------------------------------------------------------*/
.histori_cotent1 {
    background-color: rgba(255, 255, 255, 1);
    grid-area: histori_cotent1;
    margin: 15px 0px 0px 0px;
}

.histori_cotent2 {
    background-color: rgba(255, 255, 255, 1);
    grid-area: histori_cotent2;
}


.histori_cotent3 {
    background-color: rgba(255, 255, 255, 1);
    grid-area: histori_cotent3;

    display: grid;
    grid-template-columns: 84px 84px 84px;
    grid-template-rows: auto;
    gap: 40px;
    grid-template-areas:
        "histori_cotent3_txt1 histori_cotent3_txt2 histori_cotent3_txt3";


    align-items: center;
    justify-content: center;
}

.histori_continer {
    height: 497px;


    display: grid;
    grid-template-columns: 444px 539px;
    grid-template-rows: 289px 215px;
    column-gap: 125px;
    grid-template-areas:
        "histori_cotent1 histori_cotent2"
        "histori_cotent3 histori_cotent2";
    padding: 0px 0px;
    width: 1109px;
}

.histori_text1 {
    font-family: 'Tinos', serif;
    color: rgba(0, 0, 0, 1);
    font-size: 54px;
    text-align: center;

}

.histori_text1_1 {
    color: rgba(214, 126, 52, 1);
    font-size: 54px;
}

.histori_text2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: rgba(101, 99, 99, 1);
    font-size: 16px;
    text-align: center;

    line-height: 21px;
    margin-top: 8px;
}

.histori_text3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    /* Regular */
    font-size: 40px;
    text-align: center;
    color: rgba(188, 144, 96, 1);

}

.histori_text4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    /* Regular */
    font-size: 20px;
    text-align: center;
    color: rgba(0, 0, 0, 1);
    margin: 17px 0px 0px 0px;
}

.histori_cotent3_txt1 {
    grid-area: histori_cotent3_txt1;
}

.histori_cotent3_txt2 {
    grid-area: histori_cotent3_txt2;
}

.histori_cotent3_txt3 {
    grid-area: histori_cotent3_txt3;
}

.histori_cotent2_img1 {
    width: 216px;
    height: 164px;
    margin: 33px 0px 0px 285px;
}

.histori_cotent2_img2 {
    width: 225px;
    height: 430px;
    margin: -198px 0px 0px 190px;
}

.histori_cotent2_img3 {
    width: 233px;
    height: 300px;
    margin: -365px 0px 0px 0px;
    box-shadow: 30px 0px 40px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 1);
}

.histori_cotent2_img4 {
    width: 254px;
    height: 300px;
    margin: -248px 0px 0px 285px;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.25);

    filter: grayscale(10%) brightness(1.2);
        /* Применяем фильтры */
        transition: filter 0.3s ease;
        /* Плавный переход при наведении */
}


.histori_cotent2 img {
    opacity: 0;
        /* Начальное состояние — невидимо */
        animation: fade-in-out 8s infinite;
        /* Анимация будет длиться 8 секунд и повторяться бесконечно */
    }
.histori_cotent2 img:nth-child(1) {
    animation-delay: 0s;
    /* Первое изображение появляется сразу */
}

.histori_cotent2 img:nth-child(2) {
    animation-delay: 2s;
    /* Второе изображение появляется через 2 секунды */
}

.histori_cotent2 img:nth-child(3) {
    animation-delay: 4s;
    /* Третье изображение появляется через 4 секунды */
}

.histori_cotent2 img:nth-child(4) {
    animation-delay: 6s;
    /* Четвертое изображение появляется через 6 секунд */
}

@keyframes fade-in-out {
    0%{
            opacity: 0;
            /* Появление изображения */
        }
        20% {
            opacity: 1;
            /* Появление изображения */
        }
    
        25%,
        75% {
            opacity: 1;
            /* Изображение остается видимым */
        }
    
        80% {
            opacity: 0;
            /* Начало исчезновения всех изображений */
        }
    
        100% {
            opacity: 0;
            /* Все изображения невидимы в конце цикла */
        }
}

.histori_cotent2_img4:hover {
    filter: grayscale(0%) brightness(1) blur(0);
    /* Сбрасываем фильтры при наведении */
}

/*-----------------------------------------*/
/*-----Блок под историей-------------------------------------------------------------------------------------------------------------*/
.podhistori_continer {
    height: 357px;
    margin: 117px auto;

    display: grid;
    grid-template-columns: 601px 197px;
    grid-template-rows: 357px;
    column-gap: 309px;
    grid-template-areas:
        "podhistori_continer_content1 podhistori_continer_content2";
    padding: 0px 14px;
    width: 1109px;
    display: grid;
    place-items: center;

}

.podhistori_continer_content1 {
    grid-area: podhistori_continer_content1;


}

.podhistori_continer_content2 {
    grid-area: podhistori_continer_content2;
}

.podhistori_continer_content1_txt1 {
    font-family: 'Tinos', serif;
    font-size: 52px;
    text-align: left;
    color: rgba(214, 126, 52, 1);
}

.podhistori_continer_content1_txt2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    /* Bold */
    font-size: 24px;
    text-align: left;
    color: rgba(255, 255, 255, 1);
    margin: 29px 0px 0px 0px;
}

.podhistori_continer_content2>button {
    width: 157px;
    height: 47px;
}

._ibg1 {
    position: relative;
}

._ibg1>img {

    z-index: -2;
    position: absolute;
    width: 100%;
    height: 357px;
    top: 1742px;
    left: 0;
    object-fit: cover;
}

.main-block__image1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.page_podhistori {
    background-color: rgba(0, 0, 0, 0.85);
}

/*--Наши блюда--------------------------------------*/

.bishes_continer {
    height: 665px;

    display: grid;
    grid-template-columns: 1109px;
    grid-template-rows: 46px 474px;
    row-gap: 145px;
    grid-template-areas:
        "bishes_continer_content1"
        "bishes_continer_content2";

    width: 1109px;
    /*   display: grid;
        place-items: center;*/

}

.bishes_continer_content1 {

    grid-area: bishes_continer_content1;
}

.bishes_continer_content2 {

    grid-area: bishes_continer_content2;

    display: grid;
    grid-template-columns: 444px 634px;
    grid-template-rows: 474px;
    column-gap: 30px;
    grid-template-areas:
        "bishes_continer_content2_bloc1 bishes_continer_content2_2";
}

.bishes_continer_content2_2 {
    grid-area: bishes_continer_content2_2;

    display: grid;
    grid-template-columns: 160px 444px;
    grid-template-rows: 140px 140px 140px;
    row-gap: 27px;
    column-gap: 30px;
    grid-template-areas:
        "bishes_continer_content2_bloc2_1 bishes_continer_content2_bloc3_1"
        "bishes_continer_content2_bloc2_2 bishes_continer_content2_bloc3_2"
        "bishes_continer_content2_bloc2_3 bishes_continer_content2_bloc3_3";

}

.bishes_continer_content2_bloc2_1 {
    grid-area: bishes_continer_content2_bloc2_1;
}

.bishes_continer_content2_bloc2_2 {
    grid-area: bishes_continer_content2_bloc2_2;
}

.bishes_continer_content2_bloc2_3 {
    grid-area: bishes_continer_content2_bloc2_3;
}

.bishes_continer_content2_bloc3_1 {
    grid-area: bishes_continer_content2_bloc3_1;
}

.bishes_continer_content2_bloc3_2 {
    grid-area: bishes_continer_content2_bloc3_2;
}

.bishes_continer_content2_bloc3_3 {
    grid-area: bishes_continer_content2_bloc3_3;
}


.bishes_continer_content2_bloc1 {
    margin: -4px 0px 0px 0px;
    grid-area: bishes_continer_content2_bloc1;
}

.dotted {
    border-bottom: 1px dashed rgba(0, 0, 0, 1);
    width: 180px;
    margin: 0px 10px;
}

.bishes_continer_content2_bloc3 {
    display: flex;
    align-items: center;
    font-family: 'Tinos', serif;
    font-size: 26px;
}

/*-------*/
/*---Menu---------------------------------------------------------------------------------------------------------------*/
._ibg3 {
    position: relative;
}

._ibg3>img {

    z-index: -2;
    position: absolute;
    width: 100%;
    height: 1034px;
    top: 3032px;
    left: 0;
    object-fit: cover;
}

.page_menu_image1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}



.menu_continer {
    margin-top: 150px;
    padding-top: 113px;
    padding-bottom: 113px;
    /*???????????*/

    height: 810px;

    display: grid;
    grid-template-columns: 1109px;
    grid-template-rows: 37px 510px;
    row-gap: 150px;
    grid-template-areas:
        "menu_continer_content1"
        "menu_continer_content2";

    width: 1109px;

}

.menu_continer_content1 {
    grid-area: menu_continer_content1;
}

.menu_continer_content2 {
   position: absolute;

    display: grid;
    grid-template-columns: 349px 349px 349px 349px 349px 349px;
    grid-template-rows: 510px;
    column-gap: 30px;
    grid-template-areas:
        "menu_continer_content2_cart1 menu_continer_content2_cart2 menu_continer_content2_cart3 menu_continer_content2_cart4 menu_continer_content2_cart5 menu_continer_content2_cart6";
}

.menu_continer_content2_vidim{
    grid-area: menu_continer_content2;
    position: relative;
       overflow: hidden;
   

/* Чтобы во время перетаскивания слайда ничего не выделить внутри него */
    user-select: none;
    /* Чтобы запретить скролл страницы, если мы начали двигать слайдер по оси X */
    touch-action: pan-y;

}
/* Если где-то внутри слайдера будут изображения,
то нужно задать им pointer-events: none,
чтобы они не перетаскивались мышью */





body{/*////////////////////////////*/
    overflow-x:hidden;
}

.menu_continer_content2_cart1 {
    grid-area: menu_continer_content2_cart1;
    background-color: rgba(255, 255, 255, 1);
    display: grid;
    place-items: center;
}

.menu_continer_content2_cart2 {
    grid-area: menu_continer_content2_cart2;
    background-color:rgba(255, 255, 255, 1);
    display: grid;
    place-items: center;
    padding-top: 54.5px;

}

.menu_continer_content2_cart3 {
    grid-area: menu_continer_content2_cart3;
    background-color: rgba(255, 255, 255, 1);
    display: grid;
    place-items: center;
    padding-top: 54.5px;
}

.menu_continer_content2_cart4 {
    grid-area: menu_continer_content2_cart4;
    background-color:rgba(255, 255, 255, 1);
    display: grid;
    place-items: center;
    padding-top: 54.5px;
}

.menu_continer_content2_cart5 {
    grid-area: menu_continer_content2_cart5;
    background-color: rgba(255, 255, 255, 1);
    display: grid;
    place-items: center;
    padding-top: 54.5px;
}

.menu_continer_content2_cart6 {
    grid-area: menu_continer_content2_cart6;
    background-color:rgba(255, 255, 255, 1);
    display: grid;
    place-items: center;
    padding-top: 54.5px;
}

.menu_continer_content2_cart1_container {
    height: 401px;
    display: grid;
    width: 225px;
    margin-bottom: 10px;
}

.menu_cart1_img1 {
    border-radius: 50%;
    position: absolute;

}

.menu_cart1_img {
    border-radius: 50%;

}

.menu_cart1_img_circle {
    border-radius: 50%;
    background: rgba(214, 126, 52, 1);
    width: 100px;
    height: 100px;
    border: 7px solid rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    position: absolute;
    margin-top: 125px;
    margin-left: 130px;

    display: flex;
    align-items: center;
    justify-content: center;

}

.menu_text1 {
    font-family: 'Tinos', serif;
    font-size: 54px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
}

.cart1_txt1 {
    z-index: 1;
    font-family: 'Tinos', serif;
    font-size: 26px;
    text-align: center;
    margin-top: 250px;
    color: rgba(0, 0, 0, 1);
}

.cart1_txt2 {
    z-index: 1;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    /* Regular */
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    text-align: center;
    margin: 15px 12px 0px 12px;
    line-height: 24px;
}

.menu_cart1_circle_txt {
    font-family: 'Cookie', cursive;
    font-size: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

.cart_bt {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    background: rgba(214, 126, 52, 1);
    /* background: linear-gradient(to right,rgb(132, 61, 3), rgba(214, 126, 52, 1), rgb(132, 61, 3)); */
    /* background-color: rgba(214, 126, 52, 1); */
    width: 220px;
    height: 50px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    margin: 12px 0px 0px 2.4px;
}

.cart_bt:hover
{
    background: linear-gradient(to right, rgb(216, 216, 216), rgb(255, 255, 255), rgb(221, 221, 221));
}
.cart1_rec {
    margin: -21px 0px 0px -225px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    text-align: center;
    color: rgba(0, 0, 0, 1);
    background-color: rgba(214, 126, 52, 1);
    width: 124px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.slider_bt_circle {
    z-index: 0;
    position: absolute;
    width: 1290px;
    height: 40px;
    display: grid;
    grid-template-columns: 40px 40px;
    grid-template-rows: 40px;
    column-gap: 1210px;
    grid-template-areas:
        "bt_circle1 bt_circle2";
    margin: 420px 0px 0px -90px;
}

.bt_circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(214, 126, 52, 1);
}

.bt_circle1 {
    grid-area: bt_circle1;
}

.bt_circle2 {
    grid-area: bt_circle2;
}




/*/////////////////////////////////////////////////////////////////*/
.modal {

    display: none;
    /* Скрыто по умолчанию */
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
     
   margin-top: 15%;
    transform: scale(2)
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}


/*------------------------------------------------------*/
/*-----------------ПОСЕТИТЕЛЬ----------------------------------------------------------------------------------------------------*/

.no-select {
    user-select: none;
    /* Запретить выделение текста */
    -webkit-user-select: none;
    /* Для Safari */
    -moz-user-select: none;
    /* Для Firefox */
    -ms-user-select: none;
    /* Для Internet Explorer/Edge */
}

.page_posetitel {
    background-color: rgba(229, 229, 229, 1);

}

.posetitel_continer {
    background-color: rgba(229, 229, 229, 1);
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    text-align: center;
    color: rgba(0, 0, 0, 1);

}

.posetitel_continer_conent_all{
    height: 333px;
        width: 850px;
        display: grid;
        grid-template-columns: 850px;
        grid-template-rows: 297px 7px;
        row-gap: 22px;
        grid-template-areas:
        
            "posetitel_continer_conent_slider_one"
            "posetitel_circle";

        place-items: center; 

        /* transition: transform 0.5s ease; */
}
.posetitel_continer_conent {
    height: 297px;
    width: 850px;
    display: grid;
    grid-template-columns: 850px;
    grid-template-rows: 101px 100px 15px 14px;
    row-gap: 22px;
    place-items: center;


}

.posetitel_continer_conent_slider_one{
    height: 297px;
        width: 850px;
    grid-area: posetitel_continer_conent_slider_one;
    position: relative;
        overflow: hidden; 
}
.posetitel_continer_conent_slider{
    position: absolute;
    
        display: grid;
        grid-template-columns: 850px 850px 850px;
        grid-template-rows: 297px;
        column-gap: 0px;

        transition: transform 0.5s ease;
            /* Для плавного перехода */
            overflow: hidden;
            /* Скрыть лишние слайды */
}

.posetitel_conent_text {

    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    /* Italic */
    line-height: 26px;

}

.posetitel_conent_text1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    /* SemiBold */

}

.posetitel_conent_text2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    /* Regular */
}

.posetitel_circle {
    grid-area: posetitel_circle;
    width: 21px;
    height: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 9px;

}



.posetitel_conent_img1 {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(196, 196, 196, 1);
}

.dot1 {
    margin-left: 2px;
}

.dot.active {

    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 116, 0, 1);
    margin-left: 2px;
}

/*------------------------------------------------------*/
/*------ГАЛЕРЕЯ БЛЮД------------------------------------------------------------------------------------------*/

.galeree_continer {
    margin-top: 157px;
    height: 686px;
    width: 1109px;
    display: grid;
    gap: 63px;
    place-items: center;
}

.galeree_image {
    height: 578px;
    width: 1110px;
    display: grid;

    grid-template-columns: 255px 255px 255px 255px;
    grid-template-rows: 274px 274px;
    gap: 30px;
    grid-template-areas:
        "galeree_img1 galeree_img1 galeree_img2 galeree_img3"
        "galeree_img4 galeree_img5 galeree_img6 galeree_img6";


}

.galeree_img1 {
    grid-area: galeree_img1;
}

.galeree_img2 {
    grid-area: galeree_img2;
}

.galeree_img3 {
    grid-area: galeree_img3;
}

.galeree_img4 {
    grid-area: galeree_img4;
}

.galeree_img5 {
    grid-area: galeree_img5;
}

.galeree_img6 {
    grid-area: galeree_img6;
}

.para1 {
    width: 540px;
    height: 274px;
}

.para2 {
    width: 255px;
    height: 274px;
}

.para3 {
    width: 255px;
    height: 274px;
}

.galeree_continer>h2 {
    margin-top: -11px;
}

.bt_rot {
    width: 30px;
    height: 100px;
    background: rgba(255, 0, 0, 1);
}

.slider_bt_rot {
    z-index: -2;
    position: absolute;
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
    height: 686px;
    width: 100%;
    display: grid;
    grid-template-columns: 2.1% 2.1%;
    grid-template-rows: 100px;
    column-gap: 96%;
    place-items: center;
    padding-top: 108px;
}

.page_galeree {
    position: relative;
}



/*------------------------------------------------------*/
/*-----НАШИ ПОВОРА-------------------------------------------------------------------------------------------*/
.powara_continer {
    margin-top: 113px;
    height: 675px;
    width: 1110px;
    display: grid;

    grid-template-columns: 1110px;
    grid-template-rows: 47px 462px 7px;
    gap: 50px;
    grid-template-areas:
        "powara_continer_h2"
        "powara_image"
        "powara_circle";
    place-items: center;
}

.powara_continer>h2 {
    margin-top: -10px;
    grid-area: powara_continer_h2;
}


.powara_slider_one{

    margin-top: 114px;
    width: 1110px;
    height:462px ;
    grid-area: powara_image;
    position: relative;
     overflow: hidden; 
   
}

.powara_slider{/**/

    position: absolute;
    
        display: grid;
        grid-template-columns: 1010px 1010px;
        grid-template-rows: 462px;
        column-gap: 132px;
    
        transition: transform 0.5s ease;
        /* Для плавного перехода */
        /* overflow: hidden; */
        /* Скрыть лишние слайды */
}

.powara_image {
    display: grid;
    grid-template-columns: 350px 348px 348px;
    grid-template-rows: 462px;
    column-gap: 32px;
    grid-template-areas:
        "powara_img1 powara_img2 powara_img3";
}


.powara_circle {
    margin-top: 114px;
    grid-area: powara_circle;
    width: 16px;
    height: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.dot_ {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(196, 196, 196, 1);
}

.dot1_ {
    margin-left: 2px;
}

.dot_.active {
    width: 7px;
        height: 7px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0);
        border: 1px solid rgba(255, 212, 212, 1);
}

.powara_img1 {
    grid-area: powara_img1;
    width: 350px;
    height: 462px;
}

.powara_img2 {
    grid-area: powara_img2;
    width: 348px;
    height: 462px;
}

.powara_img3 {
    grid-area: powara_img3;
    width: 348px;
    height: 462px;
}
/*///////////////////////////////////////////////////*/
.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color:rgba(214, 126, 52, 1);
    padding: 5px;
    border-radius: 5px;
    display: none;
    /* Скрыто по умолчанию */
    z-index: 100;

    height: 80px;
    width: 190px;

}
/*--ПОДВАЛ----------------------------------------------------*/
.footer {
    margin-top: 43px;
    position: relative;
    height: 732px;

    text-align: center;
    color: white;
}


.copyright {
    text-align: center;
    position: absolute;
    font-size: 14px;
    bottom: 0;
    z-index: 10;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
        font-weight: 400;
}

.footer_image1 {
    height: 732px;
    width: 100%;
    bottom: 0;
    left: 0;
}

.footer_image1>img {
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 732px;
    bottom: 0;
    left: 0;
    object-fit: cover;
}



/*---------form------------------------------*/

.modal_fm {
    display: none;
    /* Скрыто по умолчанию */
    position: fixed;
    z-index: 101;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content_fm {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
}

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

.close-button_fm:hover,
.close-button_fm:focus {
    color: black;
   
  
    cursor: pointer;
}

form {
    display: flex;
    flex-direction: column;
   
}



.modal-content_fm>h2{
    font-family: 'Tinos', serif;
        color: rgba(214, 126, 53, 1);
        font-size: 30px;
        /*line-height: calc(92/80*100%);*/
    
       
}

label {
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        /* Regular */
       
}

input,
select {
    padding: 10px;
    margin-top: 5px;

    font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        /* Regular */
        border: 1px solid rgba(0, 0, 0, 1);
       
}


select:hover{
    border: 1px solid rgba(255, 116, 0, 1);
}
input:hover {
    border: 1px solid rgba(255, 116, 0, 1);
}

#confirm-button {
    margin-top: 20px;
    
    width: 157px;
        height: 47px;

    background-color: rgba(255, 116, 0, 1);
        /* Цвет фона кнопки */
        color: rgba(255, 255, 255, 1);
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        /* Bold */
    
        font-size: 14px;
}