

/* Start:/local/resources/blanks/production-meat-en/style.css?177015626513224*/
.header.is_scrolled {
    color: #fff;
    --logo-color: #fff;
    --bg-color: transparent;
    --hover-color: var(--accent-color);
    background-color: #1E1E1E;
    .header--menu {
        color: #FFF;
        border-color: rgba(255, 255, 255, 0.12);
    }
    .nav--item:not(.is_accent) a {
        background-color: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(12px);
        color: #fff;
    }
}
body {
    background-color: #1E1E1E;
    --g-vertical-l: 120px
}

.meat-title {
    position: relative;
    &:after {
        content: '';
        display: block;
        bottom: 0;
        position: absolute;
        left: 0;
        height: 40vh;
        width: 100vw;
        z-index: 3;
        pointer-events: none;
        background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        @media(min-width: 1024px) {
            background: linear-gradient(0deg, #1E1E1E 0%, rgba(30, 30, 30, 0.991353) 6.67%, rgba(30, 30, 30, 0.96449) 13.33%, rgba(30, 30, 30, 0.91834) 20%, rgba(30, 30, 30, 0.852589) 26.67%, rgba(30, 30, 30, 0.768225) 33.33%, rgba(30, 30, 30, 0.668116) 40%, rgba(30, 30, 30, 0.557309) 46.67%, rgba(30, 30, 30, 0.442691) 53.33%, rgba(30, 30, 30, 0.331884) 60%, rgba(30, 30, 30, 0.231775) 66.67%, rgba(30, 30, 30, 0.147411) 73.33%, rgba(30, 30, 30, 0.0816599) 80%, rgba(30, 30, 30, 0.03551) 86.67%, rgba(30, 30, 30, 0.0086472) 93.33%, rgba(30, 30, 30, 0) 100%);
        }
    }
    @media(max-width: 1024px) {
        &:before {
            content: '';
            display: block;
            height: 100%;
            position: absolute;
            z-index: 2;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
        }
    }
    .f-h1 {
        font-size: clamp(40px, calc(40px + (112 - 40) * ((100vw - 768px) / (1920 - 768))), 112px);
        text-align: center;
        line-height: 1.2;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        background-image: linear-gradient(180deg, #FFFFFF 25.48%, rgba(255, 255, 255, 0.2) 100%);
    }
    &.block {
        padding: 0;
    }
    .block--wrapper {
        padding: 0;
        position: relative;
        aspect-ratio: 1 / 1.3;
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        @media(min-width: 1024px) {
            aspect-ratio: 1920 / 1371;
        }
    }
    .meat-title--content {
        max-height: 100vh;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .block--head {
        padding: calc(var(--headerHeight, 70px) + var(--breadcrumbsHeight, 28px)) 0 var(--g-vertical-xl);
        z-index: 2;
        position: relative;
        @media(min-width: 1450px) {
            padding: calc(var(--headerHeight, 104px) + var(--breadcrumbsHeight) + var(--g-vertical)) 0 var(--g-vertical-xl);
        }
    }
    .meat-title--bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        z-index: 1;
    }
    .meat-title--img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        z-index: 3;
    }
    .meat-title--logo {
        width: 30vw;
        height: 30vw;
        position: relative;
        z-index: 4;
        flex-shrink: 0;
        flex-grow: 0;
        @media(min-width: 992px) {
            width: 13.5vw;
            height: 13.5vw;
        }
    }
    .meat-title--logo-rotate {
        aspect-ratio: 1 / 1;
        width: 100%;
        object-fit: contain;
        object-position: center;
        animation: rotate_circle 12s linear infinite;
        z-index: 4;
    }
    .meat-title--logo-icon {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }
    .meat-title--logo_wrapper {
        flex-grow: 1;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    [data-flex_container] {
        flex-grow: 1;
        /*outline: 2px solid green;*/
        width: 100px;
        z-index: 10;
    }
}

@keyframes rotate_circle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.meat-gallery {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    gap: 8px;
    img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        object-position: center;
        @media(min-width: 1024px) {
            aspect-ratio: 630 / 416;
        }
    }
}

.meat-title--line {
    position: absolute;
    /*bottom: 0;*/
    /*outline: 2px solid red;*/
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    width: calc(64px * 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    .meat-title--line_line {
        width: 1px;
        background-color: #fff;
        flex-grow: 1;
        height: 100%;
    }
    .meat-title--line_knifes {
        padding-top: 18px;
        display: flex;
        align-items: center;
        padding-left: calc(100% - 64px);
        [data-title_knife="2"],
        [data-title_knife="3"] {
            opacity: 0;
        }
    }
}

.meat-2 {
    padding: 0;
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    &:after {
        content: '';
        display: block;
        height: 20%;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 5;
        background: linear-gradient(0deg, #1E1E1E 0%, rgba(30, 30, 30, 0.991353) 6.67%, rgba(30, 30, 30, 0.96449) 13.33%, rgba(30, 30, 30, 0.91834) 20%, rgba(30, 30, 30, 0.852589) 26.67%, rgba(30, 30, 30, 0.768225) 33.33%, rgba(30, 30, 30, 0.668116) 40%, rgba(30, 30, 30, 0.557309) 46.67%, rgba(30, 30, 30, 0.442691) 53.33%, rgba(30, 30, 30, 0.331884) 60%, rgba(30, 30, 30, 0.231775) 66.67%, rgba(30, 30, 30, 0.147411) 73.33%, rgba(30, 30, 30, 0.0816599) 80%, rgba(30, 30, 30, 0.03551) 86.67%, rgba(30, 30, 30, 0.0086472) 93.33%, rgba(30, 30, 30, 0) 100%);
    }
    &:before {
        content: '';
        display: block;
        height: 20%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 5;
        background: linear-gradient(180deg, #1E1E1E 0%, rgba(30, 30, 30, 0.991353) 6.67%, rgba(30, 30, 30, 0.96449) 13.33%, rgba(30, 30, 30, 0.91834) 20%, rgba(30, 30, 30, 0.852589) 26.67%, rgba(30, 30, 30, 0.768225) 33.33%, rgba(30, 30, 30, 0.668116) 40%, rgba(30, 30, 30, 0.557309) 46.67%, rgba(30, 30, 30, 0.442691) 53.33%, rgba(30, 30, 30, 0.331884) 60%, rgba(30, 30, 30, 0.231775) 66.67%, rgba(30, 30, 30, 0.147411) 73.33%, rgba(30, 30, 30, 0.0816599) 80%, rgba(30, 30, 30, 0.03551) 86.67%, rgba(30, 30, 30, 0.0086472) 93.33%, rgba(30, 30, 30, 0) 100%);
    }

    .meat-2--item {
        width: 100vw;
        height: 100vh;
        flex-shrink: 0;
        flex-grow: 0;
        display: grid;
        place-items: center;
        padding-top: var(--headerHeight, 104px);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            position: absolute;
            z-index: 1;
            top: 0;
            left: 0;
            opacity: 0;
            &[data-meat_2_video="1"] {
                opacity: 1;
            }
        }
        .meat-2--item_text_wrapper {
            max-width: 920px;
            position: relative;
            z-index: 2;
            mask-image: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 25%, #000000 50%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0) 100%);;
            mask-size: 100% 100%;
            mask-position: top right;
            height: 40vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;

        }
        .meat-2--item_text {
            max-width: 560px;
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            left: 50%;
            width: 100%;
            height: fit-content;
            z-index: 2;
            @media (max-width: 1024px) {
                max-width: calc(100vw - 40px * 2);
            }
        }
        p {
            color: #fff;
            text-shadow: 0 2px 52px 0 #00000040;
            font-size: var(--fs-24);
            font-weight: 500;
            text-align: center;

        }
    }
}

.meat-3 {
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    @media(max-width: 992px) {
        padding-top: 32px;
    }
    .meat-3--item {
        width: 100vw;
        height: 100vh;
        padding: var(--headerHeight, 104px) 16px ;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        mask-position: top center;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        position: absolute;
        top: 0;
        left: 0;
        gap: 32px;
        @media(max-width: 992px) {
            flex-direction: column;
            justify-content: space-between;
            padding: calc(var(--headerHeight, 104px) + 24px) 16px  32px;
        }
        &:nth-child(1) {
            z-index: 10;
        }
        &:nth-child(2) {
            z-index: 9;
        }
        &:nth-child(3) {
            z-index: 8;
        }
        &:after {
            content: '';
            display: block;
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background: #1E1E1E4D;
            backdrop-filter: blur(2px);
            z-index: 2;
        }
    }
    .meat-3--item_bg {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
        img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;

        }
    }
    .meat-3--item_content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        max-width: 585px;
        position: relative;
        z-index: 3;
        h3 {
            font-weight: 500;
            text-transform: uppercase;
            font-size: clamp(18px, calc(18px + (32 - 18) * ((100vw - 768px) / (1920 - 768))), 32px);
            margin-bottom: 16px;
        }
        p {
            font-size: clamp(14px, calc(14px + (18 - 14) * ((100vw - 768px) / (1920 - 768))), 18px);
            opacity: 0.8;
            line-height: 1.5;
            margin-bottom: 32px;
            @media(min-width: 992px) {
                height: 226px;
            }
        }
        .button {
            .button-filled-primary;
            --button-bg-color: rgba(255, 255, 255, 1);
            --button-border-color: transparent;
            --button-color: #121212;
            &:hover,
            &:focus {
                --button-bg-color: rgba(255, 255, 255, 1);
                --button-border-color: transparent;
                --button-color: #121212;
            }
        }
    }
    .meat-3--item_images {
        border: 1px solid #FFFFFF1F;
        background-color: #0000004D;
        backdrop-filter: blur(40px);
        display: grid;
        place-items: center;
        place-content: center;
        max-width: 588px;
        z-index: 3;
        height: fit-content;
        max-height: 40vh;
        width: 100%;
        .meat-3--item_images_item {
            padding: 8px;
            display: flex;
            align-items: flex-start;
            overflow: hidden;
            height: 100%;
            width: 100%;
            &:nth-child(2) {
                border-right:  1px solid #FFFFFF1F;
            }
        }
        .meat-3--item_images_item:first-child {
            grid-column: 1 / span 2;
            border-bottom: 1px solid #FFFFFF1F;
            img {
                object-fit: cover;
                object-position: center;
            }
        }
        img {
            object-position: center;
            object-fit: contain;
        }
    }
}
/* End */
/* /local/resources/blanks/production-meat-en/style.css?177015626513224 */
