body {
    background: #fff;
    color: #000000;
    font-family: 'Poppins';
    overflow-x: hidden !important;
}


html {
    scroll-behavior: smooth;
}


:root {
    --pink: #F5EFF7;
    --white: #fff;
    --purple: #72288A;
    --yellow: #C38B09;
    --ligt_yellow: #fbf8f1;
    --third: #d1d2d4;
    --open_sans: 'Open Sans', sans-serif;

    --paragraph: #6E6E6E;
    --black: #121212;
}


p {
    padding: 0;
    margin: 5px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--paragraph);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /*font-family: "Raleway", sans-serif;*/
    font-family: 'Open Sans', sans-serif;
    padding: 0;
    color: var(--purple)
}


.wow {
    visibility: hidden;
}

.container-fluid {
    padding: 0 120px;
}







.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6c6c6c;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border: 2px solid #a4a4a4;
}

.modal-header button.close {
    position: absolute;
    right: 15px;
}

.signup {
    width: 100%;
    border-bottom: 1px solid #dee2e6;
    padding: 15px 0;
}

.signup p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--black);
    margin: 0px;
    text-align: center;
}

.login-form label {
    font-size: 16px;
    line-height: 20px;
    color: var(--paragraph);
    margin-bottom: 8px;
    display: inline-block;
}

.login-form {
    padding: 10px 15px;
}

.login-form .form-group {
    margin-bottom: 25px;
}

.signup p a {
    font-weight: 600;
    color: var(--yellow);
}

.modal-header h5 {
    color: var(--black);
    font-weight: 700;
}

.forgot-password {
    padding: 3px 0;
}

.forgot-password a {
    color: var(--yellow);
    text-decoration: underline;
}

.forgot-password a:hover {
    text-decoration: none;
}

button.btn-login {
    border-radius: 5px;
    margin-top: 10px;
    padding: 8px 20px;
    font-size: 1rem;
    background-color: var(--purple);
    color: #ffffff !important;
    border: 0;
}

button.btn-login:hover {
    background-color: var(--yellow);
}



/*===== * Preloader */
.container-preloader {
    align-items: center;
    /*    cursor: none;*/
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 900;
}

.container-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}
.rounded-img{width:152px;}
/* Spinner Loading */
.container-preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 10px solid rgba(0, 0, 0, 0.2);
    border-top-color: #72288a;
    /* It is not in alphabetical order so that you do not overwrite it */
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em;
}

/* Loading text */
.container-preloader .animation-preloader .txt-loading {
    font: bold 5em 'Montserrat', sans-serif;
    text-align: center;
    user-select: none;
}

.container-preloader .animation-preloader .txt-loading .characters:before {
    animation: characters 4s infinite;
    color: orange;
    content: attr(preloader-text);
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: rotateY(-90deg);
}

.container-preloader .animation-preloader .txt-loading .characters {
    color: rgba(0, 0, 0, 0.2);
    position: relative;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(2):before {
    animation-delay: 0.2s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(3):before {
    animation-delay: 0.4s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(4):before {
    animation-delay: 0.6s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(5):before {
    animation-delay: 0.8s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(6):before {
    animation-delay: 1s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(7):before {
    animation-delay: 1.2s;
}

.container-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.container-preloader .loader-section.section-left {
    left: 0;
}

.container-preloader .loader-section.section-right {
    right: 0;
}

/* Fade effect on loading animation */
.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

/* Curtain effect */
.loaded .loader-section.section-left {
    transform: translateX(-101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.loaded .loader-section.section-right {
    transform: translateX(101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

/* Animation of the preloader */
@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

/* Animation of letters loading from the preloader */
@keyframes characters {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

/* Laptop size back (laptop, tablet, cell phone) */
@media screen and (max-width: 767px) {

    /* Preloader */
    /* Spinner Loading */
    .container-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }

    /* Text Loading */
    .container-preloader .animation-preloader .txt-loading {
        font: bold 3.5em 'Montserrat', sans-serif;
    }
}

@media screen and (max-width: 500px) {

    /* Prelaoder */
    /* Spinner Loading */
    .container-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    /*Loading text */
    .container-preloader .animation-preloader .txt-loading {
        font: bold 2em 'Montserrat', sans-serif;
    }
}

.origin {
    text-decoration: none;
    font-size: 45px;
}



/***navbar***/

header.header-bg {
    position: sticky;
    margin: 0 auto;
    width: 100%;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 99;
    background-color: var(--white);
    box-shadow: 0px 3px 6px #0000000a;
}

.navbar_sticky {
    top: 0;
    position: fixed !IMPORTANT;
}

/*header .container {*/
/*    max-width: 1200px;*/
/*    background: #074775;*/
/*    border-radius: 15px;*/
/*}*/

nav.navbar.navbar-expand-lg {
    padding: 5px 0px;
}

.navbar-nav .nav-link {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    padding: 26px 0;
    color: rgb(32, 32, 32) !IMPORTANT;
    position: relative;
    opacity: 0.8;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a.nav-link.logout {
    color: var(--yellow) !important;
    font-size: 18px;
    text-decoration: underline;
}

/*a.nav-link.page-scroll {*/
/*    background: var(--purple);*/
/*    width: 120px;*/
/*    height: 58px;*/
/*    height: 42px;*/
/*    line-height: 0;*/
/*    text-align: center;*/
/*    border-radius: 50px;*/
/*    color: #fff !important;*/
/*    opacity: 100%;*/
/*}*/


a.nav-link.page-scroll {
    background: var(--purple);
    width: 100%;
    height: 44px;
    line-height: 24px;
    text-align: center;
    border-radius: 50px;
    color: #fff !important;
    opacity: 100%;
    padding: 10px 22px !IMPORTANT;
}

.navbar-expand-lg .nav-item.nav-dropdown {
    position: relative;
}

li.nav-item.nav-dropdown::before {
    content: "\f078";
    position: absolute;
    right: 11px;
    top: 14px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffff;
    z-index: 10;
    font-size: 11px;
    color: white;
    font-size: 13px;
    display: none;
}

.navbar-nav li.nav-item ul {
    display: none;
    position: absolute;
    top: 45px;
    padding: 20px 15px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    width: 230px;
    border-top: 4px #ff9600 solid;
}

.navbar-nav li.nav-item ul:after {
    bottom: 100%;
    left: 40px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    border-color: rgba(255, 150, 0, 0);
    border-bottom-color: #ff9600;
    border-width: 10px;
}

.navbar-nav li.nav-item:hover ul {
    display: block;
}

.navbar-nav li.nav-item ul li {
    padding: 5px 0;
}

.navbar-nav li.nav-item ul li a {
    font-size: 15px;
    color: #000;
    padding: 5px 0;
}

ul.navbar-nav li.dropdown:hover ul.dropdown-menu {
    display: block;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 9%);
    width: 240px;
}

li.nav-link.dropdown a {
    color: #000;
}

ul.navbar-nav li.dropdown:hover ul.dropdown-menu li {
    padding: 10px 0;
}


ul.navbar-nav li.dropdown:hover ul.dropdown-menu li a {
    font-size: 16px;
    padding: 5px 0;
}

a.nav-link.company {
    background: var(--purple);
    width: 100%;
    height: 44px;
    line-height: 24px;
    text-align: center;
    border-radius: 50px;
    color: #fff !important;
    opacity: 100%;
    padding: 10px 22px !IMPORTANT;
}

.buy-tickets a {
    color: #0c0034;
    background: #fbe50c;
    padding: 7px 22px;
    border-radius: 50px;
    border: 2px solid #fbe50c;
    transition: all ease-in-out 0.3s;
    font-weight: 500;
    /* margin-left: 8px; */
    margin-top: 2px;
    line-height: 1;
    font-family: 'Poppins';
    font-size: 14px;
}

li.nav-item.buy-tickets {
    margin-top: 9px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link:focus {
    /* margin-right: 1rem; */
    margin-left: 0;
    color: #000;
    /* border-bottom: 3px solid #DB0106;*/
}


.rounded-20 {
    border-radius: 20px;
}

.dropdown-menu {
    border-radius: 0;
    font-size: 14px;
    margin-top: 0;
    border: 0;
    padding: 0;
    text-transform: capitalize;
    text-align: center;
}

.navbar-nav .dropdown-menu li a:hover {
    color: #22008d;
}

.dropdown-menu .dropdown-item {
    padding: .60rem 1rem;
}

.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: #FF7A42;
}

.logo-shap:after {
    content: "";
    width: 280px;
    height: 93px;
    left: -19px;
    top: 0;
    transform: skew(-20deg);
    background: #fff;
    position: absolute;
    display: none;
}

.navbar-brand {
    z-index: 999 !important;
}

a.navbar-brand img {
    width: 270px;
}
.navbar{padding-top:0;padding-bottom:0;}
.collapse.navbar-collapse {
    justify-content: end;
}

#header {
    height: auto;
    top: 0;
    left: 0;
    transition: all 0.5s;
    z-index: 997;
    transition: 0.5s;
    position: fixed;
    padding: 0 15px;
    background: white;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 30%);
    right: 0;
    padding: 10px;
}

#header.header-scrolled,
#header.header-fixed {
    background: rgba(0, 0, 0, 0.98);
    height: 75px;
    padding: 15px 0;
    transition: all 0.5s;
}

#header #logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 6px 0;
    line-height: 1;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header #logo h1 span {
    color: #e8450b;
}

#header #logo h1 a,
#header #logo h1 a:hover {
    color: #fff;
}

#header #logo img {
    padding: 0;
    margin: 0;
    max-height: 80px;
    transition: 0.5s ease-in-out;
    border-radius: 5px;
}

#header.header-scrolled #logo img {
    padding: 0;
    margin: 2px 0;
    max-height: 45px;
    transition: all 0.5s;
    padding: 4px;
}

.nav-item {
    position: relative;
    padding: 5px 15px;
}

/*
.nav-item .nav-link:before {
    content: "|";
    right: 0;
    position: absolute;
    top: 0;
    height: 100%;
    color: #fff;
    align-items: center;
    display: flex;
}

.nav-item:last-child .nav-link:before {
    display: none;
}
*/

/*
li.nav-item.nav-dropdown .nav-link:before{
    display: none;
}
*/


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
    padding-right: 20px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 5px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
    float: right;
    margin: 0;
    margin-top: 1%;
}

/* Nav Meu Styling */

.nav-menu a {
    /* color: #fff; */
    color: #000;
    font-size: 16px;
    text-decoration: none;
    padding: 10px;
    display: inline-block;
    width: auto;
    font-family: poppins;
    font-style: normal;
    font-weight: 400;
    margin-right: 20px;
}

.nav-menu .menu-active a,
.nav-menu a:hover {
    color: #000;
}

.nav-menu > li {
    margin-left: 8px;
}


.nav-menu li.buy-tickets a {
    color: #fff;
    background: #e8450b;
    padding: 7px 22px;
    border-radius: 50px;
    border: 2px solid #e8450b;
    transition: all ease-in-out 0.3s;
    font-weight: 500;
    /* margin-left: 8px; */
    margin-top: 2px;
    line-height: 1;
    font-size: 13px;
}



.nav-menu li.buy-tickets a:hover {
    background: none;
}

.nav-menu li.buy-tickets:hover a:before,
.nav-menu li.buy-tickets.menu-active a:before {
    visibility: hidden;
}

.nav-menu ul {
    margin: 0px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
    border-radius: 3px;
}

.nav-menu ul li {
    transition: 0.3s;
}

.nav-menu ul li a {
    padding: 10px;
    color: #060c22;
    transition: 0.3s;
    display: block;
    font-size: 13px;
    text-transform: none;
    border-radius: 3px;
}

.nav-menu ul li:hover > a {
    background: #fbe50c;
    color: #0c0034;
    width: 100%;
}

.nav-menu ul ul {
    margin: 0;
}


/* Mobile Nav Toggle */

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 15px 15px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #fff;
}

/* Mobile Nav Styling */

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(6, 12, 34, 0.9);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 17px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #e8450b;
}

#mobile-nav ul li ul {
    background-color: #e8450b;
}

#mobile-nav ul li li {
    padding-left: 0px;
}

#mobile-nav ul li li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 22px 5px 15px;
}

#mobile-nav ul li li a:hover {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #e8450b;
}

#mobile-nav ul .menu-item-active {
    color: #e8450b;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(6, 12, 34, 0.8);
    display: none;
}



/* Mobile Nav body classes */


section.banner-section {
    /*background: var(--pink) 0% 0% no-repeat padding-box;*/
    background:url(../images/banner.png?v1) no-repeat center;
    width: 100%;
    height: auto;
    background-size: cover;
     padding: 50px 0;
}
 .banner-content{padding-bottom:20px;}
.banner-content h1 {
    font-size: 40px;
    font-weight: bold;
    color: var(--purple);
    position:relative;
    z-index:1;
}
.banner-content h1:before {
    position: absolute;
    background: url(../images/right-angle.png?v1)no-repeat right;
    content: '';
    right: -68px;
    width: 88px;
    height: 100%;
     
}
.banner-content h1:after{
        position: absolute;
    background: #fff;
    content: '';
    left: 0;
    width: 200%;
    height: 100%;
    top: 0;
    z-index: -1;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%); 
    -ms-transform: translateX(-50%); 
    right: 0;
    
}

.banner-content p {
    font-size: 24px;
    padding-top: 10px;
    color: var(--purple);
    font-weight: 500;
}

.banner-content p span {
    color: var(--yellow);
}

/*section.banner-section a.enroll-now {*/
/*    width: 155px;*/
/*}*/

/*section.about-us a.enroll-now.more {*/
/*    width: 155px;*/
/*}*/
a.enroll-now-white {
    background: var(--white);
    padding: 8px 18px;
    display: block;
    margin-top: 20px;
    /*    width: 155px;*/
    color: var(--purple) !important;
    font-size: 16px;
    line-height:20px;
    text-align: center;
    font-weight: 500;
    border-radius: 50px;
      display: inline-block;
    align-items: center;
    justify-content: center;
    text-align: center;
}
a.enroll-now {
    background: var(--purple);
    padding: 8px 18px;
    display: block;
    margin-top: 20px;
    /*    width: 155px;*/
    color: var(--white) !important;
    font-size: 16px;
    line-height:20px;
    text-align: center;
    font-weight: 500;
    border-radius: 50px;
      display: inline-block;
    align-items: center;
    justify-content: center;
    text-align: center;
}

a.enroll-now-grey {
    background: var(--paragraph);
    padding: 8px 18px;
    display: unset;
    margin-top: 20px;
    /* width: 155px; */
    color: var(--white) !important;
    font-size: 16px;
    line-height:20px;
    text-align: center;
    font-weight: 500;
    border-radius: 50px;
    align-items: center;
    display: inline-block;
    text-align: center;
    justify-content: center;
    
}

/*a.live-soon-btn.enroll-now-grey {*/
/*    width: 140px;*/
/*}*/

/*.via-next-events-card a.live-soon-btn.enroll-now-grey {*/
/*    width: auto;*/
/*}*/

/*.banner-images img {
    width: auto;
    margin: 0 auto;
    display: block;
}*/




section.about-us {
    width: 100%;
    padding: 40px 0;
}

section.about-us p {
    padding-bottom: 10px !IMPORTANT;
        font-size: 18px;
}

section.about-us p span {
    color: var(--yellow);
}

a.enroll-now.more {
    margin-top: 20px;
}

section.via-next-events {
    width: 100%;
    height: auto;
    padding: 60px 0;
    background: var(--ligt_yellow);
    padding-bottom: 80px;
}


.heading h1 {
    color: var(--yellow);
    font-weight: bold;
    font-size: 28px;
}

.via-next-events-card {
    width: 100%;
    background: var(--white);
    /*margin-top: 40px;
    margin-bottom: 10px;
    border-radius: 10px;*/
    position: relative;
        height: 100%;
}
.watch-now{
    background:#1DA719;
   
    color:#fff;
        line-height: 20px;
    text-align: center;
    font-weight: 500;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
        padding: 8px 14px;
    font-size: 16px;
}
.watch-now.disabled{
    background:#CECECE;
     color:#393939;
}
.right-header{border-bottom:1px dotted #707070;padding-bottom:20px;margin-bottom:20px;}
.dotted-border{border-bottom:1px dotted #707070;padding-bottom:20px !important;margin-bottom:20px;}
.outer-box{
    background:#F5EFF7;padding:20px;border-radius:10px;margin-top:20px;
}
.topic-heading{border-bottom:1px solid #707070;padding-bottom:20px;margin-bottom:20px;}
.topic-heading span{font-weight:bold;color:var(--purple) !important;}
.coming-soon {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    width: 50%;
    justify-content: center;
    margin: 0 auto;
    top: 0;
    display: flex;
    margin-top: 20px;
}


.card-images {
    position: relative;
}

.card-images img {
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.card-content {
    padding: 20px 30px;
    width: 100%;
}

a.enroll-series {
    background-color: var(--yellow);
    padding: 10px 25px;
    display: inline-block;
    /* width: 240px; */
    color: var(--white) !important;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    border-radius: 50px;
    justify-content: center;
    margin: 0 auto;
}

a.enroll-series:hover{
    background: var(--purple);
}

.card-content h4 {
    padding-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.card-content h4 span {
    color: var(--paragraph);
}


section.via-next-events button.owl-prev span {
    position: absolute;
    left: 0;
    bottom: -40px;
    font-size: 37px;
    color: var(--white);
    width: 50px;
    height: 35px;
    align-items: center;
    border-radius: 50%;
    padding: 0;
    line-height: 30px;
    display: block !IMPORTANT;
    margin: 0 auto;
    color: transparent;
}

section.via-next-events button.owl-next span {
    content: "Prev";
    position: absolute;
    left: 100px;
    bottom: -40px;
    font-size: 37px;
    color: var(--white);
    width: 50px;
    height: 35px;
    align-items: center;
    border-radius: 50%;
    padding: 0;
    line-height: 30px;
    margin: 0 auto;
    color: transparent;
}

section.via-next-events button.owl-prev span:before {
    position: absolute;
    content: "< Prev";
    top: 0;
    left: 0;
    color: #000;
    font-size: 16px;
    display: flex;
    color: var(--purple);
    font-weight: 600;
}

section.via-next-events button.owl-next span:before {
    position: absolute;
    content: "Next >";
    top: 0;
    right: 0;
    color: #000;
    font-size: 16px;
    display: flex;
    color: var(--purple);
    font-weight: 600;
}

button.owl-prev.disabled span:before {
    color: #a9a9a9 !important;
}

button.owl-next.disabled span:before {
    color: #a9a9a9 !important;
}

section.via-next-events .owl-nav:before {
    content: "|";
    position: absolute;
    left: 70px;
    display: flex;
    bottom: -30px;
    font-size: 13px;
}

.owl-dots {
    display: none;
}

.owl-item {
    /*    width: 480px !IMPORTANT;*/
}

.card-content .d-flex a {
    margin: 15px 5px;
}

a.enroll-now.know {
    border: 1px solid var(--purple);
    background: var(--white) !important;
    color: var(--purple) !important;
}

.card-images p sup {
    top: 5px;
}

section.how-works {
    width: 100%;
    padding: 60px 0;
}

.how-works-speakers {
    width: 100%;
    padding: 10px 0;
    border-right: 1px solid var(--purple);
    height: 100%;
}

.how-works-speakers.last {
    border: 0;
}

.how-works-speakers ul {
    padding: 0;
}

a.instrusction {
    padding: 10px 25px;
    background: var(--purple);
    display: inline-block;
    
    /* width: 300px; */
    text-align: center;
    border-radius: 50px;
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

.how-works-speakers h2 {
    padding-bottom: 5px;
    font-size: 22px;
    font-weight: 700;
}
.how-works-speakers ul li {
    font-size: 16px;
    padding: 3px 0;
    color: var(--paragraph);
}

.how-works-speakers ul li span {
    color: var(--paragraph);
    font-weight: 700;
}

.how-works-speakers.speak span {
    color: var(--yellow);
}

.how-works-speakers:before {
    content: "";
    width: 1px;
    height: 100%;
    /*background: var(--purple);*/
    position: absolute;
    right: 60px;
    margin: 0 auto;
    display: block;
}

.how-works-speakers.last:before {
    display: none;
}


section.via-next-events.demand {
    background: var(--white);
}

section.via-next-events.demand .via-next-events-card {
    border: 1px solid var(--yellow);
}

section.footer {
    width: 100%;
    padding: 60px 0;
    background: var(--purple);
}

.footer-content p {
    color: var(--white);
    padding-bottom: 15px !important;
}

.footer-content p a {
    color: var(--white);
    padding-bottom: 15px !important;
    font-size: 18px;
    text-decoration: underline;
}



section.password-reset {
    width: 100%;
    padding: 30px 0 30px;
}

.password-rest-ceontent ul {
    padding: 20px 0;
    margin: 0;
}

.password-rest-ceontent ul li {
    padding: 10px 0;
    position: relative;
    padding-left: 35px;
    color: var(--paragraph)
}

.password-rest-ceontent ul li:before {
    position: absolute;
    content: '';
    z-index: 1;
    height: 30px;
    width: 30px;
    border-radius: 0px;
    left: 0px;
    top: 10px;
    /* background-color: #d1050d10; */
    /* border: 3px solid #fff; */
    background: url(../images/icon/ul-list.png) no-repeat left top;
}

section.password-reset.pass {
    padding: 30px 0;
}

.password-rest-ceontent h3 {
    font-size: 22px !important;
    font-weight: 600;
}
.lectures-row-card {
    margin-top: 25px;
    width: 100%;
}

.lecture-card {
    width: 100%;
    padding: 20px 0;
    height: 100%;
}

.lecture-heading {
    padding-top: 30px;
    display: flex;
    width: 100%;
    align-items: center;
}

.lecture-heading .lecture-heading-content {
    width: 50%;
}

.lecture-heading h4 {
    font-weight: 700;
}

.lectures-img img {
    width: 100%;
}

.lectures-img {
    border: 1px solid var(--yellow);
    min-height: 100%;
    display: flex;
    align-items: center;
}

.chairman-img {
    width: 25%;
    padding-right: 20px;
}

.chairman-img img {
    border-radius: 50%;
    width: 100%;
}

.lectures-img.chairman {
    width: 100%;
    display: flex;
    padding: 30px 20px;
    /*    height: 326px;*/
    border-left: 0;
    /*border-right: 0;*/
    align-items: center;
}

.lectures-img.chairman.livebtn {
    display: flex;
    width: 100%;
    justify-content: center;
}

.live-btn a.live-soon-btn {
background: #CECECE 0% 0% no-repeat padding-box;
    padding: 10px 25px;
    display: inline-block;
    margin: 10px 10px;
    color: #393939 !IMPORTANT;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
}


a.live-soon-btn.join-live {
    background: var(--purple);
    color: #ffff !important;
}

a.live-soon-btn.certificate {
    background: red;
    color: #fff !IMPORTANT;
}
a.live-soon-btn.re-watch {
    background: green;
    color: #fff !important;
}

.live-soon-btn a.live-soon-btn {
    /*width: 150px;*/
    text-align: center;
    margin-bottom: 15px;
}

.join-live-btn a.live-soon-btn {
    /*width: 200px;*/
    text-align: center;
}

.lectures-img.chairman.speaker {
    display: block;
}

a.chairman-btn {
background: var(--purple);
    padding: 10px 25px;
    display: inline-block;
    /* margin-top: 30px; */
    /* width: 155px; */
    color: var(--white) !important;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    border-radius: 50px;
}

.lecture-heading-content a.chairman-btn {
    float: right;
}

.chairman-content a.chairman-btn {
    float: right;
}

.speaker-last-p4 {
    display: flex;
    align-items: center;
}

.lecture-heading .lecture-content-heading {
    width: 50%;
}

.lecture-heading .lecture-content-heading a.chairman-btn {
    margin: 0;
    float: right;
}

.chairman-content {
    width: 75%;
}

.chairman-content h4 {
    font-weight: bold;
    font-size: 16px;
    padding-top: 10px;
}

.lectures-img.chairman.speaker {
    /*border: 1px solid var(--yellow);*/
}


section.password-reset.lecture {
    padding: 40px 0;
}

.lecture-heading.mobile {
    display: none;
}






.inner-banner {
    padding: 35px 0;
    background: var(--pink);
}

.inner-banner h1 {
    font-size: 40px;
    font-weight: bold;
    color: var(--yellow);
}

.forgot-passwords {
    width: 100%;
    height: auto;
    padding: 40px 0;
}

.forgot-passwords.forgot-pw {
    min-height: 500px;
}

.forgoot p {
    font-size: 16px;
    padding-top: 5px;
}

button.btn-submit {
background: var(--purple);
    padding: 10px 25px;
    display: inline-block;
    margin-top: 30px;
    /* width: 155px; */
    color: var(--white) !important;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    border-radius: 50px;
    border: 0;
}
.forgot-passwords form label {
    font-weight: 600;
}
.forgot-passwords form button {
    margin-top: 10px;
}

.forgoot .form-check label {
    color: var(--paragraph);
}

.forgoot .form-check label a {
    color: var(--paragraph);
    font-weight: 600;
    text-decoration: underline;
}

section.enroll-section {
    width: 100%;
    padding: 20px 0;
    padding-bottom: 0;
}

.enroll-now-section {
    height: 100%;
    width:100%;
}
.enroll-cards {
    display: flex;
    padding: 30px 20px;
    border: 1px solid var(--yellow);
    margin: 15px 0;
    height: 100%;
    align-items: center;
}

.enroll-cards-img {
    width: 18%;
}

.enroll-cards-img img {
    width: 150px;
    border-radius: 50%;
}

.enroll-cards-content {
    width: 80%;
    padding-left: 25px;
}

a.enroll-now-btn {
    background: var(--purple);
    text-align: center;
    border-radius: 50px;
    color: #fff !important;
    padding: 8px 18px;
    width: 135px;
    margin: 15px 0;
    font-size: 16px;
    display: block;
}

.inner-banner.thanks {
    padding: 60px 0;
}

.inner-banner.thanks a.enroll-now {
    width: 200px;
}

.inner-banner.thanks h2 {
    font-size: 38px;
    font-weight: bold;
    color: var(--yellow);
}

a.btn-enroll h6 {
    background-color: var(--purple);
    padding: 10px 15px;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
}


@media(max-width:1680px) {
    .how-works-speakers:before {
        right: 30px;
    }

    a.enroll-now {
        background: var(--purple);
        padding: 8px 14px;
        font-size: 16px;
    }

    .card-content .d-flex a {
        margin: 15px 0px;
    }
}


@media(max-width:1440px) {
    .banner-content p br {
        display: none;
    }

    .how-works-speakers:before {
        right: 10px;
    }

    .enroll-cards-img {
        width: 25%;
    }

    .enroll-cards-content {
        width: 75%;
        padding-left: 25px;
    }

    a.enroll-now {
        font-size: 14px;
    }

a.enroll-now-grey {
    padding: 8px 18px;
    font-size: 14px;
}
    .card-content {
        padding: 20px 20px;
        width: 100%;
    }

    .card-content .d-flex a {
        margin: 15px 2px;
    }
    
    
    
    .banner-content h1 {
    font-size: 32px;
    font-weight: bold;
    color: var(--purple);
}
.banner-content p {
    font-size: 18px;
}
.banner-images img {
    width: 70%;
    margin: 0 auto;
    display: block;
}

p {
    font-size: 16px;
}


}

@media(max-width:1366px) {
    


    a.enroll-now {
        font-size: 12px;
       padding: 8px 18px;
    }
    
    a.enroll-now-grey {
        font-size: 12px;
       padding: 8px 18px;
    }


    .lectures-img.chairman.livebtn {
        width: 100%;
        /*display: flex;*/
        /*padding: 40px 0px;*/
        padding: 17px 0px;
    }

    .live-btn a.live-soon-btn {
        padding: 10px 16px;
    }
    
    .container-fluid {
    padding: 0 100px;
}

}


@media(max-width:1280px) {
    .container-fluid {
        padding: 0 50px;
    }

    .how-works-speakers:before {
        right: 10px;
    }

    .how-works-speakers:before {
        right: 0px;
    }

    /*.via-next-events-card {*/
    /*    min-height:470px;*/
    /*}*/
}

@media(max-width:1200px) {
    .col-crads {
        display: none;
    }

    .lecture-heading {
        padding: 10px !important;
    }

    .lectures-img {
        min-height: auto;
        height: auto;
    }
        .banner-images img {
        width: 100%;
        margin: 0 auto;
        display: block;
    }


    .no-gutters.events {
        border: 1px solid var(--yellow);
        margin-top: 60px;
    }

    .lectures-img.chairman {
        border-left: 0 !important;
        border-right: 0 !important;
    }

    .lecture-card {
        border: 1px solid #c38b09;
        border-right: 0;
        border-left: 0;
        border-bottom: 0;
           width: 100%;
        padding: 20px 0 0;
        height: 100%;
    }



    .lectures-img.chairman.speaker {
        border: 1px solid #c38b0900;
    }

    .lectures-img {
        border: 0px solid var(--yellow);
    }

    .lecture-heading.mobile {
        display: block;
        display: flex;
    }

    .lecture-heading.mobile .lecture-heading-content a.chairman-btn {
        float: right;
    }

    .card-content .d-flex {
        display: block !IMPORTANT;
    }
    .card-content .d-flex a {
    margin: 12px 2px;
    width: 100%;
}
}

@media(max-width:991px) {
    .banner-images img {
        width: auto;
        margin: 0 auto;
        display: block;
        width: 100%;
    }

    .how-works-speakers:before {
        content: "";
        width: 100%;
        height: 1px;
        right: 0px;
        bottom: 0;
    }

    .how-works-speakers {
    width: 100%;
    padding: 35px 0;
    border-bottom: 1px solid var(--purple);
    border-right: 0;
}
.how-works-speakers ul li {
    padding: 7px 0;
}

    section.banner-section {
        padding: 40px 0 0;
    }

    .banner-images {
        padding-top: 40px;
    }

    .footer-content img {
        padding-top: 25px;
    }

    .footer-content p br {
        display: none;
    }

    .how-works-speakers.speak p br {
        display: none;
    }

    .enroll-cards {
        display: block;
    }

    .enroll-cards-content {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }

    .enroll-cards-img {
        width: 100%;
    }

    .card-content .d-flex {
        display: flex !important;
    }

    a.enroll-now {
        padding: 8px 18px;
    }
    a.chairman-btn {
    padding: 12px 25px;
    }

    .lectures-img {
        width: 100%;
    }
    
    a.enroll-now-grey {
    padding: 8px 18px;
    font-size: 16px;
}
.card-content .d-flex a {
    width: auto;
}
.lecture-card.banner {
    border-top: 0;
    padding: 0;
}
}

@media(max-width:767px) {
    .container-fluid {
        padding: 0 20px;
    }

    a.enroll-now {
        font-size: 16px;
    }

    .inner-banner h1 {
        font-size: 28px;
    }

    .heading h1 {
        font-size: 28px;
    }

    .inner-banner.thanks h2 {
        font-size: 26px;
    }

    .video-language .cert {
        justify-content: center;
        display: flex;
        margin-top: 15px;
    }

    .video-language .form-grp-select {
        justify-content: center;
        display: flex;
    }

    .live-btn a.live-soon-btn {
    padding: 10px 16px;
    margin: 10px 3px !IMPORTANT;
    /* white-space: nowrap; */
    font-size: 14px;
    }

    .lectures-img.chairman.livebtn {
            padding: 0px 5px 20px;
    }

    .live-soon-btn a.live-soon-btn {
        /*margin-bottom: 18px !IMPORTANT;*/
    }
    a.enroll-series {
    margin-top: 60px;
}

.series .enroll-now-grey {
    margin-top: 60px;
}
}



@media(max-width:575px) {
    a.navbar-brand img {
    width: 210px;
}
  
    .banner-content h1 {
        font-size: 16px;
    }
   .banner-content h1:before {
     right: -87px;
     
    z-index: -1;
}

    .banner-content p {
        font-size: 13px;
    }

    /*.via-next-events-card {*/
    /*    min-height: 490px;*/
    /*}*/

    .no-gutters.events {
        margin-top: 35px;
    }

    .chairman-img img {
        border-radius: 50%;
        width: 100%;
    }

    .chairman-img {
        width: 40%;
        padding-right: 20px;
    }

    .audi2_player.live-video-position iframe {
        height: 250px;
    }

    section.tf-section.collection h1 {
        font-size: 28px;
        font-weight: bold;
    }
    a.chairman-btn {
    padding: 12px 20px;
}
.forgot-passwords.forgot-pw {
    min-height: auto;
}
}


@media(max-width:350px) {
.d-flex.download-certificate-btn {
    display: block !IMPORTANT;
}
}