@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;
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

:root {
    --vh: 1vh;
}

body {
    color: #2f2f2f;
    font-family: "Calibri", sans-serif;
    overflow-x: hidden;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    vertical-align: baseline;
}

/* =========================================================
   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;
}

/* =========================================================
   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 {
    position: relative;
    display: inline-block;

    background-image: linear-gradient(
        270deg,
        #aa00ff 0%,
        #581687 100%
    );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.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: linear-gradient(
        270deg,
        rgba(171, 0, 229, 1) 0%,
        rgba(88, 20, 121, 1) 100%
    );
    color: #fff;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
}

.site-header .site-title img {
    max-height: 64px;
}

.header-bar {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    padding: 14px 0;
}

.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
========================================================= */

.hamburger-menu {
    position: relative;
    z-index: 10001;

    width: 100%;
    max-width: 24px;
    height: 22px;

    margin-left: auto;

    cursor: pointer;
    touch-action: manipulation;

    transition: 0.5s ease-in-out;
}

.hamburger-menu span {
    position: absolute;
    left: 0;

    display: block;

    width: 100%;
    height: 2px;

    background: #fff;
    border-radius: 10px;

    opacity: 1;

    transition: 0.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;
    left: 50%;
    width: 0;
}

.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;
    left: 50%;
    width: 0;
}

/* =========================================================
   MAIN MENU
========================================================= */

.site-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;

    width: 100%;
    height: auto;

    overflow: hidden;

    pointer-events: auto;

    transition: all 0.35s;
}

.site-navigation .hamburger-menu {
    pointer-events: auto;
}

.site-navigation ul {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9999;

    width: 320px;
    max-width: 80%;
    height: 100vh;

    padding: 30px;
    margin: 0;

    overflow-x: hidden;
    overflow-y: auto;

    background: #9a28d7;

    list-style: none;

    pointer-events: none;

    transition: left 0.35s ease-in-out;
}

.site-navigation.show ul {
    left: 0;
    pointer-events: auto;
}

.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;

    text-decoration: none;

    transition: all 0.35s;
}

.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 {
        position: relative;
        top: auto;
        left: auto;

        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;

        width: 100%;
        height: auto;

        padding: 0;

        overflow: auto;

        background: transparent;

        pointer-events: auto;
    }

    .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 / SWIPER
========================================================= */

.hero-slider,
.swiper-container.hero-slider {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 600px;

    overflow: hidden;

    background-color: #000;
    background-image: url("images/header-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Swiper wrapper */

.hero-slider .swiper-wrapper {
    position: relative;

    display: flex;

    width: 100%;
    height: 100%;
    min-height: 100%;

    overflow: visible;

    transition-property: transform;
}

/* Individual slides */

.hero-slider .swiper-slide {
    position: relative;

    display: flex;
    flex: 0 0 100%;
    flex-shrink: 0;

    width: 100%;
    max-width: 100%;

    height: 100%;
    min-height: 600px;

    overflow: hidden;

    background-color: #000;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    -webkit-transform: translateZ(0);
    transform: translateZ(0);

    will-change: transform;

    transition-property: transform;
}

/* Hero content */

.hero-slider .hero-content {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;
    min-height: 100%;

    padding-top: 120px;
    padding-bottom: 80px;
}

.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 PAGINATION
========================================================= */

.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-pagination-bullet {
    position: relative;

    display: inline-block;

    width: auto;
    height: 24px;

    margin: 0 5px;

    border-radius: 0;

    font-size: 18px;
    font-weight: bold;
    text-align: right;

    color: #fff;
    background: transparent;

    opacity: 1;

    cursor: pointer;

    transition: all 0.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;
}

/* =========================================================
   SWIPER ARROWS
========================================================= */

.swiper-button-next,
.swiper-button-prev {
    position: absolute;

    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-top: -21px;

    border: 2px solid #fff;
    border-radius: 50%;

    background: #9a28d7;

    visibility: visible !important;
    opacity: 1 !important;

    pointer-events: auto;

    z-index: 20;

    transition: all 0.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;
}

@media screen and (min-width: 1200px) {
    .swiper-button-next {
        right: 64px;
    }

    .swiper-button-prev {
        left: 64px;
    }
}

/* =========================================================
   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-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;
    }
}

/* =========================================================
   RESPONSIVE LAYOUT
========================================================= */

@media screen and (max-width: 991px) {
    .header-bar {
        position: relative;
        background: rgba(35, 18, 39, 0.95);
    }

    .site-header .site-title img {
        max-height: 48px;
    }

    .site-navigation {
        position: relative;
        top: auto;
        right: auto;

        width: auto;
        height: auto;
    }

    .site-navigation ul {
        padding: 24px 20px;
    }

    .site-navigation ul li {
        padding: 10px 0;
    }

    .hero-content {
        min-height: 100%;
        height: 100%;

        padding-top: 120px;
        padding-bottom: 80px;
    }

    .homepage-info-section {
        padding: 80px 0;
    }

    .homepage-info-section figure {
        padding-right: 0;
        margin-bottom: 30px;

        text-align: center;
    }

    .homepage-info-section .entry-title {
        font-size: 36px;
    }

    .homepage-info-section .entry-content p {
        font-size: 16px;
    }

    .homepage-info-section .entry-footer a {
        margin-top: 24px;
        margin-right: 12px;
    }

    .homepage-featured-events {
        padding: 80px 0 100px;
    }

    .featured-events-wrap .event-content-wrap {
        width: 100%;
        margin-bottom: 24px;
    }

    .next-events-section-header .entry-title,
    .events-partners .entry-title {
        font-size: 36px;
        background-size: contain;
    }

    .homepage-next-events .next-event-wrap {
        margin-top: 48px;
    }

    .homepage-next-events .next-event-wrap .entry-title {
        font-size: 24px;
    }

    .homepage-regional-events {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .homepage-regional-events .regional-events-heading .entry-title {
        font-size: 36px;
    }

    .homepage-regional-events-slider {
        margin-top: 60px;
    }

    .events-partners {
        padding: 80px 0;
    }

    .events-partners-logos .event-partner-logo {
        width: 50%;
        min-width: 0;
        margin-top: 40px;
    }

    .newsletter-subscribe {
        padding: 100px 0;
    }

    .newsletter-subscribe .entry-title {
        font-size: 28px;
    }

    .newsletter-subscribe form input[type="text"],
    .newsletter-subscribe form input[type="email"],
    .newsletter-subscribe form input[type="submit"] {
        margin-top: 20px;
    }

    .site-footer .footer-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================================================
   MOBILE HERO
========================================================= */

@media screen and (max-width: 575px) {
    /* Header */

    .header-bar {
        padding: 10px 0;
    }

    .site-header .site-title img {
        max-height: 40px;
    }

    .hamburger-menu {
        display: block;
    }

    .site-navigation {
        overflow: visible;
    }

    .site-navigation ul {
        width: 100%;
        max-width: 100%;

        pointer-events: none;
    }

    .site-navigation.show ul {
        left: 0;
        pointer-events: auto;
    }

    /* Hero */

    .hero-slider,
    .swiper-container.hero-slider {
        position: relative;

        width: 100% !important;
        height: 100vh !important;
        min-height: 100vh !important;

        overflow: hidden !important;
    }

    .hero-slider .swiper-wrapper {
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;

        overflow: visible !important;
    }

    .hero-slider .swiper-slide {
        width: 100% !important;
        max-width: 100% !important;

        height: 100% !important;
        min-height: 100% !important;

        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    /* Mobile backgrounds */

    .hero-slider .swiper-slide[data-mobile="images/header-bg-mobile.png"] {
        background-image: url("images/header-bg-mobile.png") !important;
    }

    .hero-slider .swiper-slide[data-mobile="images/header-bg1-mobile.png"] {
        background-image: url("images/header-bg1-mobile.png") !important;
    }

    .hero-slider .swiper-slide[data-mobile="images/header-bg2-mobile.png"] {
        background-image: url("images/header-bg2-mobile.png") !important;
    }

    /* Hero content */

    .hero-slider .hero-content {
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;

        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-slider .entry-title {
        font-size: 22px;
        line-height: 1.2;
    }

    /* Hide mobile arrows */

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    /* Mobile pagination */

    .hero-slider .swiper-pagination {
        position: absolute !important;

        right: 0 !important;
        bottom: 25px !important;
        left: 0 !important;

        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 100% !important;
        max-width: none !important;

        padding: 0 !important;
        margin: 0 !important;

        z-index: 1000 !important;

        text-align: center;

        pointer-events: auto !important;
    }

    .hero-slider .swiper-pagination-bullet {
        display: inline-block !important;
        flex: 0 0 auto !important;

        width: 10px !important;
        height: 10px !important;

        padding: 0 !important;
        margin: 0 6px !important;

        border: 0 !important;
        border-radius: 50% !important;

        background: #fff !important;

        opacity: 0.5 !important;

        transform: none !important;

        transition:
            opacity 0.3s ease,
            transform 0.3s ease !important;
    }

    .hero-slider .swiper-pagination-bullet-active {
        width: 12px !important;
        height: 12px !important;

        margin: 0 5px !important;

        background: #fff !important;

        opacity: 1 !important;

        transform: scale(1.1) !important;
    }

    .hero-slider .swiper-pagination-bullet-active::before {
        display: none !important;
        content: none !important;
    }

    /* Other mobile content */

    .homepage-info-section .entry-title {
        font-size: 28px;
    }

    .homepage-info-section .entry-footer a {
        display: inline-block;

        margin: 12px 8px 0 0;
        padding: 14px 24px;
    }

    .featured-events-wrap .event-content-wrap .entry-header .entry-title {
        font-size: 14px;
    }

    .featured-events-wrap .event-content-wrap .entry-header .posted-date {
        font-size: 12px;
    }

    .homepage-next-events .next-event-wrap .entry-title {
        font-size: 20px;
    }

    .homepage-next-events .next-event-wrap .entry-content p {
        font-size: 16px;
    }

    .homepage-regional-events .select-location select {
        width: 100%;
    }

    .newsletter-subscribe form input[type="submit"] {
        width: 100%;
    }

    .site-footer .footer-social ul {
        gap: 8px;
    }
}

/* =========================================================
   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: #777;
}

.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;
}

.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 {
    width: 100%;
    margin-bottom: 30px;
}

.featured-events-wrap .event-content-wrap:nth-last-of-type(1) {
    margin-bottom: 0;
}

@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 {
        top: 192px;
        left: 320px;
        width: 210px;
    }

    .homepage-featured-events .positioning-event-3 {
        top: 75px;
        left: 560px;
        width: 210px;
    }

    .homepage-featured-events .positioning-event-4 {
        top: 235px;
        left: 800px;
        width: 130px;
    }

    .homepage-featured-events .positioning-event-5 {
        top: 350px;
        left: 0;
        width: 130px;
    }

    .homepage-featured-events .positioning-event-6 {
        top: 344px;
        left: 560px;
        width: 130px;
    }

    .homepage-featured-events .positioning-event-7 {
        top: 457px;
        left: 160px;
        width: 210px;
    }

    .homepage-featured-events .positioning-event-8 {
        top: 457px;
        left: 400px;
        width: 290px;
    }

    .homepage-featured-events .positioning-event-9 {
        top: 395px;
        left: 720px;
        width: 210px;
    }

    .homepage-featured-events .positioning-event-10 {
        top: 653px;
        left: 720px;
        width: 130px;
    }

    .homepage-featured-events .positioning-event-11 {
        top: 807px;
        left: 400px;
        width: 130px;
    }
}

@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 {
        top: 230px;
        left: 380px;
        width: 255px;
    }

    .homepage-featured-events .positioning-event-3 {
        top: 90px;
        left: 665px;
        width: 255px;
    }

    .homepage-featured-events .positioning-event-4 {
        top: 280px;
        left: 950px;
        width: 160px;
    }

    .homepage-featured-events .positioning-event-5 {
        top: 417px;
        left: 0;
        width: 160px;
    }

    .homepage-featured-events .positioning-event-6 {
        top: 410px;
        left: 665px;
        width: 160px;
    }

    .homepage-featured-events .positioning-event-7 {
        top: 546px;
        left: 190px;
        width: 255px;
    }

    .homepage-featured-events .positioning-event-8 {
        top: 546px;
        left: 475px;
        width: 350px;
    }

    .homepage-featured-events .positioning-event-9 {
        top: 470px;
        left: 855px;
        width: 255px;
    }

    .homepage-featured-events .positioning-event-10 {
        top: 776px;
        left: 855px;
        width: 160px;
    }

    .homepage-featured-events .positioning-event-11 {
        top: 963px;
        left: 475px;
        width: 160px;
    }
}

/* =========================================================
   NEXT EVENTS
========================================================= */

.next-events-section-header {
    margin-top: 36px;
    text-align: center;
}

/* =========================================================
   ABOUT / NEXT EVENTS SECTION HEADING
   ========================================================= */

.next-events-section-header .entry-title,
.events-partners .entry-title {
    position: relative;

    width: 100%;
    margin: 0;

    /*
     * IMPORTANT:
     * More vertical padding gives the background logo
     * enough room to display completely.
     */
    padding: 75px 20px;

    font-size: 60px;
    font-weight: bold;
    line-height: 1.15;

    color: #232127;

    background-image: url("images/logo-3.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 250px auto;

    text-align: center;

    overflow: visible;
}


/* Paragraph */
.next-events-section-header p {
    margin: 20px auto 0;

    max-width: 900px;

    font-size: 18px;
    line-height: 1.7;

    color: #777;

    text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 991px) {

    .next-events-section-header .entry-title,
    .events-partners .entry-title {
        padding: 65px 20px;

        font-size: 48px;

        background-size: 220px auto;
    }

    .next-events-section-header p {
        font-size: 17px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 767px) {

    .next-events-section-header .entry-title,
    .events-partners .entry-title {
        padding: 55px 15px;

        font-size: 36px;
        line-height: 1.2;

        background-size: 190px auto;
    }

    .next-events-section-header p {
        margin-top: 20px;

        padding: 0 10px;

        font-size: 16px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 480px) {

    .next-events-section-header .entry-title,
    .events-partners .entry-title {
        padding: 48px 10px;

        font-size: 30px;
        line-height: 1.2;

        background-size: 160px auto;
    }

    .next-events-section-header p {
        font-size: 15px;
        line-height: 1.65;
    }
}

@media screen and (min-width: 1200px) {
    .next-events-section-header p {
        padding: 0 85px;
    }
}

.homepage-next-events .next-event-wrap {
    margin-top: 96px;
    text-align: center;
}

.homepage-next-events .next-event-wrap figure {
    position: relative;
    margin: 0;
}

.homepage-next-events .next-event-wrap figure img {
    width: 100%;
}

.homepage-next-events .next-event-wrap .event-rating {
    position: absolute;
    top: -32px;
    left: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    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;

    color: #232127;
}

.homepage-next-events .next-event-wrap .posted-date {
    margin-top: 12px;

    font-size: 18px;
    font-weight: bold;

    text-transform: uppercase;

    color: #777;
}

.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: #777;
}

.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;
}

.homepage-next-events .next-event-wrap .entry-footer a:hover {
    border-color: #9a28d7;
    color: #9a28d7;
}

/* =========================================================
   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: 60px;
    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: linear-gradient(
        270deg,
        rgba(171, 0, 229, 1) 0%,
        rgba(88, 20, 121, 1) 100%
    );

    color: #fff;

    outline: none;
}

.homepage-regional-events .select-location select option {
    padding: 5px 0;

    background: #9a28d7;

    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 figure img {
    display: block;
    width: 100%;
}

.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;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    background: rgba(154, 40, 215, 0.85);

    font-size: 30px;
    font-weight: bold;

    text-decoration: none;

    color: #fff;

    visibility: hidden;
    opacity: 0;

    transition: all 0.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%;

    padding: 15px 24px;

    border: 0;
    border-radius: 6px;

    font-size: 14px;

    color: #232127;

    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;
}

/* =========================================================
   PAGE HEADER
========================================================= */

.page-header {
    height: 250px;

    padding: 100px 0 0;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.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: #777;
    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: #777;
}

.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 {
    margin: 84px 0;

    text-align: center;
}

.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 {
    width: 100%;
    margin-top: 30px;
}

.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: #777;
}

.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 {
    padding: 0;
    margin: 0;

    list-style: none;
}

ul.tabs-nav .tab-nav {
    padding: 6px 10px;
    margin-right: 5px;

    border: 1px solid #e5e5e5;

    background: #f3f8f9;

    font-size: 18px;
    font-weight: bold;

    color: #232127;

    cursor: pointer;

    transition: all 0.35s;
}

ul.tabs-nav .tab-nav.active {
    border-color: transparent;

    background: #9a28d7;
    color: #fff;
}

.tabs .tab-nav {
    z-index: 99;
    margin-bottom: -1px;
}

.tabs-container {
    padding: 15px;

    border: 1px solid #e5e5e5;

    background: #f3f8f9;
}

.tab-content {
    display: none;
}

.tab-content p {
    margin-bottom: 0;

    font-size: 18px;
    line-height: 1.7;

    color: #777;
}

@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: "-";
}

.accordion-wrap .entry-content {
    display: none;
}

.accordion-wrap .entry-content p {
    padding: 24px 0;

    font-size: 18px;
    line-height: 1.7;

    color: #777;
}

/* =========================================================
   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: #777;
}

.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: #777;
}

.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 {
    margin: 0;

    -webkit-appearance: none;
}

.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: linear-gradient(
        270deg,
        rgba(171, 0, 229, 1) 0%,
        rgba(88, 20, 121, 1) 100%
    );

    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: #777;
}

.blog-pagination ul {
    padding: 0;
    margin: 65px 0 120px;

    list-style: none;
}

.blog-pagination li {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: 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
========================================================= */

.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: #777;
}

.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;

    width: 100%;

    margin-top: -18px;

    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: #777;
}

/* =========================================================
   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;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 75px 0;

    background: #08011e;

    text-align: center;
}

.footer-logo img {
    max-width: 100%;
}

.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;
}

.footer-social li a {
    display: block;

    width: 16px;
    height: 22px;

    margin: 12px;

    color: #8f8f8f;

    transition: all 0.35s;
}

.footer-social li a:hover {
    color: #fff;
}

/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 64px;
    bottom: 84px;
    z-index: 9999;

    width: 42px;
    height: 42px;

    margin-top: -21px;

    border: 2px solid #fff;
    border-radius: 50%;

    background: #9a28d7;

    cursor: pointer;

    visibility: hidden;
    opacity: 0;

    transition: all 0.35s;
}

.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;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    text-align: center;
}


/* Footer Description */

.footer-description {
    max-width: 650px;
    margin: 20px auto 25px;
    line-height: 1.8;
    opacity: 0.8;
}


/* Footer Contact */

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px 35px;
    margin: 25px 0 30px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item i {
    font-size: 16px;
}

.footer-contact-item a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-item a:hover {
    opacity: 0.7;
}


/* Social Icons */

.footer-social {
    margin-top: 25px;
}

.footer-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 12px;
}

.footer-social li {
    margin: 0;
}

.footer-social a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-4px);
}


/* Copyright */

.footer-copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    margin: 0;
}


/* Mobile */

@media (max-width: 767px) {

    .footer-contact {
        flex-direction: column;
        gap: 15px;
    }

    .footer-description {
        padding: 0 15px;
    }

    .footer-navigation ul {
        gap: 5px 15px;
    }

}

/* =========================================
   FOOTER BOTTOM WHITE SPACE FIX
========================================= */

html,
body {
    margin: 0;
    padding: 0;
}

.site-footer {
    margin-bottom: 0 !important;
    padding-bottom: 30px;
}

.site-footer .container,
.site-footer .row,
.site-footer .col-12 {
    margin-bottom: 0 !important;
}

.site-footer p {
    margin-bottom: 0;
}

.site-footer figure {
    margin-bottom: 20px;
}

.site-footer ul {
    margin-bottom: 0;
    padding-bottom: 0;
}

body {
    overflow-x: hidden;
}

.site-footer {
    margin: 0 !important;
}

/* =========================================
   VOYARA EVENTO - OUR WORK
========================================= */

.voyara-our-work {
    position: relative;
    padding: 110px 0;
    background: #080808;
    overflow: hidden;
}

/* Section Heading */

.voyara-our-work .section-heading {
    max-width: 750px;
    margin: 0 auto 60px;
}

.voyara-our-work .section-subtitle {
    margin: 0 0 12px;
    color: #c99a3b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.voyara-our-work .section-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -1px;
}

.voyara-our-work .section-title span {
    color: #d4a94f;
    font-style: italic;
}

.voyara-our-work .section-description {
    margin: 0 auto;
    max-width: 650px;
    color: #aaa;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   WORK GRID
========================================= */

.voyara-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 18px;
}


/* Individual Item */

.work-item {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 4px;
    background: #111;
}

.work-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1),
        filter 0.6s ease;
}


/* Larger Images */

.work-large {
    grid-column: span 2;
    grid-row: span 2;
}

.work-wide {
    grid-column: span 2;
}


/* =========================================
   IMAGE HOVER
========================================= */

.work-item::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .05) 65%
        );

    opacity: 0.8;
    transition: opacity .4s ease;
}

.work-item:hover img {
    transform: scale(1.08);
    filter: brightness(.75);
}

.work-item:hover::after {
    opacity: 1;
}


/* =========================================
   OVERLAY CONTENT
========================================= */

.work-overlay {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 28px;

    transform: translateY(12px);
    opacity: 0;

    transition:
        opacity .4s ease,
        transform .4s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
    transform: translateY(0);
}

.work-overlay span {
    display: block;
    margin-bottom: 7px;

    color: #d5aa51;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.work-overlay h3 {
    margin: 0;

    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
}


/* =========================================
   CTA
========================================= */

.our-work-cta {
    margin-top: 55px;
}

.our-work-cta p {
    margin: 0 0 18px;
    color: #888;
    font-size: 15px;
}

.voyara-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 14px 26px;

    border: 1px solid rgba(212, 169, 79, .6);
    color: #d4a94f;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.voyara-work-btn span {
    font-size: 20px;
    line-height: 1;
}

.voyara-work-btn:hover {
    background: #d4a94f;
    color: #080808;
    transform: translateY(-3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .voyara-our-work {
        padding: 80px 0;
    }

    .voyara-work-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
    }

    .work-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .work-wide {
        grid-column: span 2;
    }

    .voyara-our-work .section-title {
        font-size: 40px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .voyara-our-work {
        padding: 65px 15px;
    }

    .voyara-our-work .section-heading {
        margin-bottom: 40px;
    }

    .voyara-our-work .section-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .voyara-our-work .section-title {
        font-size: 34px;
    }

    .voyara-our-work .section-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .voyara-work-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
        gap: 12px;
    }

    .work-large,
    .work-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Always show text on mobile */
    .work-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 20px;
    }

    .work-overlay h3 {
        font-size: 20px;
    }

    .work-overlay span {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .our-work-cta {
        margin-top: 40px;
    }

    .voyara-work-btn {
        font-size: 11px;
        padding: 13px 20px;
    }
}

/* =========================================
   FLOATING CONTACT BUTTONS
   ========================================= */

.floating-contact-buttons {
    position: fixed;
    right: 22px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: #fff !important;
    font-size: 24px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    color: #fff !important;
}

/* WhatsApp */
.whatsapp-btn {
    background: #25D366;
}

/* Call */
.call-btn {
    background: #111;
    border: 2px solid #D4AF37;
}

.call-btn:hover {
    background: #D4AF37;
    color: #111 !important;
}

/* Mobile */
@media (max-width: 767px) {

    .floating-contact-buttons {
        right: 15px;
        bottom: 18px;
        gap: 10px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }
}

/* =========================================================
   VOYARA EVENTO - FINAL RESPONSIVE LAYOUT FIX
   ========================================================= */

/* ---------- GLOBAL ---------- */

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

img {
    max-width: 100%;
}


/* =========================================================
   HERO
   ========================================================= */

.hero-slider {
    width: 100%;
    height: 100vh !important;
    min-height: 650px !important;
    overflow: hidden;
    position: relative;
}

.hero-slider .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper-slide picture,
.hero-slider .swiper-slide picture img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide picture img {
    object-fit: cover;
    object-position: center center;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.homepage-info-section {
    width: 100%;
    padding: 90px 0;
    background: #fff;
}

.homepage-info-section .row {
    align-items: center;
}

.homepage-info-section figure {
    margin: 0;
    padding: 0 30px 0 0;
}

.homepage-info-section figure img {
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
}

.homepage-info-section .entry-title {
    margin: 0;
    font-size: 52px;
    line-height: 1.1;
}

.homepage-info-section .entry-content {
    margin-top: 25px;
}

.homepage-info-section .entry-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
}

.homepage-info-section .entry-footer {
    margin-top: 25px;
}


/* =========================================================
   FEATURED EVENTS / OUR WORK
   REMOVE OLD ABSOLUTE POSITIONING
   ========================================================= */

.homepage-featured-events {
    width: 100%;
    min-height: 0 !important;
    height: auto !important;
    padding: 90px 0;
    background-position: center;
    background-size: cover;
}

.featured-events-wrap {
    width: 100%;
    display: grid !important;

    grid-template-columns: repeat(4, 1fr);

    grid-auto-rows: 220px;

    gap: 20px;

    position: relative;
}


/* Remove old absolute positioning */

.featured-events-wrap .event-content-wrap,
.homepage-featured-events .positioning-event-1,
.homepage-featured-events .positioning-event-2,
.homepage-featured-events .positioning-event-3,
.homepage-featured-events .positioning-event-4,
.homepage-featured-events .positioning-event-5,
.homepage-featured-events .positioning-event-6,
.homepage-featured-events .positioning-event-7,
.homepage-featured-events .positioning-event-8,
.homepage-featured-events .positioning-event-9,
.homepage-featured-events .positioning-event-10,
.homepage-featured-events .positioning-event-11 {
    position: relative !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    width: auto !important;

    height: 100%;

    margin: 0 !important;

    padding: 0 !important;
}


/* Gallery images */

.featured-events-wrap .event-content-wrap figure {
    width: 100%;
    height: 100%;
    margin: 0 !important;
    overflow: hidden;
}

.featured-events-wrap .event-content-wrap figure img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}


/* Hover */

.featured-events-wrap .event-content-wrap:hover img {
    transform: scale(1.05);
}


/* Gallery layout */

.featured-events-wrap .positioning-event-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.featured-events-wrap .positioning-event-2 {
    grid-column: span 1;
}

.featured-events-wrap .positioning-event-3 {
    grid-column: span 1;
}

.featured-events-wrap .positioning-event-4 {
    grid-column: span 1;
}

.featured-events-wrap .positioning-event-5 {
    grid-column: span 1;
}

.featured-events-wrap .positioning-event-6 {
    grid-column: span 1;
}

.featured-events-wrap .positioning-event-7 {
    grid-column: span 2;
}

.featured-events-wrap .positioning-event-8 {
    grid-column: span 2;
}

.featured-events-wrap .positioning-event-9 {
    grid-column: span 1;
}

.featured-events-wrap .positioning-event-10 {
    grid-column: span 1;
}

.featured-events-wrap .positioning-event-11 {
    grid-column: span 1;
}


/* Hide old event text if you only want images */

.homepage-featured-events .event-content-wrap .entry-header {
    display: none;
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.homepage-next-events {
    width: 100%;
    padding: 90px 0;
}

.next-events-section-header {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 50px;
    text-align: center;
}

.next-events-section-header .entry-title {
    margin: 0;
    font-size: 48px;
    line-height: 1.15;
}

.next-events-section-header p {
    margin: 20px auto 0;
    max-width: 900px;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   NEXT EVENT CARDS
   ========================================================= */

.homepage-next-events .next-event-wrap {
    width: 100%;
    margin-top: 0;
}

.homepage-next-events .next-event-wrap figure {
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.homepage-next-events .next-event-wrap figure img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.homepage-next-events .next-event-wrap .entry-title {
    margin-top: 25px;
    font-size: 24px;
    line-height: 1.3;
}


/* =========================================================
   REGIONAL EVENTS
   ========================================================= */

.homepage-regional-events {
    width: 100%;
    padding: 90px 0;
}

.homepage-regional-events .regional-events-heading {
    width: 100%;
    margin-bottom: 40px;
}

.homepage-regional-events .regional-events-heading .entry-title {
    margin: 0;
    font-size: 48px;
}


/* =========================================================
   PARTNERS
   ========================================================= */

.events-partners {
    width: 100%;
    padding: 80px 0;
}

.events-partners .entry-title {
    margin-bottom: 40px;
}

.events-partners-logos {
    width: 100%;
    gap: 20px;
}

.events-partners-logos .event-partner-logo {
    flex: 1 1 160px;
    max-width: 180px;
}

.events-partners-logos .event-partner-logo img {
    display: block;
    width: 100%;
    height: 70px;
    object-fit: contain;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter-subscribe {
    width: 100%;
    padding: 80px 0;
}

.newsletter-subscribe .entry-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 35px;
}

.newsletter-subscribe .entry-title {
    font-size: 38px;
    line-height: 1.2;
}

.newsletter-form form {
    margin: 0;
}

.newsletter-form input {
    width: 100%;
    min-height: 52px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    width: 100%;
    padding: 60px 0 40px;
    background: #08011e;
    text-align: center;
}

.site-footer .footer-logo {
    margin: 0 auto 25px;
}

.site-footer .footer-logo img {
    display: block;
    max-width: 180px;
    margin: 0 auto;
}

.site-footer .footer-navigation ul,
.site-footer .footer-social ul {
    margin: 20px 0 0;
}

.site-footer .footer-navigation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 20px;
}

.site-footer .footer-navigation li {
    margin: 0;
}

.site-footer .footer-navigation li a {
    padding: 5px;
}

.site-footer .footer-social ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.site-footer .footer-social li a {
    margin: 0;
}


/* =========================================================
   WHATSAPP + CALL FLOATING BUTTONS
   ========================================================= */

.floating-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 99999;
}

.floating-contact-buttons a {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff !important;
    text-decoration: none;

    font-size: 24px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.floating-contact-buttons a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.floating-whatsapp {
    background: #25D366;
}

.floating-call {
    background: #9a28d7;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .container {
        max-width: 100%;
    }

    .homepage-info-section {
        padding: 70px 0;
    }

    .homepage-info-section .entry-title {
        font-size: 40px;
    }

    .featured-events-wrap {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .featured-events-wrap .positioning-event-1 {
        grid-column: span 2;
        grid-row: span 2;
    }

    .featured-events-wrap .positioning-event-7,
    .featured-events-wrap .positioning-event-8 {
        grid-column: span 2;
    }

    .next-events-section-header .entry-title {
        font-size: 40px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .hero-slider {
        height: 100svh !important;
        min-height: 600px !important;
    }

    .hero-slider .swiper-slide {
        min-height: 600px;
    }


    /* Why choose */

    .homepage-info-section {
        padding: 60px 0;
    }

    .homepage-info-section figure {
        padding: 0;
        margin-bottom: 35px;
    }

    .homepage-info-section figure img {
        max-width: 300px;
    }

    .homepage-info-section .entry-title {
        font-size: 32px;
    }

    .homepage-info-section .entry-content p {
        font-size: 16px;
        line-height: 1.7;
    }


    /* Our work */

    .homepage-featured-events {
        padding: 60px 0;
    }

    .featured-events-wrap {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 12px;
    }

    .featured-events-wrap .event-content-wrap {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .featured-events-wrap .positioning-event-1,
    .featured-events-wrap .positioning-event-7,
    .featured-events-wrap .positioning-event-8 {
        grid-column: span 2 !important;
        grid-row: span 2 !important;
    }


    /* About */

    .homepage-next-events {
        padding: 60px 0;
    }

    .next-events-section-header {
        margin-bottom: 35px;
    }

    .next-events-section-header .entry-title {
        font-size: 32px;
    }

    .next-events-section-header p {
        font-size: 16px;
        line-height: 1.7;
    }


    /* Cards */

    .homepage-next-events .next-event-wrap {
        margin-bottom: 40px;
    }

    .homepage-next-events .next-event-wrap figure img {
        height: 260px;
    }


    /* Regional */

    .homepage-regional-events {
        padding: 60px 0;
    }

    .homepage-regional-events .regional-events-heading .entry-title {
        font-size: 32px;
    }


    /* Partners */

    .events-partners {
        padding: 60px 0;
    }

    .events-partners-logos {
        justify-content: center !important;
    }

    .events-partners-logos .event-partner-logo {
        flex: 0 0 45%;
        max-width: 45%;
    }


    /* Newsletter */

    .newsletter-subscribe {
        padding: 60px 0;
    }

    .newsletter-subscribe .entry-title {
        font-size: 28px;
    }


    /* Footer */

    .site-footer {
        padding: 50px 0 30px;
    }

    .site-footer .footer-navigation ul {
        flex-direction: row;
        gap: 8px 15px;
    }


    /* Floating buttons */

    .floating-contact-buttons {
        right: 15px;
        bottom: 15px;
    }

    .floating-contact-buttons a {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .featured-events-wrap {
        grid-auto-rows: 150px;
        gap: 10px;
    }

    .homepage-info-section .entry-title {
        font-size: 28px;
    }

    .next-events-section-header .entry-title {
        font-size: 28px;
    }

    .homepage-next-events .next-event-wrap figure img {
        height: 220px;
    }

}

/* =========================================================
   FOUNDER SECTION - MOBILE RESPONSIVE FIX
   ========================================================= */

.homepage-info-section {
    width: 100%;
    overflow: hidden;
}

.homepage-info-section .container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.homepage-info-section .entry-title {
    width: 100%;
    max-width: 100%;
    margin: 0;
    line-height: 1.15;
    overflow-wrap: break-word;
    word-break: normal;
}

.homepage-info-section .entry-content {
    width: 100%;
    max-width: 850px;
    margin: 25px auto 0;
}

.homepage-info-section .entry-content p {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 25px;
    line-height: 1.7;
    overflow-wrap: break-word;
}

/* Tablet */
@media (max-width: 991px) {

    .homepage-info-section {
        padding: 70px 0;
    }

    .homepage-info-section .entry-title {
        font-size: 40px;
        line-height: 1.15;
    }

    .homepage-info-section .entry-content {
        max-width: 800px;
    }

    .homepage-info-section .entry-content p {
        font-size: 18px;
        line-height: 1.7;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .homepage-info-section {
        padding: 50px 0;
    }

    .homepage-info-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .homepage-info-section .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .homepage-info-section figure {
        width: 100%;
        padding: 0;
        margin: 0 0 30px;
        text-align: center;
    }

    .homepage-info-section figure img {
        display: block;
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
    }

    .homepage-info-section .entry-title {
        width: 100%;
        font-size: 30px;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .homepage-info-section .entry-content {
        width: 100%;
        max-width: 100%;
        margin-top: 22px;
    }

    .homepage-info-section .entry-content p {
        width: 100%;
        max-width: 100%;
        margin: 0 0 25px;
        font-size: 17px;
        line-height: 1.7;
        text-align: left !important;
    }
}

/* Small phones */
@media (max-width: 480px) {

    .homepage-info-section {
        padding: 40px 0;
    }

    .homepage-info-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .homepage-info-section .entry-title {
        font-size: 27px;
        line-height: 1.2;
    }

    .homepage-info-section .entry-content {
        margin-top: 20px;
    }

    .homepage-info-section .entry-content p {
        font-size: 16px;
        line-height: 1.7;
        text-align: left !important;
    }

    .homepage-info-section figure img {
        max-width: 300px;
    }
}

/* =========================================================
   MOBILE - SHOW FULL NEXT EVENT IMAGES
   ========================================================= */

.homepage-next-events .next-event-wrap figure {
    width: 100%;
    margin: 0;
    overflow: visible;
}

.homepage-next-events .next-event-wrap figure img {
    display: block;
    width: 100%;
    height: auto !important;
    max-width: 100%;
    object-fit: contain !important;
    object-position: center top !important;
}

/* Mobile */
@media (max-width: 767px) {

    .homepage-next-events .next-event-wrap {
        width: 100%;
        margin-bottom: 35px;
    }

    .homepage-next-events .next-event-wrap figure {
        width: 100%;
        margin: 0;
    }

    .homepage-next-events .next-event-wrap figure img {
        width: 100%;
        height: auto !important;
        object-fit: contain !important;
        object-position: center top !important;
    }
}

/* Small mobile */
@media (max-width: 480px) {

    .homepage-next-events .next-event-wrap {
        margin-bottom: 30px;
    }

    .homepage-next-events .next-event-wrap figure img {
        width: 100%;
        height: auto !important;
    }
}

/* =========================================================
   EVENTS IN KERALA - RESPONSIVE FIX
   ========================================================= */

#events-section {
    width: 100%;
    scroll-margin-top: 90px;
}

.homepage-regional-events {
    width: 100%;
    min-height: auto;
    padding: 90px 0;
    overflow: visible;
    background: url("images/regional-events-bg.jpg") no-repeat center center;
    background-size: cover;
}

/* Heading */
.homepage-regional-events .regional-events-heading {
    width: 100%;
    margin: 0 0 45px;
    padding: 0;
}

.homepage-regional-events .regional-events-heading .entry-title {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    text-align: left;
    white-space: normal;
    overflow-wrap: break-word;
}

/* Slider */
.homepage-regional-events-slider {
    position: relative;
    width: 100%;
    margin-top: 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.homepage-regional-events-slider .swiper-slide {
    width: 100%;
}

.homepage-regional-events-slider figure {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.homepage-regional-events-slider figure img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Event title */
.homepage-regional-events-slider .entry-header {
    width: 100%;
}

.homepage-regional-events-slider .entry-title {
    margin: 20px 0 0;
    font-size: 20px;
    line-height: 1.3;
}

/* Event date */
.homepage-regional-events-slider .entry-footer {
    margin-top: 10px;
    font-size: 13px;
}

/* Slider arrows */
.homepage-regional-events-slider .swiper-button-next,
.homepage-regional-events-slider .swiper-button-prev {
    top: 45%;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    #events-section {
        scroll-margin-top: 80px;
    }

    .homepage-regional-events {
        padding: 75px 0;
    }

    .homepage-regional-events .regional-events-heading {
        margin-bottom: 35px;
    }

    .homepage-regional-events .regional-events-heading .entry-title {
        font-size: 40px;
    }

    .homepage-regional-events-slider {
        margin-top: 0;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    #events-section {
        scroll-margin-top: 75px;
    }

    .homepage-regional-events {
        width: 100%;
        min-height: auto;
        padding: 55px 0 60px;
    }

    .homepage-regional-events > .container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .homepage-regional-events .regional-events-heading {
        display: block;
        width: 100%;
        margin: 0 0 30px;
        text-align: center;
    }

    .homepage-regional-events .regional-events-heading .entry-title {
        display: block;
        width: 100%;
        margin: 0;
        font-size: 30px;
        line-height: 1.25;
        text-align: center;
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .homepage-regional-events-slider {
        width: 100%;
        margin-top: 0;
        overflow: hidden;
    }

    .homepage-regional-events-slider .swiper-slide {
        width: 100%;
    }

    .homepage-regional-events-slider figure {
        width: 100%;
        margin: 0;
    }

    .homepage-regional-events-slider figure img {
        display: block;
        width: 100%;
        height: auto !important;
        max-width: 100%;
        object-fit: contain;
    }

    .homepage-regional-events-slider .entry-title {
        margin-top: 18px;
        font-size: 18px;
        line-height: 1.3;
    }

    .homepage-regional-events-slider .entry-footer {
        margin-top: 8px;
        font-size: 11px;
    }

    /* Smaller arrows */
    .homepage-regional-events-slider .swiper-button-next,
    .homepage-regional-events-slider .swiper-button-prev {
        width: 35px;
        height: 35px;
        top: 42%;
    }

    .homepage-regional-events-slider .swiper-button-next {
        right: 5px;
    }

    .homepage-regional-events-slider .swiper-button-prev {
        left: 5px;
    }

    /* Partners */
    .events-partners {
        padding: 55px 0;
    }

    .events-partners .entry-title {
        font-size: 28px;
        text-align: center;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    #events-section {
        scroll-margin-top: 70px;
    }

    .homepage-regional-events {
        padding: 45px 0 50px;
    }

    .homepage-regional-events > .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .homepage-regional-events .regional-events-heading {
        margin-bottom: 25px;
    }

    .homepage-regional-events .regional-events-heading .entry-title {
        font-size: 27px;
        line-height: 1.25;
    }

    .homepage-regional-events-slider .entry-title {
        font-size: 17px;
    }

    .homepage-regional-events-slider .entry-footer {
        font-size: 10px;
    }

    .homepage-regional-events-slider .swiper-button-next,
    .homepage-regional-events-slider .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
}
#events-section.homepage-regional-events { 
      display: block !important;
    visibility: visible !important;
    opacity: 1 !important;   
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto !important;   
    min-height: 0 !important;    
    margin: 0;    
    padding: 90px 0 100px;    
    overflow: visible !important;    
    background-color: #24112b;    
    background-image: linear-gradient(rgba(28, 10, 34, 0.25), rgba(28, 10, 34, 0.25)), url("images/regional-events-bg.jpg");    
    background-repeat: no-repeat;    
    background-position: center top;    
    background-size: cover;
}
#events-section.homepage-regional-events > .container {    
    width: 100%;    max-width: 1140px;    
    margin-left: auto;    
    margin-right: auto;    
    padding-left: 15px;    
    padding-right: 15px;
}
#events-section .regional-events-heading {    
    display: block !important;    
    width: 100%;    
    margin: 0 0 40px !important;    
    padding: 0 !important;    
    text-align: center !important;
}
#events-section .regional-events-heading .entry-title {    
    display: block !important;    
    width: 100%;    margin: 0 !important;    
    padding: 0 !important;    
    color: #fff !important;    
    font-size: clamp(30px, 4vw, 48px) !important;    
    line-height: 1.2 !important;    
    font-weight: 700 !important;    
    text-align: center !important;    
    white-space: normal !important;    
    overflow: visible !important;    
    overflow-wrap: break-word;
}
#events-section .homepage-regional-events-slider {    
    display: block !important;    
    position: relative;    
    width: 100% !important;    
    height: auto !important;    
    min-height: 0 !important;    
    margin: 0 !important;    
    padding: 0 !important;    
    overflow: hidden !important;    
    color: #fff;
}
#events-section .homepage-regional-events-slider .swiper-wrapper {    
    display: flex;    
    align-items: stretch;    
    height: auto !important;
}
#events-section .homepage-regional-events-slider .swiper-slide {    
    height: auto !important;    
    min-height: 0 !important;    
    display: flex;    
    flex-direction: column;    
    box-sizing: border-box;
}
#events-section .homepage-regional-events-slider figure {    
    position: relative;    
    width: 100%;    
    height: auto !important;    
    margin: 0 !important;    
    padding: 0;    overflow: hidden;    
    background: rgba(255,255,255,0.08);    
    border-radius: 8px;
}
#events-section .homepage-regional-events-slider figure img {    
    display: block !important;    
    width: 100% !important;    
    max-width: 100% !important;    
    height: auto !important;    
    min-height: 0 !important;    
    object-fit: contain !important;    
    object-position: center top !important;
}
#events-section .homepage-regional-events-slider .entry-header {    
    display: block !important;    
    width: 100%;    margin: 0;    
    padding: 0;
    }
    #events-section .homepage-regional-events-slider .entry-title {    
    margin: 18px 0 0 !important;    
    color: #fff !important;    
    font-size: 20px !important;    
    line-height: 1.3 !important;    
    text-align: center !important;
}
#events-section .homepage-regional-events-slider .entry-footer {    
    display: block !important;    
    margin: 8px 0 0 !important;    
    color: #fff !important;    
    font-size: 12px !important;    
    line-height: 1.5 !important;    
    text-align: center !important;
}
#events-section .homepage-regional-events-slider .entry-footer span {    
    color: #d98cff !important;
}
#events-section .homepage-regional-events-slider .swiper-button-next,
#events-section .homepage-regional-events-slider .swiper-button-prev {    
    display: flex !important;    
    visibility: visible !important;    
    opacity: 1 !important;    
    top: 42% !important;    
    width: 42px !important;    
    height: 42px !important;    
    margin-top: -21px !important;    
    z-index: 20 !important;
}
#events-section .homepage-regional-events-slider .swiper-button-next { 
    right: 10px !important; 
}
#events-section .homepage-regional-events-slider .swiper-button-prev { 
    left: 10px !important; 
}
#events-section .events-partners {    
    width: 100%;    margin-top: 70px;    
    padding: 0 !important;
}
#events-section .events-partners .entry-header {   
    margin-bottom: 30px;    
    text-align: center;
}
#events-section .events-partners .entry-title {    
    margin: 0 !important;    
    color: #fff !important;    
    font-size: 32px !important;    
    text-align: center !important;
}
#events-section .events-partners-logos {    
    display: flex;    flex-wrap: wrap;    
    justify-content: center !important;    
    align-items: center;    
    width: 100%;    gap: 24px;
}
#events-section .events-partners-logos .event-partner-logo {    
    flex: 0 1 150px;    
    width: 150px;    
    min-width: 0;    
    margin: 0 !important;    
    text-align: center;
}
#events-section .events-partners-logos .event-partner-logo img {    
    display: block;    
    width: 100%;    
    height: 70px;    
    object-fit: contain;
}
@media (max-width: 991px) {    
#events-section.homepage-regional-events {
    padding: 75px 0 80px; 
}    
#events-section .homepage-regional-events-slider .swiper-button-next,    
#events-section .homepage-regional-events-slider .swiper-button-prev {        
    width: 38px !important;        
    height: 38px !important;        
    margin-top: -19px !important;    
}}
@media (max-width: 767px) {    
#events-section.homepage-regional-events {        
    padding: 55px 0 65px;        
    background-position: center top;    
}    
#events-section.homepage-regional-events > .container {        
    max-width: 100%;        
    padding-left: 16px;        
    padding-right: 16px;    
}    
#events-section .regional-events-heading { 
    margin-bottom: 28px !important; 
}    
#events-section .regional-events-heading .entry-title {        
    font-size: clamp(27px, 8vw, 34px) !important;        
    line-height: 1.2 !important;    
}    
#events-section .homepage-regional-events-slider .entry-title {        
    margin-top: 14px !important;        
    font-size: 18px !important;    
}    
#events-section .homepage-regional-events-slider .entry-footer { 
    font-size: 11px !important; 
}    
#events-section .homepage-regional-events-slider .swiper-button-next,    
#events-section .homepage-regional-events-slider .swiper-button-prev {        
    width: 34px !important;        
    height: 34px !important;        
    margin-top: -17px !important;    
}    
#events-section .homepage-regional-events-slider .swiper-button-next { 
    right: 6px !important; 
}    
#events-section .homepage-regional-events-slider .swiper-button-prev { 
    left: 6px !important; 
}    
#events-section .events-partners { 
    margin-top: 50px; 
}    
#events-section .events-partners .entry-title { 
    font-size: 27px !important; 
}    
#events-section .events-partners-logos { 
    gap: 18px 12px; 
}    
#events-section .events-partners-logos .event-partner-logo {        
    flex: 0 1 calc(50% - 12px);        
    width: calc(50% - 12px);        
    max-width: 160px;    
}}
@media (max-width: 480px) {    
    #events-section.homepage-regional-events { 
    padding: 45px 0 55px; 
}    
#events-section.homepage-regional-events > .container {        
    padding-left: 14px;        
    padding-right: 14px;    
}    
#events-section .homepage-regional-events-slider .swiper-button-next,    
#events-section .homepage-regional-events-slider .swiper-button-prev {        
    width: 32px !important;        
    height: 32px !important;        
    margin-top: -16px !important;    
}}

/* =========================================================
   VOYARA EVENTO - FINAL HEADER + SECTION HEADING FIX
   ========================================================= */

/* ---------------- HEADER: LOGO LEFT + TITLE RIGHT ---------------- */
.site-header .site-branding,
.site-header .site-title {
    width: auto !important;
    max-width: none !important;
}

.site-header .site-title {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-header .site-title > a.brand-logo,
.site-header .site-title a.brand-logo {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;

    width: max-content !important;
    max-width: none !important;
    min-width: max-content !important;

    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;

    text-decoration: none !important;
    white-space: nowrap !important;
}

.site-header .site-title a.brand-logo img {
    display: block !important;
    flex: 0 0 auto !important;

    width: 60px !important;
    max-width: 60px !important;
    height: auto !important;
    max-height: 64px !important;

    margin: 0 !important;
    padding: 0 !important;
}

.site-header .site-title a.brand-logo span {
    display: inline-block !important;
    flex: 0 0 auto !important;

    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;

    color: #fff !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
}

@media screen and (min-width: 992px) {
    .site-header .site-branding {
        margin-left: 20px !important;
        min-width: 235px !important;
    }
}

@media screen and (max-width: 991px) {
    .site-header .site-branding {
        min-width: 0 !important;
    }

    .site-header .site-title a.brand-logo {
        gap: 9px !important;
    }

    .site-header .site-title a.brand-logo img {
        width: 50px !important;
        max-width: 50px !important;
        max-height: 52px !important;
    }

    .site-header .site-title a.brand-logo span {
        font-size: 18px !important;
    }
}

@media screen and (max-width: 767px) {
    .site-header .site-title a.brand-logo {
        gap: 8px !important;
    }

    .site-header .site-title a.brand-logo img {
        width: 45px !important;
        max-width: 45px !important;
        max-height: 48px !important;
    }

    .site-header .site-title a.brand-logo span {
        font-size: 16px !important;
        letter-spacing: 0.7px !important;
    }
}

@media screen and (max-width: 480px) {
    .site-header .site-title a.brand-logo {
        gap: 6px !important;
    }

    .site-header .site-title a.brand-logo img {
        width: 40px !important;
        max-width: 40px !important;
        max-height: 42px !important;
    }

    .site-header .site-title a.brand-logo span {
        font-size: 14px !important;
        letter-spacing: 0.4px !important;
    }
}


/* ---------------- SECTION HEADING: FULL LOGO ----------------
   Use a pseudo-element instead of the h2 background itself.
   This prevents logo-2.png from being clipped by the text line.
   --------------------------------------------------------- */
.next-events-section-header .entry-title,
.events-partners .entry-title {
    position: relative !important;
    isolation: isolate !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    min-height: 280px !important;
    margin: 0 !important;
    padding: 40px 20px !important;

    font-size: 60px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    text-align: center !important;

    color: #232127 !important;

    /* Disable the old clipped background */
    background: none !important;
    overflow: visible !important;
}

.next-events-section-header .entry-title::before,
.events-partners .entry-title::before {
    content: "" !important;

    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    z-index: -1 !important;

    width: 250px !important;
    height: 250px !important;

    transform: translate(-50%, -50%) !important;

    background-image: url("images/logo-3.png") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: contain !important;

    pointer-events: none !important;
}

.next-events-section-header .entry-title {
    z-index: 1 !important;
}

.next-events-section-header p {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 20px auto 0;
    padding: 0 20px;
    font-size: 18px;
    line-height: 1.7;
    color: #777;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .next-events-section-header .entry-title,
    .events-partners .entry-title {
        min-height: 240px !important;
        padding: 35px 20px !important;
        font-size: 48px !important;
    }

    .next-events-section-header .entry-title::before,
    .events-partners .entry-title::before {
        width: 215px !important;
        height: 215px !important;
    }

    .next-events-section-header p {
        font-size: 17px;
    }
}

@media screen and (max-width: 767px) {
    .next-events-section-header .entry-title,
    .events-partners .entry-title {
        min-height: 210px !important;
        padding: 30px 15px !important;
        font-size: 36px !important;
        line-height: 1.2 !important;
    }

    .next-events-section-header .entry-title::before,
    .events-partners .entry-title::before {
        width: 185px !important;
        height: 185px !important;
    }

    .next-events-section-header p {
        margin-top: 20px;
        padding: 0 10px;
        font-size: 16px;
        line-height: 1.7;
    }
}

@media screen and (max-width: 480px) {
    .next-events-section-header .entry-title,
    .events-partners .entry-title {
        min-height: 175px !important;
        padding: 25px 10px !important;
        font-size: 29px !important;
    }

    .next-events-section-header .entry-title::before,
    .events-partners .entry-title::before {
        width: 150px !important;
        height: 150px !important;
    }

    .next-events-section-header p {
        padding: 0 8px;
        font-size: 15px;
        line-height: 1.65;
    }
}
