.home-first6 {
    background-color: var(--SECONDARY_MINOR_COLOR);
}

.home-first6__container {
    max-width: var(--CONTAINER_WIDTH) !important;
    margin: 0px auto;
    padding: 60px 20px;
}

@media (min-width: 992px) {
    .home-first6__container {
        display: flex;
    }
}

@media (min-width: 992px) {
    .home-first6__picture-block {
        padding-left: 30px;
    }
}

.home-first6__picture {
    width: 250px;
    height: 250px;
    margin: 0px auto 40px auto;
    position: relative;
    z-index: 2;
    opacity: 0;
}

@media (min-width: 576px) {
    .home-first6__picture {
        width: 350px;
        height: 350px;
    }
}

.home-first6__picture::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    border: 10px solid var(--EXTRA_COLOR);
}

.home-first6__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-first6__text-block {
    opacity: 0;
}
@media (min-width: 992px) {
    .home-first6__text-block {
        padding-left: 80px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}

@media (min-width: 1200px) {
    .home-first6__text-block {
        padding-left: 150px;
    }
}

.home-first6__title {
    font-weight: bold;
    font-size: 30px;
    line-height: 140%;
    margin-bottom: 10px;
    color: var(--SECONDARY_MAJOR_COLOR);
    font-family: var(--TITLE_FONT);
}

@media (min-width: 576px) {
    .home-first6__title {
        font-size: 56px;
    }
}

.home-first6__text {
    font-size: 22px;
    line-height: 140%;
    color: var(--TEXT_COLOR);
}

@media (min-width: 576px) {
    .home-first6__text {
        font-size: 32px;
    }
}
