:root {
    --red: #C8102E;
    --red-dark: #A00D25;
    --red-light: #F5E6E9;
    --red-mid: #FBECEE;
    --charcoal: #1A1A1A;
    --body: #3D3D3D;
    --muted: #7A7A7A;
    --border: #E5E5E5;
    --bg: #FFFFFF;
    --bg-off: #F9F7F7;
    --bg-section: #F4F1F1;
    --gold: #B8862A;
    --gold-light: #F5EDD8;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x:auto;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header.header {
    padding: 5px 0;
    position: relative;
    z-index: 9;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-badge {
    width: 36px;
    height: 36px;
    border-radius: 7px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 15px;
    color: white;
}

.nav-logo-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--charcoal);
}

.nav-logo-sub {
    font-size: 9.5px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}
    .nav-links a {
        color: #000;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: color .18s;
        line-height: 14px;
        font-family: "Poppins", sans-serif;
    }
    .nav-links a:hover {
            color: var(--charcoal);
        }

.nav-cta {
    background: var(--red);
    color: white !important;
    padding: 9px 22px;
    border-radius: 5px;
    font-size: 11.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s;
    box-shadow: 0 2px 12px rgba(200,16,46,.25);
}

    .nav-cta:hover {
        background: var(--red-dark) !important;
    }
.threebtn a.commonbtn span {
    display: block;
    font-size: 21px;
    color: #c8102e;
    font-weight: 600;
    line-height: 21px;
}

.hamburger span {
    display: block;
    width: 23px;
    height: 3px;
    background: #ffff;
}
    .hamburger span:not(:last-child) {
        margin: 0 0 5px 0;
    }

/* HERO */
.hero {
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 190px;
}
.hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 46%;
    background: linear-gradient(155deg, var(--red-mid) 0%, var(--red-light) 100%);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.hero-circle-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,16,46,.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-circle-2 {
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,134,42,.07) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
}
.hero-content .hero-left {
    width: 70%;
}
.hero-content .hero-right {
    width: 30%;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-light);
    border: 1.5px solid rgba(200,16,46,.2);
    color: var(--red);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 10.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 24px;
}

    .hero-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--red);
        animation: pulse 2s infinite;
        flex-shrink: 0;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .3;
        transform: scale(1.5)
    }
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    font-weight: 900;
    line-height: 65px;
    color: #1c1b17;
    margin-bottom: 20px;
}
    .hero-title em {
        font-style: italic;
        color: var(--red);
    }

.hero-tagline {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 24px;
}

    .hero-tagline span {
        flex: 0 0 22px;
        height: 1px;
        background: var(--gold);
        opacity: .5;
        display: block;
    }
.hero-subtitle {
    font-size: 20px;
    line-height: 30px;
    color: #1c1b17;
    margin-bottom: 32px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 68px;
    margin-bottom: 30px;
}
.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    color: #1c1b17;
    font-weight: 500;
}
    .hero-meta-item .icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        background: #c8102e;
        border: 1px solid rgba(200,16,46,.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        flex-shrink: 0;
    }
.icon img {
    height: 25px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(152deg) brightness(103%) contrast(103%);
}
.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


    .btn-primary:hover {
        background: var(--red-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(200,16,46,.4);
    }

.btn-outline {
    background: white;
    color: var(--charcoal);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: border-color .18s, transform .15s;
    display: inline-block;
}

    .btn-outline:hover {
        border-color: var(--charcoal);
        transform: translateY(-2px);
    }

/* COUNTDOWN */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.countdown-card {
    background: white;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 12px 48px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
    border-top: 5px solid #c8102e;
}
.countdown-label {
    font-size: 9.5px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 22px;
    font-weight: 700;
}

.countdown-grid {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: flex-start;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.countdown-num {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: #c8102e;
    border: 1px solid var(--border);
    border-radius: 10px;
    width: 70px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}

.countdown-unit-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.countdown-sep {
    font-size: 30px;
    color: var(--red);
    align-self: flex-start;
    padding-top: 10px;
    font-weight: 700;
    line-height: 1;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
}

.stat-item {
    padding: 18px 10px;
    text-align: center;
    border-right: 1px solid var(--border);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--red);
}

.stat-desc {
    font-size: 9.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 700;
}

/* SHARED SECTION */
.sw {
    max-width: 1200px;
    margin: 0 auto;
    padding: 88px 48px;
}

.section-label {
    font-size: 10.5px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 900;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 18px;
}

    .section-title em {
        font-style: italic;
        color: var(--red);
    }

.section-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 580px;
}

.divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 16px;
}

    .divider::before, .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.divider-gem {
    font-size: 13px;
    color: var(--red);
    opacity: .45;
}

/* WHY ATTEND */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 48px;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 17px;
    border-radius: 10px;
    background: white;
    border: 1px solid var(--border);
    transition: border-color .2s, box-shadow .2s, transform .15s;
}

    .benefit-item:hover {
        border-color: rgba(200,16,46,.25);
        box-shadow: 0 4px 18px rgba(200,16,46,.08);
        transform: translateX(4px);
    }

.benefit-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--red-light);
    border: 1px solid rgba(200,16,46,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.benefit-text {
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
}

    .benefit-text strong {
        color: var(--charcoal);
        display: block;
        margin-bottom: 2px;
        font-size: 13.5px;
        font-weight: 600;
    }

.image-frame {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    background: linear-gradient(135deg, var(--red-light) 0%, var(--gold-light) 100%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 56px rgba(0,0,0,.09);
}

.image-frame-inner {
    text-align: center;
    padding: 36px;
}

    .image-frame-inner .big-icon {
        font-size: 72px;
        display: block;
        margin-bottom: 14px;
    }

    .image-frame-inner p {
        font-size: 15px;
        font-weight: 600;
        color: var(--charcoal);
    }

    .image-frame-inner small {
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        display: block;
        margin-top: 6px;
    }

.fdot {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

    .fdot.tl {
        top: -28px;
        left: -28px;
        background: radial-gradient(circle, rgba(200,16,46,.12) 0%, transparent 70%);
    }

    .fdot.br {
        bottom: -28px;
        right: -28px;
        background: radial-gradient(circle, rgba(184,134,42,.12) 0%, transparent 70%);
    }

/* SPEAKERS */
.bg-section {
    background: var(--bg-section);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.speaker-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 22px;
    display: flex;
    gap: 18px;
    align-items: center;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

    .speaker-card:hover {
        border-color: rgba(200,16,46,.3);
        box-shadow: 0 8px 32px rgba(200,16,46,.1);
        transform: translateY(-4px);
    }

.speaker-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border: 2px solid var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.speaker-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.speaker-role {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
    font-weight: 700;
}

.speaker-bio {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--muted);
}

/* HIGHLIGHTS */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 40px;
}

.highlight-card {
    background: white;
    border: 1px solid var(--border);
    padding: 26px 18px;
    border-radius: 12px;
    text-align: center;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

    .highlight-card:hover {
        border-color: rgba(200,16,46,.25);
        box-shadow: 0 6px 28px rgba(200,16,46,.08);
        transform: translateY(-4px);
    }

.highlight-icon {
    font-size: 26px;
    margin-bottom: 12px;
    display: block;
}

.highlight-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.highlight-desc {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.55;
}

/* EXPERIENCES */
.experience-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}

.exp-chip {
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--body);
    font-weight: 500;
    transition: border-color .18s, background .18s;
}

    .exp-chip:hover {
        border-color: var(--red);
        background: var(--red-mid);
    }

    .exp-chip .ci {
        font-size: 17px;
    }

/* CTA BAND */
.cta-band {
    padding: 0 48px 80px;
}

.cta-inner {
    background: var(--red);
    border-radius: 20px;
    padding: 60px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(200,16,46,.3);
}

    .cta-inner::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        pointer-events: none;
    }

    .cta-inner::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(0,0,0,.09);
        pointer-events: none;
    }

.cta-elabel {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    line-height: 1.15;
}

.cta-sub {
    font-size: 14.5px;
    color: rgba(255,255,255,.75);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.btn-white {
    background: white;
    color: var(--red);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .18s, transform .15s;
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
    display: block;
    text-align: center;
}

    .btn-white:hover {
        background: var(--bg-off);
        transform: translateY(-2px);
    }

.btn-ghost {
    background: rgba(255,255,255,.12);
    color: white;
    padding: 13px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.3);
    transition: background .18s, border-color .18s, transform .15s;
    display: block;
    text-align: center;
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.22);
        border-color: rgba(255,255,255,.6);
        transform: translateY(-2px);
    }



.fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}
.header.fixed-header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0 0 20px 0 #0000001a;
    background: #fff;
}
.nav-links a:hover {
    color: #d12031;
}
/* Bottom Wave */
.bottom-wave {
    position: absolute;
    bottom: -31px;
    left: 0;
    width: 100%;
    transform: rotatey(180deg);
}
.herosectionbanner::before, .herosectionbanner::after {
    content: "";
    background-image: url('../img/bannerbottomdsgn.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    width: 100%;
    height: 220px;
    left: 0;
    bottom: 6px;
}

.herosectionbanner::after {
    background-image: url('../img/bannertop.png');
    bottom: auto;
    top: 0;
    height: 60px;
}
.commonbtndsgn a {
    font-size: 15px;
    line-height: 45px;
    padding: 0 20px;
    text-decoration: none;
    background: transparent;
    color: #c8102e;
    border: 1px solid;
    border-radius: 10px;
    text-transform: capitalize;
    position: relative;
}
/*    .commonbtndsgn a::before {
        content: "";
        background-image: url('../img/arrow.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        height: 40px;
        width: 40px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }*/
    .commonbtndsgn a:hover {
        background: #c8102e;
        color: #fff;
    }
a.nav-logo {
    display: inline-block;
    max-width: 200px;
}
    a.nav-logo img {
        width: 100%;
    }
.hero-subtitle span {
    color: #c8102e;
    font-weight: 600;
}
.bannerimg img {
    width: 100%;
    height: 595px;
    object-fit: cover;
}
section.bannnersectionwrpa .container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding-top: 20px;
}
.logobanner img {
    width: 100%;
}
.logobanner {
    max-width: 430px;
    margin: 0 150px 0 auto;
}
.ninehundredcontent {
    display: flex;
    align-items: center;
    gap: 15px;
}
    .ninehundredcontent .nineplus {
        font-size: 80px;
        line-height: 80px;
        font-weight: 700;
        color: #ce2231;
        font-family: "Poppins", sans-serif;
    }
    .ninehundredcontent .busnsprofesional {
        font-size: 25px;
        line-height: 35px;
        font-weight: 600;
        padding: 0 540px 0 0;
    }
.sixhourscontenticon {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 10px 0 10px 0;
    padding: 10px 0 10px 0;
    border-top: 1px solid #00000070;
    border-bottom: 1px solid #00000070;
    max-width: 720px;
}
.sixcontent p {
    font-size: 22px;
    color: #1c1b17;
    font-weight: 700;
    line-height: 27px;
}
.sixcontent p span {
    font-size: 40px;
    display: block;
    font-weight: bold;
    color: #c8102e;
}
.micon {
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c8102e;
    border-radius: 15px;
}
    .micon img {
        height: 40px;
    }
.hero-meta-item span.red {
    color: #c8102e;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
}
.hero-meta-item div:last-child {
    line-height: 20px;
}
.sixcontent p span.sixhwrap {
    display: flex;
    align-items: flex-end;
    margin: 0 0 7px 0;
    gap: 7px;
}
.sixcontent p span.hours {
    font-size: 30px;
    line-height: 30px;
}
.threebtn a.commonbtn {
    font-size: 14px;
    line-height: 20px;
    display: inline-block;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
    background: #fff;
    padding: 15px 20px 15px 60px;
    border-radius: 15px;
    position: relative;
    font-family: "Poppins", sans-serif;
}
    .threebtn a.commonbtn span {
        display: block;
        font-size: 18px;
        color: #c8102e;
    }
    .threebtn a.commonbtn::before {
        content: "";
        background-image: url('../img/p.png');
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 15px;
        height: 30px;
        width: 30px;
        background-size: 100% 100%;
        margin: auto;
        filter: brightness(0) saturate(100%) invert(13%) sepia(88%) saturate(5399%) hue-rotate(344deg) brightness(80%) contrast(94%);
    }
    .threebtn a.commonbtn.third span {
        font-size: 14px;
        border-bottom: 1px solid #fff;
        color: #fff;
    }
    .threebtn a.commonbtn.third::before {
        background-image: url('../img/s.png');
        filter: brightness(0) saturate(100%) invert(100%) sepia(97%) saturate(13%) hue-rotate(237deg) brightness(104%) contrast(104%);
    }
    .threebtn a.commonbtn.third {
        color: #fff;
        background: transparent;
    }
.bnrthreebtnwrap {
    background: transparent;
    padding: 15px 15px 15px 0;
    display: inline-block;
}
section.bannnersectionwrpa::before {
    content: "";
    background: #ce2231;
    position: absolute;
    left: 0;
    bottom: 56.7px;
    height: 101px;
    width: 100%;
    max-width: 750px;
    border-radius: 0 20px 20px 0;
}
.threebtn {
    display: flex;
    gap: 45px;
}
    .threebtn .btnwrap:not(:last-child)::before, 
    .bnrtiminadress .hero-meta-item:not(:last-child)::before {
        content: "";
        border-right: 1px solid #fff;
        position: absolute;
        top: 0;
        bottom: 0;
        right: -27px;
        margin: auto;
        height: 50px;
    }
    .threebtn .btnwrap:not(:last-child)::before {
        right: -25px;
    }
    .threebtn .btnwrap,
    .bnrtiminadress .hero-meta-item {
        position: relative;
    }
        .bnrtiminadress .hero-meta-item:not(:last-child)::before {
            border-color: #000;
        }
.hamburger {
    display: none;
}
.contact-list-three li img {
    height: 20px;
    width: 20px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7484%) hue-rotate(188deg) brightness(94%) contrast(100%);
}
li.thirdcontact img.footericon {
    height: 14px;
}
.venuedeatail ul.contact-list-three li {
    margin: 0 0 11px 0;
}
.main-footer.style-three .copyright-text a {
    display: flex;
    align-items: center;
    gap: 6px;
}
.main-footer .footer-bottom .copyright-text p span.tmttext {
    font-size: 14px;
}
.tmtlogo {
    width: 80px;
}
.btnwrap.thirdicon a.commonbtn::before {
    background-image: url('../img/s.png');
}
.responsiveview {
    display: none;
}



.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 0 20px 0 #0000001f;
    z-index: 9;
}
.dropdown-content a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
}
.dropdown:hover .dropdown-content {
    display: block;
}
/*nav .dropdown > a::before {
    content: "";
    background-image: url('../img/arm.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -9px;
    height: 5px;
    width: 5px;
    margin: auto;
    transform: rotate(93deg);
   
}*/
.btnwrap.thirdicon a.commonbtn {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 6px;
}
    .btnwrap.thirdicon a.commonbtn span {
        display: inline-block;
    }
.threeboxcontent {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
    margin: 40px 0;
}
    .threeboxcontent > div {
        padding: 30px 30px;
        box-shadow: 0 0 30px 0 #0000001c;
    }
    .threeboxcontent h2.widget-title {
        margin: 0 0 10px 0;
        color: #cc2642;
        font-size: 30px;
    }
.speaker-block-two .blockspan {
    display: block;

}
section.gallerysection .sec-title h2,
section.keynotespeakers .sec-title h2 {
    color: #000;
}

section.gallerysection figure.image img {
    height: 250px;
    object-fit: cover;
}

section.keynotespeakers {
    padding: 40px 0;
}

.gridkeynote {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 15px;
}

.keynote img {
    width: 100%;
}

section.keynotespeakers.second2023 {
    background: #cf203026;
}
section.clients-section .auto-container > .row {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    grid-gap: 10px;
    margin: 0 0 20px 0;
}
    section.clients-section .auto-container > .row > div {
        width: 100%;
        padding: 0;
        margin: 0;
    }
section.speakers-section-two .auto-container > .row > div > div > div {
    padding: 0;
}
section.speakers-section-two .auto-container > .row {
    display: grid;
    grid-template-columns: repeat(8,1fr);
    grid-gap: 15px;
}
    section.speakers-section-two .auto-container > .row > div {
        width: 100%;
        padding: 0;
        margin: 0;
    }
        section.speakers-section-two .auto-container > .row > div .info-box {
            margin: 10px 0 0 0;
        }
    /*font-family: "Poppins", sans-serif;     font-family: "Oswald", sans-serif; #d12031, #1c1b17*/
