/*------------------------------------
        	$Banner
------------------------------------*/
.rl-banner {
    /* background-image: url(../../images/default/Main-Banner.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: black;
    min-height: 400px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex; 
    position: relative;
}

.rl-banner-text {
    font-size: calc( 26.4px + 0.5vw);
    font-weight: 300;
    color: #e8e8e8;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1vw;
}

.rl-banner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rl-banner .rl-play-wrapper{
    border-radius: 50%; 
    border: 2px solid #fff;
    background: transparent;
    margin: 0;
    min-width: 40px;
    min-height: 40px; 
    position: absolute;
    width: calc(2.604166666666667vw + 15px); /*80:1920-50:768*/
    height: calc(2.604166666666667vw + 15px);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(0.9);;
}
    .rl-banner .rl-rel:hover .rl-play-wrapper{
        transform: scale(1.0, 1.0);
        background: transparent;
    }

    .rl-banner .rl-play{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: calc(0.8vw + 3.3333333333333335px) 0 calc(0.8vw + 3.3333333333333335px) calc(1.3020833333333335vw + 5px); /*20:1920-10:768, 30:1920-15:768*/
        border-color: transparent transparent transparent rgba(255,255,255,1);
        margin-left: calc( 3.2px + 0.25vw ); 
        /*8-4*/
    }


.rl-title {
    font-size: calc(1.3vw + 24px);
    line-height: 1.2;
    font-weight: 500;
}

.bar {
    display: flex;
}

.bar:before {
    border-left: calc(5px + 0.1vw) solid white;
    height: calc(14px + 0.55vw);
    padding-right: calc(5px + 0.25vw);
    margin-top: 2px;
    content: '';
}


@media screen and (max-width: 991px) {
    .rl-banner-wrapper{
        margin-top: calc(2.1528525296017222vw + 8.665231431646932px);
    }
}

@media screen and (max-width: 767px) {
    .rl-banner-wrapper{
        margin-top: 15px;
    }
}

.rl-bg-dark-theme{
    background-color: #000;
    color: #fff;
}
