/* @font-face {
    font-family: 'Calibri';
    src: url('fonts/Calibri.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: "Lato", sans-serif;
}

img {
    vertical-align: baseline;
}

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

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;
    background-color: #d79c2f;
    position: relative;
}

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

@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: 24px;
    height: 22px;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: inline-block;
    /* Ensure it doesn't take full width */
}

.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%;
}

/* Profile navigation styling */
.profile-navigation {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    /* Space between hamburger and profile icon */
}

.profile-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.profile-navigation .login-btn {
    color: #141414;
    background: #FAFAFA;
    /* font-size: 18px; */
    font-weight: 600;
    text-transform: capitalize;
    padding: 8px;
    border: none;
    outline: none;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: block;
    transition: all 0.3s ease 0s;
}

/* Ensure visibility on smaller screens */
@media (max-width: 767px) {
    .profile-navigation {
        display: inline-block !important;
        /* Override any hiding rules */
    }

    .col-2.order-2 {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .hamburger-menu {
        margin-right: 10px;
        /* Space between hamburger and profile */
    }
}

/* Submenu Styles */
.main-menu-item {
    position: relative;
}

.main-menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-menu-link .icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.submenu {
    position: absolute;
    top: 100%;
    /* Position below the parent menu item */
    left: 0;
    min-width: 200px;
    background: #d79c2f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.submenu-item {
    display: block;
    padding: 0;
}

.submenu-link {
    display: block;
    padding: 12px 20px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
    transition: background-color 0.3s ease;
}

.submenu-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

/* Show submenu on hover */
.main-menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 9999;
    display: block;
    position: absolute;
}

.main-menu-item:hover .main-menu-link .icon {
    transform: rotate(180deg);
}

/* Mobile specific styles */
@media screen and (max-width: 991px) {
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 10px;
        border-radius: 4px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-menu-item:hover .submenu,
    .main-menu-item.active .submenu {
        max-height: 200px;
    }

    .submenu-link {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Desktop specific adjustments */
@media screen and (min-width: 992px) {
    .main-menu-item {
        position: relative;
    }

    .main-menu-item .submenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #d79c2f;
        border: 1px solid rgba(255, 255, 255, 0.1);
        min-width: 200px;
        z-index: 999;
    }

    .main-menu-item:hover .submenu {
        display: block;
    }

    .submenu .submenu-item {
        padding: 10px;
    }

    .submenu .submenu-link {
        color: white;
        text-decoration: none;
    }

    .submenu .submenu-link:hover {
        background: rgba(0, 0, 0, 0.1);
    }

    .site-navigation ul {
        overflow: visible !important;
        /* Ensure it doesn't clip dropdown */
    }
}

@media screen and (max-width: 991px) {
    .submenu {
        position: relative;
        top: auto;
        left: auto;
        display: none;
    }

    .main-menu-item.open .submenu {
        display: block;
    }
}


/*
# Main Menu
--------------------------------*/
.site-navigation {
    /* position: absolute; */
    top: -22px;
    right: 15px;
    z-index: 999;
    width: 100%;
    height: 22px;
    overflow: visible;
    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: #d79c2f;
    transition: all 0.35s;
}

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

.site-navigation ul li {
    display: block;
    padding: 10px;
    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: visible;
        background: transparent;
    }

    .site-navigation ul li a {
        color: #fff;
    }
}

/*
# 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-slider .swiper-slide img {
    width: 100vw;
}

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

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

.hero-slider .entry-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: bold;
    color: #fff;
}

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

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

.swiper-button-next,
.swiper-button-prev {
    visibility: hidden;
    width: 50px;
    height: 50px;
    margin-top: -21px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #d79c2f;
    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: 30px;
    /* padding-top: 6px; */
}

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

.swiper-pagination-bullet {
    /* position: relative;
    display: inline-block; */
    height: 10px;
    width: 10px;
    /* border-radius: 0; */
    /* font-size: 18px; */
    /* font-weight: bold; */
    /* text-align: right; */
    /* color: #fff; */
    background: #d79c2f;
    /* 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;
    }
}

/* Custom Swiper Style */



/*
# 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,
.homepage-live-events {
    padding: 0 0 60px;
    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;
}

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

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

.homepage-featured-events .event-content-wrap figure {
    margin: -36px -18px;
}

.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;
    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: 1260px;
    }

    .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: 320px;
    }

    .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: 1480px;
    }

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

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

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

    .homepage-featured-events .positioning-event-4 {
        width: 160px;
        top: 280px;
        left: 950px;
    }

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

    .homepage-featured-events .positioning-event-6 {
        width: 160px;
        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: 855px;
    }

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

    .homepage-featured-events .positioning-event-11 {
        width: 160px;
        top: 963px;
        left: 475px;
    }
}

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

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

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

@media screen and (min-width: 1200px) {
    .live-events-section-header p {
        padding: 0 85px;
    }
}

.homepage-live-events-slider .view-all,
.homepage-next-events-slider .view-all {
    display: flex;
    justify-content: end;
    margin-top: 30px;
    padding: 0px 5px;
    font-size: 18px;
}

.homepage-live-events .live-event-wrap {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgb(240, 241, 242);
    background: white;
    /* padding-bottom: 10px; */
    box-sizing: border-box;
}

.homepage-live-events .live-event-wrap figure {
    position: relative;
    margin: 0;
}

.homepage-live-events .live-event-wrap figure img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 16px 16px 0px 0px;
}

.homepage-live-events .live-event-wrap .event-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0px 10px;
    height: 120px;
    /* fixed height for 2 lines */
    line-height: 1.2em;
}

.homepage-live-events .live-event-wrap .entry-title {
    font-size: 20px;
    font-weight: bold;
    color: #232127;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.homepage-live-events .live-event-wrap .posted-date {
    font-size: 14px;
    color: #777;
    margin-top: 8px;
}

.homepage-live-events .live-event-wrap .posted-date span {
    color: #d79c2f;
    text-transform: uppercase;
    font-weight: 600;
}

.homepage-live-events .live-event-wrap .entry-content {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #777777;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    white-space: normal;
    /* Allows text to wrap */
    text-overflow: ellipsis;

}

.homepage-live-events .live-event-wrap .entry-footer {
    margin-top: auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    background: #F7EBD5;
    border-radius: 0 0 16px 16px;
}

/* .homepage-live-events .live-event-wrap .entry-footer button {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #bec0cc;
    text-decoration: none;
    background: #d79c2f;
    color: #ffffff;
}

.homepage-live-events .live-event-wrap .entry-footer a:hover {
    border-color: #d79c2f;
    color: #d79c2f;
} */


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

.next-events-section-header .entry-title,
.events-partners .entry-title {
    padding: 40px 0;
    font-size: 30px;
    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;
    }
}

.homepage-next-events .next-event-wrap {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgb(240, 241, 242);
    background: white;
    /* padding-bottom: 10px; */
    box-sizing: border-box;
}

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

.homepage-next-events .next-event-wrap figure img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 16px 16px 0px 0px;
}

.homepage-next-events .next-event-wrap .event-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0px 10px;
    height: 120px;
    /* fixed height for 2 lines */
    line-height: 1.2em;
}

.homepage-next-events .next-event-wrap .event-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -32px;
    left: 32px;
    width: 78px;
    height: 78px;
    border: 2px solid #fff;
    border-radius: 50%;

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

    background: #d79c2f;
}

.homepage-next-events .next-event-wrap .entry-title {
    font-size: 20px;
    font-weight: bold;
    color: #232127;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.homepage-next-events .next-event-wrap .posted-date {
    font-size: 14px;
    color: #777;
    margin-top: 8px;
}

.homepage-next-events .next-event-wrap .posted-date span {
    color: #d79c2f;
    text-transform: uppercase;
    font-weight: 600;
}

.homepage-next-events .next-event-wrap .entry-content {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #777777;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    white-space: normal;
    /* Allows text to wrap */
    text-overflow: ellipsis;
}

.homepage-next-events .next-event-wrap .entry-footer {
    margin-top: auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    background: #F7EBD5;
    border-radius: 0 0 16px 16px;
}

/* .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;
}

.homepage-next-events .next-event-wrap .entry-footer a:hover {
    border-color: #d79c2f;
    color: #d79c2f;
} */

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

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

.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: #d79c2f;
    padding: 5px 0;
    outline: none;
}

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

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

.homepage-regional-events-slider figure img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.homepage-regional-events-slider .entry-title {
    margin-top: 28px;
    font-size: 18px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

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

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

.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-slider .swiper-slide: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: #d79c2f;
}

/*--------------------------------------------------------------
# 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: #d79c2f;
    outline: none;
}

.events-list-page .single-event {
    display: none;
    margin-top: 30px;
    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; */
    padding: 24px;
    border: 1px solid #e5e5e5;
    border-top: 0;
    background: #f3f8f9;
}

.events-list-page .event-content-wrap .entry-title {
    font-size: 22px;
    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: #d79c2f;
}

.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: #d79c2f;
}

.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: #d79c2f;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 2px solid #d79c2f;
}

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

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

/*--------------------------------------------------------------
# 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: #d79c2f;
}

.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: #d79c2f;
}

.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: #d79c2f;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 2px solid #d79c2f;
}

@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: #d79c2f;
    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: #d79c2f;
    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: 40px;
}

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

.single-event-page .event-content-wrap .entry-title {
    font-size: 32px;
    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: #d79c2f;
}

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

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

.book-now {
    background: #008000;
    color: #ffffff;
    font-weight: 600;
}

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

.events-thumbnail img {
    display: block;
    width: 100%;
    height: 315px;
    border-radius: 12px;
    object-fit: contain;
}

.single-event-page .tabs {
    margin-top: 64px;
    margin-bottom: 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: #d79c2f;
}

.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: #d79c2f;
}

.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;
    }
}

@media screen and (max-width: 992px) {
    .event-header-content {
        margin-top: 40px;
    }
}

/*--------------------------------------------------------------
# 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: #d79c2f;
}

/*--------------------------------------------------------------
# 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: #d79c2f;
}

.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: 75px 0; */
    background: #d79c2f;
    text-align: center;
}

.footer-logo img {
    max-width: 250px;
}

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

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

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

.footer-social li a {
    display: block;
    width: 16px;
    height: 22px;
    margin: 12px;
    color: #ffffff;
    transition: all .35s;
}

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

.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: #d79c2f;
    transition: all .35s;
    cursor: pointer;

    visibility: hidden;
    opacity: 0;
}

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

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

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

/*--------------------------------------------------------------
# Login Modal
--------------------------------------------------------------*/

.show-modal {
    color: #fff;
    background: linear-gradient(to right, #33a3ff, #0675cf, #49a6fd);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 10px 15px;
    margin: 200px auto 0;
    border: none;
    outline: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: block;
    transition: all 0.3s ease 0s;
}

.show-modal:hover,
.show-modal:focus {
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    outline: none;
}

.modal-dialog {
    width: 400px;
    margin: 70px auto 0;
}

.modal-dialog {
    transform: scale(0.5);
}

.modal-dialog {
    transform: scale(1);
}

.modal-dialog .modal-content {
    text-align: center;
    border: none;
    border-radius: 16px;
}

.modal-content .close {
    color: #000000;
    /* background: linear-gradient(to right, #33a3ff, #0675cf, #4cd5ff); */
    /* font-size: 25px; */
    /* font-weight: 400; */
    /* text-shadow: none; */
    /* line-height: 27px; */
    height: 25px;
    width: 25px;
    /* border-radius: 50%; */
    /* overflow: hidden; */
    opacity: 1;
    position: absolute;
    left: auto;
    right: 8px;
    top: 8px;
    z-index: 1;
    transition: all 0.3s;
}

.modal-body {
    padding: 40px !important;
}

.modal-body .title {
    color: #d79c2f;
    font-size: 33px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 10px;
}

.modal-body .description {
    color: #9A9EA9;
    font-size: 16px;
    margin: 0 0 20px;
}

.modal-body .form-group {
    text-align: left;
    margin-bottom: 20px;
    position: relative;
}

.modal-body .input-icon {
    color: #777;
    font-size: 18px;
    transform: translateY(-50%);
    position: absolute;
    top: 54%;
    left: 12px;
}

.modal-body .form-control {
    font-size: 17px;
    height: 45px;
    width: 100%;
    padding: 6px 0 6px 50px;
    margin: 0 auto;
    border: 2px solid #878787;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
}

.form-control::placeholder {
    color: #AEAFB1;
}

.form-group.checkbox {
    width: 130px;
    margin-top: 0;
    display: inline-block;
}

.form-group.checkbox label {
    color: #9A9EA9;
    font-weight: normal;
}

.form-group.checkbox input[type=checkbox] {
    margin-left: 0;
}

.modal-body .forgot-pass {
    color: #7F7FD5;
    font-size: 13px;
    text-align: right;
    width: calc(100% - 135px);
    margin: 2px 0;
    display: inline-block;
    vertical-align: top;
    transition: all 0.3s ease 0s;
}

.forgot-pass:hover {
    color: #9A9EA9;
    text-decoration: underline;
}

.modal-content .modal-body .btn {
    color: #fff;
    background: linear-gradient(to right, #ffc250, #d79c2f, #fcbd49);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 38px;
    width: 100%;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 5px;
    border: none;
    display: inline-block;
    transition: all 0.6s ease 0s;
}

.modal-content .modal-body .btn:hover {
    color: #000000;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.modal-content .modal-body .btn:focus {
    outline: none;
}

.otp-inputs {
    gap: 10px;
}

.otp-box {
    width: 60px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    border: 1px solid #878787;
    padding: 0;
    border-radius: 5px;
}

.otp-box:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}


@media only screen and (max-width: 480px) {
    .modal-dialog {
        width: 95% !important;
    }

    .modal-content .modal-body {
        padding: 60px 20px 40px !important;
    }
}