@font-face {
    font-family: "Tavolga";
    src: url("../fonts/Tavolga.otf") format("opentype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "Rubik";
    src: url("../fonts/Rubik-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Rubik";
    src: url("../fonts/Rubik-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Rubik";
    src: url("../fonts/Rubik-SemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "Rubik";
    src: url("../fonts/Rubik-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
}

:root {
    --red: rgba(226, 33, 28, 1);
    --brown: rgba(102, 27, 0, 1);
    --orange-1: rgba(255, 192, 121, 1);
    --orange-2: rgba(255, 223, 188, 1);
}

::selection {
    background-color: var(--orange-2);
    color: white;
}

::-moz-selection {
    background-color: var(--orange-2);
    color: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.d-flex {
    display: flex;
}

.content-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.items-baseline {
    align-items: baseline;
}

.basis-50 {
    flex-basis: 50%;
}

.relative {
    position: relative;
}

.h-full {
    height: 100%;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-200 {
    margin-bottom: 200px;
}

.h-500 {
    height: 500px;
}

.overflow-hidden {
    overflow: hidden;
}

.button-up {
    position: fixed;
    display: none;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.button-up.show {
    display: block;
    opacity: 1;
}

.header {
    padding: 0px 0 5px;
}

.header ul {
    display: flex;
    gap: 60px;
    list-style: none;
}

.header ul a {
    color: var(--brown);
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
}

.main-screen {
    padding-top: 148px;
}

.title-mobile {
    position: relative;
    display: none;
}

.main-screen-item .title {
    position: relative;
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 70px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 48px;
}

.main-screen-item .description {
    background: var(--orange-1);
    border-radius: 20px;
    transform: none;
    padding: 0 20px 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 140%;
    margin-bottom: 48px;
    margin-left: -20px;
    width: 679px;
    color: #661B00;
}

@media screen and (max-width: 768px) {
    .main-screen-item .title,
    .main-screen-item .description {
        margin-bottom: 24px;
    }
}

.main-screen-item .description p {
    transform: none;
}

.main-screen-item .big-text {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
}

.main-screen-item .text {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--brown);
    margin-bottom: 12px;
}

.main-screen-item .small-text {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-decoration-line: underline;
    color: var(--brown);
}

.main-screen-item img {
    position: absolute;
}

.main-screen-item .hearth {
    bottom: -30px;
    right: -110px;
    height: 640px;
    z-index: -1;
}

.main-screen-item .package {
    top: 265px;
    right: -184px;
    height: 281px;
}

.dynamic-item {
    position: absolute;
}

.dynamic-item.two-hearth {
    top: -25%;
    left: 47%;
    width: 115px;
    height: 100px;
}

.dynamic-item.big-hearth {
    bottom: -225px;
    left: -100px;
    width: 165px;
    height: 135px;
}

.dynamic-item.bagel {
    bottom: -285px;
    right: -287px;
    width: 272px;
    height: 250px;
}

.dynamic-item.flower {
    bottom: -44px;
    right: 525px;
    width: 78px;
    height: 77px;
}

.dynamic-item.flower-1 {
    bottom: -50px;
    right: 495px;
    width: 20px;
    height: 20px;
}

.dynamic-item.flower-2 {
    bottom: -60px;
    right: 540px;
    width: 10px;
    height: 10px;
}

.description-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-basis: 25%;
    max-width: 300px;

}

.description-card img {
    margin-bottom: 20px;
    border-radius: 20px;
    object-fit: cover;
    max-width: 300px;
    max-height: 300px;
    width: 100%;
    height: 100%;
	min-height: 280px;
	
	@media screen and (max-width:1076px) {
		min-height: 186px;
	}
	
	@media screen and (max-width:450px) {
		min-height: 120px;
	}
}

.description-card p {
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    color: var(--brown);
}

.button-red {
    max-width: 300px;
    width: 100%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 115%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #E2211C;
    border-radius: 12px;
    text-decoration: none;
    margin: 0 auto;
}

.button-red:hover {
    background: rgba(255, 76, 71, 1);
}

.button-red:active {
    background: rgba(210, 13, 8, 1);
}

.recipes {
    position: relative;
    color: var(--brown);
    padding: 230px 0 140px;
}

.recipes:before {
    position: absolute;
    content: "";
    top: 70px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../../assets/img/bg-recipes.svg") no-repeat center;
    background-size: cover;
    clip-path: inset(0 0 30px 0);
    z-index: -1;
}

.recipes:after {
    position: absolute;
    content: "";
    top: 6.5%;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 170px;
    background: url("../../assets/img/recipes.svg") no-repeat center;
    background-size: cover;
    z-index: -1;
}

.recipes h2 {
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 70px;
    line-height: 65px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}

.recipes .description {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--brown);
    max-width: 740px;
    margin-bottom: 84px;
}

.recipes-content {
    overflow: hidden;
    padding: 0 10px;
    margin: 0 auto;
    max-width: 1380px;
}

.recipes-content-active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipes-content-active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    max-width: 820px;
    border-radius: 12px;
    margin: 0 auto;
    margin-bottom: 75px;
}

.btn-active {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    width: 100%;
    height: 60px;
    border-radius: 12px;
    text-transform: uppercase;
    color: var(--brown);
    background: white;
    border: none;
    cursor: pointer;
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 115%;
    text-align: center;
}

.btn-active.active {
    background: #E2211C;
    color: white;
}

video {
    will-change: transform;
    backface-visibility: hidden;
}

.recipes-content-video {
    display: none;
    align-items: start;
    /*justify-content: space-between;*/
    margin-bottom: 40px;
    overflow-x: auto;
    gap: 56px;
}

.recipes-content-images {
    display: none !important;
	overflow: hidden;
}

.recipes-content-images.active,
.recipes-content-video.active {
    display: flex !important;
	overflow: visible;
}

.recipes-content-video p {
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    color: var(--brown);
}

.recipes-content-video-item {
    flex-basis: 25%;
    cursor: pointer;
}


.recipes-content-video-item .video video {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.recipes-content-video-item {
    max-width: 288px;
    width: 100%;
    text-decoration: none;
}

.recipes-content-video-item .video {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    margin-bottom: 12px;
}

.recipes-content-video-item .video:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 50px;
    height: 48px;
    background: url("../../assets/img/button-play.svg") no-repeat center;
    z-index: 1;
}

.recipes-content-video-item.play-disabled .video:before {
    background: none;
}

.croissant {
    position: absolute;
    top: 0;
    left: 0;
    width: 290px;
    height: 223px;
}

.bun {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: -50px;
    width: 237px;
    height: 215px;
}

.mitten {
    position: absolute;
    bottom: 0;
    left: 50px;
    width: 130px;
    height: 170px;
}

.board {
    position: absolute;
    top: 0;
    right: 50px;
    width: 270px;
    height: 278px;
}

.cube {
    position: absolute;
    top: 35%;
    right: 0;
}

.rolling-pin {
    position: absolute;
    bottom: 0;
    right: -90px;
}

.articles {
    position: relative;
    padding: 120px 0;
    background-color: var(--orange-1);

}

.articles-icon {
    position: absolute;
    top: -82px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 170px;
}

.articles .title {
    position: relative;
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 70px;
    line-height: 65px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 115px;
    z-index: 1;
}

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

.articles-content-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-basis: 33%;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 274px 28px 34px;
    height: 100%;
}

.article-title {
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 8px;
}

.article-description {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--brown);
    margin-bottom: 20px;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.articles-content-item .button-red {
    max-width: 100%;
    height: 52px;
    background: #E2211C;
    border-radius: 12px;
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
}

.article-img-3,
.article-img-2,
.article-img {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    border-radius: 20px;
    max-width: 330px;
    width: 100%;
    max-height: 240px;
}

.article-img-2 {
    transform: translateX(-50%) rotate(5deg);
}

.article-clip-3,
.article-clip-2,
.article-clip-1 {
    position: absolute;
    top: -122px;
    right: 175px;
    width: 160px;
    height: 190px;
    z-index: 1;
}

.article-clip-2 {
    top: -126px;
    right: 175px;
}

.article-clip-3 {
    top: -119px;
    right: 150px;
}

.article-cake {
    position: absolute;
    bottom: -105px;
    left: -185px;
}

.articles-big-hearth {
    position: absolute;
    top: -70px;
    right: -260px;
    transform: rotate(23deg);
}

.article-notepad {
    position: absolute;
    bottom: -80px;
    right: -240px;
}

.article-ring {
    position: absolute;
    top: 4px;
    left: -145px;
}

.article-fill-ring {
    position: absolute;
    top: 65px;
    left: -150px;
}

.to-buy {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    padding-top: 145px;
    padding-bottom: 85px;
}

.to-buy-icon {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.to-buy h2 {
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 32px;
}

.to-buy-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    white-space: nowrap;
    overflow: hidden;
    min-height: 250px;
}

.to-buy-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 80px;
}

.to-buy-item:nth-child(2) {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 80px;
}

.left-to-right {
    animation: moveLeftToRight 80s linear infinite;
}

.right-to-left {
    animation: moveRightToLeft 80s linear infinite;
}

@keyframes moveLeftToRight {
    0% {
        transform: translateX(-50%)
    }
    50% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes moveRightToLeft {
    0% {
        transform: translateX(0%);
    }
    50% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

.to-buy-item a {
    max-width: 260px;
    max-height: 100px;
}

.to-buy-item img {
    max-width: 175px;
    max-height: 100px;
    width: 135px;
    object-fit: contain;
}

.to-buy-item:last-child {
    justify-content: space-between;
    margin-bottom: 0;
}

.to-buy-item:first-child a {
    text-align: center;
    flex-basis: 25%;
    max-width: 260px;
}

.to-buy-item:last-child a {
    text-align: center;
    flex-basis: 33%;
}

.footer {
    position: relative;
    border-top: 1px var(--orange-1) solid;
    padding: 45px 0;
    background: white;
    z-index: 2;
}

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

@media screen and (max-width: 700px) {
    .footer {
        margin-top: 45px;
    }
}

.footer p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
}

.footer span {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: rgba(0, 0, 0, 0.8);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contacts p {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.8);
    max-width: 230px;
}

.footer-contacts a {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 10px;
    text-align: left;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}

.footer-contacts a svg {
    margin-bottom: 20px;
}

.footer-logo-block {
    margin-bottom: 20px;
    margin-top: -25px;
}

.footer-logo-block p {
    font-size: 15px;
    line-height: 10px;
    margin-bottom: 10px;
}

.footer-logo-block a {
    font-size: 15px;
    line-height: 10px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}

.description-card-splide {
    gap: 40px;
    overflow-x: auto;
    align-items: flex-start;
}

.splide__track {
    overflow: unset !important;
}

.splide__arrow {
    background: white !important;
    opacity: 1 !important;
    width: 52px !important;
    height: 52px !important;
    transition: all 0.3s;
}

.splide__arrow:hover {
    background: var(--red) !important;
}

.splide__arrow:hover svg {
    fill: white !important;
}

.splide__arrow svg {
    width: 24px !important;
    height: 24px !important;
    fill: var(--red) !important;
}

.splide__arrow--prev {
    left: -6em !important;
}

.splide__arrow--next {
    right: -6em !important;
}

.splide__pagination {
    display: none !important;
}

.splide__pagination__page {
    background: var(--orange-2) !important;
}

.splide__pagination__page.is-active {
    transform: scale(1) !important;
    background: var(--red) !important;
}

@media screen and (max-width: 1250px) {
    .splide__pagination {
        display: flex !important;
        bottom: -25px !important;
    }
}

.recipes-content-images {
    justify-content: space-between;
    align-items: stretch;
    gap: 100px;
    margin-bottom: 45px;
}

.recipes-content-images-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: white;
    padding: 20px;
    max-width: 360px;
    flex-basis: 33%;
    text-decoration: none;
    transition: transform 0.5s ease;
}

.recipes-content-images-item:nth-child(odd) {
    transform: rotate(-10deg);
}

.recipes-content-images-item:nth-child(even) {
    transform: rotate(10deg);
}

.recipes-content-images-item p {
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    color: var(--brown);
}

.recipes-content-images-item img {
    width: 320px;
    object-fit: cover;
    margin-bottom: 20px;
    height: 100%;
    max-height: 225px;
}

.slick-list {
    padding: 30px 0 !important;
}

.slick-track {
    display: flex !important;
    gap: 87px;
}

.burger-menu {
    position: relative;
    display: none;
    z-index: 3;
}

.burger-menu-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: transform .5s;
    transform: translateX(200%);
    background: white;
}

.burger-menu-content ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 100px 22px 0;
}

.burger-menu-content ul li {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    color: var(--brown);
}

.burger-menu-content .board {
    top: auto;
    bottom: 10px;
    right: 22px;
}

.burger {
    display: none;
}

.main-screen-description-mobile {
    display: none;
}

.recipes .flower {
    display: none;
}

.splide__track {
    width: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 75px;
}

@media screen and (max-width: 1200px) {
    .header .list-desktop {
        display: none;
    }

    .header .burger-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        cursor: pointer;
        transition: transform .3s;;
    }

    .header .burger-menu span {
        height: 7px;
        width: 52px;
        border-radius: 20px;
        background: var(--orange-1);
        transition: all .2s;
    }

    .header .burger {
        display: block;
    }

    .header .burger-menu[open] span:nth-child(2) {
        opacity: 0;
    }

    .header .burger-menu[open] span:first-child {
        transform: rotate(45deg) translateY(15px) translateX(3px);
    }

    .header .burger-menu[open] span:last-child {
        transform: rotate(-45deg) translateY(-12px);
    }

    .header .burger-menu[open] ~ .burger-menu-content {
        transform: translateX(0);
    }

    .dynamic-item.two-hearth {
        top: -45px;
        left: auto;
        right: -40px;
    }

    .main-screen-content {
        flex-direction: column;
    }

    .main-screen-content .main-screen-item {
        flex-basis: 100%;
        text-align: center;
    }

    .main-screen-item .description {
        width: 100%;
        text-align: left;
        margin-left: 0;
    }

    .main-screen-content .main-screen-item:first-child {
        margin-bottom: 780px;
    }

    .main-screen-content .main-screen-item:first-child .text,
    .main-screen-content .main-screen-item:first-child .small-text {
        display: none;
    }

    .main-screen {
        padding-top: 32px;
    }

    .main-screen-description-mobile {
        display: block;
        text-align: left;
    }

    .main-screen-description-mobile .main-screen-item:first-child {
        margin-bottom: 0;
    }

    .main-screen-description-mobile .main-screen-item .text,
    .main-screen-description-mobile .main-screen-item:first-child .small-text {
        display: block !important;
    }

    .main-screen .flower,
    .main-screen .flower-1,
    .main-screen .flower-2 {
        display: none;
    }

    .main-screen-item .hearth {
        bottom: 210px !important;
        display: flex;
        right: auto;
        left: 50% !important;
        transform: translateX(-50%);
        height: 640px !important;
        z-index: -1;
    }

    .main-screen-item .package {
        top: -324px !important;
        right: 0 !important;
        height: 281px !important;
    }

    .main-screen .container {
        margin-bottom: 50px;
    }

    .dynamic-item.big-hearth {
        bottom: 180px;
        left: -65px;
    }

    .dynamic-item.bagel {
        bottom: 269px;
        right: -120px;
        width: 272px;
        height: 250px;
        z-index: 1;
    }

    .croissant {
        top: 0;
        left: -51px;
        width: 150px;
        transform: rotate(-30deg);
    }

    .recipes .flower {
        display: block;
        position: absolute;
        top: -220px;
        right: -50px;
    }

    .recipes .board {
        top: 219px;
        right: 0;
        width: 140px;
        height: 140px;
        z-index: -1;
    }

    .recipes .rolling-pin {
        right: -20px;
        bottom: -50px;
        width: 250px;
    }

    .recipes .bun {
        top: auto;
        bottom: -47px;
        left: -30px;
        width: 140px;
    }

    .articles-big-hearth {
        position: absolute;
        top: -24px;
        right: -20px;
        transform: rotate(23deg);
    }

    .article-notepad {
        right: -350px;
    }

    .articles .article-cake {
        left: -11px;
        width: 130px;
        bottom: -170px;
    }

    .container {
        max-width: 1340px;
        padding: 0 20px;
    }

    .main-screen-item .title {
        padding: 0 60px;
    }
}

@media screen and (max-width: 1300px) and (max-height: 800px) {
    .main-screen {
        padding-top: 70px;
    }

    .main-screen-item .title {
        font-size: 50px;
        max-width: 500px;
        margin-bottom: 25px;
    }

    .main-screen-item .big-text {
        font-size: 28px;
    }

    .main-screen-item .description {
        font-size: 17px;
        max-width: 550px;
        margin-bottom: 25px;
    }

    .main-screen-item .text {
        font-size: 16px;
    }

    .main-screen-item .hearth {
        bottom: 60px;
        right: -20px;
        height: 475px;
        z-index: -1;
    }

    .main-screen-item .package {
        top: 255px;
        right: -49px;
        height: 191px;
    }

    .dynamic-item.two-hearth {
        top: -8%;
        left: 47%;
        width: 65px;
        height: 100px;
        z-index: -1;
    }
}

@media screen and (max-width: 1300px) and (max-height: 600px) {
    .main-screen-item .hearth {
        bottom: 38px;
        right: 20px !important;
        height: 458px !important;
    }

    .main-screen-item .package {
        top: 275px;
        right: -4px;
        height: 181px;
    }
}


@media screen and (max-width: 1300px) and (max-height: 700px) {
    .header a img {
        max-width: 172px !important;
        max-height: 94px !important;
    }

    .main-screen {
        padding-top: 0;
    }
}

@media screen and (max-width: 1200px) and (max-height: 700px) {
    .main-screen-item .description,
    .main-screen-item .title {
        max-width: 100%;
    }
}

.to-buy .title {
    display: block;
    margin: 0 auto 32px;
}

@media screen and (max-width: 768px) {
    .footer .footer-phone .email {
        text-align: left !important;
    }

    .footer .footer-phone .email:before {
        top: -4px;
        left: -16% !important;
    }

    .footer-logo-block {
        text-align: center;
    }

    .footer .footer-phone a {
        font-size: 14px !important;
        text-align: center !important;
    }

    .to-buy .title {
        display: none;
    }

    .to-buy .title-mobile {
        display: block;
        margin: 0 auto 20px;
    }

    .articles .title-mobile {
        margin-bottom: 115px;
        display: block;
    }

    .recipes .title-mobile {
        display: block;
        margin-bottom: 20px;
    }

    .main-screen-item .title-mobile {
        position: relative;
        display: block;
        margin: 0 auto 20px;
    }

    .recipes .title,
    .articles .title,
    .main-screen-item .title {
        font-size: 36px;
        line-height: 43px;
        padding: 0;
    }

    .main-screen-content .main-screen-item:first-child {
        margin-bottom: 600px;
    }

    .main-screen-item .description {
        padding-top: 10px;
    }

    .main-screen-item .big-text,
    .main-screen-item .description {
        font-size: 16px;
        line-height: 22px;
    }

    .main-screen-description-mobile .main-screen-item {
        margin-bottom: 0 !important;
    }

    .main-screen-item .hearth {
        bottom: 235px !important;
        width: 460px;
        height: 450px !important;
    }

    .main-screen-item .package {
        top: -253px !important;
        right: 66px !important;
        width: 280px;
        height: 185px !important;
    }

    .description-card img {
        width: 177px;
    }

    .dynamic-item.two-hearth {
        width: 73px;
        height: 64px;
    }

    .articles-icon {
        top: -40px;
        width: 80px;
        height: 80px;
    }

    .articles {
        padding-top: 60px;
    }

    .articles .button-red {
        position: relative;
        width: 188px;
        height: 52px;
        font-size: 16px;
        line-height: 16px;
        z-index: 1;
    }

    .articles .title {
        font-size: 32px;
        line-height: 32px;
    }

    .article-title {
        font-size: 18px;
        line-height: 22px;
    }

    .article-description {
        font-size: 16px;
        line-height: 22px;
    }

    .to-buy-icon {
        width: 80px;
        height: 80px;
        top: -40px;
    }
}

.description-card-splide::-webkit-scrollbar,
.recipes-content-images::-webkit-scrollbar,
.recipes-content-video::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 1450px) {
    .recipes-content-images {
        padding: 0 15px;
        overflow-x: auto;
        margin-bottom: 0;
    }
}

.to-buy-content-mobile {
    display: none;
}

@media screen and (max-width: 1076px) {

    .to-buy-content-mobile {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .to-buy-content-mobile a {
        width: 120px;
        height: 60px;
    }

    .to-buy-content-mobile img {
        width: 120px;
        height: 60px;
        object-fit: contain;
    }
}

@media screen and (max-width: 768px) {
    .to-buy-item img {
        max-height: 65px;
        width: 90px;
    }

    .to-buy-content {
        min-height: 155px;
    }

}

.footer-logo {
    width: 232px;
    height: 100px;
}

.vk-logo-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .recipes-content-images-item img {
        width: 170px;
        object-fit: cover;
        margin: 0 auto 20px !important;
    }

    .recipes-content-images-item p {
        font-size: 16px;
        line-height: 20px;
    }

    .footer-logo {
        margin-bottom: 35px;
        width: 186px;
        height: 80px;
    }

    .footer-content {
        flex-direction: column;
    }

    .vk-logo {
        display: none;
    }

    .vk-logo-mobile {
        display: block;
    }

    .footer-phone {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
    }

    .footer-contacts {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer p span,
    .footer p {
        font-size: 14px;
    }
}

@media screen and (max-width: 700px) {
    .main-screen-item .hearth {
        position: unset;
        width: 100%;
        height: 450px;
        max-width: 460px;
        margin-bottom: 90px;
        transform: translateX(0%);
        right: auto !important;
    }

    .main-screen-content .main-screen-item:first-child {
        margin-bottom: 50px;
    }

    .main-screen-item .package {
        top: 316px !important;
        right: 11px !important;
        width: 280px;
        height: 185px !important;
    }

    .main-screen-item .text {
        font-size: 16px;
    }

    .recipes:after {
        top: 145px;
        width: 80px;
        height: 80px;
    }

    .recipes h2 {
        font-size: 32px;
        line-height: 32px;
    }

    .recipes .description {
        font-size: 16px;
    }

    .recipes-content-active button {
        font-size: 16px;
        line-height: 16px;
        height: 44px;
    }

    .recipes-content-video {
        gap: 20px;
    }

    .recipes-content-video-item {
        min-width: 220px;
    }

    .recipes-content-video-item .video video {
        max-height: 320px;
    }

    .recipes-content-video p {
        font-size: 14px;
        line-height: 20px;
    }

    .recipes-content .button-red {
        position: relative;
        width: 188px;
        height: 52px;
        font-size: 16px;
        line-height: 16px;
        z-index: 1;
    }

    .to-buy {
        padding-top: 80px;
        padding-bottom: 0;
    }

    .to-buy h2 {
        font-size: 32px;
        line-height: 38px;
    }
}

@media screen and (max-width: 500px) {
    .description-card-splide {
        gap: 20px;
    }

    .main-screen-content .main-screen-item:first-child {
        margin-bottom: 25px;
    }

    .main-screen-item .hearth {
        max-width: 285px;
        max-height: 280px;
        height: 100%;
        margin-bottom: 65px;
    }

    .main-screen-item .package {
        top: 182px !important;
        right: 43px;
        max-width: 159px;
        max-height: 110px;
        height: 100%;
        width: auto;
    }

    .main-screen .dynamic-item.big-hearth {
        width: 58px;
        height: 48px;
        bottom: 253px;
        left: 7px !important;
    }

    .main-screen .dynamic-item.bagel {
        width: 103px;
        right: -54px;
        bottom: 207px;
    }

    .description-card p {
        font-size: 14px;
        line-height: 20px;
    }

    .description-card img {
        width: 120px;
    }

    .description-cards .button-red {
        width: 179px;
        height: 52px;
        font-size: 16px;
        line-height: 16px;
    }
}

@media screen and (max-width: 435px) {
    .main-screen-item .package {
        right: 0 !important;
    }
}

.quality {
    position: relative;
    background-image: url("../img/new-grid.svg");
    background-repeat: repeat;
    background-position: center center;
    padding-top: 48px;
    padding-bottom: 82px;
}

.quality h1 {
    margin-bottom: 20px;
}

.quality .subtitle {
    font-family: 'Tavolga', sans-serif;
    font-size: 48px;
    line-height: 48px;
    color: var(--red);
    margin-bottom: 20px;
}

.recipes-page-item-description,
.quality .lush-description {
    font-size: 20px;
    line-height: 28px;
    color: var(--brown);
    margin-bottom: 70px;
}

.recipes-page-item-description {
    margin-bottom: 27px;
}

.bread-crumbs {
    margin-bottom: 20px;
    color: var(--brown);
}
.bread-crumbs span,
.bread-crumbs a {
    color: var(--brown);
    font-size: 20px;
    line-height: 20px;
    text-decoration: none;
}

.quality .title {
    margin-bottom: 35px;
}

h1 {
    font-family: 'Tavolga', sans-serif;
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase;
    margin-bottom: 85px;
    color: var(--red);
    font-weight: 700;
}

.quality-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.quality-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 95px;
}

.quality-block:nth-child(even) {
    flex-direction: row-reverse;
}

.quality-item {
    position: relative;
    flex-basis: 50%;
}

.quality-item h2 {
    font-family: 'Tavolga', sans-serif;
    font-size: 48px;
    line-height: 48px;
    color: var(--red);
    margin-bottom: 16px;
}

.quality-item p {
    font-size: 20px;
    line-height: 28px;
    color: var(--brown);
}

.quality-item img {
    max-width: 680px;
    max-height: 440px;
    border-radius: 20px;
    width: 100%;
}

.quality-block:nth-child(odd) .quality-item:last-child img {
    transform: rotate(5deg);
}

.quality-block:nth-child(even) .quality-item:last-child img {
    transform: rotate(-5deg);
}

.quality-block:nth-child(odd) .quality-item:last-child .clip {
    position: absolute;
    top: -88px;
    right: 160px;
    width: 166px;
    height: 198px;
    object-position: center;
    border-radius: unset;
    object-fit: cover;
    transform: rotate(10deg);
    z-index: 2;
}

.quality-block:nth-child(even) .quality-item:last-child .clip {
    position: absolute;
    top: -98px;
    right: 185px;
    width: 166px;
    height: 198px;
    object-position: center;
    border-radius: unset;
    object-fit: cover;
    transform: rotate(2deg);
    z-index: 2;
}

.quality-block:nth-child(even) h2,
.quality-block:nth-child(even) .quality-item:first-child p {
    text-align: right;
}

.quality .bagel-mobile {
    display: none;
}

.quality .flower,
.quality .cake,
.quality .bagel,
.quality .bagel-mobile,
.quality .hearth,
.quality .pretzel {
    position: absolute;
    z-index: -1;
}

.quality .flower path,
.quality .bagel path,
.quality .pretzel path {
    fill: var(--orange-1);
}

.quality .flower {
    top: 200px;
    left: -140px;
}

.quality .cake {
    width: 180px;
    height: 196px;
    top: 455px;
    left: -100px;
}

.quality .bagel {
    top: 575px;
    right: -250px;
}

.quality .hearth {
    transform: rotate(50deg);
    bottom: 100px;
    right: -225px;
}

.quality .pretzel {
    bottom: 50px;
    left: -200px;
}

.quality-item .title {
    border-radius: 0;
}

@media screen and (max-width: 1076px) {
    .quality .title,
    .quality .quality-item .title {
        display: none;
    }

    .quality .quality-item .title-mobile {
        display: block;
        margin-bottom: 4px;
        margin-left: 0;
        border-radius: 0;
        width: auto;
    }

    .quality .title-mobile {
        display: block;
        margin: 0 auto 28px;
    }

    .quality-block,
    .quality-block:nth-child(even) {
        flex-direction: column;
        gap: 70px;
    }

    .quality-block:nth-child(even) h2,
    .quality-block:nth-child(even) .quality-item:first-child p {
        text-align: left;
    }

    .quality h1 {
        font-size: 44px;
        line-height: 44px;
        margin-bottom: 28px;
        text-align: center;
    }

    .quality .bread-crumbs {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 8px;
        text-align: center;
    }

    .quality-item h2 {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 4px;
    }

    .quality-item p {
        font-size: 16px;
        line-height: 22px;
    }

    .quality .flower {
        top: 0;
        left: -30px;
    }

    .quality-content {
        gap: 75px;
    }

    .quality .cake {
        left: -10px;
        width: 100px;
        top: 545px;
    }

    .quality .bagel-mobile,
    .quality .bagel {
        top: 168px;
        right: -55px;
        width: 135px;
    }

    .quality .bagel-mobile {
        display: block;
        top: 778px;
    }

    .quality .pretzel {
        bottom: 452px;
        left: -81px;
        width: 160px;
    }

    .quality .hearth {
        bottom: -155px;
        right: 5px;
        width: 70px;
    }

    .quality-block:nth-child(odd) .quality-item:last-child .clip {
        top: -85px;
    }

    .quality-block:nth-child(even) .quality-item:last-child .clip {
        top: -102px;
    }
}

@media screen and (max-width: 600px) {
    .quality-block:nth-child(odd) .quality-item:last-child .clip {
        top: -87px;
        right: 25%;
    }

    .quality-block:nth-child(even) .quality-item:last-child .clip {
        top: -85px;
        left: 5%;
    }
}

@media screen and (max-width: 475px) {
    .quality-block:nth-child(odd) .quality-item:last-child .clip {
        top: -91px;
        right: 25%;
    }

    .quality-block:nth-child(even) .quality-item:last-child .clip {
        top: -88px;
        left: 5%;
    }
}

.recipes-page {
    background: #FFDFBC;
    padding-top: 160px;
    padding-bottom: 80px;
}

.recipes-page .title {
    display: block;
    margin: 0 auto 20px;
}

.recipes-page-item .title {
    margin-bottom: 27px;
    display: block;
}

.recipes-page-step-block .title {
    display: block;
    margin-bottom: 16px;
    transform: unset !important;
    width: auto;
    border-radius: 0;
}

.contact .title {
    display: block;
    margin-bottom: 20px;
}

.contact .title-mobile {
    display: none;
    margin-bottom: 44px;
}

.title-mobile-comment {
    margin: 0 0 12px 0 !important;
}

@media screen and (max-width: 1076px) {
    .recipes-page-item .title,
    .recipes-page .title {
        display: none;
    }

    .recipes-page .title-mobile {
        display: block;
        margin: 0 auto 16px;
    }

    .recipes-page-item .title-mobile {
        margin-bottom: 20px;
        display: block;
    }

    .recipes-page-step-block .title {
        display: none;
    }

    .recipes-page-step-block .title-mobile {
        display: block;
        margin-bottom: 8px;
        transform: unset !important;
        width: auto;
        border-radius: 20px;
    }

    .contact .title {
        display: none;
    }

    .contact .contact-form form .form-item .title {
        display: block;
    }

    .contact .title-mobile {
        display: block;
        margin: 0 auto 20px;
    }

}

.recipes-page .page-logo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.recipes-page h1,
.recipes-page .bread-crumbs {
    text-align: center;
}

.recipes-page .bread-crumbs {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 20px;
    color: var(--brown);
}

.recipes-page h1 {
    position: relative;
    font-family: Tavolga, sans-serif;
    font-size: 70px;
    line-height: 70px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
    z-index: 1;
}

.recipes-page .description {
    position: relative;
    color: var(--brown);
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    max-width: 926px;
    margin: 0 auto 52px;
    z-index: 1;
}

.recipes-page .description {
    position: relative;
    color: var(--brown);
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    max-width: 926px;
    margin: 0 auto 52px;
    z-index: 1;
}

.recipes-page .recipes-content-images {
    position: relative;
    flex-wrap: wrap;
    z-index: 1;
}

.recipes-page .recipes-content-video {
    overflow: hidden;
    flex-wrap: wrap;
    z-index: 1;
}

.recipes-page .recipes-content-images-item {
    flex-basis: calc(33% - 45px);
    margin-bottom: 40px;
    max-width: 340px;
    box-shadow: 0 2px 4px rgba(159, 114, 62, 0.3);
    text-decoration: none;
    min-height: 313px;
    height: max-content;
}

.recipes-page .recipes-content-images-item img {
    display: block;
    width: 290px;
    height: 100%;
    max-height: 215px;
    margin: 0 auto 10px;
}

.recipes-page .recipes-content-images-item p {
    max-width: 300px;
    margin: 0 auto;
}

.recipes-page .recipes-content-video .recipes-content-video-item {
    flex-basis: calc(25% - 45px);
    text-decoration: none;
}

.recipes-page .recipes-content-images {
    gap: 50px;
}

.recipes-content-active {
    position: relative;
    z-index: 1;
}

.fast-filters {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 44px;
    z-index: 1;
}

.fast-filters-item {
    position: relative;
    font-family: 'Tavolga', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    font-size: 16px;
    line-height: 16px;
    border-radius: 10px;
    color: white;
    background: var(--brown);
    text-transform: uppercase;
    height: 43px;
    padding: 0 20px;
    cursor: pointer;
    z-index: 1;
}

.fast-filters-item.active {
    background: var(--red);
    color: white;
    border: none;
}

.recipes-page .recipes-content-active {
    margin-bottom: 48px;
}

.recipes-page .two-hearth,
.recipes-page .cake,
.recipes-page .notepad,
.recipes-page .donut,
.recipes-page .mitten,
.recipes-page .hearth,
.recipes-page .pretzel,
.recipes-page .bagel,
.recipes-page .second-donut {
    position: absolute;
    z-index: 0;
}

.recipes-page .two-hearth path,
.recipes-page .cake path,
.recipes-page .notepad path,
.recipes-page .donut path,
.recipes-page .mitten path,
.recipes-page .hearth path,
.recipes-page .pretzel path,
.recipes-page .bagel path,
.recipes-page .second-donut path {
    fill: var(--orange-1);
}

.recipes-page .two-hearth {
    top: 0;
    left: 0;
}

.recipes-page .cake {
    top: 0;
    right: 0;
}

.recipes-page .notepad {
    top: 387px;
    left: -250px;
}

.recipes-page .donut {
    top: 800px;
    right: -125px;
}

.recipes-page .mitten {
    top: 860px;
    left: -100px;
}

.recipes-page .hearth {
    transform: rotate(50deg);
    top: 1300px;
    right: -125px;
}

.recipes-page .pretzel {
    transform: rotate(-30deg);
    top: 1500px;
    left: -180px;
}

.recipes-page .bagel {
    top: 1700px;
    right: -13%;
    z-index: 0;
}

.recipes-page .second-donut {
    display: none;
    top: 2130px;
    left: -5%;
    z-index: 2;
}

.recipes-page .second-donut.show {
    display: block;
}

@media screen and (max-width: 1076px) {
    .recipes-page .recipes-content-video .recipes-content-video-item {
        flex-basis: calc(33% - 45px);
    }

    .recipes-page .recipes-content-video {
        padding: 0 40px;
    }

    .recipes-page .bread-crumbs {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 8px;
    }

    .recipes-page h1 {
        font-size: 44px;
        line-height: 44px;
        margin-bottom: 16px;
    }

    .recipes-page .description {
        font-size: 16px;
        line-height: 22px;
        margin: 0 auto 32px;
    }

    .recipes-page .recipes-content-active {
        margin-bottom: 20px;
    }

    .fast-filters {
        margin-bottom: 38px;
    }

    .recipes-page .button-red {
        position: relative;
        height: 52px;
        font-size: 16px;
        line-height: 16px;
        max-width: 200px;
        z-index: 2;
    }

    .recipes-page {
        padding-top: 100px;
    }

    .recipes-page .page-logo {
        top: -15px;
        width: 60px;
    }

    .recipes-page .two-hearth {
        top: -144px;
        width: 64px;
        left: 12px;
    }

    .recipes-page .cake {
        top: -177px;
        width: 75px;
        right: 14px;
    }

    .recipes-page .notepad {
        top: 387px;
        left: -500px;
    }

    .recipes-page .donut {
        top: 371px;
        right: -15px;
        width: 70px;
    }

    .recipes-page .mitten {
        top: 31%;
        left: -29px;
        width: 92px;
    }

    .recipes-page .hearth {
        transform: rotate(-11deg);
        top: 42.5%;
        left: -18px;
        width: 70px;
    }

    .recipes-page .pretzel {
        transform: rotate(-30deg);
        top: 13.8%;
        left: -21%;
    }

    .recipes-page .bagel {
        top: 18.8%;
        right: -19%;
        z-index: 0;
        width: 140px;
    }

    .recipes-page .second-donut {
        top: 36.3%;
        right: -40px;
        left: auto;
        z-index: 0;
        width: 90px;
    }
}

@media screen and (max-width: 550px) {
    .recipes-page .recipes-content-video .recipes-content-video-item {
        flex-basis: 100%;
        max-width: 100%;
    }

    .recipes-page .recipes-content-video .recipes-content-video-item .video {
        max-width: 100%;
    }

    .recipes-page .recipes-content-video-item .video video {
        max-height: 100%;
    }

    .recipes-page .recipes-content-images-item {
        flex-basis: 100%;
        max-width: 100%;
    }

    .recipes-page .recipes-content-images-item img {
        width: 100%;
        max-height: 135px !important;
    }
}

.recipes-page-item {
    padding-top: 50px;
}

.recipes-page-item h1 {
    margin-bottom: 27px;
}


.recipes-page-info {
    position: relative;
    display: flex;
    gap: 40px;
    margin-bottom: 100px;
}

.recipes-page-info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-basis: 50%;
}

.recipes-page-info-item img,
.recipes-page-info-item .recipes-item-characteristics {
    max-width: 640px;
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.recipes-page-info-list p {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    text-transform: uppercase;
    color: #661B00;
    margin-bottom: 12px;
}

.recipes-page-info-list ul {
    padding-left: 20px;
    margin-bottom: 32px;
    list-style: none;
}

.recipes-page-info-list ul li {
    position: relative;
    color: var(--brown);
    margin-bottom: 8px;
}

.recipes-page-info-list ul li:before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    width: 8px;
    height: 8px;
    background: url(../img/red-dot.svg) no-repeat center;
}

.recipes-page-info-list ul li:last-child {
    margin-bottom: 0;
}

.recipes-page-info-list ul li span {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    color: #661B00;
}

.recipes-page-info:before {
    position: absolute;
    content: '';
    top: -70px;
    right: -291px;
    width: 100%;
    height: 111%;
    background: url(../img/bg-precipes-page-item.svg) no-repeat center;
    z-index: -1;
    background-size: contain;
}

.recipes-page-steps {
    display: flex;
    flex-direction: column;
    gap: 150px;
}

.recipes-page-step {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 225px;
    z-index: 1;
}

.recipes-page-step-block {
    position: relative;
    flex-basis: 50%;
}

.recipes-page-step-block h2 {
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    text-transform: uppercase;
    color: #E2211C;
    margin-bottom: 16px;
}

.recipes-page-step-block p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #661B00;
}

.recipes-page-step-block img {
    max-width: 493px;
    width: 100%;
    max-height: 320px;
    border-radius: 20px;
}

.recipes-page-step-block .clip {
    max-width: 168px;
    width: 100%;
    max-height: 200px;
}

.recipes-page-step:nth-child(odd) .recipes-page-step-block img {
    transform: rotate(5deg);
}

.recipes-page-step:nth-child(even) {
    flex-direction: row-reverse;
}

.recipes-page-step:nth-child(even) .recipes-page-step-block {
    text-align: right;
}

.recipes-page-step:nth-child(even) .recipes-page-step-block img {
    transform: rotate(-5deg);
}

.recipes-page-item .hearth path,
.recipes-page-item .second-hearth path {
    fill: #FFC079;
}

.recipes-page-item .hearth,
.recipes-page-item .second-hearth {
    position: absolute;
    z-index: -1;
    transform: rotate(75deg);
    right: 20px;
}

.recipes-page-item .second-hearth {
    top: 21%;
    z-index: 1;
}

.recipes-page-step:nth-child(even):before {
    position: absolute;
    content: '';
    bottom: -25px;
    left: 45%;
    right: auto;
    margin: 0 auto;
    background: url("../img/arrow-recipes.svg") no-repeat center;
    width: 135px;
    height: 135px;
}

.recipes-page-step:nth-child(odd):before {
    position: absolute;
    content: '';
    bottom: -150px;
    left: 45%;
    right: auto;
    margin: 0 auto;
    background: url("../img/arrow-recipes.svg") no-repeat center;
    width: 135px;
    height: 135px;
    transform: rotate(80deg);
}

.recipes-page-step:last-child:before {
    display: none;
}

.recipes-page-step:nth-child(odd) .recipes-page-step-block .clip {
    position: absolute;
    top: -90px;
    right: 28%;
    width: 166px;
    height: 200px;
    z-index: 2;
    transform: rotate(11deg) !important;
}

.recipes-page-step:nth-child(even) .recipes-page-step-block .clip {
    position: absolute;
    top: -85px;
    right: 46%;
    width: 166px;
    height: 200px;
    z-index: 2;
    transform: rotate(1deg) !important;
}

.recipes-page-step:last-child .recipes-page-step-block .clip {
    position: absolute;
    top: -96px;
    right: 39%;
    width: 166px;
    height: 200px;
    z-index: 2;
    transform: rotate(11deg) !important;
}

.other-block {
    position: relative;
    padding: 200px 0;
}

.other-block .bun {
    position: absolute;
    top: auto;
    bottom: -50px;
    width: 283px;
    height: 256px;
    left: -70px;
    z-index: -1;
}

.other-block .fill-ring {
    position: absolute;
    top: 400px;
    width: 13px;
    height: 14px;
    right: 230px;
    z-index: -1;
}

.other-block .list {
    position: absolute;
    top: 63px;
    width: 346px;
    height: 345px;
    right: 40px;
    z-index: -1;
}

.other-block .fill-ring path,
.other-block .ring path {
    fill: #FFC079;
}

.other-block .ring {
    position: absolute;
    top: 323px;
    width: 27px;
    height: 27px;
    right: 250px;
    z-index: -1;
}

.recipes-page-content {
    margin-bottom: 60px;
}

.other-block:before {
    position: absolute;
    content: "";
    top: 30px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../assets/img/bg-recipes.svg) no-repeat;
    background-size: cover;
    clip-path: inset(-100% 0 30px 0);
    z-index: -1;
}

.other-block h2 {
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 65px;
    text-transform: uppercase;
    color: #E2211C;
    margin-bottom: 100px;
}

.splide-images .recipes-content-images-item img {
    width: 100%;
    max-width: 305px;
    max-height: 210px;
}

.splide-images .recipes-content-images-item {
    box-shadow: 0 2px 4px rgba(159, 114, 62, 0.3);
    text-decoration: none;
}

.splide-images .splide__slide:nth-child(even) {
    transform: rotate(15deg);
}


@media screen and (max-width: 1076px) {
    .bread-crumbs {
        font-size: 16px;
        line-height: 16px;
    }

    h1 {
        font-size: 44px;
        line-height: 44px;
    }

    .recipes-page-item h1 {
        margin-bottom: 20px;
    }

    .recipes-page-info {
        flex-direction: column;
        gap: 25px;
    }

    .recipes-page-item .hearth {
        display: none;
    }

    .recipes-page-info:before {
        right: -291px;
        left: -200px;
    }

    .recipes-page-info-list p {
        font-size: 18px;
        line-height: 18px;
    }

    .recipes-page-info-list ul {
        margin-bottom: 16px;
    }

    .recipes-page-info-list ul li span {
        font-size: 16px;
        line-height: 16px;
    }

    .recipes-page-info-item img,
    .recipes-page-info-item .recipes-item-characteristics {
        max-width: 500px;

    }

    .recipes-page-step {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .recipes-page-step:first-child .recipes-page-step-block .clip {
        top: -94px;
        left: 15%;
    }

    .recipes-page-step:last-child .recipes-page-step-block .clip {
        top: -89px;
        left: 26%;
    }

    .recipes-page-steps {
        gap: 135px;
    }

    .recipes-page-step:first-child:before {
        bottom: -121px;
        left: 5%;
        transform: rotateY(185deg) rotate(51deg);
        width: 87px;
        height: 80px;
        object-fit: cover;
        background-size: contain;
    }

    .recipes-page-step:nth-child(2):before {
        width: 87px;
        height: 80px;
        object-fit: cover;
        background-size: contain;
        left: 55%;
        transform: rotate(60deg);
    }

    .recipes-page-step:nth-child(2) .recipes-page-step-block .clip {
        position: absolute;
        top: -96px;
        left: 16%;
        width: 166px;
        height: 200px;
        z-index: 2;
        transform: rotate(2deg) !important;
    }

    .recipes-page-step-block h2 {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 8px;
    }

    .recipes-page-step-block p {
        font-size: 16px;
        line-height: 22px;
    }

    .recipes-page-step:nth-child(even) {
        flex-direction: column-reverse;
    }

    .recipes-page-step:nth-child(even) .recipes-page-step-block {
        text-align: left;
    }

    .recipes-page-content {
        margin-bottom: 30px;
    }

    .recipes-page-content .button-red {
        z-index: 0 !important;
    }

    .other-block .splide__pagination__page {
        background: white !important;
    }

    .other-block .splide__pagination__page.is-active {
        background: var(--red) !important;
    }

    .other-block h2 {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 835px) {
    .recipes-page .recipes-content-images-item img {
        max-height: 175px;
    }
}

@media screen and (max-width: 768px) {
    .wave-divider {
        display: none;
    }

    .splide-images .recipes-content-images-item {
        margin: 0 auto;
    }

    .other-block .bun {
        position: absolute;
        top: auto;
        bottom: -167px;
        width: 128px;
        height: 256px;
        left: -32px;
        z-index: -1;
    }

    .other-block .ring {
        position: absolute;
        top: 146px;
        width: 27px;
        height: 27px;
        right: 10px;
        z-index: -1;
    }

    .recipes-page-step:nth-child(2):before {
        width: 87px;
        height: 80px;
        object-fit: cover;
        background-size: contain;
        bottom: -97px;
        right: -78px;
        transform: rotate(60deg);
    }
	
	.recipes-page-step:nth-child(odd):before {
		transform: rotate(0deg);
		left: 5%;
		bottom: -121px;
		        width: 87px;
        height: 80px;
        object-fit: cover;
        background-size: contain;
	}
	
	.recipes-page-step:nth-child(even):before {
		transform: rotate(80deg);
		bottom: -97px;
        right: -78px;
		        width: 87px;
        height: 80px;
        object-fit: cover;
        background-size: contain;
	}

    .recipes-page-item .second-hearth {
        top: 35%;
        z-index: 1;
        width: 70px;
        right: -20px;
    }

    .recipes-page-info:before {
        right: 0;
        left: 0;
    }
}

@media screen and (max-width: 500px) {
    .splide-images .recipes-content-images-item {
        max-width: 265px;
        width: 100%;
    }
}

.articles-page {
    padding-top: 50px;
    background: transparent;
    background-image: url("../img/new-grid.svg");
    background-repeat: repeat;
    background-position: center center;
}

.articles-page-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.articles-page-item {
    flex-basis: calc(33% - 45px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: var(--orange-2);
    border-radius: 20px;
    padding: 0 28px 34px;
    margin-bottom: 100px;
}

.articles-page-item .button-red {
    height: 52px;
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.articles-page-item .clip {
    position: absolute;
    top: -93px;
    left: 25%;
    width: 120px;
    z-index: 1;
}

.articles-page-item:nth-child(3n) .clip {
    top: -91px;
}

.article-image {
    max-width: 336px;
    width: 100%;
    border-radius: 20px;
    margin-top: -30px;
    margin-bottom: 40px;
    height: 100%;
    max-height: 238px;
}

.articles-page-item:nth-child(1n) .article-image {
    transform: rotate(-5deg);
}

.articles-page-item:nth-child(3n - 1) .article-image {
    transform: rotate(5deg);
}

.articles-page .fast-filters {
    margin-bottom: 150px;
}

.articles-page-item .title {
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    text-transform: uppercase;
    color: #661B00;
    margin-bottom: 8px;
}

.articles-page-item .description {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #661B00;
    text-align: left;
    margin-bottom: 20px;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.articles-page .hearth,
.articles-page .notepad,
.articles-page .croissant,
.articles-page .pretzel {
    position: absolute;
    z-index: -1;
}

.articles-page .hearth {
    top: 135px;
    right: 0;
}

.articles-page .hearth path {
    fill: #FFDFBC;
}

.articles-page .notepad {
    top: 25%;
    left: 0;
    transform: rotate(-38deg);
}

.articles-page .croissant {
    top: 60%;
    left: auto;
    right: 0;
    transform: rotate(-28deg);
}

.articles-page .pretzel {
    bottom: 16%;
    left: 0;
    transform: rotate(10deg);
}


@media screen and (max-width: 1076px) {
    .articles-page-item {
        flex-basis: calc(50% - 30px);
    }

    .articles-page .hearth {
        left: auto;
    }

}

@media screen and (max-width: 768px) {
    .articles-page-item {
        flex-basis: 100%;
        margin-bottom: 50px;
    }

    .articles-page .hearth {
        top: 5%;
        transform: rotate(50deg);
    }

    .articles-page .pretzel {
        bottom: auto;
        top: 8.9%;
        width: 225px;
        left: -74px;
        transform: rotate(-30deg);
    }

    .articles-page {
        padding-bottom: 32px;
    }
}

@media screen and (max-width: 500px) {
    .articles-page .croissant,
    .articles-page .notepad {
        display: none;
    }
}

.articles-item-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.articles-item-content-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 150px;
}

.articles-item {
    color: var(--brown);
    flex-basis: 50%
}

.description-mobile {
    color: var(--brown);
}

.articles-item .description {
    position: relative;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 32px;
    z-index: 2;
}

.articles-item ol {
    padding-left: 20px;
}

.articles-item ol li {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 16px;
}

.articles-item ol li span {
    font-weight: 400;
}

.articles-item .clip {
    position: absolute;
    top: -19px;
    right: 45%;
    transform: rotate(9deg);
    width: 160px;
    left: auto;
}

.articles-item-image {
    position: relative;
    margin-top: 70px;
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    transform: rotate(5deg);
}

.bg-white {
    background: white;
}

.articles-page-item .hearth {
    position: absolute;
    z-index: 0;
    transform: rotate(11deg);
    left: -120px;
    top: auto;
    bottom: 36px;
}

.articles-page-item .second-hearth {
    top: 17%;
    right: 30px;
}

.articles-item-content-block:nth-child(even) {
    flex-direction: row-reverse;
}

.articles-item-content-block:nth-child(even) .articles-item-image {
    margin-top: 0;
    transform: rotate(-5deg);
}

.articles-item-content-block:nth-child(even) .articles-item .clip {
    position: absolute;
    top: -83px;
    right: 47%;
    transform: rotate(1deg);
    width: 160px;
    left: auto;
}

.description-mobile {
    display: none;
    margin-bottom: -50px;
}

.p-0 {
    padding: 0;
}

.other-block .article-clip-1 {
    top: -22%;
    right: 54%;
}

.other-block .article-clip-2 {
    top: -24%;
    right: 51%;
}

.other-block .article-clip-3 {
    top: -22%;
    right: 45%;
}

@media screen and (max-width: 1076px) {
    .articles-page-item .hearth {
        top: 55%;
        right: 38px;
        width: 49px;
        transform: rotate(-4deg);
        left: 25px;
        display: block;
        z-index: 1;
    }

    .articles-item-content-block:nth-child(even),
    .articles-item-content-block {;
        gap: 35px;
        flex-direction: column-reverse;
    }

    .articles-page-item {
        margin-bottom: 20px;
    }

    .articles-item ol li {
        margin-bottom: 12px;
    }

    .description-mobile {
        display: block;
    }

    .articles-item .description {
        display: none;
    }

    .articles-item ol li,
    .articles-item .description,
    .description-mobile {
        font-size: 16px;
        line-height: 22px;
    }

    .articles-page-item .second-hearth {
        top: 22%;
        right: 32px;
        width: 49px;
    }

    .articles-item-image {
        width: 84%;
        margin: 70px auto 0;
        display: block;
        transform: rotate(-5deg);
    }

    .articles-item .clip {
        position: absolute;
        top: 7px;
        right: 28%;
        transform: rotate(-2deg);
        width: 110px;
        left: auto;
    }

    .articles-item-content-block:nth-child(even) .articles-item-image {
        transform: rotate(5deg);
    }

    .articles-item-content-block:nth-child(even) .articles-item .clip {
        top: -86px;
        right: 47%;
        width: 110px;
        display: none;
    }

    .articles-item-content-block:nth-child(even) .articles-item .mobile-clip {
        position: absolute;
        top: -56px;
        right: 31%;
        width: 110px;
        display: block;
        z-index: 1;
        transform: rotate(11deg);
    }

    .other-block-articles h2 {
        margin-bottom: 150px;
    }

    .other-block-articles .article-clip-2 {
        top: -124px;
        right: 175px;
    }

    .other-block-articles .article-clip-3 {
        top: -121px;
        right: 150px;
    }

    .other-block-articles .article-clip-2 {
        top: -115px;
        right: 179px;
    }
}

.video-mobile {
    display: none;
}

.recipe-description {
    line-height: 28px;
    font-size: 20px;
    color: var(--brown);
}

@media screen and (max-width: 768px) {
    .recipe-description {
        line-height: 22px;
        font-size: 16px;
    }

    .video-desktop {
        display: none;
    }

    .video-mobile {
        display: block;
    }

    .other-block .list {
        position: absolute;
        top: -117px;
        width: 186px;
        height: 345px;
        right: 0;
        z-index: -1;
    }

    .articles-item .clip {
        position: absolute;
        top: 10px;
        right: 28%;
        transform: rotate(-2deg);
        width: 110px;
        left: auto;
    }

    .articles-page-item .hearth {
        top: 56%;
        right: 38px;
        width: 49px;
        transform: rotate(-4deg);
        left: 25px;
        display: block;
        z-index: 1;
    }

    .other-block-articles {
        padding: 100px 0;
    }

    .other-block .article-clip-1 {
        top: -21%;
        right: 54%;
        width: 124px;
        height: 143px;
    }

    .other-block .article-clip-2 {
        top: -23%;
        right: 51%;
        width: 124px;
        height: 143px;
    }

    .other-block .article-clip-3 {
        top: -21.4%;
        right: 45%;
        width: 124px;
        height: 143px;
    }
}

@media screen and (max-width: 450px) {
    .other-block-articles .article-img-2,
    .other-block-articles .article-img-3,
    .other-block-articles .article-img {
        width: 280px;
    }

    .other-block-articles .articles-content-item {
        padding: 206px 28px 34px;
    }
}

.articles-item-content-block .articles-item .mobile-clip {
    display: none;
}

.contact {
    margin-bottom: 100px;
}

.contact h1 {
    margin-bottom: 20px;
}

.contact .description {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #661B00;
    margin-bottom: 60px;
}

.contact-form {
    margin: 0 auto;
    max-width: 960px;
}

.contact-form h2 {
    font-family: 'Tavolga', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #661B00;
    margin-bottom: 44px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form form .form-block {
    display: flex;
    gap: 10px;
}

.contact-form form .form-item input {
    padding: 29px 12px 10px;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #FFDFBC;
    border-radius: 5px;
    outline: none;
    color: var(--brown);
}

.contact-form form .form-item textarea {
    width: 100%;
}

.contact-form form .form-item {
    position: relative;
    flex-basis: 50%;
}

.contact-form form .form-item .title {
    position: absolute;
    top: 10px;
    left: 12px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    font-feature-settings: 'pnum' on, 'lnum' on, 'ordn' on, 'kern' off;
    color: #661B00;
}

.contact-form form .form-item-textarea {
    flex-basis: 100%;
}

.contact-form form .form-item-textarea textarea {
    padding: 29px 12px 10px;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #FFDFBC;
    border-radius: 5px;
    outline: none;
    color: var(--brown);
}

.file-upload {
    position: relative;
    display: inline-block;
}

.file-upload span {
    display: inline-block;
    cursor: pointer;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    font-feature-settings: 'pnum' on, 'lnum' on, 'ordn' on, 'kern' off;
    color: #661B00;
}

.custom-file-upload {
    position: relative;
    cursor: pointer;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    font-feature-settings: 'pnum' on, 'lnum' on, 'ordn' on, 'kern' off;
    color: #661B00;
    padding-left: 25px;
}

.custom-file-upload:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 20px;
    height: 19px;
    background: url("../img/upload-file.svg") no-repeat center center;
}

#file-upload {
    display: none;
}

.contact-form form .button-red {
    border: none;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
    margin-top: 20px;
}

.policy {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    font-feature-settings: 'pnum' on, 'lnum' on, 'ordn' on, 'kern' off;
    color: #661B00;
}

@media screen and (max-width: 1076px) {
    .contact {
        margin-bottom: 60px;
    }

    .contact .description {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 25px;
    }

    .contact h1 {
        margin-bottom: 12px;
    }

    .contact-form h2 {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .contact-form form .button-red {
        margin-top: 10px;
        height: 52px;
        font-size: 16px;
        line-height: 100%;
    }

    .policy {
        font-size: 14px;
        line-height: 14px;
    }
}

@media screen and (max-width: 500px) {
    .contact-form form .form-block {
        flex-direction: column;
    }
}

.about-button {
    border: none;
    cursor: pointer;
}

.about-modal {
    position: fixed;
    top: 200%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    transition: top .5s;
}

.about-modal.open {
    top: 0;
}

.about-modal-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    max-width: 932px;
    min-height: 448px;
    border-radius: 20px;
    border: 4px var(--orange-2) solid;
    padding: 40px;
    background: white;
    margin: 0 auto;
    transition: transform .5s;
}

.about-modal-item img {
    width: 300px;
    height: 368px;
    object-fit: cover;
    border-radius: 20px;
}

.about-modal-item h2 {
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    text-transform: uppercase;
    color: #E2211C;
    margin-bottom: 20px;
}

.about-modal-item p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #661B00;
}

.close-modal {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

.close-modal path {
    fill: var(--orange-1);
}

@media screen and (max-width: 950px) {
    .about-modal.open {
        overflow-y: auto;
    }

    .about-modal-content {
        top: 0;
        transform: translateY(0);
        flex-direction: column;
    }

    .about-modal-item img {
        width: 100%;
    }

    .about-modal-item h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .about-modal-item p {
        font-size: 16px;
    }
}

.modal-video {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 100;
}

.modal-video.active {
    display: flex;
}

.modal-video-block {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 642px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    overflow-y: auto;
    padding: 0 70px;
}

.modal-video-block::-webkit-scrollbar {
    width: 0;
}

.modal-video-content {
    position: relative;
    transform: translateY(10%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 542px;
    width: 100%;
    min-height: 850px;
    justify-content: end;
    border-radius: 20px;
    padding-bottom: 27px;
    overflow: hidden;
}

.modal-video-content.open-description:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/*.modal-video-content:before {*/
/*    position: absolute;*/
/*    content: '';*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.3) 100%);*/
/*    z-index: 0;*/
/*}*/

.modal-video-content video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.modal-video-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: left;
    padding-left: 16px;
    z-index: 2;
}

.modal-video-content span {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #FFDFBC;
    padding-left: 16px;
    z-index: 2;
}

.modal-video-content p span {
    padding-left: 0;
}

.close-video {
    position: absolute;
    top: 65px;
    right: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.modal-video-content .description {
    display: none;
    overflow-y: auto;
    color: white;
    font-size: 20px;
    line-height: 20px;
    padding: 64px 16px;
    margin-bottom: 0;
    z-index: 2;
}

.modal-video-content .description h3 {
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.modal-video-content .description p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding-left: 0;
    text-transform: unset;
}

.modal-video-content .description .title {
    padding-left: 0;
    margin-bottom: 11px;
    text-transform: unset;
}

.modal-video-content .description ul {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding-left: 20px;
    margin-bottom: 20px;
    text-align: left;
}


.video-controls {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    align-items: center;
    gap: 10px;
}

.video-controls.active {
    display: none;
}

.play-pause-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-466%) translateX(-50%);
    left: 50%;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.progress-bar {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 5px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, white var(--value, 0%), rgba(255, 255, 255, 0.2) var(--value, 50%));

    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(to right, white var(--value, 0%), rgba(255, 255, 255, 0.2) var(--value, 50%));
    height: 6px;
    border-radius: 5px;
}

input[type="range"]::-moz-range-track {
    background: white;
    height: 6px;
    border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transform: translateY(-6px);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    border: none;
}

@media (hover: hover) and (pointer: fine) {
    .modal-video-content:hover .video-controls {
        display: flex;
    }
}

@media (hover: none) and (pointer: coarse) {
    .video-controls.active {
        display: flex;
    }
}

@media screen and (max-width: 768px) {
    .modal-video-content .description {
        padding: 64px 16px 0;
    }

    .modal-video-content p {
        padding: 0 16px;
    }

    .modal-video-block {
        max-width: 100%;
        overflow-y: auto;
        padding: 0;
		max-height: 620px;
    }

    .close-video {
        top: 14px;
        right: 14px;
        z-index: 3;
    }

    .modal-video-content {
        transform: translateY(0%);;
        max-width: 100%;
        width: 100%;
        min-height: 100%;
        border-radius: 0;
    }
}

.footer-recipes {
    position: relative;
    z-index: 1;
}

.footer-recipes .footer-content {
    position: relative;
    z-index: 1;
}

/*.footer-recipes:before {*/
/*    position: absolute;*/
/*    top: -100px;*/
/*    left: 0;*/
/*    content: '';*/
/*    width: 100%;*/
/*    height: 600%;*/
/*    background: url("../img/bg-recipes-white.svg") no-repeat center center;*/
/*    fill: white;*/
/*    background-size: cover;*/
/*    z-index: 0;*/
/*}*/
.wave-divider {
    position: absolute;
    content: '';
    bottom: 210px;
    width: 100%;
    height: 163px;
    background: url(../img/bg-recipes-white.svg) no-repeat;
    background-size: cover;
    z-index: 2;
}

.footer .footer-phone {
    padding-left: 40px;
}

.footer .footer-phone a {
    position: relative;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}

.footer .footer-phone .tel:before {
    position: absolute;
    content: '';
    top: -2px;
    left: -36px;
    width: 39px;
    height: 32px;
    background: url(../img/tel.svg) no-repeat;
    background-size: contain;
}

.footer .footer-phone .email {
    display: block;
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
    margin-top: 10px;
}

.footer .footer-phone .email:before {
    position: absolute;
    content: '';
    top: -2px;
    left: 15%;
    width: 39px;
    height: 32px;
    background: url(../img/email.svg) no-repeat;
    background-size: contain;
}

@media screen and (max-width: 786px) {
    .footer .footer-phone .email {
        font-size: 14px;
    }

    .footer .footer-phone .email:before {
        top: -4px;
        left: 11%;
    }
}

@media screen and (max-height: 850px) {
    .modal-video-content {
        transform: translateY(0);
        min-height: auto;
        height: 100%;
    }

    .close-video {
        top: 0;
    }
}

@media screen and (max-height: 560px) {
    .play-pause-btn {
        transform: translateY(-300%) translateX(-50%);
    }
}

@media screen and (max-width: 1668px) {
    .main-screen .dynamic-item.bagel {
        right: -167px;
    }

    .recipes .bun {
        left: -200px;
    }

    .recipes .mitten {
        left: -115px;
    }

    .articles-big-hearth {
        right: -140px;
    }

    .article-ring {
        left: -35px;
    }

    .article-fill-ring {
        left: -45px;
    }

    .article-ring {
        left: -40px;
    }
}

@media screen and (max-width: 1550px) {
    .main-screen .dynamic-item.bagel {
        right: -100px;
    }

    .recipes .board {
        right: -100px;
    }

    .recipes .croissant {
        left: -110px;
    }

    .recipes .bun {
        left: -140px;
    }

    .recipes .mitten {
        left: -45px;
    }

    .recipes .rolling-pin {
        right: -190px;
    }

    .articles-big-hearth {
        right: -70px;
    }

    .article-ring {
        left: -35px;
    }

    .article-ring {
        left: -40px;
    }

    .article-notepad {
        right: -150px;
    }

    .article-cake {
        left: -145px;
    }
}

@media screen and (max-width: 1400px) {
    .main-screen .dynamic-item.bagel {
        right: -50px;
        z-index: -1;
    }

    .main-screen .dynamic-item.big-hearth {
        left: -50px;
        z-index: -1;
    }

    .recipes .board {
        right: 0;
    }

    .recipes .croissant {
        left: -60px;
    }

    .recipes .bun {
        left: -40px;
    }

    .recipes .mitten {
        left: -5px;
    }

    .recipes .rolling-pin {
        right: -18px;
    }

    .articles-big-hearth {
        right: -10px;
    }

    .article-ring {
        left: -5px;
        z-index: 0;
    }

    .article-ring {
        left: -5px;
    }

    .article-notepad {
        right: -70px;
    }

    .article-cake {
        left: -75px;
    }
}

@media screen and (max-width: 1300px) {
    .recipes .cube,
    .recipes .mitten {
        display: none;
    }
}

.email-modal {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
    overflow-y: auto;
}

.email-modal-block {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    margin: 0 auto;
    background: white;
    padding: 40px 20px;
    max-width: 905px;
    border-radius: 20px;
    transition: transform 2s;
}

.footer-phone span {
    cursor: pointer;
}

.email-modal-block .title {
    font-family: 'Tavolga', sans-serif;
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--brown);
    text-transform: uppercase;
}

.email-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.email-modal.open {
    visibility: visible;
}

.email-modal.open .email-modal-block {
    transform: translateY(-50%);
}

@media screen and (max-width: 450px) {
    .footer .footer-phone .email:before {
        top: -4px;
        left: -21% !important;
    }
}

@media screen and (max-width: 500px) {
    .email-modal-block {
        height: 100%;
        border-radius: 0;
    }
}

@media screen and (max-width: 1250px) and (max-height: 620px) {
    .main-screen-content {
        flex-direction: row;
    }

    .header .burger,
    .main-screen-description-mobile {
        display: none;
    }

    .header .list-desktop {
        display: flex;
    }

    .main-screen-content .main-screen-item:first-child .text {
        display: block;
    }

    .main-screen-item .title {
        width: 388px;
        padding: 0;
        font-size: 50px;
    }

    .main-screen-content .main-screen-item {
        text-align: left;
    }

    .main-screen-item .description {
        font-size: 18px;
    }

    .main-screen-item .big-text {
        font-size: 28px;
    }

    .main-screen-item .text {
        font-size: 18px;
    }

    .main-screen-item .hearth {
        top: -20px;
        right: 0;
        left: 67px;
        height: 398px;
    }

    .main-screen-item .package {
        top: 219px;
        right: 78px;
        height: 162px;
    }

    .dynamic-item.two-hearth {
        left: 47%;
        width: 115px;
        height: 100px;
    }

    .main-screen .dynamic-item.big-hearth {
        left: -27px;
        top: 309px;
        z-index: -1;
        width: 90px;
    }

    .main-screen .dynamic-item.bagel {
        right: -9px;
        top: 240px;
        z-index: -1;
        width: 115px;
    }

    .main-screen-content {
        align-items: flex-start;
    }

    .main-screen-content .main-screen-item:first-child {
        margin-bottom: 0;
    }

    .main-screen .flower, .main-screen .flower-1, .main-screen .flower-2 {
        display: block;
    }

    .dynamic-item.flower {
        bottom: 120px;
        right: 491px;
    }

    .dynamic-item.flower-1 {
        bottom: 110px;
        right: 465px;
    }

    .dynamic-item.flower-2 {
        display: block;
        bottom: 100px;
        right: 505px;
    }
}

.footer-logo,
.header a img {
    max-width: 232px;
    max-height: 124px;
}

.footer-logo {
    width: 100%;
    height: 100px;
}

.list-steps-video-modal {
    margin-bottom: 20px;
}

.footer .custom-logo-link img {
    width: 187px;
    height: 100px;
}

.not-border {
    border: none;
}

.link-mobile {
    display: none;
}

.link-mobile,
.link-file {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-decoration-line: underline;
    color: #661B00;
}

@media screen and (max-width: 1300px) {
    .link-mobile {
        display: block;
        text-align: center;
    }

    .link-file {
        display: none;
    }
}

@media screen and (max-width: 1600px) {
    .main-screen-item .package {
        top: 285px;
        right: -54px;
        height: 211px;
    }

    .main-screen-item .hearth {
        bottom: 10px;
        right: -20px;
        height: 520px;
        z-index: -1;
    }
}

.grid {
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, var(--orange-2) 1px, transparent 1px),
    linear-gradient(to bottom, var(--orange-2) 1px, transparent 1px);
    background-size: 40px 40px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.articles-item-text {
    position: relative;
    z-index: 1;
    color: var(--brown);
}

.articles-item-text img {
    display: block;
    max-width: 580px;
    width: 100%;
    margin: 0 auto 30px;
}

.articles-item-text h2 {
    text-align: center;
}

.articles-item-block {
    margin-bottom: 50px;
}

.modal-success {
    position: fixed;
    display: none;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
    right: auto;
    margin: 0 auto;
    padding: 40px;
    border-radius: 40px;
    max-width: 692px;
    z-index: 2;
    flex-direction: column;
    background: white;
}

.modal-success h2 {
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #E2211C;
    margin-bottom: 20px;
}

.modal-success p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #661B00;
    margin-bottom: 60px;
}

.modal-success .button-red {
    position: unset !important;
    width: 100%;
    height: 60px;
    font-family: 'Tavolga', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

@media screen and (max-width: 500px) {
    .modal-success {
        max-width: 280px;
    }

    .modal-success h2 {
        font-size: 32px;
        line-height: 32px;
        max-width: 197px;
    }

    .modal-success p {
        margin-bottom: 40px;
        font-size: 16px;
        line-height: 22px;
    }

    .modal-success .button-red {
        font-size: 16px;
        line-height: 16px;
    }
}

.contest-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    z-index: 100;
    padding: 40px;
}

.contest-modal-content {
    position: relative;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.contest-modal-content img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: 100%;
}

.contest-modal-content a {
    height: 100%;
    display: block;
}

.close-modal-contest {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 101;
}

.contest-button {
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    left: 5%;
    max-width: 440px;
    max-height: 69px;
    width: 100%;
    cursor: pointer;
    height: 100%;
    background: transparent;
    border: none;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 60px;
}

.footer-menu-social,
.header-menu-social {
    display: flex;
    gap: 10px;
}

.footer-menu-social {
    justify-content: center;
}

.footer-menu-social a img,
.header-menu-social a img {
    width: 40px;
    height: 100%;
}

.storage-info {
    display: flex;
    flex-direction: column;
}

.info-item {
    display: flex;
    justify-content: space-between;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #661B00;
}

.dots {
    position: relative;
    bottom: -20px;

    flex: 1;
    margin: 0 5px;
    height: 0;
    border-bottom: 1px dotted #661B00;;
}

.value {
    text-align: right;
}

.modal-video-link {
    display: block;
    position: absolute;
    bottom: 28px;
    right: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #FFDFBC;
    text-decoration: none;
    z-index: 2;
}

.recipes-item-characteristics {
    margin-top: 10px;
}

.recipes-item-characteristics-stars,
.recipes-item-characteristics {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.recipes-item-characteristics-stars img {
    width: 24px !important;
    height: 24px !important;
    margin-bottom: 0 !important;
}

/*.recipes-page-info-item .recipes-item-characteristics {*/
/*    flex-direction: row-reverse;*/
/*}*/

.recipes-page-info-item .recipes-item-characteristics-stars,
.recipes-page-info-item .like-count,
.recipes-page-info-item .recipes-item-characteristics-time {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
}

.recipes-page-info-item .like-icon {
    width: 24px !important;
    height: 24px !important;
}

.recipes-page-info-item .recipes-item-characteristics-time svg {
    width: 28px !important;
    height: 28px !important;
}

.recipes-page-info-item .recipes-item-characteristics-stars img {
    width: 32px !important;
    height: 32px !important;
}

.recipes-item-characteristics-stars img.filled {
    stroke: #ffc27e;
}

.recipes-item-characteristics-stars,
.recipes-item-characteristics-time {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #661B00;
}

.recipes-item-characteristics-stars {
    transform: translateX(-6px);

    @media screen and (max-width: 400px){
        transform: translateX(0);
    }
}

.recipe-like-button {
    display: flex;
    align-items: center;
    gap: 2px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.like-count {
    font-size: 14px;
    color: #661B00;
    font-weight: 400;
    transition: opacity 0.3s ease;
    padding-left: 0 !important;
}

.like-button {
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    width: 24px;
    height: 24px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

svg.heart-svg {
    width: 24px;
    height: 24px;
    fill: white;
    stroke: #999;
    stroke-width: 2;
    transition: fill 0.3s ease, stroke 0.3s ease;
    transform-origin: center center;
    user-select: none;
}

.heart-path {
    pointer-events: none;
}

#var1.liked svg.heart-svg {
    fill: #FFC079;
    stroke: #FFC079;
    animation: pop-glow 0.5s ease forwards;
    filter: drop-shadow(0 0 8px #FFC079);
}

@keyframes pop-glow {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
    }
}

@media screen and (max-width: 1200px) {
    .header-menu-social {
        display: none;
    }
}

@media screen and (max-width: 950px) {
    .contest-button {
        max-width: 355px;
    }

    .info-item {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .contest-button {
        max-width: 275px;
    }
}

@media screen and (max-width: 620px) {
    .contest-button {
        top: 53%;
        max-width: 243px;
        max-height: 28px;
    }
    .info-item {
        font-size: 13px;
    }
    .info-item .dots {
        bottom: -13px;
    }
}

@media screen and (max-width: 550px) {
    .contest-modal {
        padding: 10px;
    }

    .contest-button {
        max-width: 166px;
    }
}

.other-recipes .recipes-content-images-item {
    align-items: normal;
}

.modal-video-content .description .recipes-item-characteristics-time {
    padding-left: 0 !important;
}

.modal-video-content .description .recipes-item-characteristics {
    margin-bottom: 10px;
}

.recipes-item-characteristics:has(> button:only-child) {
    justify-content: flex-end;
}

.recipes-page-item .recipes-item-characteristics {
    justify-content: space-between !important;
}

.video-content .recipe-description p {
    margin-bottom: 30px;
}

.video-content .recipe-description p:last-child {
    margin-bottom: 0;
}

.video-content .recipes-page-info {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 0;
}

.video-content .recipes-page-info-list {
    height: 100%;
}

.video-content .recipes-content-video-item.vertical {
    width: 450px;
    height: 800px;
    max-width: 450px;
    max-height: 800px;
    margin-bottom: 20px;
}

.recipes-item-characteristics.vertical {
    max-width: 450px;
    margin: 0 auto;
}

.video-content .recipes-content-video-item.vertical .video video {
    height: 800px;
}

.video-content .recipes-content-video-item.horizontal {
    max-width: 100%;
    width: 100%;
    height: 724px;
    max-height: 724px;
    margin: 0 auto;
}

.video-content .recipes-content-video-item.horizontal .video video {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 720px;
}

.modal-video.horizontal .modal-video-block,
.modal-video.horizontal .modal-video-content,
.recipes-item-characteristics.horizontal {
    max-width: 100%;
}

@media screen and (max-width: 500px) {
    .video-content .recipes-content-video-item.vertical {
        max-width: 100%;
    }
}

.ingredients-container {
    display: flex;
    justify-content: space-between;
}

.list-steps p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #661B00;
    margin-bottom: 12px;
    text-transform: unset;
}

.recipes-page-info-list-title,
.ingredients-container strong {
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 24px !important;
    line-height: 100% !important;
    text-transform: uppercase !important;
    color: #661B00 !important;
    margin-bottom: 12px;
}

.recipes-page-info-list-title {
    margin-bottom: 0 !important;
}

.ingredients-column {
    width: 45%;
}

.content-column {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .ingredients-container {
        flex-direction: column;
    }

    .ingredients-column,
    .content-column {
        width: 100%;
    }
}

.video-content .recipes-content-video-item .video video {
    height: 100%;
}

.recipes-page-info-item .recipes-item-characteristics {
    justify-content: space-between !important;
}

.recipes-item-characteristics.flex-end {
    justify-content: flex-end !important;
}

@media screen and (max-width: 550px) {
    .vk-logo-mobile {
        display: none;
    }

    .footer-content {
        align-items: center;
    }

    .footer-contacts {
        flex-direction: column;
        text-align: center;
    }
    .footer-contacts a {
        text-align: center;

    }

    .footer .footer-phone .email:before {
        left: 11%;
    }

    .footer .footer-phone {
        padding-left: 0;
    }

    .footer .footer-phone .email,
    .footer p {
        text-align: center;
    }

    .footer .footer-phone .tel:before {
        top: -9px;
    }

    .footer .footer-phone .email {
        text-align: center !important;
        display: inline-block;
        padding-left: 18px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 450px) {
    .footer .footer-phone .email:before {
        left: -16% !important;
    }
}

@media screen and (max-width: 1370px) and (max-height: 769px) {
    .modal-video-block {
        display: flex;
        justify-content: center;
    }

    .modal-video-content {
        max-width: 392px;
    }

    .modal-video-content video {
        object-fit: fill;
    }
}

@media screen and (max-width: 900px) and (max-height: 769px) {
    .modal-video-content {
        max-width: 345px;
    }
}

.recipes-page-info-item.recipes-page-info-video {
    flex-direction: row;
    gap: 100px;
}
.recipes-page-info-item .recipes-item-characteristics-stars {
    transform: translateX(-6px);
}

.video-content .recipes-content-video-item.horizontal .video video {
    height: 100%;
}

.video-content .recipes-content-video-item.horizontal {
    max-height: 400px;
    max-width: 730px;
    width: 100%;
}
.video-content .recipes-page-video-info.horizontal{
    flex-basis: 70%;
}

@media screen and (max-width: 900px) {
    .recipes-page-info-item.recipes-page-info-video {
        flex-direction: column;
        gap: 30px;
    }

    .video-content .recipes-content-video-item.vertical {
        margin: 0 auto 20px;
        height: max-content;
    }
}

@media screen and (max-width: 695px) {
    .video-content .recipes-content-video-item.horizontal {
height: max-content;
    }
}
