.hero{
    margin-bottom: 40px;
}
.hero-container{
    display: flex;
}
.hero-heading{
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.5rem;
    margin-bottom: 1rem;
}
.hero-descr{
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-bonus{
    background-color: #ddd88a;
    padding: 20px 30px;
    display: inline-flex;
    gap: 25px;
    align-items: center;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-bonus_icon{}
.hero-bonus_text{}

.hero-right{
    padding-right: 20px;
}
.hero_btn {
    border: 2px solid #fdff00;
    background: #fdff00;
    color: #000;
    font-weight: 700;
    padding: 15px;
    font-size: 17px;
    text-transform: uppercase;
    border-radius: 50px;
    width: 100%;
    box-sizing: border-box;
    max-width: 200px;
    cursor: pointer;
    transition: .3s;
    display: block;
    text-align: center;
}
.hero_btn:hover{
    background: transparent;
}

.hero-image_wrap {
    width: 50%;
    min-height: 400px;
    flex: 0 0 auto;
}

.hero-image_wrap img{
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
    height: 100%;
}


@media (max-width: 650px) {
    .hero-container {
        flex-direction: column-reverse;
    }
    .hero-image_wrap{
        min-height: auto;
        margin-bottom: 20px;
        width: 100%;
    }
    .btn-wrap{
        display: flex;
        justify-content: center;
    }
    .hero_btn {
        max-width: 100%;
        text-align: center;
        display: block;
    }
}