/* ==================== BASE CONTAINER ==================== */

.base {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
}

.backgroung-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    padding: 4rem 4rem;
    margin: 0 auto;
    flex-grow: 1;
    justify-content: center;
    box-sizing: border-box;
}

.padding-2-4 {
    padding: 2rem 4rem;
}

/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 1.5rem;
        justify-content: start;
    }

    .base{
        height: auto;
    }
    
}