#hero-banner {
    min-height: 900px;
    max-height: 1800px;
    height: 100dvh;
    overflow: hidden;
    position: relative;

    .hero-banner__wrapper {
        position: absolute;
        top: 46px;
        bottom: 20px;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        max-width: 1920px;
        margin: 0 auto;
    }

    .hero-banner__content {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        height: 100%;
        padding-left: 250px;

        p {
            text-transform: uppercase;
            color: rgba(153, 180, 207, 1);
            font-size: 24px;
            line-height: 50px;
            font-weight: 300;
        }
    }

    .hero-banner__title {
        font-family: "PT Serif Caption", serif;
        font-size: 60px;
        line-height: 90px;
        letter-spacing: 2px;
        font-weight: 400;
        margin: 0 0 20px 0;
        letter-spacing: 2px;
        background-image: linear-gradient(
            90deg, 
            rgba(232, 224, 213, 1), 
            rgba(212, 197, 160, 1),
            rgba(245, 236, 215, 1),
            rgba(201, 184, 146, 1),
            rgba(223, 216, 199, 1)
        );
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block; 
    }

    .hero-banner__image {
        width: 100%;
        height: 100%;
    }

    .hero-banner__border {
        height: 20px;
        background: url("/static/images/brand-line.svg");
        background-repeat: repeat-x;
        background-position: 0 0;
        animation: moveBgRight 4s linear infinite;
        margin-top: 20px;
        position: absolute;
        z-index: 100;
        width: 100%;

        &.top {
            top: 76px;
        }

        &.bottom {
            bottom: 20px;
        }
        
    }

    .hero-banner__actions {
        display: flex;
        gap: 60px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 1000px) {
    #hero-banner {
        .hero-banner__title {
            font-size: 50px;
            line-height: 70px;
            letter-spacing: 2px;
        }  
    }
}

@media only screen and (max-width: 1300px) {
    #hero-banner {
        min-height: 1100px;

        .hero-banner__content {
            padding: 0 50px;

            p {
                font-size: 16px;
                line-height: 28px;
            }
        }

        .hero-banner__border {
            &.top {
                top: 46px;
            }
        }

        .hero-banner__actions {
            gap: 30px;
        }
    }
}

@media only screen and (max-width: 600px) {
    #hero-banner {
        .hero-banner__title {
            font-size: 40px;
            line-height: 55px;
            letter-spacing: 0;
        }

        .hero-banner__content {
            padding: 0 20px;
            justify-content: baseline;
        }
    }
}

.about-company-home-section {
    background: linear-gradient(
        135deg,
        rgba(232, 224, 213, 1) 0%,
        rgba(212, 197, 160, 1) 70%,
        rgba(245, 236, 215, 1) 80%,
        rgba(201, 184, 146, 1) 90%,
        rgba(223, 216, 199, 1) 100%
    );

    .about-company-home-section__wrapper {
        display: flex;
        max-width: 1920px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .about-company-home-section__flag {
        background: url("/static/images/flag-bg.jpg");
        width: 360px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-company-home-section__flag-seam {
        height: 100%;
        width: 340px;
        margin: 0 10px;
        border-left: 1px dashed #AD3408;
        border-right: 1px dashed #AD3408;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-company-home-section__content {
        margin: 60px 0;

        p {
            font-family: "PT Serif Caption", serif;
            color: rgba(20, 24, 25, 1);
            font-size: 24px;
            line-height: 36px;
        }
    }

    .about-company-home-section__text {
        padding-left: 100px;
    }

    .about-company-home-section__title {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
        padding: 20px 0 20px 100px;
        line-height: 50px;
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
        align-items: center;

        h1 {
            white-space: nowrap;
        }

        h2 {
            margin: 0;
        }
    }

    .about-company-home-section__subtitle {
        font-style: italic;
        background-image: linear-gradient(
            90deg, 
            rgba(146, 36, 0, 1), 
            rgba(184, 93, 58, 1)
        );
        opacity: 0.41;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block; 
    }

    h1 {
        margin: 0;
        color: #872100;
        display: inline-block; 
    }

    h2 {
        margin: 0;
    }
}

@media only screen and (max-width: 1300px) {
    .about-company-home-section {
        .about-company-home-section__wrapper {
            padding: 0;
        }

        .about-company-home-section__title {
            padding: 10px 20px;

            h1, span {
                white-space: wrap;
            }
        }

        .about-company-home-section__text {
            padding: 0 20px;
        }

        .about-company-home-section__flag {
            display: none;
        }
    }
}


.our-mission-home-section {
    background: var(--navy, linear-gradient(266.00deg, rgba(19, 66, 101, 1) 0%,rgba(23, 32, 48, 1) 100%));

    h1 {
        margin: 0;
    }

    .our-mission-home-section__wrapper {
        display: flex;
        max-width: 1920px;
        margin: 0 auto;
        padding: 110px 60px;
        gap: 88px;
        flex-wrap: wrap;
    }

    .our-mission-home-section__thesis-wrapper {
        background: url("/static/images/horseshoe.svg");
        background-repeat: no-repeat;
        min-height: 70px;
        padding-left: 130px;
        position: relative;
        flex-grow: 1;
        flex-basis: 0;

        &:first-child {
            &:after {
                content: '';
                display: block;
                border-left: 1px solid rgba(153, 153, 153, 1);
                position: absolute;
                height: 100%;
                right: -40px;
                top: -45px;
            }
        }

        &:last-child {
            &:after {
                content: '';
                display: block;
                border-left: 1px solid rgba(153, 153, 153, 1);
                position: absolute;
                height: 100%;
                left: -40px;
                bottom: -45px;
            }
        }

        h2 {
            color: rgba(233, 228, 213, 1);
        }

        p {
            color: rgba(233, 228, 213, 1);
            font-family: "Roboto";
            font-style: Light;
            font-size: 24px;
            font-weight: 300;
            line-height: 36px;
            letter-spacing: 0px;
        }
    }
}

@media only screen and (max-width: 1300px) {
    .our-mission-home-section {
        overflow: hidden;

        .our-mission-home-section__wrapper {
            padding: 110px 20px;
        }

        .our-mission-home-section__thesis-wrapper {
            padding: 0;
        }
    }
}

@media only screen and (max-width: 800px) {
    .our-mission-home-section {
        .our-mission-home-section__wrapper {
            flex-direction: column;
        }

        .our-mission-home-section__thesis-wrapper {
            min-height: auto;
        }
    }
}

.reason-why-home-section {
    background: url("/static/images/reason-why-block-bg.png");

    .reason-why-home-section__image-column, .reason-why-home-section__content-column {
        flex-grow: 1;
        flex-basis: 0;
    }

    .reason-why-home-section__wrapper {
        display: flex;
        max-width: 1920px;
        margin: 0 auto;
        gap: 170px;
    }

    .reason-why-home-section__image-column {
        position: relative;
        min-height: 1000px;
    }

    .reason-why-home-section__company-name-wrapper {
        position: absolute;
        left: 0;
        bottom: 0;
        padding: 15px 0px 15px 0;
        background: linear-gradient(135.00deg, rgba(232, 224, 213, 1) 0%,rgba(212, 197, 160, 1) 30%,rgba(245, 236, 215, 1) 60%,rgba(201, 184, 146, 1) 80%,rgba(223, 216, 199, 1) 100%);
    }

    .reason-why-home-section__company-name {
        white-space: nowrap;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        background-image: linear-gradient(
            135.00deg, 
            rgba(232, 224, 213, 1) 0%,
            rgba(212, 197, 160, 1) 30%,
            rgba(245, 236, 215, 1) 60%,
            rgba(201, 184, 146, 1) 80%,
            rgba(223, 216, 199, 1) 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: "PT Serif Caption", serif;
        font-style: Regular;
        font-size: 100px;
        font-weight: 400;
        letter-spacing: 0px;
        line-height: 110px;
    }

    .reason-why-home-section__image-wrapper {
        position: relative;
        overflow: hidden;
        height: 100%;
        margin-left: 110px;
        min-height: 1000px;

        &> div {
            left: 50% !important;
            transform: translateX(-50%);
        }

        &:before, &:after {
            display: block;
            content: '';
            top: 0;
            z-index: 100;
            width: 4px;
            height: 100%;
            position: absolute;
            background: linear-gradient(130.38deg, rgba(35, 15, 4, 1) 0%,rgba(198, 63, 13, 1) 100%);
        } 

        &:before {
            left: 0;
        }

        &:after {
            right: 0;
        }
    }


    .reason-why-home-section__image {
        position: absolute;
    }

    .reason-why-home-section__content-wrapper {
        padding-right: 20px;

        h1 {
            background: linear-gradient(
                130deg, 
                rgba(35, 15, 4, 1) 0%, 
                rgba(198, 63, 13, 1) 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        p {
            color: rgba(23, 32, 48, 1);
            font-family: "Roboto";
            font-style: Light;
            font-size: 24px;
            font-weight: 300;
            line-height: 36px;
            letter-spacing: 0px;
        }

        h2 {
            background: linear-gradient(
                130deg, 
                rgba(35, 15, 4, 1) 0%, 
                rgba(198, 63, 13, 1) 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
        }

        li {
            color: var(--black, rgba(23, 32, 48, 1));
            font-family: "Roboto";
            font-style: Light;
            font-size: 24px;
            font-weight: 300;
            line-height: 36px;
            letter-spacing: 0px;
            margin-bottom: 22px;
        }

        .reason-why-home-section__content-list-wrapper {
            position: relative;
            padding-left: 40px;
            padding-bottom: 40px;

            &:before, &:after {
                display: block;
                position: absolute;
                content: '';
                border-left: 1px solid rgba(153, 153, 153, 1);
                height: calc(100% - 120px);
            }

            &:before {
                top: 0;
                left: 0;
            }

            &:after {
                bottom: 0;
                left: 8px;
            }
        }
    }
}

@media only screen and (max-width: 1300px) {
    .reason-why-home-section {
        .reason-why-home-section__wrapper {
            flex-direction: column;
            gap: 40px;
        }

        .reason-why-home-section__content-wrapper {
            padding: 0 20px;

            p {
                font-size: 18px;
                line-height: 28px;
            }

            li {
                font-size: 20px;
                line-height: 32px;
                margin-bottom: 14px;
            }
        }
    }
}

@media only screen and (max-width: 600px) {
    .reason-why-home-section {
        .reason-why-home-section__company-name-wrapper {
            display: none;
        }

        .reason-why-home-section__image-wrapper {
            margin-left: 0;
        }

        .reason-why-home-section__content-wrapper {
            padding: 0 20px;

            p {
                font-size: 18px;
                line-height: 28px;
            }

            li {
                font-size: 20px;
                line-height: 32px;
                margin-bottom: 14px;
            }

            .reason-why-home-section__content-list-wrapper {
                padding-left: 0;

                &:before, &:after {
                    display: none;
                }
            }
        }
    }
}

.for-breeder-home-section {
    background: linear-gradient(266.00deg, rgba(33, 47, 67, 1) 0%,rgba(20, 24, 30, 1) 100%);

    .for-breeder-home-section__wrapper {
        display: flex;
        max-width: 1920px;
        margin: 0 auto;
        padding: 0 110px;
        box-sizing: border-box;
    }

    .for-breeder-home-section__content {
        padding: 80px 0;
    }

    .for-breeder-home-section__flag {
        background: url("/static/images/flag-bg.jpg");
        width: 360px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 150px;
    }

    .for-breeder-home-section__flag-seam {
        height: 100%;
        width: 340px;
        margin: 0 10px;
        border-left: 1px dashed #AD3408;
        border-right: 1px dashed #AD3408;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .for-breeder-home-section__content-text {
        color: rgba(233, 228, 213, 1);
        font-family: "Roboto";
        font-style: Light;
        font-size: 24px;
        font-weight: 300;
        line-height: 36px;
        letter-spacing: 0px;
        margin-bottom: 60px;
    }

    .for-breeder-home-section__title-wrapper {
        position: relative;
        margin-bottom: 70px;

        &:before, &:after {
            display: block;
            position: absolute;
            content: '';
            border-left: 1px solid rgba(153, 153, 153, 1);
            height: 100%;
        }

        &:before {
            top: -30px;
            left: -45px;
        }

        &:after {
            bottom: -30px;
            left: -37px;
        }

        h1 {
            margin: 0;
            color: rgba(173, 52, 8, 1);
        }

        p {
            margin: 15px 0 0 0;
            color: rgba(233, 228, 213, 1);
            font-family: "PT Serif Caption", serif;
            font-style: Regular;
            font-size: 32px;
            font-weight: 400;
            line-height: 44px;
            letter-spacing: 0px;
            text-align: left;
        }
    }
}

@media only screen and (max-width: 1100px) {
    .for-breeder-home-section {
        .for-breeder-home-section__flag {
            display: none;
        }

        .for-breeder-home-section__wrapper {
            padding: 0 20px;
        }
    }
}

.factory-home-section {
    background: right center no-repeat url("/static/images/sketch-horse.png"), url("/static/images/reason-why-block-bg.png");

    .factory-home-section__wrapper {
        max-width: 1420px;
        margin: 0 auto;
        padding: 60px 0 120px 0;
    }

    h2 {
        text-align: center;
        color: rgba(23, 32, 48, 1);
        margin-top: 0;
        margin-bottom: 50px;
    }

    .factory-home-section__list {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        row-gap: 15px;
        column-gap: 100px;
        padding: 0 100px;
    }

    a {
        display: flex;
        align-items: center;
        color: rgba(22, 35, 40, 1);
        font-family: "PT Serif Caption", serif;
        font-style: Regular;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 0px;
        height: 88px;
        padding: 0 20px 0 52px;
        border-left: 2px solid rgba(146, 36, 0, 1);
        box-shadow: 0px 3px 4px 0px rgba(62, 67, 74, 0.07);
        background: linear-gradient(137.39deg, rgba(255, 255, 255, 0.3) 3%,rgba(255, 255, 255, 0) 100%);
        text-decoration: none;
        transition: background-color 0.3s ease;
        position: relative;

        &::before {
            content: '';
            display: block;
            background: url("/static/images/horse-shoe-bullit.svg");
            width: 20px;
            height: 20px;
            position: absolute;
            top: 34px;
            left: 20px;
        }

        &:hover {
            background: rgba(255, 255, 255, 0.4);

            &::before {
                background: url("/static/images/arrow-bullit.svg");
                width: 16px;
                height: 16px;
                top: 36px;
                left: 22px;
            }
        }
    }
}

@media only screen and (max-width: 1100px) {
    .factory-home-section {
        padding: 40px 20px;
        
        .factory-home-section__list {
            padding: 0;
            grid-template-columns: 1fr;
        }
    }
}

.auction-counters-home-section {
    background: linear-gradient(266.00deg, rgba(33, 47, 67, 1) 0%,rgba(20, 24, 30, 1) 100%);
    position: relative;
    padding: 60px 0 90px 0;

    .auction-counters-home-section__border {
        height: 20px;
        background: url("/static/images/brand-line.svg");
        background-repeat: repeat-x;
        background-position: 0 0;
        animation: moveBgRight 4s linear infinite;
        margin-top: 20px;
        position: absolute;
        z-index: 100;
        width: 100%;
        bottom: 10px;
    }

    .auction-counters-home-section__wrapper {
        display: flex;
        margin: 0 auto;
        max-width: 1420px;
        background: linear-gradient(135.00deg, rgba(232, 224, 213, 1) 0%,rgba(212, 197, 160, 1) 30%,rgba(245, 236, 215, 1) 60%,rgba(201, 184, 146, 1) 80%,rgba(223, 216, 199, 1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: "PT Serif Caption", serif;
        font-style: Regular;
        font-weight: 400;
    }

    .auction-counters-home-section__counter-wrapper {
        display: flex;
        text-align: center;
        justify-content: center;
        flex-direction: column;
        flex-grow: 1;
    }

    .auction-counters-home-section__number {
        font-size: 100px;
        font-family: "PT Serif Caption", serif;
    }

    .auction-counters-home-section__description {
        font-size: 32px;
        font-family: "PT Serif Caption", serif;
    }
}

@media only screen and (max-width: 1100px) {
    .auction-counters-home-section {
        .auction-counters-home-section__wrapper {
            flex-wrap: wrap;
            gap: 80px;
        }

        .auction-counters-home-section__counter-wrapper {
            min-width: 300px;
        }
    }
}

.auction-collection-home-section {
    background: linear-gradient(266.00deg, rgba(19, 66, 101, 1) 0%,rgba(23, 32, 48, 1) 100%);

    .auction-collection-home-section__wrapper {
        display: flex;
        max-width: 1920px;
        margin: 0 auto;
        padding: 60px 60px;
        gap: 60px;
    }

    .auction-collection-home-section__text-column {
        width: 550px;
        flex-grow: 0;

        h1 {
            color: rgba(173, 52, 8, 1);
            margin: 0;
        }

        p {
            color: rgba(233, 228, 213, 1);
            font-family: "Roboto";
            font-style: Light;
            font-size: 24px;
            font-weight: 300;
            line-height: 36px;
        }

        .vostok-button {
            margin-top: 25px;
        }
    }

    .auction-collection-home-section__collection-column {
        flex-grow: 1;
        position: relative;
        height: 580px;
    }

    .auction-collection-home-section__collection-carusel {
        width: 100%;
        position: absolute;
        height: 580px;
    }

    .swiper-button-disabled {
        display: none;
    }

    .auction-collection-home-section__horse {
        text-decoration: none;
        width: 350px;
        height: 580px;

        &.-empty {
            background: rgba(0, 0, 0, 0.2) no-repeat center 78px url("/static/images/horse-empty.svg");

            span {
                color: rgba(153, 180, 207, 0.75);
                font-family: "Roboto";
                font-style: Light;
                font-size: 20px;
                font-weight: 300;
                line-height: 28px;
                letter-spacing: 1px;
                text-transform: uppercase;
                display: block;
                text-align: center;
                width: 300px;
                margin: 0 auto;
                padding-top: 402px;
            }
        }
    }

    .auction-collection-home-section__horse-image {
        width: 350px;
        height: 400px;
        background-position: center center;
        background-size: cover;
    }

    .auction-collection-home-section__horse-title {
        display: flex;
        align-items: center;
        padding: 10px 0;
    }

    .auction-collection-home-section__horse-number {
        background: linear-gradient(135.00deg, rgba(232, 224, 213, 1) 0%,rgba(212, 197, 160, 1) 30%,rgba(245, 236, 215, 1) 60%,rgba(201, 184, 146, 1) 80%,rgba(223, 216, 199, 1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: "Roboto";
        font-style: Light;
        font-size: 62px;
        font-weight: 300;
        line-height: 70px;
        position: relative;
        padding-right: 24px;

        &:after {
            display: block;
            position: absolute;
            content: '';
            border-left: 1px solid rgba(198, 204, 215, 1);
            height: 100%;
            top: 0;
            right: 0;
        }
    }

    .auction-collection-home-section__horse-name {
        background: linear-gradient(135.00deg, rgba(232, 224, 213, 1) 0%,rgba(212, 197, 160, 1) 30%,rgba(245, 236, 215, 1) 60%,rgba(201, 184, 146, 1) 80%,rgba(223, 216, 199, 1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: "PT Serif Caption", serif;
        font-style: Regular;
        font-size: 28px;
        font-weight: 400;
        line-height: 36px;
        text-transform: uppercase;
        padding-left: 21px;
    }

    .auction-collection-home-section__horse-params {
        display: grid;
        grid-template-columns: auto 150px;
        grid-gap: 13px;
    }

    .auction-collection-home-section__horse-param-name {
        color: rgba(255, 113, 4, 1);
        font-family: "Roboto";
        font-style: Light;
        font-size: 11px;
        font-weight: 300;
        line-height: 16px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .auction-collection-home-section__horse-param-value {
        color: rgba(217, 215, 209, 1);
        font-family: "Roboto";
        font-style: Regular;
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
    } 

    .auction-collection-home-section__collection-carusel-navigation-right, .auction-collection-home-section__collection-carusel-navigation-left {
        width: 60px;
        height: 60px;
        position: absolute;
        border-radius: 30px;
        z-index: 100;
        background: rgba(0, 0, 0, 0.58) no-repeat center center url("/static/images/orange-arrow.svg");
        top: 170px;
        cursor: pointer;
    }

    .auction-collection-home-section__collection-carusel-navigation-left {
        transform: rotate(180deg);
        left: -30px;
    }

    .auction-collection-home-section__collection-carusel-navigation-right {
        right: -30px;
    }
}

@media only screen and (max-width: 1200px) {
    .auction-collection-home-section {
        .auction-collection-home-section__wrapper {
            flex-direction: column;
            padding: 60px 20px;
        }

        .auction-collection-home-section__collection-carusel-navigation-left {
            left: -10px;
        }

        .auction-collection-home-section__collection-carusel-navigation-right {
            right: -10px;
        }

        .auction-collection-home-section__text-column {
            width: 100%;
        }
    }
}

.our-values-home-section {
    background: linear-gradient(266.00deg, rgba(5, 6, 8, 1) 0.244%,rgba(35, 42, 51, 1) 99.79%);
    position: relative;
    overflow: hidden;

    .our-values-home-section__border {
        height: 20px;
        background: url("/static/images/brand-line.svg");
        background-repeat: repeat-x;
        background-position: 0 0;
        animation: moveBgRight 4s linear infinite;
        position: absolute;
        z-index: 100;
        width: 100%;
        top: 10px;
    }

    .our-values-home-section__wrapper {
        max-width: 1920px;
        margin: 0 auto;
        padding: 60px 60px 130px 60px;
    }

    h1 {
        color: rgba(217, 215, 209, 1);
        margin: 0 0 50px 0;
    }

    ul {
        margin: 0;
        padding: 0 100px 0 100px;
        list-style: none;
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr 1fr; 
    }

    li {
        padding: 16px 0 16px 120px;
        position: relative;

        &:before {
            display: block;
            position: absolute;
            content: '';
            background: url("/static/images/horseshoe-star.svg");
            width: 96px;
            height: 112px;
            left: 0;
            top: 5px;
        }
    }

    .our-values-home-section__item-title {
        background: linear-gradient(128.42deg, rgba(185.5, 141, 97, 1) 11%,rgba(222.06, 193.64, 164.26, 1) 40%,rgba(222.27, 193.95, 164.66, 1) 56%,rgba(173, 123, 74, 1) 76%,rgba(198, 159, 120, 1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: "PT Serif Caption", serif;
        font-style: Italic;
        font-size: 32px;
        font-weight: 400;
        line-height: 48px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .our-values-home-section__item-description {
        color: rgba(233, 228, 213, 1);
        font-family: "Roboto";
        font-style: Light;
        font-size: 24px;
        font-weight: 300;
        line-height: 36px;
    }

    .our-values-home-section__company-name {
        position: absolute;
        bottom: -185px;
        opacity: 0.04;
        color: rgba(217, 215, 209, 1);
        font-family: "PT Serif Caption", serif;
        font-size: 240px;
        font-weight: 400;
        line-height: 288px;
        transform: translate(-50%, -50%);
        left: 50%;
        white-space: nowrap;
    }
}

@media only screen and (max-width: 1500px) {
    .our-values-home-section {
        .our-values-home-section__wrapper {
            padding: 60px 20px 130px 20px;
        }

        ul {
            padding: 0;
        }
    }
}

@media only screen and (max-width: 1100px) {
    .our-values-home-section {
        ul {
            grid-template-columns: 1fr; 
        }
    }
}

@media only screen and (max-width: 600px) {
    .our-values-home-section {
        h1 {
            margin-bottom: 20px;
        }

        li {
            padding-left: 0;

            &:before {
                display: none;
            }
        }

        .our-values-home-section__item-title {
            font-size: 28px;
        }
    }
}

.news-home-section {
    background: rgba(217, 215, 209, 1);

    .news-home-section__wrapper {
        max-width: 1920px;
        margin: 0 auto;
        padding: 60px 0;
        text-align: center;
    }

    h1 {
        color: rgba(23, 32, 48, 1);
        text-align: center;
        margin: 0;
        text-transform: uppercase;
    }

    .news-home-section__news {
        display: flex;
        justify-content: center;
        margin-top: 42px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .news-list__item {
        display: flex;
        flex-direction: column;
        background: #fff;
        padding: 30px;
        flex-basis: 480px;
        transition: background 0.3s ease-in-out;
        text-align: left;
        background-position: center center;
        gap: 20px;
        height: 570px;

        &:hover {
            background: rgba(255, 255, 255, 1);
        }
    }

    .news-list__item-title {
        a {
            color: rgba(249, 116, 26, 1);
            font-family: "PT Serif Caption", serif;
            font-style: Bold;
            font-size: 24px;
            font-weight: 700;
            line-height: 32px;
            text-decoration: none;
        }
    }

    .news-list__item-text {
        flex-grow: 1;
        overflow: hidden;
        position: relative;

        &:after {
            content: '';
            position: absolute;
            width: 100%;
            left: 0;
            right: 0;
            bottom: 0;
            height: 70px;
            background-image: linear-gradient(transparent, #FFF);
        }

        p {
            margin: 0;
            color: rgba(23, 32, 48, 1);
            font-family: "Roboto";
            font-size: 20px;
            font-weight: 300;
            line-height: 24px;
        }
    }

    .news-list__item-date {
        color: rgba(23, 32, 48, 1);
        font-family: "PT Serif Caption", serif;
        font-style: Bold;
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
    }

    .news-list__item-img {
        height: 300px;
        min-height: 300px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .vostok-button {
        margin: 80px auto 0 auto;
    }
}

@keyframes moveBgRight {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 63.468254px 0;
    }
}