/*=============================================
Fonts
==============================================*/
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&amp;family=Roboto:wght@300;400;500;700&amp;display=swap');

/*==============================================
Import css
===============================================*/

@import url('all.min.css');
@import url('fontawesome.min.css');
@import url('ionicons.min.css');
@import url('slick.min.css');
@import url('owl.carousel.min.css');
@import url('magnific-popup.min.css');

/*================================================
Moz Selection
================================================*/
:root {
    --primary-color: #28560d;
    --primarydark-color: #24510a;
    --black-color: #221f1f;
    --dark-color: #161616;
    --secondary-color: #cecfd1;
    --grey-color: #f5f5f1;
    --white-color: #ffffff;
    --body-fonts: 'Roboto', sans-serif;
    --title-fonts: 'Jost', sans-serif;
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

::selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

/*================================================
General
================================================*/
body {
    background: var(--dark-color);
    font-family: var(--body-fonts);
    font-size: 1rem;
    font-style: normal;
    font-weight: normal;
    line-height: 2;
    color: var(--secondary-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-fonts);
    color: var(--white-color);
    font-style: normal;
    text-transform: capitalize;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.02em;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 30px;
    font-style: normal;
}

h2 {
    font-size: 36px;
    font-style: normal;
}

h3 {
    font-size: 32px;
    font-style: normal;
}

h4 {
    font-size: 28px;
    font-style: normal;
}

h5 {
    font-size: 24px;
    font-style: normal;
}

h6 {
    font-size: 20px;
    font-style: normal;
}

/*===============================================
HTML Tags
=================================================*/
a,
.button {
    color: var(--primary-color);
    outline: none !important;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

a:focus,
a:hover {
    color: #ffff00;
    outline: none;
    text-decoration: none !important;
}

p {
    margin-bottom: 30px;
}

img {
    max-width: 100%;
    height: auto;
}

pre {
    background: var(--white-color);
    padding: 15px;
    border: 1px solid var(--grey-color);
}

hr {
    margin: 0;
    padding: 0px;
    border-bottom: 1px solid #e0e0e0;
    border-top: 0px;
}

b,
strong {
    font-weight: 600;
}

/*===== Lists (Nested) =====*/
ol,
ul {
    padding-left: 25px;
    margin-bottom: 1em;
}

ol li {
    list-style: decimal;
}

ol ol {
    padding-left: 25px;
}

ul li {
    list-style: inherit;
}

/*===== Definition Lists =====*/
dl dd {
    margin-bottom: 15px;
}

dl dd:last-child {
    margin-bottom: 0px;
}

/*===== Table =====*/
table {
    border: 2px solid #222d42;
    width: 100%;
    margin-bottom: 20px;
}

table td,
table th {
    border: 2px solid #222d42;
    padding: 8px;
    text-align: center;
}

/*===== Input Textarea =====*/
input,
input.form-control {
    background: var(--black-color);
    border: 1px solid var(--black-color);
    color: var(--white-color);
    width: 100%;
    float: left;
    font-size: 16px;
    padding: 0 15px;
    height: 54px;
    line-height: 54px;
    outline: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus {
    border-color: var(--primarydark-color);
    outline: none;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    height: auto;
    float: none;
    margin-right: 5px;
}

textarea {
    background: var(--black-color);
    border: 1px solid var(--black-color);
    color: var(--white-color);
    width: 100%;
    float: left;
    padding: 10px 15px;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

input::placeholder,
textarea::placeholder {
    color: var(--secondary-color);
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: var(--secondary-color);
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: var(--secondary-color);
}

/*===== Select =====*/
select,
select.form-control {
    border: 1px solid var(--black-color);
    color: var(--white-color);
    background: var(--black-color);
    width: 100%;
    float: left;
    padding: 0 30px 0 30px;
    height: 51px;
    line-height: 48px;
    outline: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23999999\' height=\'24\' viewBox=\'0 0 24 24\' width=\'24\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M7 10l5 5 5-5z\'/><path d=\'M0 0h24v24H0z\' fill=\'none\'/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px bottom 50%;
    background-size: 20px 20px;
}

/*======= Library ========*/

.vbelibrary form input {
    margin-bottom: 30px;
}

.vbelibrary form label {
    display: block;
}

.vbelibrary form .form-button {
    margin-bottom: 30px;
}

/*============================================
Section
==============================================*/

section,
.vbesection-padding {
    padding: 130px 0px 130px 0px;
}

.vbesection-padding-2 {
    padding: 110px 0px 60px 0px;
}

.vbesection-padding-3 {
    padding: 110px 0px 90px 0px;
}

@media (max-width:767px) {

    section,
    .vbesection-padding {
        padding: 100px 0px 60px 0px;
    }
}

@media (max-width:767px) {
    .vbesection-padding-3 {
        padding: 100px 0px 60px 0px;
    }
}

/*=========================================
Container
===========================================*/

.container {
    max-width: 1710px;
}

@media (max-width: 1699px) {
    .container {
        max-width: 95%;
    }
}

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 1023px) {
    .container {
        max-width: 100%;
    }
}

.container-2 {
    max-width: 1300px;
}


/*======Border=======*/

.vbetop-border {
    border-top: 1px solid #141B29;
}


/*================================================
Back to Top
================================================*/
#back-to-top .top {
    position: fixed;
    bottom: 75px;
    right: 30px;
    margin: 0px;
    color: var(--white-color);
    background: var(--primary-color);
    z-index: 999;
    border: 1px solid var(--primary-color);
    font-size: 26px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    -webkit-border-radius: 00px;
    -moz-border-radius: 00px;
    border-radius: 00px;
}

#back-to-top .top:hover {
    background: var(--primarydark-color);
    color: var(--white-color);
    border: 1px solid var(--primarydark-color);
}


/*================================================
Button Core
================================================*/
input[type="button"],
[type="reset"],
[type="submit"] {
    padding: 12px 30px;
    font-family: var(--title-fonts);
    font-size: 16px;
    background: var(--primary-color);
    color: var(--white-color);
    text-transform: capitalize;
    color: var(--white-color) !important;
    display: inline-block;
    border: none;
    width: auto;
    height: auto;
    line-height: 2;
    text-transform: uppercase;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
    color: var(--white-color) !important;
}

.vbebutton {
    text-transform: uppercase;
    position: relative;
    width: auto;
    font-weight: 400;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-size: 16px;
    padding: 5px 20px;
    line-height: 2;
    vertical-align: middle;
    border: none;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    margin: 10px;
}

.vbebutton-flat {
    padding: 5px 30px;
}

.vbebutton span {
    z-index: 9;
    position: relative;
}

.vbebutton i {
    margin-right: 10px;
}

.vbebutton:hover,
.vbebutton:focus {
    color: var(--white-color);
    background: var(--primarydark-color);
}

/*===== Button link =====*/
.vbebutton.vbebutton-link {
    padding: 0;
    background: transparent;
    color: var(--white-color);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.vbebutton.vbebutton-link:hover {
    color: var(--white-color);
}

.vbebutton.vbebutton-link i {
    margin-right: 10px;
    height: 56px;
    width: 56px;
    display: inline-block;
    line-height: 56px;
    background: var(--white-color);
    color: var(--primary-color);
    text-align: center;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.vbebutton.vbebutton-link:hover i {
    background: var(--primary-color);
    color: var(--white-color);
}

/*===== Button outline =====*/
.vbebutton.vbebutton-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.vbebutton.vbebutton-outline:hover {
    color: var(--blue-color);
    border: 1px solid var(--blue-color)
}

/*================================================
Single Tv Show
===============================================*/
.vbetv-show-top {
    margin: 90px 0;
}

.vbeseason-holder {
    margin-bottom: 60px;
}

.vbeseason-holder .nav {
    margin: 0 0 30px 0;
}

.vbeseason-holder .nav li {
    margin: 0 15px 0 0;
}

.vbeseason-holder .nav li:last-child {
    margin-right: 0;
}

.vbeseason-holder .nav li a {
    background: var(--black-color);
    color: var(--white-color);
    padding: 12px 45px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.vbeseason-holder .nav li a.active {
    background: var(--primary-color);
    color: var(--white-color);
}

@media(max-width:1023px) {
    .vbeseason-holder .nav {
        margin: 30px 0;
    }
}

/*================================================
Single Tv Season
===============================================*/
.single-episode .vbesingle-tv-show-info,
.single-video .vbesingle-video-info {
    margin-bottom: 60px;
    margin-top: 30px;
    display: inline-block;
    width: 100%;
}

.vbeepisode-contain .vbeepisode-img {
    position: relative;
    overflow: hidden;
}

.vbeepisode-contain .vbeepisode-img:before {
    content: "";
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    opacity: 0.4;
    background: rgb(12, 17, 27);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.vbeepisode-contain:hover .vbeepisode-img:before {
    opacity: 0.9;
}

.vbeepisode-contain:hover .vbeinfo-contain {
    border-bottom: 3px solid var(--primary-color);
}

.vbeepisode-contain .vbeepisode-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.vbeepisode-contain:hover .vbeepisode-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.vbeepisode-contain .vbeepisode-img .vbemovie-action {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9;
}

.vbeepisode-contain .vbeepisode-img .vbemovie-action .vbebutton {
    border-radius: 900px;
    padding: 0;
    width: 60px;
    height: 60px;
    opacity: 0;
    display: inline-block;
    line-height: 60px;
    text-align: center;
}

.vbeepisode-contain .vbeepisode-img .vbemovie-action .vbebutton i {
    margin: 0;
    padding: 0;
}

.vbeepisode-contain:hover .vbeepisode-img .vbemovie-action .vbebutton {
    opacity: 1;
}

.vbeepisode-contain .vbeepisode-info h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tab-content .vbesingle-meta-holder ul {
    margin: 0 0 0;
    padding: 0;
    display: flex;
    list-style: none;
}

.tab-content .vbesingle-meta-holder ul li {
    list-style: none;
    margin: 10px 15px 0px 0;
    padding: 0;
    font-size: 14px;
    line-height: normal;
    display: flex;
    align-items: center;
    color: var(--white-color);
}

.tab-content .vbesingle-meta-holder ul li.release-date {
    color: var(--white-color);
    background: var(--primary-color);
    padding: 2px 5px;
}

.tab-content .vbesingle-meta-holder ul li:last-child {
    border-right: 0;
    margin-right: 0;
}

/*================================================
Quote From
===============================================*/
.vbeform input[type="text"],
.vbeform textarea,
.vbeform input[type="email"] {
    width: 100%;
    margin-bottom: 30px;
}


/*================================================
Table
===============================================*/
.vbecomparison-table .table.table-striped {
    margin: 0;
}

.vbecomparison-table .table th,
.vbecomparison-table .table td {
    padding: 15px 5px;
    color: var(--white-color);
}

.vbecomparison-table .table-bordered th,
.vbecomparison-table .table-bordered td {
    border: 1px solid #222d42;
    background: var(--black-color);
}

.vbecomparison-table .table-bordered thead th {
    background-color: var(--primary-color);
}

.vbecomparison-table .table-bordered thead th,
.vbecomparison-table .table-bordered thead td {
    border-color: #222d42;
}

.vbecomparison-table .table-striped tbody tr:nth-of-type(odd) {
    background: #222d42;
}

.vbecomparison-table .table-striped tbody tr td:first-child {
    font-weight: 600;
    font-family: var(--title-fonts);
}

.vbecomparison-table .table-striped thead tr th {
    font-weight: 600;
    font-family: var(--title-fonts);
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
}

.vbecomparison-table .table-striped tbody tr:first-child td span:first-child {
    font-weight: 600;
    font-family: var(--title-fonts);
    font-size: 32px;
    line-height: 40px;
}

.vbecomparison-table .vbebutton {
    white-space: nowrap;
}

.vbecomparison-table .cell-inner i {
    font-size: 24px;
    line-height: 32px;
}

@media(max-width:1023px) {

    .vbecomparison-table .table th,
    .vbecomparison-table .table td {
        padding: 15px;
    }

    .vbecomparison-table .table-bordered thead th:first-child {
        min-width: 300px;
        line-height: normal;
        display: inline-block;
        min-height: 65px;
    }
}

/*================================================
Login, Register
===============================================*/
.vbelogin-page-background,
.vberegister-page-background,
.recover-password-page-background {
    filter: blur(6px);
    -webkit-filter: blur(6px);
    background-size: cover !important;
    background-position: center center !important;
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.vbelogin-page-background:before,
.vberegister-page-background:before,
.recover-password-page-background:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: rgb(10, 14, 23);
    background: linear-gradient(90deg, rgba(10, 14, 23, 0.6) 0%, rgba(10, 14, 23, 0.6) 100%);
    z-index: 9;
}

.vbepms-login .content-area .site-main,
.vbepms-login .content-area .site-main,
.vbepms-recover-password .content-area .site-main {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

#pms_login {
    padding: 30px;
    background: var(--dark-color);
    position: relative;
    z-index: 9;
    width: 500px;
    display: inline-block;
    text-align: left;
}

#pms_login strong {
    font-weight: 400;
}

#pms_login h4,
#pms_register-form h4,
#pms_recover_password_form h4 {
    border-bottom: 1px solid var(--black-color);
    position: relative;
    margin: 0px 0 20px 0;
    padding: 0 0 10px 0;
    text-transform: uppercase;
}

#pms_login h4:before,
#pms_register-form h4:before,
#pms_recover_password_form h4:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    display: inline-block;
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

#pms_login p {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
}

#pms_login p.login-submit {
    margin-bottom: 0;
}

#pms_login p label {
    margin: 0;
    font-family: var(--title-fonts);
    color: var(--white-color);
    font-weight: 400;
    line-height: 26px;
    font-size: 18px;
}

/*==========*/
.vbepms-register .content-area .site-main {
    display: flex;
    align-items: center;
    text-align: center;
    height: 100vh;
}

#pms_register-form {
    padding: 30px;
    background: var(--dark-color);
    position: relative;
    z-index: 9;
    width: 750px;
    display: inline-block;
    text-align: left;
}

form#pms_register-form.pms-form ul.pms-form-fields-wrapper li label {
    margin: 0;
    font-family: var(--title-fonts);
    color: var(--white-color);
    font-weight: 400;
    line-height: 26px;
    font-size: 18px;
}

form#pms_register-form.pms-form ul.pms-form-fields-wrapper li {
    display: inline-block;
    width: 48%;
    float: left;
    margin-bottom: 15px;
    position: relative;
}

form#pms_register-form.pms-form ul.pms-form-fields-wrapper li:nth-child(even) {
    float: right;
}

form#pms_register-form.pms-form ul.pms-form-fields-wrapper li.pms-field.pms-field-subscriptions {
    width: 100%;
}

#pms_register-form .pms-subscription-plan {
    margin-bottom: 0;
    margin-top: 15px;
}

#pms_register-form #pms-paygates-wrapper {
    margin-bottom: 0;
    margin-top: 15px;
}

#pms_register-form #pms-paygates-inner label input.pms_pay_gate {
    margin-left: 15px;
}

.pms_field-errors-wrapper {
    position: absolute;
    left: 15px;
    bottom: 15px;
}

.pms_field-errors-wrapper p {
    margin: 0;
}

/*==========*/
#pms_recover_password_form {
    padding: 30px;
    background: var(--dark-color);
    position: relative;
    z-index: 9;
    width: 500px;
    display: inline-block;
    text-align: left;
}

#pms_recover_password_form ul.pms-form-fields-wrapper li {
    display: inline-block;
    width: 100%;
}

#pms_recover_password_form ul.pms-form-fields-wrapper li label {
    margin: 0;
    font-family: var(--title-fonts);
    color: var(--white-color);
    font-weight: 400;
    line-height: 26px;
    font-size: 18px;
}

/*==========*/
.Vbeworldnewsthemes-contain .pms-account-navigation ul {
    margin: 0 0 30px 0 !important;
}

.Vbeworldnewsthemes-contain .pms-account-navigation ul li a {
    background: var(--black-color);
    font-family: var(--title-fonts);
    font-weight: normal;
    color: var(--white-color);
    padding: 12px 45px;
    box-shadow: none !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.Vbeworldnewsthemes-contain .pms-account-navigation ul li a.pms-account-navigation-link--active {
    box-shadow: none !important;
    background: var(--primary-color);
    color: var(--white-color)
}

#pms_new_subscription-form {
    padding: 30px;
    background: var(--black-color);
    position: relative;
    z-index: 9;
    width: 500px;
    display: inline-block;
    text-align: left;
}

#pms_new_subscription-form ul.pms-form-fields-wrapper li {
    margin: 0;
}

#pms_new_subscription-form ul.pms-form-fields-wrapper li .pms-subscription-plan {
    margin-bottom: 15px;
}

/*==========*/
form#pms_edit-profile-form.pms-form ul.pms-form-fields-wrapper li {
    width: 32.1111%;
    float: left;
    display: inline-block;
    margin-right: 30px;
}

form#pms_edit-profile-form.pms-form ul.pms-form-fields-wrapper li:nth-child(3),
form#pms_edit-profile-form.pms-form ul.pms-form-fields-wrapper li:nth-child(6) {
    margin-right: 0;
}

@media(max-width:1399px) {
    form#pms_edit-profile-form.pms-form ul.pms-form-fields-wrapper li {
        width: 31%;
    }
}

@media(max-width:1023px) {
    #pms_register-form {
        width: 100%;
    }
}

@media(max-width:979px) {
    form#pms_edit-profile-form.pms-form ul.pms-form-fields-wrapper li {
        width: 30.66%;
    }
}

@media(max-width:767px) {

    .vbepms-login .content-area .site-main,
    .vbepms-register .content-area .site-main {
        height: inherit;
    }

    #pms_login,
    #pms_register-form,
    #pms_recover_password_form,
    #pms_new_subscription-form {
        width: 100%;
        padding: 30px 15px;
    }

    form#pms_register-form.pms-form ul.pms-form-fields-wrapper li {
        width: 100%;
    }

    #pms_login h4,
    #pms_register-form h4,
    #pms_recover_password_form h4 {
        font-size: 20px;
        line-height: 28px;
    }

    form#pms_edit-profile-form.pms-form ul.pms-form-fields-wrapper li {
        width: 100%;
        margin-right: 0;
    }

    .Vbeworldnewsthemes-contain .pms-account-navigation ul li a {
        display: inline-block;
        width: 100%;
        text-align: center;
    }
}


/*================================================
Pricing Plan
================================================*/
.vbeprice-block {
    background: var(--black-color);
    overflow: hidden;
}

.vbeprice-block.active .vbeprice-detail {
    background: var(--primary-color);
}

.vbeprice-block .vbeprice-detail {
    position: relative;
    padding: 30px;
    background: var(--black-color);
    z-index: 9;
    color: var(--white-color);
}

.vbeprice-block .vbeprice-detail .vbeprice-title {
    font-size: 22px;
    letter-spacing: 4px;
    color: var(--white-color);
    font-family: var(--title-fonts);
}

.vbeprice-block .vbeprice-detail .price {
    color: var(--white-color);
    font-size: 60px;
    line-height: normal;
}

.vbeprice-block .vbeprice-detail .vbeprice-duration {
    font-size: 18px;
    line-height: 26px;
    color: var(--white-color);
    font-weight: normal;
    margin-bottom: 0;
}

.vbeprice-block .vbebg-effect {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-bottom: 0 !important;
    z-index: -1;
    opacity: 0.2;
}

.vbeprice-block .vbelist-info {
    margin: 0;
    padding: 30px;
}

.vbeprice-block .vbelist-info li {
    list-style: none;
    line-height: 45px;
    color: var(--white-color);
    font-size: 18px;
}

.vbeprice-block .vbelist-info li del {
    color: var(--secondary-color);
}

.vbeprice-block .vbebutton {
    margin-bottom: 30px;
}


@media (max-width:1190px) {
    .vbeprice-block .vbeprice-detail .price {
        font-size: 54px;
    }
}

@media (max-width:979px) {
    .vbeprice-block .vbeprice-detail .price {
        font-size: 48px;
    }
}

@media(max-width:767px) {
    .vbeprice-block .vbelist-info li {
        line-height: 24px;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .vbeprice-block .vbelist-info li:last-child {
        margin-bottom: 0;
    }

    .vbeprice-block .vbelist-info {
        padding: 30px 15px;
    }

    .vbeprice-block .vbeprice-detail .price {
        font-size: 40px;
    }

    .vbeprice-block .vbeprice-detail {
        padding: 15px;
    }
}


/*================================================
Blog Sidebar
================================================*/
.widget {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    float: left;
    position: relative;
    padding: 30px;
    background: var(--black-color);
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.widget:last-child {
    margin-bottom: 0;
}

/*+++++ Widget Title +++++*/
.widget .widget-title {
    margin-bottom: 15px;
    padding: 0;
    font-size: 24px;
    position: relative;
    line-height: 32px;
}

/*+++++ SideBar - Search +++++*/
.widget.widget_search .widget-title {
    color: var(--white-color);
}

.widget.widget_search .widget-title:before {
    background: var(--white-color);
}

.widget.widget_search input {
    border: 1px solid transparent;
    color: var(--dark-color);
    background: var(--white-color);
}

.widget.widget_search input:focus,
.widget.widget_search input:hover {
    border: 1px solid transparent;
    color: var(--primary-color);
}

.widget.widget_search input::placeholder {
    color: var(--dark-color);
}

.widget.widget_search input:-ms-input-placeholder {
    color: var(--dark-color);
}

.widget.widget_search input::-ms-input-placeholder {
    color: var(--dark-color);
}

.search-form {
    position: relative;
}

.search-form label {
    width: 100%;
    margin-bottom: 0;
    float: left;
    width: 100%;
}

.search-submit {
    border: none;
    padding: 0;
    position: absolute;
    text-align: center;
    color: var(--white-color) !important;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.search-submit:before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}

.search-submit:hover {
    color: var(--white-color) !important;
    background: var(--primarydark-color);
    outline: none;
}


/*+++++ SideBar - Recent Comments +++++*/
.widget.widget_recent_comments #recentcomments li,
.widget.widget_recent_comments ul li {
    padding-left: 20px;
    position: relative;
}

.widget.widget_recent_comments #recentcomments li.recentcomments span a,
.widget.widget_recent_comments ul li.recentcomments span a {
    color: var(--white-color);
}

.widget.widget_recent_comments #recentcomments li.recentcomments a:before,
.widget.widget_recent_comments ul li.recentcomments a:before {
    display: none;
}

.widget.widget_recent_comments #recentcomments li.recentcomments a,
.widget.widget_recent_comments ul li.recentcomments a {
    color: var(--primary-color);
}

.widget.widget_recent_comments #recentcomments li.recentcomments a:hover,
.widget.widget_recent_comments ul li.recentcomments a:hover {
    color: var(--primary-color);
    text-decoration: underline !important;
}

.widget.widget_recent_comments ul li:before,
.widget.widget_recent_comments ul li:before {
    content: '\f27a';
    font-size: 12px;
    top: 10px;
    font-weight: 600;
}

.widget.widget_archive ul>li a:before {
    left: 0;
    top: 5px;
    font-size: 10px;
}

.widget.widget_archive ul li {
    font-weight: 400;
    color: var(--primary-color);
}

/*+++++  SideBar Calendar  +++++*/
.widget_calendar table caption {
    caption-side: inherit;
    padding: 0 0 10px;
    color: var(--white-color);
    font-weight: 600;
}

.widget_calendar table#wp-calendar {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
    background: var(--dark-color);
}

.widget_calendar .calendar_wrap td#today {
    background: var(--primary-color);
    color: var(--white-color);
}

.widget_calendar .calendar_wrap td#today a {
    color: var(--white-color);
}

.widget_calendar .calendar_wrap table th {
    background: var(--dark-color);
    color: var(--white-color);
}

.widget_calendar .calendar_wrap table th,
.widget_calendar .calendar_wrap table td {
    padding: 8px;
    text-align: center;
}

/*+++++  widget_categories  +++++*/
.widget.widget_categories ul li>a {
    padding-left: 30px;
}

.widget.widget_categories ul>li a:before {
    left: 0;
    top: 4px;
    content: '\f07c';
    font-weight: 400;
    font-size: 14px;
}

.widget_categories ul>li:last-child {
    margin-bottom: 0;
}

/*+++++  Meta - widget RSS +++++*/
.widget.widget_rss ul li {
    margin-bottom: 30px;
}

.widget.widget_rss ul li:last-child {
    margin-bottom: 0;
}

.widget.widget_rss ul li a {
    padding-left: 0;
    font-size: 16px;
    color: var(--white-color);
    font-weight: 600;
    font-family: var(--title-fonts);
}

.widget.widget_rss ul li a:hover {
    color: var(--primary-color);
}

.widget.widget_rss ul li a:before {
    display: none;
}

.widget.widget_rss ul li cite {
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}

.widget.widget_rss ul li .rss-date {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1;
    float: left;
    display: inline-block;
    width: 100%;
    margin: 5px 0;
}

/*+++++ widget Nav Menu +++++*/
.widget.widget_nav_menu ul li .sub-menu,
.widget ul.menu li .sub-menu {
    display: block !important;
    padding-left: 15px;
    margin-top: 15px;
}

/*+++++  SideBar - widget Recent Entries +++++*/
.widget_recent_entries ul li .post-date {
    font-weight: 600;
    color: var(--dark-color);
}

/*+++++ SideBar - Tags +++++*/
.widget_tag_cloud .tag-cloud-link {
    font-size: 14px !important;
    background: var(--dark-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    float: left;
    color: var(--white-color);
    padding: 2px 12px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 1px solid var(--dark-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

.widget_tag_cloud .tag-cloud-link:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

/*+++++ widget Dropdown +++++*/
.widget select,
.widget select.form-control {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

@media(max-width:1023px) {
    .sidebar.widget-area {
        margin-top: 45px;
    }
}

/*===== Comments Box =====*/
.comment-respond {
    margin-top: 0;
    display: inline-block;
    width: 100%;
}

.commentlist .comment .comment-respond {
    margin-bottom: 15px;
}

.vbecomment-area .comments-title,
.comment-respond .comment-reply-title {
    padding-top: 45px;
    position: relative;
    margin: 0;
    padding-bottom: 0;
}

.comment-respond .comment-reply-title a {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 60%;
    margin-left: 30px;
}

.comment-respond .comment-reply-title a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.commentlist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.commentlist .comment {
    margin-top: 30px;
    margin-bottom: 0;
    vertical-align: top;
    padding: 0;
    list-style: none;
}

.commentlist .vbecomment-info {
    padding: 30px;
    border: 1px solid var(--black-color);
    position: relative;
    background: var(--black-color);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.commentlist ol.children {
    padding-left: 60px;
}

.commentlist .vbecomment-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.commentlist .vbecomment-avatar {
    padding-right: 15px;
}

.commentlist .vbecomment-avatar img {
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.commentlist .vbecomment-box {
    position: relative;
    display: inline-block;
    width: 100%;
}

.commentlist .vbecomment-box .title:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.commentlist .comment-content p {
    margin: 0;
}

.commentlist .vbecomment-info .reply a {
    position: absolute;
    right: 30px;
    top: 30px;
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
}

.commentlist .vbecomment-info .reply a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.no-comments,
.comment-awaiting-moderation {
    font-style: italic;
    margin: 15px 0;
}

/*===== Comments Form =====*/
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
    padding: 0;
    margin: 0 0 30px;
}

.comment-respond .comment-form-comment {
    margin-top: 0;
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    float: left;
}

.comment-respond .comment-form-author,
.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
    float: left;
    width: 33.11111%;
    display: inline-block;
    margin: 0 15px 30px 0;
    width: 100% !important;
}

.comment-respond .comment-form-url {
    margin-right: 0;
}

.comment-respond .form-submit {
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
    float: left;
}

.commentlist .comment-respond .comment-form-author,
.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
    width: 32.2222%;
    float: left;
}

/*===== Comments Form =====*/
ol.commentlist .pingback,
ol.commentlist .trackback {
    margin-left: 25px;
}

/*================================================
Blog
================================================*/
.vbeblog-contain .wp-block-group.has-background {
    color: var(--black-color);
    padding: 30px;
}

.vbeblog-contain .wp-block-media-text.has-background {
    color: var(--black-color);
}

.single-post .vbeblog-post {
    margin-bottom: 0;
}

.vbeblog-post {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    background: var(--black-color);
}

.vbeblog-post .vbepost-media {
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
}

.vbeblog-post .vbepost-media img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.vbeblog-post:hover .vbepost-media img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.vbeblog-post .vbeblog-contain {
    padding: 30px;
    display: inline-block;
    position: relative;
    width: 100%;
}

.vbeblog-col-3 .vbeblog-post .vbeblog-contain .vbeblog-title {
    font-size: 22px;
    line-height: 30px;
}

.vbeblog-post .vbeblog-contain .vbeblog-title {
    font-size: 16px;
    line-height: 18px;
    margin: 0 0 5px;
}

.vbeblog-post .vbepost-meta ul {
    margin: 0 0 15px;
    padding: 0;
    width: 100%;
    display: -ms-flexbox !important;
    display: flex !important;
}

.vbeblog-post .vbepost-meta ul li {
    list-style: none;
    float: left;
    display: inline-block;
    margin-right: 20px;
    align-self: center !important;
    font-family: var(--title-fonts);
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
}

.vbeblog-post .vbepost-meta ul li:last-child {
    margin-right: 0;
}

.vbeblog-post .vbepost-meta ul li a {
    color: var(--white-color);
}

.vbeblog-post .vbepost-meta ul li a:hover {
    color: var(--primary-color);
}

.vbeblog-post .vbepost-meta ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

@media(max-width:1399px) {

    .comment-respond .comment-form-author,
    .comment-respond .comment-form-email,
    .comment-respond .comment-form-url {
        float: left;
        width: 31.66%;
    }
}

@media(max-width:767px) {
    .commentlist ol.children {
        padding-left: 30px;
    }

    .commentlist .vbecomment-info {
        padding: 15px;
    }

    .commentlist .vbecomment-info .reply a {
        right: 15px;
        top: 15px;
    }

    .comment-respond .comment-form-author,
    .comment-respond .comment-form-email,
    .comment-respond .comment-form-url {
        width: 100%;
        margin-right: 0;
    }

    .commentlist .vbecomment-avatar {
        width: 90px;
    }
}

@media(max-width:479px) {
    .commentlist .vbecomment-wrap {
        display: -ms-flexbox;
        display: inline-block;
        -ms-flex-align: start;
        align-items: inherit;
        width: 100%;
    }

    .commentlist .vbecomment-avatar {
        margin: 0 0 15px 0;
    }

    .vbeblog-post .vbeblog-contain {
        padding: 15px;
    }

    .vbeblog-post .vbepost-meta ul {
        display: inline-block !important;
        margin-bottom: 5px;
    }

    .vbeblog-post .vbepost-meta ul li {
        font-size: 14px;
        margin-bottom: 5px;
    }
}


/*================================================
Pagination
================================================*/
.vbepagination .page-numbers {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vbepagination .page-numbers li:first-child .page-numbers {
    margin-left: 0;
}

.vbepagination .page-numbers li .page-numbers {
    position: relative;
    display: block;
    padding: 0px 08px;
    height: 30px;
    width: 30px;
    text-align: center;
    margin: 0 5px;
    color: var(--white-color);
    background-color: var(--black-color);
    border: 2px solid var(--black-color);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.vbepagination .page-numbers li .page-numbers:hover {
    color: var(--white-color);
    text-decoration: none;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 2;
}

.vbepagination .page-numbers li .page-numbers:focus {
    box-shadow: none;
    outline: 0;
    z-index: 2;
}

.vbepagination .page-numbers li .page-numbers:not(:disabled):not(.disabled) {
    cursor: pointer
}

.vbepagination .page-numbers li .page-numbers.current {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 1;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.vbepagination .page-numbers li .next.page-numbers,
.vbepagination .page-numbers li .prev.page-numbers {
    width: auto;
}

@media(max-width:767px) {

    .vbepagination .page-numbers li .next.page-numbers,
    .vbepagination .page-numbers li .prev.page-numbers {
        width: auto;
        display: none;
    }
}

@media(max-width:767px) {
    .vbepagination .page-numbers li .page-numbers {
        padding: 0px 10px;
        height: 45px;
        width: 45px;
        line-height: 42px;
    }
}

/*================================================
Home Blog
================================================*/
.vbeblog .swiper-container .vbeblog-post {
    margin-bottom: 0;
}

.vbeblog .swiper-container .vbeblog-post .vbepost-media .menu {
    display: none;
}

.vbeblog .vbeblog-post .vbeblog-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vbeblog .swiper-container .vbeblog-post .vbeblog-contain .vbeblog-title {
    font-size: 24px;
    line-height: 32px;
}

/*================================================
Breadcrum
================================================*/
.vbebreadcrumb {
    background: var(--black-color);
    color: var(--white-color);
    padding: 90px 0;
    text-align: center;
    position: relative;
    background-attachment: fixed !important;
}

.vbebreadcrumb:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.vbebreadcrumb-container {
    display: inline-block;
}

.vbebreadcrumb .vbebreadcrumb-title h1 {
    font-size: 56px;
    line-height: 64px;
    margin-bottom: 15px;
    color: var(--white-color);
}

.vbebreadcrumb-container .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.vbebreadcrumb-container .breadcrumb li {
    text-transform: capitalize;
    list-style-type: none;
    margin-right: 15px;
    padding-left: 0;
    align-items: center;
}

.vbebreadcrumb-container .breadcrumb li.active {
    color: #c9c9c9;
}

.vbebreadcrumb-container .breadcrumb li a {
    color: var(--white-color);
}

.vbebreadcrumb-container .breadcrumb li a:hover {
    color: var(--primary-color);
}

.vbebreadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "\f125";
    font-size: 12px;
    font-family: "Ionicons";
    padding-right: 15px;
}

.vbeyoest-breadcumbs #breadcrumbs {
    margin: 0;
    padding: 0;
}

.vbeyoest-breadcumbs #breadcrumbs span {
    color: var(--dark-color);
}

.vbeyoest-breadcumbs #breadcrumbs span a {
    padding: 0 5px;
}

.vbeyoest-breadcumbs #breadcrumbs span strong {
    font-weight: 400;
    padding-left: 5px;
}

@media(max-width:1023px) {
    .vbebreadcrumb {
        text-align: center;
    }

    .vbebreadcrumb .vbebreadcrumb-title h1 {
        font-size: 42px;
        line-height: 50px;
    }

    .vbebreadcrumb-container .breadcrumb {
        display: inline-flex;
    }

    .vbebreadcrumb-img.text-right {
        text-align: center !important;
    }
}

@media(max-width:767px) {
    .vbebreadcrumb .vbebreadcrumb-title h1 {
        font-size: 34px;
        line-height: 42px;
    }

    .vbebreadcrumb-container .breadcrumb li,
    .vbebreadcrumb-container .breadcrumb li i {
        font-size: 14px;
    }

    .vbebreadcrumb-container .breadcrumb li {
        margin-right: 10px;
    }

    .vbebreadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
        padding-right: 10px;
        font-size: 12px;
    }
}

/*================================================
Header
================================================*/
.animated {
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

header#vbeheader {
    position: relative;
    display: inline-block;
    width: 100%;
    clear: both;
    background: var(--dark-color);
    z-index: 99;
}

header#vbeheader.vbeheader-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

/*===== Header Top Bar =====*/
header#vbeheader .vbetop-header {
    background: var(--dark-color);
    padding: 0;
    font-size: 14px;
}

header#vbeheader .vbetop-header .vbeheader-contact.text-right ul {
    float: right;
}

header#vbeheader .vbetop-header .vbeheader-contact ul {
    margin: 0;
    padding: 0;
}

header#vbeheader .vbetop-header .vbeheader-contact ul li {
    list-style: none;
    display: inline-block;
    color: var(--white-color);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    float: left;
}

header#vbeheader .vbetop-header .vbeheader-contact ul li:last-child {
    margin-right: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header#vbeheader .vbetop-header .vbeheader-contact ul li i {
    margin-right: 10px;
}

header#vbeheader .vbetop-header .vbeheader-contact ul li a {
    color: var(--white-color);
}

header#vbeheader .vbetop-header .vbeheader-contact ul li a:hover {
    color: var(--white-color);
    background: transparent;
}

header#vbeheader .vbetop-header .text-right .vbeheader-social ul,
header#vbeheader .vbetop-header .vbeheader-social.text-right ul {
    float: right;
}

header#vbeheader .vbetop-header .vbeheader-social ul {
    margin: 0;
    padding: 0;
}

header#vbeheader .vbetop-header .vbeheader-social ul li {
    list-style: none;
    display: inline-block;
    float: left;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header#vbeheader .vbetop-header .vbeheader-social ul li a {
    color: var(--white-color);
    padding: 10px 20px;
    display: inline-block;
}

header#vbeheader .vbetop-header ul li a:hover {
    color: var(--white-color);
    background: var(--primary-color)
}

header#vbeheader .vbetop-header .vbeheader-social ul li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/*===== Logo =====*/
header#vbeheader .vbebottom-header .navbar .navbar-brand {
    line-height: 80px;
}

header#vbeheader .vbebottom-header .navbar .navbar-brand img {
    height: 90px;
}

/*===== Header Navbar Bar =====*/
header#vbeheader .vbebottom-header {
    min-height: 90px;
}

header#vbeheader .vbebottom-header .navbar {
    padding: 0;
}

header#vbeheader .vbebottom-header .navbar .vbemenu-contain {
    display: inline-block;
    width: 100%;
}

header#vbeheader .vbebottom-header .navbar .navbar-nav {
    float: right;
}

header#vbeheader .vbebottom-header .navbar .navbar-nav li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 30px;
    color: var(--white-color);
    line-height: 90px;
    font-weight: 600;
}

header#vbeheader .vbebottom-header .navbar .navbar-nav li:last-child {
    margin-right: 0;
}

header#vbeheader .vbebottom-header .navbar .navbar-nav li a {
    color: var(--white-color);
    font-family: var(--title-fonts);
}

header#vbeheader .vbebottom-header .navbar .navbar-nav li a:focus,
header#vbeheader .vbebottom-header .navbar .navbar-nav li a:hover,
header#vbeheader .vbebottom-header .navbar .navbar-nav li.current-menu-item a,
header#vbeheader .vbebottom-header .navbar .navbar-nav li.current_page_item a,
header#vbeheader .vbebottom-header .navbar .navbar-nav li:hover a,
header#vbeheader .vbebottom-header .navbar .navbar-nav li.current-menu-ancestor a {
    color: #ffff00;
}

/*===== Sub Menu Bar =====*/
header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu {
    display: none;
}

header#vbeheader .vbebottom-header .navbar .navbar-nav li:hover .sub-menu {
    display: block;
    background: var(--dark-color);
    position: absolute;
    top: 100%;
    left: 0;
    padding-left: 0;
    display: inline-block;
    width: 210px;
    z-index: 999;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu li {
    line-height: 2;
    padding: 0;
    margin: 0;
    display: inline-block;
    width: 100%;
    color: var(--white-color);
}

header#vbeheader .vbebottom-header .navbar .navbar-nav li i {
    margin-left: 10px;
    font-size: 12px;
    color: var(--white-color);
    opacity: 0.3;
}

header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu li a {
    line-height: 2;
    text-transform: capitalize;
    padding: 10px 15px;
    display: inline-block;
    width: 100%;
    color: var(--white-color);
    font-size: 14px;
}

header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu li a:focus,
header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu li a:hover,
header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item>a {
    background: var(--primary-color);
    color: var(--white-color);
}

@media screen and (max-width:4000px) and (min-width:1023px) {
    header#vbeheader .vbebottom-header .navbar .navbar-nav li:hover>.sub-menu {
        display: block !important;
    }
}

/*===== Navigation Sub Menu =====*/
header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu li>.sub-menu {
    display: none;
}

header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
    position: absolute;
    top: 0;
    right: 100%;
    left: inherit;
    display: block;
    background: var(--dark-color);
    padding-left: 0;
    display: inline-block;
    width: 200px;
}

header#vbeheader .vbebottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.vbesubmenu-icon {
    opacity: 1;
    position: absolute;
    top: 12px;
    right: 15px;
    line-height: 2;
    font-size: 12px;
    color: var(--white-color);
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover>.vbesubmenu-icon {
    color: var(--white-color);
}

header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children:hover>a {
    color: var(--white-color);
    transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    -webkit-transition: all 0s ease-in-out;
}

/*===== Navigation search =====*/
header#vbeheader .vbemenu-search-block {
    position: relative;
    margin: 0 30px 0 0;
}

header#vbeheader .vbemenu-search-block a {
    color: var(--white-color);
    font-size: 16px;
    width: 18px;
    display: inline-block;
}

header#vbeheader .vbesearch-form {
    position: absolute;
    top: 59px;
    right: -30px;
    width: 350px;
    padding: 15px;
    z-index: 999;
    display: none;
    background: var(--black-color);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

header#vbeheader .vbebutton:hover .vbebutton-line-left {
    width: calc(15px - 1px);
}

header#vbeheader .vbesearch-form .search-field {
    border-color: var(--dark-color);
    background: var(--dark-color);
}

/*===== Header Default =====*/
header#vbeheader.vbeheader-default .vbebottom-header.vbeheader-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    background: var(--dark-color);
}

/*===== Header Style-1 =====*/
header#vbeheader.vbeheader-style-1.vbehas-sticky {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background: transparent;
    z-index: 99;
    padding: 0;
    box-shadow: none;
    background: rgba(34, 34, 34, 0.4);
}

header#vbeheader.vbeheader-style-1.vbehas-sticky.vbeheader-sticky {
    position: fixed;
    padding: 0;
    -webkit-box-shadow: 0px 3px 30px 0px rgb(0 33 85 / 10%);
    -moz-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 3px 30px 0px rgb(0 33 85 / 10%);
    background: var(--black-color);
    z-index: 999;
}

header#vbeheader.vbeheader-style-1 .vbebottom-header {
    min-height: 70px;
}

header#vbeheader.vbeheader-style-1 .vbebottom-header .navbar .navbar-brand {
    line-height: 90px;
    background: transparent;
    padding: 0;
    position: relative;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

header#vbeheader.vbeheader-style-1 .vbebottom-header .navbar .navbar-nav li {
    line-height: 90px;
}

header#vbeheader.vbeheader-style-1 .vbebottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
    color: var(--primary-color);
}

header#vbeheader.vbeheader-style-1 .vbebottom-header .navbar .navbar-nav li i {
    color: var(--white-color);
}

header#vbeheader.vbeheader-style-1 .vbebottom-header .navbar .navbar-nav li:hover .sub-menu {
    top: 100%;
}

header#vbeheader.vbeheader-style-1 .vbeheader-info-box {
    margin: 0 0 0 30px;
    display: flex;
    color: var(--white-color);
    align-items: center;
}

header#vbeheader.vbeheader-style-1 .vbeheader-call {
    display: inline-block;
    float: left;
    margin-right: 30px;
    margin-top: 5px;
}

header#vbeheader.vbeheader-style-1 .vbeheader-call a i {
    font-size: 48px;
    margin-right: 15px;
    line-height: 56px;
}

header#vbeheader.vbeheader-style-1 .vbeheader-call a {
    display: flex;
    align-items: flex-start;
}

header#vbeheader.vbeheader-style-1 .vbeheader-call a .vbecall-info {
    flex: 1;
    text-transform: capitalize;
    font-size: 14px;
    color: var(--dark-color);
}

header#vbeheader.vbeheader-style-1 .vbeheader-call a .vbecall-info span {
    width: 100%;
    float: left;
    display: inline-block;
    color: var(--primary-color);
    line-height: normal;
    font-family: var(--title-fonts);
}

header#vbeheader.vbeheader-style-1 .vbeheader-call a .vbecall-info h5 {
    font-weight: 600;
    line-height: 1;
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-color);
}

header#vbeheader.vbeheader-style-1 .vbebutton {
    background: var(--primary-color);
    padding: 5px 20px;
}

/*==========*/
header#vbeheader.vbeheader-default .vbebtn-container {
    margin: 0 0 0 30px;
}

header#vbeheader.vbeheader-default .vbebtn-container .vbebutton {
    background: var(--blue-color);
}

header#vbeheader.vbeheader-default .vbebtn-container .vbebutton:hover {
    background: var(--primary-color);
}

header#vbeheader.vbeheader-default .vbetoggle-btn {
    padding: 0;
    margin: 0 0 0 30px;
}

header#vbeheader.vbeheader-default .vbetoggle-btn a {
    position: relative;
    display: inline-block;
    padding: 0;
    font-size: 38px;
    background: var(--primary-color);
    color: #fff;
    line-height: 52px;
    width: 52px;
    height: 52px;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

header#vbeheader.vbeheader-default .vbemenu-search-block {
    margin: 0 0 0 30px;
}

.vbeaccount-holder {
    position: relative;
    margin-right: 30px;
    line-height: 90px;
}

.vbeaccount-holder a#vbeuser-btn {
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    display: inline-block;
    border-radius: 90px;
}

.vbeaccount-holder .vbeaccount-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    display: none;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.vbeaccount-holder .vbeaccount-menu.vbeform-show {
    display: inline-block;
}

.vbeaccount-holder .vbeaccount-menu ul {
    margin: 0;
    padding: 0;
    background: var(--dark-color);
}

.vbeaccount-holder .vbeaccount-menu ul li {
    list-style: none;
}

.vbeaccount-holder .vbeaccount-menu ul li a {
    float: left;
    line-height: 2;
    text-transform: capitalize;
    padding: 10px 15px;
    display: inline-block;
    list-style: none;
    width: 100%;
    color: var(--white-color);
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.vbeaccount-holder .vbeaccount-menu ul li a i {
    margin-right: 8px;
}

.vbeaccount-holder .vbeaccount-menu ul li a:hover {
    background: var(--primary-color);
}



header#vbeheader.vbeheader-style-1 .vbebottom-header .navbar .navbar-nav li.active ul li.active>a{
    background-color: var(--primary-color);
    color: var(--white-color);
}


/*===== Header Style-1 =====*/
.admin-bar header#vbeheader.vbeheader-sticky,
.admin-bar header#vbeheader.vbeheader-style-1 {
    top: 32px;
}

.admin-bar header#vbeheader.vbeheader-default .vbebottom-header.vbeheader-sticky {
    top: 32px;
}

@media(max-width:767px) {

    .admin-bar header#vbeheader.vbeheader-sticky,
    .admin-bar header#vbeheader {
        top: 0;
    }

    .admin-bar header#vbeheader.vbeheader-style-1.vbeheader-sticky {
        top: 0;
    }
}

@media only screen and (min-device-width:601px) and (max-device-width:768px) {

    .admin-bar header#vbeheader.vbeheader-sticky,
    .admin-bar header#vbeheader.vbeheader-style-1,
    .admin-bar header#vbeheader.vbeheader-default .vbebottom-header.vbeheader-sticky {
        top: 46px;
    }

    .admin-bar header#vbeheader.vbeheader-style-1.vbehas-sticky.vbeheader-sticky {
        top: 46px !important;
    }
}

@media(max-width:1399px) {
    header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
        left: inherit;
        right: 100%;
    }
}

@media(max-width:1365px) {
    header#vbeheader .vbebottom-header .navbar .navbar-nav li {
        margin-right: 15px;
    }

    header#vbeheader .vbetop-header .vbeheader-social ul li a {
        font-size: 12px;
        padding: 10px 15px;
    }

    header#vbeheader .vbetop-header .vbeheader-contact ul li {
        font-size: 12px;
        padding: 10px 15px;
    }

    header#vbeheader.vbeheader-default .vbebtn-container {
        margin: 0 0 0 15px;
    }

    header#vbeheader.vbeheader-default .vbetoggle-btn {
        margin: 0 0 0 15px;
    }

    /*===== Header Style-1 =====*/
    header#vbeheader.vbeheader-style-1 .vbeheader-call {
        display: none;
    }

    header#vbeheader .vbemenu-search-block {
        position: relative;
        margin: 0 15px 0 0;
    }

    header#vbeheader.vbeheader-style-1 .vbeheader-info-box {
        margin: 0 0 0 15px;
    }

    .vbeaccount-holder {
        margin-right: 15px;
    }
}

@media(max-width:1023px) {

    /*===== Button Toggler =====*/
    header#vbeheader .vbebottom-header .navbar-toggler {
        font-size: 20px;
        padding: 12px 18px;
        line-height: normal;
        float: right;
        outline: none;
        margin: 0 0 0 15px;
        background: var(--primary-color);
        border: var(--primary-color);
        color: var(--white-color);
        border-radius: 0;
    }

    header#vbeheader .vbebottom-header .navbar .navbar-collapse {
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%;
        background: var(--black-color);
        -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        max-height: 330px;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    header#vbeheader .vbebottom-header .navbar .navbar-brand {
        line-height: 60px;
    }

    header#vbeheader .vbebottom-header {
        min-height: 60px;
    }

    header#vbeheader .vbesearch-form {
        top: 51px;
    }

    header#vbeheader .vbebottom-header .navbar .navbar-nav {
        float: left;
        width: 100%;
        display: inline-block;
    }

    header#vbeheader .vbebottom-header .navbar .navbar-nav li {
        float: left;
        width: 100%;
        display: inline-block;
        line-height: normal;
        position: relative;
        font-size: 16px;
        position: relative;
    }

    header#vbeheader .vbebottom-header .navbar .navbar-nav li a {
        width: 100%;
        display: inline-block;
        padding: 15px;
    }

    header#vbeheader .vbebottom-header .navbar .navbar-nav li i {
        margin-left: 0;
        opacity: 1;
        font-size: 12px;
        position: absolute;
        right: 0;
        margin-top: 0;
        top: 0;
        padding: 18px 25px;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }

    header#vbeheader .vbebottom-header .navbar .navbar-nav li:hover .sub-menu {
        position: relative;
        top: 0;
        left: 0;
        padding-left: 0;
        background: #f5f5f5;
        box-shadow: none;
        display: inline-block;
        width: 100%;
    }

    header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children:hover>a {
        background: var(--primary-color);
    }

    header#vbeheader .vbebottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.vbesubmenu-icon {
        opacity: 1;
        position: absolute;
        top: 0;
        right: 0;
        line-height: 2;
        font-size: 12px;
        padding: 12px 30px;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }

    header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu li a {
        padding: 10px 30px;
    }

    header#vbeheader .vbebottom-header .navbar .navbar-nav li>a:hover,
    header#vbeheader .vbebottom-header .navbar .navbar-nav li:hover>a {
        background: var(--primary-color);
        color: var(--white-color);
    }

    header#vbeheader .vbebottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
        background: var(--primary-color);
        color: var(--white-color);
    }

    header#vbeheader .vbebottom-header .navbar .navbar-nav li.current-menu-ancestor>.vbesubmenu-icon,
    header#vbeheader .vbebottom-header .navbar .navbar-nav li:hover>.vbesubmenu-icon {
        color: var(--white-color);
    }

    header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
        position: relative;
        top: 0;
        left: 0;
        background: transparent;
        display: inline-block;
        width: 100%;
        float: left;
    }

    header#vbeheader .vbebottom-header .navbar .navbar-nav li .sub-menu>li>a {
        background: var(--dark-color);
        color: var(--white-color);
    }

    header#vbeheader .vbetop-header .vbeheader-contact ul li {
        padding: 10px 10px;
    }

    header#vbeheader.vbeheader-default .vbemenu-search-block {
        margin-left: auto !important;
    }

    header#vbeheader.vbeheader-default .vbetoggle-btn {
        display: none;
    }

    /*===== Header Style-1 =====*/
    header#vbeheader.vbeheader-style-1 .vbebottom-header .navbar .navbar-brand {
        line-height: 75px;
    }

    header#vbeheader.vbeheader-style-1.vbehas-sticky {
        top: 0;
        padding: 0;
        position: relative;
    }

    header#vbeheader.vbeheader-style-1.vbehas-sticky.vbeheader-sticky {
        top: 0;
    }

    .admin-bar header#vbeheader.vbeheader-style-1.vbehas-sticky.vbeheader-sticky {
        top: 32px;
    }

    header#vbeheader.vbeheader-style-1 .vbeheader-call {
        margin-right: 30px;
        display: flex;
    }

    header#vbeheader.vbeheader-style-1 .vbeheader-info-box {
        margin-left: auto;
    }

    header#vbeheader.vbeheader-style-1 .vbebottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
        color: var(--white-color);
    }

    header#vbeheader.vbeheader-style-1 .vbebottom-header .navbar .navbar-nav li {
        line-height: normal;
    }

    header#vbeheader.vbeheader-style-1 .vbebottom-header .navbar .navbar-nav li>a,
    header#vbeheader.vbeheader-style-1 .vbebottom-header .navbar .navbar-nav li {
        color: var(--white-color);
    }

    header#vbeheader.vbeheader-style-1 .vbebottom-header .navbar .navbar-nav li:hover .sub-menu {
        top: 0;
    }

    header#vbeheader.vbeheader-style-1 .vbebottom-header .navbar .navbar-nav li>a:hover,
    header#vbeheader.vbeheader-style-1 .vbebottom-header .navbar .navbar-nav li:hover>a {
        color: var(--white-color);
    }

    header#vbeheader.vbeheader-style-1.vbehas-sticky.vbeheader-sticky .vbebottom-header .navbar .navbar-collapse {
        top: 100%;
    }
}

@media(max-width:767px) {

    header#vbeheader.vbeheader-style-1 .vbeheader-call,
    header#vbeheader.vbeheader-style-1 .vbebutton {
        display: none;
    }

    header#vbeheader.vbeheader-default .vbetop-header,
    header#vbeheader.vbeheader-default .vbebtn-container {
        display: none !important;
    }

    .admin-bar header#vbeheader.vbeheader-style-1.vbehas-sticky.vbeheader-sticky,
    .admin-bar header#vbeheader.vbeheader-default .vbebottom-header.vbeheader-sticky {
        top: 0;
    }

    .vbeaccount-holder {
        margin-right: 0;
    }
}

@media(max-width:479px) {

    .vbemenu-search-block,
    .vbesidebar,
    .vbetoggle-btn,
    header#vbeheader.vbeheader-style-1 .vbeheader-info-box {
        /*display: none !important;*/
    }
}

@media (max-width:479px){
    header#vbeheader .vbebottom-header .navbar .navbar-brand img{
        height: 45px;
    }
}


/*================================================
Footer
================================================*/

footer#vbefooter {
    background: var(--black-color);
    display: inline-block;
    width: 100%;
    float: left;
}

footer#vbefooter .vbefooter-top {
    padding: 30px 0 0;
}

footer#vbefooter .vbecopyright-footer {
    padding: 15px 0;
    background: var(--primary-color);
}

footer#vbefooter .vbecopyright-footer .vbecopyright {
    text-align: center;
    display: inline-block;
    width: 100%;
}

footer#vbefooter .vbecopyright-footer .vbecopyright a {
    color: var(--white-color);
}

footer#vbefooter .vbecopyright-footer .vbecopyright a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

/*===== Footer Widget =====*/

footer#vbefooter .widget .footer-title {
    margin-bottom: 15px;
    padding: 0;
    font-size: 26px;
    position: relative;
    line-height: 34px;
}

footer#vbefooter .widget ul {
    padding: 0;
    margin: 0;
}

footer#vbefooter .widget ul li a {
    padding: 0;
}

footer#vbefooter .widget ul li a:hover {
    color: var(--primary-color);
}

footer#vbefooter table td,
footer#vbefooter table th {
    border: 1px solid #222d42;
}

footer#vbefooter .calendar_wrap table caption {
    caption-side: inherit;
    padding: 0 0 10px;
    font-weight: 600;
    color: var(--secondary-color);
}

footer#vbefooter .calendar_wrap td#today {
    background: var(--primary-color);
    color: var(--white-color);
}

footer#vbefooter .calendar_wrap td#today a {
    color: var(--white-color);
}

footer#vbefooter ul li a.rsswidget {
    padding-left: 0;
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: var(--title-fonts);
}

footer#vbefooter ul li .rss-date {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1;
    float: left;
    display: inline-block;
    width: 100%;
    margin: 5px 0;
}

footer#vbefooter ul li cite {
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}

footer#vbefooter .search-form {
    position: relative;
}

footer#vbefooter .search-form .search-submit {
    background: var(--primary-color);
    border: none;
    position: absolute;
    text-align: center;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

footer#vbefooter .search-form .search-submit:before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #ffffff;
}

footer#vbefooter .search-form .search-submit:hover {
    background: var(--dark-color);
}

footer#vbefooter .search-form input {
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--secondary-color);
}

footer#vbefooter .tagcloud .tag-cloud-link {
    font-size: 14px !important;
    color: var(--white-color);
    background: var(--dark-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    float: left;
    padding: 2px 12px;
    border-radius: 0;
    border: 1px solid var(--dark-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

footer#vbefooter .tagcloud .tag-cloud-link:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

footer#vbefooter .widget ul.menu li a,
footer#vbefooter .vbewidget-menu .vbeservice li a {
    position: relative;
    border: none;
    padding: 5px 0 5px 15px;
    display: inline-block;
    width: 100%;
}

footer#vbefooter .widget ul.menu li a:hover,
footer#vbefooter .vbewidget-menu .vbeservice li a:hover {
    color: var(--primary-color);
}

footer#vbefooter .widget ul.menu li a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    height: 5px;
    display: inline-block;
    background: var(--primary-color);
    margin: auto 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

footer#vbefooter .wp-calendar-nav .wp-calendar-nav-prev,
footer#vbefooter .wp-calendar-nav .wp-calendar-nav-next {
    background: transparent;
}

footer#vbefooter .wp-caption p.wp-caption-text {
    color: var(--secondary-color);
}

footer#vbefooter .vbewidget-menu .vbeservice li a:before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 0;
    left: 0;
    width: 5px;
    height: 5px;
    display: inline-block;
    background: var(--primary-color);
    margin: 0;
}

footer#vbefooter .widget #recentcomments--1 li.recentcomments span a {
    color: var(--primary-color);
}

/*=========*/
footer#vbefooter .vbefooter-style-1 .widget .footer-title,
footer#vbefooter .vbefooter-style-1 .widget ul.menu li a,
footer#vbefooter .vbefooter-style-1 .vbewidget-menu .vbeservice li a,
footer#vbefooter .vbefooter-style-1 .widget ul li a {
    color: var(--white-color);
}

footer#vbefooter .vbefooter-style-1 .widget ul li a:hover {
    color: #ffff00;
}

footer#vbefooter .vbefooter-style-1 .vbecopyright-footer {
    background: var(--primary-color);
}


#vbefooter .vbefooter-style-1 .vbefooter-logo {
    height: 60px;
    margin-bottom: 15px;
}

footer#vbefooter .vbefooter-style-1 .widget ul.menu li {
    margin-bottom: 0;
    width: calc(50% - 2px);
    display: inline-block;
}

#vbefooter .social-link {
    margin: 0;
    padding: 0;
}

#vbefooter .social-link li {
    list-style: none;
    float: left;
    margin-right: 30px;
}

#vbefooter .social-link li:last-child {
    margin-right: 0;
}

#vbefooter .social-link li a {
    color: var(--white-color);
    font-size: 18px;
    line-height: normal;
    text-align: center;
    display: inline-block;
    margin-right: 0 !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

#vbefooter .social-link li a:last-child {
    margin-right: 0px;
}

#vbefooter .social-link li a:hover {
    color: var(--primary-color);
}

.vbeplaystore-logo {
    height: 45px;
    display: inline-block;
    float: left;
}

.vbeappstore-logo {
    height: 45px;
    display: inline-block;
    float: left;
    margin-left: 15px;
}

/*================================================
Team
================================================*/
.vbeteambox-1 {
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.vbeteambox-1 .vbeteam-img {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius: 5px;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    border-radius: 5px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.vbeteambox-1 .vbeteam-img .vbeteam-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    opacity: 0;
}

.vbeteambox-1:hover .vbeteam-img .vbeteam-social {
    bottom: 30px;
    opacity: 1;
}

.vbeteambox-1 .vbeteam-img .vbeteam-social ul {
    margin: 0;
    padding: 0;
}

.vbeteambox-1 .vbeteam-img .vbeteam-social ul li {
    list-style: none;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
}

.vbeteambox-1 .vbeteam-img .vbeteam-social ul li a {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--dark-color);
    color: var(--white-color);
    -webkit-border-radius: 700px;
    -moz-border-radius: 700px;
    border-radius: 700px;
}

.vbeteambox-1 .vbeteam-img .vbeteam-social ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.vbeteambox-1 .vbeteam-info {
    z-index: 99;
    background: var(--white-color);
    padding: 30px 15px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-border-radius: 0;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius: 0;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-radius: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.vbeteambox-1 .vbeteam-info .vbeteam-designation {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
}

/*================================================
Video Popup
================================================*/
.vbevideo-icon a {
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 28px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    display: inline-block;
    background-color: var(--white-color);
    margin: 0 auto;
    border-radius: 90%;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite;
}

@-webkit-keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2), 0 0 0 90px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2), 0 0 0 90px rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2), 0 0 0 90px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2), 0 0 0 90px rgba(255, 255, 255, 0);
    }
}

.vbevideo-icon a.primary {
    -webkit-animation: rippleprimary 1s linear infinite;
    animation: rippleprimary 1s linear infinite;
}

@-webkit-keyframes rippleprimary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2), 0 0 0 90px rgba(255, 75, 52, 0);
        box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2), 0 0 0 90px rgba(255, 75, 52, 0);
    }
}

@keyframes rippleprimary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2), 0 0 0 90px rgba(255, 75, 52, 0);
        box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2), 0 0 0 90px rgba(255, 75, 52, 0);
    }
}

.vbevideo-icon a.blue {
    -webkit-animation: rippleblue 1s linear infinite;
    animation: rippleblue 1s linear infinite;
}

@-webkit-keyframes rippleblue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(67, 78, 255, 0.2), 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(67, 78, 255, 0.2), 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2), 0 0 0 90px rgba(67, 78, 255, 0);
        box-shadow: 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2), 0 0 0 90px rgba(67, 78, 255, 0);
    }
}

@keyframes rippleblue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(67, 78, 255, 0.2), 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(67, 78, 255, 0.2), 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2), 0 0 0 90px rgba(67, 78, 255, 0);
        box-shadow: 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2), 0 0 0 90px rgba(67, 78, 255, 0);
    }
}



/*================================================
OWL Carousel
================================================*/
.owl-carousel .owl-nav.disabled {
    display: none;
}

.owl-carousel .owl-nav {
    cursor: pointer;
    z-index: 9;
    margin: 0;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.owl-carousel .owl-nav button.owl-prev {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    text-align: center;
    font-size: 32px;
    position: absolute;
    top: 0;
    left: -22.5px;
    line-height: 1;
    padding: 0;
    margin: 0;
    color: var(--white-color) !important;
}

.owl-carousel .owl-nav button.disabled {
    display: none;
}

.owl-carousel .owl-nav button.owl-next {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    text-align: center;
    font-size: 32px;
    position: absolute;
    top: 0;
    right: -22.5px;
    line-height: 1;
    padding: 0;
    margin: 0;
    color: var(--white-color) !important;
}

.vbestyle-2 .owl-carousel .owl-nav {
    top: 30%;
}

.vbestyle-1 .owl-carousel .owl-nav {
    top: 40%;
}

@media(max-width:1399px) {
    .vbestyle-2 .owl-carousel .owl-nav {
        top: 26%;
    }
}

@media(max-width:1199px) {}

@media(max-width:1023px) {
    .owl-carousel .owl-nav button.owl-prev {
        left: 15px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: 15px;
    }

    .vbestyle-2 .owl-carousel .owl-nav {
        top: 32%;
    }
}

@media(max-width:979px) {
    .vbestyle-2 .owl-carousel .owl-nav {
        top: 36%;
    }
}

@media(max-width:767px) {
    .vbestyle-2 .owl-carousel .owl-nav {
        top: 32%;
    }
}

@media(max-width:479px) {
    .vbestyle-2 .owl-carousel .owl-nav {
        top: 26%;
    }
}

/* Dots */
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-dots {
    margin: 15px 0 0;
    line-height: normal;
    position: relative;
    display: inline-block;
    width: 100%;
    text-indent: inherit;
    text-align: center;
    cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot {
    box-shadow: none;
    outline: none;
    background: var(--white-color);
    opacity: 1;
    display: inline-block;
    padding: 0;
    margin: 0px 5px;
    height: 4px;
    width: 30px;
    border: none;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot:hover {
    background: var(--primary-color);
    opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active {
    background: var(--primary-color);
    opacity: 1;
}


/*================================================
Gen Slick
===============================================*/
.pp-30 .vbebanner-movies .vbemovie-contain {
    padding: 0 0 0 30px;
}

.vbebanner-movies .vbeslick-slider {
    position: relative;
    padding: 0 0 0 30px;
}

.home-singal-silder .vbebanner-movies .slider-item {
    height: 70vh;
}

.vbebanner-movies .slider-item {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
    border-left: 3px solid var(--primary-color);
}

.vbebanner-movies .vbeslick-slider:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: -moz-linear-gradient(left, rgba(34,31,31,1) 0%, rgba(34,31,31,0.4) 100%);
    background: -webkit-linear-gradient(left, rgba(34,31,31,1) 0%,rgba(34,31,31,0.4) 100%);
    background: linear-gradient(to right, rgba(34,31,31,1) 0%,rgba(34,31,31,0.4) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#221f1f', endColorstr='#66221f1f',GradientType=1 );
}

.vbebanner-movies .slick-slider {
    margin-bottom: 0;
}


.vbebanner-movies .slick-slider .slick-list {
    padding: 0 !important;
    height: 100% !important;
}

.vbebanner-movies .slick-slider .prev.slick-arrow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    color: var(--white-color);
    display: inline-block;
    width: 100%;
    font-size: 30px;
    line-height: 38px;
    padding: 10px 10px;
    text-align: center;
    background: rgba(34, 31, 31, 0.9);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.vbebanner-movies .slick-slider .next.slick-arrow {
    position: absolute;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 9;
    color: var(--white-color);
    display: inline-block;
    width: 100%;
    font-size: 30px;
    line-height: 38px;
    padding: 10px 10px;
    text-align: center;
    background: rgba(34, 31, 31, 0.9);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.vbebanner-movies .slick-slider .prev.slick-arrow:hover,
.vbebanner-movies .slick-slider .next.slick-arrow:hover {
    background: var(--primary-color);
}

@media(max-width:1399px) {
    
    .vbebanner-movies .vbeslick-slider,
    .pp-30 .vbebanner-movies .vbemovie-contain {
        padding: 0;
    }
}


/*================================================
Carousel Movies
===============================================*/

/*======== 1 =======*/

.vbestyle-1 .owl-carousel .item .vbecarousel-movies-style-1 .vbemovie-contain {
    margin-bottom: 0;
}

.vbecarousel-movies-style-1 .vbemovie-contain {
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}

.vbecarousel-movies-style-1 .vbemovie-contain .vbemovie-img:before {
    content: "";
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    opacity: 0.4;
    background: rgb(12, 17, 27);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.vbecarousel-movies-style-1:hover .vbemovie-contain .vbemovie-img:before {
    opacity: 0.9;
}

/*===============*/
.vbecarousel-movies-style-1 .vbemovie-contain .vbemovie-img {
    position: relative;
    overflow: hidden;
}

.vbecarousel-movies-style-1 .vbemovie-contain .vbeinfo-contain,
.vbeepisode-contain .vbeinfo-contain {
    padding: 15px 15px;
    opacity: 1;
    display: inline-block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.vbecarousel-movies-style-1:hover .vbemovie-contain .vbeinfo-contain {
    opacity: 1;
}

.vbecarousel-movies-style-1 .vbemovie-contain .vbemovie-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.vbecarousel-movies-style-1:hover .vbemovie-contain .vbemovie-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.vbecarousel-movies-style-1 .vbemovie-contain .vbemovie-action {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9;
}

.vbecarousel-movies-style-1 .vbemovie-contain .vbemovie-add .dropdown-menu {
    bottom: inherit;
}

.vbecarousel-movies-style-1 .vbemovie-contain .vbemovie-add .dropdown-menu:after {
    bottom: 100%;
    right: 0%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    top: inherit;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 8px;
    margin-right: 14px;
}

.vbecarousel-movies-style-1 .vbemovie-contain .vbemovie-info h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.vbecarousel-movies-style-1 .vbemovie-contain .vbemovie-action .vbebutton {
    padding: 0;
    width: 60px;
    height: 60px;
    opacity: 0;
    display: inline-block;
    line-height: 60px;
    text-align: center;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.vbecarousel-movies-style-1 .vbemovie-contain .vbemovie-action .vbebutton i {
    margin: 0;
    padding: 0;
}

.vbecarousel-movies-style-1:hover .vbemovie-contain .vbemovie-action .vbebutton {
    opacity: 1;
}

.vbecarousel-movies-style-1 .vbemovie-contain .vbemovie-meta-holder ul {
    margin: 0 0 0;
    padding: 0;
    float: left;
    display: inline-block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.vbecarousel-movies-style-1 .vbemovie-contain .vbemovie-meta-holder ul li {
    list-style: none;
    margin: 10px 15px 0px 0;
    padding: 0;
    font-size: 14px;
    line-height: normal;
    display: inline;
    align-items: center;
    color: var(--white-color);
}

.vbecarousel-movies-style-1 .vbemovie-contain .vbemovie-meta-holder ul li a {
    color: var(--white-color);
    background: var(--primary-color);
    padding: 2px 5px;
}

.vbecarousel-movies-style-1 .vbemovie-contain .vbemovie-meta-holder ul li a span {
    font-family: var(--title-font);
    font-weight: 600;
}

.vbecarousel-movies-style-1 .vbemovie-contain .vbemovie-meta-holder ul li:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
}

.vbecarousel-movies-style-1 {
    position: relative;
    width: 100%;
    transition: all 0.45s ease 0s;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: all 0.6s ease 0s;
    -webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.vbecarousel-movies-style-1:hover {
    transform: scale3d(1.1, 1.1, 1) translate3d(0, 0, 0) perspective(500px);
    -webkit-transform: scale3d(1.1, 1.1, 1) translate3d(0, 0, 0) perspective(500px);
    -moz-transform: scale3d(1.1, 1.1, 1) translate3d(0, 0, 0) perspective(500px);
    -o-transform: scale3d(1.1, 1.1, 1) translate3d(0, 0, 0) perspective(500px);
    transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transition: all 0.6s ease 0s;
    -webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
}

.vbecarousel-movies-style-1.movie-grid.style-1 .vbemovie-contain .vbemovie-add .wpulike.wpulike-heart .wp_ulike_general_class a {
    color: var(--white-color);
}

/*===============*/
.movie-grid .vbemovie-add {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    z-index: 99;
}

.movie-grid .vbemovie-add .wpulike.wpulike-heart {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    padding: 0;
}

.movie-grid .vbemovie-add .wpulike-heart .wp_ulike_put_image {
    font-size: 16px;
    color: var(--white-color);
    background: 0 0;
    padding: 0;
    line-height: normal;
    border-radius: 0;
    border: none;
    outline: none;
}

.movie-grid .vbemovie-add .wpulike-heart .wp_ulike_put_image.wp_ulike_btn_is_active,
.wpulike-heart .wp_ulike_btn:focus,
.wpulike-heart .wp_ulike_btn:hover {
    color: var(--primary-color) !important;
}

.movie-grid .vbemovie-add .wpulike-heart .count-box,
.movie-grid .vbemovie-add .wpulike-heart .wp_ulike_put_image:after {
    display: none !important;
}

.movie-grid .vbemovie-add .wpulike-heart .wp_ulike_general_class {
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.movie-grid .vbemovie-add .wpulike-heart .wp_ulike_put_image:before {
    content: "\f004";
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}

.movie-grid .vbemovie-add .wpulike-heart .wp_ulike_put_image.wp_ulike_btn_is_active:before {
    font-weight: 900;
}

.movie-grid .vbemovie-add .dropdown .dropdown-toggle {
    padding: 0;
    background: transparent;
    text-align: center;
    font-size: 16px;
    color: var(--white-color);
    outline: none;
    box-shadow: none;
}

.movie-grid .vbemovie-add .dropdown .dropdown-toggle i.fa {
    height: 45px;
    width: 45px;
    line-height: 45px;

}

.movie-grid .vbemovie-add .dropdown-toggle::after {
    display: none;
}

.movie-grid .vbemovie-add .dropdown-menu {
    top: inherit !important;
    left: inherit !important;
    bottom: 45px;
    right: 0;
    transform: inherit !important;
    min-width: 12rem;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    max-height: 130px;
}

.movie-grid .vbemovie-add .dropdown-menu:after {
    top: 100%;
    right: 0;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #ffffff;
    border-width: 8px;
    margin-right: 14px;
}

.movie-grid .vbemovie-add .dropdown-menu a {
    font-family: var(--title-fonts);
    color: var(--dark-color);
    font-size: 14px;
    line-height: 22px;
    padding: 8px 10px;
    display: inline-block;
}

.movie-grid .vbemovie-add .dropdown-menu a:hover {
    color: var(--primary-color);
}

.movie-grid .vbemovie-add.show .dropdown-menu {
    top: inherit !important;
    left: inherit !important;
    bottom: 45px;
    right: 15px;
}

.vbemovie-add .menu {
    z-index: 9;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.vbemovie-add .menu li {
    position: relative;
    cursor: pointer;
    text-align: center;
}

.vbemovie-add .menu .share i.fa {
    background: transparent;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    color: var(--white-color);
    border-radius: 0;
}

.vbemovie-add .menu .submenu {
    list-style-type: none;
    padding: 5px 0;
    opacity: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    margin-left: -18px;
    top: 80%;
    background: var(--white-color);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.vbemovie-add .menu .submenu:after {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 8px;
    margin-left: -8px;
}

.vbemovie-add .menu .submenu li a {
    padding: 5px 10px;
    color: var(--dark-color);
    display: inline-block;
    line-height: 1.3;
}

.vbemovie-add .menu .submenu li a:hover {
    color: var(--primary-color);
}

.vbemovie-add .menu li:hover .submenu {
    top: 100%;
    opacity: 1;
}


@media(min-width:1279px) {
    .vbestyle-1 .vbecarousel-movies-style-1.movie-grid.style-1 .vbemovie-contain .vbemovie-img img {
        object-fit: cover;
        height: 220px;
        width: auto;
    }
}

@media(min-width:1340px) {
    .vbestyle-1 .vbecarousel-movies-style-1.movie-grid.style-1 .vbemovie-contain .vbemovie-img img {
        object-fit: cover;
        height: 265px;
        width: auto;
    }
}

/*===== Carousel Movies 2 =====*/
.vbecarousel-movies-style-2 {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}

.vbecarousel-movies-style-2 .vbemovie-contain {
    position: relative;
}

.vbecarousel-movies-style-2 .vbemovie-contain .vbemovie-img {
    position: relative;
    overflow: hidden;
}


.vbecarousel-movies-style-2 .vbemovie-contain .vbemovie-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.vbecarousel-movies-style-2 .vbemovie-contain:hover .vbemovie-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.vbecarousel-movies-style-2 .vbemovie-contain .vbemovie-action {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9;
    opacity: 0;
}

.vbecarousel-movies-style-2 .vbemovie-contain:hover .vbemovie-action {
    opacity: 1;
}

.vbecarousel-movies-style-2 .vbemovie-contain .vbemovie-action .vbebutton {
    padding: 0;
    width: 60px;
    height: 60px;
    opacity: 1;
    display: inline-block;
    line-height: 60px;
    text-align: center;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.vbecarousel-movies-style-2 .vbemovie-contain .vbemovie-action .vbebutton i {
    margin: 0;
    padding: 0;
}

.vbecarousel-movies-style-2 .vbemovie-contain .info-holder {
    position: absolute;
    padding: 15px;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    z-index: 99;
}

.vbecarousel-movies-style-2 .vbemovie-contain .vbemovie-info h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.vbecarousel-movies-style-2 .vbemovie-contain .vbemovie-meta-holder ul {
    margin: 5px 0 0;
    padding: 0;
    float: left;
    display: inline-block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.vbecarousel-movies-style-2 .vbemovie-contain .vbemovie-meta-holder ul li {
    list-style: none;
    margin: 0 15px 0px 0;
    padding: 0 15px 0px 0;
    font-size: 14px;
    line-height: normal;
    display: inline;
    align-items: center;
    color:#000000;
    position: relative;
}

.vbecarousel-movies-style-2 .vbemovie-contain .vbemovie-meta-holder ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: -2px;
    height: 4px;
    width: 4px;
    display: inline-block;
    background: var(--white-color);
    opacity: 0.8;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.vbecarousel-movies-style-2 .vbemovie-contain .vbemovie-meta-holder ul li a {
    color: var(--primary-color);
}

.vbecarousel-movies-style-2 .vbemovie-contain .vbemovie-meta-holder ul li a span {
    font-family: var(--title-font);
    font-weight: 600;
}

.vbecarousel-movies-style-2 .vbemovie-contain .vbemovie-meta-holder ul li:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
}

.vbecarousel-movies-style-2 .vbemovie-contain .vbemovie-meta-holder ul li:last-child:before {
    display: none;
}

.vbecarousel-movies-style-2 .vbemovie-add {
    top: inherit;
    bottom: 0;
}

.vbecarousel-movies-style-2 .vbemovie-add .menu .submenu {
    top: inherit;
    bottom: 80%;
}

.vbecarousel-movies-style-2 .vbemovie-add .menu li:hover .submenu {
    top: inherit;
    bottom: 100%;
}

.vbecarousel-movies-style-2 .vbemovie-add .menu .submenu:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #ffffff;
    border-width: 8px;
    margin-left: -8px;
}

.vbecarousel-movies-style-2.movie-grid.style-2 .vbemovie-contain .vbemovie-img .wpulike.wpulike-heart .wp_ulike_general_class a {
    color: var(--white-color);
}

/*===== Carousel Movies 3 =====*/
.vbecarousel-movies-style-3 {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}

.vbecarousel-movies-style-3 .vbemovie-contain {
    position: relative;
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbemovie-img {
    position: relative;
    overflow: hidden;
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbemovie-img:before {
    content: "";
    opacity: 0;
    z-index: 9;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    background: #0B101766;
    background: -webkit-linear-gradient(top, #0B101766, #0B1017CC);
    background: -moz-linear-gradient(top, #0B101766, #0B1017CC);
    background: linear-gradient(to bottom, #0B101766, #0B1017CC);
}

.vbecarousel-movies-style-3 .vbemovie-contain:hover .vbemovie-img:before {
    opacity: 1;
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbemovie-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.vbecarousel-movies-style-3 .vbemovie-contain:hover .vbemovie-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbemovie-action {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9;
    opacity: 0;
}

.vbecarousel-movies-style-3 .vbemovie-contain:hover .vbemovie-action {
    opacity: 1;
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbemovie-action .vbebutton {
    padding: 0;
    width: 60px;
    height: 60px;
    opacity: 1;
    display: inline-block;
    line-height: 60px;
    text-align: center;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbemovie-action .vbebutton i {
    margin: 0;
    padding: 0;
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbeinfo-contain {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: var(--black-color);
}

.vbecarousel-movies-style-3 .vbemovie-contain .info-holder {
    position: absolute;
    padding: 15px;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    z-index: 99;
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbemovie-info h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbemovie-meta-holder ul {
    margin: 5px 0 0;
    padding: 0;
    float: left;
    display: inline-block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbemovie-meta-holder ul li {
    list-style: none;
    margin: 0 15px 0px 0;
    padding: 0 15px 0px 0;
    font-size: 14px;
    line-height: normal;
    display: inline;
    align-items: center;
    color: var(--secondary-color);
    position: relative;
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbemovie-meta-holder ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: -2px;
    height: 4px;
    width: 4px;
    display: inline-block;
    background: var(--white-color);
    opacity: 0.8;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbemovie-meta-holder ul li a {
    color: var(--primary-color);
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbemovie-meta-holder ul li:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbemovie-meta-holder ul li:last-child:before {
    display: none;
}

.vbecarousel-movies-style-3 .vbemovie-add {
    top: inherit;
    bottom: 0;
}

.vbecarousel-movies-style-3 .vbemovie-add .menu .submenu {
    top: inherit;
    bottom: 80%;
}

.vbecarousel-movies-style-3 .vbemovie-add .menu li:hover .submenu {
    top: inherit;
    bottom: 100%;
}

.vbecarousel-movies-style-3 .vbemovie-add .menu .submenu:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #ffffff;
    border-width: 8px;
    margin-left: -8px;
}

.vbecarousel-movies-style-3 .vbemovie-contain .vbemovie-meta-holder ul li a span {
    font-family: var(--title-font);
    font-weight: 600;
}

.vbecarousel-movies-style-3.movie-grid.style-3 .vbemovie-contain .vbemovie-img .wpulike.wpulike-heart .wp_ulike_general_class a {
    color: var(--white-color);
}

/*================================================
Movies Single
===============================================*/
.tv-single-background {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
}

.tv-single-background img {
    width: 100%;
}

.tv-single-background:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: rgba(34, 31, 31, 0.9);
    background: -moz-linear-gradient(top, rgba(34, 31, 31, 0.9) 0%, rgba(34, 31, 31, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(34, 31, 31, 0.9)), color-stop(100%, rgba(34, 31, 31, 1)));
    background: -webkit-linear-gradient(top, rgba(34, 31, 31, 0.9) 0%, rgba(34, 31, 31, 1) 100%);
    background: -o-linear-gradient(top, rgba(34, 31, 31, 0.9) 0%, rgba(34, 31, 31, 1) 100%);
    background: -ms-linear-gradient(top, rgba(34, 31, 31, 0.9) 0%, rgba(34, 31, 31, 1) 100%);
    background: linear-gradient(to bottom, rgba(34, 31, 31, 0.9) 0%, rgba(34, 31, 31, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c111b', endColorstr='#0c111b', GradientType=0);
}

/*==========*/
.vbevideo-holder iframe {
    width: 100% !important;
    height: 70vh !important;
    border: none;
    float: left;
    display: inline-block;
}

.vbevideo-holder .wp-video .mejs-video,
.vbevideo-holder .wp-video-shortcode video,
.vbevideo-holder video.wp-video-shortcode {
    width: 100% !important;
    height: 100% !important;
    border: none;
    overflow: hidden;
    float: left;
    display: inline-block;
    margin-bottom: 20px;
}

.vbevideo-holder .wp-video {
    width: 100% !important;
    height: 70vh !important;
    overflow: hidden;
    display: inline-block;
    float: left;
}

/*==========*/
.vbesingle-movie-info {
    margin-bottom: 60px;
    margin-top: 30px;
    display: inline-block;
    width: 100%;
}

@media (max-width:1023px) {
    .vbesingle-movie {
        padding: 15px 0px;
    }
}


@media (max-width:1023px) {
    .vbesingle-video {
        padding: 15px 0px;
    }
}

.vbesingle-movie-info p,
.vbesingle-video-info p {
    display: inline-block;
    width: 100%;
    font-size: 18px;
}

.vbesingle-tv-show-info p {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    margin-bottom: 30px;
}

.vbesingle-tv-show-info .vbetitle {
    margin-bottom: 5px;
}

.vbesingle-movie-info .vbetitle {
    margin-bottom: 5px;
}

.vbesingle-movie-info .vbesingle-meta-holder ul,
.vbesingle-tv-show-info .vbesingle-meta-holder ul,
.vbesingle-video-info .vbesingle-meta-holder ul {
    margin: 5px 0 10px 0;
    padding: 0;
    display: flex;
    align-items: center;
    float: left;
}

.vbesingle-movie-info .vbesingle-meta-holder ul li,
.vbesingle-tv-show-info .vbesingle-meta-holder ul li,
.vbesingle-video-info .vbesingle-meta-holder ul li {
    list-style: none;
    color: var(--white-color);
    margin: 10px 15px 0 0;
    padding: 0 15px 0 0;
    font-size: 16px;
    line-height: normal;
    display: flex;
    align-items: center;
    font-family: var(--title-fonts);
    border-right: 2px solid #ffffff;
}

.vbesingle-movie-info .vbesingle-meta-holder ul li a,
.vbesingle-tv-show-info .vbesingle-meta-holder ul li a,
.vbesingle-video-info .vbesingle-meta-holder ul li a {
    color: var(--white-color);
}

.vbesingle-movie-info .vbesingle-meta-holder ul li i,
.vbesingle-tv-show-info .vbesingle-meta-holder ul li i,
.vbesingle-video-info .vbesingle-meta-holder ul li i {
    margin-right: 5px;
}

.vbesingle-movie-info .vbesingle-meta-holder ul li:last-child,
.vbesingle-tv-show-info .vbesingle-meta-holder ul li:last-child,
.vbesingle-video-info .vbesingle-meta-holder ul li:last-child {
    border-right: 0;
    margin-right: 0;
    padding-left: 0;
}

.vbesingle-movie-info .vbesingle-meta-holder ul {
    display: flex;
}

.vbesingle-movie-info .vbesingle-meta-holder ul li.vbesen-rating {
    padding: 2px 5px;
    background: var(--primary-color);
}

.vbeextra-data ul {
    margin: 0 0 30px;
    padding: 0;
}

.vbeextra-data ul li {
    list-style: none;
    color: var(--secondary-color);
    margin: 0 0 5px;
    font-size: 18px;
}

.vbeextra-data ul li span:first-child {
    display: inline-block;
    width: 175px;
    font-weight: 500;
}

.vbeextra-data ul li span:last-child {
    color: var(--white-color);
}

/*==========*/
.vbetv-show-wrapper .col-lg-6 .vbesocail-share {
    border-bottom: none;
    padding: 0;
}

.vbeafter-excerpt {
    display: flex;
    border-bottom: 3px solid var(--primary-color);
    padding: 0 0 60px 0;
    align-items: flex-end;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.vbeafter-excerpt .vbeextra-data ul {
    margin: 0;
}

.vbeafter-excerpt .vbesocail-share {
    border-bottom: none;
    padding: 0;
    display: flex;
    text-align: center;
}


.vbesocail-share {
    margin: 0;
    display: flex;
    border-bottom: 3px solid var(--primary-color);
    padding: 0 0 25px 0;
}

.vbesocail-share h4 {
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
    color: var(--white-color);
}

.vbesocail-share .social-inner {
    margin: 0 0 0 15px;
    padding: 0;
    display: flex;
}

.vbesocail-share .social-inner li {
    list-style: none;
    margin: 0 15px 0 0;
}

.vbesocail-share .social-inner li:last-child {
    margin-right: 0;
}

.vbesocail-share .social-inner li a {
    display: inline-block;
    font-size: 18px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--black-color);
    color: var(--white-color);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.vbesocail-share .social-inner li a:hover {
    background: var(--primary-color);
}

.pm-inner .vbemore-like .vbemore-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--black-color);
    position: relative;
}

.pm-inner .vbemore-like .vbemore-title:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    display: inline-block;
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

.vbesection-title-1 .vbesection-title {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--black-color);
    position: relative;
}

.vbesection-title-1 .vbesection-title:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    display: inline-block;
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

@media(max-width:1023px) {
    .vbevideo-holder iframe {
        height: 60vh !important;
    }

    .single-movie .content-area .site-main,
    .single-video .content-area .site-main {
        padding: 15px 0 0 !important;
    }

    .gentech-tv-show-img-holder {
        margin: 0 0 30px;
    }

    .vbetv-show-top {
        margin: 0 !important;
    }
}

@media(max-width:979px) {
    .vbevideo-holder iframe {
        height: 48vh !important;
    }
}

@media(max-width:767px) {
    .vbevideo-holder iframe {
        height: 29vh !important;
    }

    .vbesingle-movie-info .vbetitle,
    .vbesingle-video-info .vbetitle,
    .vbesingle-tv-show-info .vbetitle {
        font-size: 30px;
        line-height: 38px;
    }

    .owl-carousel .vbecarousel-movies-style-1 .vbemovie-contain {
        margin: 0;
    }

    .vbesocail-share {
        margin-top: 30px;
        display: inline-block;
        width: 100%;
    }

    .vbesocail-share .social-inner {
        margin: 15px 0 0;
    }

    .vbesingle-movie-info .vbesingle-meta-holder ul,
    .vbesingle-tv-show-info .vbesingle-meta-holder ul,
    .vbesingle-video-info .vbesingle-meta-holder ul {
        display: inline-block;
    }

    .vbesingle-movie-info .vbesingle-meta-holder ul li,
    .vbesingle-tv-show-info .vbesingle-meta-holder ul li,
    .vbesingle-video-info .vbesingle-meta-holder ul li {
        font-size: 14px;
        float: left;
        margin: 10px 10px 0px 0;
        padding: 0 10px 0 0;
    }
}

@media(max-width:479px) {

    .vbesingle-movie-info .vbetitle,
    .vbesingle-video-info .vbetitle,
    .vbesingle-tv-show-info .vbetitle {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width:767px) {
    .vbeafter-excerpt {
        display: inline-block;
        width: 100%;
    }
}

@media (max-width:767px) {
    .vbesingle-movie-info .vbeafter-excerpt .vbesocail-share ul {
        margin: 0 0 0 15px;
    }
}

@media (max-width:479px) {
    .vbesingle-movie-info .vbeafter-excerpt .vbesocail-share {
        margin: 30px 0 0;
        display: inline-block;
        width: 100%;
        text-align: left;
    }

    .vbesingle-movie-info .vbeafter-excerpt .vbesocail-share ul {
        margin: 15px 0 0 0;
    }
}

/*================================================
Banner
===============================================*/
.vbebanner-movies .owl-carousel .owl-nav {
    top: 50%;
}

.vbebanner-movies .owl-carousel .owl-nav button.owl-prev {
    font-size: 40px;
    left: 2%;
}

.vbebanner-movies .owl-carousel .owl-nav button.owl-next {
    font-size: 40px;
    right: 2%;
}

.vbebanner-movies .owl-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
}

.vbebanner-movies .item {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.vbebanner-movies .item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: rgb(34, 31, 31);
    background: -moz-linear-gradient(left, rgba(34,31,31,1) 0%, rgba(34,31,31,0.4) 100%);
    background: -webkit-linear-gradient(left, rgba(34,31,31,1) 0%,rgba(34,31,31,0.4) 100%);
    background: linear-gradient(to right, rgba(34,31,31,1) 0%,rgba(34,31,31,0.4) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#221f1f', endColorstr='#66221f1f',GradientType=1 );
}

.vbebanner-movies .vbemovie-contain .vbetag-line {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 15px 0;
    border-left: 2px solid var(--primary-color);
    padding: 0 0 0 15px;
    color: var(--white-color);
}

.vbebanner-movies .vbemovie-contain .vbetag-img img {
    width: auto;
    height: 60px;
    margin: 0 0 15px 0;
}

.vbebanner-movies .vbemovie-contain .vbemovie-info h3 {
    font-size: 62px;
    line-height: 70px;
    text-transform: uppercase;
}

.vbebanner-movies .vbemovie-contain .vbemovie-meta-holder ul {
    margin: 5px 0 15px;
    padding: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.vbebanner-movies .vbemovie-contain .vbemovie-meta-holder ul li {
    list-style: none;
    font-family: var(--title-fonts);
    color: var(--white-color);
    margin: 10px 0 0 20px;
    padding: 0 0 0 20px;
    font-size: 16px;
    line-height: normal;
    display: flex;
    float: left;
    align-items: center;
    position: relative;
}

.vbebanner-movies .vbemovie-contain .vbemovie-meta-holder ul li.vbesen-rating:before {
    display: none;
}

.vbebanner-movies .vbemovie-contain .vbemovie-meta-holder ul li.vbesen-rating span {
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 2px 8px;
}

.vbebanner-movies .vbemovie-contain .vbemovie-meta-holder ul li:first-child {
    margin-left: 0;
    padding-left: 0;
}

.vbebanner-movies .vbemovie-contain .vbemovie-meta-holder ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -2px;
    left: -2px;
    height: 4px;
    width: 4px;
    display: inline-block;
    background: var(--white-color);
    opacity: 0.8;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.vbebanner-movies .vbemovie-contain .vbemovie-meta-holder ul li:first-child:before {
    display: none;
}

.vbebanner-movies .vbemovie-contain .vbemovie-meta-holder ul li a {
    color: var(--white-color);
    background: var(--primary-color);
    padding: 2px 8px;
}

.vbebanner-movies .vbemovie-contain .vbemovie-meta-holder ul li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.vbebanner-movies .vbemovie-contain .vbemovie-meta-holder ul li img {
    height: 25px;
    width: auto;
    margin-right: 10px;
    float: left;
}

.vbebanner-movies .vbemovie-contain .vbemovie-meta-holder ul li i {
    margin-right: 5px;
    color: var(--primary-color);
}

.vbebanner-movies .vbemovie-contain .vbemovie-meta-holder p,
.vbebanner-movies .vbemovie-contain .vbemovie-info p {
    display: inline-block;
    width: 100%;
    font-size: 18px;
}

.vbebanner-movies .vbemovie-contain .vbemovie-action .vbebtn-container {
    display: inline-block;
    margin-right: 30px;
}

.vbebanner-movies .owl-carousel .owl-item .vbemovie-contain .vbemovie-info,
.vbebanner-movies .owl-carousel .owl-item .vbemovie-contain .vbemovie-meta-holder,
.vbebanner-movies .owl-carousel .owl-item .vbemovie-contain .vbemovie-action,
.vbebanner-movies .owl-carousel .owl-item .vbemovie-contain .vbetag-line,
.vbebanner-movies .owl-carousel .owl-item .vbemovie-contain .vbetag-img {
    transition: transform .5s, opacity .3s, background .5s;
    opacity: 0;
    transform: translateX(300px);
}

.vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbemovie-info,
.vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbemovie-meta-holder,
.vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbemovie-action,
.vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbetag-line,
.vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbetag-img {
    transform: translateX(0);
    opacity: 1;
}

.vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbetag-line,
.vbebanner-movies .vbemovie-contain .vbetag-img {
    transition-delay: .3s;
}

.vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbemovie-info {
    transition-delay: .5s;
}

.vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbemovie-meta-holder {
    transition-delay: .7s;
}

.vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbemovie-action {
    transition-delay: .9s;
}

/*================*/
.home-singal-silder .vbebanner-movies .item {
    height: 70vh;
    border-left: 3px solid var(--primary-color);
}

@media(max-width:1699px) {
    .vbemovie-contain-style-3 a.playBut {
        margin: 0 0 90px;
    }
}

@media(max-width:1399px) {
    .vbemovie-contain-style-3 a.playBut {
        margin: 0 0 45px;
    }

    .vbebanner-movies .vbemovie-contain .vbemovie-info h3 {
        font-size: 54px;
        line-height: 62px;
    }
}

@media(max-width:1365px) {
    .vbebanner-movies .owl-carousel .owl-nav button.owl-prev {
        left: 1%;
    }

    .vbebanner-movies .owl-carousel .owl-nav button.owl-next {
        right: 1%;
    }

    .vbebanner-movies .vbemovie-contain .vbemovie-info h3 {
        font-size: 62px;
        line-height: 70px;
    }
}

@media(max-width:1023px) {
    .vbebanner-movies .vbemovie-contain .vbemovie-info h3 {
        font-size: 54px;
        line-height: 62px;
    }

    .vbebanner-movies .owl-carousel .owl-nav {
        display: none;
    }
}

@media (max-width:979px) {
    .vbebanner-movies .owl-carousel .owl-dots {
        display: none;
    }
}

@media(max-width:767px) {

    .vbebanner-movies .vbemovie-contain .vbemovie-info h3 {
        font-size: 40px;
        line-height: 48px;
    }

    .vbebanner-movies .vbemovie-contain .vbemovie-meta-holder p,
    .vbebanner-movies .vbemovie-contain .vbemovie-info p {
        font-size: 16px;
    }

    .vbebanner-movies .vbemovie-contain .vbetag-line {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 2px;
    }

    .vbebanner-movies .vbemovie-contain .vbemovie-meta-holder ul li img {
        height: 22px;
    }

    .vbebanner-movies .vbemovie-contain .vbetag-img img {
        height: 45px;
    }

    .vbebanner-movies .vbemovie-contain .vbemovie-action .vbebtn-container {
        margin-right: 10px;
    }

    .vbebanner-movies .vbemovie-contain .vbemovie-action .vbebtn-container.button-1 .vbebutton {
        padding: 12px 30px;
    }

    .vbebanner-movies .vbemovie-contain .vbemovie-meta-holder ul li {
        font-size: 14px;
        margin: 8px 0 0 10px;
        padding: 0 0 0 10px;
    }
}

@media(max-width:479px) {
    .vbebanner-movies .vbemovie-contain .vbemovie-action .vbebtn-container.button-2 {
        margin-top: 15px;
    }
}

/*================================================
Banner 2
===============================================*/
.vbebanner-movies.banner-style-2 .item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: -moz-linear-gradient(left, rgba(34,31,31,1) 0%, rgba(34,31,31,0.4) 100%);
    background: -webkit-linear-gradient(left, rgba(34,31,31,1) 0%,rgba(34,31,31,0.4) 100%);
    background: linear-gradient(to right, rgba(34,31,31,1) 0%,rgba(34,31,31,0.4) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#221f1f', endColorstr='#66221f1f',GradientType=1 );
}

.vbemovie-contain-style-2 .vbetag-line {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 15px 0;
    border-left: 2px solid var(--primary-color);
    padding: 0 0 0 15px;
    color: var(--white-color);
}

.vbemovie-contain-style-2 .vbetag-img img {
    width: auto;
    height: 60px;
    margin: 0 0 15px 0;
}

.vbemovie-contain-style-2 .vbemovie-info h3 {
    font-size: 62px;
    line-height: 70px;
    text-transform: uppercase;
}

.vbemovie-contain-style-2 .vbemovie-meta-holder ul.vbemeta-after-title {
    margin: 5px 0 15px;
    padding: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.vbemovie-contain-style-2 .vbemovie-meta-holder ul.vbemeta-after-title li {
    list-style: none;
    font-family: var(--title-fonts);
    color: var(--white-color);
    margin: 10px 0 0 20px;
    padding: 0 0 0 20px;
    font-size: 16px;
    line-height: normal;
    display: flex;
    float: left;
    align-items: center;
    position: relative;
}

.vbemovie-contain-style-2 .vbemovie-meta-holder ul.vbemeta-after-title li.vbesen-rating:before {
    display: none;
}

.vbemovie-contain-style-2 .vbemovie-meta-holder ul.vbemeta-after-title li.vbesen-rating span {
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 2px 8px;
}

.vbemovie-contain-style-2 .vbemovie-meta-holder ul.vbemeta-after-title li:first-child {
    margin-left: 0;
    padding-left: 0;
}

.vbemovie-contain-style-2 .vbemovie-meta-holder ul.vbemeta-after-title li:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -2px;
    left: -2px;
    height: 4px;
    width: 4px;
    display: inline-block;
    background: var(--white-color);
    opacity: 0.8;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.vbemovie-contain-style-2 .vbemovie-meta-holder ul.vbemeta-after-title li a {
    color: var(--white-color);
    background: #1f80e0;
    padding: 2px 8px;
}

.vbemovie-contain-style-2 .vbemovie-meta-holder ul.vbemeta-after-title li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.vbemovie-contain-style-2 .vbemovie-meta-holder ul.vbemeta-after-title li img {
    height: 25px;
    width: auto;
    margin-right: 10px;
    float: left;
}

.vbemovie-contain-style-2 .vbemovie-meta-holder ul.vbemeta-after-title li i {
    margin-right: 5px;
    color: var(--primary-color);
}

.vbemovie-contain-style-2 .vbemovie-meta-holder p,
.vbemovie-contain-style-2 .vbemovie-info p {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    margin-bottom: 20px;
}

.vbemovie-contain-style-2 .vbemovie-action .vbebtn-container {
    display: inline-block;
    margin-right: 30px;
}

.vbemovie-contain-style-2 .vbemovie-meta-holder .vbemeta-info ul {
    margin: 0 0 40px;
    padding: 0;
}

.vbemovie-contain-style-2 .vbemovie-meta-holder .vbemeta-info ul li {
    margin: 0 0 5px;
    padding: 0;
    list-style: none;
    font-family: var(--title-fonts);
    color: var(--white-color);
    font-size: 18px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.vbemovie-contain-style-2 .vbemovie-meta-holder .vbemeta-info ul li strong {
    color: #ffff00;
}

.vbemovie-contain-style-2 .vbemovie-meta-holder .vbemeta-info ul li a {
    color: var(--white-color);
}

/* .vbebanner-movies.banner-style-2 .owl-carousel .owl-item .vbemovie-contain-style-2 .vbemovie-info, .vbebanner-movies.banner-style-2 .owl-carousel .owl-item .vbemovie-contain-style-2 .vbemovie-meta-holder, .vbebanner-movies.banner-style-2 .owl-carousel .owl-item .vbemovie-contain-style-2 .vbemovie-action, .vbebanner-movies.banner-style-2 .owl-carousel .owl-item .vbemovie-contain-style-2 .vbetag-line, .vbebanner-movies.banner-style-2 .owl-carousel .owl-item .vbemovie-contain-style-2 .vbetag-img {  }
.vbebanner-movies.banner-style-2 .owl-carousel .owl-item.active .vbemovie-contain-style-2 .vbemovie-info, .vbebanner-movies.banner-style-2 .owl-carousel .owl-item.active .vbemovie-contain-style-2 .vbemovie-meta-holder, .vbebanner-movies.banner-style-2 .owl-carousel .owl-item.active .vbemovie-contain-style-2 .vbemovie-action, .vbebanner-movies.banner-style-2 .owl-carousel .owl-item.active .vbemovie-contain-style-2 .vbetag-line, .vbebanner-movies.banner-style-2 .owl-carousel .owl-item.active .vbemovie-contain-style-2 .vbetag-img { transform: translateX(0); opacity: 1; } */
.vbebanner-movies.banner-style-2 .owl-carousel .owl-item.active .vbemovie-contain-style-2 .vbetag-line,
.vbebanner-movies.banner-style-2 .vbemovie-contain-style-2 .vbetag-img {
    -webkit-animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.2s both;
    animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.2s both;
}

.vbebanner-movies.banner-style-2 .owl-carousel .owl-item.active .vbemovie-contain-style-2 .vbemovie-info {
    -webkit-animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.4s both;
    animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.4s both;
}

.vbebanner-movies.banner-style-2 .owl-carousel .owl-item.active .vbemovie-contain-style-2 .vbemovie-meta-holder {
    -webkit-animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.6s both;
    animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.6s both;
}

.vbebanner-movies.banner-style-2 .owl-carousel .owl-item.active .vbemovie-contain-style-2 .vbemovie-action {
    -webkit-animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.8s both;
    animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.8s both;
}

.vbebanner-movies.banner-style-2 .owl-carousel .owl-item.active .vbefront-image {
    -webkit-animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
    animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
}

/**
 * ----------------------------------------
 * animation fade-in-right
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

/**
 * ----------------------------------------
 * animation fade-in-left
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}


/*================================================
Banner 3
===============================================*/
.vbebanner-movies.banner-style-3 .item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: -moz-linear-gradient(left, rgba(34,31,31,1) 0%, rgba(34,31,31,0.4) 100%);
    background: -webkit-linear-gradient(left, rgba(34,31,31,1) 0%,rgba(34,31,31,0.4) 100%);
    background: linear-gradient(to right, rgba(34,31,31,1) 0%,rgba(34,31,31,0.4) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#221f1f', endColorstr='#66221f1f',GradientType=1 );
}


.vbemovie-contain-style-3 .row.justify-content-center {
    align-content: flex-end;
    text-align: center;
    padding-bottom: 60px;
}

.vbemovie-contain-style-3 .vbetag-line {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 15px 0;
    border-left: 2px solid #1f80e0;
    padding: 0 0 0 15px;
    color: var(--white-color);
    display: inline-block;
}

.vbemovie-contain-style-3 .vbetag-img img {
    width: auto;
    height: 60px;
    margin: 0 auto 15px;
}

.vbemovie-contain-style-3 .vbemovie-info h3 {
    font-size: 62px;
    line-height: 70px;
    text-transform: uppercase;
}

.vbemovie-contain-style-3 .vbemovie-meta-holder ul {
    margin: 5px 0 15px;
    padding: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    justify-content: center;
}

.vbemovie-contain-style-3 .vbemovie-meta-holder ul li {
    list-style: none;
    font-family: var(--title-fonts);
    color: var(--white-color);
    margin: 10px 0 0 20px;
    padding: 0 0 0 20px;
    font-size: 16px;
    line-height: normal;
    display: flex;
    float: left;
    align-items: center;
    position: relative;
}

.vbemovie-contain-style-3 .vbemovie-meta-holder ul li.vbesen-rating:before {
    display: none;
}

.vbemovie-contain-style-3 .vbemovie-meta-holder ul li.vbesen-rating span {
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 2px 8px;
}

.vbemovie-contain-style-3 .vbemovie-meta-holder ul li:first-child {
    margin-left: 0;
    padding-left: 0;
}

.vbemovie-contain-style-3 .vbemovie-meta-holder ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -2px;
    left: -2px;
    height: 4px;
    width: 4px;
    display: inline-block;
    background: var(--white-color);
    opacity: 0.8;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.vbemovie-contain-style-3 .vbemovie-meta-holder ul li:first-child:before {
    display: none;
}

.vbemovie-contain-style-3 .vbemovie-meta-holder ul li a {
    color: var(--white-color);
    background: var(--primary-color);
    padding: 2px 8px;
}

.vbemovie-contain-style-3 .vbemovie-meta-holder ul li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.vbemovie-contain-style-3 .vbemovie-meta-holder ul li img {
    height: 25px;
    width: auto;
    margin-right: 10px;
    float: left;
}

.vbemovie-contain-style-3 .vbemovie-meta-holder ul li i {
    margin-right: 5px;
    color: var(--primary-color);
}

.vbemovie-contain-style-3 .vbemovie-meta-holder p,
.vbemovie-contain-style-3 .vbemovie-info p {
    display: inline-block;
    width: 100%;
    font-size: 18px;
}

.vbemovie-contain-style-3 .vbemovie-action .vbebtn-container {
    display: inline-block;
    margin-right: 30px;
}

/* .vbebanner-movies .owl-carousel .owl-item .vbemovie-contain .vbemovie-info, .vbebanner-movies .owl-carousel .owl-item .vbemovie-contain .vbemovie-meta-holder, .vbebanner-movies .owl-carousel .owl-item .vbemovie-contain .vbemovie-action, .vbebanner-movies .owl-carousel .owl-item .vbemovie-contain .vbetag-line, .vbebanner-movies .owl-carousel .owl-item .vbemovie-contain .vbetag-img { transition: transform .5s, opacity .3s, background .5s; opacity: 0; transform: translateX(300px); }
.vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbemovie-info, .vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbemovie-meta-holder, .vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbemovie-action, .vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbetag-line, .vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbetag-img { transform: translateX(0); opacity: 1; }
.vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbetag-line, .vbemovie-contain-style-3 .vbetag-img { transition-delay: .3s; }
.vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbemovie-info { transition-delay: .5s; }
.vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbemovie-meta-holder { transition-delay: .7s; }
.vbebanner-movies .owl-carousel .owl-item.active .vbemovie-contain .vbemovie-action { transition-delay: .9s; } */
.vbemovie-contain-style-3 a.playBut {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 0 130px;
}

.vbemovie-contain-style-3 a.playBut svg {
    height: 90px;
    width: auto;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.vbemovie-contain-style-3 a.playBut span {
    font-family: var(--title-fonts);
    color: var(--white-color);
    margin: 0 0 0 15px;
    padding: 0;
    font-size: 24px;
    line-height: normal;
    display: flex;
}

.vbemovie-contain-style-3 a.playBut .triangle {
    stroke: var(--white-color);
}

.vbemovie-contain-style-3 a.playBut .circle {
    stroke: var(--white-color);
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    -webkit-transition: all 0.5s ease-in-out;
    opacity: 1;
}

.vbemovie-contain-style-3 a.playBut:hover .circle {
    opacity: 1;
    stroke-dasharray: 10;
    stroke-dashoffset: 10;
}

@media(max-width:1399px) {
    .vbemovie-contain-style-3 .vbemovie-info h3 {
        font-size: 54px;
        line-height: 62px;
    }
}

@media(max-width:1365px) {
    .vbemovie-contain-style-3 .vbemovie-info h3 {
        font-size: 62px;
        line-height: 70px;
    }
}

@media(max-width:1023px) {
    .vbemovie-contain-style-3 .vbemovie-info h3 {
        font-size: 54px;
        line-height: 62px;
    }

    .vbemovie-contain-style-3 .row.justify-content-center {
        align-content: center;
    }
}

@media(max-width:767px) {
    .vbemovie-contain-style-3 .vbemovie-info h3 {
        font-size: 40px;
        line-height: 48px;
    }

    .vbemovie-contain-style-3 .vbetag-line {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 2px;
    }

    .vbemovie-contain-style-3 .vbemovie-meta-holder ul li img {
        height: 22px;
    }

    .vbemovie-contain-style-3 .vbetag-img img {
        height: 45px;
    }

    .vbemovie-contain-style-3 .vbemovie-action .vbebtn-container {
        margin-right: 10px;
    }

    .vbemovie-contain-style-3 .vbemovie-action .vbebtn-container.button-1 .vbebutton {
        padding: 12px 30px;
    }

    .vbemovie-contain-style-3 .vbemovie-meta-holder ul li {
        font-size: 14px;
        margin: 8px 0 0 10px;
        padding: 0 0 0 10px;
    }

    .vbemovie-contain-style-3 .vbemovie-meta-holder p,
    .vbemovie-contain-style-3 .vbemovie-info p {
        font-size: 16px;
    }
}

@media(max-width:479px) {
    .vbemovie-contain-style-3 .vbemovie-action .vbebtn-container.button-2 {
        margin-top: 15px;
    }

    .vbemovie-contain-style-3 a.playBut svg {
        height: 60px;
    }

    .vbemovie-contain-style-3 a.playBut span {
        font-size: 18px;
    }

    .vbemovie-contain-style-3 .vbemovie-info h3 {
        font-size: 30px;
        line-height: 38px;
    }
}

/*================================================
Play Button
================================================*/
.vbefront-image {
    position: relative;
    display: inline-block;
    width: 100%;
}

.vbefront-image a {
    margin: auto;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.vbefront-image a svg {
    height: 90px;
    width: auto;
}

.vbefront-image a span {
    font-family: var(--title-fonts);
    color: var(--white-color);
    margin: 15px 0 0 0;
    padding: 0;
    font-size: 24px;
    line-height: normal;
    display: flex;
}

.circle {
    stroke: var(--white-color);
    stroke-dasharray: 650;
    stroke-dashoffset: 650;
    -webkit-transition: all 0.5s ease-in-out;
    opacity: 0.3;
}

.playBut {
    display: inline-block;
    -webkit-transition: all 0.5s ease;
}

.playBut .triangle {
    -webkit-transition: all 0.7s ease-in-out;
    stroke-dasharray: 240;
    stroke-dashoffset: 480;
    stroke: var(--white-color);
    transform: translateY(0);
}

.playBut:hover .triangle {
    stroke-dashoffset: 0;
    opacity: 1;
    stroke: var(--white-color);
    animation: nudge 0.7s ease-in-out;
}

@keyframes nudge {
    0% {
        transform: translateX(0);
    }

    30% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    70% {
        transform: translateX(-2px);
    }

    100% {
        transform: translateX(0);
    }
}

.playBut:hover .circle {
    stroke-dashoffset: 0;
    opacity: 1;
}

.vbefront-image.no-image {
    margin: 0;
    text-align: center;
}

.vbefront-image.no-image:before {
    display: none;
}

.vbefront-image.no-image a {
    margin: 0;
    text-align: inherit;
    position: relative;
    top: inherit;
    left: inherit;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
}

@media(max-width:1399px) {
    .vbemovie-contain-style-2 .vbemovie-info h3 {
        font-size: 54px;
        line-height: 62px;
    }
}

@media(max-width:1365px) {
    .vbemovie-contain-style-2 .vbemovie-info h3 {
        font-size: 62px;
        line-height: 70px;
    }

    .vbefront-image {
        margin-left: 0;
    }
}

@media(max-width:1200px) {
    .vbefront-image {
        margin-bottom: 45px;
    }

    .vbebanner-movies.banner-style-2 .item {
        height: auto;
        padding: 60px 0;
    }

    .vbefront-image.no-image {
        margin: 0 0 45px;
        text-align: left;
    }
}

@media(max-width:1023px) {
    .vbemovie-contain-style-2 .vbemovie-info h3 {
        font-size: 54px;
        line-height: 62px;
    }

    .vbebanner-movies .owl-carousel .owl-nav {
        display: none;
    }
}

@media(max-width:767px) {
    .vbemovie-contain-style-2 .vbemovie-info h3 {
        font-size: 40px;
        line-height: 48px;
    }

    .vbemovie-contain-style-2 .vbetag-line {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 2px;
    }

    .vbemovie-contain-style-2 .vbemovie-meta-holder ul li img {
        height: 22px;
    }

    .vbemovie-contain-style-2 .vbetag-img img {
        height: 45px;
    }

    .vbemovie-contain-style-2 .vbemovie-action .vbebtn-container {
        margin-right: 10px;
    }

    .vbemovie-contain-style-2 .vbemovie-action .vbebtn-container.button-1 .vbebutton {
        padding: 12px 30px;
    }

    .vbemovie-contain-style-2 .vbemovie-meta-holder ul li {
        font-size: 14px;
        margin: 8px 0 0 10px;
        padding: 0 0 0 10px;
    }

    .vbemovie-contain-style-2 .vbemovie-meta-holder .vbemeta-info ul li {
        font-size: 16px;
    }

    .vbemovie-contain-style-2 .vbemovie-meta-holder p,
    .vbemovie-contain-style-2 .vbemovie-info p {
        font-size: 16px;
    }

    .vbefront-image {
        margin-bottom: 30px;
    }
}

@media(max-width:479px) {
    .vbemovie-contain-style-2 .vbemovie-action .vbebtn-container.button-2 {
        margin-top: 15px;
    }

    .vbefront-image a svg {
        height: 60px;
    }

    .vbefront-image a span {
        font-size: 18px;
    }

    .vbebanner-movies .vbemovie-contain .vbemovie-info h3,
    .vbemovie-contain-style-2 .vbemovie-info h3 {
        font-size: 30px;
        line-height: 38px;
    }
}


/*======================================================
Icon-Box
======================================================*/

.vbeicon-box-style-1 {
    padding: 45px 45px 45px 45px;
    background-color: var(--black-color);
    border-style: solid;
    border-width: 0px 0px 3px 0px;
    border-color: #E50916;
    text-align: center;
}

.vbeicon-box-style-1 .vbeicon-box-icon {
    margin-bottom: 25px;
}

.vbeicon-box-style-1 .vbeicon-box-icon .vbeicon-animation {
    display: inline-block;
    background-color: #E50916;
    color: #ffffff;
    text-align: center;
    border: 3px solid #ffffff;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    line-height: 70px;
    font-size: 30px;
}

.vbeicon-box-style-1 .vbeicon-box-content .vbeicon-box-description {
    color: #FFFFFF;
    font-family: var(--body-fonts);
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width:767px){
    .vbeblog-spot-video iframe{
        height: auto;
    }
}

/*===========================================================================================================*/