/*
Solo para referencia. Estas variables están definidas en style.css
:root {
    --dark-color: #333333;
    --dark-gray-color: #555555;
    --gray-color: #aaaaaa;
    --light-gray-color: #e7e7e7;
    --light-color: #ffffff;
    --primary-color: #1766ae;
    --secondary-color: #f39222;
    --terciary-color: #dd2727;
    --light-shadow: #00000038;
    --dark-blue-color: #183153;
    --transition: 250ms;
    --bold-font: 800;
    --thin-font: 300;
    --font-family-primary: 'Montserrat';
}
*/

.sus {
    width: 100%;
    .sus__content {
        width: 100%;
        padding: 12rem 14vw;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        .sus__box {
            width: 100%;
            max-width: 500px;
            padding: 1.5rem;
            background-color: var(--light-color);
            box-shadow: 5px 5px 10px var(--light-shadow);
        }
    }
}

@media (width <= 512px){
    .sus {
        .sus__content {
            padding: 6rem 4vw;
        }
    }
}