.reveal {
    opacity: 0; 
    transform: translateY(70px); 
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; 
}

.reveal.show {
    opacity: 1;
    transform: translateY(0); 
}

.about{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 100px;
    padding: 0 0 0 20px;
    transition: all 0.3s ease-in-out !important;

}
.about:hover {
    box-shadow: 0 8px 30px var(--box-shadow);
    transform: translateY(-5px) !important; 
}


.about .video-wrapper{
    height: 50vh;
    text-align: end;
    border-radius: 19px;
    border-top-right-radius: 0;
    
}
.about .video-wrapper video {
    max-height: 400px;
    object-fit: cover; 
    border-top-right-radius: 0;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    height: auto;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;

}

@media (max-width:480px) {
    .about .video-wrapper {
        height: 200px;
    }
}