.center-banner {
    width: 100%;
    position: relative;
}
.center-banner .banner__center {
    width: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 700px;
    background: #3a3a3a
}

.center-banner .banner__center .banner__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden
}

.center-banner .banner__center .banner__background img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.center-banner .banner__center .banner__content {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center
}

.center-banner .banner__center .banner__text {
    width: 100%;
    max-width: 1376px;
    text-align: center
}

.center-banner .banner__center .banner__title {
    font-weight: bold;
    font-size: 40px;
    color: #FAFAFC;
    margin-bottom: 30px
}

.center-banner .banner__center .banner__subtitle {
    font-weight: bold;
    font-size: 28px;
    color: #FAFAFC;
    line-height: 36px;
    margin-bottom: 10px;
}

.center-banner .banner__center .banner__description {
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 30px;
    box-sizing: border-box;
    margin-bottom: 50px
}

.center-banner .banner__center .request-button {
    background: #4E4AD9;
}

@media screen and (max-width:760px) {
    .center-banner .banner__center {
        height: auto;
        padding: 40px 0 40px
    }

    .center-banner .banner__center .request-button {
        margin-top: 0px
    }
}

@media screen and (min-width:760px) and (max-width:1020px) {
    .center-banner .banner__center {
        height: auto;
        padding: 40px 0 40px
    }
}

@media screen and (min-width:1020px) and (max-width:1380px) {
    .center-banner .banner__center {
        height: auto;
        padding: 60px 0 60px
    }
}