/* ============================================================
   NEXCGT 2027
   HOMEPAGE
   IMAGE-MATCHED PREMIUM CONFERENCE DESIGN
============================================================ */


/* ============================================================
   ROOT
============================================================ */

:root {

    --navy: #111b52;
    --navy-dark: #0b1544;

    --blue: #293bb8;
    --blue-dark: #202d9b;

    --purple: #4730c5;
    --purple-dark: #3524a8;

    --gold: #dfad3e;
    --gold-light: #edca78;

    --white: #ffffff;
    --paper: #fbfcff;
    --soft: #f5f7fd;

    --text: #142052;
    --text-soft: #61709d;
    --muted: #8791af;

    --border: #e2e6f2;
    --border-soft: #edf0f8;

    --shadow:
        0 18px 45px rgba(25, 38, 95, .10);

    --shadow-lg:
        0 25px 65px rgba(20, 32, 85, .16);

    --container: 1380px;

    --serif:
        "Cormorant Garamond",
        "Cormorant",
        Georgia,
        serif;

    --sans:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    --mono:
        "Space Mono",
        "Courier New",
        monospace;

    --ease:
        cubic-bezier(.16, 1, .3, 1);
}


/* ============================================================
   RESET
============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    background: var(--paper);

    color: var(--text);

    font-family: var(--sans);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
}


img,
video {
    display: block;

    max-width: 100%;
}


a {
    color: inherit;

    text-decoration: none;
}


button {
    font: inherit;

    cursor: pointer;
}


::selection {
    color: #fff;

    background: var(--purple);
}


/* ============================================================
   COMMON CONTAINER
============================================================ */

.ax-section-container {

    width:
        min(
            calc(100% - 70px),
            var(--container)
        );

    margin:
        0 auto;
}


/* ============================================================
   HEADER
============================================================ */

.site-header {

    position: sticky;

    top: 0;

    z-index: 9999;

    width: 100%;

    height: 60px;

    background:
        rgba(255,255,255,.98);

    border-bottom:
        1px solid #e8ebf4;

    box-shadow:
        0 3px 18px rgba(20,35,85,.045);

    backdrop-filter:
        blur(12px);
}


.header-inner {

    width:
        min(
            calc(100% - 45px),
            1380px
        );

    height: 60px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* ============================================================
   LOGO
============================================================ */

.brand {

    display: flex;

    align-items: center;

    flex-shrink: 0;

    height: 60px;
}


.brand img {

    display: block;

    width: 165px;

    height: auto;

    max-height: 52px;

    object-fit: contain;
}


/* ============================================================
   NAVIGATION
============================================================ */

.primary-nav {

    display: flex;

    align-items: center;

    gap: 2px;
}


.primary-nav > a,
.nav-dropdown-toggle {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    height: 60px;

    padding:
        0 10px;

    color: var(--navy);

    font-family: var(--sans);

    font-size: 15px;

    font-weight: 700;

    letter-spacing: .015em;

    text-transform: uppercase;

    transition:
        color .25s ease;
}


.primary-nav > a:hover,
.nav-dropdown-toggle:hover {

    color: var(--purple);
}


.primary-nav > a.is-active {

    color: var(--purple);
}


.primary-nav > a.is-active::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 14px;

    width: 24px;

    height: 2px;

    transform:
        translateX(-50%);

    background:
        var(--purple);
}


/* ============================================================
   DROPDOWN
============================================================ */

.nav-dropdown {

    position: relative;
}


.nav-dropdown-toggle {

    border: 0;

    background: transparent;

    cursor: pointer;
}


.dropdown-arrow {

    font-size: 8px;

    transition:
        transform .25s ease;
}


.nav-dropdown:hover
.dropdown-arrow {

    transform:
        rotate(180deg);
}


.nav-dropdown-menu {

    position: absolute;

    top: 58px;

    left: 0;

    display: none;

    min-width: 190px;

    padding: 7px;

    background:
        rgba(255,255,255,.99);

    border:
        1px solid var(--border);

    border-radius: 7px;

    box-shadow:
        0 15px 35px rgba(20,35,85,.12);
}


.nav-dropdown:hover
.nav-dropdown-menu {

    display: block;
}


.nav-dropdown-menu a {

    display: block;

    padding:
        10px 12px;

    color: var(--navy);

    font-size: 13px;

    font-weight: 600;

    border-radius: 4px;
}


.nav-dropdown-menu a:hover {

    color: var(--purple);

    background:
        #f5f4ff;
}


/* ============================================================
   REGISTER BUTTON
============================================================ */

.primary-nav > a.nav-cta {

    height: 32px;

    margin-left: 9px;

    padding:
        0 17px;

    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            #2c39b7
        );

    border-radius: 5px;

    box-shadow:
        0 8px 18px rgba(55,45,180,.18);
}


.primary-nav > a.nav-cta:hover {

    color: #fff !important;

    transform:
        translateY(-1px);
}


.primary-nav > a.nav-cta::after {

    display: none;
}


/* ============================================================
   MOBILE NAV TOGGLE
============================================================ */

.nav-toggle {

    display: none;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 36px;

    padding: 0;

    color: var(--navy);

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: 5px;

    font-size: 9px;

    text-transform: uppercase;
}


/* ============================================================
   ADVOPTIX HERO
============================================================ */

.ax-hero {

    position: relative;

    width: 100%;

    min-height: 330px;
    max-height: 350px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #fafaff 48%,
            #f3f4ff 100%
        );

    isolation: isolate;
}


/* ============================================================
   HERO CONTAINER
============================================================ */

.ax-hero-container {

    position: relative;

    z-index: 5;

    width: min(1380px, calc(100% - 90px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        330px
        1px
        minmax(0, 1fr);

    align-items: center;

    column-gap: 48px;

    min-height: 455px;
}


/* ============================================================
   LEFT LOGO AREA
============================================================ */

.ax-hero-logo-area {

    height: 300px;

    display: flex;

    align-items: center;

    justify-content: end;

    padding: 10px;
}


.ax-hero-logo {

    display: block;

    width: auto;

    max-width: 270px;

    max-height: 270px;

    object-fit: contain;
}


/* ============================================================
   VERTICAL DIVIDER
============================================================ */

.ax-hero-divider {

    width: 1px;

    height: 300px;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(74, 66, 205, .18) 12%,
            rgba(74, 66, 205, .45) 50%,
            rgba(74, 66, 205, .18) 88%,
            transparent 100%
        );

    position: relative;
}


/* Small light point in divider */

.ax-hero-divider::before {

    content: "";

    position: absolute;

    top: 50%;

    left: 50%;

    width: 5px;

    height: 5px;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background: #dcae3b;

    box-shadow:
        0 0 0 5px rgba(220,174,59,.08),
        0 0 16px rgba(220,174,59,.25);
}


/* ============================================================
   HERO CONTENT
============================================================ */

.ax-hero-content {

    min-width: 0;

    padding:
        38px 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;
}


/* ============================================================
   CONFERENCE LABEL
============================================================ */

.ax-hero-label {

    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 13px;

    margin-bottom: 12px;

    color: #2738b9;

    font-family:
        "Space Mono",
        monospace;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .27em;

    line-height: 1;

    text-transform: uppercase;
}


.ax-hero-label-line {

    display: block;

    width: 28px;

    height: 1px;

    background: #dbaa35;

    flex: 0 0 auto;
}


/* ============================================================
   MAIN TITLE
============================================================ */

.ax-hero-title {

    margin: 0;

    color: #101d59;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(
        48px,
        4.6vw,
        55px
    );

    font-weight: 500;

    letter-spacing: -.045em;

    line-height: .98;

    white-space: nowrap;
}


/* ============================================================
   TAGLINE
============================================================ */

.ax-hero-tagline {

    margin:
        20px 0 22px;

    color: #102461;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 20px;

    font-weight: 600;

    line-height: 1.4;
}


.ax-hero-tagline span {

    color: #dbaa35;
}


/* ============================================================
   META INFORMATION
============================================================ */

.ax-hero-meta {

    display: flex;

    align-items: center;

    flex-wrap: nowrap;

    gap: 18px;

    margin-bottom: 26px;

    color: #102461;

    font-size: 20px;

    font-weight: 600;
}


.ax-hero-meta-item {

    display: flex;

    align-items: center;

    gap: 10px;

    white-space: nowrap;
}


/* ============================================================
   META ICON
============================================================ */

.ax-meta-icon {

    width: 31px;

    height: 31px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(69, 73, 221, .22);

    border-radius: 50%;

    color: #4036c7;

    background:
        rgba(255,255,255,.65);

    font-size: 11px;

    box-shadow:
        0 4px 15px rgba(49, 55, 168, .05);
}


/* ============================================================
   META SEPARATOR
============================================================ */

.ax-meta-separator {

    width: 1px;

    height: 27px;

    background:
        rgba(67, 72, 186, .17);
}


/* ============================================================
   ACTION BUTTONS
============================================================ */

.ax-hero-actions {

    display: flex;

    align-items: center;

    gap: 9px;

    flex-wrap: wrap;
}


/* ============================================================
   BUTTON BASE
============================================================ */

.ax-hero-btn {

    min-width: 175px;

    height: 45px;

    padding:
        0 15px;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 22px;

    border-radius: 5px;

    text-decoration: none;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .01em;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        border-color .25s ease;
}


/* ============================================================
   PRIMARY BUTTON
============================================================ */

.ax-hero-btn-primary {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            #3024b5
        );

    border:
        1px solid #4435c9;

    box-shadow:
        0 12px 25px
        rgba(58, 48, 190, .20);
}


.ax-hero-btn-primary:hover {

    color: #ffffff;

    transform:
        translateY(-2px);

    box-shadow:
        0 16px 30px
        rgba(58, 48, 190, .28);
}


/* ============================================================
   OUTLINE BUTTONS
============================================================ */

.ax-hero-btn-outline {

    color: #12235e;

    background:
        rgba(255,255,255,.55);

    border:
        1px solid #9da8e8;
}


.ax-hero-btn-outline:hover {

    color: #3025b7;

    background: #ffffff;

    border-color:
        #4538cc;

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(53, 51, 177, .10);
}


/* ============================================================
   BUTTON ICON
============================================================ */

.ax-hero-btn i {

    font-size: 10px;

    transition:
        transform .25s ease;
}


.ax-hero-btn:hover i {

    transform:
        translateX(4px);
}


/* ============================================================
   BACKGROUND DECORATION
============================================================ */

.ax-hero-bg {

    position: absolute;

    z-index: 1;

    pointer-events: none;

    opacity: .7;
}


/* LEFT LARGE CIRCLES */

.ax-hero-bg-left {

    width: 560px;

    height: 560px;

    left: -280px;

    top: -55px;

    border:
        1px solid rgba(76, 81, 193, .08);

    border-radius: 50%;

    box-shadow:
        0 0 0 38px rgba(76,81,193,.025),
        0 0 0 76px rgba(76,81,193,.018);
}


/* RIGHT LARGE CIRCLES */

.ax-hero-bg-right {

    width: 530px;

    height: 530px;

    right: -290px;

    bottom: -300px;

    border:
        1px solid rgba(80, 73, 213, .12);

    border-radius: 50%;

    box-shadow:
        0 0 0 22px rgba(80,73,213,.025),
        0 0 0 44px rgba(80,73,213,.018);
}


/* ============================================================
   RIGHT BOTTOM WAVE
============================================================ */

.ax-hero::after {

    content: "";

    position: absolute;

    z-index: 2;

    width: 430px;

    height: 240px;

    right: -30px;

    bottom: -170px;

    border:
        1px solid rgba(82,77,220,.15);

    border-radius: 50%;

    box-shadow:
        0 -18px 0 -1px rgba(82,77,220,.08),
        0 -36px 0 -1px rgba(82,77,220,.055),
        0 -54px 0 -1px rgba(82,77,220,.04);

    transform:
        rotate(-12deg);
}


/* ============================================================
   HANGING CARDS SECTION
============================================================ */

.ax-hanging-section {

    position: relative;

    min-height:
        420px;

    padding:
        74px 0
        95px;

    background:
        #fff;

    overflow: hidden;
}


.ax-hanging-section::before {

    content: "";

    position: absolute;

    top: -150px;

    left: 50%;

    width: 650px;

    height: 320px;

    transform:
        translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(70,65,190,.065),
            transparent 70%
        );

    pointer-events: none;
}


.ax-hanging-section::after {

    content: "";

    position: absolute;

    right: 35px;

    bottom: 40px;

    width: 95px;

    height: 95px;

    opacity: .6;

    background:
        radial-gradient(
            circle,
            rgba(77,91,205,.24) 1.5px,
            transparent 2px
        );

    background-size:
        15px 15px;

    pointer-events: none;
}


/* ============================================================
   HANGING GRID
============================================================ */

.ax-hanging-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 12px;

    align-items: start;
}


/* ============================================================
   HANGING CARD
============================================================ */

.ax-hanging-card {

    position: relative;

    min-height:
        278px;

    padding:
        57px 14px
        18px;

    text-align:
        center;

    background:
        #fff;

    border:
        1px solid #e0e5f1;

    border-radius:
        12px;

    box-shadow:
        0 14px 32px rgba(20,35,90,.07);

    transition:
        transform .4s var(--ease),
        box-shadow .35s ease;
}


.ax-hanging-card:nth-child(1) {

    margin-top:
        0;
}


.ax-hanging-card:nth-child(2) {

    margin-top:
        13px;
}


.ax-hanging-card:nth-child(3) {

    margin-top:
        25px;
}


.ax-hanging-card:nth-child(4) {

    margin-top:
        13px;
}


.ax-hanging-card:nth-child(5) {

    margin-top:
        30px;
}


.ax-hanging-card:nth-child(6) {

    margin-top:
        13px;
}


.ax-hanging-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 22px 42px rgba(20,35,90,.13);
}


/* ============================================================
   CARD HANGER
============================================================ */

.ax-hanger {

    position: absolute;

    top:
        -43px;

    left:
        50%;

    width:
        2px;

    height:
        44px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            to bottom,
            var(--gold),
            var(--gold)
        );
}


.ax-hanger::before {

    content: "";

    position: absolute;

    top:
        -4px;

    left:
        50%;

    width:
        6px;

    height:
        6px;

    transform:
        translateX(-50%);

    border-radius:
        50%;

    background:
        var(--gold);
}


.ax-hanger::after {

    content: "";

    position: absolute;

    bottom:
        -2px;

    left:
        50%;

    width:
        10px;

    height:
        10px;

    transform:
        translateX(-50%);

    border:
        2px solid var(--gold);

    border-radius:
        50%;

    background:
        #fff;
}


/* ============================================================
   CARD ICON
============================================================ */

.ax-feature-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width:
        54px;

    height:
        54px;

    margin:
        0 auto
        15px;

    color:
        #fff;

    background:
        linear-gradient(
            135deg,
            #162369,
            #4630c2
        );

    border-radius:
        50%;

    box-shadow:
        0 10px 25px rgba(56,45,182,.20);

    font-size:
        20px;

    transition:
        transform .35s var(--ease);
}


.ax-hanging-card:hover
.ax-feature-icon {

    transform:
        scale(1.08);
}


/* ============================================================
   CARD CONTENT
============================================================ */

.ax-hanging-card h3 {

    min-height:
        38px;

    margin:
        0 0
        8px;

    color:
        #0e1d58;

    font-size:
        12px;

    font-weight:
        700;

    line-height:
        1.35;
}


.ax-hanging-card p {

    min-height:
        48px;

    margin:
        0;

    color:
        #6875a0;

    font-size:
        9px;

    line-height:
        1.65;
}


.ax-hanging-card a {

    display:
        inline-block;

    margin-top:
        14px;

    color:
        #d69e27;

    font-size:
        8px;

    font-weight:
        800;

    text-decoration:
        underline;

    text-underline-offset:
        2px;
}


.ax-hanging-card a:hover {

    color:
        var(--purple);
}


/* ============================================================
   ABOUT SECTION
============================================================ */

.ax-about {

    position: relative;

    padding: 40px 0 115px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fafaff 55%,
            #f4f5ff 100%
        );
}


/* ============================================================
   BACKGROUND DECORATION
============================================================ */

/* .ax-about::before {

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -280px;
    top: -120px;

    border: 1px solid rgba(70, 72, 190, .08);

    border-radius: 50%;

    box-shadow:
        0 0 0 28px rgba(70, 72, 190, .025),
        0 0 0 56px rgba(70, 72, 190, .018);

    pointer-events: none;
} */


/* .ax-about::after {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -300px;
    bottom: -250px;

    border: 1px solid rgba(70, 72, 190, .06);

    border-radius: 50%;

    box-shadow:
        0 0 0 30px rgba(70,72,190,.018),
        0 0 0 60px rgba(70,72,190,.012);

    pointer-events: none;
} */


/* ============================================================
   CONTAINER
============================================================ */

.ax-about-container {

    position: relative;

    z-index: 2;

    width: min(1500px, calc(100% - 100px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 80px;
}


/* ============================================================
   LEFT CONTENT
============================================================ */

.ax-about-content {

    /* max-width: 540px; */

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


/* ============================================================
   SECTION LABEL
============================================================ */

.ax-about-content .ax-section-label {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #283bbd;

    font-family:
        "Space Mono",
        monospace;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .25em;

    text-transform: uppercase;
}


.ax-about-content .ax-section-label::before {

    content: "";

    width: 30px;

    height: 1px;

    background: #dbaa35;
}


/* ============================================================
   HEADING
============================================================ */

.ax-about-content h2 {

    margin: 0;

    color: #111e5b;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(
        48px,
        4.2vw,
        50px
    );

    font-weight: 500;

    line-height: .98;

    letter-spacing: -.04em;
}


/* ============================================================
   GOLD LINE
============================================================ */

.ax-about-line {

    width: 58px;

    height: 2px;

    margin:
        25px 0 24px;

    background:
        linear-gradient(
            90deg,
            #dcae3b,
            rgba(220,174,59,.2)
        );
}


/* ============================================================
   PARAGRAPHS
============================================================ */

.ax-about-content p {

    margin:
        0 0 17px;

    color: #52618f;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 16px;

    line-height: 1.85;
    text-align: justify;

    /* max-width: 510px; */
}


/* ============================================================
   BUTTON
============================================================ */

.ax-about-content .ax-btn {

    margin-top: 13px;

    min-width: 160px;

    min-height: 45px;

    padding:
        0 18px;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            #3024b5
        );

    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 12px 25px
        rgba(58,48,190,.18);

    transition:
        .25s ease;
}


.ax-about-content .ax-btn:hover {

    color: #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 17px 30px
        rgba(58,48,190,.26);
}


.ax-about-content .ax-btn span {

    font-size: 16px;

    transition:
        transform .25s ease;
}


.ax-about-content .ax-btn:hover span {

    transform:
        translateX(5px);
}


/* ============================================================
   VIDEO WRAPPER
============================================================ */

.ax-about-video-wrap {

    position: relative;

    width: 100%;

    padding:
        0 18px 18px 0;
}


/* ============================================================
   GOLD BACKDROP
============================================================ */

.ax-video-gold-backdrop {

    position: absolute;

    z-index: 1;

    right: 0;

    bottom: 0;

    width: 94%;

    height: 92%;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #e3bd60,
            #f1d38b
        );

    opacity: .85;
}


/* ============================================================
   VIDEO FRAME
============================================================ */

.ax-about-video {

    position: relative;

    z-index: 3;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 18px;

    background:
        #111a48;

    box-shadow:
        0 25px 60px
        rgba(26, 35, 91, .20);

    isolation: isolate;
}


/* ============================================================
   VIDEO
============================================================ */

.ax-about-video video {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    background:
        #111a48;
}


/* ============================================================
   VIDEO OVERLAY
============================================================ */

.ax-video-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            to bottom,
            rgba(7,14,50,.02) 35%,
            rgba(7,14,50,.18) 65%,
            rgba(7,14,50,.72) 100%
        );

    pointer-events: none;
}


/* ============================================================
   PLAY BUTTON
============================================================ */

.ax-video-play {

    position: absolute;

    z-index: 5;

    left: 50%;

    top: 50%;

    width: 82px;

    height: 82px;

    padding: 0;

    transform:
        translate(-50%, -50%);

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background:
        rgba(255,255,255,.96);

    cursor: pointer;

    box-shadow:
        0 15px 35px
        rgba(10,20,70,.25);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.ax-video-play::before {

    content: "";

    position: absolute;

    inset: -9px;

    border:
        1px solid rgba(255,255,255,.55);

    border-radius: 50%;

    animation:
        axVideoPulse 2.2s infinite;
}


.ax-video-play:hover {

    transform:
        translate(-50%, -50%)
        scale(1.08);

    box-shadow:
        0 20px 45px
        rgba(10,20,70,.32);
}


.ax-play-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #4937d1,
            #2920a7
        );

    padding-left: 3px;

    box-shadow:
        0 8px 18px
        rgba(48,37,180,.30);
}


.ax-play-icon i {

    font-size: 16px;
}


/* ============================================================
   PULSE
============================================================ */

@keyframes axVideoPulse {

    0% {

        transform: scale(.9);

        opacity: .8;
    }

    70% {

        transform: scale(1.15);

        opacity: 0;
    }

    100% {

        transform: scale(1.15);

        opacity: 0;
    }

}


/* ============================================================
   VIDEO CAPTION
============================================================ */

.ax-video-caption {

    position: absolute;

    z-index: 4;

    left: 28px;

    right: 28px;

    bottom: 23px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    color: #ffffff;
}


.ax-video-caption-small {

    display: block;

    margin-bottom: 5px;

    color: #e4c15d;

    font-family:
        "Space Mono",
        monospace;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .18em;

    text-transform: uppercase;
}


.ax-video-caption strong {

    display: block;

    font-size: 17px;

    font-weight: 600;
}


.ax-video-duration {

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        8px 12px;

    border:
        1px solid rgba(255,255,255,.28);

    border-radius: 20px;

    background:
        rgba(0,0,0,.18);

    backdrop-filter:
        blur(8px);

    font-size: 9px;
}


/* ============================================================
   DECORATIVE DOTS
============================================================ */

.ax-video-dots {

    position: absolute;

    z-index: 0;

    right: -38px;

    top: 35px;

    width: 100px;

    height: 100px;

    opacity: .45;

    background-image:
        radial-gradient(
            #5d67d8 1.4px,
            transparent 1.4px
        );

    background-size:
        13px 13px;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1100px) {

    .ax-about-container {

        width:
            min(92%, 1050px);

        grid-template-columns:
            .9fr 1.1fr;

        gap: 45px;
    }


    .ax-about-content h2 {

        font-size:
            clamp(42px, 5vw, 58px);
    }


    .ax-about-content p {

        font-size:
            13px;
    }

}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 850px) {

    .ax-about {

        padding:
            75px 0;
    }


    .ax-about-container {

        grid-template-columns:
            1fr;

        gap: 50px;
    }


    .ax-about-content {

        max-width:
            680px;
    }


    .ax-about-content h2 {

        font-size:
            55px;
    }


    .ax-about-video-wrap {

        max-width:
            760px;

        margin:
            0 auto;

        width:
            100%;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .ax-about {

        padding:
            60px 0 70px;
    }


    .ax-about-container {

        width:
            90%;

        gap:
            40px;
    }


    .ax-about-content {

        align-items:
            flex-start;
    }


    .ax-about-content h2 {

        font-size:
            43px;
    }


    .ax-about-content p {

        font-size:
            13px;

        line-height:
            1.75;
    }


    .ax-about-video-wrap {

        padding:
            0 10px 10px 0;
    }


    .ax-video-gold-backdrop {

        border-radius:
            12px;
    }


    .ax-about-video {

        border-radius:
            12px;
    }


    .ax-video-play {

        width:
            65px;

        height:
            65px;
    }


    .ax-play-icon {

        width:
            40px;

        height:
            40px;
    }


    .ax-video-caption {

        left:
            17px;

        right:
            17px;

        bottom:
            15px;
    }


    .ax-video-caption strong {

        font-size:
            13px;
    }


    .ax-video-duration {

        display:
            none;
    }


    .ax-video-dots {

        display:
            none;
    }

}


/* ============================================================
   TOPICS
============================================================ */

.ax-topics {

    position: relative;

    padding:
        92px 0
        95px;

    background:
        #f9faff;
}


.ax-centered-heading {

    text-align:
        center;
}


.ax-centered-heading
.ax-section-label {

    justify-content:
        center;
}


.ax-centered-heading h2 {

    margin:
        17px 0
        13px;

    color:
        var(--navy);

    font-family:
        var(--serif);

    font-size:
        54px;

    font-weight:
        500;

    line-height:
        1;
}


.ax-centered-heading
.ax-gold-line {

    margin:
        18px auto
        46px;
}


/* ============================================================
   TOPIC TRACK
============================================================ */

.ax-topic-track {

    display:
        grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap:
        8px;

    align-items:
        start;
}


.ax-topic {

    position:
        relative;

    text-align:
        center;
}


.ax-topic:not(:last-child)::after {

    content:
        "";

    position:
        absolute;

    top:
        30px;

    right:
        -8px;

    width:
        12px;

    height:
        1px;

    background:
        var(--gold);
}


.ax-topic:not(:last-child)::before {

    content:
        "";

    position:
        absolute;

    top:
        27px;

    right:
        -12px;

    width:
        7px;

    height:
        7px;

    border:
        1px solid var(--gold);

    border-radius:
        50%;

    background:
        #fff;
}


.ax-topic-icon {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        62px;

    height:
        62px;

    margin:
        0 auto
        15px;

    color:
        #fff;

    background:
        linear-gradient(
            135deg,
            #162369,
            #4730c3
        );

    border-radius:
        50%;

    box-shadow:
        0 10px 25px rgba(48,45,180,.16);

    font-size:
        19px;
}


.ax-topic span {

    display:
        block;

    color:
        #132154;

    font-size:
        8.5px;

    font-weight:
        700;

    line-height:
        1.55;
}


.ax-topic-button {

    margin-top:
        35px;

    text-align:
        center;
}


/* ============================================================
   PARTNERS
============================================================ */

/* ============================================================
   TRUSTED WORLDWIDE
   INSTITUTIONS SECTION
============================================================ */

.ax-partners {

    position: relative;

    padding:
        82px 0
        30px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f8faff 0%,
            #f3f6ff 100%
        );

    color:
        #172454;
}


/* ============================================================
   BACKGROUND WORLD MAP
============================================================ */

.ax-partners-map {

    position: absolute;

    top: 0;

    left: 0;

    width: 390px;

    height: 270px;

    opacity: .32;

    pointer-events: none;

    background-image:
        url("../images/red-on-white-dotted-world-map-vector.png");

    background-repeat:
        no-repeat;

    background-position:
        left top;

    background-size:
        contain;
}


/* ============================================================
   RIGHT WAVE DECORATION
============================================================ */

.ax-partners-waves {

    position: absolute;

    top: -35px;

    right: -35px;

    width: 430px;

    height: 250px;

    opacity: .42;

    pointer-events: none;

    overflow: hidden;

    border-radius:
        50%;
}


.ax-partners-waves::before,
.ax-partners-waves::after {

    content: "";

    position: absolute;

    width: 470px;

    height: 170px;

    right: -100px;

    top: 20px;

    border-top:
        1px solid rgba(104,126,218,.34);

    border-radius:
        50%;

    transform:
        rotate(-17deg);
}


.ax-partners-waves::after {

    top: 42px;

    right: -120px;

    width: 520px;

    height: 180px;

    opacity: .7;
}


/* ============================================================
   HEADING
============================================================ */

.ax-partners-heading {

    position: relative;

    z-index: 3;

    text-align:
        center;

    margin-bottom:
        38px;
}


.ax-partners-label {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        15px;

    color:
        #26356d;

    font-family:
        var(--mono);

    font-size:
        12px;

    font-weight:
        700;

    letter-spacing:
        .25em;

    text-transform:
        uppercase;
}


.ax-partners-label-line {

    position:
        relative;

    width:
        72px;

    height:
        1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d7a63a
        );
}


.ax-partners-label-line:last-child {

    background:
        linear-gradient(
            90deg,
            #d7a63a,
            transparent
        );
}


.ax-partners-label-line::after {

    content:
        "";

    position:
        absolute;

    top:
        50%;

    right:
        0;

    width:
        5px;

    height:
        5px;

    transform:
        translateY(-50%);

    border-radius:
        50%;

    background:
        #d7a63a;
}


.ax-partners-label-line:last-child::after {

    left:
        0;

    right:
        auto;
}


.ax-partners-heading h2 {

    margin:
        17px 0
        10px;

    color:
        #121e54;

    font-family:
        var(--serif);

    font-size:
        clamp(43px, 4vw, 53px);

    font-weight:
        500;

    line-height:
        1;

    letter-spacing:
        -.035em;
}


.ax-partners-heading p {

    margin:
        0;

    color:
        #56648e;

    font-size:
        15px;

    line-height:
        1.65;
}


/* ============================================================
   INSTITUTION GRID
============================================================ */

.ax-institution-grid {

    position:
        relative;

    z-index:
        5;

    display:
        grid;

    grid-template-columns:
        repeat(7, minmax(0, 1fr));

    column-gap:
        23px;

    row-gap:
        36px;

    align-items:
        start;

    padding:
        18px 0
        0;
}


/* ============================================================
   INSTITUTION CARD
============================================================ */

.ax-institution-card {

    position:
        relative;

    height:
        177px;

    padding:
        35px 14px
        18px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    background:
        rgba(255,255,255,.97);

    border:
        1px solid rgba(224,228,242,.95);

    border-radius:
        13px;

    box-shadow:
        0 14px 32px rgba(41,57,120,.095);

    transition:
        transform .35s var(--ease),
        box-shadow .35s ease;
}


.ax-institution-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 20px 40px rgba(41,57,120,.15);
}


/* ============================================================
   COLORED TOP TAB
============================================================ */

.ax-institution-tab {

    position:
        absolute;

    top:
        -18px;

    left:
        50%;

    width:
        calc(100% - 40px);

    height:
        30px;

    transform:
        translateX(-50%);

    border-radius:
        6px 6px 10px 10px;

    background:
        #292ab0;

    box-shadow:
        0 5px 10px rgba(20,30,90,.08);
}


/* small curved center cutout */

.ax-institution-tab::after {

    content:
        "";

    position:
        absolute;

    left:
        50%;

    bottom:
        -7px;

    width:
        28px;

    height:
        14px;

    transform:
        translateX(-50%);

    border-radius:
        0 0 20px 20px;

    background:
        inherit;
}


/* ============================================================
   HANGER
============================================================ */

.ax-institution-hanger {

    position:
        absolute;

    z-index:
        10;

    top:
        -68px;

    left:
        50%;

    width:
        2px;

    height:
        68px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            to bottom,
            #d9a632,
            #e4b74d
        );
}


.ax-institution-hanger::before {

    content:
        "";

    position:
        absolute;

    top:
        -3px;

    left:
        50%;

    width:
        5px;

    height:
        5px;

    transform:
        translateX(-50%);

    border-radius:
        50%;

    background:
        #dfa935;
}


.ax-institution-hanger::after {

    content:
        "";

    position:
        absolute;

    bottom:
        -7px;

    left:
        50%;

    width:
        13px;

    height:
        13px;

    transform:
        translateX(-50%);

    border:
        2px solid #dfa935;

    border-radius:
        50%;

    background:
        #fff;
}


/* ============================================================
   LOGO
============================================================ */

.ax-institution-logo {

    position:
        relative;

    z-index:
        4;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        100%;

    height:
        91px;

    margin-top:
        3px;
}


.ax-institution-logo img {

    display:
        block;

    max-width:
        94%;

    max-height:
        78px;

    width:
        auto;

    height:
        auto;

    object-fit:
        contain;
}


/* ============================================================
   BOTTOM COLORED LINE
============================================================ */

.ax-institution-line {

    width:
        49px;

    height:
        2px;

    margin-top:
        9px;

    background:
        #302dc4;
}


/* ============================================================
   CARD COLORS
============================================================ */

.card-purple
.ax-institution-tab,
.card-purple
.ax-institution-line {

    background:
        #3025b4;
}


.card-blue
.ax-institution-tab,
.card-blue
.ax-institution-line {

    background:
        #277bc3;
}


.card-navy
.ax-institution-tab,
.card-navy
.ax-institution-line {

    background:
        #1c2868;
}


.card-green
.ax-institution-tab,
.card-green
.ax-institution-line {

    background:
        #15936c;
}


.card-gold
.ax-institution-tab,
.card-gold
.ax-institution-line {

    background:
        #dda62f;
}


.card-violet
.ax-institution-tab,
.card-violet
.ax-institution-line {

    background:
        #71428f;
}


.card-red
.ax-institution-tab,
.card-red
.ax-institution-line {

    background:
        #d92c4a;
}


.card-teal
.ax-institution-tab,
.card-teal
.ax-institution-line {

    background:
        #198e9b;
}


.card-red-dark
.ax-institution-tab,
.card-red-dark
.ax-institution-line {

    background:
        #a92236;
}


.card-teal-dark
.ax-institution-tab,
.card-teal-dark
.ax-institution-line {

    background:
        #37727d;
}


.card-blue-light
.ax-institution-tab,
.card-blue-light
.ax-institution-line {

    background:
        #5289ee;
}


.card-pink
.ax-institution-tab,
.card-pink
.ax-institution-line {

    background:
        #ed3d83;
}


.card-navy-light
.ax-institution-tab,
.card-navy-light
.ax-institution-line {

    background:
        #345078;
}


/* ============================================================
   STAGGERED ROWS
============================================================ */

/*
    Reference:

    Row 1 = 7 cards
    Row 2 = 7 cards
    Row 3 = 6 cards
*/


.ax-institution-card:nth-child(n+8):nth-child(-n+14) {

    transform:
        translateY(18px);
}


.ax-institution-card:nth-child(n+15):nth-child(-n+20) {

    transform:
        translateY(36px);
}


.ax-institution-card:nth-child(n+8):nth-child(-n+14):hover {

    transform:
        translateY(10px);
}


.ax-institution-card:nth-child(n+15):nth-child(-n+20):hover {

    transform:
        translateY(28px);
}


/* ============================================================
   PARTNER STATISTICS
============================================================ */

.ax-partner-statistics {

    position:
        relative;

    z-index:
        8;

    display:
        grid;

    grid-template-columns:
        220px
        repeat(4, 1fr);

    align-items:
        center;

    min-height:
        128px;

    margin:
        73px 0
        0;

    overflow:
        hidden;

    background:
        rgba(255,255,255,.96);

    border:
        1px solid rgba(218,224,243,.9);

    border-radius:
        18px;

    box-shadow:
        0 14px 38px rgba(45,60,130,.10);
}


/* ============================================================
   WORLD PANEL
============================================================ */

.ax-partner-world {

    position:
        relative;

    height:
        128px;

    overflow:
        hidden;

    background:
        linear-gradient(
            135deg,
            #303ab5,
            #17266f
        );

    border-radius:
        17px 0 0 17px;
}


.ax-partner-world::after {

    content:
        "";

    position:
        absolute;

    right:
        -35px;

    top:
        -30px;

    width:
        80px;

    height:
        190px;

    border-left:
        2px solid #e0b03d;

    border-radius:
        50%;

    transform:
        rotate(7deg);
}


.ax-partner-world-image {

    position:
        absolute;

    inset:
        0;

    opacity:
        .52;

    background-image:
        url("../images/red-on-white-dotted-world-map-vector.png");

    background-repeat:
        no-repeat;

    background-position:
        center;

    background-size:
        145% auto;

    filter:
        brightness(.75)
        invert(1);
}


/* ============================================================
   STAT ITEM
============================================================ */

.ax-partner-stat {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        18px;

    height:
        78px;

    border-right:
        1px dashed #c4ccef;
}


.ax-partner-stat:last-child {

    border-right:
        0;
}


.ax-partner-stat-icon {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        47px;

    height:
        47px;

    color:
        #2837ba;

    font-size:
        34px;
}


.ax-partner-stat-content {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;
}


.ax-partner-stat-content strong {

    color:
        #2535b6;

    font-family:
        var(--sans);

    font-size:
        27px;

    font-weight:
        600;

    line-height:
        1;
}


.ax-partner-stat-content span {

    margin-top:
        7px;

    color:
        #1f2d87;

    font-size:
        13px;

    font-weight:
        400;

    white-space:
        nowrap;
}


/* ============================================================
   DESKTOP WIDTH ADJUSTMENT
============================================================ */

@media (min-width: 1450px) {

    .ax-section-container {

        width:
            1380px;
    }


    .ax-institution-grid {

        column-gap:
            23px;
    }


    .ax-institution-card {

        height:
            178px;
    }
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1200px) {

    .ax-institution-grid {

        grid-template-columns:
            repeat(5, 1fr);

        row-gap:
            38px;
    }


    .ax-institution-card:nth-child(n+6):nth-child(-n+10) {

        transform:
            translateY(18px);
    }


    .ax-institution-card:nth-child(n+11) {

        transform:
            translateY(36px);
    }


    .ax-partner-statistics {

        grid-template-columns:
            170px
            repeat(4, 1fr);
    }


    .ax-partner-stat {

        gap:
            8px;
    }


    .ax-partner-stat-icon {

        width:
            38px;

        font-size:
            27px;
    }


    .ax-partner-stat-content strong {

        font-size:
            22px;
    }


    .ax-partner-stat-content span {

        font-size:
            11px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 768px) {

    .ax-partners {

        padding:
            65px 0
            25px;
    }


    .ax-partners-map {

        width:
            250px;

        height:
            190px;

        opacity:
            .20;
    }


    .ax-partners-heading {

        margin-bottom:
            55px;
    }


    .ax-partners-label {

        font-size:
            8px;

        letter-spacing:
            .17em;
    }


    .ax-partners-label-line {

        width:
            30px;
    }


    .ax-partners-heading h2 {

        font-size:
            39px;

        line-height:
            1.05;
    }


    .ax-partners-heading p {

        font-size:
            11px;
    }


    .ax-institution-grid {

        grid-template-columns:
            repeat(2, 1fr);

        column-gap:
            14px;

        row-gap:
            46px;
    }


    .ax-institution-card {

        height:
            165px;

        padding:
            32px 8px
            14px;
    }


    .ax-institution-logo {

        height:
            85px;
    }


    .ax-institution-logo img {

        max-width:
            95%;

        max-height:
            67px;
    }


    .ax-institution-card:nth-child(n) {

        transform:
            none;
    }


    .ax-institution-card:hover {

        transform:
            translateY(-4px);
    }


    .ax-partner-statistics {

        grid-template-columns:
            1fr 1fr;

        margin-top:
            55px;

        border-radius:
            15px;
    }


    .ax-partner-world {

        grid-column:
            1 / -1;

        height:
            110px;

        border-radius:
            15px 15px 0 0;
    }


    .ax-partner-stat {

        height:
            100px;

        border-bottom:
            1px dashed #c4ccef;

        border-right:
            1px dashed #c4ccef;
    }


    .ax-partner-stat:nth-child(3),
    .ax-partner-stat:nth-child(5) {

        border-right:
            0;
    }


    .ax-partner-stat-icon {

        font-size:
            25px;
    }


    .ax-partner-stat-content strong {

        font-size:
            21px;
    }


    .ax-partner-stat-content span {

        font-size:
            9px;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .ax-institution-grid {

        grid-template-columns:
            1fr 1fr;

        column-gap:
            10px;
    }


    .ax-institution-card {

        height:
            145px;
    }


    .ax-institution-tab {

        width:
            calc(100% - 25px);
    }


    .ax-institution-hanger {

        top:
            -57px;

        height:
            57px;
    }


    .ax-institution-logo {

        height:
            73px;
    }


    .ax-institution-logo img {

        max-height:
            58px;
    }


    .ax-institution-line {

        width:
            35px;
    }


    .ax-partner-statistics {

        grid-template-columns:
            1fr;
    }


    .ax-partner-stat {

        border-right:
            0;

        border-bottom:
            1px dashed #c4ccef;
    }


    .ax-partner-stat:last-child {

        border-bottom:
            0;
    }
}


/* ============================================================
   VENUE
============================================================ */

.ax-venue {

    padding:
        22px 0
        80px;

    background:
        #fff;
}


.ax-venue-card {

    display:
        grid;

    grid-template-columns:
        495px
        minmax(0, 1fr);

    min-height:
        275px;

    overflow:
        hidden;

    border-radius:
        20px;

    background:
        linear-gradient(
            110deg,
            #111e59,
            #2d2b9f,
            #472abd
        );

    box-shadow:
        0 20px 55px rgba(20,32,85,.15);
}


.ax-venue-image {

    position:
        relative;

    min-height:
        275px;

    overflow:
        hidden;
}


.ax-venue-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;
}


.ax-venue-image::after {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            90deg,
            rgba(10,20,68,.05),
            rgba(10,20,68,.35)
        );
}


.ax-venue-overlay {

    position:
        absolute;

    z-index:
        2;

    left:
        32px;

    bottom:
        26px;
}


.ax-venue-overlay span {

    display:
        block;

    color:
        #fff;

    font-family:
        var(--serif);

    font-size:
        27px;
}


.ax-venue-overlay strong {

    display:
        block;

    margin:
        6px 0
        13px;

    color:
        var(--gold-light);

    font-size:
        8px;

    letter-spacing:
        .08em;
}


.ax-venue-overlay a {

    display:
        inline-flex;

    padding:
        8px 13px;

    color:
        #fff;

    border:
        1px solid rgba(255,255,255,.55);

    font-size:
        8px;

    font-weight:
        700;
}


.ax-venue-details {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        18px;

    align-items:
        center;

    padding:
        30px 35px;
}


.ax-venue-detail {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        11px;

    color:
        #fff;
}


.ax-venue-detail-icon {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        42px;

    height:
        42px;

    flex-shrink:
        0;

    border:
        1px solid rgba(255,255,255,.30);

    border-radius:
        50%;

    font-size:
        14px;
}


.ax-venue-detail strong {

    display:
        block;

    color:
        #fff;

    font-size:
        8px;

    line-height:
        1.5;
}


.ax-venue-detail span {

    display:
        block;

    margin-top:
        4px;

    color:
        rgba(255,255,255,.62);

    font-size:
        7.5px;
}


.ax-venue-details .ax-btn {

    grid-column:
        2 / 4;

    justify-self:
        center;

    width:
        190px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1200px) {

    .ax-hero-container {

        grid-template-columns:
            45% 55%;

        gap:
            20px;
    }


    .ax-hero-content h1 {

        font-size:
            55px;
    }


    .ax-hanging-grid {

        grid-template-columns:
            repeat(3, 1fr);

        row-gap:
            48px;
    }


    .ax-topic-track {

        grid-template-columns:
            repeat(4, 1fr);

        row-gap:
            40px;
    }


    .ax-partner-grid {

        grid-template-columns:
            repeat(4, 1fr);
    }


    .ax-about-grid {

        grid-template-columns:
            42% 58%;
    }


    .ax-venue-card {

        grid-template-columns:
            42% 58%;
    }
}


/* ============================================================
   TABLET / MOBILE HEADER
============================================================ */

@media (max-width: 900px) {

    .nav-toggle {

        display:
            flex;
    }


    .primary-nav {

        position:
            fixed;

        top:
            60px;

        left:
            0;

        right:
            0;

        display:
            none;

        flex-direction:
            column;

        align-items:
            stretch;

        max-height:
            calc(100vh - 60px);

        padding:
            12px 20px
            22px;

        overflow-y:
            auto;

        background:
            rgba(255,255,255,.98);

        border-top:
            1px solid var(--border);

        box-shadow:
            0 18px 40px rgba(15,30,80,.12);
    }


    .primary-nav.is-open {

        display:
            flex;
    }


    .primary-nav > a,
    .nav-dropdown-toggle {

        width:
            100%;

        height:
            46px;

        justify-content:
            flex-start;

        padding:
            0 5px;

        border-bottom:
            1px solid var(--border-soft);
    }


    .primary-nav > a.nav-cta {

        justify-content:
            center;

        height:
            42px;

        margin:
            12px 0
            0;
    }


    .nav-dropdown {

        width:
            100%;
    }


    .nav-dropdown-menu {

        position:
            static;

        display:
            none;

        width:
            100%;

        box-shadow:
            none;

        border:
            0;

        background:
            #f6f7fc;
    }


    .nav-dropdown.is-open
    .nav-dropdown-menu {

        display:
            block;
    }


    .nav-dropdown:hover
    .nav-dropdown-menu {

        display:
            none;
    }


    .nav-dropdown.is-open:hover
    .nav-dropdown-menu {

        display:
            block;
    }


    .ax-hero {

        min-height:
            auto;
    }


    .ax-hero-container {

        width:
            calc(100% - 45px);

        min-height:
            auto;

        padding:
            45px 0
            55px;

        grid-template-columns:
            1fr;
    }


    .ax-hero-content h1 {

        font-size:
            clamp(50px, 8vw, 68px);
    }


    .ax-hero-video {

        padding:
            10px 0
            0;
    }


    .ax-about-grid {

        grid-template-columns:
            1fr;

        gap:
            50px;
    }


    .ax-about-image {

        min-height:
            360px;
    }


    .ax-about-image img {

        height:
            360px;
    }


    .ax-venue-card {

        grid-template-columns:
            1fr;
    }


    .ax-venue-image {

        min-height:
            320px;
    }


    .ax-venue-details {

        grid-template-columns:
            repeat(3, 1fr);
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 700px) {

    .ax-section-container {

        width:
            calc(100% - 30px);
    }


    .header-inner {

        width:
            calc(100% - 25px);
    }


    .brand img {

        width:
            140px;
    }


    .ax-hero-container {

        width:
            calc(100% - 30px);

        padding:
            35px 0
            45px;
    }


    .ax-eyebrow {

        font-size:
            7px;

        letter-spacing:
            .19em;
    }


    .ax-hero-content h1 {

        font-size:
            clamp(42px, 12vw, 58px);
    }


    .ax-event-meta {

        flex-wrap:
            wrap;

        gap:
            10px;
    }


    .ax-meta-separator {

        display:
            none;
    }


    .ax-hero-actions {

        display:
            grid;

        grid-template-columns:
            1fr;

        width:
            100%;
    }


    .ax-btn {

        width:
            100%;
    }


    .ax-video-frame {

        border-radius:
            17px 17px 17px 42px;
    }


    .ax-video-play {

        width:
            62px;

        height:
            62px;
    }


    /* STATS */

    .ax-stats-container {

        width:
            calc(100% - 30px);

        grid-template-columns:
            repeat(2, 1fr);
    }


    .ax-stat {

        min-height:
            78px;

        padding:
            10px;

        border-bottom:
            1px solid rgba(255,255,255,.13);
    }


    .ax-stat-icon {

        width:
            38px;

        height:
            38px;

        font-size:
            15px;
    }


    .ax-stat strong {

        font-size:
            17px;
    }


    .ax-stat span {

        font-size:
            7px;
    }


    /* HANGING */

    .ax-hanging-section {

        padding:
            58px 0
            70px;
    }


    .ax-hanging-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap:
            45px 10px;
    }


    .ax-hanging-card,
    .ax-hanging-card:nth-child(1),
    .ax-hanging-card:nth-child(2),
    .ax-hanging-card:nth-child(3),
    .ax-hanging-card:nth-child(4),
    .ax-hanging-card:nth-child(5),
    .ax-hanging-card:nth-child(6) {

        margin-top:
            0;
    }


    .ax-hanging-card {

        min-height:
            250px;

        padding:
            53px 10px
            18px;
    }


    /* ABOUT */

    .ax-about {

        padding:
            70px 0
            75px;
    }


    .ax-about-content h2 {

        font-size:
            45px;
    }


    .ax-about-image {

        min-height:
            280px;

        padding:
            0
            16px
            16px
            0;
    }


    .ax-about-image img {

        height:
            280px;
    }


    /* TOPICS */

    .ax-topics {

        padding:
            65px 0
            75px;
    }


    .ax-centered-heading h2 {

        font-size:
            45px;
    }


    .ax-topic-track {

        grid-template-columns:
            repeat(2, 1fr);

        gap:
            35px 10px;
    }


    .ax-topic:not(:last-child)::before,
    .ax-topic:not(:last-child)::after {

        display:
            none;
    }


    /* PARTNERS */

    .ax-partner-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .ax-partner-card {

        height:
            105px;
    }


    /* VENUE */

    .ax-venue-card {

        border-radius:
            15px;
    }


    .ax-venue-image {

        min-height:
            245px;
    }


    .ax-venue-details {

        grid-template-columns:
            1fr;

        padding:
            25px 20px;
    }


    .ax-venue-details .ax-btn {

        grid-column:
            auto;

        width:
            100%;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 430px) {

    .brand img {

        width:
            125px;
    }


    .ax-hero-content h1 {

        font-size:
            42px;
    }


    .ax-hanging-grid {

        grid-template-columns:
            1fr;
    }


    .ax-hanging-card {

        width:
            100%;

        max-width:
            320px;

        margin:
            0 auto !important;
    }


    .ax-topic-track {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .ax-partner-grid {

        grid-template-columns:
            1fr 1fr;
    }
}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation:
            none !important;

        transition:
            none !important;

        scroll-behavior:
            auto !important;
    }
}

/* =========================================================
   RESET
========================================================= */

.adv-gallery,
.adv-gallery * {
    box-sizing: border-box;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.adv-gallery {

    --navy: #101d59;
    --purple: #4932d2;
    --purple-dark: #3822bb;
    --gold: #dcae39;
    --wall: #f5f2f8;

    position: relative;

    width: 100%;

    min-height: 900px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 40%,
            #ffffff 0%,
            #faf8fb 38%,
            #f1eef6 100%
        );

    padding-top: 30px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

}


/* =========================================================
   SUBTLE WALL GRADIENT
========================================================= */

.adv-gallery::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:

        radial-gradient(
            circle at 15% 50%,
            rgba(122, 103, 211, .08),
            transparent 30%
        ),

        radial-gradient(
            circle at 85% 50%,
            rgba(122, 103, 211, .07),
            transparent 30%
        );

}


/* =========================================================
   TOP RAIL
========================================================= */

.adv-gallery-rail {

    position: absolute;

    top: 16px;

    left: 0%;

    width: 100%;

    height: 7px;

    background: #1d1d22;

    border-radius: 8px;

    z-index: 3;

    box-shadow:
        0 2px 3px rgba(0,0,0,.12);

}


/* =========================================================
   SPOTLIGHT
========================================================= */

.adv-spotlight {

    position: absolute;

    top: 0;

    width: 48px;

    height: 110px;

}


/* positions */

.adv-light-1 {
    left: 5%;
}

.adv-light-2 {
    left: 34%;
}

.adv-light-3 {
    left: 67%;
}

.adv-light-4 {
    right: 4%;
}


/* hanging cable */

.adv-spotlight::before {

    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    width: 1px;

    height: 28px;

    background: #24242a;

    transform: translateX(-50%);

}


/* light */

.adv-light-body {

    position: absolute;

    top: 27px;

    left: 50%;

    width: 24px;

    height: 31px;

    background: #202025;

    border-radius:
        4px
        4px
        10px
        10px;

    transform:
        translateX(-50%)
        rotate(0deg);

}


/* glow */

.adv-light-body::after {

    content: "";

    position: absolute;

    left: 50%;

    top: 26px;

    width: 130px;

    height: 115px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(255, 221, 164, .25),
            transparent 68%
        );

    pointer-events: none;

}


/* =========================================================
   CONTAINER
========================================================= */

.adv-gallery-container {

    position: relative;

    width: min(1450px, 100%);

    min-height: 760px;

    margin: auto;

    z-index: 5;

}


/* =========================================================
   HEADING
========================================================= */

.adv-gallery-heading {

    position: relative;

    text-align: center;

    z-index: 20;

}


.adv-gallery-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

}


.adv-gallery-eyebrow span {

    width: 23px;

    height: 1px;

    background: var(--gold);

}


.adv-gallery-eyebrow strong {

    color: var(--navy);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 4px;

}


.adv-gallery-heading h2 {

    margin: 14px 0 10px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(44px, 4.2vw, 64px);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -1.5px;

}


.adv-gallery-heading h2 em {

    color: var(--purple);

    font-style: normal;

}


.adv-gallery-heading p {

    margin: 0 auto;

    max-width: 610px;

    color: #747b98;

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   PHOTO WALL
========================================================= */

.adv-photo-wall {

    position: relative;

    width: 100%;

    max-width: 1120px;

    height: 470px;

    margin: 8px auto 0;

}


/* =========================================================
   PHOTO COMMON
========================================================= */

.adv-photo {

    position: absolute;

    z-index: 5;

}


/* =========================================================
   FRAME
========================================================= */

.adv-frame {

    position: relative;

    padding: 9px;

    background: #fff;

    border: 1px solid #d5bf9a;

    box-shadow:

        0 20px 35px rgba(27, 25, 49, .15),

        0 5px 10px rgba(27, 25, 49, .08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


/* inner gold line */

.adv-frame::before {

    content: "";

    position: absolute;

    inset: 4px;

    border: 1px solid rgba(200, 170, 110, .35);

    pointer-events: none;

    z-index: 2;

}


/* image container */

.adv-photo-inner {

    position: relative;

    width: 100%;

    height: 100%;

    overflow: hidden;

    background: #e8e5ea;

}


/* image */

.adv-photo-inner img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* =========================================================
   HANGING LINE
========================================================= */

.adv-hanging-line {

    position: absolute;

    top: -41px;

    left: 50%;

    width: 1px;

    height: 38px;

    background:
        linear-gradient(
            to bottom,
            rgba(50,50,55,.20),
            rgba(50,50,55,.60)
        );

    transform: translateX(-50%);

    z-index: -1;

}


/* =========================================================
   PHOTO HOOK
========================================================= */

.adv-photo-hook {

    position: absolute;

    top: -5px;

    left: 50%;

    width: 8px;

    height: 8px;

    background: #222229;

    border-radius: 50%;

    transform: translateX(-50%);

    z-index: 20;

}


/* =========================================================
   PHOTO 1
   LEFT LARGE
========================================================= */

.adv-photo-1 {
    left: -137px;
    top: 61px;
    z-index: 7;
}

.adv-photo-1 .adv-frame {

    width: 280px;

    height: 225px;

    transform: rotate(-1.4deg);

}


/* =========================================================
   PHOTO 2
   LEFT LOWER
========================================================= */

.adv-photo-2 {

    left: 128px;

    top: 377px;

    z-index: 12;

}


.adv-photo-2 .adv-frame {

    width: 220px;

    height: 180px;

    transform: rotate(1.2deg);

}


/* longer hanging line */

.adv-photo-2 .adv-hanging-line {
    top: -357px;
    height: 353px;
}


/* =========================================================
   PHOTO 3
   SMALL LEFT / CENTER
========================================================= */

.adv-photo-3 {

    left: 290px;

    top: 95px;

    z-index: 15;

}


.adv-photo-3 .adv-frame {

    width: 185px;

    height: 160px;

    transform: rotate(-1deg);

}


/* =========================================================
   MAIN CENTER PHOTO
========================================================= */

.adv-photo-main {

    left: 50%;

    top: 65px;

    transform: translateX(-50%);

    z-index: 10;

}


.adv-photo-main .adv-frame {

    width: 465px;

    height: 300px;

    padding: 11px;

    transform: rotate(.2deg);

}


/* =========================================================
   RIGHT TOP PHOTO
========================================================= */

.adv-photo-4 {

    right: -131px;

    top: 61px;

    z-index: 8;

}


.adv-photo-4 .adv-frame {

    width: 270px;

    height: 205px;

    transform: rotate(1.3deg);

}


/* =========================================================
   RIGHT LOWER PHOTO
========================================================= */

.adv-photo-5 {

    right: 135px;

    top: 378px;

    z-index: 13;

}


.adv-photo-5 .adv-frame {

    width: 225px;

    height: 180px;

    transform: rotate(-1.5deg);

}


/* longer wire */

.adv-photo-5 .adv-hanging-line {
    top: -357px;
    height: 355px;
}


/* =========================================================
   FAR RIGHT PHOTO
========================================================= */

.adv-photo-6 {

    right: 15px;

    top: 105px;

    z-index: 6;

}


.adv-photo-6 .adv-frame {

    width: 175px;

    height: 165px;

    transform: rotate(-1deg);

}


/* =========================================================
   HOVER
========================================================= */

.adv-photo:hover {

    z-index: 50;

}


.adv-photo:hover .adv-frame {

    transform:
        translateY(-8px)
        rotate(0deg);

    box-shadow:

        0 25px 45px rgba(27,25,49,.22),

        0 8px 15px rgba(27,25,49,.10);

}


/* =========================================================
   SIDE HANDWRITTEN TEXT
========================================================= */

.adv-gallery-script {

    position: absolute;

    color: #9b9cbd;

    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;

    font-size: 21px;

    line-height: 1.35;

    opacity: .58;

    z-index: 3;

}


.adv-gallery-script span {

    display: block;

}


.adv-gallery-script i {

    display: block;

    width: 32px;

    height: 1px;

    margin-top: 13px;

    background: #a5a5c1;

}


.adv-script-left {

    left: 25px;

    top: 350px;

    transform: rotate(-4deg);

}


.adv-script-right {

    right: 18px;

    top: 410px;

    text-align: center;

    transform: rotate(3deg);

}


/* =========================================================
   GALLERY BUTTON
========================================================= */

.adv-gallery-button-wrap {

    position: relative;

    display: flex;

    justify-content: center;

    margin-top: 8px;

    z-index: 30;

}


.adv-gallery-button {

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    min-width: 195px;

    padding: 13px 18px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #5139d9,
            #3924bd
        );

    border-radius: 6px;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .2px;

    box-shadow:

        0 12px 25px rgba(65,45,195,.25);

    transition: all .3s ease;

}


.adv-gallery-arrow {

    margin-left: 25px;

    font-size: 15px;

    transition: transform .3s ease;

}


.adv-gallery-button:hover {

    transform: translateY(-3px);

    box-shadow:

        0 17px 30px rgba(65,45,195,.32);

}


.adv-gallery-button:hover .adv-gallery-arrow {

    transform: translateX(5px);

}


/* =========================================================
   BENCH
========================================================= */

.adv-bench {

    position: absolute;

    bottom: 0;

    left: 50%;

    width: 340px;

    height: 62px;

    transform: translateX(-50%);

    z-index: 4;

}


.adv-bench-top {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 15px;

    background:
        linear-gradient(
            to bottom,
            #c69a64,
            #a97b4d
        );

    border-radius: 2px;

    box-shadow:
        0 5px 8px rgba(40,30,20,.15);

}


.adv-bench-leg {

    position: absolute;

    top: 15px;

    width: 10px;

    height: 47px;

    background: #916946;

}


.adv-bench-leg-left {

    left: 38px;

}


.adv-bench-leg-right {

    right: 38px;

}


/* =========================================================
   PLANTS
========================================================= */

.adv-plant {

    position: absolute;

    bottom: 0;

    width: 155px;

    height: 190px;

    z-index: 5;

}


.adv-plant-left {

    left: 8px;

}


.adv-plant-right {

    right: 8px;

}


/* =========================================================
   PLANT POT
========================================================= */

.adv-plant-pot {

    position: absolute;

    bottom: 0;

    left: 50%;

    width: 65px;

    height: 62px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            #dedbd5,
            #efede8,
            #d4d0ca
        );

    border-radius:
        5px
        5px
        15px
        15px;

    box-shadow:
        0 8px 15px rgba(30,30,30,.12);

}


/* =========================================================
   PLANT LEAVES
========================================================= */

.adv-plant-leaves {

    position: absolute;

    left: 50%;

    bottom: 48px;

    width: 100px;

    height: 120px;

    transform: translateX(-50%);

}


.adv-plant-leaves span {

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 17px;

    height: 82px;

    background:
        linear-gradient(
            90deg,
            #698268,
            #80997a
        );

    border-radius:
        100% 0
        100% 0;

    transform-origin: bottom center;

}


/* individual leaves */

.adv-plant-leaves span:nth-child(1) {
    transform:
        translateX(-50%)
        rotate(-52deg);
}

.adv-plant-leaves span:nth-child(2) {
    transform:
        translateX(-50%)
        rotate(-32deg);
}

.adv-plant-leaves span:nth-child(3) {
    transform:
        translateX(-50%)
        rotate(-12deg);
}

.adv-plant-leaves span:nth-child(4) {
    transform:
        translateX(-50%)
        rotate(12deg);
}

.adv-plant-leaves span:nth-child(5) {
    transform:
        translateX(-50%)
        rotate(32deg);
}

.adv-plant-leaves span:nth-child(6) {
    transform:
        translateX(-50%)
        rotate(52deg);
}


/* =========================================================
   BACKGROUND CIRCLES
========================================================= */

.adv-gallery-circle {

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    border: 1px solid rgba(95,78,185,.07);

    z-index: 1;

}


.adv-circle-left {

    left: -180px;

    top: 90px;

    box-shadow:
        0 0 0 25px rgba(110,95,190,.025),
        0 0 0 50px rgba(110,95,190,.018);

}


.adv-circle-right {

    right: -180px;

    top: 300px;

    box-shadow:
        0 0 0 25px rgba(110,95,190,.025),
        0 0 0 50px rgba(110,95,190,.018);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .adv-photo-wall {

        transform:
            scale(.90);

        transform-origin:
            center top;

        margin-bottom: -35px;

    }


    .adv-gallery-script {

        display: none;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .adv-gallery {

        min-height: auto;

        padding:
            60px
            20px
            100px;

    }


    .adv-gallery-rail {

        left: 5%;

        width: 90%;

    }


    .adv-gallery-heading h2 {

        font-size: 42px;

    }


    .adv-gallery-heading p {

        font-size: 12px;

        max-width: 340px;

    }


    .adv-photo-wall {

        height: auto;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 18px;

        margin-top: 35px;

        transform: none;

    }


    .adv-photo,
    .adv-photo-1,
    .adv-photo-2,
    .adv-photo-3,
    .adv-photo-main,
    .adv-photo-4,
    .adv-photo-5,
    .adv-photo-6 {

        position: relative;

        inset: auto;

        transform: none;

    }


    .adv-photo-main {

        grid-column: 1 / -1;

        order: -1;

    }


    .adv-photo-main .adv-frame {

        width: 100%;

        height: 240px;

        transform: none;

    }


    .adv-photo-1 .adv-frame,
    .adv-photo-2 .adv-frame,
    .adv-photo-3 .adv-frame,
    .adv-photo-4 .adv-frame,
    .adv-photo-5 .adv-frame,
    .adv-photo-6 .adv-frame {

        width: 100%;

        height: 180px;

        transform: none;

    }


    .adv-hanging-line,
    .adv-photo-hook {

        display: none;

    }


    .adv-gallery-button-wrap {

        margin-top: 30px;

    }


    .adv-gallery-rail,
    .adv-spotlight {

        display: none;

    }


    .adv-plant {

        display: none;

    }


    .adv-bench {

        display: none;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .adv-gallery {

        padding:
            50px
            15px
            70px;

    }


    .adv-gallery-heading h2 {

        font-size: 36px;

    }


    .adv-gallery-eyebrow strong {

        font-size: 8px;

        letter-spacing: 3px;

    }


    .adv-photo-wall {

        grid-template-columns: 1fr;

    }


    .adv-photo-main {

        grid-column: auto;

    }


    .adv-photo-main .adv-frame {

        height: 220px;

    }


    .adv-photo-1 .adv-frame,
    .adv-photo-2 .adv-frame,
    .adv-photo-3 .adv-frame,
    .adv-photo-4 .adv-frame,
    .adv-photo-5 .adv-frame,
    .adv-photo-6 .adv-frame {

        height: 210px;

    }

}



.irc-partners-marquee {

    position: relative;

    width: 100vw;

    left: 50%;

    transform: translateX(-50%);

    overflow: hidden;

}


/* ============================================================
   EDGE FADE
============================================================ */

.irc-partners-marquee::before,
.irc-partners-marquee::after {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    z-index: 10;

    width: 180px;

    pointer-events: none;

}


.irc-partners-marquee::before {

    left: 0;

    background:
        linear-gradient(
            90deg,
            #F7FBFC 0%,
            rgba(247,251,252,.9) 30%,
            transparent 100%
        );

}


.irc-partners-marquee::after {

    right: 0;

    background:
        linear-gradient(
            270deg,
            #F7FBFC 0%,
            rgba(247,251,252,.9) 30%,
            transparent 100%
        );

}


/* ============================================================
   TRACK WRAPPER
============================================================ */

.irc-logo-track-wrap {

    position: relative;

    width: 100%;

    overflow: hidden;

    padding: 12px 0;

}


/* Space between rows */

.irc-track-two {

    margin-top: 18px;

}


/* ============================================================
   TRACK
============================================================ */

.irc-logo-track {

    display: flex;

    width: max-content;

    align-items: center;

    gap: 28px;

    will-change: transform;

}


/* ============================================================
   ROW 1
   LEFT → RIGHT
============================================================ */

.irc-track-one .irc-logo-track {

    animation:
        ircLogoRight
        20s
        linear
        infinite;

}


/* ============================================================
   ROW 2
   RIGHT → LEFT
============================================================ */

.irc-track-two .irc-logo-track {

    animation:
        ircLogoLeft
        20s
        linear
        infinite;

}


/* ============================================================
   PAUSE ON HOVER
============================================================ */

.irc-logo-track-wrap:hover
.irc-logo-track {

    animation-play-state:
        paused;

}


/* ============================================================
   LOGO ITEM
============================================================ */

.irc-logo-item {

    position: relative;

    width: 210px;

    height: 105px;

    flex:
        0 0 210px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 18px 25px;

    border:
        1px solid
        rgba(11,53,88,.07);

    border-radius: 18px;

    background:
        rgba(255,255,255,.78);

    box-shadow:
        0 12px 35px
        rgba(11,53,88,.045);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


.irc-logo-item:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(82,195,199,.35);

    box-shadow:
        0 18px 42px
        rgba(11,53,88,.09);

}


/* ============================================================
   LOGO IMAGE
============================================================ */

.irc-logo-item img {

    display: block;

    max-width: 100%;

    max-height: 68px;

    width: auto;

    height: auto;

    object-fit: contain;

    filter:
        grayscale(10%);

    opacity:
        .88;

    transition:
        filter .35s ease,
        opacity .35s ease,
        transform .35s ease;

}


.irc-logo-item:hover img {

    filter:
        grayscale(0%);

    opacity:
        1;

    transform:
        scale(1.04);

}


/* ============================================================
   SUBTLE TOP ACCENT
============================================================ */

.irc-track-one .irc-logo-item:nth-child(5n + 1)::before,
.irc-track-two .irc-logo-item:nth-child(5n + 1)::before {

    content: "";

    position: absolute;

    top: 0;

    left: 25px;

    right: 25px;

    height: 2px;

    border-radius: 10px;

    background:
        var(--irc-teal);

    opacity: .65;

}


.irc-track-one .irc-logo-item:nth-child(5n + 3)::before,
.irc-track-two .irc-logo-item:nth-child(5n + 3)::before {

    content: "";

    position: absolute;

    top: 0;

    left: 25px;

    right: 25px;

    height: 2px;

    border-radius: 10px;

    background:
        var(--irc-yellow);

    opacity: .65;

}


/* ============================================================
   ANIMATIONS
============================================================ */

/*
   Each row contains exactly two identical sets.

   Moving -50% makes the second set occupy the exact
   position of the first set, producing a seamless loop.
*/


@keyframes ircLogoLeft {

    from {

        transform:
            translateX(0);

    }

    to {

        transform:
            translateX(-50%);

    }

}


@keyframes ircLogoRight {

    from {

        transform:
            translateX(-50%);

    }

    to {

        transform:
            translateX(0);

    }

}


/* ============================================================
   FOOTER STATEMENT
============================================================ */

.irc-partners-footer {

    display: flex;

    align-items: center;

    gap: 13px;

    max-width: 1100px;

    margin: 10px auto 0;

    color:
        rgba(11,53,88,.48);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

    white-space: nowrap;

}


.irc-partners-footer-line {

    flex: 1;

    height: 1px;

    background:
        rgba(11,53,88,.10);

}


.irc-partners-footer i {

    color:
        var(--irc-yellow);

    font-size: 4px;

}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .irc-partners-section {

        padding:
            10px 0;

    }


    .irc-logo-item {

        width:
            185px;

        height:
            95px;

        flex-basis:
            185px;

    }


    .irc-logo-track {

        gap:
            20px;

    }


    .irc-partners-marquee::before,
    .irc-partners-marquee::after {

        width:
            100px;

    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .irc-partners-section {

        padding:
            10px 0;

    }


    .irc-partners-header {

        padding:
            0 20px;

        margin-bottom:
            38px;

    }


    .irc-partners-header h2 {

        font-size:
            39px;

        letter-spacing:
            -1.3px;

    }


    .irc-partners-header p {

        font-size:
            13px;

    }


    .irc-logo-item {

        width:
            155px;

        height:
            82px;

        flex-basis:
            155px;

        padding:
            14px 18px;

        border-radius:
            14px;

    }


    .irc-logo-item img {

        max-height:
            52px;

    }


    .irc-logo-track {

        gap:
            14px;

    }


    .irc-track-two {

        margin-top:
            12px;

    }


    .irc-partners-marquee::before,
    .irc-partners-marquee::after {

        width:
            65px;

    }


    .irc-partners-footer {

        display:
            none;

    }

}

/* ============================================================
   BEST POSTER PRESENTER AWARD
============================================================ */

.ax-award-section {

    position: relative;

    padding: 10px 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8f8ff 48%,
            #f1f3ff 100%
        );

}


/* ============================================================
   MAIN CONTAINER
============================================================ */

.ax-award-container {

    position: relative;

    z-index: 5;

    width: min(
        1500px,
        calc(100% - 100px)
    );

    margin: 0 auto;

}


/* ============================================================
   AWARD CARD
============================================================ */

.ax-award-card {

    position: relative;

    min-height: 500px;

    display: grid;

    grid-template-columns:
        400px 1fr;

    align-items: center;

    overflow: hidden;

    padding: 55px 75px 55px 55px;

    border-radius: 24px;

    border: 1px solid
        rgba(72, 74, 190, .20);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.98),
            rgba(248,249,255,.95)
        );

    box-shadow:
        0 30px 80px
        rgba(30, 39, 110, .12);

}


/* ============================================================
   TOP ACCENT
============================================================ */

.ax-award-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    width: 270px;

    height: 2px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            #dcae3d,
            #4b3bd0,
            #dcae3d,
            transparent
        );

}


/* ============================================================
   VISUAL AREA
============================================================ */

.ax-award-visual {

    position: relative;

    width: 100%;

    height: 380px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* ============================================================
   TROPHY GLOW
============================================================ */

.ax-award-glow {

    position: absolute;

    width: 290px;

    height: 290px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(224,184,80,.28) 0%,
            rgba(224,184,80,.12) 40%,
            transparent 72%
        );

    filter:
        blur(4px);

}


/* ============================================================
   TROPHY CIRCLE
============================================================ */

.ax-award-circle {

    position: absolute;

    width: 315px;

    height: 315px;

    border-radius: 50%;

    border:
        1px solid
        rgba(213,170,58,.38);

    box-shadow:

        0 0 0 18px
        rgba(213,170,58,.05),

        0 0 0 40px
        rgba(76,61,200,.035);

}


/* ============================================================
   TROPHY IMAGE
============================================================ */

.ax-award-trophy {

    position: relative;

    z-index: 3;

    width: 310px;

    height: 310px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 18px 22px
            rgba(34,32,90,.18)
        );

    transition:
        transform .45s ease;
}


.ax-award-card:hover
.ax-award-trophy {

    transform:
        translateY(-7px)
        scale(1.025);

}


/* ============================================================
   CONTENT
============================================================ */

.ax-award-content {

    position: relative;

    z-index: 4;

    text-align: center;

}


/* ============================================================
   KICKER
============================================================ */

.ax-award-kicker {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-bottom: 16px;

    color:
        #2739ba;

    font-family:
        "Space Mono",
        monospace;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .30em;

}


.ax-award-kicker span {

    display: block;

    width: 38px;

    height: 1px;

    background:
        #dcae3d;

}


/* ============================================================
   TITLE
============================================================ */

.ax-award-title {

    margin: 0 0 18px;

    color:
        #111d59;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(45px, 4vw, 66px);

    font-weight: 500;

    line-height: 1;

    letter-spacing:
        -.035em;
}


.ax-award-title strong {

    color:
        #c28c1d;

    font-weight: 500;

}


/* ============================================================
   DESCRIPTION
============================================================ */

.ax-award-description {

    max-width: 780px;

    margin:
        0 auto 30px;

    color:
        #4e5c88;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.75;
}


.ax-award-description strong {

    color:
        #a87513;

    font-weight: 700;
}


/* ============================================================
   BENEFITS
============================================================ */

.ax-award-benefits {

    display: flex;

    align-items: center;

    justify-content: center;

    margin:
        0 auto 32px;

    max-width:
        760px;
}


/* ============================================================
   BENEFIT ITEM
============================================================ */

.ax-award-benefit {

    position: relative;

    flex: 1;

    min-height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

}


.ax-award-benefit
+ .ax-award-benefit {

    border-left:
        1px solid
        rgba(71,76,170,.18);

}


/* ============================================================
   BENEFIT ICON
============================================================ */

.ax-award-benefit-icon {

    width: 48px;

    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color:
        #3b31c3;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eef0ff
        );

    border:
        1px solid
        rgba(72,70,190,.14);

    box-shadow:
        0 8px 20px
        rgba(45,46,150,.10);
}


.ax-award-benefit-icon i {

    font-size: 17px;
}


/* ============================================================
   BENEFIT TEXT
============================================================ */

.ax-award-benefit div:last-child {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    text-align: left;
}


.ax-award-benefit strong {

    color:
        #18235f;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .04em;
}


.ax-award-benefit span {

    margin-top: 3px;

    color:
        #59658d;

    font-size: 11px;
}


/* ============================================================
   BUTTON
============================================================ */

.ax-award-button {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    min-width: 270px;

    min-height: 54px;

    padding:
        0 23px;

    border-radius: 30px;

    color:
        #ffffff;

    background:
        linear-gradient(
            100deg,
            var(--navy-dark),
            #5b43e5
        );

    text-decoration: none;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 15px 30px
        rgba(63,47,195,.25);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.ax-award-button:hover {

    color:
        #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 20px 38px
        rgba(63,47,195,.34);

}


.ax-award-button-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 16px;
}


.ax-award-arrow {

    margin-left: auto;

    font-size: 20px;

    transition:
        transform .25s ease;
}


.ax-award-button:hover
.ax-award-arrow {

    transform:
        translateX(5px);

}


/* ============================================================
   BACKGROUND ORBITS
============================================================ */

.ax-award-orbit {

    position: absolute;

    border:
        1px solid
        rgba(75,70,200,.07);

    border-radius: 50%;

    pointer-events: none;
}


.ax-award-orbit-left {

    width: 520px;

    height: 520px;

    left: -320px;

    top: -100px;

    box-shadow:
        0 0 0 25px
        rgba(72,68,190,.025),

        0 0 0 55px
        rgba(72,68,190,.018);
}


.ax-award-orbit-right {

    width: 600px;

    height: 600px;

    right: -350px;

    bottom: -400px;

    box-shadow:
        0 0 0 25px
        rgba(72,68,190,.025),

        0 0 0 55px
        rgba(72,68,190,.018);
}


/* ============================================================
   DOT PATTERNS
============================================================ */

.ax-award-dots {

    position: absolute;

    width: 100px;

    height: 100px;

    opacity: .38;

    background-image:
        radial-gradient(
            #5363d7 1.4px,
            transparent 1.4px
        );

    background-size:
        13px 13px;
}


.ax-award-dots-left {

    left: 30px;

    bottom: 50px;
}


.ax-award-dots-right {

    right: 35px;

    top: 45px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1050px) {

    .ax-award-container {

        width:
            calc(100% - 60px);
    }


    .ax-award-card {

        grid-template-columns:
            300px 1fr;

        padding:
            45px 45px 45px 35px;

        gap: 20px;
    }


    .ax-award-trophy {

        width: 250px;

        height: 250px;
    }


    .ax-award-circle {

        width: 255px;

        height: 255px;
    }


    .ax-award-glow {

        width: 240px;

        height: 240px;
    }


    .ax-award-title {

        font-size:
            48px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 760px) {

    .ax-award-section {

        padding:
            60px 0;
    }


    .ax-award-container {

        width:
            calc(100% - 30px);
    }


    .ax-award-card {

        grid-template-columns:
            1fr;

        padding:
            35px 22px 40px;

        border-radius:
            18px;

        gap:
            10px;
    }


    .ax-award-visual {

        height:
            250px;
    }


    .ax-award-trophy {

        width:
            210px;

        height:
            210px;
    }


    .ax-award-circle {

        width:
            215px;

        height:
            215px;
    }


    .ax-award-glow {

        width:
            200px;

        height:
            200px;
    }


    .ax-award-kicker {

        font-size:
            8px;

        letter-spacing:
            .20em;
    }


    .ax-award-kicker span {

        width:
            22px;
    }


    .ax-award-title {

        font-size:
            42px;

        line-height:
            1.02;
    }


    .ax-award-description {

        font-size:
            13px;

        line-height:
            1.7;
    }


    .ax-award-benefits {

        flex-direction:
            column;

        width:
            100%;

        gap:
            10px;
    }


    .ax-award-benefit {

        width:
            100%;

        justify-content:
            flex-start;

        padding:
            8px 20px;
    }


    .ax-award-benefit
    + .ax-award-benefit {

        border-left:
            none;

        border-top:
            1px solid
            rgba(71,76,170,.12);

        padding-top:
            16px;
    }


    .ax-award-button {

        width:
            100%;

        min-width:
            0;
    }


    .ax-award-dots {

        display:
            none;
    }

}

/* =========================================================
   ADVOPTIX 2027
   PLENARIES & KEYNOTES
   COMPLETE RESPONSIVE SECTION
========================================================= */

.ax-speakers-section {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 90px 24px 100px;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(69, 55, 190, 0.055),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f9ff 55%,
            #ffffff 100%
        );

    box-sizing: border-box;
}


/* =========================================================
   BACKGROUND DECORATIONS
========================================================= */

.ax-speaker-bg {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}


/* LEFT RINGS */

.ax-bg-left {
    width: 470px;
    height: 470px;

    left: -315px;
    top: 80px;

    border-radius: 50%;

    border: 1px solid rgba(69, 55, 190, 0.08);

    box-shadow:
        0 0 0 28px rgba(69, 55, 190, 0.025),
        0 0 0 58px rgba(69, 55, 190, 0.018),
        0 0 0 88px rgba(69, 55, 190, 0.012);
}


/* RIGHT RINGS */

.ax-bg-right {
    width: 520px;
    height: 520px;

    right: -350px;
    bottom: 20px;

    border-radius: 50%;

    border: 1px solid rgba(69, 55, 190, 0.08);

    box-shadow:
        0 0 0 28px rgba(69, 55, 190, 0.025),
        0 0 0 58px rgba(69, 55, 190, 0.018),
        0 0 0 88px rgba(69, 55, 190, 0.012);
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.ax-speakers-container {
    position: relative;
    z-index: 2;

    width: min(1180px, 100%);

    margin: 0 auto;

    box-sizing: border-box;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.ax-speakers-heading {
    text-align: center;

    margin: 0 auto 58px;

    max-width: 850px;
}


/* OVERLINE */

.ax-heading-overline {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-bottom: 16px;

    color: #26358f;

    font-family: "Space Mono", monospace;

    font-size: 11px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 3.5px;

    text-transform: uppercase;
}


.ax-heading-overline span {
    display: block;

    width: 52px;
    height: 1px;

    background: #dcae39;

    flex: 0 0 auto;
}


/* MAIN HEADING */

.ax-speakers-heading h2 {
    margin: 0;

    color: #111f5b;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(
        48px,
        5vw,
        68px
    );

    font-weight: 600;

    line-height: 0.98;

    letter-spacing: -1.5px;
}


.ax-speakers-heading h2 em {
    color: #dcae39;

    font-style: normal;
}


/* DESCRIPTION */

.ax-speakers-heading p {
    max-width: 720px;

    margin: 20px auto 0;

    color: #667294;

    font-family:
        "EB Garamond",
        Georgia,
        serif;

    font-size: 18px;

    line-height: 1.55;
}


/* =========================================================
   SPEAKER GRID
========================================================= */

.ax-speakers-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;

    align-items: stretch;

    justify-items: center;
}


/* =========================================================
   SPEAKER CARD
========================================================= */

.ax-speaker-card {
    position: relative;

    width: 100%;

    max-width: 270px;

    min-width: 0;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    align-items: center;

    overflow: hidden;

    padding: 12px 12px 0;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.99),
            rgba(252,252,255,0.98)
        );

    border: 1px solid rgba(48, 61, 150, 0.12);

    border-radius: 21px;

    box-shadow:
        0 12px 32px rgba(27, 39, 103, 0.07);

    transition:
        transform 0.35s cubic-bezier(.16,1,.3,1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    isolation: isolate;
}


/* CARD HOVER */

.ax-speaker-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(69, 55, 190, 0.24);

    box-shadow:
        0 22px 48px rgba(32, 42, 115, 0.13);
}


/* TOP GOLD ACCENT */

.ax-speaker-card::before {
    content: "";

    position: absolute;

    z-index: 5;

    top: 0;
    left: 34px;
    right: 34px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #dcae39 25%,
            #dcae39 75%,
            transparent
        );
}


/* =========================================================
   SPEAKER NUMBER
========================================================= */

.ax-speaker-number {
    position: absolute;

    z-index: 10;

    top: 12px;
    left: 12px;

    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border-radius: 11px;

    background: rgba(255,255,255,0.97);

    border: 1px solid rgba(220,174,57,0.55);

    color: #1d2b87;

    font-family:
        "Space Mono",
        monospace;

    font-size: 11px;

    font-weight: 700;

    box-shadow:
        0 7px 18px rgba(25,35,100,0.12);
}


/* =========================================================
   SPEAKER IMAGE
   EXACT 220px × 220px
========================================================= */

.ax-speaker-photo {
    position: relative;

    width: 220px;

    height: 220px;

    min-width: 220px;
    min-height: 220px;

    flex: 0 0 220px;

    overflow: hidden;

    box-sizing: border-box;

    border-radius: 14px;

    background: #eef0f8;
}


/* IMAGE */

.ax-speaker-photo img {
    display: block;

    width: 220px;
    height: 220px;

    min-width: 220px;
    min-height: 220px;

    max-width: none;

    object-fit: cover;

    object-position: center;

    border: 0;

    transition:
        transform 0.55s cubic-bezier(.16,1,.3,1);
}


/* IMAGE OVERLAY */

.ax-speaker-photo::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0) 65%,
            rgba(16,30,86,0.06) 100%
        );
}


/* IMAGE HOVER */

.ax-speaker-card:hover
.ax-speaker-photo img {
    transform: scale(1.035);
}


/* =========================================================
   SPEAKER INFORMATION
========================================================= */

.ax-speaker-info {
    width: 100%;

    min-width: 0;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    padding:
        17px 10px 12px;
}


/* NAME */

.ax-speaker-info h3 {
    width: 100%;

    min-height: 28px;

    margin: 0 0 7px;

    color: #111f5b;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 25px;

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -0.25px;

    overflow-wrap: break-word;
}


/* INSTITUTION */

.ax-speaker-institution {
    width: 100%;

    min-height: 38px;

    margin: 0;

    color: #667294;

    font-family:
        "EB Garamond",
        Georgia,
        serif;

    font-size: 15px;

    line-height: 1.35;

    overflow-wrap: break-word;
}


/* =========================================================
   COUNTRY
========================================================= */

.ax-speaker-country {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 25px;

    margin-top: 9px;

    color: #182766;

    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 600;

    line-height: 1;
}


.ax-speaker-country img {
    display: block;

    width: 25px;

    height: auto;

    max-height: 18px;

    object-fit: contain;

    border-radius: 2px;

    box-shadow:
        0 1px 5px rgba(0,0,0,0.14);
}


/* =========================================================
   BOTTOM LABEL
========================================================= */

.ax-speaker-bottom {
    width: calc(100% - 20px);

    min-height: 43px;

    box-sizing: border-box;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin: auto 10px 0;

    padding: 10px 4px;

    border-top:
        1px solid rgba(215,171,62,0.40);

    color: #26349a;

    font-family:
        "Space Mono",
        monospace;

    font-size: 9px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 2.5px;

    text-align: center;
}


.ax-speaker-bottom i {
    color: #d8a82f;

    font-size: 13px;

    flex: 0 0 auto;
}


/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.ax-speakers-button-wrap {
    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 46px;
}


.ax-speakers-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 25px;

    min-width: 235px;

    box-sizing: border-box;

    padding: 14px 24px;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #111b52 0%,
            #293bb8 55%,
            #4730c5 100%
        );

    color: #ffffff;

    text-decoration: none;

    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.2px;

    box-shadow:
        0 12px 28px rgba(49,48,157,0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.ax-speakers-button span {
    font-size: 19px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.ax-speakers-button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(49,48,157,0.28);
}


.ax-speakers-button:hover span {
    transform: translateX(5px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .ax-speakers-grid {
        grid-template-columns:
            repeat(4, 270px);

        justify-content: center;

        column-gap: 55px;

        row-gap: 30px;
    }

}


/* =========================================================
   TABLET — 2 COLUMNS
========================================================= */

@media (max-width: 1000px) {

    .ax-speakers-section {
        padding:
            75px 20px 85px;
    }


    .ax-speakers-container {
        width: min(760px, 100%);
    }


    .ax-speakers-grid {
        grid-template-columns:
            repeat(2, minmax(0, 270px));

        justify-content: center;

        gap: 28px;
    }


    .ax-speakers-heading {
        margin-bottom: 48px;
    }


    .ax-speakers-heading h2 {
        font-size: 54px;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 700px) {

    .ax-speakers-section {
        padding:
            65px 16px 75px;
    }


    .ax-speakers-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }


    .ax-speaker-card {
        max-width: 270px;

        padding:
            10px 10px 0;
    }


    .ax-speaker-photo {
        width: 100%;
        height: auto;

        aspect-ratio: 1 / 1;

        min-width: 0;
        min-height: 0;

        flex: 0 0 auto;
    }


    .ax-speaker-photo img {
        width: 100%;
        height: 100%;

        min-width: 0;
        min-height: 0;

        object-fit: cover;
    }


    .ax-speaker-number {
        top: 10px;
        left: 10px;
    }


    .ax-speaker-info h3 {
        font-size: 22px;
    }


    .ax-speaker-institution {
        font-size: 14px;
    }


    .ax-speaker-bottom {
        font-size: 8px;
        letter-spacing: 2px;
    }

}


/* =========================================================
   MOBILE — 1 COLUMN
========================================================= */

@media (max-width: 560px) {

    .ax-speakers-section {
        padding:
            55px 15px 65px;
    }


    .ax-speakers-container {
        width: 100%;
    }


    /* HEADING */

    .ax-speakers-heading {
        margin-bottom: 35px;
    }


    .ax-heading-overline {
        gap: 9px;

        font-size: 9px;

        letter-spacing: 2.3px;
    }


    .ax-heading-overline span {
        width: 28px;
    }


    .ax-speakers-heading h2 {
        font-size: 42px;

        line-height: 1;
    }


    .ax-speakers-heading p {
        margin-top: 16px;

        font-size: 16px;

        line-height: 1.45;
    }


    .ax-speakers-heading p br {
        display: none;
    }


    /* GRID */

    .ax-speakers-grid {
        grid-template-columns: 1fr;

        gap: 22px;

        justify-items: center;
    }


    /* CARD */

    .ax-speaker-card {
        width: min(100%, 310px);

        max-width: 310px;

        padding:
            10px 10px 0;

        border-radius: 18px;
    }


    /* MOBILE IMAGE */

    .ax-speaker-photo {
        width: 220px;
        height: 220px;

        min-width: 220px;
        min-height: 220px;

        flex: 0 0 220px;

        aspect-ratio: auto;
    }


    .ax-speaker-photo img {
        width: 220px;
        height: 220px;

        min-width: 220px;
        min-height: 220px;
    }


    /* NUMBER */

    .ax-speaker-number {
        top: 10px;
        left: 10px;

        width: 38px;
        height: 38px;

        border-radius: 10px;
    }


    /* INFO */

    .ax-speaker-info {
        padding:
            15px 12px 11px;
    }


    .ax-speaker-info h3 {
        font-size: 25px;

        line-height: 1.08;
    }


    .ax-speaker-institution {
        font-size: 15px;

        line-height: 1.35;
    }


    .ax-speaker-country {
        margin-top: 8px;

        font-size: 13px;
    }


    /* BOTTOM */

    .ax-speaker-bottom {
        min-height: 44px;

        margin-left: 10px;
        margin-right: 10px;

        font-size: 9px;

        letter-spacing: 2.2px;
    }


    /* BUTTON */

    .ax-speakers-button-wrap {
        margin-top: 35px;
    }


    .ax-speakers-button {
        width: 100%;

        max-width: 290px;

        min-width: 0;
    }


    /* DECORATIONS */

    .ax-bg-left {
        width: 350px;
        height: 350px;

        left: -270px;

        top: 100px;
    }


    .ax-bg-right {
        width: 380px;
        height: 380px;

        right: -300px;

        bottom: 30px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .ax-speakers-section {
        padding-left: 10px;
        padding-right: 10px;
    }


    .ax-speakers-heading h2 {
        font-size: 38px;
    }


    .ax-speaker-card {
        width: 100%;

        max-width: 290px;
    }


    .ax-speaker-photo {
        width: 220px;
        height: 220px;
    }


    .ax-speaker-photo img {
        width: 220px;
        height: 220px;
    }


    .ax-speaker-info h3 {
        font-size: 23px;
    }


    .ax-speaker-institution {
        font-size: 14px;
    }

}



/* =========================================================
   ADVOPTIX 2027
   CONFERENCE VENUE SECTION
========================================================= */

.ax-venue-section {
    position: relative;
    overflow: hidden;
    padding: 25px 0 20px;
    background:
        radial-gradient(
            circle at 5% 25%,
            rgba(102, 88, 210, 0.09),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 65%,
            rgba(212, 165, 67, 0.08),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f8ff 55%,
            #ffffff 100%
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.ax-venue-container {
    width: min(1380px, calc(100% - 50px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* =========================================================
   DECORATIVE ORBITS
========================================================= */

.ax-venue-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.55;
}

.ax-venue-orbit-left {
    width: 500px;
    height: 500px;
    left: -300px;
    top: 30px;

    border: 1px solid rgba(86, 78, 210, 0.20);

    box-shadow:
        0 0 0 25px rgba(86, 78, 210, 0.035),
        0 0 0 55px rgba(86, 78, 210, 0.025),
        0 0 0 90px rgba(86, 78, 210, 0.018);
}


.ax-venue-orbit-right {
    width: 440px;
    height: 440px;
    right: -270px;
    bottom: 30px;

    border: 1px solid rgba(214, 166, 60, 0.22);

    box-shadow:
        0 0 0 25px rgba(214, 166, 60, 0.035),
        0 0 0 55px rgba(214, 166, 60, 0.025);
}


/* =========================================================
   DOT PATTERNS
========================================================= */

.ax-venue-dots {
    position: absolute;
    width: 110px;
    height: 110px;
    opacity: 0.45;

    background-image: radial-gradient(
        rgba(79, 72, 203, 0.55) 1.5px,
        transparent 1.5px
    );

    background-size: 14px 14px;
    pointer-events: none;
}

.ax-venue-dots-left {
    left: 30px;
    top: 280px;
}

.ax-venue-dots-right {
    right: 25px;
    bottom: 190px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.ax-venue-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 52px;
}


.ax-venue-overline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-bottom: 12px;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #142568;
}


.ax-venue-overline span {
    display: block;
    width: 68px;
    height: 2px;
    background: #d6a63c;
}


.ax-venue-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond",
                 "Georgia",
                 serif;

    font-size: clamp(55px, 6vw, 78px);
    line-height: 0.95;
    font-weight: 600;

    letter-spacing: -2px;
    color: #142568;
}


.ax-venue-heading h2 em {
    color: #c89525;
    font-style: normal;
}


.ax-venue-heading p {
    max-width: 720px;
    margin: 22px auto 0;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;

    color: #58658e;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.ax-venue-main {
    display: grid;
    grid-template-columns: 0.92fr 1.25fr;
    gap: 26px;

    padding: 10px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.72);

    box-shadow:
        0 20px 70px rgba(27, 34, 91, 0.08);

    border: 1px solid rgba(111, 102, 208, 0.12);
}


/* =========================================================
   VENUE INFORMATION CARD
========================================================= */

.ax-venue-info {
    padding: 42px 42px 38px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfbff 100%
        );

    border: 1px solid rgba(214, 166, 60, 0.30);

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(29, 39, 100, 0.06);
}


.ax-venue-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;
    color: #5c67a1;
}


.ax-venue-label i {
    color: #d6a63c;
    font-size: 18px;
}


.ax-venue-info h3 {
    margin: 0 0 20px;

    font-family: "Cormorant Garamond",
                 "Georgia",
                 serif;

    font-size: clamp(42px, 4vw, 58px);
    line-height: 0.98;

    font-weight: 600;

    color: #142568;
    letter-spacing: -1px;
}


/* =========================================================
   ADDRESS
========================================================= */

.ax-venue-address {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}


.ax-address-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff9e9;

    color: #d39f2e;

    font-size: 17px;
}


.ax-venue-address strong {
    display: block;

    margin-bottom: 5px;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;

    color: #1a2a68;
}


.ax-venue-address p {
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.65;

    color: #59678f;
}


/* =========================================================
   DIVIDER
========================================================= */

.ax-venue-divider {
    width: 100%;
    height: 1px;

    margin: 25px 0;

    background:
        linear-gradient(
            90deg,
            rgba(76, 72, 184, 0.18),
            rgba(76, 72, 184, 0.05),
            transparent
        );
}


/* =========================================================
   DESCRIPTION
========================================================= */

.ax-venue-description {
    margin: 0 0 12px;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.7;

    color: #58678f;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.ax-venue-highlights {
    display: flex;
    align-items: center;

    margin-top: 28px;
    margin-bottom: 30px;
}


.ax-venue-highlight {
    display: flex;
    align-items: center;
    gap: 10px;

    flex: 1;
}


.ax-highlight-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid rgba(83, 79, 210, 0.20);

    box-shadow:
        0 6px 15px rgba(64, 63, 171, 0.08);

    color: #4039cf;
}


.ax-venue-highlight strong,
.ax-venue-highlight span {
    display: block;

    font-family: "Inter", sans-serif;
    font-size: 9px;

    letter-spacing: 1px;
}


.ax-venue-highlight strong {
    color: #18276a;
    font-weight: 800;
}


.ax-venue-highlight span {
    margin-top: 3px;

    color: #52608a;
    font-weight: 600;
}


.ax-highlight-separator {
    width: 1px;
    height: 30px;

    margin: 0 13px;

    background: rgba(61, 67, 139, 0.20);
}


/* =========================================================
   MAP BUTTON
========================================================= */

.ax-venue-map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    width: 100%;
    min-height: 56px;

    padding: 0 24px;

    border-radius: 50px;

    text-decoration: none;

    background:
        linear-gradient(
            100deg,
            #3731c8,
            #5447ec
        );

    color: #ffffff;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 12px 25px rgba(69, 60, 205, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.ax-venue-map-btn i:first-child {
    font-size: 17px;
}


.ax-venue-map-btn i:last-child {
    margin-left: auto;

    transition: transform 0.3s ease;
}


.ax-venue-map-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 17px 30px rgba(69, 60, 205, 0.30);
}


.ax-venue-map-btn:hover i:last-child {
    transform: translateX(5px);
}


/* =========================================================
   GALLERY
========================================================= */

.ax-venue-gallery {
    min-width: 0;
    padding: 35px;
}


/* =========================================================
   MAIN VENUE IMAGE
========================================================= */

.ax-venue-main-image {
    position: relative;

    height: 448px;

    overflow: hidden;

    border-radius: 17px;

    background: #e9e9f2;
}


.ax-venue-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.ax-venue-main-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   LOCATION BADGE
========================================================= */

.ax-venue-location-badge {
    position: absolute;

    top: 18px;
    right: 18px;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 12px 20px;

    border-radius: 40px;

    background: rgba(255, 255, 255, 0.96);

    color: #18296c;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 8px 25px rgba(16, 29, 74, 0.15);
}


.ax-venue-location-badge i {
    color: #d49f2b;
}


/* =========================================================
   GALLERY ARROWS
========================================================= */

.ax-gallery-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.94);

    color: #243477;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(15, 24, 62, 0.16);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.ax-gallery-prev {
    left: 18px;
}


.ax-gallery-next {
    right: 18px;
}


.ax-gallery-arrow:hover {
    transform: translateY(-50%) scale(1.08);

    background: #ffffff;
}


/* =========================================================
   THUMBNAILS
========================================================= */

.ax-venue-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;

    margin-top: 12px;
}


.ax-venue-thumb {
    position: relative;

    height: 112px;

    padding: 0;

    border: 2px solid transparent;

    border-radius: 12px;

    overflow: hidden;

    background: #ffffff;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}


.ax-venue-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}


.ax-venue-thumb:hover {
    transform: translateY(-3px);
}


.ax-venue-thumb:hover img {
    transform: scale(1.05);
}


.ax-venue-thumb.active {
    border-color: #d6a63c;

    box-shadow:
        0 5px 16px rgba(211, 161, 47, 0.18);
}


/* =========================================================
   VENUE FEATURE STRIP
========================================================= */

.ax-venue-features {
    display: grid;
    grid-template-columns:
        1fr
        auto
        1fr
        auto
        1fr
        auto
        1fr;

    align-items: center;

    margin-top: 32px;

    padding: 15px 10px;
}


.ax-venue-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}


.ax-feature-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 52px;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid rgba(79, 72, 203, 0.17);

    color: #4039d1;

    box-shadow:
        0 7px 18px rgba(59, 59, 151, 0.08);

    font-size: 18px;
}


.ax-venue-feature strong,
.ax-venue-feature span {
    display: block;

    font-family: "Inter", sans-serif;
    font-size: 11px;

    letter-spacing: 1px;
}


.ax-venue-feature strong {
    color: #17276a;
    font-weight: 800;
}


.ax-venue-feature span {
    margin-top: 3px;

    color: #55628b;
    font-weight: 600;
}


.ax-feature-divider {
    width: 1px;
    height: 32px;

    background: rgba(69, 76, 153, 0.20);
}


/* =========================================================
   BOTTOM LINE
========================================================= */

.ax-venue-bottom-line {
    width: 100%;
    height: 1px;

    margin-top: 15px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(214, 166, 60, 0.30),
            rgba(75, 70, 188, 0.20),
            transparent
        );
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .ax-venue-main {
        grid-template-columns: 1fr;
    }

    .ax-venue-info {
        padding: 35px;
    }

    .ax-venue-main-image {
        height: 430px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .ax-venue-section {
        padding: 75px 0 65px;
    }

    .ax-venue-container {
        width: min(100% - 28px, 650px);
    }

    .ax-venue-heading {
        margin-bottom: 35px;
    }

    .ax-venue-overline {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .ax-venue-overline span {
        width: 35px;
    }

    .ax-venue-heading h2 {
        font-size: 48px;
    }

    .ax-venue-heading p {
        font-size: 14px;
    }

    .ax-venue-main {
        padding: 6px;
        border-radius: 18px;
    }

    .ax-venue-info {
        padding: 28px 23px;
    }

    .ax-venue-info h3 {
        font-size: 42px;
    }

    .ax-venue-description {
        font-size: 13px;
    }

    .ax-venue-highlights {
        flex-wrap: wrap;
        gap: 18px;
    }

    .ax-venue-highlight {
        flex: 0 0 calc(50% - 10px);
    }

    .ax-highlight-separator {
        display: none;
    }

    .ax-venue-main-image {
        height: 270px;
    }

    .ax-venue-location-badge {
        top: 12px;
        right: 12px;

        padding: 9px 14px;

        font-size: 11px;
    }

    .ax-gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .ax-venue-thumbnails {
        gap: 7px;
    }

    .ax-venue-thumb {
        height: 72px;
        border-radius: 8px;
    }

    .ax-venue-features {
        grid-template-columns: 1fr 1fr;
        gap: 25px 12px;
    }

    .ax-feature-divider {
        display: none;
    }

    .ax-venue-feature {
        justify-content: flex-start;
    }

    .ax-feature-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 15px;
    }

    .ax-venue-feature strong,
    .ax-venue-feature span {
        font-size: 9px;
    }

    .ax-venue-dots-left,
    .ax-venue-dots-right {
        opacity: 0.2;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ax-venue-heading h2 {
        font-size: 42px;
    }

    .ax-venue-info h3 {
        font-size: 36px;
    }

    .ax-venue-address {
        gap: 10px;
    }

    .ax-address-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 14px;
    }

    .ax-venue-address p {
        font-size: 12px;
    }

    .ax-venue-highlight {
        flex: 0 0 100%;
    }

    .ax-venue-main-image {
        height: 230px;
    }

    .ax-venue-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .ax-venue-thumb {
        height: 62px;
    }

    .ax-venue-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}

/* ============================================================
   ADVOPTIX HERO — MOBILE VERSION
   Keep HTML unchanged
============================================================ */


/* ============================================================
   TABLET — 901px TO 700px
============================================================ */

@media (max-width: 900px) {

    .ax-hero {

        min-height: auto;
        max-height: none;

        padding: 0;

        overflow: hidden;

    }


    .ax-hero-container {

        width: min(92%, 680px);

        min-height: auto;

        margin: 0 auto;

        padding: 55px 0 65px;

        display: grid;

        grid-template-columns: 1fr;

        gap: 0;

    }


    /* --------------------------------------------------------
       LOGO
    -------------------------------------------------------- */

    .ax-hero-logo-area {

        width: 100%;

        height: 180px;

        padding: 0;

        display: flex;

        align-items: center;

        justify-content: center;

    }


    .ax-hero-logo {

        width: auto;

        max-width: 190px;

        max-height: 170px;

        object-fit: contain;

    }


    /* --------------------------------------------------------
       HORIZONTAL DIVIDER
    -------------------------------------------------------- */

    .ax-hero-divider {

        width: 100%;

        height: 1px;

        margin: 5px 0 35px;

        background:
            linear-gradient(
                90deg,
                transparent 0%,
                rgba(74,66,205,.12) 15%,
                rgba(74,66,205,.45) 50%,
                rgba(74,66,205,.12) 85%,
                transparent 100%
            );

    }


    .ax-hero-divider::before {

        top: 50%;

        left: 50%;

        width: 6px;

        height: 6px;

        transform:
            translate(-50%, -50%);

    }


    /* --------------------------------------------------------
       CONTENT
    -------------------------------------------------------- */

    .ax-hero-content {

        width: 100%;

        padding: 0;

        align-items: center;

        text-align: center;

    }


    /* --------------------------------------------------------
       CONFERENCE LABEL
    -------------------------------------------------------- */

    .ax-hero-label {

        width: 100%;

        justify-content: center;

        gap: 10px;

        margin-bottom: 15px;

        font-size: 10px;

        letter-spacing: .18em;

        line-height: 1.5;

    }


    .ax-hero-label-line {

        width: 22px;

        flex-shrink: 0;

    }


    /* --------------------------------------------------------
       TITLE
    -------------------------------------------------------- */

    .ax-hero-title {

        width: 100%;

        max-width: 620px;

        margin: 0 auto;

        font-size:
            clamp(42px, 9vw, 58px);

        line-height: .98;

        letter-spacing: -.035em;

        white-space: normal;

    }


    /* --------------------------------------------------------
       TAGLINE
    -------------------------------------------------------- */

    .ax-hero-tagline {

        margin:
            18px 0 24px;

        font-size: 18px;

        line-height: 1.45;

    }


    /* --------------------------------------------------------
       EVENT INFORMATION
    -------------------------------------------------------- */

    .ax-hero-meta {

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 12px;

        margin-bottom: 28px;

        font-size: 15px;

    }


    .ax-hero-meta-item {

        justify-content: center;

        gap: 9px;

        white-space: normal;

    }


    .ax-meta-icon {

        width: 32px;

        height: 32px;

        flex: 0 0 32px;

        font-size: 11px;

    }


    .ax-meta-separator {

        display: none;

    }


    /* --------------------------------------------------------
       BUTTONS
    -------------------------------------------------------- */

    .ax-hero-actions {

        width: 100%;

        max-width: 420px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 10px;

    }


    .ax-hero-btn {

        width: 100%;

        min-width: 0;

        height: 48px;

        padding:
            0 17px;

        justify-content: space-between;

        font-size: 12px;

    }


    /* --------------------------------------------------------
       BACKGROUND CIRCLES
    -------------------------------------------------------- */

    .ax-hero-bg-left {

        width: 420px;

        height: 420px;

        left: -300px;

        top: -180px;

        opacity: .45;

    }


    .ax-hero-bg-right {

        width: 360px;

        height: 360px;

        right: -260px;

        bottom: -220px;

        opacity: .45;

    }


    .ax-hero::after {

        width: 320px;

        height: 180px;

        right: -150px;

        bottom: -130px;

        opacity: .65;

    }

}


/* ============================================================
   MOBILE — 700px
============================================================ */

@media (max-width: 700px) {

    .ax-hero {

        min-height: 0;

        width: 100%;

        background:
            linear-gradient(
                135deg,
                #ffffff 0%,
                #fbfbff 52%,
                #f3f4ff 100%
            );

    }


    .ax-hero-container {

        width: calc(100% - 30px);

        padding:
            28px 0
            42px;

    }


    /* --------------------------------------------------------
       LOGO AREA
    -------------------------------------------------------- */

    .ax-hero-logo-area {

        height: 145px;

        justify-content: center;

    }


    .ax-hero-logo {

        max-width: 155px;

        max-height: 140px;

    }


    /* --------------------------------------------------------
       DIVIDER
    -------------------------------------------------------- */

    .ax-hero-divider {

        margin:
            3px 0
            29px;

    }


    /* --------------------------------------------------------
       LABEL
    -------------------------------------------------------- */

    .ax-hero-label {

        gap: 8px;

        margin-bottom: 13px;

        font-size: 8px;

        letter-spacing: .16em;

    }


    .ax-hero-label-line {

        width: 18px;

    }


    /* --------------------------------------------------------
       TITLE
    -------------------------------------------------------- */

    .ax-hero-title {

        max-width: 430px;

        font-size:
            clamp(38px, 11vw, 50px);

        line-height: 1;

        letter-spacing: -.035em;

    }


    /* --------------------------------------------------------
       TAGLINE
    -------------------------------------------------------- */

    .ax-hero-tagline {

        margin:
            16px 0
            22px;

        font-size: 16px;

        line-height: 1.45;

    }


    /* --------------------------------------------------------
       META
    -------------------------------------------------------- */

    .ax-hero-meta {

        gap: 10px;

        margin-bottom: 25px;

        font-size: 14px;

    }


    .ax-hero-meta-item {

        gap: 8px;

    }


    .ax-meta-icon {

        width: 30px;

        height: 30px;

        flex-basis: 30px;

    }


    /* --------------------------------------------------------
       BUTTONS
    -------------------------------------------------------- */

    .ax-hero-actions {

        width: 100%;

        max-width: 100%;

        gap: 9px;

    }


    .ax-hero-btn {

        height: 47px;

        border-radius: 5px;

        font-size: 11px;

        padding:
            0 15px;

    }


    /* --------------------------------------------------------
       BACKGROUND DECORATION
    -------------------------------------------------------- */

    .ax-hero-bg-left {

        width: 340px;

        height: 340px;

        left: -250px;

        top: -120px;

        opacity: .40;

    }


    .ax-hero-bg-right {

        width: 300px;

        height: 300px;

        right: -225px;

        bottom: -180px;

        opacity: .40;

    }


    .ax-hero::after {

        width: 280px;

        height: 150px;

        right: -150px;

        bottom: -105px;

        opacity: .55;

    }

}


/* ============================================================
   SMALL MOBILE — 430px
============================================================ */

@media (max-width: 430px) {

    .ax-hero-container {

        width: calc(100% - 28px);

        padding:
            22px 0
            35px;

    }


    /* Logo becomes compact */

    .ax-hero-logo-area {

        height: 125px;
        display: none;

    }


    .ax-hero-logo {

        max-width: 135px;

        max-height: 120px;

    }


    /* Divider */

    .ax-hero-divider {

        margin:
            0 0
            25px;

    }


    /* Label */

    .ax-hero-label {

        gap: 6px;

        font-size: 7px;

        letter-spacing: .13em;

        white-space: nowrap;

    }


    .ax-hero-label-line {

        width: 14px;

    }


    /* Title */

    .ax-hero-title {

        max-width: 350px;

        font-size: 39px;

        line-height: .98;

    }


    /* Tagline */

    .ax-hero-tagline {

        margin:
            15px 8px
            21px;

        font-size: 15px;

    }


    /* Event information */

    .ax-hero-meta {

        gap: 9px;

        margin-bottom: 23px;

        font-size: 13px;

    }


    .ax-meta-icon {

        width: 29px;

        height: 29px;

        flex-basis: 29px;

        font-size: 10px;

    }


    /* Buttons */

    .ax-hero-btn {

        height: 46px;

        font-size: 10px;

        padding:
            0 14px;

    }


    /* Decorations */

    .ax-hero-bg-left {

        width: 280px;

        height: 280px;

        left: -215px;

        top: -105px;

    }


    .ax-hero-bg-right {

        width: 250px;

        height: 250px;

        right: -190px;

        bottom: -150px;

    }


    .ax-hero::after {

        width: 240px;

        height: 125px;

        right: -135px;

        bottom: -85px;

    }

}