.description_card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 98%;
    }

    .description_card_title {
        color: white;
        min-height: 110px;
        font-size: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .crop-box {
        aspect-ratio: 3 / 2;
        overflow: hidden;
        width: 100%;
        margin-top: 3%;
        margin-bottom: 3%;
    }
    
    .crop-box img {
        width:100%;
        height:100%;
        object-fit: cover;
        border-radius: 1rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .crop-box:hover {
        filter: brightness(60%);
    }

@media (max-width: 1024px) {
    .description_card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .description_card_title {
        display: flex;
        min-height: 90px;
        font-size: 1.5rem;

    }
    
    .crop-box {
        aspect-ratio: 3 / 2;
        overflow: hidden;
        width: 100%;
        transition: filter .75s ease;
    
    }
    .crop-box img {
        width:100%;
        height:100%;
        object-fit: cover;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .crop-box:hover {
        filter: brightness(60%);
    }
}

@media (max-width: 780px) {
    .description_card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .description_card_title {
        display: flex;
        min-height: 90px;
        font-size: 2.75rem;

    }
    
    .crop-box {
        aspect-ratio: 3 / 2;
        overflow: hidden;
        width: 100%;
        transition: filter .75s ease;
    
    }
    .crop-box img {
        width:100%;
        height:100%;
        object-fit: cover;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .crop-box:hover {
        filter: brightness(60%);
    }
}