section.support{
    padding-top: 50px ;
}


section.support .quote {
    margin-top: 50px ;
    position: relative;
    padding: 100px;
    background-image: url("https://websitedemos.net/accountant-02/wp-content/uploads/sites/907/2018/08/bg-01-free-img.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    /* Ensures the pseudo-element does not overflow the parent */
}

section.support .quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 15, 35, 0.5);
    /* Adds a semi-transparent black overlay */
    filter: blur(5px);
    /* Adjust the blur radius as needed */
    z-index: 1;
    /* Ensures the overlay appears above the background image */
}

section.support .quote>* {
    position: relative;
    z-index: 2;
    /* Ensures content appears above the overlay */
}


section.support .quote h5 {
    font-weight: bold;
    font-size: 18px;
    color: #FFF;
    opacity: 70%;
}

section.support .quote h2 {
    font-weight: bold;
    color: #FFF;
    font-size: 48px;
}

section.support .quote p {
    font-size: 18px;
    color: #FFF;
    opacity: 70%;
    margin-bottom: 50px;
}

section.support .quote a{
    text-decoration: none;
    background-color: #0fa894;
    border: 2px solid #0fa894;
    border-radius: 5px;
    padding: 15px 50px;
    color: #FFF;
    margin-top: 25px;
}

section.support .quote a:hover{
    background-color: #097e6e;
    border: 2px solid #097e6e;

}



@media screen and (max-width:767px) {
    section.support .quote {
        padding: 25px;
    }
    section.support .quote h2 {
        font-size: 38px;
    }
    section.support .quote p{
        font-size: 14px;
    }
}

@media screen and (min-width:767px) and (max-width:1023px) {

}

@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {

}