.section__registr-business {
    position: relative;
    min-height: 524px;
    padding: 90px 0;
}

.registr-business__bg-wrap {

}

.registr-business__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

.registr-business__wrap {
    position: relative;
    max-width: 486px;
    min-height: 330px;
    background: var(--bg-white-color);
    border-radius: 20px;
    padding: 30px 70px;
    text-align: center;
    z-index: 1;
}

.registr-business__title {
    margin-bottom: 30px;
}

.registr-business__line {
    width: 100px;
    height: 1px;
    border: 1px dashed #D6D6D6;
    margin: 15px auto;
}

.registr-business__btn {
    margin-top: 30px;
}

/*   MEDIA   */

/* 992px */
@media screen and (max-width: 992px) {

}

/* 768px */
@media screen and (max-width: 768px) {

}

/* 576px */
@media screen and (max-width: 576px) {
    .registr-business__wrap {
        padding: 30px 30px 25px 30px;
    }
}

/* 375px */
@media screen and (width: 375px) {
    .section__registr-business {
        padding-top: 125px;
        padding-bottom: 0;
        min-height: unset;
    }

    .registr-business__bg-img {
        width: 100%;
        height: 150px;
        top: 30px;
    }

    .registr-business__title {
        margin-bottom: 5px;
    }

    .registr-business__btn {
        margin-top: 15px;
    }
}