.about-first7 .swiper-wrapper {
    margin-bottom: 0px;
}
.about-first7__container {
    max-width: 1440px;
    margin: 0px auto;
    padding: 20px;
}
@media (min-width: 768px) {
    .about-first7__container {
        padding: 40px 20px;
    }
}
.about-first7__titling {
    max-width: var(--CONTAINER_WIDTH);
    margin: 0px auto;
    color: var(--SECONDARY_MAJOR_COLOR);
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .about-first7__titling {
        margin-bottom: 40px;
    }
}
.about-first7__title {
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 10px;
}
@media (min-width: 768px) {
    .about-first7__title {
        font-size: 60px;
        margin-bottom: 20px;
    }
}

.about-first7__content {
    color: var(--TEXT_COLOR);
}
@media (min-width: 992px) {
    .about-first7__content {
        display: flex;
    }
}

@media (min-width: 992px) {
    .about-first7__first-slider-wrapp {
        flex: 1 1 100%;
        width: 60%;
    }
}

.about-first7__slider-wrapper {
    width: 100%;
}

.about-first7__image-slide {
    color: var(--TEXT_COLOR);
}
@media (min-width: 992px) {
    .about-first7__image-slide {
        display: flex;
    }
}

.about-first7__slide-key {
    font-weight: 300;
    font-size: 22px;
    line-height: 120%;
    margin-bottom: 10px;
}
@media (min-width: 768px) {
    .about-first7__slide-key {
        font-size: 44px;
        margin-bottom: 0px;
        margin-right: 18px;
    }
}
.about-first7__pic {
    width: 100%;
    height: 200px;
}
@media (min-width: 576px) {
    .about-first7__pic {
        height: 600px;
    }
}
.about-first7__pic img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.about-first7__button-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 20px;
}
@media (min-width: 992px) {
    .about-first7__button-block {
        margin-bottom: 0px;
    }
}
.about-first7__prev {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.about-first7__prev:hover {
    opacity: 0.5;
}

.about-first7__prev::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
    width: 30px;
    height: 2px;
    background-color: var(--EXTRA_COLOR);
}
@media (min-width: 768px) {
    .about-first7__prev::after {
        right: -80px;
        width: 60px;
    }
}
.about-first7__next {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.about-first7__next:hover {
    opacity: 0.5;
}
.about-first7__next::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
    width: 30px;
    height: 2px;
    background-color: var(--EXTRA_COLOR);
}
@media (min-width: 768px) {
    .about-first7__next::before {
        left: -80px;
        width: 60px;
    }
}
.about-first7__text-block {
    display: flex;
    flex-direction: column-reverse;
}
@media (min-width: 992px) {
    .about-first7__text-block {
        flex-direction: column;
        justify-content: space-between;
        width: 40%;
        padding-left: 30px;
    }
}
.about-first7__second-slider {
    width: 100%;
}
