@charset "UTF-8";
/* Cluster and Education Cards START */
.cluster-card {
    --bs-box-shadow: 0px 3px 1px -2px #00000024, 0px 2px 2px 0px #00000033;
    box-shadow: var(--bs-box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, backgroundColor 2s ease;
    max-width: 400px;
}
.cluster-card:hover, .cluster-card:focus {
    --bs-box-shadow: 3px 3px 15px rgba(var(--bs-black-rgb), .6);
    box-shadow: var(--bs-box-shadow);
    transform: translateY(-4px);
    text-decoration: none;
}
.cluster-card .card-up {
    height: 120px;
    overflow: hidden;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}
.blue-gradient {
    background: linear-gradient(40deg, #003663, #0e4ead);
}
.green-gradient {
    background: linear-gradient(40deg, #0b562b, #1a8922);
}
.cluster-card:hover > .blue-gradient, .cluster-card:focus > .blue-gradient, 
.cluster-card:hover > .green-gradient, .cluster-card:focus > .green-gradient, 
.cluster-card:hover > .card-footer, .cluster-card:focus > .card-footer {
    background: linear-gradient(40deg, #d55c05, #f99000);
}

.cluster-card:hover > .card-footer, .cluster-card:focus > .card-footer {
    background: linear-gradient(40deg, #003663, #0e4ead);
    color: #ffffff;
}


.cluster-card .card-image {
    width: 90%;
    margin-top: -100px;
    overflow: hidden;
    border: 5px solid #fff;
    border-radius: 10px;
    --bs-box-shadow: 0px 3px 1px -2px #00000033, 0px 2px 2px 0px #00000024;
    box-shadow: var(--bs-box-shadow);
}
@media (min-width: 575px) {
    .cluster-card {
        max-width: 350px;
    }
}

@media (min-width: 767px) {
    .cluster-card {
        max-width: 320px;
    }
}

/* Cluster and Education Cards END */