@media (max-width: 1024px) {

    h1 {
        font-size: 2.5em;
        font-weight: 900;
        text-align: center;
    }
    
    h2 {
        font-size: 1.8em;
        font-weight: 900;
        text-align: center;
    }
    
    h3 {
        font-size: 1.5em;
        font-weight: 900;
        text-align: center;
    }

    .cards-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 10vh;
        margin: 0 auto;
        width: 100%;
    }

    .card {
        margin: 0 auto;
        margin-bottom: 2.5em;
        width: 50vw;
    }

    .footer .container .row {
        flex-direction: column;
    }

    .footer-col {
        width: 80%;
        padding: 0 15px;
        margin-bottom: 1em;
     }
}

@media (max-width: 750px) {

    .hero {
        background-image: url(../assets/img/banniereweb.jpg), url(../assets/img/banniereweb.jpg);
        background-position: top left, top right;
        background-repeat: no-repeat, no-repeat;
        background-size: 25%, 25%;
        min-height: 0;
    }

    .info {
        padding: 1em;
        margin: 0 auto;
    }

    .hero img {
        width: 40vw;
      }

    .cards-container {
        margin: 0 auto;
        justify-content: center;
        align-items: center;
    }

    .card {
        margin: 0 auto;
        margin-bottom: 2.5em;
        width: 90%;
    }


}