.parallax {
    background-image: url("../img/quote/banner.jpg");
    opacity: .2;
    transition: all 3s .5s ease;
}

.active .parallax {
    background-image: url("../img/quote/banner.jpg");
    opacity: 1;
    transition: all 3s .5s ease;

}

ul.tabs li {
    display: inline-block;
    position: relative;
}

ul.tabs li::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #e83f3f;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

ul.tabs li:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.news-rowBox {
    margin-bottom: 50px;
}

.videoOn {
    content: url(../img/quote/video.svg);
    width: 50px;
    position: absolute;
    left: 50%;
    margin-left: -25px;

}
