/* About Section Image Dimensions */

.absThumb img {
    max-width: 100% !important;
    width: 600px !important;
    height: 900px !important;
    object-fit: cover !important;
}

/* Ensure responsive behavior */
@media (max-width: 991px) {
    .absThumb img {
        width: 100% !important;
        height: 700px !important;
    }
}

@media (max-width: 767px) {
    .absThumb img {
        width: 100% !important;
        height: 500px !important;
    }
}

@media (max-width: 480px) {
    .absThumb img {
        width: 100% !important;
        height: 400px !important;
    }
}

/* Ensure the container doesn't overflow */
.absThumb {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
