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

@font-face {
    font-family: 'FixelDisplayBlack';
    src: url('../fonts/FixelDisplayBlack.woff2') format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FixelDisplayExtraBold';
    src: url('../fonts/FixelDisplayExtraBold.woff2') format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FixelDisplayMedium';
    src: url('../fonts/FixelDisplayMedium.woff2') format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'LuganskyV';
    src: url('../fonts/LuganskyV.woff2') format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'Arsenal';
    src: url('../fonts/Arsenal-Regular.woff2')  format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-body-color: #faf5e6;
    --second-bg-color: #F5CF62;
    --color-black: #000000;
    --color-green: #76881D;
    --color-link-svg: #63721C;
    --header-height: 112px;
    --color-white: #fff;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.no-scroll {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: var(--color-black);
}

a:focus,
a:active {
    outline: none;
}

p {
    margin: 0;
}

hr {
    margin: 0;
    opacity: 1;
}

body {
    background-color: var(--bg-body-color);
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    overflow-x: hidden;
}

.h1, .h2, .h2-b, .h3, .h3-b, .h4, .h4-m, .h4-b .h5, .h5-b {
    margin: 0;
    line-height: 120%;
}

.h1, .h2, .h2-b {
    font-size: 44px;
}

.h3 {
    font-size: 36px;
}

.h3-b {
    font-size: 32px;
}

.h4, .h4-m, .h4-b {
    font-size: 24px;
}

.h5, .h5-b {
    font-size: 18px;
}

.h1, .h2, .h3, .h4, .h5 {
    font-family: 'FixelDisplayExtraBold', sans-serif;
}

.h4-m {
    font-family: 'FixelDisplayMedium';
}

.h2-b, .h5-b, .h4-b {
    font-family: 'FixelDisplayExtraBold', sans-serif;
}

.h3-b {
    font-family: 'FixelDisplayBlack', sans-serif;
}

.g-6 {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 20px;
}

.g-7 {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 40px;
}

.gx-80 {
    --bs-gutter-x: 5rem;
    --bs-gutter-y: 2.5rem;
}

.custom__container {
    margin: 0;
    padding: 0 40px;
    max-width: 100%;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: none;
}

button {
    border: none;
    background: transparent;
}

@media (min-width: 1680px) {
    .container {
        max-width: 1600px;
    }
} 

@media (max-width: 1440px) {
    .h2 {
        font-size: 36px;
    }
}

@media (max-width: 1199px) {
    .h1, .h2 {
        font-size: 32px;
    }
}

/* Hero Section */
.main-content {
    padding-top: var(--header-height);
}

.hero--slider {
    position: relative;
    height: calc(100vh - var(--header-height));
}

.main-slider__arrows {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12;
}

.hero-section__first,
.hero-section__second,
.hero-section__third {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    height: calc(100vh - var(--header-height));
    z-index: 10;
    }

.hero-section__first {
    background: linear-gradient(to right, #f5cf62 50%, #faf5e6 50%);
}

.hero__banner, .hero__info {
    flex: 1;
}

.hero__info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - var(--header-height));
    background: var(--second-bg-color);
}

.title {
    margin-bottom: 48px;
}

.hero__desc {
    margin-bottom: 48px;
}

.main-btn {
    padding: 16px 75px;
    width: max-content;
    border-radius: 40px;
    border: 1px solid var(--color-black);
    background-color: var(--color-white);
    box-shadow: 3px 3px 0 0 var(--color-black);
    transition: all 0.3s ease-out;
}

.main-btn:hover {
    background-color: var(--second-bg-color);
    box-shadow: 4px 4px 0 0 var(--color-black);
}

.main-btn:active {
    background-color: #DBB750;
}

.hero__banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-body-color);
}

.hero__banner img {
    max-width: clamp(200px, 25vw, 473px);
    height: auto;
    object-fit: cover;
}

@media (max-width: 992px) {
    .main-slider__arrows {
        top: 51.5%;
        transform: translateY(-51.5%);
    }

    .hero-section__first {
        background: none;
    }

    .hero-section__first .container {
        max-width: 100%;
        padding: 0;
    }

    .hero-section__first .row {
        width: 100%;
        margin: 0;
    }

    .hero-section__first .row>* {
        padding: 0;
    }

    .hero-section__first .col-12:first-child {
        order: 2;
    }

    .hero-section__first .col-12:last-child {
        order: 1;
    }

    .hero__banner {
        padding: 34px 0;
        width: 100%;
        height: calc(50vh - (var(--header-height)/2));
    }

    .hero__info {
        padding: 40px 12px 80px;
        width: 100%;
        height: calc(50vh - (var(--header-height)/2));
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .h1.title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .hero__desc {
        margin-bottom: 8px;
    }

    .main-btn {
        margin: 0;
    }
}

@media (max-width: 566px) {
    .main-btn {
        padding: 16px 0;
        width: 100%;
        text-align: center;
    }
}

/* Line Scroll */

.line-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
    display: flex;
    align-items: center;
    min-height: 112px;
    background-color: var(--bg-body-color);
    z-index: 10;
}

.line__wrapper {
    display: flex;
    width: fit-content;
}

.line {
    font-family: "LuganskyV", sans-serif;
    font-size: 32px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    animation: scroll 6s linear infinite;
}

.eat {
    position: relative;
    top: -4px;
}

.pasta {
    position: relative;
    top: -8px;
    margin-left: 7px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: currentColor;
    border-radius: 50%;
    display: inline-block;
    margin: 0 20px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* About us */

.about-us {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 80px 0;
    background-color: var(--bg-body-color);
    z-index: 10;
    height: 100%;
}

.about-us .title {
    margin-bottom: 32px;
}

.about-us__wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.about-us__circle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 50%;
    margin-top: 88px;
    margin-bottom: 20px;
}

.about-us__img {
    padding: 20px;
    width: clamp(225px, 30vw, 484px);
    height: auto;
    border-radius: 50%;
    border: 1px solid var(--color-black);
    z-index: 12;
}

.about-us__dot-list {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.about-us__dot-item .about-us__dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(var(--angle)) translate(var(--circle-radius)) translate(-50%, -50%);
    z-index: 20;
}

.about-us__top-left .about-us__dot {
    --angle: 235deg;
    --circle-radius: calc(564px / 2);
}

.about-us__center-left .about-us__dot {
    --angle: 165deg;
    --circle-radius: calc(534px / 2);
}

.about-us__bottom-left .about-us__dot {
    --angle: 100deg;
    --circle-radius: calc(482px / 2);
}

.about-us__bottom-right .about-us__dot {
    --angle: 25deg;
    --circle-radius: calc(474px / 2);
}

.about-us__center-right .about-us__dot {
    --angle: -55deg;
    --circle-radius: calc(524px / 2);
}

.about-us__dot {
    width: 34px;
    height: 34px;
    background-color: var(--color-black);
    border-radius: 50%;
    border: 10px solid var(--bg-body-color);
    position: relative;
}

.about-us__title {
    margin-bottom: 8px;
}

.about-us__desc {
    line-height: 1;
}

.about-us__items {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.about-us__img-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:
        rotate(var(--angle))
        translate(var(--circle-radius))
        translate(-50%, -50%);
}

.about-us__img-inner {
    transform: rotate(calc(-1 * var(--angle)));
}

.about-us__item.about-us__top-left {
    --angle: 268deg;
    --circle-radius: calc(1000px / 2);
}

.about-us__item.about-us__center-left {
    --angle: 216deg;
    --circle-radius: calc(976px / 2);
}

.about-us__item.about-us__bottom-left {
    --angle: 186deg;
    --circle-radius: calc(758px / 2);
}

.about-us__item.about-us__bottom-right {
    --angle: 102deg;
    --circle-radius: calc(466px / 2);
}

.about-us__item.about-us__center-right {
    --angle: 335deg;
    --circle-radius: calc(630px / 2);
}

.about-us__top-left img {
    width: clamp(116px, 16vw, 282px);
}

.about-us__center-left img {
    width: clamp(95px, 14vw, 214px);
    height: auto;
}

.about-us__bottom-left img {
    width: clamp(98px, 16vw, 234px);
    height: auto;
}

.about-us__bottom-right img {
    width: clamp(90px, 13vw, 197px);
    height: auto;
    transform: scale(-1);
}

.about-us__center-right img {
    width: clamp(77px, 22vw, 334px);
    height: auto;
    transform: scaleX(-1) rotate(10deg);
}

.about-us__text-items {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.about-us__text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:
        rotate(var(--angle))
        translate(var(--circle-radius))
        translate(-50%, -50%);
}

.about-us__text-inner {
    transform: rotate(calc(-1 * var(--angle)));
}

.about-us__text-item.about-us__top-left {
    --angle: 220deg;
    --circle-radius: calc(1228px / 2);
}

.about-us__text-item.about-us__center-left {
    --angle: 175deg;
    --circle-radius: calc(1218px / 2);
}

.about-us__text-item.about-us__bottom-left {
    --angle: 124deg;
    --circle-radius: calc(868px / 2);
}

.about-us__text-item.about-us__bottom-right {
    --angle: 33deg;
    --circle-radius: calc(786px / 2);
}

.about-us__text-item.about-us__center-right {
    --angle: 310deg;
    --circle-radius: calc(880px / 2);
}

.about-us__top-left .about-us__text-block {
    max-width: 236px;
    text-align: right;
}

.about-us__center-left .about-us__text-block {
    max-width: 241px;
    text-align: right;
}

.about-us__bottom-left .about-us__text-block {
    max-width: 264px;
    text-align: center;
}

.about-us__bottom-right .about-us__text-block {
    min-width: 269px;
}

.about-us__center-right .about-us__text-block {
    max-width: 226px;
}

.about-us__text-items-mob {
    display: none;
}

@media (max-width: 1599px) {
    .about-us__circle {
        margin-top: 60px;
    }

    .about-us__bottom-left .about-us__text-block {
        min-width: 264px;
    }

    .about-us__top-left .about-us__dot {
        --circle-radius: calc(35.5vw / 2);
    }

    .about-us__center-left .about-us__dot {
        --circle-radius: calc(33.5vw / 2);
    }

    .about-us__bottom-left .about-us__dot {
        --circle-radius: calc(30vw / 2);
    }

    .about-us__bottom-right .about-us__dot {
        --circle-radius: calc(29vw / 2);
    }

    .about-us__center-right .about-us__dot {
        --circle-radius: calc(33vw / 2);
    }

    .about-us__item.about-us__top-left {
        --circle-radius: calc(58.5vw / 2);
    }

    .about-us__item.about-us__center-left {
        --angle: 214deg;
        --circle-radius: calc(61.5vw / 2);
    }

    .about-us__item.about-us__bottom-left {
        --angle: 190deg;
        --circle-radius: calc(48.5vw / 2);
    }

    .about-us__item.about-us__bottom-right {
        --angle: 108deg;
        --circle-radius: calc(28vw / 2);
    }

    .about-us__item.about-us__center-right {
        --angle: 336deg;
        --circle-radius: calc(40.5vw / 2);
    }

    .about-us__text-item.about-us__top-left {
        --circle-radius: calc(84vw / 2);
    }

    .about-us__text-item.about-us__center-left {
        --angle: 176deg;
        --circle-radius: calc(83vw / 2);
    }

    .about-us__text-item.about-us__bottom-left {
        --angle: 125deg;
        --circle-radius: calc(57.5vw / 2);
    }

    .about-us__text-item.about-us__bottom-right {
        --angle: 35deg;
        --circle-radius: calc(51vw / 2);
    }

    .about-us__text-item.about-us__center-right {
        --circle-radius: calc(59.5vw / 2);
    }
}

@media (max-width: 1439px) {
    .about-us__text-item.about-us__bottom-left {
        --angle: 126deg;
        --circle-radius: calc(58.5vw / 2);
    }

    .about-us__item.about-us__center-right {
        --angle: 333deg;
        --circle-radius: calc(39vw / 2);
    }
}

@media (max-width: 1360px) {
    .about-us__circle {
        margin-top: 36px;
    }

    .about-us__top-left .about-us__text-block {
        min-width: 236px;
    }

    .about-us__center-left .about-us__text-block {
        min-width: 241px;
    }

    .about-us__text-item.about-us__top-left {
        --circle-radius: calc(88vw / 2);
    }

    .about-us__text-item.about-us__center-left {
        --circle-radius: calc(87vw / 2);
    }

    .about-us__text-item.about-us__bottom-left {
        --angle: 127deg;
        --circle-radius: calc(61vw / 2);
    }

    .about-us__text-item.about-us__bottom-right {
        --angle: 36deg;
        --circle-radius: calc(54vw / 2);
    }

    .about-us__text-item.about-us__center-right {
        --circle-radius: calc(61.5vw / 2);
    }

    .about-us__top-left .about-us__dot {
        --circle-radius: calc(36vw / 2);
    }

    .about-us__center-left .about-us__dot {
        --circle-radius: calc(34vw / 2);
    }
}

@media (max-width: 1199px) {
    .about-us__text-item.about-us__top-left {
        --angle: 216deg;
        --circle-radius: calc(102vw / 2);
    }

    .about-us__text-item.about-us__center-left {
        --angle: 175deg;
        --circle-radius: calc(102vw / 2);
    }

    .about-us__text-item.about-us__bottom-left {
        --angle: 132deg;
        --circle-radius: calc(68.5vw / 2);
    }

    .about-us__text-item.about-us__bottom-right {
        --angle: 38deg;
        --circle-radius: calc(60vw / 2);
    }

    .about-us__text-item.about-us__center-right {
        --angle: 312deg;
        --circle-radius: calc(63.5vw / 2);
    }

    .h5-b {
        font-size: 16px;
    }

    .about-us__top-left .about-us__dot {
        --circle-radius: calc(38vw / 2);
    }

    .about-us__center-left .about-us__dot {
        --circle-radius: calc(35vw / 2);
    }

    .about-us__bottom-left .about-us__dot {
        --angle: 104deg;
    }

    .about-us__bottom-right .about-us__dot {
        --angle: 32deg;
        --circle-radius: calc(29vw / 2);
    }

    .about-us__center-right .about-us__dot {
        --angle: -54deg;
        --circle-radius: calc(34vw / 2);
    }

    .about-us__item.about-us__center-right {
        --angle: 340deg;
        --circle-radius: calc(35vw / 2);
    }

    .about-us__item.about-us__center-left {
        --angle: 212deg;
        --circle-radius: calc(59vw / 2);
    }
}

@media (max-width: 999px) {
    .h5-b {
        font-size: 16px;
    } 

    .about-us__img {
        padding: 12px;
    }

    .about-us__top-left .about-us__text-block,
    .about-us__center-left .about-us__text-block,
    .about-us__bottom-left .about-us__text-block,
    .about-us__bottom-right .about-us__text-block,
    .about-us__center-right .about-us__text-block {
        min-width: 250px;
    }

    .about-us__text-item.about-us__top-left {
        --angle: 214deg;
        --circle-radius: calc(112vw / 2);
    }

    .about-us__text-item.about-us__center-left {
        --circle-radius: calc(110vw / 2);
    }

    .about-us__text-item.about-us__bottom-left {
        --angle: 137deg;
        --circle-radius: calc(70vw / 2);
    }

    .about-us__text-item.about-us__bottom-right {
        --angle: 41deg;
        --circle-radius: calc(60vw / 2);
    }

    .about-us__text-item.about-us__center-right {
        --circle-radius: calc(67.5vw / 2);
    }

    .about-us__bottom-right .about-us__dot {
        --angle: 30deg;
    }

    .about-us__top-left .about-us__dot {
        --circle-radius: calc(35.5vw / 2);
    }

    .about-us__center-left .about-us__dot {
        --angle: 160deg;
        --circle-radius: calc(33.5vw / 2);
    }

    .about-us__bottom-left .about-us__dot {
        --angle: 100deg;
    }

    .about-us__center-right .about-us__dot {
        --circle-radius: calc(33vw / 2);
    }

    .about-us__dot {
        width: 22px;
        height: 22px;
        border: 6px solid var(--bg-body-color);
    }
}

@media(max-width: 959px) {
    .about-us {
        padding: 60px 12px 0;
    }

    .about-us__circle {
        margin-top: 12px;
    }

    .about-us .title {
        margin-bottom: 28px;
    }

    .about-us__text-items {
        display: none;
    }

    .about-us__text-items-mob {
        display: block;
        margin-top: 52px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 30px;
        margin-bottom: 40px;
    }

    .about-us__circle {
        margin-bottom: 0;
    }

    .about-us__text-item .about-us__text-block {
        max-width: 220px;
        text-align: center;
    }

    .about-us__text-item.about-us__top-left {
        order: 1;
    }

    .about-us__text-item.about-us__center-left {
        order: 3;
    }

    .about-us__text-item.about-us__bottom-left {
        order: 5;
    }

    .about-us__text-item.about-us__bottom-right {
        order: 4;
    }

    .about-us__text-item.about-us__center-right {
        order: 2;
    }

    .about-us__bottom-left .about-us__dot {
        --angle: 102deg;
    }

}

@media (max-width: 750px) {

    .about-us__text-items-mob {
        gap: 40px 12px;
    }

    .about-us__top-left .about-us__text-block,
    .about-us__center-left .about-us__text-block,
    .about-us__bottom-left .about-us__text-block,
    .about-us__bottom-right .about-us__text-block,
    .about-us__center-right .about-us__text-block {
        max-width: 177px;
        min-width: min-content;
    }

    .about-us__top-left .about-us__dot {
        --circle-radius: calc(275px / 2)
    }

    .about-us__center-left .about-us__dot {
        --circle-radius: calc(256px / 2);
    }

    .about-us__bottom-left .about-us__dot {
        --circle-radius: calc(222px / 2);
    }

    .about-us__bottom-right .about-us__dot {
        --circle-radius: calc(218px / 2);
    }

    .about-us__center-right .about-us__dot {
        --circle-radius: calc(250px / 2);
    }

    .about-us__item.about-us__top-left {
        --circle-radius: calc(428px / 2);
    }

    .about-us__item.about-us__center-left {
        --circle-radius: calc(430px / 2);
    }

    .about-us__item.about-us__bottom-left {
        --angle: 178deg;
        --circle-radius: calc(328px / 2);
    }

    .about-us__item.about-us__bottom-right {
        --angle: 96deg;
        --circle-radius: calc(226px / 2);
    }

    .about-us__item.about-us__center-right {
        --circle-radius: calc(252px / 2);
    }

}

@media (max-width: 389px) {
    .about-us__top-left .about-us__text-block,
    .about-us__center-left .about-us__text-block,
    .about-us__bottom-left .about-us__text-block,
    .about-us__bottom-right .about-us__text-block,
    .about-us__center-right .about-us__text-block {
        max-width: 160px;
        min-width: min-content;
    }
}

/* Product */

.product .swiper-button-next, 
.product .swiper-button-prev {
    color: transparent;
}

.product .swiper-button-next:hover,
.product .swiper-button-prev:hover {
    color: #F5CF62;
}

.product .swiper-button-next:active,
.product .swiper-button-prev:active {
    color: #DBB750;
}

.product {
    position: relative;
    padding: 80px 40px 0 40px;
    background-color: var(--bg-body-color);
    border-top: 1px solid var(--color-black);
    z-index: 10;
}

.product-slider__arrows {
  display: flex;
  gap: 20px;
  align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

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

.product .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: var(--bg-body-color);
    border: 1px solid var(--color-black);
    opacity: 1;
}

.product .swiper-pagination-bullet-active {
    background: var(--second-bg-color);
}

.swiper-slide {
  display: flex;
  height: auto;
}

.product .swiper-wrapper {
    margin-bottom: 60px;
}

.product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    border: 1px solid var(--color-black);
    border-radius: 40px 40px 0 40px;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.product-card__stretched-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 40px 40px 0 40px;
}

.product-card__image {
    position: relative;
    width: 100%;
    border-bottom: 1px solid var(--color-black);
    text-align: center;
    overflow: hidden;
    border-radius: 40px 40px 0 0;
}

.product-card__image img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-out;
}

.product-card__image img:not(:first-child) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__image-hover {
    z-index: 1;
    opacity: 0;
}
 
.product-card:hover .product-card__image-main {
    opacity: 0;
}

.product-card:hover .product-card__image-hover {
    opacity: 1;
}

.product-card__body {
    position: relative;
    flex-grow: 1;
    padding: 20px 28px 28px;
}

.product-card__title {
    margin-bottom: 12px;
}

.product-card__info {
    margin-bottom: 12px;
}

.product-card__weight {
    padding: 4px 12px;
    width: max-content;
    font-size: 14px;
    border: 1px solid var(--color-black);
    border-radius: 40px;
    line-height: 1;
}

.product-card:hover .product-card__detail {
    opacity: 1;
}

.product-card:hover .product-card__desc {
    opacity: 0;
}

.product-card__detail {
    position: absolute;
    bottom: 20px;
    right: 28px;
    left: 28px;
    opacity: 0;
    transition: all .3s ease-out;
    z-index: 6;
}

.product .main-btn {
    position: relative;
   display: block;
   padding: 16px 0;
   margin: 0;
   width: 100%;
   font-size: 14px;
   text-align: center;
}

.btn-green {
    background-color: var(--color-green);
    transition: all .3 ease-in;
}

.btn-blue {
    background-color: #5268C2;
    transition: all .3 ease-in;
}

.btn-pink {
    background-color: #B1556A;
    transition: all .3 ease-in;
}

.btn-brown {
    background-color: #A1561C;
    transition: all .3 ease-in;
}

.btn-green:hover,
.btn-blue:hover,
.btn-pink:hover,
.btn-brown:hover {
    background-color: var(--color-white);
    box-shadow: 4px 4px 0px 0px var(--color-black);
}

.btn-green:active,
.btn-blue:active,
.btn-pink:active,
.btn-brown:active {
    background-color: #f5f5f5;
    box-shadow: 4px 4px 0px 0px var(--color-black);
}

.product-card__desc {
    line-height: 1;
    transition: all .3s ease-out;
}

.swiper-button-next,
.swiper-button-prev {
    color: transparent;
    transition: all .3s ease-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--second-bg-color);
}

.swiper-button-next:hover svg path,
.swiper-button-prev:hover svg path {
    fill: var(--second-bg-color);
}

.swiper-button-next:active,
.swiper-button-prev:active {
    color: #DBB750;
}

.swiper-button-next:active svg path,
.swiper-button-prev:active svg path {
    stroke: var(--color-black);
    fill: #DBB750;
}

.mobile-btn {
    display: none;
}

@media (max-width: 999px) {
    .product {
        padding: 70px 12px 60px;
    }

    .h3-b{
        font-size: 24px;
    }

    .product-card__stretched-link {
        pointer-events: none;
    }

    .product .swiper-pagination-bullet {
        display: none;
    }

    .product .swiper-button-next,
    .product .swiper-button-prev {
        display: none;
    }

    .product__custom-slider {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .product__custom-slider .swiper-wrapper {
        display: contents;
    }

    .product-card {
        width: 100%;
    }

    .product-card__body {
        padding: 12px 12px 20px;
    }

    .product-card__info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
    }

    .product-card__stretched-link {
        pointer-events: auto;
    }

    .mobile-btn {
        position: relative;
        display: block;
        z-index: 3;
    }

    .mobile-btn svg {
        width: 32px;
        height: 32px;
    }

    .btn-arrow-green {
        color: var(--color-green);
    }

    .btn-arrow-brown {
        color: #A1561C;
    }

    .btn-arrow-pink {
        color: #B1556A;
    }

    .btn-arrow-blue {
        color: #5268C2;
    }

    .product-card__desc {
        display: none;
    }

    .product-card__detail {
        display: none;
    }
}

@media (max-width: 766px) {
    .product__custom-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Stages */

.stages {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background-color: var(--bg-body-color);
    z-index: 10;
}

.stages__waves-wrapper {
    display: flex;
    width: 100%;
    overflow: visible;
}

#textOnPath {
  fill: black;
  white-space: nowrap;
  font-size: 44px;
}

.stages svg{
    width: auto;
    overflow: visible;
}

.stages-wrapper {
    padding: 100px 0 80px;
    border-bottom: 1px solid var(--color-black);
}

.stage-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 228px;
}

.stage-card__img-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--second-bg-color);
}

.stage-card__img-wrapper img,
.stage-card__img-wrapper svg {
    width: 166px;
    height: 166px;
}

.stage-card__text-wrapper {
    text-align: center;
}

.stage-card__title {
    margin-bottom: 20px;
}

.stage-card__text-wrapper span {
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 1921px) {
    .stages__waves-wrapper {
        height: calc(30vh - 100px);
    }
}

@media (max-width: 1199px) {
    .stages {
        padding: 60px 0;
    }

    .h2 {
        font-size: 32px;
    }

    #textOnPath {
        font-size: 80px;
    }

    .stages-wrapper {
        padding-top: 60px;
    }
}

@media (max-width: 760px) {
    .g-7 {
        --bs-gutter-y: 60px;
    }
}

@media (max-width: 564px) {
    #textOnPath {
        font-size: 120px;
    }
}

/* News & Shares */

.news {
    position: relative;
    display: flex;
    padding: 80px 0 40px 40px;
    background-color: var(--second-bg-color);
    z-index: 10;
}

.news__wrapper {
    display: flex;
    width: 100%;
}

.news__title-wrapper {
    width: 35%;
}

.news__title {
    margin-bottom: 28px;
}

.news .swiper-wrapper {
    display: flex;
    align-items: stretch;
    margin-bottom: 60px;
}

.news__swiper-wrapper {
    width: 65%;
}

.news-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 1px solid var(--color-black);
    border-radius: 40px 40px 0 40px;
    overflow: hidden;
    cursor: pointer;
}

.news-card__stretched-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 40px 40px 0 40px;
}

.news-card__head {
    border-bottom: 1px solid var(--color-black);
}

.news-card__img {
    width: 100%;
    height: clamp(177px, 25vw, 325px);
    object-fit: cover;
    border-radius: 40px 40px 0 0;
}

.news-card__body {
    display: flex;
    flex-direction: column; 
    height: 100%;
    padding: 20px 28px;
    color: #fff;
}

.news-card__date {
    font-size: 12px;
    margin-bottom: 12px;
}

.news-card__title {
    margin-bottom: 12px;
}

.news-card__desc {
    margin-bottom: 20px;
}

.bg-pink {
    background-color: #B1556A;
    border-radius: 0 0 0 40px;
}

.bg-green {
    background-color: var(--color-green);
    border-radius: 0 0 0 40px;
}

.bg-blue {
    background-color: #5268C2;
    border-radius: 0 0 0 40px;
}

.news .main-btn,
.form-section__fields .main-btn {
    padding: 16px 0;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
    margin-top: auto;
    color: var(--color-black);
}

.news .main-btn {
    position: relative;
    padding: 16px 0;
    font-size: 14px;
    z-index: 3;
}

.news .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: transparent;
    border: 1px solid var(--color-black);
    opacity: 1;
}

.news .product-slider__arrows {
    display: flex;
    justify-content: center;
}

.news .swiper-button-next:hover,
.news .swiper-button-prev:hover {
    color: var(--color-white);
}

.news .swiper-button-next:hover svg path,
.news .swiper-button-prev:hover svg path {
    stroke: var(--color-black);
    fill: var(--color-white);
}

.news .swiper-button-next:active,
.news .swiper-button-prev:active {
    color: #DBB750;
}

.news .swiper-button-next:active svg path,
.news .swiper-button-prev:active svg path {
    stroke: var(--color-black);
    fill: #DBB750;
}

@media (max-width: 1199px) {
    .news {
        padding: 60px 12px;
    }

    .news__wrapper {
        flex-direction: column;
    }

    .news__title-wrapper {
        width: 100%;
    }

    .news__title {
        margin-bottom: 20px;
    }

    .news__title-wrapper p {
        margin-bottom: 40px;
    }

    .news__swiper-wrapper {
        width: 100%;
    }

    .news-card__body {
        padding: 12px 12px 20px;
    }

    .news-card__body .h4-b {
        font-size: 16px;
    }

    .news-card__desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        max-height: none;
    }

    .news .swiper-wrapper {
        margin-bottom: 40px;
    }

    .news .swiper-slide {
        display: unset;
    }
}

/* About */

.about-manufacturer {
    position: block;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 120px 0;
    z-index: 1;
}

.about-manufacturer__head {
    text-align: center;
    max-width: 670px;
    width: 100%;
    margin: 0 auto 30px;
    position: relative;
    z-index: 100;
    background-color: var(--bg-body-color);
}

.about-manufacturer__desc {
    margin-top: 20px;
}

.underline {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    transition: all .3s ease-out;
}

.about-manufactured__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-manufactured__scroll {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 80px);
    width: 100%;
    margin: 0 auto;
    gap: 16px;
    scroll-behavior: smooth;
}

.about-manufactured__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.about-manufactured__logo img {
    width: clamp(257px, 65vw, 1040px);
    height: auto;
    opacity: 8%;
}

.line-vertical {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: var(--color-black);
    transform: translateX(-50%);
    z-index: 1;
}

.about-manufactured__item {
    position: relative;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    transition: transform 0.6s ease-out, opacity 0.3s ease-out;
}

.about-manufactured__item:nth-child(odd) {
    justify-content: flex-end;
}

.about-manufactured__item:nth-child(even) {
    text-align: right;
}

.about-manufactured__card {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.about-manufactured__card-info {
    position: relative;
    top: 20%;
}

.about-manufactured__card-info .h4 {
    margin-bottom: 12px;
}

.about-manufactured__title-margin {
    margin-top: 12px;
}

.about-manufactured__card img {
    width: 100%;
    border-radius: 40px 40px 0 40px;
    position: absolute;
    top: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    transition: all 0.3s ease-out;
}

.about-manufactured__item:nth-child(odd) .about-manufactured__card img {
    right: 0;
    left: auto;
}

.about-manufactured__item:nth-child(even) .about-manufactured__card img {
    left: 0;
    right: auto;
}

@media (max-width: 760px) {
    .about-manufactured__card img {
        top: -272px;
    }
    .about-manufactured__card-info {
        z-index: 10;
        background-color: var(--bg-body-color);
    }
}

@media (max-width: 499px) {
    .about-manufactured__card img {
        top: -208px;
    }
}

@media (min-width: 1430px) {
    .about-manufactured__card img {
        max-width: 325px;
    }
}

@media (max-width: 1429px) and (min-width: 1300px) {
    .about-manufactured__card img {
        max-width: 300px;
    }
}

@media (max-width: 1299px) and (min-width: 1199px) {
    .about-manufactured__card img {
        max-width: 225px;
    }
}

@media (max-width: 1198px) and (min-width: 1000px) {
    .about-manufactured__card img {
        max-width: 150px;
    }
    .about-manufactured__scroll {
        max-width: calc(100% - 48px);
    }
}

@media (max-width: 999px) {
    .about-manufactured__card img {
        top: -209px;
        max-width: 280px;
    }

    .about-manufactured__item:nth-child(odd) .about-manufactured__card img {
        right: auto;
        left: 0;
    }

    .about-manufactured__item:nth-child(even) .about-manufactured__card img {
        left: auto;
        right: 0;
    }
}

.line__dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--color-black);
    background-color: var(--second-bg-color);
    left: 50%;
    top: 40%;
    transform: translateX(-50%);
    z-index: 10;
    transition: all 0.3s ease-out;
}

.about-manufactured__card img,
.about-manufactured__card-info,
.line__dot {
    will-change: transform, opacity;
}

@media (max-width: 760px) {
    .about-manufacturer {
        padding: 60px 12px;
    }

    .line-vertical {
        left: 0;
    }

    .about-manufactured__scroll {
        margin: 0;
        align-items: flex-start;
        max-width: calc(100% - 48px);
    }

    .about-manufactured__card {
        width: 100%;
    }

    .about-manufactured__item:nth-child(even),
    .about-manufactured__item:nth-child(odd) {
        justify-content: flex-start;
        text-align: left;
        padding-left: 20px;
    }

    .line__dot {
        left: 0;
    }

    .about-manufactured__card-info {
        top: 0;
    }

    .about-manufactured__card img {
        border-radius: 16px 16px 16px 0;
    }

    .about-manufacturer__head {
        margin: 0 auto 10px !important;
    }

    .about-manufactured__item:nth-child(odd) .about-manufactured__card img {
        right: auto;
        left: 0;
    }

    .about-manufactured__item:nth-child(even) .about-manufactured__card img {
        left: 0;
        right: auto;
    }
}

/* Form */

.form-section__wrapper {
   display: flex;
   padding-top: var(--header-height);
   width: 100%;
   height: 100%;
}

.form-section__banner {
    width: 50%;
}

.form-section__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-section__fields {
    padding: 60px 100px;
    width: 50%;
    background-color: var(--color-green);
    color: var(--color-white)
}

.form-section__title {
    margin-bottom: 14px;
}

.form-section__desc {
    margin-bottom: 40px;
}

.form-section__fields form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section__fields input,
.form-section__fields textarea {
    padding: 16px 32px;
    border: 1px solid var(--color-white);
    border-radius: 40px;
    background: transparent;
    color: var(--color-white);
}

.form-section__fields input,
.form-section__fields textarea,
.file-label-text {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
}

.form-section__fields input:not([type="checkbox"]):focus,
.form-section__fields textarea:focus {
    color: var(--color-white);
    background-color: var(--color-green);
    border: 1px solid var(--color-black);
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
}

.form-section__fields input:not([type="checkbox"]):not(:placeholder-shown):not(:focus),
.form-section__fields textarea:not(:placeholder-shown):not(:focus) {
    background-color: var(--color-green);
    border: 1px solid var(--color-black);
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
}

input.form-control.has-error {
    background-color: #E4281F;
    border: 1px solid var(--color-black);
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
}

.form-section__fields textarea {
    border-radius: 20px 20px 0 20px;
}

.form-section__fields input::placeholder,
.form-section__fields textarea::placeholder {
    color: var(--color-white);
}

.form-section__fields input[type="checkbox"], 
.form-section__fields input[type="file"] {
    padding: 0;
}
.form-check {
    display: flex;
    align-items: center;
}

.form-check-input:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.form-check-input:focus {
    border-color: var(--color-white);
}

.form-check-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 12px;
    height: 12px;
    margin-right: 12px;
    border: 1px solid var(--color-white);
    border-radius: 4px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    display: inline-block;
    transition: all .15s ease-out;
}

.form-check-input:focus {
    box-shadow: none;
}

.form-check-input:checked {
    background-color: transparent;
    border-color: var(--color-black) !important;
}

.form-check-input:checked + .form-check-label {
    color: var(--color-black);
}

.form-check-input:checked::after {
    content: "";
    position: absolute;
    top: 0;
    left: 3px;
    width: 4px;
    height: 8px;
    border-right: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
    transform: rotate(45deg);
}

.form-section__fields .form-check label {
    font-size: 12px;
}

.form-check-label {
    transition: all .15s ease-out;
}

.form-item__error-text {
    margin: 0;
    margin-left: 32px;
    margin-top: 4px;
    font-family: 'Arsenal', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: 0;
    color: var(--color-white);
}

.form-section__fields input:-webkit-autofill,
.form-section__fields input:-webkit-autofill:hover,
.form-section__fields input:-webkit-autofill:focus,
.form-section__fields textarea:-webkit-autofill,
.form-section__fields textarea:-webkit-autofill:hover,
.form-section__fields textarea:-webkit-autofill:focus,
.form-section__fields select:-webkit-autofill,
.form-section__fields select:-webkit-autofill:hover,
.form-section__fields select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--color-green) inset, 4px 4px 0 0 rgba(0,0,0,1) !important;
    box-shadow: 0 0 0 1000px var(--color-green) inset, 4px 4px 0 0 rgba(0,0,0,1) !important;
    -webkit-text-fill-color: var(--color-white) !important;
}

.file-upload-container {
    display: flex;
    align-items: center;
}

.delete-button {
    color: red;
}

.form-section__fields .input-file__block span {
    color: var(--color-white);
}

.input-file__block svg {
    color: var(--color-white);
}

label.btn {
    width: max-content;
}

.input-file__block label.btn.active,
.input-file__block label.btn.empty {
    border: none;
    cursor: pointer;
}

.input-file__block label.btn.empty span,
.input-file__block label.btn.empty svg {
    color: var(--color-white);
}

.input-file__block label.btn.active span,
.input-file__block label.btn.active svg {
    color: var(--color-black);
}

.input-file__block label.btn:hover span,
.input-file__block label.btn:hover svg {
    color: var(--color-black);
}

.file-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
}

.file-upload__list-item {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.wpcf7-form-control.wpcf7-validates-as-required.form-control.wpcf7-not-valid {
    background: #E4281F;
    border: 1px solid var(--color-black);
    box-shadow: 4px 4px 0 0 var(--color-black);
}

.wpcf7-not-valid-tip {
    top: 5px;
    right: 20px;
    position: absolute;
    color: white;
    font-size: 11px;
    font-weight: normal;
    display: block;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    display: none;
}

.wpcf7 form.unaccepted .form-check-input,
.form-check.has-error .form-check-input {
    border-color: #F5CF62;
}

.wpcf7 form.unaccepted .form-check-label,
.form-check.has-error .form-check-label {
    color: #F5CF62;
}

@media (max-width: 1678px) {
    .form-section__fields {
        padding: 32px 100px;
        width: 50%;
        background-color: var(--color-green);
        color: var(--color-white)
    }

    .form-section__fields form {
        gap: 12px;
    }

    .form-section__desc {
        margin-bottom: 28px;
    }

    .h4-m {
        font-size: 18px;
    }

    .form-section__fields input,
    .form-section__fields textarea,
    .selected, .options li {
        font-size: 14px;
    }

    .form-section__fields input,
    .form-section__fields textarea {
        padding: 12px 28px;
    }
}

@media (max-width: 1400px) {

    .form-section__wrapper {
        height: 100%;
    }
    
    .form-section__fields {
        padding: 40px 100px;
    }

    .form-section__fields form {
        gap: 10px;
    }

    .form-section__title {
        margin-bottom: 8px;
        font-size: 36px;
    }

    .form-section__desc {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .form-section__fields input,
    .form-section__fields textarea,
    .selected,
    .options li,
    .form-section__fields .input-file__block span {
        font-size: 14px;
    }

    .form-section__fields input,
    .form-section__fields textarea {
        padding: 12px 28px;
    }

    .file-upload__list-item {
        font-size: 12px;
        line-height: 1.5;
        font-weight: 400;
    }
}

@media (max-width: 1199px) {

    .form-section__desc, .form-section__title {
        text-align: center;
    }

    .form-section__fields {
        padding: 60px 12px;
    }
}

@media (max-width: 767px) {
    .form-section__wrapper {
        height: 100%;
    }

    .form-section__desc, .form-section__title {
        text-align: center;
    }

    .form-section__banner {
        display: none;
    }

    .form-section__fields {
        padding: 60px 12px;
        width: 100%;
    }

    .form-section__fields form {
        padding: 0;
    }

    .form-section__title {
        margin-bottom: 12px;
        font-size: 32px;
    }

    .form-section__desc {
        font-size: 16px;
    }

    .form-section__fields input,
    .form-section__fields textarea,
    .selected, .options li,
    .form-section__fields .input-file__block span {
        font-size: 12px;
    }

    .form-section__fields input,
    .form-section__fields textarea {
        padding: 12px 20px;
    }

    .form-section__fields .main-btn {
        color: var(--color-black);
        font-size: 12px;
    }

    .about-manufacturer__desc {
        margin-top: 5px;
    }
}

/* Footer */

.footer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    font-size: 14px;
    line-height: 140%;
}

.footer__logo {
    margin-bottom: 40px;
    min-height: 61px;
}

.footer__logo svg {
    max-width: 210px;
    height: auto;
    object-fit: cover;
}

.footer__line {
    width: 100%;
    border-top: 1px solid var(--color-black);
}

.footer__menu {
    width: 100%;
    padding: 60px 0;
}

.footer__items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__item-text {
    margin-bottom: 8px;
}

.footer__item-link,
.footer__item-link svg {
    color: var(--color-black);
    transition: all .3s ease-out;
}

.footer__item-link:hover svg,
.footer__item-link:hover {
    color: var(--color-green);
}

.footer__item-link img {
    transition: all .3s ease-out;
}

.footer__item-link:hover img {
    opacity: 0.7;
}

.zahid-size img {
    width: 118px;
    height: 24px;
}

.footer__socials {
    display: flex;
    gap: 43px;
}

.footer__social-link svg {
    width: 28px;
    height: 28px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    width: 100%;
}

.footer__bottom a {
    transition: all .3s ease-in-out;
}

.footer__bottom a:hover {
    color: var(--color-green);
}

@media (max-width: 1199px) {
    .footer {
        padding: 60px 12px;
    }

    .footer__btn {
        top: 49px;
        right: 12px;
    }

    .footer__logo {
        margin-bottom: 60px;
    }

    .footer__items {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .footer__item-link img {
        display: block;
        margin: 0 auto;
    }

    .footer__item:nth-child(1) {
        order: 4;
    }

    .footer__item:nth-child(2) {
        order: 5;
    }

    .footer__item:nth-child(3) {
        order: 1;
    }

    .footer__item:nth-child(4) {
        order: 2;
    }

    .footer__socials {
        order: 3;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
    }

    .footer__copyright {
        margin-bottom: 20px;
    }
}

/* Scroll Top Button*/

.scroll-top-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: var(--second-bg-color);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease-out;
}

.scroll-top-button.is-active {
    display: block;
}

.scroll-top-button:hover {
    color: var(--color-green);
} 

.scroll-top-button:active {
    color: var(--color-link-svg);
}

/* Pop-up Products */
.modal-product__content {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 40px 40px 28px 40px;
    background: var(--bg-body-color);
    z-index: 1;
}

.modal-product__close-btn,
.modal-news__close-btn {
    position: absolute;
    top: 40px;
    right: 28px;
}

.product-modal__title {
    margin-bottom: 20px;
}

.product-modal__desc {
    margin-bottom: 28px;
}

.modal-product__content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-product__content .modal-product__custom-slider {
    position: relative;
}

.modal-product__content .product-slider__arrows {
    position: absolute;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 20;
}

.modal-product__content .accordion {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.modal-product__content .accordion-item {
    padding: 20px 32px;
    border-radius: 8px;
    border: 1px solid var(--color-black);
    box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 1);
}

.modal-product__content .accordion-button {
    padding: 0;
    background: transparent;
    border: none;
    color: var(--color-black);
    box-shadow: none;
}

.modal-product__content .accordion-body {
    padding: 1.25rem 1.25rem 0;
}

.modal-product__content .accordion-body ol {
    list-style-type: decimal;
    line-height: 140%;
}

.modal-product__content .swiper-slide img {
    border-radius: 40px 40px 0 40px;
    border: 1px solid var(--color-black);
    flex: 1;
}

.product-tab__weights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 12px;
    border: none;
}

.nav-tabs .nav-link {
    border: 1px solid var(--color-black) !important;
}

.nav-link {
    padding: 16px 32px;
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 1);
    transition: all .3s ease-out;
    color: var(--color-black);
}

.nav-link.active {
    background-color: var(--color-green) !important;
}

.nav-link:hover {
    color: var(--color-black);
    background: var(--color-green) !important;
}

@media (max-width: 766px) {
    .modal-fullscreen .modal-content {
        height: max-content;
    }

    .modal-product__content {
        justify-content: start;
        padding: 60px 12px 20px;
        height: max-content;
    }

    .modal-product__content .custom__container {
        padding: 0;
    }

    .modal-product__close-btn {
        top: 17px;
        right: 17px;
    }

    .product-tab__weights {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .modal-product__content .accordion-item {
        padding: 20px 20px;
    }

    .product-modal__title {
        font-size: 24px;
        margin-bottom: 12px;
    }
}

/* Pop-up form success */
.modal-success {
    background-color: var(--bg-body-color);
    padding: 40px 28px;
    border-radius: 40px 40px 0 40px;
}

.modal-success__title {
    font-size: 32px;
}

.modal-success__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-success__desc {
    max-width: 177px;
    line-height: 140%;
}

/* Pop-up news */
.news-modal__dialog {
    width: 100%;
    max-width: 980px;
    height: auto;
}

.news-modal__content {
    padding: 100px 40px 60px;
    background-color: var(--bg-body-color);
}

.news-modal__info-wrapper {
    display: flex;
    flex-direction: column;
    padding: 32px;
    max-height: 535px;
    border-radius: 40px 40px 0 40px;
    border: 1px solid var(--color-black);
    background-color: var(--color-white);
    box-shadow: 3px 3px 0px 0px var(--color-black);
}

.news-modal__title {
    margin-bottom: 20px;
}

.news-modal__date {
    line-height: 140%;
    margin-bottom: 20px;
}

.news-modal__info {
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 10px;
}

.news-modal__info p {
    line-height: 140%;
    margin-bottom: 22px;
}

.news-modal__info p:last-child {
    margin-bottom: 0;
}

.news-modal__info::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

.news-modal__info::-webkit-scrollbar-track {
    background: #FAF5E6;
    border-radius: 2px;
}

.news-modal__info::-webkit-scrollbar-thumb {
    background-color: var(--second-bg-color);
    border-radius: 2px;
}

.news-modal .col-lg-8 {
    width: 60%;
}

.news-modal .col-lg-4 {
    width: 40%;
}

.news-modal__img-wrapper {
    height: 100%;
}

.news-modal__img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px 40px 0 40px;
    border: 1px solid var(--color-black);
}

@media (max-width: 992px) {
    .news-modal__dialog {
        max-width: 920px;
    }
}

@media (max-width: 959px) {
    .news-modal__dialog {
        max-width: 728px;
    }

    .news-modal__content {
        padding: 60px 20px 30px;
    }

    .modal-news__close-btn {
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 766px) {
    .news-modal__dialog {
        display: flex;
        align-items: stretch;
        margin: 0;
        max-width: 100%;
        width: 100vw;
        height: 100dvh;
        max-height: 100dvh;
    }

    .news-modal .modal-dialog {
        margin: 0;
        align-items: flex-start;
    }

    .news-modal .modal-dialog-centered {
        align-items: stretch;
    }

    .news-modal__content {
        height: 100%;
        max-height: 100%;
        display: flex;
        flex-direction: column;
        padding: 60px 12px 20px;
    }

    .news-modal__content .custom__container {
        padding: 0;
    }

    .news-modal__content .col-12 {
        width: 100%;
    }

    .news-modal__info {
        padding-right: 15px;
    }

    .news-modal__info-wrapper {
        padding: 32px 20px;
    }

    .news-modal__title {
        font-size: 24px;
        margin-bottom: 48px;
    }

    .news-modal__content .col-12:first-child {
        order: 2;
    }

    .news-modal__content .col-12:last-child {
        order: 1;
    }

    .news-modal__img-wrapper img {
        max-height: 220px;
    }

    .news-modal__info-wrapper {
        flex: 1 1 auto;
        max-height: calc(100dvh - 320px);
        min-height: 0;
        height: auto;
    }

    .news-modal__info {
        overflow-y: auto;
        flex: 1 1 auto;
        min-height: 0;
        padding-right: 15px;
    }
}

/* Banner 2 */

/* на видео этот же класс */
.hero-section__second::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 50%, transparent 50%);
  z-index: 3;
}

.hero-section__img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero__info-second {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    height: 100%;
    color: #fff;
    z-index: 10;
}

@media (max-width: 992px) {
    .hero-section__second::before {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 50%, transparent 50%);
    }

    .hero__info-second {
        position: absolute;
        bottom: 0;
        left: 0;
        align-items: center;
        justify-content: center;
        padding: 40px 12px 80px;
        width: 100%;
        height: 50%;
        text-align: center;
    }

    .hero__info-second .h1.title {
        margin-bottom: 8px;
    }

    .hero__info-second .hero-desc {
        margin-bottom: 8px;
    }
}

/* Banner 3 */
.hero-section__third::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.hero__info-third {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    z-index: 10;
}

@media(max-width: 992px) {
    .hero__info-third {
        justify-content: space-between;
        width: 100%;
        height: 100%;
        padding: 40px 0px 80px;
        text-align: center;
    }

    .hero__info-third .hero-desc {
        margin-bottom: 8px;
    }

    .main-btn {
        margin: 0 auto;
    }
}

.preloader-page {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(48,67,92, 0.3);
}

.preloader-page__spinner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    transition: all 0.3s ease-out;
}

.preloader-page__spinner:after {
    position: absolute;
    border: 3px solid var(--color-green);
    content: "";
    display: block;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border-right-color: transparent;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

.preloader-page.is-hidden {
    display: none !important;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.wpcf7-form > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpcf7-form-control.wpcf7-validates-as-required.form-control.wpcf7-not-valid {
   background: #E4281F;
   border: 1px solid var(--color-black);
   box-shadow: 4px 4px 0 0 var(--color-black);
}

.modal--custom-full .modal-body {
   padding: 0;
   max-width: 100%;
   margin: auto;
}

.modal--custom-full .modal-dialog {
    margin: 0;
   max-width: 100%;
   height: 100%;
   align-items: stretch;
}

@media (min-width: 1900px) {
   .modal--custom-full .modal-dialog {
       max-width: 1680px;
   }
}

@media (min-width: 1680px) {
   .modal--custom-full .modal-dialog {
        display: flex;
        align-items: center;
        justify-content: center; 
        min-height: 100vh;
        margin: auto;
   }

   .modal-product__content {
       height: max-content;
   }
}

.form-check-input:checked .form-check-label {
   color: var(--color-black) !important;
}

span.underline a {
   transition: all .3s ease-out;
}

span.underline:hover a {
   color: var(--color-green) !important;
}

span:hover.underline {
   text-decoration-color: var(--color-green);
}

span:active.underline {
   text-decoration-color: var(--color-link-svg);
}

span.underline:active a {
   color: var(--color-link-svg);
}

.select2-container--below .select2-selection:has(.select2-selection__rendered[title]),
.select2-container--above .select2-selection:has(.select2-selection__rendered[title]) {
    border: 1px solid var(--color-black);
    box-shadow: 4px 4px 0 0 var(--color-black);
}

.form-check:has(input:checked) .form-check-label {
    color: var(--color-black);
}

[data-name="your-request"] .wpcf7-not-valid-tip {
    display: none;
}

@media (max-width: 430px) {

    .about-manufacturer .h5 {
        font-size: 16px;
    }

    .about-manufactured__title-margin {
        margin-top: 5px;
    }
}