.video-title{
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    color: var(--secondary);

    margin-bottom: 20px;
}
.custom-video{
    width:100%;
    display: block;
    position: relative;
    margin-bottom: 60px;

}
.image-custom-video{
    width: 100%;
}
.image-custom-video img{
    width: 100%;
    height: auto;
}

.customvideo-box{
    width:100%;
    overflow: hidden;

}
.custom-video .button-play{
     position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    opacity: 0.8;

    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    z-index: 2;
}


.custom-video .button-play:before{
    content: "";
    border:3px solid transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.custom-video .button-play svg,
.custom-video .button-play i{
    font-size: 20px;
    color: #FFFFFF;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.custom-video .button-play:hover:before{
    padding: 5px;
    border-color:var(--primary);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.customvideo-box .wrapper{
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .customvideo-box{
        width: 100vw;
        margin-left: -5vw;
    }
    .width-sidebar .main-wrapper .wrapper{
        padding: 0;
    }
    .video-title{
        margin-left: 5vw;
    }
    .custom-video{
        margin-bottom: 30px;
    }
    .video-title{
        font-size: 3.5rem;
        line-height: 3.4rem;
    }
}