.section {
    background-color: #000000;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0 10px 64px;

    @media (min-width: 1200px) {
        padding: 0 18.4vw 0 18.8vw;
        z-index: 1;
        position: relative;
    }
}

.section .section__intro {
    flex-direction: column-reverse;
    align-items: center;

    @media (min-width: 1200px) {
        align-items: flex-start;
        height: 771px;
    }
}

@media (min-width: 1200px) {
    .section .section__intro.row {
        flex-direction: row;
    }

    .section .section__intro.row-reverse {
        flex-direction: row-reverse;
    }

    .section .section__intro.row-reverse .section__intro-left {
        padding-left: 20px;
    }

    .section__intro-left {
        padding-top: 370px;
    }
}

.section__logo {
    margin-bottom: 32px;
    max-width: 170px;

    @media (min-width: 1200px) {
        margin-bottom: 40px;
        max-width: unset;
    }
}

.section__intro-text {
    color: #F8F4F4;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;

    @media (min-width: 1200px) {
        font-size: 16px;
        line-height: 26px;
    }
}

.section__intro-right {
    display: flex;
    justify-content: flex-end;

    @media (min-width: 1200px) {
        position: sticky;
        top: 0;
        margin-top: -50px;
    }
}

.section__intro-img {
    z-index: 2;
    position: relative;
    top: -30px;
    width: 100%;
    height: auto;

    @media (min-width: 1200px) {
        top: 10px;
        width: 40.7vw;
        max-height: 600px;
    }
}

.section__cards {
    margin-top: 43px;
    flex-wrap: nowrap;
    min-height: 317px;
    position: relative;
    overflow-x: hidden;

    @media (min-width: 768px) {
        margin-top: 50px;
        flex-wrap: wrap;
        min-height: auto;
        position: static;
        justify-content: space-between;
    }
}

.section__arrow {
    color: #ffffff;
    font-size: 70px;
    line-height: 22px;
    margin: auto 10px auto 0;

    @media (min-width: 768px) {
        display: none;
    }
}

.section__card {
    width: clamp(300px, 85vw, 380px);
    position: absolute;
    top: 0;
    right: -100%;
    transition: all .4s ease;
    padding-right: 10px;

    @media (min-width: 768px) {
        width: 33.33%;
        position: static;
        margin-bottom: 80px;
    }
}

.section__card--showed {
    right: 0;
    transition: all .4s ease;
}

@media (min-width: 768px) {
    .section__card:hover .card__img-container::after {
        background-color: transparent;
        transition: all .3s ease;
    }
    .section__card:hover .card__img {
        filter: grayscale(0);
        transition: all .3s ease;
    }
    .section__card:hover .card__text {
        opacity: 1;
        transition: all .3s ease;
    }

    .card__img-container {
        position: relative;
        display: flex;
        width: auto;
    }

    .card__img-container::after {
        content: "";
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 8px;
        transition: all .3s ease;
    }

    .card__img {
        width: 100%;
        height: 100%;
        border-radius: 8px;
        filter: grayscale(1);
        transition: all .3s ease;
    }
}

.card__img-container {
    @media (min-width: 1200px) {
        width: fit-content;
    }
}

.card__img {
    @media (min-width: 1200px) {
        width: 19.8vw;
        height: 13.5vw;
    }
}

.card__text {
    color: #ffffff;
    font-size: 16px;
    line-height: 22px;
    margin-top: 9px;

    @media (min-width: 768px) {
        opacity: 0;
        transition: all .3s ease;
        max-width: 400px;
    }

}
