.banner-section > .container {
    border-radius: 15px;
    min-height: 518px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 62px 45px;
}

.banner-section h1 {
    font-family: 'Montserrat';
    font-size: 62px;
    font-weight: 600;
    line-height: 100%;
    color: #333333;
    margin-block: 5px;
    text-transform: lowercase;
}

.banner-section p {
    font-size: 40px;
    line-height: 125%;
    color: #333333;
    text-transform: lowercase;
}

.banner-section a {
    margin-top: 30px;
    height: 58px;
}

@media (max-width: 992px) {
    .banner-section h1 {
        font-size: 40px;
    }
    .banner-section p {
        font-size: 28px;
    }
    .banner-section a {
        margin-top: 20px;
    }
    .banner-section > .container {
        min-height: unset;
        padding: 32px 40px;
    }
}

@media (max-width: 576px) {
    .banner-section h1 {
        font-size: 24px;
    }
    .banner-section p {
        font-size: 18px;
    }
    .banner-section > .container {
        min-height: unset;
        padding: 20px 40px;
    }
}