
/*--------------------------- 
Add Plugin Front-End CSS here 
---------------------------*/
.form_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 2px solid #0080d6;
    padding-bottom: 50px;
    padding-top: 50px;
}
.video_wrap {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    max-height: 650px;
    position: relative;
}
.video_wrap.video_active {
    visibility: visible;
    height: auto;
}
.video_wrap video {
    /*position: absolute;*/
    width: 100%;
    /*top: 44%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    max-height: 651px;
}
.section_lazy_Load_plugin {
    position: relative;
    max-width: 1160px !important;
    max-height: 650px !important;
    height: 100% !important;
    margin-left: auto;
    margin-right: auto;
}
.img_wrap {
    position: relative;
    max-height: 650px;
    overflow: hidden;
}
.banner_img {
    width: 100%;
    max-width: 1160px !important;
    height: auto;
    object-fit: contain;
}
.overlay_images {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*background-color: rgba(0, 0, 0, .3);*/
    /*cursor:pointer;*/
}
.before_img_play {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
}

.overlay_plays {
    background-color: rgba(0, 0, 0, 0.2);
    width: 100px;
    height: 100px;
    opacity: 0;
    border-radius: 50%;
    position: absolute;
    z-index: 12;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .2s ease-in-out opacity;
}
.before_img_play:hover .overlay_plays {

    opacity: 1;
}
.before_img_play img{
    width: 100px;
    max-width: 100px !important;
    position: absolute;
    z-index: 11;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}