@import url('https://fonts.googleapis.com/css2?family=Abel&family=Bitter&family=Ibarra+Real+Nova&family=Inter&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,700;1,100;1,200;1,300&family=Open+Sans:wght@400;700&family=Righteous&family=Roboto:wght@100;400;700&display=swap');
@font-face {
    font-family: 'Intro';
     src:url('../fonts/Intro/Intro.woff')format('woff');
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}
body {
    font-family: "Intro";
    background-color: #fff;
}
a {
    text-decoration: none;
}
/* header () { */
    header a {
        color: #000;
        font-weight: 400;
    }
    header {
        width: 100%;
        height: 121px;
        background-color: #fff;
        position: fixed;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: 0.8s;
        z-index: 10;
    }    
    /* Основной хедер */
    .header__wraper {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .header__link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 18px;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }
    .header__link:hover {
        color: #c99a5e;
    }
    .header__link:hover .about-company__icon {
        background-image: url('../img/header_icons/about_company_hover.png');
    }
    .header__link:hover .production__icon_top {
        background-image: url('../img/header_icons/production_top_hover.svg');
    }
    .header__link:hover .production__icon_bottom {
        background-image: url('../img/header_icons/production_bottom_hover.svg');
    }
    .header__link:hover .partnerstvo__icon {
        background-image: url('../img/header_icons/partnerstvo_hover.png');
    }
    .header__link:hover .contacts__icon {
        background-image: url('../img/header_icons/contacts_hover.png');
    }
    .hero__logo_link {
        cursor: default;
    }
    .header__icon {
        transition: 0.6s;
    }
    .header__text {
        padding-left: 15px;
        transition: 0.6s;
    }

    .about-company__icon {
        background-image: url('../img/header_icons/about_company.png');
        height: 64.5px;
        width: 64px;
    }   
    .production__icon {
        width: 60px;
        height: 50px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .production__icon_top {
        background-image: url('../img/header_icons/production_top.svg');
        width: 60px;
        height: 23.78px;
    }
    .production__icon_bottom {
        background-image: url('../img/header_icons/production_bottom.svg');
        width: 60px;
        height: 23.78px;
    }
    .partnerstvo__icon {
        background-image: url('../img/header_icons/partnerstvo.png');
        width: 72px;
        height: 53px;
    }
    .contacts__icon {
        background-image: url('../img/header_icons/contacts.png');
        width: 58px;
        height: 54px;
    }

    .logo__all {
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: 0.6s;
    }
    .logo__all:hover {
        transform: scale(0.97);
    }
    .logo__all:hover .logo__ok {
        background-image: url('../img/logos/only_ok_hover.svg');
    }
    .logo__all:hover .logo__text {
        background-image: url('../img/logos/only_text_hover.svg');
    }

    .logo__ok {
        background-image: url('../img/logos/only_ok.svg');
        width: 107.44px;
        height: 103px;
        transition: 0.6s;
    }
    .logo__text {
        background-image: url('../img/logos/only_text.svg');
        width: 135.69px;
        height: 41.78px;
        margin-left: 15px;
        transition: 0.6s;
    }
    /* top-menu в хедере */
    .top-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 100%;
        height: 420px;
        background: linear-gradient(90deg, rgba(68,68,68,1) 1%, rgba(240,239,239,1) 12%, rgba(255,250,242,1) 28%, rgba(223,223,223,1) 76%, rgba(144,144,144,1) 100%);
        position: absolute;
        top: -420px;
        padding: 60px 0 0 0;
        transition: 0.8s;
        border-bottom: 5px solid #919191;
    }
    .top-menu.active {
        top: 0;
    }
    .top-menu__item {
        width: 100%;
        text-align: center;
        height: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 24px;
        transition: 0.7s;
        font-size: 21px;
    }
    .top-menu__item:hover {
        background-color: rgb(0 0 0 / 50%);
        color: #f3f3f3;
    }
    .top-menu__item:active {
        background-color: rgb(0 0 0);
        color: #fff;
        transition: 0.18s;
    }
    .burger {
        display: none;
        width: 50px;
        height: 45px;
        flex-direction: column;
        justify-content: space-between;
        position: absolute;
        right: 20px;
        top: 20px;
        cursor: pointer;
        transition: 0.7s;
    }
    .burger__item {
        width: 100%;
        height: 10px;
        border-radius: 5px;
        transition: 0.5s;
        background-color: #000;
    }
    .burger.active .burger__item {
        position: absolute;
        top: 40%;
    }
    .burger.active .burger__item:nth-child(1) {
        transform: rotate(45deg);
    }
    .burger.active .burger__item:nth-child(2) {
        width: 0%;
    }
    .burger.active .burger__item:nth-child(3) {
        transform: rotate(-45deg);
    }
    .header__navigation {
        display: flex;
        align-items: center;
    }
    .header__wraper {
        flex: 1 0 94%;
    }
    .language {
        display: flex;
        gap: 5px;
        flex-direction: column;
        margin: 0 10px 0 0;
    }
    .language__link {
        transition: 0.4s;
    }
    .language__link:hover,
    .language__link.active {
        color: #c99a5e;
    }

    .language__link.ukr {
        position: relative;
    }
    .language__link.ukr::after {
        content: "";
        width: 100%;
        height: 1px;
        background: #c6a276;
        position: absolute;
        bottom: -3px;
        left: -1px;

    }
    /* Адаптация */
    @media(max-width: 1300px) {
        .header__icon {
            display: none;
        }
        .production__icon {
            display: none;
        }
        .header__wraper {
            flex: 1 1;
        }
    }
    @media(min-width: 970px) {
        header.scroll {
            height: 103px;
        }
    }
    @media(max-width: 970px) {
        .logo__text {
            display: none;
        }
        .header {
            height: 75px;
        }
        .logo__ok {
            background-image: url('../img/logos/970_ok_scroll_and_500_ok_start.svg');
            width: 76px; 
            height: 71px;
        }
        .logo__all:hover .logo__ok {
            background-image: url('../img/logos/970_ok_scroll_and_500_ok_start_hover.svg');
        }
        .burger {
            top: 15px;
        }
    }
    @media(max-width: 780px) {
        .header__text {
            display: none;
        }
        .burger {
            display: flex;
        }
        .logo__text {
            display: block;
        }
        .language {
            margin: 0;
            transform: translate(-100px, 0);
        }
    }
    @media(max-width: 500px) {
        .logo__ok {
            background-image: url('../img/logos/500_ok_scroll.svg');
            width: 66.91px;
            height: 60px;
        }
        .logo__all:hover .logo__ok {
            background-image: url('../img/logos/500_ok_scroll_hover.svg');
        }
        .logo__text {
            background-image: url('../img/logos/500_text.svg');
            width: 84.29px;
            height: 24.34px;
        }
        .logo__all:hover .logo__text {
            background-image: url('../img/logos/500_text_hover.svg');
        }
        .header {
            height: 65px;
        }
        .header__wraper {
            justify-content: start;
            padding-left: 20px;
        }
        .language {
            transform: translate(-90px, 0);
            font-size: 14px;
        }
        .burger {
            top: 10px;
        }
    }
/* } */
/* main  {*/
    main {
        margin-top: 121px;
        padding: 40px 0 0 0;
    }
    header {
        margin-top: -121px;
    }
    @media(max-width: 970px) { 
        header {
            margin-top: -75px;
        }
        main {
            margin-top: 75px;
        }
    }
    @media(max-width: 500px) { 
        header {
            margin-top: -65px;
        }
        main {
            margin-top: 65px;
        }
    }
    /* заголовок */
    .main_title {
        font-size: calc(33px + 7 *(100vw / 1400));
        letter-spacing: 0.02em;
        color: #C99A5E;
        margin: 50px 0 100px 0;
        text-align: center;
    }
    @media(max-width: 670px) { 
        .main_title {
            font-size: calc(33px + (7 + 7 * 0.7) *((100vw - 350px) / 1400));
        }
    }
    /* main page () { */
        .main-page__title {
            font-weight: 400;
            font-size: 36px;
            letter-spacing: 0.02em;
            color: #212121;
            text-align: center; 
            text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            line-height: 1.25em;
        }
        /* первая секция герой */
        .main-page {
            padding: 0 0 0 0;
        }
        .main-page__hero {
            background: url('../img/main_page/hero/hero-computer.jpg');
            background-repeat: no-repeat;
            background-size: 100% 100%;
            width: 100%;
            height: calc(100vh - 121px);
            /* height: calc(90vw - (100vw * 0.4)); */
            display: grid;
            padding: 25px 25px 50px 50px;
        }
        @media(max-width: 1550px) {
            .main-page__hero {
                background: url('../img/main_page/hero/hero-notebook.jpg');
                height: calc(100vh - 121px);
                background-repeat: no-repeat;
                background-size: 100% 100%;
            }
        }
        @media(max-width: 1300px) {
            .main-page__hero {
                height: calc(90vw - (100vw * 0.4));
            }
        }
		.main-page__heroen {
            background: url('../img/main_page/hero/hero-computer.jpg');
            background-repeat: no-repeat;
            background-size: 100% 100%;
            width: 100%;
            height: calc(100vh - 121px);
            /* height: calc(90vw - (100vw * 0.4)); */
            display: grid;
            padding: 25px 25px 50px 50px;
        }
        @media(max-width: 1550px) {
            .main-page__heroen {
                background: url('../img/main_page/hero/hero-notebook.jpg');
                height: calc(100vh - 121px);
                background-repeat: no-repeat;
                background-size: 100% 100%;
            }
        }
        @media(max-width: 1300px) {
            .main-page__heroen {
                height: calc(90vw - (100vw * 0.4));
            }
        }
        .hero__logo {
            background: url('../img/main_page/hero/hero_logo.svg') 0 0/100% 100% no-repeat;
            width: 1%;
            height: 70%;
            /* aspect-ratio: 164px / 214px; */
            transition: 0.7s;
            cursor: pointer;
            display: none;
        }
        .hero__logo:hover {
            background: url('../img/main_page/hero/hero_logo_hover.svg') 0 0/100% 100% no-repeat;
        }
        .hero__text {
            color: #fff;
            font-weight: 400;
            /* font-size: 34px; */
            font-size: calc(17px + 30 * (100vw / 1450));
            text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            align-self: end;
            justify-self: end;
            display: none;
        }
        /* адаптация */
        @media(min-width: 1750px) {
            .main-page__hero {
                padding: 50px;
            }
        }
        @media(max-width: 1000px) {
            .main-page__hero {
                padding: 25px;
            }
        }
        @media(max-width: 800px) {
            .main-page__hero {
                background: url('../img/main_page/hero/hero_image_500px.jpg') 0 0/cover no-repeat ;
                height: calc(100vh + 155px);
                padding: 15px;
            }
            .hero__logo {
                display: block;
                width: 120px;
                height: 120px;
            }
            .hero__text {
                display: block;
            }
        }
        @media(max-width: 500px) {
            .main-page__hero {
                height: calc(100vh - 65px);
                background-position: 0 50%;
            }
            .hero__logo {
                width: 80px;
                height: 80px;
            }
		}
		/* адаптация ЕН*/
        @media(min-width: 1750px) {
            .main-page__heroen {
                padding: 50px;
            }
        }
        @media(max-width: 1000px) {
            .main-page__heroen {
                padding: 25px;
            }
        }
        @media(max-width: 800px) {
            .main-page__heroen {
                background: url('../img/main_page/hero/hero_image_500px.jpg') 0 0/cover no-repeat ;
                height: calc(100vh + 155px);
                padding: 15px;
            }
        }
        @media(max-width: 500px) {
            .main-page__heroen {
                height: calc(100vh - 65px);
                background-position: 0 50%;
            }
		}
        /* вторая секция про компанию */
        .main-page_about_company__container {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            padding: 0 10px;
        }
        .about_company__bread_top {
            width: 250px;
            align-self: flex-end;
        }
        .about_company__bread_bottom {
            width: 250px;
            height: 200px;
        }
        .about_company__wraper {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 10px;
        }
        .about_company__title {
            width: 1200px;
            height: 700px;
            transition: 0.5s;
            background: #FFD198;
            box-shadow: 8px 9px 4px rgba(0, 0, 0, 0.25);
            padding: 30px 0 0 0;
            margin-left: -100px;
            transition: 0.35s;
        }
        .about_company__title:hover {
            transform: scale(1.04);
        }
        .about_company__text {
            width: 1250px;
            height: 708px;
            background: #FFFFFF;
            border: 1px solid #000000;
            color: #8A5E07;
            padding: 95px 40px 35px 110px;
            box-shadow: 8px 9px 4px rgba(0, 0, 0, 0.25);
            z-index: 2;
            margin-top: -600px;
            margin-right: -100px;
            transition: 0.35s;
        }
        .about_company__text:hover {
            transform: scale(1.04);
        }
        .about_company__text p:nth-child(1) {
            margin-bottom: 40px;
        }
        .about_company__text p {
            line-height: 1.75em;
            font-size: 20.7px;
            font-weight: 400;
            font-family: 'Inter';
            text-indent: 50px;
        }
        /* адаптация */ 
        @media(max-width: 1430px) {
            .about_company__text {
                margin-right: -50px;
            }
            .about_company__title {
                margin-left: -50px;
            }
        }
        @media(max-width: 1330px) {
            .about_company__text {
                margin-right: 0;
                width: 100vw;
                height: auto;
                padding: 56px 20px 45px 30px;
            }
            .about_company__title {
                margin-left: 0;
                width: 100vw;
                height: 600px;
            }
            .about_company__text {
                margin-top: -500px;
            }
            .en .about_company__text {
                margin-top: -465px;
            }
            .about_company__text:hover {
                transform: scale(1);
            }
            .about_company__title:hover {
                transform: scale(1);
            }
        }
        @media(max-width: 1000px) {
        .about_company__bread_top {
            display: none;
        }
        .about_company__bread_bottom {
            display: none;
        }
        .about_company__wraper {
            padding: 50px 0 0 0;
        }
        .main-page__about_company {
            margin-bottom: 80px;
        }
    }
    @media(max-width: 500px) {
        .about_company__text {
            padding: 50px 15px 35px 25px;
        }
        .about_company__text p {
            text-indent: 25px;
        }
    }
    /* продукция */
    .main-page_production__container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 15px;
    }
    .main-page_production__title {
        margin-bottom: 80px;
    }
    .main-page__catigories {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .catigories__item {
        width: 710px;
        height: 355px;
        background: rgba(242, 142, 0, 0.4);
        box-shadow: 8px 9px 4px rgba(0, 0, 0, 0.25);
        display: flex;
        align-items: center;
        justify-content: space-around;
        cursor: pointer;
        margin-bottom: 80px;
        transition: 0.4s;
    }
    .catigories__item:last-child {
        margin-bottom: 0;
    }
    .catigories__item:hover {
        transform: scale(1.05);
        background-color: rgb(255 171 52 / 40%);
    }
    .catigories__item:hover .more {
        color: #FFFFFF;
    }
    .catigories__image img {
        width: 245px;
    }
    .conditerski .catigories__image img {
        width: 225px;
    }
    .sviatkovi .catigories__image img {
        width: 215px;
    }
    .catigories__subtitle {
        font-weight: 400;
        font-size: 24px;
        line-height: 2.08em;
        margin-bottom: 40px;
    }
    .more {
        font-weight: 400;
        font-size: 15px;
        letter-spacing: 0.02em;
        color: #000000;
        line-height: 1.4em;
        transition: 0.3s;
    }
    /* адаптивность */
    @media (min-width: 1700px) {
        .main-page_production__container {
            max-width: 1600px;
        }
    }
    @media(max-width: 1480px) {
        .catigories__item {
            width: 565px;
        }
        .main-page__catigories {
            justify-content: space-around;
        }
        .catigories__image img {
            width: 220px;
        }
        .conditerski .catigories__image img {
            width: 200px;
        }
        .sviatkovi .catigories__image img {
            width: 195px;
        }
    }
    @media(max-width: 1220px) {
        .catigories__item {
            width: 700px;
        }
        .catigories__image img {
            width: 240px;
        }
        .conditerski .catigories__image img {
            width: 220px;
        }
        .sviatkovi .catigories__image img {
            width: 215px;
        }
        .main-page__production {
            margin-bottom: 100px;
        }
    }
    @media(max-width: 730px) {
        .catigories__item {
            flex-direction: column;
            width: 80%;
            height: 440px;
            padding: 20px;
        }
        .catigories__subtitle {
            text-align: center;
        }
    }
    @media(max-width: 550px) {
        .catigories__image img {
            width: 220px;
        }
        .conditerski .catigories__image img {
            width: 200px;
        }
        .sviatkovi .catigories__image img {
            width: 195px;
        }
        .catigories__item {
            width: 90%;
            height: 480px;
        }
        .lavashi .more {
            margin-bottom: 25px;
        }
    }
    /* парнёрствоо */
    .main-page_parnerstvo__container {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .bread_partnerstvo {
        align-self: flex-end;
        margin-right: 50px;
    }
    .main-page_parnerstvo__wraper {
        display: flex;
        justify-content: center;
    }
    .parnerstvo__main_image {
        width: 425px;
        height: 510px;
        filter: drop-shadow(8px 9px 4px rgba(0, 0, 0, 0.25));
        transition: 0.4s;
        z-index: 2;
    }
    .parnerstvo__main_image:hover {
        transform: scale(1.04);
    }
    .main-page_parnerstvo__text {
        width: 730px;
        height: 460px;
        background: rgba(242, 142, 0, 0.4);
        box-shadow: 8px 9px 4px rgba(0, 0, 0, 0.25);
        padding: 92px 41px 97px 227px;
        transition: 0.35s;
        margin-top: 110px;
        margin-left: -120px;

        font-weight: 400;
        font-size: 16px;
        line-height: 40px;
        letter-spacing: 0.02em;
        color: #212121;
    }
    .main-page_parnerstvo__text:hover {
        transform: scale(1.04);
    }
    .main-page_parnerstvo__text:hover .more {
        color: #FFFFFF;
    }
    .main-page_parnerstvo__text p {
        margin-bottom: 50px;
    }
    .basket_with_bread {
        width: 230px;
        position: absolute;
        top: 40%;
        left: 2%;
    }
    .flour {
        width: 270px;
        margin-left: 150px;
    }
    /* адаптация */
    @media(max-width: 1570px) {
        .basket_with_bread {
            display: none;
        }
        .flour {
            margin-left: 40px;
        }
    }
    @media(max-width: 1060px) {
        .flour {
            display: none;
        }
        .bread_partnerstvo {
            display: none;
        }
        .main-page__parnerstvo {
            margin-bottom: 200px;
        }
        .main-page_parnerstvo__wraper {
            flex-direction: column;
            align-items: center;
        }
        .main-page_parnerstvo__text {
            margin: -30px 0 0 0;
            padding: 92px 50px 50px 50px;
            text-align: center;
        }
        .parnerstvo__main_image {
            width: 520px;
            height: 515px;
        }
    }
    @media(max-width: 760px) {
        .main-page_parnerstvo__text {
            width: 90%;
            height: auto;
            margin: -50px 0 0 0;
            padding: 102px 50px 50px 50px;
        }
        .parnerstvo__main_image {
            width: 80%;
            height: auto ;
        }
    }
    /* } */
    /* production classes () { */    
        .production_container {
            max-width: 1400px;
            margin: 0 auto;
        }
        .production__title {
            font-weight: 400;
        }
        .catolog {
            display: flex; 
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 0 25px;
        }
        .catalog__item {
            display: flex;
            margin-bottom: 100px;
            transition: 0.3s;
        }
        .catalog__item:hover {
            transform: scale(1.06);
        }
        .catalog__item:nth-last-child(1) {
            margin-bottom: 200px;
        }
        .item__image {
            width: 470px;
            height: 360px;
            background-color: #fff;
            box-shadow: 3px 4px 5px 6px rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: start;
        }
        .catalog__item:hover .item__image {
            box-shadow: 3px 5px 4px 7px rgba(0, 0, 0, 0.25);
        }
        .item__text {
            display: flex;
            flex-direction: column;
            width: 295px;
            height: 360px;
            margin-left: -147px;
            margin-top: -20px;
            position: relative;
            z-index: 1;
            padding: 0 10px;
            box-shadow: 10px 8px 7px 0px rgba(0, 0, 0, 0.25);
        }
        .catalog__item:hover .item__text {
            box-shadow: 12px 8px 8px 0px rgba(0, 0, 0, 0.26);
        }
        .item__text::before {
            content: "";
            width: 253px;
            height: 0;
            border-bottom: 360px solid #F6D0A5;
            border-left: 161px solid transparent;
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: -1;
        }
        .item__subtitle {
            font-size: 17px;
            line-height: 1.75em;
            color: #000;
            margin: 32px 0 15px 23px;
            text-align: center;
        }
        .item__info {
            font-weight: 400;
            font-size: 12px;
            letter-spacing: 0.02em;
            color: rgba(0, 0, 0, 0.67);
            line-height: 1.83em;
            margin-bottom: 10px;
            text-align: center;
        }
        .item__description {
            font-weight: 400;
            font-size: 12px;
            line-height: 2em;
            letter-spacing: 0.02em;
            color: rgba(0, 0, 0, 0.79);
            font-family: 'Inter';
            text-align: right;
            margin-left: -50px;
            flex: 1 1 auto;
        }
        .expiration-date {
            display: flex;
            justify-content: end;
            align-items: center;
            gap: 15px;
            font-weight: 400;
            letter-spacing: 0.02em;
            color: #000000;
            margin-bottom: 10px;
        }
        .expiration-date__date {
            font-size: 16px;
        }
        .expiration_date_unit {
            font-size: 13px;
        }   
        .sviatkovi-virobi .expiration-date {
            margin-bottom: 0; 
            justify-content: unset;
        }
        .item__footer {
        margin-bottom: 10px;
        display: flex;
        flex-direction: row-reverse;
        gap: 90px;
        margin-left: -161px;
        }
        .periud {
            line-height: 1.6em;
        }
        .periud__top {
            font-family: 'Inter';
        }
        /* адаптивность */
        @media(min-width: 2300px) {
            .production_container {
                max-width: 1650px;
            }
        }
        @media(min-width: 1800px) {
            .production_container {
                max-width: 1520px;
            }
        }
        @media(max-width: 1400px) {
            .production_container {
                padding: 0 10px;
            }
            .catolog {
                padding: 0 10px;
            }
        }
        @media(max-width: 1328px) { 
            .catalog__item {
                flex: 1 1 100%;
                justify-content: center;
            }
            .item__text {
                width: 540px;
                margin-left: -155px;
            }
            .item__text::before {
                width: 541px;
            }
            .item__image {
                width: 572px;
                height: 370px;
            }    
            .item__footer  {
                gap: 380px;
            }
        }
        @media(max-width: 990px) {
            .item__text {
                width: 295px;
                margin-left: -147px;
            }
            .item__text::before {
                width: 253px;
                border-left: 161px solid transparent;
            }
            .item__image {
                width: 470px;
            }    
            .catalog__item:hover {
                transform: scale(1);
            }
            .item__footer  {
                gap: 110px;
            }
        }
        @media(max-width: 670px) { 
            .catolog {
                justify-content: center;
            }
            .item__text {
                width: 100%;
                height: 310px;
                border-radius: 0;
                background: none;
                box-shadow: none;
                margin-left: 0;
            }
            .catalog__item:hover .item__text {
                box-shadow: none;
            }
            .item__text::before {
                width: 0;
                height: 0;
                border: 0;
            }
            .item__image {
                background-color: none;
                box-shadow: none;
                width: 100%;
                height: 300px;
                align-items: center;
            }
            .catalog__item:hover .item__image {
                box-shadow: none;
            }
            .catalog__item {
                flex-direction: column;
                flex: none;
                justify-content: center;
                width: 470px;
                background: linear-gradient(0deg, rgba(224,179,119,1) 16%, rgba(226,183,128,1) 24%, rgba(255,255,255,1) 50%);
                border: 1px solid #C99A5E;
                box-shadow: 2px 5px 10px 6px rgb(0 0 0 / 25%);
                width: 92%;
                gap: 30px;
                margin-bottom: 50px;
            }
            .item__description {
                 margin-left: 10px;
                 text-align: center;
            }
            .item__subtitle {
                margin: 10px 0 15px 20px;
            }
        }
        @media(max-width: 450px) {
        .catalog__item {
            gap: 20px;
        }
        .item__image {
            height: 280px;
        }
        .item__text {
            height: 365px;
        }
    }
    /* } */
/* hlib ta batoni () { */
    /* фото */
    .obidianiy .item__image img {
        margin-left: 10px;
        width: 52%;
    }
    .odeskiy .item__image img {
        margin-left: 1px;
        width: 54%;
    }
    .obidniy_luks .item__image img {
        margin-left: 16px;
        width: 44%;
    }
    .pereiaslavskiy .item__image img {
        margin-left: 9px;
        width: 47%;
    }
    .simeyniy .item__image img {
        margin-left: 9px;
        width: 53%;
    }
    .borodino .item__image img {
        margin-left: 6px;
        width: 52%;
    }
    .tostoviy_klasichniy .item__image img {
        margin-left: 4px;
        width: 48%;
    }
    .tostoviy_cilnozernoviy .item__image img {
        margin-left: 2px;
        width: 49%;
    }
    .tostoviy_grechano-medoviy .item__image img {
        margin-left: 2px;
        width: 48%;
    }
    .varshavskiy .item__image img {
        margin-left: 3px;
        width: 51%;
    }
    .zernoviy .item__image img {
        margin-left: 12px;
        width: 54%;
    }
    .diukovskiy .item__image img {
        margin-left: 9px;
        width: 48%;
    }
    .pivdenniy .item__image img {
        margin-left: 4px;
        width: 50%;
    }
    .narizniy .item__image img {
        margin-left: 14px;
        width: 53%;
    }
    .baget_niva .item__image img {
        margin-left: 26px;
        width: 50%;
    }
    .bulka_gorodska .item__image img {
        margin-left: 50px;
        width: 28%;
    }
    .visivkovi .item__image img {
        margin-left: 17px;
        width: 50%;
    }
    .bilkovo_pshenichniy .item__image img {
        margin-left: 10px;
        width: 50%;
    }
    .osobliviy_z_rozdvinkami .item__image img {
        margin-left: 4px;
        width: 52%;
    }
    .zavarniy_prianiy .item__image img {
        margin-left: 2px;
        width: 55%;
    }
    .slavskiy .item__image img {
        margin-left: 6px;
        width: 52%;
    }
    .darnicia .item__image img {
        margin-left: 7px;
        width: 53%;
    }
    .pshenichniy_pershiy_sort .item__image img {
        margin-left: 18px;
        width: 51%;
    }
    /* описания */
    .baget_niva .item__description, .bulka_gorodska .item__description {
        margin-left: -20px;
    }
    .tostoviy_cilnozernoviy .item__description {
        margin-left: -40px;
    }
    .obidianiy .item__description {
        margin-left: -70px;
    }
    /* адаптивность */
    @media(max-width: 1328px) { 
        .obidianiy .item__image img {
            margin-left: 12px;
            width: 50%;
        }  
        .odeskiy .item__image img {
            margin-left: 4px;
            width: 51%;
        }
        .obidniy_luks .item__image img {
            margin-left: 16px;
            width: 42%;
        }
        .pereiaslavskiy .item__image img {
            margin-left: 9px;
            width: 45%;
        }
        .simeyniy .item__image img {
            margin-left: 9px;
            width: 52%;
        }
        .borodino .item__image img {
            margin-left: 7px;
            width: 50%;
        }
        .tostoviy_klasichniy .item__image img {
            margin-left: 7px;
            width: 45%;
        }
        .tostoviy_cilnozernoviy .item__image img {
            margin-left: 2px;
            width: 47%;
        }
        .tostoviy_grechano-medoviy .item__image img {
            margin-left: 2px;
            width: 46%;
        }
        .varshavskiy .item__image img {
            margin-left: 3px;
            width: 50%;
        }
        .zernoviy .item__image img {
            margin-left: 13px;
            width: 53%;
        }
        .diukovskiy .item__image img {
            margin-left: 21px;
            width: 45%;
        }
        .pivdenniy .item__image img {
            margin-left: 20px;
            width: 46%;
        }
        .narizniy .item__image img {
            margin-left: 17px;
            width: 51%;
        }
        .bulka_gorodska .item__image img {
            margin-left: 80px;
            width: 25%;
        }
        .baget_niva .item__image img {
            margin-left: 58px;
            width: 44%;
        }
        .visivkovi .item__image img {
            margin-left: 42px;
            width: 44%;
        }
        .bilkovo_pshenichniy .item__image img {
            margin-left: 16px;
            width: 47%;
        }
        .osobliviy_z_rozdvinkami .item__image img {
            margin-left: 5px;
            width: 50%;
        }
        .slavskiy .item__image img {
            margin-left: 7px;
            width: 50%;
        }
        .zavarniy_prianiy .item__image img {
            margin-left: 10px;
            width: 50%;
        }
        .darnicia .item__image img {
            margin-left: 12px;
            width: 51%;
        }
        .pshenichniy_pershiy_sort .item__image img {
            margin-left: 26px;
            width: 48%;
        }
    }
    @media(max-width: 990px) {

        .tostoviy_klasichniy .item__image img {
            margin-left: 2px;
            width: 48%;
        }
        .tostoviy_cilnozernoviy .item__image img {
            margin-left: 1px;
            width: 49%;
        }
        .tostoviy_grechano-medoviy .item__image img {
            margin-left: 1px;
            width: 48%;
        }
        .varshavskiy .item__image img {
            margin-left: 3px;
            width: 51%;
        }
        .diukovskiy .item__image img {
            margin-left: 9px;
            width: 48%;
        }
        .pivdenniy .item__image img {
            margin-left: 4px;
            width: 50%;
        }
        .narizniy .item__image img {
            margin-left: 11px;
            width: 52%;
        }
        .baget_niva .item__image img {
            margin-left: 26px;
            width: 50%;
        }
        .bulka_gorodska .item__image img {
            margin-left: 50px;
            width: 28%;
        }
        .visivkovi .item__image img {
            margin-left: 17px;
            width: 50%;
        }
        .bilkovo_pshenichniy .item__image img {
            margin-left: 10px;
            width: 50%;
        }
        .osobliviy_z_rozdvinkami .item__image img {
            margin-left: 4px;
            width: 52%;
        }
        .zavarniy_prianiy .item__image img {
            margin-left: 2px;
            width: 55%;
        }
        .slavskiy .item__image img {
            margin-left: 4px;
            width: 52%;
        }
        .darnicia .item__image img {
            margin-left: 4px;
            width: 53%;
        }
        .pshenichniy_pershiy_sort .item__image img {
            margin-left: 4px;
            width: 53%;
        }
        .pshenichniy_pershiy_sort .item__image img {
            margin-left: 16px;
            width: 50%;
        }
        .baget_niva .item__description, .bulka_gorodska .item__description {
            margin-left: -20px;
        }
        .obidianiy .item__description {
            margin-left: -70px;
        }
    }
    @media(max-width: 670px) {
       .hlib-ta-batoni .catalog__item .item__image img {
            margin-left: 0px;
            margin-top: 20px;
        }
        .hlib-ta-batoni .catalog__item {
            gap: 40px;
        }
        .obidianiy .item__image img {
            width: 56%;
        }
        .odeskiy .item__image img {
            width: 62%;
        }
        .obidniy_luks .item__image img {
            width: 36%;
        }
        .pereiaslavskiy .item__image img {
            width: 42%;
        }
        .borodino .item__image img {
            width: 53%;
        }
        .hlib-ta-batoni .tostoviy_klasichniy, .hlib-ta-batoni .tostoviy_cilnozernoviy, .hlib-ta-batoni .tostoviy_grechano-medoviy {
            gap: 50px;
        }
        .tostoviy_klasichniy .item__image img {
            width: 47%;
        }
        .tostoviy_cilnozernoviy .item__image img {
            width: 52%;
        }
        .tostoviy_grechano-medoviy .item__image img {
            width: 52%;
        }
        .varshavskiy .item__image img {
            width: 55%;
        }        
        .zernoviy .item__image img {
            width: 52%;
        }
        .diukovskiy .item__image img {
            width: 43%;
        }
        .pivdenniy .item__image img {
            width: 45%;
        }
        .baget_niva .item__image img {
            width: 43%;
        }
        .narizniy .item__image img {
            width: 54%;
        }
        .bulka_gorodska .item__image img {
            width: 24.5%;
        }
        .visivkovi .item__image img {
            width: 43%;
        }
        .osobliviy_z_rozdvinkami .item__image img {
            width: 64%;
        }
        .zavarniy_prianiy {
            gap: 50px;
        }
        .zavarniy_prianiy .item__image img {
            width: 60%;
        }
        .slavskiy .item__image img {
            width: 65%;
        }
        .darnicia .item__image img {
            width: 55%;
        }
        .pshenichniy_pershiy_sort .item__image img {
            width: 52%;
        }
        .hlib-ta-batoni .catalog__item .item__description {
            margin-left: 10px;
        }
        .obidianiy .item__subtitle {
            margin: 0px 0 15px 20px;
        }
    }
    @media(max-width: 450px) {
        .hlib-ta-batoni .catalog__item .item__image img {
            margin-left: 0px;
            margin-top: 0px;
        }
        .hlib-ta-batoni .catalog__item {
            gap: 30px;
        }
        .obidianiy .item__image img {
            width: 80%;
        }
        .odeskiy .item__image img {
            width: 85%;
        }
        .obidniy_luks .item__image img {
            width: 54%;
        }
        .pereiaslavskiy .item__image img {
            width: 60%;
        }
        .simeyniy .item__image img {
            width: 76%;
        }
        .borodino .item__image img {
            width: 77%;
        }
        .tostoviy_klasichniy .item__image img {
            width: 77%;
        }
        .tostoviy_klasichniy .item__image img {
            width: 64%;
        }
        .tostoviy_cilnozernoviy .item__image img {
            width: 70%;
        }
        .tostoviy_grechano-medoviy .item__image img {
            width: 70%;
        }
        .varshavskiy .item__image img {
            width: 73.6%;
        }
        .zernoviy .item__image img {
            width: 74%;
        }
        .diukovskiy .item__image img {
            width: 62%;
        }
        .pivdenniy .item__image img {
            width: 68%;
        }
        .narizniy .item__image img {
            width: 75%;
        }
        .baget_niva .item__image img {
            width: 62%;
        }
        .bulka_gorodska .item__image img {
            width: 33%;
        }
        .visivkovi .item__image img {
            width: 65%;
        }
        .bilkovo_pshenichniy .item__image img {
            width: 69%;
        }
        .osobliviy_z_rozdvinkami .item__image img {
            width: 85%;
        }
        .zavarniy_prianiy .item__image img {
            width: 78%;
        }
        .slavskiy .item__image img {
            width: 86%;
        }
        .darnicia .item__image img {
            width: 79%;
        }
        .pshenichniy_pershiy_sort .item__image img {
            width: 67%;
        }
        .obidianiy .item__subtitle {
            margin: 4px 0 15px 20px;
        }
    }
/* } */
/* prianiky ta pechivo () { */
.zavarni .item__image img {
    margin-left: 2px;
    width: 52%;
}
.pivnichni .item__image img {
    margin-left: 7px;
    width: 51%;
}
.medovi .item__image img {
    margin-left: 17px;
    width: 42%;
}
.shokoladni .item__image img {
    margin-left: 8px;
    width: 50%;
}
.vivsiane_dribne .item__image img {
    margin-left: 10px;
    width: 51%;
}
.vivsiane_nostalji .item__image img {
    margin-left: 8px;
    width: 52%;
}
.vivsiane_dribne_shokolad .item__image img {
    margin-left: 3px;
    width: 53%;
}
.zabava .item__image img {
    margin-left: 5px;
    width: 51%;
}
.ujanka .item__image img {
    margin-left: 5px;
    width: 55%;
}
    /* описания */
    .vivsiane_dribne .item__description, .ujanka .item__description {
        margin-left: -30px;
    }
    .pivnichni .item__description {
        margin-left: -70px;
    }
    /* адаптивность */
    @media(max-width: 1328px) { 
        .zavarni .item__image img {
            margin-left: 5px;
            width: 50%;
        }
        .pivnichni .item__image img {
            margin-left: 11px;
            width: 49%;
        }
        .medovi .item__image img {
            margin-left: 47px;
            width: 35%;
        }
        .shokoladni .item__image img {
            margin-left: 12px;
            width: 48%;
        }
        .vivsiane_dribne .item__image img {
            margin-left: 11px;
            width: 49%;
        }
        .vivsiane_nostalji .item__image img {
            margin-left: 9px;
            width: 50%;
        }
        .zabava .item__image img {
            margin-left: 9px;
            width: 49%;
        }
        .ujanka .item__image img {
            margin-left: 18px;
            width: 51%;
        }
    }
    @media(max-width: 990px) {
        .zavarni .item__image img {
            margin-left: 2px;
            width: 52%;
        }
        .pivnichni .item__image img {
            margin-left: 7px;
            width: 51%;
        }
        .medovi .item__image img {
            margin-left: 17px;
            width: 42%;
        }
        .shokoladni .item__image img {
            margin-left: 8px;
            width: 50%;
        }
        .vivsiane_dribne .item__image img {
            margin-left: 10px;
            width: 51%;
        }
        .vivsiane_nostalji .item__image img {
            margin-left: 8px;
            width: 52%;
        }
        .vivsiane_dribne_shokolad .item__image img {
            margin-left: 3px;
            width: 53%;
        }
        .zabava .item__image img {
            margin-left: 5px;
            width: 51%;
        }
        .ujanka .item__image img {
            margin-left: 5px;
            width: 55%;
        }
    }
    @media(max-width: 670px) {
        .prianiky-ta-pechivo .item__description {
            margin-left: 10px;
        }
        .prianiky-ta-pechivo .item__image img {
            margin-left: 0px;
        }
        .zavarni .item__image img {
            width: 55%;
        }
        .pivnichni .item__image img {
            width: 54%;
        }
        .medovi .item__image img {
            width: 35%;
        }
        .shokoladni .item__image img {
            width: 53%;
        }
        .vivsiane_dribne .item__image img {
            width: 56%;
        }
        .vivsiane_nostalji .item__image img {
            width: 57%;
        }
        .vivsiane_dribne_shokolad .item__image img {
            width: 58%;
        }
        .zabava .item__image img {
            width: 53%;
        }
    }
    @media(max-width: 450px) {
        .zavarni .item__image img {
            width: 73%;
        }
        .pivnichni .item__image img {
            width: 73%;
        }
        .medovi .item__image img {
            width: 53%;
        }
        .shokoladni .item__image img {
            width: 71%;
        }
        .vivsiane_dribne .item__image img {
            width: 72%;
        }
        .vivsiane_nostalji .item__image img {
            width: 74%;
        }
        .vivsiane_dribne_shokolad .item__image img {
            width: 75%;
        }
        .zabava .item__image img {
            width: 70%;
        }
        .ujanka .item__image img {
            width: 72%;
        }
    }   
/* } */
/* lavashi () { */
    .lavashi .item__image img {
        width: 41%;
        margin-left: 17px;
    }
    .cilno_zernoviy .item__info {
        margin-left: -10px;
    }
    .virmenskiy_300g .item__info, .virmenskiy_500g .item__info, .sirniy .item__info {
        margin-left: -22px;
    } 
    /* адаптация */
    @media(max-width: 1328px) { 
        .lavashi .item__image img {
            width: 35%;
            margin-left: 35px;
        }
        .virmenskiy_300g .item__info, .virmenskiy_500g .item__info, .sirniy .item__info {
            margin-left: 0;
        } 
    }
    @media(max-width: 990px) {
        .lavashi .item__image img {
            width: 41%;
            margin-left: 17px;
        }
        .cilno_zernoviy .item__info {
            margin-left: -10px;
        }
        .virmenskiy_300g .item__info, .virmenskiy_500g .item__info, .sirniy .item__info {
            margin-left: -22px;
        } 
    }
    @media(max-width: 670px) {
        .lavashi .item__image img {
            width: 39%;
            margin-left: 0;
            margin-top: 70px;
        } 
        .lavashi .item__info {
            margin-left: 0;
        }
        .lavashi .item__description {
            margin-left: 10px;
        }  
        .lavashi .catalog__item {
            gap: 100px;
        }
    }
    @media(max-width: 450px) {
        .lavashi .item__image img {
            width: 56%;
            margin-left: 0;
            margin-top: 70px;
        } 
        .lavashi .item__description {
            margin-left: 10px;
        }  
        .lavashi .catalog__item {
            gap: 100px;
        }
        .lavashi .tortilia {
            gap: 80px;
        }
    }
/* } */
/* listkovi virobi () { */
    .krousan_sendvich .item__image img {
        width: 47%;
        margin-left: 3px;
    }
    .krousan_kruzia_mini .item__image img {
        width: 49%;
        margin-left: 9px;
    }
    .krousan_odeskiy .item__image img {
        width: 54%;
        margin-left: 2px;
    }
    .sloyka_sir .item__image img {
        width: 41%;
        margin-left: 21px;
    }
    .sloyka_odeska .item__image img {
        width: 45%;
        margin-left: 12px;
    }
    .krousan_kruzia .item__image img {
        width: 51%;
        margin-left: 5px;
    }
    .krousan_odeskiy .item__description {
        margin-left: -58px;
    }
    .sloyka_odeska .item__description, .sloyka_sir .item__description, .krousan_sendvich .item__description {
        margin-left: -20px;
    }
    /* адаптация */
    @media(max-width: 1328px) { 
        .krousan_sendvich .item__image img {
            width: 44%;
            margin-left: 13px;
        }
        .krousan_kruzia_mini .item__image img {
            width: 47%;
            margin-left: 17px;
        }
        .krousan_odeskiy .item__image img {
            width: 52%;
            margin-left: 3px;
        }
        .sloyka_sir .item__image img {
            width: 36%;
            margin-left: 35px;
        }
        .sloyka_odeska .item__image img {
            width: 38%;
            margin-left: 35px;
        }
        .krousan_kruzia .item__image img {
            width: 49%;
            margin-left: 7px;
        }
    }
    @media(max-width: 990px) {
        .krousan_sendvich .item__image img {
            width: 47%;
            margin-left: 3px;
        }
        .krousan_kruzia_mini .item__image img {
            width: 49%;
            margin-left: 9px;
        }
        .krousan_odeskiy .item__image img {
            width: 54%;
            margin-left: 2px;
        }
        .sloyka_sir .item__image img {
            width: 41%;
            margin-left: 21px;
        }
        .sloyka_odeska .item__image img {
            width: 45%;
            margin-left: 12px;
        }
        .krousan_kruzia .item__image img {
            width: 51%;
            margin-left: 5px;
        }
    }
    @media(max-width: 670px) {
        .listkovi-virobi .item__image img {
            margin-left: 0;
            margin-top: 20px;
        } 
        .listkovi-virobi .item__description {
            margin-left: 10px;
        }  
        .listkovi-virobi .catalog__item {
            gap: 50px;
        }
        .listkovi-virobi .krousan_sendvich {
            gap: 70px;
        }
        .krousan_sendvich .item__image img {
            width: 45%;
            margin-top: 50px;
        }
        .krousan_kruzia_mini .item__image img {
            width: 49%;
        }
        .krousan_odeskiy .item__image img {
            width: 65%;
            margin-left: 1px;
        }
        .sloyka_sir .item__image img {
            width: 34%;
        }
        .sloyka_odeska .item__image img {
            width: 41%;
        }
        .krousan_kruzia .item__image img {
            width: 63%;
        }
    }
    @media(max-width: 450px) {
        .listkovi-virobi .catalog__item {
            gap: 40px;
        }
        .listkovi-virobi .krousan_sendvich {
            gap: 60px;
        }
        .krousan_sendvich .item__image img {
            width: 62%;
            margin-top: 40px;
        }
        .krousan_kruzia_mini .item__image img {
            width: 59%;
        }
        .krousan_odeskiy .item__image img {
            width: 82%;
            margin-left: 1px;
        }
        .sloyka_sir .item__image img {
            width: 46%;
        }
        .sloyka_odeska .item__image img {
            width: 53%;
        }
        .krousan_kruzia .item__image img {
            width: 80%;
        }
    }
/* } */
/* zdobni ta bulochni () { */
    .pletinka_sir .item__image img {
        width: 55%;
        margin-left: 8px;
    }
    .pletinka_mak .item__image img {
        width: 52%;
        margin-left: 20px;
    }
    .pletinka_iabliki .item__image img {
        width: 55%;
        margin-left: 18px;
    }
    .pletinka_oreh .item__image img {
        width: 55%;
        margin-left: 12px;
    }
    .bulka_zdobushka .item__image img {
        width: 54%;
        margin-left: 2px;
    }
    .bublik_ukrainskiy .item__image img {
        width: 55%;
        margin-left: 15px;
    }
    .rogalik_odeskiy .item__image img {
        width: 50%;
        margin-left: 11px;
    }
    .rogalik_dnistrovskiy .item__image img {
        width: 54%;
        margin-left: 4px;
    }
    .bulka_gamburger .item__image img {
        width: 37%;
        margin-left: 22px;
    }
    .bulka_pominalna .item__image img {
        width: 54%;
        margin-left: 6px;
    }
    .vitushka_z_rozdvinkami .item__image img {
        width: 48%;
        margin-left: 0;
    }
    .bulka_dnipropetrovska .item__image img {
        width: 56%;
        margin-left: 2px;
    }
    .plushka_odeska .item__image img {
        width: 40%;
        margin-left: 23px;
    }
    .rulet_nachinka .item__image img {
        width: 50%;
        margin-left: 16px;
    }
    .bulka_shkilna .item__image img {
        width: 40%;
        margin-left: 18px;
    }
    .pampushki_chasnik .item__image img {
        width: 56%;
        margin-left: 4px;
    }
    .bulka_ditiacha .item__image img {
        width: 39%;
        margin-left: 22px;
    }
    .bulki_obidni .item__image img {
        width: 54%;
        margin-left: 9px;
    }
    /* описания */
    .pletinka_mak .item__description, .bublik_ukrainskiy .item__description, .bulka_zdobushka .item__description, .bulka_dnipropetrovska .item__description, .plushka_odeska .item__description, .rulet_nachinka .item__description {
        margin-left: -20px;
    }
    /* адаптация */
    @media(max-width: 1328px) { 
        .pletinka_sir .item__image img {
            width: 52%;
            margin-left: 15px;
        }
        .pletinka_mak .item__image img {
            width: 48%;
            margin-left: 32px;
        }
        .pletinka_iabliki .item__image img {
            width: 52%;
            margin-left: 20px;
        }
        .pletinka_oreh .item__image img {
            width: 52%;
            margin-left: 16px;
        }
        .bulka_zdobushka .item__image img {
            width: 50%;
            margin-left: 8px;
        }
        .bublik_ukrainskiy .item__image img {
            width: 50%;
            margin-left: 23px;
        }
        .rogalik_odeskiy .item__image img {
            width: 47%;
            margin-left: 18px;
        }
        .rogalik_dnistrovskiy .item__image img {
            width: 51%;
            margin-left: 12px;
        }
        .bulka_gamburger .item__image img {
            width: 33%;
            margin-left: 40px;
        }
        .bulka_pominalna .item__image img {
            width: 51%;
            margin-left: 14px;
        }
        .vitushka_z_rozdvinkami .item__image img {
            width: 44%;
            margin-left: 6px;
        }
        .bulka_dnipropetrovska .item__image img {
            width: 52%;
            margin-left: 10px;
        }
        .plushka_odeska .item__image img {
            width: 34%;
            margin-left: 43px;
        }
        .rulet_nachinka .item__image img {
            width: 47%;
            margin-left: 26px;
        }
        .bulka_shkilna .item__image img {
            width: 37%;
            margin-left: 29px;
        }
        .pampushki_chasnik .item__image img {
            width: 53%;
            margin-left: 9px;
        }
        .bulka_ditiacha .item__image img {
            width: 35%;
            margin-left: 34px;
        }
        .bulki_obidni .item__image img {
            width: 50%;
            margin-left: 16px;
        }
    }
    @media(max-width: 990px) {
        .pletinka_sir .item__image img {
            width: 55%;
            margin-left: 8px;
        }
        .pletinka_mak .item__image img {
            width: 52%;
            margin-left: 20px;
        }
        .pletinka_iabliki .item__image img {
            width: 55%;
            margin-left: 18px;
        }
        .pletinka_oreh .item__image img {
            width: 55%;
            margin-left: 12px;
        }
        .bulka_zdobushka .item__image img {
            width: 54%;
            margin-left: 2px;
        }
        .bublik_ukrainskiy .item__image img {
            width: 55%;
            margin-left: 15px;
        }
        .rogalik_odeskiy .item__image img {
            width: 50%;
            margin-left: 11px;
        }
        .rogalik_dnistrovskiy .item__image img {
            width: 54%;
            margin-left: 4px;
        }
        .bulka_gamburger .item__image img {
            width: 37%;
            margin-left: 22px;
        }
        .bulka_pominalna .item__image img {
            width: 54%;
            margin-left: 6px;
        }
        .vitushka_z_rozdvinkami .item__image img {
            width: 47%;
            margin-left: 2px;
        }
        .bulka_dnipropetrovska .item__image img {
            width: 56%;
            margin-left: 2px;
        }
        .plushka_odeska .item__image img {
            width: 40%;
            margin-left: 23px;
        }
        .rulet_nachinka .item__image img {
            width: 50%;
            margin-left: 16px;
        }
        .bulka_shkilna .item__image img {
            width: 40%;
            margin-left: 18px;
        }
        .pampushki_chasnik .item__image img {
            width: 56%;
            margin-left: 4px;
        }
        .bulka_ditiacha .item__image img {
            width: 39%;
            margin-left: 22px;
        }
        .bulki_obidni .item__image img {
            width: 54%;
            margin-left: 9px;
        }
    }
    @media(max-width: 670px) {
        .zdobni-ta-bulochni .item__image img {
            margin-left: 0;
            margin-top: 20px;
        } 
        .zdobni-ta-bulochni .item__description {
            margin-left: 10px;
        }
        .zdobni-ta-bulochni .catalog__item {
            gap: 50px;
        }
        .pletinka_sir .item__image img {
            width: 52%;
        }
        .pletinka_mak .item__image img {
            width: 48%;
        }
        .pletinka_iabliki .item__image img {
            width: 53%;
        }
        .pletinka_oreh .item__image img {
            width: 52%;
        }
        .bulka_zdobushka .item__image img {
            width: 53%;
        }
        .bublik_ukrainskiy .item__image img {
            width: 52%;
        }
        .rogalik_odeskiy .item__image img {
            width: 55%;
        }
        .rogalik_dnistrovskiy .item__image img {
            width: 55%;
        }
        .bulka_gamburger .item__image img {
            width: 30%;
        }
        .bulka_pominalna .item__image img {
            width: 54%;
        }
        .vitushka_z_rozdvinkami .item__image img {
            width: 46%;
        }
        .bulka_dnipropetrovska .item__image img {
            width: 56%;
        }
        .plushka_odeska .item__image img {
            width: 35%;
            margin-top: 50px;
        }
        .zdobni-ta-bulochni .plushka_odeska  {
           gap: 80px;
        }
        .rulet_nachinka .item__image img {
            width: 51%;
        }
        .bulka_shkilna .item__image img {
            width: 33%;
        }
        .pampushki_chasnik .item__image img {
            width: 63%;
        }
        .bulka_ditiacha .item__image img {
            width: 35%;
        }
        .bulki_obidni .item__image img {
            width: 61%;
        }
    }
    @media(max-width: 450px) {
        .pletinka_sir .item__image img {
            width: 69%;
        }
        .pletinka_mak .item__image img {
            width: 62%;
        }
        .pletinka_iabliki .item__image img {
            width: 69%;
        }
        .pletinka_oreh .item__image img {
            width: 68%;
        }
        .bulka_zdobushka .item__image img {
            width: 70%;
        }
        .bublik_ukrainskiy .item__image img {
            width: 71%;
        }
        .rogalik_odeskiy .item__image img {
            width: 75%;
        }
        .rogalik_dnistrovskiy .item__image img {
            width: 78%;
        }
        .bulka_gamburger .item__image img {
            width: 42%;
        }
        .bulka_pominalna .item__image img {
            width: 72%;
        }
        .vitushka_z_rozdvinkami .item__image img {
            width: 62%;
        }
        .bulka_dnipropetrovska .item__image img {
            width: 70%;
        }
        .plushka_odeska .item__image img {
            width: 50%;
            margin-top: 60px;
        }

        .zdobni-ta-bulochni .plushka_odeska {
            gap: 95px;
        }
        .rulet_nachinka .item__image img {
            width: 71%;
        }
        .bulka_shkilna .item__image img {
            width: 47%;
        }
        .pampushki_chasnik .item__image img {
            width: 80%;
        }
        .bulka_ditiacha .item__image img {
            width: 48%;
        }
        .bulki_obidni .item__image img {
            width: 75%;
        }
    }
/* } */
/* suhari sushki () { */
    .suhari_grenki .item__image img {
        width: 48%;
        margin-left: 3px;
    }
    .suhari_rodzinki .item__image img {
        width: 53%;
        margin-left: 6px;
    }
    .suhari_girchichni .item__image img, .suhari_vanilni .item__image img {
        width: 53%;
        margin-left: 7px;
    }
    .suhari_paniruvalni .item__image img {
        width: 42%;
        margin-left: 18px;
    }
    .sushki_vanilni .item__image img {
        width: 51%;
        margin-left: 9px;
    }
    /* описания */
    .suhari_paniruvalni .item__description{
        margin-left: -40px;
    }
    /* адаптивность */
    @media(max-width: 1328px) { 
        .suhari_grenki .item__image img {
            width: 46%;
            margin-left: 3px;
        }
        .suhari_rodzinki .item__image img {
            width: 51%;
            margin-left: 8px;
        }
        .suhari_girchichni .item__image img, .suhari_vanilni .item__image img {
            width: 50%;
            margin-left: 15px;
        }
        .suhari_paniruvalni .item__image img {
            width: 38%;
            margin-left: 27px;
        }
        .sushki_vanilni .item__image img {
            width: 49%;
            margin-left: 13px;
        }
    }
    @media(max-width: 990px) {
        .suhari_grenki .item__image img {
            width: 48%;
            margin-left: 3px;
        }
        .suhari_rodzinki .item__image img {
            width: 53%;
            margin-left: 6px;
        }
        .suhari_girchichni .item__image img, .suhari_vanilni .item__image img {
            width: 53%;
            margin-left: 7px;
        }
        .suhari_paniruvalni .item__image img {
            width: 42%;
            margin-left: 18px;
        }
        .sushki_vanilni .item__image img {
            width: 51%;
            margin-left: 9px;
        }
    }
    @media(max-width: 670px) {
        .suhari-sushki .catalog__item .item__description {
            margin-left: 10px;
        }
        .suhari-sushki .catalog__item .item__image img {
            margin-left: 0px;
            margin-top: 10px;
        }
        .suhari-sushki .catalog__item {
            gap: 40px;
        }
        .suhari_girchichni .item__image img, .suhari_vanilni .item__image img {
            width: 55%;
        }
        .suhari_paniruvalni .item__image img {
            width: 38%;
        }
        .sushki_vanilni .item__image img {
            width: 53%;
        }
    }
    @media(max-width: 450px) {
        .suhari_grenki .item__image img {
            width: 66%;
        }
        .suhari_rodzinki .item__image img {
            width: 73%;
        }
        .suhari_girchichni .item__image img, .suhari_vanilni .item__image img {
            width: 73%;
        }
        .suhari_paniruvalni .item__image img {
            width: 53%;
        }
        .sushki_vanilni .item__image img {
            width: 71%;
        }
    }   
/* } */
/* conditerskie virobi () { */
    .keks_nachinka .item__image img {
        margin-left: 5px;
        width: 50%;
    }
    .keks_stolichniy .item__image img {
        margin-left: 3px;
        width: 54%;
    }
    .keks_limanskiy .item__image img {
        margin-left: 6px;
        width: 50%;
    }
    .keks_shtolen .item__image img {
        width: 63%;
    }
    .pirog_tertiy_abricos .item__image img {
        margin-left: 3px;
        width: 56%;
    }
    .pirog_tertiy_smorodina .item__image img {
        margin-left: 5px;
        width: 55%;
    }
    .rogalik_cukroviy .item__image img {
        margin-left: 10px;
        width: 53%;
    }
    .korjik_molochniy .item__image img {
        margin-left: 8px;
        width: 52%;
    }
    .korji_medovi .item__image img {
        margin-left: 5px;
        width: 54%;
    }
    .korji_napoleon .item__image img {
        margin-left: 7px;
        width: 50%;
    }
    .medovik .item__image img {
        margin-left: 3px;
        width: 55%;
    }
    .napoleon .item__image img {
        margin-left: 2px;
        width: 54%;
    }
    .nacoloda .item__image img {
        margin-left: 3px;
        width: 55%;
    }
    .chorniy_princ .item__image img {
        margin-left: 7px;
        width: 54%;
    }
    .trubochki_bilkovi .item__image img {
        margin-left: 14px;
        width: 52%;
    }
    .ekler_crem .item__image img {
        margin-left: 14px;
        width: 50%;
    }
    .profitroli_crem .item__image img {
        margin-left: 13px;
        width: 49%;
    }
    .napoleon_elitniy .item__image img {
        margin-left: 6px;
        width: 53%;
    }
    .medovik_klasichniy .item__image img {
        margin-left: 5px;
        width: 52%;
    }
    .napoleon_domashniy .item__image img {
        margin-left: 5px;
        width: 51%;
    }
    .medovik_chernosliv .item__image img {
        margin-left: 4px;
        width: 52%;
    }
    .napoleon_shokolad .item__image img {
        margin-left: 11px;
        width: 52%;
    }
    /* описания */
    .keks_nachinka .item__description, .rogalik_cukroviy .item__description, .korjik_molochniy .item__description, .korji_medovi .item__description,.chorniy_princ .item__description, .nacoloda .item__description {
        margin-left: -20px;
    }
    .napoleon_elitniy .item__description, .medovik_klasichniy .item__description, .napoleon_domashniy .item__description, .medovik_chernosliv .item__description, .napoleon_shokolad .item__description {
        margin-left: -40px;
    }
    @media(max-width: 1328px) { 
        .keks_nachinka .item__image img {
            margin-left: 15px;
            width: 46%;
        }
        .keks_stolichniy .item__image img {
            margin-left: 13px;
            width: 51%;
        }
        .keks_limanskiy .item__image img {
            margin-left: 16px;
            width: 47%;
        }
        .keks_shtolen .item__image img {
            width: 60%;
        }
        .pirog_tertiy_abricos .item__image img {
            margin-left: 2px;
            width: 54%;
        }
        .pirog_tertiy_smorodina .item__image img {
            margin-left: 6px;
            width: 52%;
        }
        .rogalik_cukroviy .item__image img {
            margin-left: 17px;
            width: 50%;
        }
        .korjik_molochniy .item__image img {
            margin-left: 16px;
            width: 48%;
        }
        .korji_medovi .item__image img {
            margin-left: 19px;
            width: 45%;
        }
        .korji_napoleon .item__image img {
            margin-left: 19px;
            width: 41%;
        }
        .medovik .item__image img {
            margin-left: 9px;
            width: 51%;
        }
        .napoleon .item__image img {
            margin-left: 8px;
            width: 50%;
        }
        .nacoloda .item__image img {
            margin-left: 8px;
            width: 52%;
        }
        .chorniy_princ .item__image img {
            margin-left: 8px;
            width: 51%;
        }
        .trubochki_bilkovi .item__image img {
            margin-left: 19px;
            width: 47%;
        }
        .ekler_crem .item__image img {
            margin-left: 15px;
            width: 47%;
        }
        .profitroli_crem .item__image img {
            margin-left: 21px;
            width: 45%;
        }
        .napoleon_elitniy .item__image img {
            margin-left: 11px;
            width: 50%;
        }
        .medovik_klasichniy .item__image img {
            margin-left: 11px;
            width: 49%;
        }
        .napoleon_domashniy .item__image img {
            margin-left: 14px;
            width: 47%;
        }
        .medovik_chernosliv .item__image img {
            margin-left: 12px;
            width: 48%;
        }
        .napoleon_shokolad .item__image img {
            margin-left: 19px;
            width: 49%;
        }
    }
    @media(max-width: 990px) {
        .keks_nachinka .item__image img {
            margin-left: 5px;
            width: 50%;
        }
        .keks_stolichniy .item__image img {
            margin-left: 3px;
            width: 54%;
        }
        .keks_limanskiy .item__image img {
            margin-left: 6px;
            width: 50%;
        }
        .keks_shtolen .item__image img {
            width: 63%;
        }
        .pirog_tertiy_abricos .item__image img {
            margin-left: 1px;
            width: 56%;
        }
        .pirog_tertiy_smorodina .item__image img {
            margin-left: 3px;
            width: 55%;
        }
        .rogalik_cukroviy .item__image img {
            margin-left: 10px;
            width: 53%;
        }
        .korjik_molochniy .item__image img {
            margin-left: 8px;
            width: 52%;
        }
        .korji_medovi .item__image img {
            margin-left: 5px;
            width: 54%;
        }
        .korji_napoleon .item__image img {
            margin-left: 7px;
            width: 50%;
        }
        .medovik .item__image img {
            margin-left: 3px;
            width: 55%;
        }
        .napoleon .item__image img {
            margin-left: 2px;
            width: 54%;
        }
        .nacoloda .item__image img {
            margin-left: 3px;
            width: 55%;
        }
        .chorniy_princ .item__image img {
            margin-left: 7px;
            width: 54%;
        }
        .trubochki_bilkovi .item__image img {
            margin-left: 14px;
            width: 52%;
        }
        .ekler_crem .item__image img {
            margin-left: 14px;
            width: 50%;
        }
        .profitroli_crem .item__image img {
            margin-left: 13px;
            width: 49%;
        }
        .napoleon_elitniy .item__image img {
            margin-left: 6px;
            width: 53%;
        }
        .medovik_klasichniy .item__image img {
            margin-left: 5px;
            width: 52%;
        }
        .napoleon_domashniy .item__image img {
            margin-left: 5px;
            width: 51%;
        }
        .medovik_chernosliv .item__image img {
            margin-left: 4px;
            width: 52%;
        }
        .napoleon_shokolad .item__image img {
            margin-left: 11px;
            width: 52%;
        }
    }
    @media(max-width: 670px) {
        .conditerski-virobi .catalog__item .item__description {
            margin-left: 10px;
        }
        .conditerski-virobi .catalog__item .item__image img {
            margin-left: 0px;
            margin-top: 20px;
        }
        .conditerski-virobi .catalog__item {
            gap: 50px;
        }
        .keks_nachinka .item__image img {
            width: 59%;
        }
        .keks_stolichniy .item__image img {
            width: 60%;
        }
        .keks_limanskiy .item__image img {
            width: 64%;
        }
        .keks_shtolen .item__image img {
            width: 78%;
        }
        .pirog_tertiy_abricos .item__image img {
            width: 70%;
        }
        .pirog_tertiy_smorodina .item__image img {
            width: 65%;
        }
        .rogalik_cukroviy .item__image img {
            width: 55%;
        }
        .korjik_molochniy .item__image img {
            width: 53%;
        }
        .korji_medovi .item__image img {
            width: 53%;
        }
       .conditerski-virobi .korji_napoleon .item__image img {
            width: 46%;
            margin-top: 35px;
        }
        .conditerski-virobi .korji_napoleon {
            gap: 60px;
        }
        .medovik .item__image img {
            width: 60%;
        }
        .napoleon .item__image img {
            width: 62%;
        }
        .nacoloda .item__image img {
            width: 62%;
        }
        .chorniy_princ .item__image img {
            width: 65%;
        }
        .trubochki_bilkovi .item__image img {
            width: 61%;
        }
        .ekler_crem .item__image img {
            width: 60%;
        }
        .profitroli_crem .item__image img {
            width: 59%;
        }
        .napoleon_elitniy .item__image img {
            width: 64%;
        }
        .medovik_klasichniy .item__image img {
            width: 62%;
        }
        .napoleon_domashniy .item__image img {
            width: 62%;
        }
        .medovik_chernosliv .item__image img {
            width: 65%;
        }
        .napoleon_shokolad .item__image img {
            width: 66%;
        }
    }
    @media(max-width: 450px) {
        .conditerski-virobi .catalog__item {
            gap: 20px;
        }
        .keks_nachinka .item__image img {
            width: 78%;
        }
        .keks_stolichniy .item__image img {
            width: 79%;
        }
        .keks_limanskiy .item__image img {
            width: 81%;
        }
        .keks_shtolen .item__image img {
            width: 95%;
        }
        .pirog_tertiy_abricos .item__image img {
            width: 83%;
        }
        .pirog_tertiy_smorodina .item__image img {
            width: 79%;
        }
        .rogalik_cukroviy .item__image img {
            width: 77%;
        }
        .korjik_molochniy .item__image img {
            width: 70%;
        }
        .korji_medovi .item__image img {
            width: 71%;
        }
       .conditerski-virobi .korji_napoleon .item__image img {
            width: 62%;
            margin-top: 35px;
        }
        .conditerski-virobi .korji_napoleon {
            gap: 60px;
        }
        .medovik .item__image img {
            width: 83%;
        }
        .napoleon .item__image img {
            width: 84%;
        }
        .nacoloda .item__image img {
            width: 83%;
        }
        .chorniy_princ .item__image img {
            width: 85%;
        }
        .trubochki_bilkovi .item__image img {
            width: 79%;
        }
        .ekler_crem .item__image img {
            width: 79%;
        }
        .profitroli_crem .item__image img {
            width: 76%;
        }
        .napoleon_elitniy .item__image img {
            width: 87%;
        }
        .medovik_klasichniy .item__image img {
            width: 85%;
        }
        .napoleon_domashniy .item__image img {
            width: 82%;
        }
        .medovik_chernosliv .item__image img {
            width: 80%;
        }
        .napoleon_shokolad .item__image img {
            width: 81%;
        }
    }   
/* } */
/* sviatkovi virobi () { */
    .keks_krishtolen .item__image img {
        width: 56%;
        margin-left: 2px;
    }
    .keks_shtolen .item__image img {
        width: 56%;
        margin-left: 0;
    }
    .keks_shtolen .item__description {
        margin-left: -52px;
    }
    .kalach_elitniy .item__image img {
        width: 52%;
        margin-left: 0;
    }
    .kalach_elitniy .item__description, .kalach_rizdvo .item__description, .kalach_aromatniy .item__description {
        margin-left: -18px;
    }
    .kalach_rizdvo .item__image img {
        width: 53%;
        margin-left: 1px;
    }
    .kalach_aromatniy .item__image img, .kalach_rodzinki .item__image img {
        width: 52%;
        margin-left: 2px;
    }
    .pashalniy .item__image img {
        margin-left: 4px;
        width: 52%;
    }
    .pashalniy_shokoladniy .item__image img, .pashalniy_apelsinoviy .item__image img, .sviatkoviy .item__image img {
        margin-left: 4px;
        width: 50%;
    }
    .pashalniy_sirniy .item__image img {
        margin-left: 7px;
        width: 52%;
    }
    .pashalniy_kazkoviy .item__image img {
        width: 46%;
    }
    .pashalniy_elitniy .item__image img {
        margin-left: 6px;
        width: 53%;
    }
    .colomba .item__image img {
        margin-left: 5px;
        width: 54%;
    }
    .originalniy .item__image img {
        margin-left: 5px;
        width: 51%;
    }
    .pirig_sviatkoviy .item__image img {
        margin-left: 6px;
        width: 55%;
    }
    .tort_nathnenia .item__image img {
        margin-left: 6px;
        width: 52%;
    }
    .tort_zakohane_cerce .item__image img {
        margin-left: 7px;
        width: 54%;
    }
    .tort_serdechko .item__image img {
        margin-left: 10px;
        width: 53%;
    }
    /* описания */
    .pashalniy_shokoladniy .item__description, .sviatkoviy .item__description, .pashalniy_kazkoviy .item__description, .originalniy .item__description,.pirig_sviatkoviy .item__description, .tort_nathnenia .item__description, .tort_zakohane_cerce .item__description, .tort_serdechko .item__description {
        margin-left: -20px;
    }
    .pashalniy_sirniy .item__description {
        margin-left: -35px;
    }
    .colomba .item__description {
        margin-left: -40px;
    }
    /* адаптация */
    @media(max-width: 1328px) { 
        .keks_krishtolen .item__image img {
            width: 53%;
            margin-left: 4px;
        }
        .keks_shtolen .item__image img {
            width: 54%;
            margin-left: 0px;
        }
        .kalach_elitniy .item__image img {
            width: 49%;
            margin-left: 2px;
        }
        .kalach_rizdvo .item__image img {
            width: 50%;
            margin-left: 3px;
        }
        .kalach_aromatniy .item__image img, .kalach_rodzinki .item__image img {
            width: 50%;
            margin-left: 3px;
        }
        .pashalniy .item__image img {
            margin-left: 4px;
            width: 50%;
        }
        .pashalniy_shokoladniy .item__image img, .pashalniy_apelsinoviy .item__image img, .sviatkoviy .item__image img {
            margin-left: 4px;
            width: 48%;
        }
        .pashalniy_sirniy .item__image img {
            margin-left: 7px;
            width: 50%;
        }
        .pashalniy_kazkoviy .item__image img {
            width: 42%;
            margin-left: 7px;
        }
        .pashalniy_elitniy .item__image img {
            margin-left: 6px;
            width: 51%;
        }
        .colomba .item__image img {
            margin-left: 5px;
            width: 52%;
        }
        .originalniy .item__image img {
            margin-left: 10px;
            width: 46%;
        }
        .pirig_sviatkoviy .item__image img {
            margin-left: 6px;
            width: 53%;
        }
        .tort_nathnenia .item__image img {
            margin-left: 6px;
            width: 50%;
        }
        .tort_zakohane_cerce .item__image img {
            margin-left: 7px;
            width: 52%;
        }
        .tort_serdechko .item__image img {
            margin-left: 10px;
            width: 51%;
        }
    }
    @media(max-width: 990px) {
        .keks_krishtolen .item__image img {
            width: 55%;
            margin-left: 2px;
        }
        .keks_shtolen .item__image img {
            width: 55%;
            margin-left: 0;
        }
        .keks_shtolen .item__description {
            margin-left: -54px;
        }
        .kalach_elitniy .item__image img {
            width: 51%;
            margin-left: 0;
        }
        .kalach_elitniy .item__description, .kalach_rizdvo .item__description, .kalach_aromatniy .item__description {
            margin-left: -18px;
        }
        .kalach_rizdvo .item__image img {
            width: 52%;
            margin-left: 1px;
        }
        .kalach_aromatniy .item__image img, .kalach_rodzinki .item__image img {
            width: 51%;
            margin-left: 3px;
        }
        .pashalniy .item__image img {
            margin-left: 6px;
            width: 50%;
        }
        .pashalniy_shokoladniy .item__image img, .pashalniy_apelsinoviy .item__image img, .sviatkoviy .item__image img {
            margin-left: 4px;
            width: 49%;
        }
        .pashalniy_sirniy .item__image img {
            margin-left: 7px;
            width: 52%;
        }
        .pashalniy_kazkoviy .item__image img {
            width: 46%;
            margin-left: 0;
        }
        .pashalniy_elitniy .item__image img {
            margin-left: 6px;
            width: 53%;
        }
        .colomba .item__image img {
            margin-left: 5px;
            width: 54%;
        }
        .originalniy .item__image img {
            margin-left: 5px;
            width: 51%;
        }
        .pirig_sviatkoviy .item__image img {
            margin-left: 6px;
            width: 55%;
        }
        .tort_nathnenia .item__image img {
            margin-left: 6px;
            width: 52%;
        }
        .tort_zakohane_cerce .item__image img {
            margin-left: 7px;
            width: 54%;
        }
        .tort_serdechko .item__image img {
            margin-left: 10px;
            width: 53%;
        }
    }
    @media(max-width: 670px) {
        .sviatkovi-virobi .catalog__item .item__description {
            margin-left: 10px;
        }
        .sviatkovi-virobi .catalog__item .item__image img {
            margin-left: 0px;
            margin-top: 20px;
        }
        .sviatkovi-virobi .catalog__item {
            gap: 40px;
        }
        .item__footer {
            margin-bottom: 10px;
            display: flex;
            flex-direction: row-reverse;
            justify-content: space-between;
            gap: 0;
            margin-left: 0;
        }
        .periud {
            margin-left: 10px;
        }
        .keks_krishtolen .item__image img {
            width: 71%;
        }
        .keks_shtolen .item__image img {
            width: 73%;
        }
        .kalach_elitniy .item__image img {
            width: 67%;
        }
        .kalach_rizdvo .item__image img {
            width: 60%;
        }
        .kalach_aromatniy .item__image img, .kalach_rodzinki .item__image img {
            width: 56%;
        }
        .pashalniy .item__image img {
            margin-left: 6px;
            width: 50%;
        }
        .pashalniy_shokoladniy .item__image img, .pashalniy_apelsinoviy .item__image img, .sviatkoviy .item__image img {
            margin-left: 4px;
            width: 49%;
        }
        .pashalniy .item__image img {
            width: 63%;
        }
        .pashalniy_shokoladniy .item__image img, .pashalniy_apelsinoviy .item__image img {
            width: 55%;
        }
        .sviatkoviy .item__image img {
            width: 47%;
        }
        .pashalniy_sirniy .item__image img {
            width: 52%;
        }
        .pashalniy_kazkoviy .item__image img {
            width: 38%;
        }
        .pashalniy_elitniy .item__image img {
            width: 62%;
        }
        .colomba .item__image img {
            width: 66%;
        }
        .originalniy .item__image img {
            width: 51%;
        }
        .pirig_sviatkoviy .item__image img {
            width: 55%;
        }
        .tort_nathnenia .item__image img {
            width: 60%;
        }
        .tort_zakohane_cerce .item__image img {
            width: 60%;
        }
        .tort_serdechko .item__image img {
            width: 54%;
        }
    }
    @media(max-width: 450px) {
        .sviatkovi-virobi .catalog__item {
            gap: 45px;
        }
        .sviatkovi-virobi .kalach_elitniy {
            gap: 35px;
        }
        .sviatkovi-virobi .keks_krishtolen, .sviatkovi-virobi .keks_shtolen {
            gap: 25px;
        }
        .keks_krishtolen .item__image img {
            width: 90%;
        }
        .keks_shtolen .item__image img {
            width: 91%;
        }
        .kalach_elitniy .item__image img {
            width: 85%;
        }
        .kalach_rizdvo .item__image img {
            width: 84%;
        }
        .kalach_aromatniy .item__image img, .kalach_rodzinki .item__image img {
            width: 82%;
        }
        .pashalniy .item__image img {
            width: 84%;
        }
        .pashalniy_shokoladniy .item__image img, .pashalniy_apelsinoviy .item__image img {
            width: 75%;
        }
        .sviatkoviy .item__image img {
            width: 64%;
        }
        .pashalniy_sirniy .item__image img {
            width: 72%;
        }
        .pashalniy_kazkoviy .item__image img {
            width: 55%;
        }
        .pashalniy_elitniy .item__image img {
            width: 78%;
        }
        .colomba .item__image img {
            width: 85%;
        }
        .originalniy .item__image img {
            width: 69%;
        }
        .pirig_sviatkoviy .item__image img {
            width: 80%;
        }
        .tort_nathnenia .item__image img {
            width: 80%;
        }
        .tort_zakohane_cerce .item__image img {
            width: 81%;
        }
        .tort_serdechko .item__image img {
            width: 76%;
        }
        .colomba .item__subtitle {
                margin: -15px 0 15px 20px;
        }
    }   
/* } */
/* contacti () { */
    .contacti__container {
        max-width: 1400px;
        margin: 0 auto;
        margin-bottom: 220px;
        padding: 0 20px;
    }
    .contacti__wraper {
        display: flex;
        justify-content: space-between;
    }
    .contacti__map {
        width: 650px;
        height: 560px;
        box-shadow: 8px 6px 7px 0px rgba(0, 0, 0, 0.25);
    }
    .contacti__information {
        width: 650px;
        height: 560px;
        background-color: #C99A5E;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px ;
        box-shadow: 8px 6px 7px 1px rgba(0, 0, 0, 0.25);
        transition: 0.2s;
        z-index: 2;
    }
    .contacti__information:hover {
        transform: scale(1.03);
        background-color: #d7a25e;
        color: #f3f3f3;
    }
    .information__item {
        margin-bottom: 15px;
    }
    .information__not {
        font-size: 14px;
        font-family: 'Roboto', sans-serif;
    }
    .information__item, .information__item a {
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0.02em;
        line-height: 1.6em;
        text-align: center;
    }
    /* адаптация */
    @media(min-width: 1700px) {
        .contacti__container {
            max-width: 1700px;
        }
        .contacti__wraper {
            justify-content: center;
        }
        .contacti__map {
            width: 1000px;
            height: 800px;
        }
        .contacti__information {
            margin:  -70px 0 0 -90px;
        }
    }
    @media(max-width: 1380px) {
        .contacti__wraper {
            flex-direction: column-reverse;
            align-items: center;
            gap: 50px;
        }
        .contacti__map {
            width: 800px;
            height: 600px;
        }
    }
    @media(max-width: 850px) {
        .contacti__map {
            width: 650px;
            height: 560px;
        }
    }
    @media(max-width: 680px) {
        .contacti__information {
            width: 90%;
        }
        .contacti__map {
            width: 95%;
        }
    }
/* } */
/* partnerstvo () { */
    .partnerstvo__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 15px;
    }
    .partnerstvo__hero {
        margin-bottom: 60px;
    }
    .partnerstvo__title {
        margin-bottom: 70px;
    }
    .partnerstvo__text {
        font-weight: 400;
        font-size: 24px;
        letter-spacing: 0.02em;
        color: rgba(33, 33, 33, 0.65);
        font-family: 'Inter';
        line-height: 1.67em;
        text-align: center;
    }
    .partnerstvo__subtitle {
        letter-spacing: 0.02em;
        color: rgba(33, 33, 33, 0.65);
        font-weight: 400;
        font-size: 24px;
        margin-bottom: 75px;
        text-align: center;
    }
    .partnerstvo__images {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .partnerstvo__image {
        display: flex;
        justify-content: center;
        box-shadow: 15px 14px 10px 4px rgb(0 0 0 / 25%);
        margin-bottom: 60px;
        transition: 0.5s;
    }
    .partnerstvo__image:hover {
        transform: scale(1.05);
    }
    .partnerstvo__image.alone {
        margin-bottom: 200px;
    }
    .partnerstvo__image  img {
        width: 400px;
        height: 400px;
    }
    /* адаптация  */
    @media(min-width: 1700px) {
        .partnerstvo__container {
            max-width: 1500px;
        }
        .partnerstvo__images {
            justify-content: space-between;
        }   
        .partnerstvo__image:nth-child(2) {
            transform: translate(0px, 240px);
        }
        .partnerstvo__image img {
            width: 445px;
            height: 445px;
        }
        .partnerstvo__image:last-child,.partnerstvo__image:nth-last-child(2) {
            margin: 0 0 250px 0;
        }
    }
    @media(max-width: 1100px) {
        .partnerstvo__images {
            flex-direction: column;
        }
        .partnerstvo__image {
            margin: 0 auto 60px auto;
        }
        .partnerstvo__image img {
            width: 500px;
            height: 500px;
        }
    }
    @media(max-width: 650px) {
        .partnerstvo__image img {
            width: calc(100vw * 0.87);
            height: calc(100vw * 0.87);
        }
    }
/* } */
/* } */
/* footer () { */
    footer {
        width: 100%;
        background: linear-gradient(180deg, #F6AF61 0%, rgba(246, 175, 97, 0) 100%);
        position: relative;
    }
    .footer__wraper {
        display: flex;
        justify-content: space-between;
    }
    /* Навигация */
    .footer_navigation {
        display: flex;
        justify-content: space-between;
        font-family: 'Roboto', sans-serif;
        font-style: normal;
        width: 930px;
        margin: 75px 0 30px 50px;
    }
    .navigation__title {
        font-weight: 700;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 0.02em;
        color: #212121;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        margin-bottom: 20px;
        transition: 0.5s;
    }
    .navigation__title:hover {
        color: #2196F3;
    }
    .navigation__paragraph {
        font-size: 13px;
        margin: 0 0 8px 0;
    }
    .navigation__list {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .list__item {
        margin-bottom: 7px;
    }
    .list__link {
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 0.02em;
        color: #212121;
        transition: 0.5s;
    }
    .list__link:hover {
        color: #767878;
    }
    .social-media {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }
    .social-media__icon {
        transition: 0.5s;
    }
    .facebook {
        background-image: url('../img/footer_images/facebook.svg');
        width: 36px;
        height: 36px;
    }
    .facebook:hover {
        background-image: url('../img/footer_images/facebook_hover.svg');
    }
    .instagram {
        background-image: url('../img/footer_images/instagram.svg');
        width: 34px;
        height: 33px;
    }
    .instagram:hover {
        background-image: url('../img/footer_images/instagram_hover.svg');
    }
    .youtube {
        background-image: url('../img/footer_images/youtube.svg');
        width: 35px;
        height: 35px;
    }
    .youtube:hover {
        background-image: url('../img/footer_images/youtube_hover.svg');
    }
    /* Кошик */
    .basket {
        margin-top: -218px;
    }
    .basket__image {
        width: 525px;
    }
    .basket__text {
        text-align: center;
        font-weight: 400;
        font-size: 32px;
        letter-spacing: 0.01em;
        color: #8F734E;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        animation: 5s linear 0s infinite alternate basket__text;
        margin-top: 15px;
    }
    @keyframes basket__text {
        0%{
            opacity: 0.5;
        }
        25% {
            opacity:0.25;
        }
        50% {
            opacity: 0;
        }
        75% {
            opacity: 0.5 ;
        }
        100% {
        opacity: 1;
      }
    }
    /* другое */
    .creator {
        text-align: center;
        font-weight: 700;
        color: #916d3e;
        opacity: 0.7;
        margin-top: 20px;
        font-family: 'Roboto', sans-serif;
    }
    .creator__link {
        color: #916d3e;
        text-decoration: underline;
        transition: 0.4s;
    }
    .creator__link:hover {
        color: rgb(220, 133, 61);
    }
    .copyright {
        font-weight: 400;
        font-size: 14px;
        font-family: 'Roboto', sans-serif;
        margin: 30px 0 10px 15px;
    }
    /* адаптивность */
    @media(min-width: 1600px) {
        .footer__wraper {
            justify-content: space-around;
        }
    }
    @media(max-width: 1520px) {
        .basket__image {
            width: 400px;
        }
        .basket {
            margin-top: -166px;
        }
        .footer__aside {
            margin-right: 10px;
        }
    }
    @media(max-width: 1400px) {
        .basket {
            display: none;
        }
        .footer__aside {
            align-self: end;
            margin-right: 15px;
            position: absolute;
            right: 0;
        }
    }
    @media(max-width: 900px) {
        .footer_navigation {
            margin-left: 15px;
        }
    }
    @media(max-width: 825px) {
        .footer_navigation {
            flex-wrap: wrap;
            gap: 10px;
            width: 430px;
        }
        .navigation__item {
            flex: 0 1 48%;
        }
        .footer__wraper {
            justify-content: center;
        }
        .navigation__item {
            margin-bottom: 20px;
        }
    }
    @media(max-width: 500px) {
        .footer__aside {
            right: auto;
            margin-right: 0;
        }
        .copyright {
            text-align: center;
            margin-left: 0;
        }
    }
    @media(max-width: 450px) {
        .footer_navigation {
            width: 380px;
            margin-left: 5px;
            justify-content: center;
            gap: 30px;
        }
        .navigation__item:nth-child(1), 
        .navigation__item:nth-child(3) {
            flex: 0 1 30%;
        }
    }
    @media(max-width: 380px) {
        .footer_navigation {
            width: 350px;
        }
    }
    @media(max-width: 360px) {
        .footer_navigation  {
            margin-left: -10px;
        }
    }
/* } */