.hero_wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    position: relative; 
    background-image: url(/assets/frontend/img/bg1.png);
}

.hero_wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%; /* Increase width to make it wider */
    height: 120%;
    transform: translate(-50%, -50%); /* Center the video */
    object-fit: cover; /* Ensures the video covers the area */
    z-index: -2;
}

.hero_wrapper .container {
    position: relative; 
    z-index: 1;
}