.w-40{
    width: 28%;
}

.w-60{
    width: 67%;
}
.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* .video{
    aspect-ratio: 4/5; 
    object-fit: contain;
} */

.video-wrapper {
  width: 100%;
  height: 610px; /* or whatever height you want */
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 removes white space */
}

@media(max-width:425px){
    .w-40{
        width: 100%;
    }

    .w-60{
        width: 100%;
    }

    .flex{
        flex-direction: column;
    }
}