#promo-section{
    height: max-content;
    background-color: white;
    padding: 50px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#promo-section .bg-promo{
    background: url('../images/bgpromo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed; 
    width: 100%;
    height: 50vh;
    display: block;
    border-radius: 14px;
    padding: 30px 30px;
    color: white;
}

#promo-section .custom-btn-white{
    font-size: 11pt;
    margin-top: 2rem;
}
#promo-section p{
    font-size: 69px;
    margin-bottom: -25px;
}

@media screen and (max-width: 992px) {
    #promo-section p {
        font-size: 44px;
        margin-bottom: -5px;
    }
    #promo-section .bg-promo{
        height: max-content;
    }
    #promo-section .custom-btn-white{
        margin-bottom: 1rem;
    }
}

@media screen and (min-width: 2559px) {
    #promo-section .bg-promo{
        display: flex;
        align-items: start;
        flex-direction: column;
        justify-content: center;
    }
    #promo-section .custom-btn-white{
        font-size: 22pt;
        width: 26rem;
        height: 5rem;
    }
    #promo-section p{
        font-size: 110px;
    }
}