@font-face {
    font-family: 'Calibri';
    src: url('fonts/Calibrid41d.eot?#iefix') format('embedded-opentype'),
    url('fonts/Calibri.woff') format('woff'),
    url('fonts/Calibri.ttf')  format('truetype'),
    url('fonts/Calibri.svg#Calibri') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    color: #2f2f2f;
    font-family: 'Calibri';
}

html{
    overflow-x: hidden;
}

img {
    vertical-align: baseline;
    width : 100%;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
    color: royalblue;
}

a:visited {
    color: purple;
}

a:hover, a:focus, a:active {
    color: midnightblue;
}

a:focus {
    outline: thin dotted;
}

a:hover, a:active {
    outline: 0;
    list-style: none;
}

/*--------------------------------------------------------------
# Flex
--------------------------------------------------------------*/
.flex {
    display: flex !important;
}

@media screen and (min-width: 992px) {
    .flex-lg {
        display: flex !important;
    }
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.btn {
    padding: 16px 46px;
    border: 2px solid #9a24c1;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    color: #232127;
}



.btn.gradient {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZGllbnQiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMCUiIHkyPSIxMDAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdHlsZT0ic3RvcC1jb2xvcjojQUEwMEZGOyIgLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiM1ODE2ODc7IiAvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjZ3JhZGllbnQpIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIiAvPjwvc3ZnPg==);
    background-image: -webkit-gradient(linear, left top, 270deg, color-stop(0%, #AA00FF), color-stop(100%, #581687));
    background-image: -moz-linear-gradient(270deg,#AA00FF 0%,#581687 100%);
    background-image: -webkit-linear-gradient(270deg,#AA00FF 0%,#581687 100%);
    background-image: -o-linear-gradient(270deg,#AA00FF 0%,#581687 100%);
    background-image: -ms-linear-gradient(270deg,#AA00FF 0%,#581687 100%);
    background-image: linear-gradient(270deg,#AA00FF 0%,#581687 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position:relative;
    display:inline-block;
}

.btn.dark-purple {
    background: #9a24c1;
    color: #fff;
}

.btn.dark {
    background: #231e23;
    border-color: transparent;
    color: #fff;
}

.btn.gradient-bg {
    padding: 18px 46px;
    border: 0;
    background: -moz-linear-gradient(180deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(88,20,121,1)), color-stop(100%, rgba(171,0,229,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* ie10+ */
    background: linear-gradient(270deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#581479', endColorstr='#ab00e5',GradientType=1 ); /* ie6-9 */
    color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/*
# Site Header
--------------------------------*/
.site-header {
    position: relative;
}

.site-header .site-title img {
    max-height: 64px;
}

/*
# Header Bar
--------------------------------*/
.header-bar {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    padding: 14px 0;
}

/*
# Site Branding
--------------------------------*/
.site-branding img {
    display: block;
    max-width: 100%;
}

@media screen and (min-width: 992px) {
    .site-branding {
        margin-left: 45px;
    }

    .site-header .site-title img {
        max-height: 999px;
    }
}

/*
  Hamburger Menu
----------------------------------------*/
.hamburger-menu {
    position: relative;
    width: 100%;
    max-width: 24px;
    height: 22px;
    margin-left: auto;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
    top: 2px;
}

.hamburger-menu span:nth-child(2),
.hamburger-menu span:nth-child(3) {
    top: 10px;
}

.hamburger-menu span:nth-child(4) {
    top: 18px;
}

.hamburger-menu.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
}

.hamburger-menu.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger-menu.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
}

/*
# Main Menu
--------------------------------*/
.site-navigation {
    position: fixed;
    top: 60px;
    right: 15px;
    z-index: 9999;
    width: 100%;
    height: 22px;
    overflow: hidden;
    list-style: none;
    transition: all .35s;
}

.site-navigation.show {
    height: auto;
}

.site-navigation ul {
    position: fixed;
    top: 0;
    left: -320px;
    z-index: 9999;
    width: 320px;
    max-width: 80%;
    height: 100vh;
    overflow-x: scroll;
    padding: 30px;
    margin: 0;
    background: #9a28d7;
    transition: all 0.35s;
}

.site-navigation.show ul {
    left: 0;
}

.site-navigation ul li {
    display: block;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.02rem;
    text-transform: uppercase;
}

.site-navigation ul li a {
    display: block;
    color: #fff;
    transition: all 0.35s;
    text-decoration: none;
}

.site-navigation ul li a:hover,
.site-navigation ul li.current-menu-item a {
    border-color: #2f2f2f;
}

@media screen and (min-width: 992px) {
    .site-navigation {
        position: relative;
        top: auto;
        right: auto;
        height: auto;
        background: transparent;
    }

    .site-navigation ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        padding: 0;
        overflow: auto;
        background: transparent;
        list-style-type:none;
    }

    .site-navigation ul li a {
        color: #fff;
        list-style-type:none;
    }
}

/*
# Buy Tickets
--------------------------------*/
.site-header .buy-tickets {
    margin-right: 45px;
    text-align: right;
}

.site-header .buy-tickets .btn,
.hero-slider .btn {
    padding: 16px 46px;
    border: 2px solid #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-slider {
}

.hero-content {
    padding-top: 150px;
    padding-bottom: 120px;
}

.hero-content .container,
.hero-content .row,
.hero-content .col {
    height: 100%;
}

.hero-slider .entry-title {
    text-align: left;
    font-size: 28px;
    line-height: 1.2;
    font-weight: bold;
    color: #fff;
    margin : 0 auto;
}

.hero-slider .btn {
    margin-top: 45px;
}

.swiper-container-horizontal >.swiper-pagination-bullets,
.swiper-pagination-custom, .swiper-pagination-fraction {
    width: 50%;
    right: 0;
    bottom: 48px;
    left: 0;
    padding: 0 15px;
    margin: 0 auto;
    text-align: left;
}

.swiper-button-next,
.swiper-button-prev {
    visibility: hidden;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #9a28d7;
    transition: all .35s;
}

.swiper-button-next {
    right: 15px;
}

.swiper-button-prev {
    left: 15px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.swiper-button-next span,
.swiper-button-prev span {
    display: block;
    width: 20px;
    padding-top: 6px;
}

.swiper-button-next path,
.swiper-button-prev path {
    fill: #fff;
}

.swiper-pagination-bullet {
    position: relative;
    display: inline-block;
    height: 24px;
    border-radius: 0;
    font-size: 18px;
    font-weight: bold;
    text-align: right;
    color: #fff;
    background: transparent;
    opacity: 1;
    transition: all .35s;
}

.swiper-pagination-bullet-active {
    position: relative;
    width: 32px;
}

.swiper-pagination-bullet-active::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    z-index: 99;
    width: 20px;
    height: 2px;
    background: #fff;
}

@media screen and (min-width: 768px){
    .swiper-button-next,
    .swiper-button-prev {
        visibility: visible;
    }
}

/*
# Countdown
--------------------------------*/
.countdown-holder {
    margin-right: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.countdown-holder label {
    font-size: 13px;
}

@media screen and (min-width: 576px){
    .hero-slider .entry-title {
        font-size: 42px;
    }

    .countdown-holder {
        margin-right: 24px;
        font-size: 42px;
    }

    .countdown-holder label {
        font-size: 18px;
    }
}


@media screen and (min-width: 992px) {
    .hero-slider {
        /*height: 100vh;*/
    }

    .hero-content {
        padding-top: 300px;
    }

    .hero-slider .entry-title {
        font-size: 72px;
    }

    .countdown-holder {
        margin-right: 52px;
        font-size: 60px;
    }

    .countdown-holder label {
        font-size: 24px;
    }
}

@media screen and (min-width: 1200px){
    .hero-content {
        padding-top: 400px;
    }

    .swiper-button-next {
        right: 64px;
    }

    .swiper-button-prev {
        left: 64px;
    }
}


/*--------------------------------------------------------------
# Homepage - Info Section
--------------------------------------------------------------*/
.homepage-info-section {
    padding: 120px 0;
    background: #fff;
}

.homepage-info-section figure {
    padding-right: 30px;
}

.homepage-info-section figure img {
    max-width: 100%;
}

.homepage-info-section .entry-title {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    color: #232127;
}

.homepage-info-section .entry-content {
    margin-top: 32px;
}

.homepage-info-section .entry-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #777777;
}

.homepage-info-section .entry-footer a {
    margin-top: 32px;
    margin-right: 18px;
}


.para {
    text-align: center;
    margin : 0 200px;

}

.extra {
   margin :  5px auto;
   margin-top : 30px;
   padding-top : 20px;
   font-size: 32px;
    line-height: 1.13;
}


/*--------------------------------------------------------------
# Homepage - Featured Events
--------------------------------------------------------------*/
.homepage-featured-events {
    padding: 110px 0 150px;
    background: url("images/featured-events-bg.jpg") no-repeat center;
    height: 180% !important;
}
.homepage-featured-events1 {
    padding: 110px 0 150px;
    background: url("images/featured-events-bg1.png") center;
    background-size: cover;
    height: 180% !important;
}

.homepage-featured-events .event-content-wrap {
    position: relative;
    padding: 36px 18px;
}

.thumbnail {
     margin-top: 10px;
    margin-bottom: 10px;
}


.homepage-featured-events .event-content-wrap figure img {
    display: block;
    width: 100%;
}

.homepage-featured-events .event-content-wrap .entry-header {
    position: absolute;
    left: 18px;
    bottom: 24px;
    z-index: 99;
}

.homepage-featured-events .event-content-wrap .entry-header .entry-title {
    display: inline-block;
    padding: 12px 18px;
    margin: 0;

    font-size: 16px;
    font-weight: 400;
    width: 181px;
    text-transform: uppercase;
    color: #fff;
    background: #9a24c1;
}

.homepage-featured-events .event-content-wrap .entry-header .posted-date {
    padding: 2px 18px;
    font-size: 14px;
    color: #fff;
}

.featured-events-wrap {
    position: relative;
}

.featured-events-wrap .event-content-wrap:nth-last-of-type(1) {
    margin-bottom: 0;
}

.featured-events-wrap .event-content-wrap {
    width: 100%;
    margin-bottom: 30px;
}

@media screen and (max-width: 575px) {
    .featured-events-wrap .event-content-wrap.half {
        width: calc(50% - 15px);
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .featured-events-wrap .event-content-wrap {
        width: calc(50% - 15px);
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .featured-events-wrap .event-content-wrap {
        width: calc(50% - 15px);
    }

    .featured-events-wrap .event-content-wrap.half {
        width: calc(33.333333% - 15px);
    }
}

@media screen and (min-width: 992px) {
    .homepage-featured-events {
        min-height: 500px;
    }

    .featured-events-wrap .event-content-wrap {
        position: absolute;
        top: 0;
        left: 0;
        margin-bottom: 0;
    }

    .homepage-featured-events .positioning-event-1 {
        width: 290px;
    }

    .homepage-featured-events .positioning-event-2 {
        width: 210px;
        top: 192px;
        left: 290px;
    }

    .homepage-featured-events .positioning-event-3 {
        width: 210px;
        top: 75px;
        left: 560px;
    }

    .homepage-featured-events .positioning-event-4 {
        width: 130px;
        top: 235px;
        left: 800px;
    }

    .homepage-featured-events .positioning-event-5 {
        width: 130px;
        top: 350px;
        left: 0;
    }

    .homepage-featured-events .positioning-event-6 {
        width: 130px;
        top: 344px;
        left: 560px;
    }

    .homepage-featured-events .positioning-event-7 {
        width: 210px;
        top: 457px;
        left: 160px;
    }

    .homepage-featured-events .positioning-event-8 {
        width: 290px;
        top: 457px;
        left: 400px;
    }

    .homepage-featured-events .positioning-event-9 {
        width: 210px;
        top: 395px;
        left: 720px;
    }

    .homepage-featured-events .positioning-event-10 {
        width: 130px;
        top: 653px;
        left: 720px;
    }

    .homepage-featured-events .positioning-event-11 {
        width: 130px;
        top: 807px;
        left: 400px;
    }
}

@media screen and (min-width: 1200px) {
    .homepage-featured-events {
        min-height: 500px;
    }

    .homepage-featured-events .positioning-event-1 {
        width: 350px;
    }

    .homepage-featured-events .positioning-event-2 {
        width: 275px;
        top: 230px;
        left: 350px;
    }

    .homepage-featured-events .positioning-event-3 {
        width: 300px;
        top: 90px;
        left: 665px;
    }

    .homepage-featured-events .positioning-event-4 {
        width: 200px;
        top: 300px;
        left: 980px;
    }

    .homepage-featured-events .positioning-event-5 {
        width: 250px;
        top: 300px;
        left: 0;
    }

    .homepage-featured-events .positioning-event-6 {
        width: 200px;
        top: 410px;
        left: 665px;
    }

    .homepage-featured-events .positioning-event-7 {
        width: 255px;
        top: 546px;
        left: 190px;
    }

    .homepage-featured-events .positioning-event-8 {
        width: 350px;
        top: 546px;
        left: 475px;
    }

    .homepage-featured-events .positioning-event-9 {
        width: 255px;
        top: 470px;
        left: 885px;
    }

    .homepage-featured-events .positioning-event-10 {
        width: 200px;
        top: 776px;
        left: 855px;
    }

    .homepage-featured-events .positioning-event-11 {
        width: 250px;
        top: 800px;
        left: 400px;
    }
}

/*--------------------------------------------------------------
# Homepage - Next Events
--------------------------------------------------------------*/
.next-events-section-header {
    margin-top: 36px;
    text-align: center;
}

.next-events-section-header .entry-title,
.events-partners .entry-title {
    padding: 24px 0;
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    color: #232127;
    background: url("images/next-events-header-bg.png") no-repeat center;
    text-align: center;
}

.next-events-section-header p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.7;
    color: #777777;
}

@media screen and (min-width: 1200px){
    .next-events-section-header p {
        padding: 0 85px;
    }
}
.next-event-wrap{
    padding: 24px 0;
}
.homepage-next-events .next-event-wrap {
    margin-top: 96px;
    text-align: center;
}

.homepage-next-events .next-event-wrap figure {
    position: relative;
    margin: 0;
    margin-left: 0px;
}

.homepage-next-events .next-event-wrap figure img {
    width: 100%;
}

.homepage-next-events .next-event-wrap .event-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;

    top: -32px;
    left: 100px;
    width: 78px;
    height: 78px;
    border: 2px solid #fff;
    border-radius: 50%;

    font-size: 22px;
    font-weight: bold;
    color: #fff;

    background: #9a28d7;
}

.homepage-next-events .next-event-wrap .entry-title {
    margin-top: 32px;
    font-size: 28px;
    font-weight: bold;
      margin-left: 0px;
    color: #232127;
}

.homepage-next-events .next-event-wrap .posted-date {
    margin-top: 12px;
    font-size: 18px;
    font-weight: bold;
  margin-left: 0px;
    text-transform: uppercase;
    color: #777777;
}

.homepage-next-events .next-event-wrap .posted-date span {
    color: #9a28d7;
}

.homepage-next-events .next-event-wrap .entry-content p {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.7;
    color: #777777;
}

.homepage-next-events .next-event-wrap .entry-footer {
    margin-top: 40px;
}

.homepage-next-events .next-event-wrap .entry-footer a {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #bec0cc;
    text-decoration: none;
    color: #bec0cc;
      margin-left: 0px;
}

.homepage-next-events .next-event-wrap .entry-footer a:hover {
    border-color: #9a28d7;
    color: #9a28d7;
}

/*--------------------------------------------------------------
# Homepage - Regional Events
--------------------------------------------------------------*/
.homepage-regional-events {
    min-height: 1500px;
    padding-top: 280px;
    background: url("images/back-galary.jpg") no-repeat;
    background-size: cover;
}

.homepage-regional-events .regional-events-heading .entry-title {
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    margin : 0 auto ;
}

.homepage-regional-events .select-location select {
    padding: 14px 32px;
    margin: 20px 0;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    background: -moz-linear-gradient(180deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(88,20,121,1)), color-stop(100%, rgba(171,0,229,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* ie10+ */
    background: linear-gradient(270deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#581479', endColorstr='#ab00e5',GradientType=1 ); /* ie6-9 */
    color: #fff;
    outline: none;
}

.homepage-regional-events .select-location select option {
    background: #9a28d7;
    padding: 5px 0;
    outline: none;
}

.homepage-regional-events-slider {
    position: relative;
    margin-top: 100px;
    color: #fff;
    text-align: center;
}

.homepage-regional-events-slider figure {
    position: relative;
    margin: 0;
}

.homepage-regional-events-slider .thumbnail img{
    width : 70px;

}


.homepage-regional-events-slider .col {
    padding : 0;
}


.homepage-regional-events-slider figure img {
    display: block;
    width: 500px;
}

.homepage-regional-events-slider .entry-title {
    margin-top: 28px;
    font-size: 18px;
    font-weight: bold;
}

.homepage-regional-events-slider .entry-footer {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.homepage-regional-events-slider .entry-footer span {
    color: #9a28d7;
}

.homepage-regional-events-slider .swiper-button-next,
.homepage-regional-events-slider .swiper-button-prev {
    top: calc(50% - 40px);
}

.homepage-regional-events-slider .swiper-button-next {
    right: 20px;
}

.homepage-regional-events-slider .swiper-button-prev {
    left: 20px;
}

.event-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(154,40,215, .85);

    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;

    visibility: hidden;
    opacity: 0;
    transition: all .35s;
}

.event-overlay-link:hover {
    text-decoration: none;
    color: #fff;
}
/*
.homepage-regional-events .thumbnail:hover .event-overlay-link {
    visibility: visible;
    opacity: 1;
}*/

.events-partners {
    padding: 120px 0;
}

.events-partners .entry-title {
    color: #fff;
}

.events-partners-logos .event-partner-logo {
    width: 20%;
    min-width: 220px;
    margin-top: 80px;
    text-align: center;
}

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.newsletter-subscribe {
    padding: 150px 0;
    background: url("images/newsletter-bg.jpg") no-repeat;
    background-size: cover;
    text-align: center;
}

.newsletter-subscribe .entry-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

.newsletter-subscribe header p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}
.newsletter-subscribe form input[type="text"],
.newsletter-subscribe form input[type="email"] {
    width: 100%;
    color: #232127;
    padding: 15px 24px;
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.newsletter-subscribe form input[type="text"]::placeholder,
.newsletter-subscribe form input[type="email"]::placeholder {
    font-style: italic;
}


.newsletter-subscribe form input[type="text"],
.newsletter-subscribe form input[type="email"],
.newsletter-subscribe form input[type="submit"] {
    margin-top: 30px;
}

@media screen and (min-width: 992px) {
    .newsletter-subscribe form input[type="text"],
    .newsletter-subscribe form input[type="email"],
    .newsletter-subscribe form input[type="submit"] {
        margin: 80px 8px 0;
    }
}

.newsletter-subscribe form input[type="submit"] {
    border: 2px solid #fff;
    outline: none;
}

.newsletter-subscribe form input[type="submit"]:focus {
    background: #9a28d7;
}

/*--------------------------------------------------------------
# Single Page Header
--------------------------------------------------------------*/
.page-header {
    height: 250px;
    padding: 100px 0 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover !important;
}

.page-header .entry-title {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
}

@media screen and (min-width: 576px){
    .page-header {
        height: 300px;
    }

    .page-header .entry-title {
        font-size: 52px;
    }
}

@media screen and (min-width: 992px){
    .page-header {
        height: 400px;
        padding: 150px 0;
    }

    .page-header .entry-title {
        font-size: 72px;
    }

}

@media screen and (min-width: 1200px){
    .page-header {
        height: 525px;
        padding: 220px 0;
    }

}

.events-page-header {
    background-image: url("images/events-page-header-bg.jpg");
}

.single-event-page-header {
    background-image: url("images/single-event-bg.jpg");
}

.events-news-page-header {
    background-image: url("images/events-news-bg.jpg");
}

.contact-page-header {
    background-image: url("images/contact-bg.jpg");
}

.elements-page-header {
    background-image: url("images/elements-bg.jpg");
}

/*--------------------------------------------------------------
# Events List
--------------------------------------------------------------*/
.events-search {
    padding: 100px 0;
}

.events-search input[type="date"],
.events-search input[type="text"] {
    width: 100%;
    padding: 12px 24px;
    margin: 0 6px 30px;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    outline: none;
    background: #f3f8f9;
    color: #232127;
}

.events-search input[type="text"]::placeholder {
    font-style: italic;
}

.events-search .btn {
    border-color: transparent;
    outline: none;
}

.events-search .btn:focus {
    background: #9a28d7;
    outline: none;
}

.events-list-page .single-event {
    display: none;
    margin-bottom: 30px;
}

.events-list-page .single-event.visible {
    display: block;
}

.events-list-page .events-thumbnail {
    margin: 0;
}

.events-list-page .events-thumbnail img {
    display: block;
    width: 100%;
}

.events-list-page .event-content-wrap  {
    padding: 48px 36px 36px;
    border: 1px solid #e5e5e5;
    border-top: 0;
    background: #f3f8f9;
}

.events-list-page .event-content-wrap .entry-title {
    font-size: 28px;
    font-weight: bold;
    color: #232127;
    text-decoration: none;
}

.events-list-page .event-content-wrap .entry-title a {
    color: #232127;
}

.events-list-page .event-content-wrap .event-location {
    padding-left: 32px;
    margin-top: 12px;
    background: url("images/location-icon.png") no-repeat left top;
}

.events-list-page .event-content-wrap .event-location a {
    font-size: 14px;
    font-weight: bold;
    color: #232127;
    text-decoration: none;
}

.events-list-page .event-content-wrap .event-date {
    margin-top: 6px;
    font-size: 16px;
    color: #9a28d7;
}

.events-list-page .event-content-wrap .event-cost {
    width: 124px;
    height: 52px;
    margin-right: -37px;
    font-size: 14px;
    color: #777777;
    background: #fff;
}

.events-list-page .event-content-wrap .event-cost span {
    margin-left: 4px;
    font-size: 24px;
    font-weight: bold;
    color: #9a28d7;
}

.events-list-page .event-content-wrap .entry-content p {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.7;
    color: #777777;
}

.events-list-page .event-content-wrap .entry-footer {
    margin-top: 36px;
}

.events-list-page .event-content-wrap .entry-footer a {
    padding-bottom: 2px;
    font-size: 18px;
    font-weight: bold;
    color: #9a28d7;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 2px solid #9a28d7;
}

.events-list-page .load-more-btn {
    text-align: center;
    margin: 84px 0;
}

.events-list-page .load-more-btn .btn:focus {
    background: #9a28d7;
}

/*--------------------------------------------------------------
# Upcoming Events
--------------------------------------------------------------*/
.upcoming-events-outer {
    padding: 400px 0 120px;
    margin-top: -200px;
    background: url("images/upcoming-events-bg.jpg") no-repeat;
    background-size: cover;
}

.upcoming-events {
    background: #fff;
}

.upcoming-events-header {
    padding: 20px 42px;
    background: #9a28d7;
}

.upcoming-events-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.upcoming-events-list .upcoming-event-wrap {
    padding: 30px 20px;
    border-bottom: 2px solid #e0e3e4;
}

.upcoming-events-list .upcoming-event-wrap:nth-last-of-type(1) {
    border-bottom: 0;
}

.upcoming-events-list .events-thumbnail {
    width: 104px;
    height: 104px;
    margin: 0;
}

.upcoming-events-list .events-thumbnail img {
    display: block;
    width: 100%;
}

.upcoming-events-list .entry-header {
    margin-top: 30px;
    width: 100%;
}

.upcoming-events-list .entry-meta .event-date {
    font-size: 48px;
    line-height: 1.2;
    color: #232127;
    text-align: center;
}

.upcoming-events-list .entry-meta .event-date span {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.upcoming-events-list .entry-title {
    margin: 0;
}

.upcoming-events-list .entry-title a {
    font-size: 24px;
    font-weight: bold;
    color: #232127;
    text-decoration: none;
}

.upcoming-events-list .entry-header .event-date-time {
    font-size: 16px;
    color: #9a28d7;
}

.upcoming-events-list .entry-header .event-speaker {
    margin-top: 12px;
    font-size: 16px;
    color: #777777;
}

.upcoming-events-list .entry-header .event-speaker {
    margin-top: 12px;
    font-size: 16px;
    color: #777777;
}

.upcoming-events-list .entry-footer {
    width: 100%;
    margin-top: 30px;
}

.upcoming-events-list .entry-footer a {
    padding-bottom: 2px;
    font-size: 18px;
    font-weight: bold;
    color: #9a28d7;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 2px solid #9a28d7;
}

@media screen and (min-width: 992px) {
    .upcoming-events-list .upcoming-event-wrap {
        padding: 30px 42px;
    }

    .upcoming-events-list .entry-header,
    .upcoming-events-list .entry-footer {
        width: 45%;
        margin-top: 0;
    }

    .upcoming-events-list .entry-footer {
        width: auto;
    }
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
ul.tabs-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.tabs-nav .tab-nav {
    padding: 6px 10px;
    border: 1px solid #e5e5e5;
    margin-right: 5px;
    background: #f3f8f9;
    font-size: 18px;
    font-weight: bold;
    color: #232127;
    cursor: pointer;
    transition: all .35s;
}

ul.tabs-nav .tab-nav.active {
    border-color: transparent;
    background: #9a28d7;
    color: #fff;
}

.tabs .tab-nav {
    margin-bottom: -1px;
    z-index: 99;
}

.tabs-container {
    border: 1px solid #e5e5e5;
    background: #f3f8f9;
    padding: 15px;
}

.tab-content {
    display: none;
}

.tab-content p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #777777;
}

@media screen and (min-width: 992px){
    ul.tabs-nav .tab-nav {
        width: 180px;
        padding: 14px 24px;
        margin-right: 12px;
    }

    .tabs-container {
        padding: 48px;
    }
}

/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
.accordion-wrap {
    position: relative;
}

.accordion-wrap .entry-content {
    margin: 0;
}

.accordion-wrap .entry-title {
    padding: 18px 28px;
    margin-bottom: 15px;
    border: 1px solid #e5e5e5;
    background: #f3f8f9;
    font-size: 18px;
    font-weight: bold;
    color: #232127;
    cursor: pointer;
}

.accordion-wrap .entry-title.active {
    background: #9a28d7;
    color: #fff;
}

.accordion-wrap .entry-title .arrow-r::before {
    content: "+";
}

.accordion-wrap .entry-title .arrow-d::before {
    content: "-";
}

/*
# Content
----------------------------------*/
.accordion-wrap .entry-content {
    display: none;
}

.accordion-wrap .entry-content p {
    padding: 24px 0;
    font-size: 18px;
    line-height: 1.7;
    color: #777777;
}

/*--------------------------------------------------------------
# Single Events Page
--------------------------------------------------------------*/
.single-event-page .event-content-wrap {
    margin-top: 80px;
}

.single-event-page .single-event-heading {
   width: 100%;
}

.single-event-page .event-content-wrap .entry-title {
    font-size: 36px;
    font-weight: bold;
    color: #232127;
    text-decoration: none;
}

.single-event-page .event-content-wrap .event-location {
    padding-left: 32px;
    margin-top: 12px;
    background: url("images/location-icon.png") no-repeat left top;
}

.single-event-page .event-content-wrap .event-location a {
    font-size: 14px;
    font-weight: bold;
    color: #232127;
    text-decoration: none;
}

.single-event-page .event-content-wrap .event-date {
    margin-top: 6px;
    font-size: 16px;
    color: #9a28d7;
}

.single-event-page .buy-tickets {
    margin-top: 30px;
}

.single-event-page .buy-tickets .btn:focus {
    background: #9a28d7;
}

.single-event-page .event-content-wrap .events-thumbnail {
    margin-top: 36px;
    margin-bottom: 0;
}

.single-event-page .event-content-wrap .events-thumbnail img {
    display: block;
    width: 100%;
}

.single-event-page .tabs {
    margin-top: 64px;
}

.single-event-page .tabs-container {
    padding:15px;
}

@media screen and (min-width: 992px){
    .single-event-page .tabs-container {
        padding: 60px;
    }
}

.single-event-details {
    width: 100%;
}

.single-event-page .single-event-details-row {
    margin-bottom: 40px;
}

.single-event-page .single-event-details-row:nth-last-of-type(1) {
    margin-bottom: 0;
}

.single-event-details,
.single-event-details a,
.single-event-details label {
    font-size: 18px;
    font-weight: bold;
    color: #777777;
}

.single-event-details label {
    display: block;
    color: #232127;
}

.single-event-details-row span {
    color: #ff005a;
}

.single-event-map {
    width: 100%;
    margin-top: 30px;
}

.single-event-map iframe {
    width: 100%;
    height: 460px;
}

.event-tickets {
    padding: 15px;
    margin-top: 36px;
    border: 1px solid #e5e5e5;
    background: #f3f8f9;
}

.event-tickets .ticket-row {
    margin-bottom: 60px;
}

.event-tickets .ticket-row:nth-last-of-type(1) {
    margin-bottom: 0;
}

.ticket-type,
.event-tickets .number-of-ticket {
    padding: 15px 24px;
    margin-right: 15px;
    margin-bottom: 20px;
    background: #fff;
}

.ticket-type {
    width: 100%;
}

.event-tickets .ticket-type .entry-title,
.event-tickets .ticket-type .ticket-price,
.event-tickets .number-of-ticket {
    font-size: 18px;
    font-weight: bold;
    color: #232127;
}

.event-tickets .ticket-type .entry-title span {
    margin-right: 18px;
    font-size: 18px;
    font-weight: bold;
    color: #232127;
}

.event-tickets .ticket-type .entry-title,
.event-tickets .clear-ticket-count {
    font-size: 16px;
    font-weight: normal;
    color: #777777;
}

.event-tickets .ticket-type .entry-title {
    display: inline-block;
}

.event-tickets .ticket-type .ticket-price {
    color: #9a28d7;
}

.event-tickets .number-of-ticket {
    width: 120px;
}

.event-tickets .number-of-ticket .ticket-count {
    width: 32px;
    border: 0;
    text-align: center;
}

.event-tickets .number-of-ticket .decrease-ticket,
.event-tickets .number-of-ticket .increase-ticket {
    width: 18px;
    height: 28px;
    cursor: pointer;
    text-align: center;
}

.event-tickets .number-of-ticket .ticket-count::-webkit-outer-spin-button,
.event-tickets .number-of-ticket .ticket-count::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.event-tickets .clear-ticket-count {
    width: 80px;
    text-align: center;
    cursor: pointer;
}

.event-tickets .btn {
    cursor: pointer;
}

.event-tickets .btn:focus {
    background: #9a28d7;
}

.single-event-page .upcoming-events {
    margin-top: 36px;
    margin-bottom: 120px;
    border: 2px solid #e0e3e4;
    border-top: 0;
}

.single-event-page .upcoming-events-header {
    margin: 0 -2px;
}

@media screen and (min-width: 768px) {
    .single-event-page .single-event-heading {
        width: auto;
    }

    .single-event-details {
        width: 220px;
    }

    .single-event-map {
        width: calc(100% - 220px);
        margin: 0;
    }

    .event-tickets {
        padding: 40px;
    }
}

@media screen and (min-width: 992px) {
    .single-event-details {
        width: 320px;
    }

    .single-event-map {
        width: calc(100% - 320px);
        margin: 0;
    }

    .event-tickets .ticket-row {
        margin-bottom: 15px;
    }

    .ticket-type {
        width: calc(100% - 400px);
        margin-bottom: 0;
    }

    .event-tickets .number-of-ticket {
        margin-bottom: 0;
    }
}

/*--------------------------------------------------------------
# Events News
--------------------------------------------------------------*/
.events-news-page .events-news-post {
    margin-top: 80px;
    margin-bottom: 40px;
}

.events-news-page .events-news-post .entry-title,
.events-news-page .events-news-post .entry-title a {
    font-size: 36px;
    font-weight: bold;
    color: #232127;
}

.events-news-page .events-news-post .entry-meta {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
    color: #777;
}

.events-news-page .events-news-post .entry-meta > div {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 2px solid #777;
}

.events-news-page .events-news-post .entry-meta > div:nth-last-of-type(1) {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
}

.events-news-page .events-news-post .entry-meta a {
    color: #777;
    text-decoration: none;
}

.events-news-page .events-news-post figure {
    position: relative;
    margin: 25px 0 0;
}

.events-news-page .events-news-post figure img {
    display: block;
    width: 100%;
}

.events-news-page .events-news-post .posted-date {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 52px;
    padding: 12px 10px;
    border: 2px solid #fff;
    border-radius: 50px;
    background: -moz-linear-gradient(180deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(88,20,121,1)), color-stop(100%, rgba(171,0,229,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* ie10+ */
    background: linear-gradient(270deg, rgba(171,0,229,1) 0%, rgba(88,20,121,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#581479', endColorstr='#ab00e5',GradientType=1 ); /* ie6-9 */

    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

@media screen and (min-width: 576px){
    .events-news-page .events-news-post .posted-date {
        top: 25px;
        left: -27px;
        padding: 24px 10px;
    }
}

.events-news-page .events-news-post .posted-date span {
    display: block;
}

.events-news-page .events-news-post .entry-content {
    margin-top: 40px;
}

.events-news-page .events-news-post .entry-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #777777;
}

.blog-pagination ul {
    padding: 0;
    margin: 65px 0 120px;
    list-style: none;
}

.blog-pagination li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;

    font-size: 18px;
    font-weight: bold;
    color: #232127;
}

.blog-pagination li a {
    display: block;
    color: #232127;
    text-decoration: none;
}

.blog-pagination li.active {
    width: 60px;
    padding-left: 30px;
}

.blog-pagination li.active::before {
    content: '';
    position: absolute;
    bottom: 9px;
    left: 0;
    z-index: 99;
    width: 32px;
    height: 2px;
    background: #232127;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-location-details {
    margin-top: 80px;
}

.contact-location-details .entry-title {
    font-size: 60px;
    font-weight: bold;
    color: #232127;
}

.contact-location-details .entry-content {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.7;
    color: #777777;
}

.contact-location-details .entry-footer ul {
    padding: 0;
    margin: 42px 0 0;
    list-style: none;
}

.contact-location-details .entry-footer li {
    padding-left: 48px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #232127;
}
.contact-location-details .entry-footer li a {
    color: #232127;
    text-decoration: none;
}


.contact-location-details .entry-footer li.contact-address {
    background: url("images/location-icon.png") no-repeat left center;
}

.contact-location-details .entry-footer li.contact-number {
    background: url("images/phone-icon.png") no-repeat left center;
}

.contact-location-details .entry-footer li.contact-email {
    background: url("images/folder-icon.png") no-repeat left center;
}

.contact-page-map {
    margin-top: 80px;
}

.contact-page-map iframe {
    width: 100%;
    height: 540px;
}

.contact-form {
    margin: 120px 0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 22px;
    margin-bottom: 30px;
    border: 1px solid #e5e5e5;
    background: #f3f8f9;
    color: #232127;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
    font-style: italic;
}

.contact-form input[type="submit"] {
    margin-top: 36px;
    border: 0;
}

.contact-form input[type="submit"]:focus {
    outline: none;
    background: #9a28d7;
}

/*--------------------------------------------------------------
# Elements Page
--------------------------------------------------------------*/
.elements-wrap {
    margin-top: 80px;
}

.elements-page .elements-heading .entry-title {
    font-size: 60px;
    font-weight: bold;
    color: #232127;
}

.elements-page .elements-container {
    margin-top: 54px;
}

/*
# Circular Progress Bar
----------------------------------*/
.circular-progress-bar {
    margin: 20px 0;
    text-align: center;
}

.circular-progress-bar .circle {
    position: relative;
    width: 124px;
    height: 124px;
    margin: 0 auto;
}

.circular-progress-bar .circle strong {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -18px;
    width: 100%;
    font-size: 24px;
    color: #232127;
}

.circular-progress-bar .entry-title {
    margin-top: 24px;
    font-size: 22px;
    font-weight: bold;
    color: #232127;
}

.circular-progress-bar p {
    font-size: 18px;
    color: #777;
}

/*
# Counter Box
----------------------------------*/
.counter-box {
    margin: 20px 0;
    text-align: center;
}

.counter-box .start-counter {
    margin-top: 24px;
    font-size: 60px;
    color: #232127;
}

.counter-box .entry-title {
    font-size: 18px;
    color: #777777;
}

/*
# Icon Box
----------------------------------*/
.icon-box {
    margin: 20px 0;
}

.icon-box figure {
    width: 84px;
    margin: 0;
    text-align: center;
}

.icon-box figure img {
    max-width: 100%;
}

.icon-box .entry-header {
    width: calc(100% - 94px);
}

.icon-box .entry-title {
    font-size: 28px;
    font-weight: bold;
    color: #232127;
}

.icon-box .date {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #777;
}

.icon-box .date span {
    color: #9a28d7;
}

.icon-box .entry-content {
    margin-top: 24px;
}

.icon-box .entry-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #777;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    padding: 20px 0;
    background: #08011e;
    text-align: center;
}

.footer-logo img {
    width: 30%;
    height: 30% !important;
}

.footer-navigation ul,
.footer-social ul {
    padding: 0;
    margin: 20px 0 0;
    list-style-type:none;
}

.footer-navigation li {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    list-style-type:none;
    list-style: none;
}

.footer-navigation li a {
    display: block;
    padding: 8px 12px;
    color: #fff;
    list-style-type:none;
}

.footer-social li a {
    display: block;
    width: 16px;
    height: 22px;
    margin: 12px;
    color: #8f8f8f;
    transition: all .35s;
    list-style-type:none;
    list-style: none;
}

.footer-social li a:hover {
    color: #fff;
}

.back-to-top {
    position: fixed;
    z-index: 9999;
    right: 64px;
    bottom: 84px;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #9a28d7;
    transition: all .35s;
    cursor: pointer;

    visibility: hidden;
    opacity: 0;
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
}

.back-to-top span {
    display: block;
    width: 20px;
    padding-top: 4px;
}

.back-to-top path {
    fill: #fff;
}



@media (min-width: 300px) and (max-width: 500px) { 
    #mainlogo{
    width: 45%;
    height: 30%;
  }
 }

@media (min-width: 500px){
    #mainlogo{
        width: 160px;
        height: 150px;
    }
}

.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../img/Preloader_3.gif) center no-repeat #fff;
}

.navbar-brand img {
    max-height: 200%;
    height: 100%;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

.navbar-default {
    border-color: rgb(2, 24, 23);
    background-color: rgb(0, 12, 11);
}

.navbar-default .navbar-brand {
    font-family: "Kaushan Script","Helvetica Neue",Helvetica,Arial,cursive;
    color: #ffccff;
}

.navbar-default .navbar-collapse {
    border-color: #ffccff;
}

.navbar-default .navbar-toggle {
    border-color:#ffccff;
    background-color: #ffccff;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #ffccff;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #ffccff;
}

.navbar-default .nav li a {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
}

.navbar-default .nav li a:hover,
.navbar-default .nav li a:focus {
    outline: 0;
    color: #ffccff;
}

.navbar-default .navbar-nav>.active>a {
    border-radius: 0;
    color:#ffccff;
    background-color: #ffccff;
}

.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: black;
    background-color: #ffccff;
}
.card{
    width:90%;
}
@media only screen and (max-width: 768px) {

    .navbar-default {
        /*padding: 12px 0;*/
        border: 0;
        background-color: rgba(102, 252, 241, 0.9);
        -webkit-transition: padding .3s;
        -moz-transition: padding .3s;
        transition: padding .3s;
    }

    .navbar-default .navbar-brand {
        font-size: 2em;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        transition: all .3s;
    }

    .navbar-default .navbar-nav>.active>a {
        border-radius: 3px;
    }

    .navbar-default .navbar-shrink {
        padding: 5px 0;
        background-color: rgba(102, 252, 241, 0.9);
    }

    .navbar-default .navbar-shrink .navbar-brand {
        font-size: 1.5em;
    }
}


.navbar {
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

.navbar.scrolled {
    background: rgb(102, 252, 241); /* IE */
    background: rgba(102, 252, 241, 1); /* NON-IE */
}

.first {
    position: relative;
}

.background-image-main {
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background:url(../img/BG5.jpg);
    background-repeat: no-repeat;
    background-size:contain;
    z-index:1;
    background-position: center;
}

.main{
    padding-top: 300px;
    padding-left:  100px;
    color : #66fcf1 ;
    margin-left: 9%;
}

.main-heading{
    height : 40vh; width: 100%;
}

.sub-main{
    width:100%;
    height:58vh;
}

.header-divs {
    padding: 0 20px;
    text-decoration: none;
    color: black;
    font-size: 15px;
}

.beta-home-button {
    border-radius: 15px;
    border: 1px solid #66fcf1;
    padding: 10px 64px;
    color: black;
    font-size: 25px;
    box-shadow: 3px 3px 16px 2px transparent;
    background-color: #66fcf1;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .4s;
}

.buttons {
    display: inline-flex;
    align-items: center;
    padding: 1% 0% 0% 15%;
    justify-content: space-between;
    width : auto;
    margin-top: 14vh;
}

@media only screen and (max-width: 550px){
    .beta-home-button {
        font-size: 17px;
        padding: 3px 21px;
    }
    /*.buttons {
        margin-left: 10px;
        margin-top : 2px;
    }*/
    .first-line {

        font-size: 6vw;
    }
    .second-line {

        font-size: 6vw;
        color: #800000;
    }
    .main {
        padding-left: 30px;
    }
    /*.buttons {
        padding-left: 10px;
    }*/
}


div {
    display: block;
}

.first-line {
    font-size: 50px;
    font-weight: 600;

}

.second-line {

    font-size: 40px;
    font-weight: 450;
    color: #45a29e;
}

.about-troika {
    font-size: 6.4vw;
    text-align: center;
    font-weight: 300;
    font-family: Shadows Into Light ;
    margin-top: -10px;
    color: #45a29e;
}

.about {
    position: relative;
    width:100%;
    padding: 75px 100px;
    border-top: 6px solid #45A29E;
    border-bottom: 6px solid #45A29E;
    border-radius: 20px;
    min-block-size: 25vw;
}

.background-image-about {
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
}

.about-us{
    font-size: 2.5vw;
    font-weight: 600;
    text-align: center;
    color:#66FCF1 ;
}

.about-us-text{
    text-align: justify;
    font-size: 1.5vw;
    color: skyblue;
}

@media only screen and (max-width: 650px){
    .about-us-text{
        font-size : 15px;
    }
    .about-us{
        font-size:24px ;
        font-weight: 1000;
    }
    .about-troika{
        font-size: 34px;
    }

}

/* Three columns side by side */
.column {
    float: left;
    width: 33.3%;
    margin-bottom: 16px;
    padding: 0 8px;
}

/* Display the columns below each other instead of side by side on small screens */
@media (max-width: 650px) {
    .column {
        width: 100%;
        display: block;
    }
    .about {
        padding: 90px 50px;
    }
}

@media (max-width: 850px) {
    .container1 h2 {
        font-size: 20px;
    }

    .container1 p {
        font-size: 10px;
    }
}

/* Add some shadows to create a card effect */
.card {
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2);
}

/* Some left and right padding inside the container */
.container1 {
    padding: 0 16px;
    text-align: center;
    color: #66FCF1;
    background-color: rgba(14, 13, 13, 0.5);
}

/* Clear floats */
.container1::after, .row::after {
    content: "";
    clear: both;
    display: table;
    text-align: center;
}

.title {
    color: #66FCF1;
}

.contact {
    position: relative;
    text-align: center;
    margin-top: 18px;
    border-top: 6px solid #45A29E;
   /* border-bottom: 6px solid #45A29E;*/
    border-radius: 20px;
}
.content {
    position: relative;
    z-index: 2;
}

.contact-head {
    font-size: 6.4vw;
    text-align: left;
    font-weight: 600;
    font-family: "Lato",sans-serif ;
}

.foot {
    background-color: #C5C6C7;
    color: #ffffff;
    padding: 41px 80px;
}

@media (max-width: 650px) {
    .foot {
        padding: 29px 80px;
    }
}
ul {
    padding: 0;
    margin: 0;
}

@-webkit-keyframes typing { from { width: 0; } }
@-webkit-keyframes blink-caret { 50% { border-color: transparent; } }

#Arrivin {
    display: inline-block;
    border-right: .1em solid white;
    width: 205px;
    white-space: nowrap;
    overflow: hidden;
    -webkit-animation: typing 2s steps(11, end),
    blink-caret .5s step-end infinite alternate;
}

ul li {
    list-style: disc;
    font-size: 17px;
    line-height: 1.59;
}

img {
    border: none;
    border-radius: 25px;
    max-width: 100%;
}

code {
    background-color: #ee6e73;
    border-radius: 2px;
    color: #fff;
    padding: 2px 4px;
}

pre {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 10px;
}

pre code {
    background-color: transparent;
    color: #333;
}

del{
    text-decoration-color: #ee6e73;
}

kbd {
    background-color: #ddd;
    padding: 4px 6px;
    border-radius: 2px;
    color: ;
}

address {
    line-height: 1.5;
    padding-left: 10px;
}

dl dt {
    font-weight: 700;
}

dl dd {
    margin-left: 0;
}

blockquote {
    background-color: #f8f8f8;
    border-radius: 0 4px 4px 0;
    padding: 5px 15px;
    
}

blockquote p {
    margin-top: 10px;
}

button {
    padding: 5px 15px;
    border: none;
}

button:focus {
    outline: none;
    border: none;
}
.quote{
    font-size: 25px;
}
.anon{
    font-family: cursive;
    margin-left: 8cm;
    font-size: 20px;
}

.sponsor{
    height: 16vh;
    width: 20vh;
    display: block;
    padding: 4px;
    margin-bottom: 16px;
    line-height: 1.42857143;
    background-color: #fff;
    border-radius: 4px;
}
   


/* ========= BUTTON =========*/

.mu-primary-btn {
    background-color: transparent;
    border-radius: 4px;
    border: 2px solid #ffffff;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 12px 35px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.mu-primary-btn:hover,
.mu-primary-btn:focus {
    background-color: #fff;
}

.mu-send-msg-btn {
    color: #555;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    padding: 14px 24px;
    margin-top: 10px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 250px;
    color: #fff;
    border-radius: 5px;
}

.mu-send-msg-btn:hover,
.mu-send-msg-btn:focus {
    background-color: #fff;
}



/*--------------------*/
/* HEADER */
/*--------------------*/

#mu-hero {
    display: inline;
    float: left;
    width: 100%;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    background-size: cover;
}

.mu-hero-overlay {
    display: inline;
    float: left;
    opacity: 0.94;
    width: 100%;
}

.mu-logo-area {
    display: inline;
    float: left;
    text-align: center;
    width: 100%;
}

.mu-logo {
    font-size: 35px;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    font-weight: 600;
    background: #fff;
    padding: 5px 20px;
    margin-bottom: 30px;
}


.mu-menu-btn {
    position: fixed;
    right: 15%;
    top: 50px;
    color: #fff;
    font-size: 25px;
    border: 2px solid #fff;
    padding: 5px 14px;
    z-index: 999;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mu-menu-btn:hover,
.mu-menu-btn:focus {
    border: 2px solid #fff;
}



/*=== Featured section ===*/

.mu-hero-featured-area {
    display: inline;
    float: left;
    padding: 60px 0 150px;
    width: 100%;
}

.mu-hero-featured-content {
    display: inline;
    float: right;
    margin-top: 50px;
    text-align: center;
    width: 100%;
}

.mu-hero-featured-content h1 {
    font-size: 85px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 15px;
}


.mu-hero-featured-content h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 300;
    margin-top: 20px ;

}

.mu-hero-featured-content h3 {
    color: #fff;
    font-size: 38px;
    font-weight: 300;
    margin-top: 35px ;

}

.mu-event-date-line {
    background-color: #fff;
    color: #333;
    padding: 5px 10px;
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
}

.mu-event-counter-area {
    display: inline;
    float: left;
    margin-top: 45px;
    width: 100%;
}

#mu-event-counter{
    display: inline;
    float: left;
    width: 100%;
    text-align: center;
}

.mu-event-counter-block {
    border: 2px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: 180px;
    width: 180px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    margin: 0 20px;
    font-weight: 300;
}

.mu-event-counter-block span {
    display: block;
    font-size: 40px;
    font-weight: 700;
    padding-top: 56px;
    line-height: 40px;
}

/*--------------------*/
/* MENU */
/*--------------------*/

#mu-hero .navbar-default {
    background-color: #fff;
    border-color: #e7e7e7;
    padding: 5px 0;
}

.mu-navbar {
    top: -150px;
    transition: all 0.5s;
    border-bottom: 1px solid rgb(0,0,0);
}

.mu-nav-show {
    top: 0px;
}

#mu-hero .navbar-default .navbar-brand {
    font-size: 28px;
    line-height: 20px;
}

.mu-navbar .mu-menu li a{
    color: #CC33FF;
    padding: 20px 15px;
}


.mu-navbar .mu-menu li a, .mu-navbar .mu-menu li a:before, .mu-navbar .mu-menu li a:after{
    webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


.navbar-default .navbar-nav > .active > a, 
.navbar-default .navbar-nav > .active > a:focus, 
.navbar-default .navbar-nav > .active > a:hover {
    color: #000000;
}

.mu-navbar .mu-menu li a:hover {
    color: #CC33FF !important;
}

.mu-navbar .mu-menu li a:before{
  position: absolute; 
  left: 0;
  right: 0;
  top:10px;
  margin: auto;
  width: 0%;
  content: '';
  background: #CC33FF;
  height: 2px;
  color:transparent;
}

.mu-navbar .mu-menu li a:after{
  position: absolute; 
  bottom:8px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '';
  background: #CC33FF;
  height: 2px;
  color:transparent;
}
.mu-navbar .mu-menu li a:hover:after,.mu-navbar .mu-menu li a:hover:before {
  width: 70%;
}

.navbar-nav > .active >a{
    background: #CC33FF !important;
    color: #CC33FF !important;
    webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.navbar-nav > .active >a:hover{
    color: #CC33FF !important;
    background : #CC33FF !important;
    webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


#mu-schedule {
    background-color: #c5c6c7;

    display: inline;
    float: left;
    width: 100%;
}

.mu-schedule-area {
    display: inline;
    float: left;
    padding: 100px 0;
    width: 100%;
}

.mu-schedule-content-area  {
    display: inline;
    float: left;
    margin-top: 50px;
    width: 100%;
}

.mu-schedule-menu {
    text-align: center;
    border: none;
}


.mu-schedule-menu li {
    float: none;
    display: inline-block;
}

.mu-schedule-menu li a {
    color: #fff;
    border-radius: 0;
    margin: 0 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mu-schedule-menu li a:hover,
.mu-schedule-menu li a:focus,
.mu-schedule-menu li.active a,
.mu-schedule-menu li.active a:hover,
.mu-schedule-menu li.active a:focus {
    color: white;
}

.mu-schedule-content{
    margin-top: 50px;
}

.mu-event-timeline ul li {
    list-style-type: none;
    position: relative;
    width: 2px;
    margin: 0 auto;
    padding-top: 50px;
    background-color: #9400D3;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mu-event-timeline ul li::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: inherit;
}


.mu-event-timeline ul li .mu-single-event {
    background-color: #fff;
    -webkit-box-shadow: 0 0 16px 0 rgba(32,32,47,0.16);
    -moz-box-shadow: 0 0 16px 0 rgba(32,32,47,0.16);
    box-shadow: 0 0 16px 0 #9400D3;
    position: relative;
    top: 0;
    width: 400px;
    padding: 15px;
    text-align: left;
}

.mu-event-timeline ul li:nth-child(2n) .mu-single-event {
    left: 50px;
}

.mu-event-timeline ul li:nth-child(2n+1) .mu-single-event {
    left: -450px;
    text-align: right;
}

.mu-event-timeline ul li .mu-single-event img {
    height: 80px;
    width: 80px;
    float: left;
    border-radius: 50%;
    margin-right: 15px;
}

.mu-event-timeline ul li:nth-child(2n+1) .mu-single-event img {
    float: right;
    margin-right: 0;
    margin-left: 15px;
}

.mu-event-timeline ul li .mu-single-event::before {
    content: '';
    position: absolute;
    top: 23px;
    width: 0;
    height: 0;
    border-style: solid;
}

.mu-event-timeline ul li:nth-child(2n+1) .mu-single-event::before {
    right: -15px;
    border-width: 8px 0 8px 16px;
    border-color: transparent transparent transparent #fff;
}

.mu-event-timeline ul li:nth-child(2n) .mu-single-event::before {
    left: -16px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #fff transparent transparent;
}

.mu-event-timeline ul li .mu-single-event h3 {
    margin-bottom: 5px;
    font-size: 16px;
}

.mu-event-timeline ul li .mu-single-event p {
    margin-bottom: 5px;
}

.mu-event-timeline ul li .mu-single-event span {
    font-size: 12px;
}
@media (max-width: 1199px) {

    .mu-details-content {
        padding: 0 150px;
    }

    .mu-video-iframe-area {
        padding: 16% 0;
    }

    .mu-video-close-btn {
        top: 5%;
        right: 5%;
        margin-top: 0;
    }

    .mu-apps-screenshot-slider .slick-prev {
        left: -25px;
    }

    .mu-apps-screenshot-slider .slick-next {
        right: -25px;
    }

        
}

@media (max-width: 991px) { 

    .mu-primary-btn {
        font-size: 14px;
        padding: 12px 22px;
    }

    .mu-navbar .mu-menu {
        margin-top: 5px;
    }

    .mu-navbar .mu-menu li a {
        font-size: 15px;
        padding: 10px 6px;
    }

    .mu-hero-featured-content h1 {
        font-size: 85px;
    }

    .mu-hero-featured-content h2 {
        font-size: 45px;
    }

    .mu-event-date-line {
        font-size: 14px;
    }

    .mu-event-counter-block {
        height: 130px;
        width: 130px;
        font-size: 16px;
        margin: 0 10px;
    }

    .mu-event-counter-block span {
        font-size: 30px;
        padding-top: 32px;
        line-height: 32px;
    }

    .mu-event-timeline ul li {
        margin-left: 15%;
    }

    .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event {
        left: 50px;
        text-align: left;
    }

    .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event::before {
        right: auto;
        left: -16px;
        border-width: 8px 16px 8px 0;
        border-color: transparent #fff transparent transparent;
    }

    .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event img {
        float: left;
        margin-right: 15px;
        margin-left: 0;
    }

    .mu-video-iframe-area {
        padding: 16% 5%;
    }

    .mu-video-iframe-area iframe {
        width: 100%;
    }

    .mu-title-area {
        padding: 0 50px;
    }

    .mu-faq-content {
        padding: 0;
    }

    .mu-contact-right {
        margin-top: 50px;
    }

    .mu-menu-btn {
        right: 5%;
    }

    .mu-speakers-slider .slick-next {
        right: 0;
    }

    .mu-speakers-slider .slick-prev {
        left: 0;
    }

    .mu-speakers-slider .slick-next,
    .mu-speakers-slider .slick-prev {
        width: 40px;
        height: 40px;
    }

    .mu-speakers-slider .slick-prev::before, 
    .mu-speakers-slider .slick-next::before {
        font-size: 18px;
    }

    .mu-single-speakers-info h3 {
        font-size: 18px;
    }

    .mu-pricing-conten {
        padding: 0 5%;
    }

    .mu-single-price {
        margin-bottom: 30px;
    }


        
}

@media (max-width: 767px) {

    .mu-logo img {
        width: 150px;
    }

    
    .mu-navbar .navbar-toggle .icon-bar {
        background-color: #c5c6c7;
    }

    .mu-navbar .mu-menu {
        padding: 0 15px;
    }

    .mu-video-close-btn {
        font-size: 16px;
        height: 40px;
        line-height: 35px;
        width: 40px;
    }

        
        
}


@media (max-width: 640px){
    
    .mu-event-counter-block {
        height: 100px;
        width: 100px;
        font-size: 15px;
    }

    .mu-event-counter-block span {
        font-size: 22px;
        padding-top: 22px;
        line-height: 25px;
    }

    .mu-title-area {
        padding: 0;
    }

    .mu-video-iframe-area {
        padding: 5% 5%;
    }

    .mu-video-iframe-area iframe {
        width: 100%;
        height: 100%;
    }

    .mu-details-content {
        padding: 0 100px;
    }

    .mu-contact-content {
        padding: 0 10%;
    }
                

}


@media (max-width: 480px) {

    body {
        font-size: 14px;
    }

    .mu-logo {
        margin-bottom: 10px;
        font-size: 30px;
    }

    .mu-hero-featured-area {
        padding: 60px 0 60px;
    }

    .mu-hero-featured-content {
        margin-top: 20px;
    }

    .mu-hero-featured-content h1 {
        font-size: 40px;
    }

    .mu-hero-featured-content h2 {
        font-size: 20px;
    }

    .mu-event-date-line {
        font-size: 12px;
    }

    .mu-event-counter-area {
        margin-top: 20px;
    }
    
    .mu-event-counter-block span {
        font-size: 18px;
        padding-top: 16px;
        line-height: 20px;
    }

    .mu-event-counter-block {
        height: 75px;
        width: 75px;
        font-size: 12px;
        margin: 0 5px;
    }
    
    .mu-video-close-btn {
        top: 2%;
        right: 5%;
        height: 40px;
        line-height: 35px;
        width: 40px;
    }

    .mu-menu-close-btn {
        right: 5%;
        top: 30px;
    }

    .mu-video-area {
        padding: 100px 0;
    }

    .mu-video-iframe-area {
        padding: 10% 5%;
    }

    .mu-video-iframe-area iframe {
        height: 250px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }

    .mu-schedule-content {
        margin-top: 30px;
    }
    
    .mu-schedule-menu li {
        margin-bottom: 15px;
    }

    .mu-schedule-menu li a {
        font-size: 15px;
    }

    .mu-event-timeline ul li {
        margin-left: 5%;
    }

    .mu-event-timeline ul li .mu-single-event,
    .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event,
    .mu-event-timeline ul li:nth-child(2n) .mu-single-event {
        left: 30px;
        width: 350px;
    }

    .mu-event-timeline ul li .mu-single-event h3 {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .mu-venue-address h4 {
        font-size: 16px;
    }

    .mu-details-content,
    .mu-contact-content {
        padding: 0 5%;
    }

    .mu-faq-content .panel-title {
        font-size: 14px;
    }
                    
    
}


@media (max-width: 360px) {

    .mu-logo img {
        width: 120px;
    }

    .mu-hero-featured-area {
        padding: 50px 0 30px;
    }

    .mu-event-counter-block {
        height: 56px;
        width: 56px;
        font-size: 10px;
    }

    .mu-event-counter-block span {
        font-size: 16px;
        padding-top: 10px;
        line-height: 16px;
    }

    .mu-video-area {
        padding: 50px 0;
    }

    .mu-video-iframe-area {
        padding: 15% 5%;
    }

    .mu-video-play-btn, .mu-video-close-btn {
        font-size: 18px;
        width: 50px;
        height: 50px;
        line-height: 46px;
        margin-top: 50px;
    }

    h2 {
        font-size: 25px;
    }

    .mu-event-timeline ul li .mu-single-event, 
    .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event, 
    .mu-event-timeline ul li:nth-child(2n) .mu-single-event {
        left: 30px;
        width: 280px;
    }
}



@media (max-width: 320px) {

    .mu-video-iframe-area {
        padding: 30% 5%;
    }

    .mu-event-timeline ul li .mu-single-event, 
    .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event, 
    .mu-event-timeline ul li:nth-child(2n) .mu-single-event {
        left: 30px;
        width: 250px;
    }

    h2 {
        font-size: 22px;
    }
    
    
    
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
    /*max-width: none;*/
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Slick Theme Color */

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: #000;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 25px;
    line-height: 1;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev{
    left: 40px;
    width: 50px;
    height: 50px;
    z-index: 999;
}
[dir='rtl'] .slick-prev
{
    right: 40px;
    left: auto;
}
.slick-prev:before
{
    content: '\f053';
}
[dir='rtl'] .slick-prev:before
{
    content: '\f054';
}

.slick-next{
    right: 40px;
    width: 50px;
    height: 50px;
    z-index: 999;
}


[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '\f054';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

.mu-hero-overlay,
.mu-video-overlay {
    /* background-color: #45A29E;fallback for old browsers */
    /* background: -webkit-linear-gradient(to right, #64b3f4, #66FCF1);  Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(to right, #64b3f4, #66FCF1); W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-image: url('../img/oat.jpg');
    background-size: cover;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    max-width:100%;
    max-height:100%;
    object-fit: contain'
}

.navbar{
    background-color: #0B0C10;
}

.mu-primary-btn:hover,
.mu-primary-btn:focus,
.mu-copy-right a:hover,
.mu-copy-right a:focus,
.mu-send-msg-btn:hover,
.mu-send-msg-btn:focus,
.mu-faq-content .panel-title a:hover,
.mu-faq-content .panel-title a:focus,
.mu-faq-content .panel-title a[aria-expanded="true"],
.mu-faq-content .panel-title a>span,
.mu-menu ul li a:hover,
.mu-menu ul li a:focus,
.mu-single-speakers-info p,
.mu-single-speakers-social li a:hover,
.mu-single-speakers-social li a:focus,
.mu-logo,
.mu-logo:hover,
.mu-logo:focus,
#mu-hero .navbar-default .navbar-brand,
.mu-navbar .mu-menu li a:hover,
.mu-navbar .mu-menu li a:focus,
.mu-single-event .mu-event-time {
    color: #66FCF1;
}

.mu-speakers-slider .slick-next,
.mu-speakers-slider .slick-prev,
#mu-venue,
.mu-popular-price .mu-price-tag,
.mu-navbar .navbar-toggle,
.mu-navbar .navbar-toggle:hover,
.mu-navbar .navbar-toggle:focus,
.navbar-default .navbar-nav > .active > a, 
.navbar-default .navbar-nav > .active > a:focus, 
.navbar-default .navbar-nav > .active > a:hover,
.mu-schedule-menu li a:hover,
.mu-schedule-menu li a:focus,
.mu-schedule-menu li.active a,
.mu-schedule-menu li.active a:hover,
.mu-schedule-menu li.active a:focus {
    background-color: #9400D3;
}

.mu-social-media a:hover,
.mu-social-media a:focus {
    border: 1px solid #9400D3;
    color: #66FCF1;
}


.mu-contact-form .form-control:focus,
.mu-schedule-menu li a {
    border: 1px solid #9400D3;    
    border-radius: 15px; 
} 

.mu-send-msg-btn,
.mu-send-msg-btn:focus,
.mu-details-btn:hover,
.mu-details-btn:focus,
.mu-popular-price .mu-details-btn {
    border: 1px solid #66FCF1;
    background-color: #66FCF1;
}

.mu-faq-content .panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #66FCF1;

}

.mu-reg-submit-btn:hover,
.mu-reg-submit-btn:focus {
    background-color: #66FCF1;
    border: 2px solid #66FCF1;
}

.navbar-brand{
    color:#66FCF1 !important;   
    padding: 20px;
}

.navbar-brand:hover{
    color:WHITE !important; 
}

.navbar-toggle{
    background-color: #0B0C10 !important;
}



