.home-four2 {
    background: center/cover no-repeat;
}
.home-four2__container {
    max-width: var(--CONTAINER_WIDTH) !important;
    margin: 0px auto;
    padding: 80px 20px;
}

@media (min-width: 768px) {
    .home-four2__container {
        padding: 120px 40px;
    }
}

.home-four2__content {
    position: relative;
    z-index: 1;
    padding: 20px 30px;
}

@media (min-width: 768px) {
    .home-four2__content {
        padding: 40px 50px;
    }
}

@media (min-width: 992px) {
    .home-four2__content {
        display: flex;
        margin: 0 -20px;
    }
}

.home-four2__content::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background-color: var(--SECONDARY_MAJOR_COLOR);
}

@media (min-width: 992px) {
    .home-four2__content-item {
        padding: 0 20px;
    }
}

.home-four2__content-item:first-child {
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .home-four2__content-item:first-child {
        margin-bottom: 0px;
        flex: 1 1 75%;
    }
}

@media (min-width: 992px) {
    .home-four2__content-item:last-child {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex: 1 1 25%;
    }
}

.home-four2__title {
    font-weight: 700;
    font-size: 22px;
    line-height: 130%;
    margin-bottom: 10px;
    color: var(--SECONDARY_MINOR_COLOR);
    font-family: var(--TITLE_FONT);
}

@media (min-width: 768px) {
    .home-four2__title {
        font-size: 32px;
        margin-bottom: 20px;
    }
}

.home-four2__text {
    font-size: 16px;
    line-height: 140%;
    color: var(--SECONDARY_MINOR_COLOR);
}

.home-four2__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 153px;
    min-height: 53px;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: var(--TEXT_DECORATION);
    background-color: var(--PRIMARY_MAJOR_COLOR);
    color: var(--PRIMARY_MINOR_COLOR);
}

@media (min-width: 768px) {
    .home-four2__button {
        transition: all 0.3s ease 0s;
    }

    .home-four2__button:hover {
        background-color: var(--PRIMARY_MINOR_COLOR);
        color: var(--PRIMARY_MAJOR_COLOR);
    }
}
