#dsd_info_hero_main_cont {
    text-align: center;
    width: 100vw;
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-image: url("../images/footer/footer_bg.png");
    background-color: rgba(1, 1, 1, 0.6);
    background-size: cover;
    background-blend-mode: multiply;
}
#dsd_info_hero_main_cont > p {
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
}
#dsd_info_hero_card_cont {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.dsd_info_hero_card {
    background-color: var(--distro-light-green-2);
    color: black;
    text-align: center;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15rem;
    height: 10rem;
    border-radius: 0.25rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.75rem;
}
@media screen and (max-width: 860px) and (min-width: 501px) {
    #dsd_info_hero_card_cont {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    #dsd_info_hero_card_cont {
        grid-template-columns: repeat(2, 1fr);
    }
    .dsd_info_hero_card {
        width: 42vw;
        font-size: 1.25rem;
        padding: 0.5rem;
    }
    #dsd_info_hero_main_cont > p:nth-child(2) {
        margin-bottom: 2rem;
    }
    #dsd_info_hero_main_cont > p:nth-child(3) {
        font-size: 2.5rem;
    }
}
