﻿html,
body {
    max-width: 100%;
    overflow-x: hidden !important;
}

/* =========================
   HEADER BASE
========================= */

.cma-header {
    background: #fff;
    padding: 15px 20px;
    position: relative;
    z-index: 9999;
}

/* MAIN HEADER LAYOUT */
.header-container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 32px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
}

/* =========================
   LOGO
========================= */

.header-logo {
    position: static !important;
    left: auto !important;
    top: auto !important;
    flex: none;
    min-width: 0;
}

.header-brand-wrapper,
.header__brand {
    display: flex;
    align-items: center;
}

.header-logo img,
.header__logo {
    width: auto !important;
    height: 47px;
    max-width: 300px;
    display: block;
}

/* =========================
   NAVIGATION
========================= */

.header-nav {
    min-width: 0;
    overflow: visible;
}

.header__collapse {
    width: 100%;
}

.header__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
    overflow: visible;
}

    .header__list li {
        list-style: none;
        position: relative;
    }

    .header__list .nav-link {
        font-family: 'Inter Tight', sans-serif;
        font-size: 13.5px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0;
        color: #DC2126;
        text-decoration: none;
        text-transform: uppercase;
        padding: 0;
        transition: 0.2s ease;
    }

        .header__list .nav-link:hover {
            opacity: 0.7;
        }

/* =========================
   DROPDOWN
========================= */

.header__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #f8f8f8;
    border: 1px solid #eee;
    padding: 10px 0;
    z-index: 99999;
    list-style: none;
}

.header__dropdown {
    display: none;
}

.nav-item.open > .header__dropdown {
    display: block;
}

.header__dropdown-item {
    position: relative;
    display: block;
    padding: 14px 18px 14px 28px;
    color: #000;
    text-decoration: none !important;
    font-size: 13px;
}

    .header__dropdown-item:before {
        position: absolute;
        content: "";
        width: 3px;
        height: 18px;
        background: #fe000c;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        display: none;
    }

    .header__dropdown-item:hover:before,
    .header__dropdown-item.active:before {
        display: block;
    }

    .header__dropdown-item:hover {
        background: #f5f5f5;
    }

/* =========================
   ACTIONS
========================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 0;
    font-family: 'Inter Tight', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #DC2126;
    text-transform: uppercase;
}

.header__link--portal {
    color: #DC2126;
    text-decoration: none;
    text-transform: uppercase;
}

    .header__link--portal:hover {
        color: #000 !important;
        text-decoration: none;
    }

/* =========================
   CART COUNTER
========================= */

#shoppingCart {
    position: relative !important;
    display: none !important;
    align-items: center;
}

#shoppingCart .header__counter {
    position: absolute !important;
    top: -10px !important;
    right: -12px !important;
    width: 15px;
    height: 15px;
    line-height: 15px;
    border-radius: 50%;
    font-size: 10px;
    text-align: center;
    background: #fe000c;
    color: #fff;
}

/* =========================
   SEARCH
========================= */

div#searchForm {
    padding-right: 0 !important;
}

.header__search-wrapper {
    width: 220px;
}

.header__form {
    position: relative;
    width: 100%;
}

.searchbar {
    margin-top: 20px !important;
    width: 100%;
    height: 38px;
    border: 1px solid #DC2126 !important;
    border-radius: 25px;
    padding: 8px 42px 8px 35px;
    font-size: 13px;
    color: #000;
}

/* LEFT SEARCH ICON */
.searchbar__placeholder {
    position: absolute !important;
    left: 13px;
    top: 45%;
    transform: translateY(-50%);
    padding: 0 !important;
    color: #DC2126;
    pointer-events: none;
    line-height: 1;
}

/* RIGHT ARROW BUTTON */
.searchbar__btn {
    position: absolute !important;
    right: -51px !important;
    left: auto !important;
    top: 43% !important;
    transform: translateY(-50%);
    color: #DC2126;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    line-height: 1;
    box-shadow: none !important;
}

    .searchbar__btn:hover,
    .searchbar__btn:focus {
        color: #000;
        background: none !important;
        box-shadow: none !important;
    }

/* =========================
   HEADER RESPONSIVE
========================= */

@media (max-width: 1599px) {
    .header-container {
        column-gap: 24px;
    }

    .header-logo img,
    .header__logo {
        height: 40px;
        max-width: 275px;
    }

    .header__list {
        gap: 14px;
    }

        .header__list .nav-link,
        .header-actions {
            font-size: 12px;
        }

    .header__search-wrapper {
        width: 200px;
    }
}

@media (max-width: 1399px) {
    .header-container {
        column-gap: 18px;
    }

    .header-logo img,
    .header__logo {
        height: 36px;
        max-width: 240px;
    }

    .header__list {
        gap: 10px;
    }

        .header__list .nav-link,
        .header-actions {
            font-size: 11px;
        }

    .header-actions {
        gap: 16px;
    }

    .header__search-wrapper {
        width: 180px;
    }
}

@media (max-width: 1199px) {
    .header-container {
        grid-template-columns: auto 1fr;
        row-gap: 18px;
    }

    .header-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .header-logo img,
    .header__logo {
        height: 34px;
        max-width: 220px;
    }

    .header__list {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

@media (max-width: 992px) {
    .header-container {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .header-nav {
        width: 100%;
    }

    .header__list {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .header__search-wrapper {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .cma-header {
        padding: 8px 30px;
    }

    .header-logo img,
    .header__logo {
        height: 30px;
        max-width: 200px;
    }

    .header__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .header-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .header__search-wrapper {
        width: 100%;
    }

    .search-container {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .header-logo img,
    .header__logo {
        height: 26px;
        max-width: 170px;
    }

    .header-actions {
        font-size: 12px;
    }

    .searchbar {
        font-size: 12px;
    }
}

/* =========================
   EVENTS / CARDS
========================= */

@media (min-width: 768px) {
    .box.box-type-2 .inner .box-body {
        border-top: 1px solid #99958e !important;
    }
}

.box {
    background: #dbd4cc !important;
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.event-time {
    font-size: 13px;
    color: #333;
}

.date {
    text-align: right;
}

.day {
    font-size: 48px;
    font-weight: 500;
    color: #DC2126;
    line-height: 1;
    display: block;
}

.event-date .month,
.month {
    font-size: 14px;
    color: #000;
}

.box.box-type-2 .inner .box-header .date .day {
    font-size: 90px;
    line-height: 1;
}

.box.box-type-2 .inner .box-header .date {
    margin-right: 0 !important;
    padding-right: 0 !important;
    border-right: 0 !important;
    font-weight: 500 !important;
}

.box.box-type-2 .inner .box-header .event-location,
.box.box-type-2 .inner .box-header .event-name {
    font-size: 17px !important;
    font-weight: 500 !important;
    font-family: 'Inter Tight', sans-serif !important;
    letter-spacing: -0.02em !important;
}

.box.box-type-2 .inner .box-header .date .month {
    color: #000 !important;
    font-family: 'Inter Tight', sans-serif !important;
    letter-spacing: -0.02em !important;
    text-transform: capitalize;
    text-align: justify;
}

.zone-events .slider .fs-carousel-enabled .fs-carousel-canister .item:nth-child(even) .box {
    background: #dbd4cc !important;
}

    .zone-events .slider .fs-carousel-enabled .fs-carousel-canister .item:nth-child(even) .box .event-location,
    .zone-events .slider .fs-carousel-enabled .fs-carousel-canister .item:nth-child(even) .box a,
    .zone-events .slider .fs-carousel-enabled .fs-carousel-canister .item:nth-child(even) .box h2,
    .zone-events .slider .fs-carousel-enabled .fs-carousel-canister .item:nth-child(even) .box p,
    .zone-events .slider .fs-carousel-enabled .fs-carousel-canister .item:nth-child(even) .box .date {
        color: #000 !important;
    }

/* =========================
   CARD / CTA /Template 1
========================= */
.zone + .zone {
    margin-top: 20px !important;
}
.cma-card-wrapper {
    width: 100%;
    /*padding: 24px;*/
}

.cma-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
}

    .cma-card .row {
        margin: 0;
    }

.cma-card-image-col,
.cma-card-content-col {
    padding: 0 !important;
}

.cma-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cma-card-content-col {
    background-color: #dbd4cc;
    display: flex;
}

.cma-card-body {
    padding: 70px 80px !important;
    width: 100%;
}

.cma-card-logo {
    width: 292px;
    height: 62px;
    margin-bottom: 45px;
}

.cma-card-title {
    letter-spacing: -5%;
    font-size: 80px !important;
    line-height: 84%;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 32px;
    text-align: left !important;
}

.cma-card-text {
    letter-spacing: -2%;
    font-family: 'Lora', serif;
    font-size: 28px;
    line-height: 140%;
    color: #000;
    margin-bottom: 42px;
    max-width: 620px;
}

.cma-card-btn {
    line-height: 160% !important;
    letter-spacing: -1%;
    background-color: #DC2126 !important;
    color: #fff !important;
    border-radius: 30px;
    padding: 12px 32px;
    font-size: 20px;
    text-transform: uppercase;
}
@media (max-width: 1199px) {
    .cma-card-image {
        height: 480px;
    }

    .cma-card-body {
        padding: 48px 56px !important;
    }

    .cma-card-title {
        font-size: 42px;
    }

    .cma-card-text {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .cma-card-image {
        height: auto;
    }

    .cma-card-body {
        padding: 32px 24px !important;
    }

    .cma-card-title {
        font-size: 34px;
    }

    .cma-card-logo {
        width: 326px;
        margin-bottom: 28px;
    }
}
/*.card-body {
    padding: 100px !important;
}*/
/* =========================
   CARD / CTA /Template 2
========================= */
.cma-affiliate-card-wrapper {
    width: 100%;
    /*padding: 24px;*/
}

.cma-affiliate-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
}

.cma-affiliate-card .row {
    margin: 0;
    align-items: stretch;
}

.cma-affiliate-content-col {
    background: #DC2126;
    display: flex;
}

.cma-affiliate-body {
    padding: 45px 46px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.cma-affiliate-title {
    font-family: 'SwissPosters';
    font-size: 80px !important;
    line-height: 84% !important;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 60px;
    letter-spacing: 3% !important
}

.cma-affiliate-text {
    font-family: 'Lora', serif;
    font-size: clamp(18px, 1.45vw, 24px);
    line-height: 1.25;
    color: #fff;
    max-width: 620px;
    margin-bottom: 70px;
}

.cma-affiliate-text ul {
    margin-top: 28px;
    padding-left: 24px;
}

.cma-affiliate-text li {
    margin-bottom: 4px;
}

.cma-affiliate-btn {
    font-family: 'Inter' !important;
    line-height: 160% !important;
    letter-spacing: -1%;
    align-self: flex-start;
    margin-top: auto;
    background: #fff !important;
    color: #DC2126 !important;
    border-radius: 30px;
    padding: 12px 32px;
    font-size: 20px;
    text-transform: uppercase;
}

.cma-affiliate-image-col {
    padding: 0 !important;
}

.cma-affiliate-image {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1199px) {
    .cma-affiliate-title {
        font-size: 48px;
        margin-bottom: 42px;
    }

    .cma-affiliate-body {
        padding: 40px 34px;
    }

    .cma-affiliate-text {
        font-size: 19px;
        margin-bottom: 48px;
    }

    .cma-affiliate-image {
        min-height: 560px;
    }
}

@media (max-width: 767px) {
    .cma-affiliate-card-wrapper {
        padding: 0px;
    }

    .cma-affiliate-image {
        height: auto;
        min-height: 0;
    }

    .cma-affiliate-body {
        padding: 32px 24px;
    }

    .cma-affiliate-title {
        font-size: 38px;
        margin-bottom: 28px;
    }

    .cma-affiliate-text {
        font-size: 18px;
        line-height: 1.35;
        margin-bottom: 32px;
    }

    .cma-affiliate-btn {
        margin-top: 0;
    }
}

/*
template 3*/

.cma-aspiring-card-wrapper {
    width: 100%;
    padding: 24px;
}

.cma-aspiring-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
}

    .cma-aspiring-card .row {
        margin: 0;
        align-items: stretch;
    }

.cma-aspiring-content-col {
    background: #FFEB8C;
    display: flex;
}

.cma-aspiring-body {
    padding: 45px 46px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.cma-aspiring-title {
    font-family: 'SwissPosters';
    font-size: clamp(42px, 4vw, 70px);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 60px;
    font-size: 9rem;
}

.cma-aspiring-text {
    font-family: 'Lora', serif;
    font-size: clamp(18px, 1.45vw, 24px);
    line-height: 1.25;
    color: #000;
    max-width: 620px;
    margin-bottom: 70px;
}

    .cma-aspiring-text ul {
        margin-top: 28px;
        padding-left: 24px;
    }

    .cma-aspiring-text li {
        margin-bottom: 4px;
    }

.cma-aspiring-btn {
    align-self: flex-start;
    margin-top: auto;
    background: #DC2126 !important;
    color: #fff !important;
    border-radius: 30px;
    padding: 12px 32px;
    font-size: 16px;
    text-transform: uppercase;
}

.cma-aspiring-image-col {
    padding: 0 !important;
}

.cma-aspiring-image {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1199px) {
    .cma-aspiring-title {
        font-size: 48px;
        margin-bottom: 42px;
    }

    .cma-aspiring-body {
        padding: 40px 34px;
    }

    .cma-aspiring-text {
        font-size: 19px;
        margin-bottom: 48px;
    }

    .cma-aspiring-image {
        min-height: 560px;
    }
}

@media (max-width: 767px) {
    .cma-aspiring-card-wrapper {
        padding: 12px;
    }

    .cma-aspiring-image {
        height: auto;
        min-height: 0;
    }

    .cma-aspiring-body {
        padding: 32px 24px;
    }

    .cma-affiliate-title {
        font-size: 38px;
        margin-bottom: 28px;
    }

    .cma-aspiring-text {
        font-size: 18px;
        line-height: 1.35;
        margin-bottom: 32px;
    }

    .cma-aspiring-btn {
        margin-top: 0;
    }
}
.custmBtn {
    font-family: 'Inter';
    font-weight: 400;
    background-color: #DC2126 !important;
    border-radius: 30px;
}

.custmBtn2 {
    font-weight: 500;
    background-color: #fff !important;
    border-radius: 30px;
}

a.btn {
    color: #fff;
}

a.btn.btn-lg.custmBtn2 {
    color: #DC2126;
}

p.card-text {
    margin-top: 40px;
    font-family: 'Lora', serif !important;
    font-size: 20px;
}

.card-text ul,
ul {
    margin-bottom: 0;
}



/* =========================
   TYPOGRAPHY
========================= */

.h7 a {
    margin-top: 20px;
    font-family: 'Lora', serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #000;
    text-decoration: none;
    display: block;
}

.h7 a:hover {
    color: #DC2126;
}

.box-body p {
    font-family: "Lora", sans-serif;
}

.box-body .p {
    margin-top: 20px;
    font-family: 'Lora', serif !important;
    font-size: 20px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #000;
    text-decoration: none;
    display: block;
}

h1.contentHome {
    font-size: 96px !important;
    text-transform: uppercase;
    color: #DC2126;
}

/* =========================
   CAROUSEL
========================= */

.slider {
    position: relative;
}

/* CONTROLS CONTAINER */
.slider .fs-carousel-controls {
    display: flex !important;
    align-items: center;
    gap: 18px; /* spacing between arrows */
    position: absolute;
    top: -42px; /* adjust to align with heading */
    right: 0;
    z-index: 5;
}

/* BUTTON RESET */
.slider .fs-carousel-controls .fs-carousel-control {
    width: auto !important;
    height: auto !important;
    border: none !important;
    background: transparent !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    font-size: 0 !important;
    cursor: pointer;
}

.slider .fs-carousel-controls .fs-carousel-control_previous:before,
.slider .fs-carousel-controls .fs-carousel-control_next:before {
    content: "";
    display: inline-block;
    width: 18px; /* 👈 CONTROL LENGTH HERE */
    height: 2px;
    background: #000;
    position: relative;
}

/* LEFT arrow */
.slider .fs-carousel-controls .fs-carousel-control_previous:after {
    content: "";
    position: absolute;
    left: -1px;
    top: 74%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 10px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
}

.slider .fs-carousel-controls .fs-carousel-control_next:after {
    content: "";
    position: absolute;
    right: -8px;
    top: -14%;
    transform: translateY(-48%) rotate(44deg);
    width: 12px;
    height: 11px;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
}

/* REMOVE HOVER BACKGROUND */
.slider .fs-carousel-controls .fs-carousel-control:hover,
.slider .fs-carousel-controls .fs-carousel-control:focus {
    background: transparent !important;
    box-shadow: none !important;
}
@media (min-width: 768px) {
    .slider .fs-carousel-controls .fs-carousel-control_previous:before {
        margin-left: -6px;
        margin-top: 0px;
    }
}
@media (min-width: 768px) {
    .slider .fs-carousel-controls .fs-carousel-control_next:before {
        margin-left: -3px;
        margin-top: -1px;
    }
}

/* =========================
   GENERAL FIXES
========================= */

#mainContent {
    padding-top: 0 !important;
}

.row {
    max-width: 100%;
    /*overflow-x: hidden;*/
}

#CookieNotificationBottom_TF97018FC024_Col00,
.foot-bottom {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

.fa,
.fas {
    font-weight: 500 !important;
}

span.pills {
    border-radius: 5px !important;
}

.common-head {
    font-family: "Inter Tight", sans-serif;
    font-size: 20px !important;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0;
    display: inline-block;
}
@media (max-width: 1599px) {
    .header-container {
        grid-template-columns: 300px minmax(0, 1fr) 420px !important;
        column-gap: 18px !important;
    }

    .header-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 18px !important;
        white-space: nowrap !important;
    }

    .header-actions > .d-flex {
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
    }

    .header__search-wrapper {
        width: 210px !important;
    }

    .header__list {
        gap: 11px !important;
    }

    .header__list .nav-link,
    .header-actions {
        font-size: 12px !important;
    }
}
/* Smooth font scaling */
.header__list .nav-link,
.header-actions {
    font-size: clamp(10px, 0.75vw, 13.5px);
}
.m-5 {
    margin: 43px !important;
}

.zone-sponsors {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 24px 80px !important;
}

.zone-sponsors .member-logos,
.zone-sponsors .sponsors-member {
    width: 100%;
}

.zone-sponsors .common-head {
    font-family: "Inter Tight", sans-serif;
    font-size: 26px !important;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 14px !important;
    margin-top: 74px !important;
}

.zone-sponsors hr {
    width: 100%;
    margin: 0;
    border: 0;
    border-top: 2px solid #000;
}

.zone-sponsors .sponsors {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    list-style: none;
    padding: 0;
    margin: 90px 0 0 !important;
    width: 100%;

}

.zone-sponsors .sponsors li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zone-sponsors .sponsors a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.zone-sponsors .sponsors img {
    max-height: 95px;
    max-width: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.member-logos .sponsors-member ul li {
    max-width: 366px !important;
}
.footer-main{
    margin-top: 16rem;
}
.footer {
    background: #DC2126;
}
.footer-red {
    background: #DC2126;
    color: #fff;
    padding: 45px 30px 0;
    overflow: hidden;
}

.footer__inner {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr 1.4fr;
    gap: 70px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.footer__logo img {
    width: 80px;
    height: auto;
}

.footer__column,
.footer__right {
    color: #fff;
}

.footer__header {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 18px;
}

.footer__list,
.footer__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__item,
.footer__column a {
    font-family: "Inter Tight", sans-serif;
    color: #fff !important;
    font-size: 16px;
    line-height: 0.9;
    text-decoration: none;
}

    .footer__item:hover,
    .footer__column a:hover {
        color: #fff !important;
        text-decoration: none;
        opacity: 0.85;
    }
@media (max-width: 767px) {
    .footer-red {
        padding: 35px 24px 0;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__right {
        grid-column: auto;
    }

    .footer__big-logo {
        font-size: clamp(180px, 32vw, 560px);
        font-weight: 900;
        line-height: 0.78;
        letter-spacing: -0.06em;
        color: rgba(255,255,255,0.9);
        margin-top: 80px;
        margin-left: -10px;
        white-space: nowrap;
        position: relative;
        z-index: 1;
    }
}
.footer__social {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.footer__social img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}
.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__social {
    margin-bottom: 22px;
}

.footer__bottom-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
}

.footer__policy-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

    .footer__policy-links a,
    .footer__policy-links span {
        white-space: nowrap;
        color: #fff !important;
        text-decoration: none;
        font-size: 16px;
    }

.footer__item--lower {
    padding: 0 !important;
    margin: 0 !important;
}

.cma-awards-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #000;
    color: #c9964f;
    min-height: 650px;
    padding: 95px 24px 70px;
}

.cma-awards-hero__left,
.cma-awards-hero__right {
    border-left: 1px solid #c9964f;
    padding-left: 32px;
}

.cma-awards-hero__right {
    display: flex;
    justify-content: flex-start;
}

.cma-awards-hero__links {
    max-width: 520px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.35;
    color: #d8c9a5;
}

    .cma-awards-hero__links a {
        color: #d8c9a5;
        text-decoration: none;
    }

.cma-awards-hero__title {
    margin: 190px 0 0;
    font-family: Arial, sans-serif;
    font-size: clamp(72px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.82;
    letter-spacing: -0.06em;
    color: #c9964f;
}

.cma-awards-hero__content {
    max-width: 580px;
    padding-left: 28px;
}

    .cma-awards-hero__content p {
        margin: 0 0 32px;
        font-family: Georgia, serif;
        font-size: 21px;
        line-height: 1.25;
        color: #d8c9a5;
    }

.cma-awards-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c9964f;
    color: #000;
    border-radius: 24px;
    padding: 12px 28px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 8px;
}

.cma-awards-hero__image {
    margin-top: 190px;
    max-width: 520px;
}

    .cma-awards-hero__image img {
        width: 100%;
        height: auto;
        display: block;
    }

.awards-sponsors {
    background: #F5EEE4;
    padding: 0 43px;
}

.sponsor-row {
    border-bottom: 1px solid #8f877d;
    min-height: 145px;
    display: grid;
    align-items: center;
    padding: 28px 0;
}

    .sponsor-row:first-child {
        border-top: none;
    }

.sponsor-row--single {
    grid-template-columns: 1fr;
    justify-items: center;
}

.sponsor-row--three {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
}

.sponsor-row--labeled {
    grid-template-columns: 160px 1fr;
}

.sponsor-row--three-with-label {
    grid-template-columns: 160px repeat(3, 1fr);
}

.sponsor-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sponsor-card img {
    max-height: 230px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 8px;
}

.sponsor-card--large img {
    max-width: 260px;
    max-height: 90px;
}

.sponsor-card p {
    margin: 0;
    font-family: "Lora";
    font-size: 15px;
    line-height: 1.15;
    color: #000;
}

.sponsor-label {
    font-family: "SwissPosters", sans-serif;
    font-size: 33px;
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    color: #000;
    text-align: left;
}

@media (max-width: 767px) {
    .sponsor-row,
    .sponsor-row--three,
    .sponsor-row--labeled,
    .sponsor-row--three-with-label {
        grid-template-columns: 1fr;
        row-gap: 28px;
        justify-items: center;
    }

    .sponsor-label {
        text-align: center;
    }

    .sponsor-card img {
        max-width: 200px;
    }
}
.sponsor-row--no-border {
    border-bottom: none !important;
}

.accordion.accordion-default .card .card-header .btn-primary {
    font-weight: 400;
    font-family: 'Lora' !important;
    font-size: 22px;
}
    .accordion.accordion-default .card .card-header .btn-primary:before{
        display:none !important;
    }
.card-header .btn {
    position: relative;
    padding-right: 45px !important;
}

    .card-header .btn::after {
        content: "↓" !important;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        background: none !important;
        border: none !important;
    }

    .card-header .btn[aria-expanded="true"]::after {
        content: "↑" !important;
    }
.accordion.accordion-default .card .card-header .btn-primary {
    padding: 2rem 2rem 2rem 0.6rem !important;
}
.pd-cta-section {
    background: #e31f26;
    padding: 150px 40px 135px;
    text-align: center;
    color: #fff;
}

.pd-cta-content {
    max-width: 1320px;
    margin: 0 auto;
}

.pd-cta-content .h1 {
    margin: 0 0 55px;
    font-family: 'SwissPosters', sans-serif;
    font-size: clamp(52px, 5.8vw, 100px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    color: #fff;
}

    .pd-cta-content p {
        padding-top: 45px;
        max-width: 925px;
        margin: 0 auto;
        font-size: 25px;
        font-family: "Lora", serif;
        line-height: 1.25;
        color: #fff;
    }

.pd-cta-content a {
    color: #8e1717;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .pd-cta-section {
        padding: 80px 24px;
    }
}
#accordion1_container {
    padding: 26px !important;
}
#accordion_container {
    padding: 26px !important;
}
.cma-top-margin {
    padding-left: 40px;
    margin-top: 100px;
}

.event-filter-row {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 55px;
}

.event-filter-row > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

.event-filter-row .custom-dropdown.default {
    width: 100%;
    position: relative;
}

.event-filter-row .custom-dropdown-btn {
    display: block;
    width: 100%;
    border: 0;
    border-radius:0px;
    /*padding: 18px 34px 18px 0;*/
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background: transparent;
    color: #000;
    font-family: "Lora", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
}

.event-filter-row .custom-dropdown-btn:hover,
.event-filter-row .custom-dropdown-btn:focus {
    color: #000;
    text-decoration: none;
}

.event-filter-row .custom-dropdown-btn.dropdown-toggle::after {
    display: none !important;
}

    .event-filter-row .custom-dropdown-btn {
        position: relative;
        padding-right: 28px;
    }

        .event-filter-row .custom-dropdown-btn::before {
            content: "↓";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-52%);
            font-size: 18px;
            font-weight: 300;
            line-height: 1;
            color: #000;
            border: 0;
            width: auto;
            height: auto;
        }

.event-filter-row .custom-dropdown .dropdown-menu {
    width: 100%;
    border-radius: 0;
    border: 1px solid #000;
    margin-top: 0;
    padding: 10px 0;
    font-family: "Inter Tight", sans-serif;
}

.event-filter-row .custom-dropdown .dropdown-item {
    font-size: 15px;
    padding: 8px 16px;
}

@media (max-width: 767px) {
    .event-filter-row {
        margin-bottom: 35px;
    }

    .event-filter-row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}
.on-demand-card {
    background: #ead7ac;
    padding: 60px 48px 40px;
    /*max-width: 690px;*/
    min-height: 570px;
    display: flex;
    flex-direction: column;
}

    .on-demand-card h2 {
        margin: 0 0 48px;
        font-family: "SwissPosters", sans-serif;
        font-size: clamp(42px, 4vw, 58px);
        font-weight: 900;
        line-height: 0.95;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #000;
    }

    .on-demand-card p {
        margin: 0;
        max-width: 580px;
        font-family: "Lora", serif;
        font-size: 19px;
        line-height: 1.25;
        color: #000;
    }

.on-demand-card__btn {
    margin-top: auto;
    width: fit-content;
    background: #e31f26;
    color: #fff;
    border-radius: 999px;
    padding: 14px 24px;
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.cm-card {
    background: #e31f26;
    padding: 60px 48px 40px;
    /*max-width: 690px;*/
    min-height: 560px;
    display: flex;
    flex-direction: column;
}

    .cm-card h2 {
        margin: 0 0 48px;
        font-family: "SwissPosters", sans-serif;
        font-size: clamp(44px, 4vw, 60px);
        font-weight: 900;
        line-height: 0.92;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #fff;
    }

.cm-card p {
    margin: 0;
    max-width: 560px;
    font-family: "Lora", serif;
    font-size: 19px;
    line-height: 1.3;
    color: #fff;
}

.cm-card p a {
    color: #fff;
    text-decoration: underline;
}

.cm-card__btn {
    margin-top: auto;
    width: fit-content;
    background: #fff;
    color: #e31f26;
    border-radius: 999px;
    padding: 14px 28px;
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}
.box.box-type-2 .inner {
    background: #dbd4cc !important;
}
span.event-location.d-block {
    color: #000 !important;
}
span.date {
    color: #000 !important;
}
.topic-landing-box-list [class*='col-']:nth-child(odd) .box.event-box a {
    color: #000;
}
.topic-landing-box-list [class*='col-']:nth-child(odd) .box.event-box p, .topic-landing-box-list [class*='col-']:nth-child(odd) .box.event-box .date, .topic-landing-box-list [class*='col-']:nth-child(odd) .box.event-box .month, .topic-landing-box-list [class*='col-']:nth-child(odd) .box.event-box .event-location {
    color: #000;
}
/* ==========================================
   MOBILE HEADER / NAV FIX
========================================== */

.mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 999999;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    margin: 5px 0;
    transition: 0.3s ease;
}
.zone-events .slider .fs-carousel-enabled .fs-carousel-canister .item:nth-child(even) .box {
    -webkit-box-shadow: 0 !important;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); */
    /* -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); */
}
/* =========================
   MOBILE HEADER RESPONSIVE
   Target: hamburger left | logo center | icons right
========================= */

/* ==============================================
   MOBILE HEADER — CLEAN CONSOLIDATED VERSION
   Replace ALL previous mobile CSS with this
============================================== */

/* Default: hide hamburger on desktop */
.mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 999999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .mobile-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #000;
        margin: 4px 0;
        border-radius: 1px;
        transition: 0.3s ease;
    }

/* Default: hide close button */
.mobile-close {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 28px;
    color: #000;
    padding: 4px 8px;
    z-index: 1000000;
}

.form-inline .form-control {
    font-family: 'Inter Tight', sans-serif !important;
    width: stretch !important;
}

/* ── MOBILE BREAKPOINT ── */
@media (max-width: 991px) {
    .slider .fs-carousel-controls .fs-carousel-control_previous:after {
        content: "";
        position: absolute;
        left: -3px;
        top: -6px;
        transform: translateY(-50%) rotate(45deg);
        width: 12px;
        height: 10px;
        border-left: 2px solid #000;
        border-bottom: 2px solid #000;
    }
    .slider .fs-carousel-controls .fs-carousel-control_next:after {
        content: "";
        position: absolute;
        right: -6px;
        top: -7px;
        transform: translateY(-48%) rotate(44deg);
        width: 12px;
        height: 11px;
        border-right: 2px solid #000;
        border-top: 2px solid #000;
    }
    h1.contentHome {
        font-size: 42px !important;
        text-transform: uppercase;
        color: #DC2126;
    }

    /* Body lock when menu open */
    body.menu-open {
        overflow: hidden;
    }

    /* ── HEADER ── */
    .cma-header {
        padding: 10px 16px !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 999999 !important;
        background: #fff !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.10);
    }

    /* ── 3-COLUMN GRID: [hamburger] [logo] [icons] ── */
    .header-container {
        display: grid !important;
        grid-template-columns: 40px 1fr auto !important;
        grid-template-rows: auto !important;
        align-items: center !important;
        column-gap: 8px !important;
        row-gap: 0 !important;
        width: 100% !important;
    }

    /* ── HAMBURGER: col 1 ── */
    .mobile-toggle {
        display: flex !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    /* ── LOGO: col 2 centered ── */
    .header-logo {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: flex !important;
        /*justify-content: center !important;*/
        align-items: center !important;
    }

    .header-logo img,
    .header__logo,
    .header-brand-wrapper img,
    .header__brand img,
    .navbar-brand img {
        height: 36px !important;
        width: auto !important;
        max-width: 270px !important;
        max-height: 36px !important;
        display: block !important;
    }

    .header-brand-wrapper,
    .header__brand {
        max-width: 130px !important;
    }

    /* Hide old bootstrap toggler inside logo */
    .header-logo .navbar-toggler,
    .header-logo .header__toggler {
        display: none !important;
    }

    /* ── ACTIONS: col 3 icons only ── */
    .header-actions {
        grid-column: 3 !important;
        grid-row: 1 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 16px !important;
        padding: 0 !important;
        margin: 0 !important;
        width: auto !important;
    }

    .header-actions > .d-flex {
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
    }

    /* Hide ALL text labels in actions */
    .header-actions .d-none.d-md-inline-block,
    .header-actions [class*="d-md-inline"] {
        display: none !important;
    }

    /* Show icons */
    .header-actions i.d-md-none,
    .header-actions .fa-envelope,
    .header-actions .fa-user,
    .header-actions .fa-search,
    .header-actions .fa-shopping-cart {
        display: inline-block !important;
    }

    /* Icon size and color */
    .header-actions i {
        font-size: 17px !important;
        color: #000 !important;
    }

    /* All portal links: icon-button style */
    .header-actions a.header__link--portal {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 28px !important;
        height: 28px !important;
        color: #000 !important;
        text-decoration: none !important;
    }


    /* Show search toggle button */
    .header-actions .navbar-toggler {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 28px !important;
        height: 28px !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
    }

    /* Hide search input bar — icon toggle only */
    .header__search-wrapper {
        display: none !important;
    }

    /* Search dropdown when open */
    #searchForm.show {
        position: fixed !important;
        top: 62px !important;
        left: 0 !important;
        right: 0 !important;
        background: #fff !important;
        padding: 14px 16px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
        z-index: 999998 !important;
        display: block !important;
    }

    #searchForm.show .header__search-wrapper {
        display: block !important;
        width: 100% !important;
    }

    .header-actions div[data-sf-role="sf-logged-in-view"] i {
        display: inline-block !important;
        font-size: 17px !important;
        color: #000 !important;
    }

    /* Profile dropdown menu — hidden by default, shown on click */
    .header__dropdown--profile {
        display: none !important;
        /*position: fixed !important;*/
        top: 62px !important;
        right: 12px !important;
        left: auto !important;
        min-width: 160px !important;
        z-index: 1000000 !important;
        background: #fff !important;
        border: 1px solid #eee !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
    }

    /* Show only when Bootstrap adds .show to the menu itself */
    .header__dropdown--profile.show {
        display: block !important;
    }

    .header__dropdown--profile .header__dropdown-item {
        padding: 12px 16px !important;
        font-size: 14px !important;
        color: #000 !important;
        display: block !important;
        border-bottom: 1px solid #eee !important;
        text-transform: uppercase !important;
        font-family: 'Inter Tight', sans-serif !important;
    }

    /* floating menu */
    .header__dropdown--profile,
    .dropdown-menu.header__dropdown--profile {
        position: absolute !important;
        top: 38px !important;
        right: 0 !important;
        left: auto !important;
        width: 180px !important;
        min-width: 180px !important;
        display: none !important;
        background: #fff !important;
        border: 1px solid #e5e5e5 !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
        z-index: 999999 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* show dropdown */
    .header__dropdown--profile.show,
    .dropdown-menu.header__dropdown--profile.show {
        display: block !important;
    }

    /* menu items */
    .header__dropdown--profile .header__dropdown-item {
        display: block !important;
        width: 100% !important;
        padding: 14px 16px !important;
        border-bottom: 1px solid #eee !important;
        font-size: 14px !important;
        color: #000 !important;
        background: #fff !important;
    }

    .header__dropdown--profile .header__dropdown-item:last-child {
        border-bottom: 0 !important;
    }


    /* ── NAV PANEL (slide from left) ── */
    .header-nav {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 82% !important;
        max-width: 300px !important;
        height: 100vh !important;
        background: #fff !important;
        z-index: 999998 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1) !important;
        padding: 70px 24px 40px !important;
        box-shadow: 4px 0 24px rgba(0,0,0,0.14) !important;
    }

    .header-nav.active {
        left: 0 !important;
    }

    /* ── CLOSE BUTTON (inside nav, controlled by JS) ── */
    .mobile-close {
        position: fixed !important;
        top: 16px !important;
        left: 260px !important;
        z-index: 1000000 !important;
        font-size: 26px !important;
        color: #000 !important;
        background: transparent !important;
        border: 0 !important;
        cursor: pointer !important;
        padding: 6px 10px !important;
        line-height: 1 !important;
    }
    .searchbar__btn {
        right: 0px !important;
        left: 21rem !important;
    }
    /* ── NAV LIST ── */
    .header__list {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        width: 100% !important;
        flex-wrap: nowrap !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .header__list li {
        width: 100% !important;
        border-bottom: 1px solid #eee !important;
        list-style: none !important;
    }

    .header__list .nav-link {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 14px 0 !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #000 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.03em !important;
        text-decoration: none !important;
    }

    /* Dropdown arrow */
    .nav-item.dropdown > .nav-link .mobile-arrow::after {
        content: "›" !important;
        font-size: 22px !important;
        color: #DC2126 !important;
        display: inline-block !important;
        transition: transform 0.2s ease !important;
    }

    .nav-item.dropdown.open > .nav-link .mobile-arrow::after {
        transform: rotate(90deg) !important;
    }

    /* ── DROPDOWN accordion ── */
    .header__dropdown {
        position: static !important;
        display: none !important;
        width: 100% !important;
        background: #f8f8f8 !important;
        border: 0 !important;
        box-shadow: none !important;
        padding: 0 0 0 12px !important;
        min-width: unset !important;
    }

    .nav-item.open > .header__dropdown {
        display: block !important;
    }

    .header__dropdown-item {
        padding: 11px 8px !important;
        font-size: 13px !important;
        color: #333 !important;
        border-bottom: 1px solid #eee !important;
        display: block !important;
    }

    .header__dropdown-item::before {
        display: none !important;
    }

    /* ── OVERLAY (moved to body via JS) ── */
    .mobile-overlay {
        position: fixed !important;
        inset: 0 !important;
        background: rgba(0,0,0,0.45) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
        z-index: 999990 !important;
    }

    .mobile-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* ── EXTRA SMALL ── */
@media (max-width: 480px) {
    .header-logo img,
    .header__logo,
    .header-brand-wrapper img,
    .header__brand img,
    .navbar-brand img {
        height: 30px !important;
        max-width: 210px !important;
        max-height: 30px !important;
    }

    .header-actions {
        gap: 12px !important;
    }
}
/* ==========================================
   MOBILE SPONSORS FIX
========================================== */

@media (max-width: 767px) {

    .zone-sponsors {
        padding: 0 16px 50px !important;
    }

    .zone-sponsors .sponsors {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 24px !important;
        margin-top: 40px !important;
        align-items: center !important;
        justify-items: center !important;
    }

    .zone-sponsors .sponsors li {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .zone-sponsors .sponsors img {
        width: auto !important;
        max-width: 140px !important;
        max-height: 60px !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .zone-sponsors .common-head {
        font-size: 18px !important;
        margin-top: 40px !important;
    }
}
.heading__larger {
    font-family: "SwissPosters", sans-serif !important;
    font-size: 62px !important;
    line-height: 0.88 !important;
    text-transform: uppercase !important;
    color: #000 !important;
    margin-bottom: 28px !important;
    margin-top: 0 !important;
}

/* =========================================
   EVENTS CAROUSEL LAYOUT
========================================= */

.fs-carousel-canister {
    gap: 34px;
    width: 100% !important;
    align-items: stretch;
    padding: 0;
}

/* 3 columns */
.fs-carousel-item.item {
    flex: 1 1 0;
    width: calc((100% - 56px) / 3) !important;
    max-width: calc((100% - 56px) / 3);
    min-width: calc((100% - 56px) / 3);
    margin: 0 !important;
    display: flex;
    align-self: stretch;
    height: auto !important;
}

/* Remove inline widths */
.fs-carousel-item {
    width: auto !important;
}

/* =========================================
   EVENT CARD
========================================= */

.event-box {
    width: 100%;
    background: #d8d2cb;
    display: flex;
    flex-direction: column;
    height: 100% !important;
    min-height: unset !important;
}

    /* Override injected inline height */
    .event-box[style] {
        height: 100% !important;
    }

    /* =========================================
   IMAGE
========================================= */

    .event-box .thumb-img img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    /* =========================================
   INNER CONTENT
========================================= */

    .event-box .inner {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        height: 100%;
    }

    .event-box .box-body {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        padding-bottom: 40px;
    }

    /* =========================================
   TYPOGRAPHY
========================================= */

    /* Equal title area */
    .event-box h3 {
        min-height: 140px;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    /* Description alignment */
    .event-box p {
        margin-bottom: 0;
        line-height: 1.6;
    }

/* =========================================
   RESPONSIVE
========================================= */

/* Tablet */
@media (max-width: 991px) {

    .fs-carousel-canister {
        flex-wrap: wrap;
    }

    .fs-carousel-item.item {
        width: calc((100% - 28px) / 2) !important;
        max-width: calc((100% - 28px) / 2);
        min-width: calc((100% - 28px) / 2);
    }
}

/* Mobile */
@media (max-width: 767px) {

    .fs-carousel-item.item {
        width: 100% !important;
        max-width: 100%;
        min-width: 100%;
    }

    .event-box .box-header,
    .event-box .box-body {
        padding: 20px;
    }

    .event-box .thumb-img img {
        height: 180px;
    }

    .event-box h3 {
        min-height: auto;
    }
}
/* =========================================
   PERSPECTIVES CAROUSEL FIX
========================================= */

.box-type-3 {
    width: 100%;
    background: #d8d2cb;
    display: flex;
    flex-direction: column;
    height: 100% !important;
}

/* Remove injected heights */
.box-type-3[style] {
    height: auto !important;
}

.box-type-3 .inner {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.box-type-3 .box-body {
    flex-grow: 1;
}

/* Equal image sizing */
.box-type-3 .thumb-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Equal title area */
.box-type-3 h3 {
    min-height: 110px;
    line-height: 1.15;
}

/* Footer alignment */
.box-type-3 .box-footer {
    margin-top: auto;
}

