.hero_home .wrapper {
    display: flex;
    align-items: center;
}
.hero_left, .hero_right {
    width: 50%;
}
.hero_home .eyebrow {
    font-size: 25px;
    font-weight: 700;
    font-family: var(--primary-font);
}
.hero_home .eyebrow strong, .hero_home h1 strong {
    color: var(--beige);
    font-weight: 700;
}
.hero_home h1 strong {
    display: block;
}
.hero_home h1 {
    font-size: 70px;
    font-weight: 700;
    margin: 10px auto 0;
}
.hero_left .content {
    max-width: 502px;
}
.hero_right .image {
    max-width: 495px;
    margin-left: auto;
}
.hero_text {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.hero_text p {
    max-width: 413px;
    font-size: 20px;
    line-height: 1.2;
}
.hero_home .element_right img {
    max-width: 99px;
}
.hero_home .element_bottom img {
    max-width: 49px;
    margin: 40px 0 0 60%;
}

@media screen and (max-width:991px) {
    .hero_left {
        width: 65%;
    }
    .hero_right {
        width: 35%;
    }
    .hero_left .content {
        max-width: 100%;
    }
    .hero_home h1 {
        font-size: 50px;
    }
}

@media screen and (max-width:767px) {
    .hero_home .wrapper {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .hero_left, .hero_right {
        width: 100%;
    }
    .hero_left .content {
        max-width: 100%;
    }
    .hero_text p {
        max-width: 100%;
    }
    .hero_right .image {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    .hero_home h1 {
        font-size: 42px;
    }
    .hero_home .eyebrow {
        font-size: 20px;
    }
    .hero_text p {
        max-width: 100%;
        font-size: 18px;
    }
    .hero_home .element_right, .hero_home .element_bottom {
        display: none;
    }
}
