div.section h1.section-title {
    font-weight: 700;
    font-size: 30px;
    color: #2b90cf;
    text-align: center;
    border-bottom: 2px solid #fab515;
    padding-bottom: 0.75rem;
    width: fit-content;
    margin: auto;
}

/* CARDS */
.card-aaz {
    background: #ffffff;
    border: 1px solid #d2d2d2;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    text-align: center;
    padding: 3rem 0.5rem;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 400px;
}

.card-aaz.full-width {
    max-width: 100%;
}

.card-aaz.aaz-blue {
    background-color: #2b90cf;
    color: #fff;
}

.card-aaz.aaz-orange {
    background-color: #fab515;
    color: #fff;
}

.card-aaz.aaz-orange .card-aaz-title,
.card-aaz.aaz-blue .card-aaz-title {
    color: #fff;
}

.card-aaz a {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-aaz .card-aaz-image {
    height: auto;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
}

.card-aaz .card-aaz-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1rem;
}

.card-aaz .card-aaz-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #009fe3;
    margin-bottom: 2rem;
}

.card-aaz.hover {
    transition: 0.15s;
    transform-style: preserve-3d;
}

.card-aaz.hover:hover {
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.card-aaz.hover:hover a * {
    color: #2b90cf !important;
}

@media screen and (max-width: 775px) {
    .card-aaz a {
        flex-direction: column !important;
    }

    .card-aaz a .card-aaz-image {
        width: 100%;
    }

    .card-aaz a .card-aaz-text-content {
        width: 100%;
    }
}

/* BUTTONS */ 
.aaz-button-link {
    font-weight: 700;
    background-color: #2b90cf;
    border-radius: 20px;
    padding: 1rem;
    color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: 0.15s;
    transform-style: preserve-3d;
    margin-top: auto;
    display: flex;
    height: auto;
    width: fit-content;
    border: none;
}
.aaz-button-link:hover {
    color: #fff;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}
