.banner {
    width: 100vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background-color: #5914e6;
}

.banner .banner_wrapper_content {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
    display: block;
    position: relative;
    padding: 125px 0 125px;
    text-align: center;
}

.banner .banner_width_form .banner_wrapper_content {
    text-align: left;
}

.banner .banner_width_form {
    display: flex;
    gap: 50px;
    flex-direction: column;
}

.banner .banner_title {
    position: relative;
    display: table;
    margin: auto;
    color: var(--white);
    font-size: clamp(42px, 8vw, 64px);
    font-weight: 700;
    padding-bottom: 15px;
}

.banner .banner_text {
    position: relative;
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    max-width: 900px;
}

@media screen and (min-width: 768px) {
    .banner .banner_width_form {
        flex-direction: row;
        align-items: center;
    }
}