.aligned_ccc__cards {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    padding-bottom: 90px;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 3.2%;
    align-items: stretch;
}

@media screen and (max-width: 991px) {
    .aligned_ccc__cards {
        grid-auto-rows: 1fr;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 60px 3.2%;
    }
}

@media screen and (max-width: 450px) {
    .aligned_ccc__cards {
        grid-template-columns: 1fr;
        gap: 50px 0;
        grid-auto-rows: auto;
        padding-bottom: 0;
    }
}

.aligned_ccc__card:nth-of-type(2n) {
    position: relative;
    /* bottom: -90px; */
}

@media screen and (max-width: 450px) {
    .aligned_ccc__card:nth-of-type(2n) {
        bottom: 0;
    }
}

.aligned_ccc__card--link {
    border-radius: 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    height: 100%;
    width: 100%;
    text-decoration: none;
    padding: 50px 13% 60px;
    /* min-height: 592px; */
}

@media screen and (max-width: 1139px) {
    .aligned_ccc__card--link {
        padding: 50px 6.5% 60px;
    }
}

@media screen and (max-width: 450px) {
    .aligned_ccc__card--link {
        padding: 40px 20px 60px;
        min-height: unset;
    }
}

.aligned_ccc__card--link .circle-link {
    position: absolute;
    bottom: 0;
    left: 18%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.aligned_ccc__card--container {
    height: 100%;
    width: 100%;
    border-radius: 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 13% 60px;
    min-height: 592px;
}

@media screen and (max-width: 1139px) {
    .aligned_ccc__card--container {
        padding: 50px 6.5% 60px;
    }
}

@media screen and (max-width: 450px) {
    .aligned_ccc__card--container {
        padding: 40px 20px 60px;
        min-height: unset;
    }
}

.aligned_ccc__card--image {
    max-height: 200px;
}

.aligned_ccc__card--image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

@media screen and (max-width: 450px) {
    .aligned_ccc__card--image-container {
        margin-bottom: 1.5rem;
    }
}

.aligned_ccc__card--content {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.44px;
}

.aligned_ccc__card--content-heading {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 1.375rem;
    line-height: 1.36;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.aligned_ccc__card--content p {
    margin-bottom: 0;
}

