.video-title{
    font-weight: 800;
    font-size: 5.2rem;
    line-height: 6.8rem;
    font-family: 'Playfair Display', serif;
    color: #343A74;
    margin-bottom: 40px;
}
.custom-video{
    width:95vw;
    display: block;
    margin-left: 5vw;
    position: relative;
    margin-bottom: 100px;
}
.image-custom-video{
    width: 100%;
}
.image-custom-video img{
    width: 100%;
    height: auto;
}

.customvideo-box{
    width: 100vw;
    overflow: hidden;
    margin-left: calc((-100vw + 1128px) / 2 );

}
.custom-video .button-play{
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    color: #343A74;
    display: flex;
    width: 85px;
    height: 85px;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: -13px auto 0;
    top: 50%;
    display: flex;
    background: #FDD173;
    opacity: 0.85;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    align-self: center;

}
.custom-video .button-play:hover{
    background: #343A74;
}
.custom-video .button-play svg{
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    color: #343A74;
    width: 26px;
    height: 26px;


}

.custom-video .button-play:hover svg{
    color: #FDD173;
}
@media only screen and (max-width: 1024px) {
    .customvideo-box{
        margin-left: -5vw;
    }
    .custom-video{
        margin-bottom: 30px;
    }
    .video-title{
        font-size: 3.5rem;
        line-height: 3.4rem;
    }
}