.box{
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: -1;
}
.box .acard{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    max-width: 65%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 10px;
}
.box .acard .details{
    max-width: 60%;
    padding: 10px;
}
.image{
    max-width: 400px;
    height: 300px;
    overflow: hidden;
}

.image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform: scale(0.8);
}
.image:hover img{
    transform: scale(1);
}
@media (max-width: 768px) {
    .box .acard{
        max-width: 100%;
        height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
    .box .acard .details{
        max-width: 300px;
    }
    .box .acard .image img{
        width: 300px;
        height: 200px;
    }
}