section {
    &.center {
        h2{
            text-align: center;
            margin-bottom: 2em;
        }
    }
}

.programs {
    padding-top: 4em;
}

.card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5em;

    > img {
        position: absolute;
        top: 0px;
    }
    
    .content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 1em;
    }
}
    
@media only screen and (width < 1000px) {
    .card-wrapper .content {
        flex-direction: column;
        img{
            display: none;
        }
    }
}

.card {
    flex: 1;
    border-radius: 25px;
    box-shadow: 0 4px 8px 0 rgba(160, 160, 160, 0.2), 0 6px 20px 0 rgba(160, 160, 160, 0.2);
    background-color: var(--cl-secondary);
    position: relative;
    max-width: 310px;
    overflow: hidden;
    padding: 0;

    .body {
        padding: 0 1em 2em;
        display: flex;
        flex-direction: column;

        text-align: center;

        button {
            align-self: center;
            bottom: 1em;
            min-width: 10em;
        }
    }

}

.wave-footer {
    min-width: 100%;
}

