.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 770px;
}

.hero__wrap {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.hero__info {
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    position: relative;
}

.hero__mobile-image {
    display: none;
}

.hero__title {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    line-height: 140%;
}

.hero__button {
    align-self: flex-start;
}

.hero__additional-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 410px;
    width: 100%;
}

.hero__sub-text {
    color: #62a51b;
    font-size: 18px;
    font-weight: 600;
}


@media (max-width:810px) {
    .hero {
        background-image: url('/src/assets/img/hero/hero-bg-mobile.png') !important;
        border-bottom: 1px solid var(--light-border-color);
    }

    .hero__mobile-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        margin-top: 20px;
    }

    .hero__title {
        font-size: 28px;
    }
}
