.description_card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: left;
        max-width: 98%;
        background: white;
        padding: 1rem;
        border-radius: 0.75rem;
        border: 2px solid transparent;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        transition: border-color 0.3s ease;
    }

.description_card:hover {
        border-color: #34335D;
}

.description_card_title {
        color: #34335D;
        border-radius: 5px;
        min-height: 70px;
        font-size: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: top;
}
    
    .description_card_text {
        color: #34335D;
        font-size: 1rem;
        display: flex;
        padding:.5rem;
    }

    .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%);
    }
}