section.hero-home .hero-home__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

section.hero-home .hero-home__wrapper .col-image {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 80%, rgba(255, 255, 255, 0.10) 100%);
}

section.hero-home .hero-home__wrapper .col-image .wrapper {
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    max-width: calc(var(--max-width-content) / 2);
    width: 100%;
}

section.hero-home .hero-home__wrapper .col-image .wrapper img {
    width: auto;
    max-height: 764px;
}

section.hero-home .hero-home__wrapper .col-content-with-image {
    --background-image: url('../img/bg-hero.webp');
    background-image: var(--background-image);
    background-position: top left;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

section.hero-home .hero-home__wrapper .col-image-second {
    --background-image: url('../img/bg-hero-bottom.webp');
    background-image: var(--background-image);
    background-position: top left;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

section.hero-home .hero-home__wrapper .col-content-with-image:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

section.hero-home .hero-home__wrapper .col-content-with-image .wrapper {
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 41px;
    max-width: calc(var(--max-width-content) / 2);
    width: 100%;
    position: relative;
    z-index: 2;
}

section.hero-home .hero-home__wrapper .col-content-with-image .wrapper .title h1 {
    color: var(--gray-content-background-text, #F2F6EF);
    font-family: var(--merriweather-font);
    font-size: 86px;
    font-style: normal;
    font-weight: 300;
    line-height: 113%;
}

section.hero-home .hero-home__wrapper .col-content_paragraph {
    background-color: var(--color-secondary);
    color: #fff;
}

section.hero-home .hero-home__wrapper .col-content_paragraph .wrapper {
    padding: 53px 100px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: calc(var(--max-width-content) / 2);
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

section.hero-home .hero-home__wrapper .col-content_paragraph .wrapper .content p {
    color: var(--text-color);
    font-family: var(--monserrat-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    margin-bottom: 1em;
}

section.hero-home .hero-home__wrapper .col-content_paragraph .rrss-content {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: flex-start;

}

section.hero-home .hero-home__wrapper .col-content_paragraph .rrss-content span {
    color: var(--text-color);
    font-family: var(--monserrat-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 2.707px;
    text-transform: uppercase;
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: flex-start;
    opacity: .5;
}

section.hero-home .hero-home__wrapper .col-content_paragraph .rrss-content span:after {
    content: '';
    display: block;
    height: 1px;
    width: 49px;
    background-color: #fff;
}

section.hero-home .hero-home__wrapper .col-content_paragraph .rrss-content .rrss-links {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
}

@media screen and (max-width: 1540px) {
    section.hero-home .hero-home__wrapper .col-content-with-image .wrapper .title{
        width: 90%;
    }
}
@media screen and (max-width: 1390px) {
    section.hero-home .hero-home__wrapper .col-content-with-image .wrapper .title{
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    section.hero-home .hero-home__wrapper {
        grid-template-columns: 1fr;
    }

    section.hero-home .hero-home__wrapper .col-image {
        align-items: center;
        justify-content: flex-end;
        order: 2;
    }

    section.hero-home .hero-home__wrapper .col-image-second {
        height: 412px;
        order: 3;
    }

    section.hero-home .hero-home__wrapper .col-image .wrapper {
        padding: 0 24px;
        max-width: 100%;
    }

    section.hero-home .hero-home__wrapper .col-image .wrapper img {
        max-height: 390px;
    }

    section.hero-home .hero-home__wrapper .col-content-with-image {
        order: 1;
        padding: 64px 20px;
        background-size: auto 180%;
    }

    section.hero-home .hero-home__wrapper .col-content-with-image .wrapper,
    section.hero-home .hero-home__wrapper .col-content_paragraph .wrapper {
        max-width: 100%;
        padding: 0;
        align-items: center;
    }

    section.hero-home .hero-home__wrapper .col-content-with-image .wrapper .title h1 {
        font-size: 60px;
        line-height: 1;
        text-align: center;
    }

    section.hero-home .hero-home__wrapper .col-content_paragraph {
        order: 4;
    }

    section.hero-home .hero-home__wrapper .col-content_paragraph .wrapper {
        padding: 32px 24px;
    }

    section.hero-home .hero-home__wrapper .col-content_paragraph .rrss-content {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    section.hero-home .hero-home__wrapper .col-content_paragraph .rrss-content span {
        font-size: 14px;
        letter-spacing: 2px;
        gap: 16px;
    }

    section.hero-home .hero-home__wrapper .col-content_paragraph .rrss-content span:after {
        width: 32px;
        height: 1px;
    }

    section.hero-home .hero-home__wrapper .col-content_paragraph .wrapper .content p {
        font-size: 18px;
    }

}