.hero-section {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-section__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

.hero-section__content {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.hero-section__description p {
    font-size: 30px;
    font-weight: 400;
    line-height: 120%;
}

.hero-section__image {
    max-width: 100%;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .hero-section {
        padding-top: 109px;
    }
    .hero-section__inner {
        flex-direction: column;
    }
    .hero-section__description p {
        font-size: 20px;
        font-weight: 400;
        line-height: 27.34px;
    }
    .hero-section__image {
        max-width: 100%;
        width: 100%;
        height: 340px;
    }
}