.home_video{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    background: rgba(0, 0, 0, .8);
    display: none;
}

.home_video .container_video{
    height: 100%; 
    width: 100%; 
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}

.home_video .container_video .video_close{
    width: 80%;
    display: flex;
    justify-content: flex-end;
}

.home_video .container_video .video_close .i{
   font-size: 30px;
   cursor: pointer;
   opacity: 0.5;
   transition: 0.4s;
   color: #fff;
}


.home_video .container_video .video_close .i:hover{
    opacity: 1;
    transition: 0.4s;
  
 }

.video{
    width: 75%; 
    height: 75%;
}

.body{
    overflow: hidden;
}

@media (max-width: 460px){
    .home_video .container_video{
        height: 100%; 
        width: 100%; 
        justify-content: center;
    }

    .video{
        height: 50%;
    }
}