.underline-animation {
    display: inline-block;
    position: relative;
    color: #FF5E1B;
}

.underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FF5E1B;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slick-slide{
    padding:0px 50px;
    text-align:center!important;
}
body{padding-top:126px!important;}
@media screen and (min-width:768px){
    .banner-slider .slick-slide{padding:0px;}
    body{overflow-x:hidden;}
}