.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 !important;
    color: #FFFFFF;
    line-height: 42px;
    box-sizing: border-box;
    margin-bottom: 50px
}

.center-banner .banner__center .request-button {
    max-width: 300px;
    background: #FFCC00;
	color: #001533
    padding: 10px 35px;
    border-radius: 0px;
    margin: 0 auto;
}

.center-banner .banner__center .request-button:hover {
	background-color: #E6B800; /* The "Golden Hour" hover state */
    color: #001533;
}

@media screen and (max-width:760px) {
    .center-banner .banner__center {
        height: auto !important;
        padding: 40px 0 40px
    }

    .center-banner .banner__center .request-button {
        margin-top: 0px
    }

    .center-banner .banner__center .banner__title {
        font-size: 32px !important;
    }

    .center-banner .banner__center .banner__description {
        font-size: 16px !important;
        line-height: 24px;
    }
}

@media screen and (min-width:760px) and (max-width:1020px) {
    .center-banner .banner__center {
        height: auto !important;
        padding: 40px 0 40px
    }
}

@media screen and (min-width:1020px) and (max-width:1380px) {
    .center-banner .banner__center {
        height: auto !important;
        padding: 200px 0 120px
    }
}