﻿@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@500;600;700&display=swap');

.myVideo, html {
    height: 100%
}
.myVideo, .topwrapper {
    left: 0;
    top: 0;
    width: 100%
}
.speakertd, .table1 td:first-child, .table1 td:nth-child(2) span, .table1 th {
    font-family: Nunito, sans-serif;
}
img {
    max-width: 100%;
    display: block;
}
a, abbr, acronym, applet, article, aside, audio, b, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, span, summary, table, tbody, td, tfoot, th, thead, time, tr, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
a{
    transition: all 0.3s ease;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
ol {
    list-style: decimal;
    margin-left: 30px;
}
ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:after, blockquote:before, q:after, q:before {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
section {
    padding: 40px 0;
}
body {
    background: #142938;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}
.header-logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: #ffffff!important;
}
.topwrapper {
    margin: 0 auto;
    padding: 16px 30px 16px;
    clear: both;
    content: "";
    z-index: 5;
    position: -webkit-sticky;
    position: sticky;
    background: #CDE4F0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 72px;
}
.topleft .logo1{
    height: 46px;
}
.topleft .logo2{
    display: none;
}
.topright {
    float: right;
    display: block;
    margin: 0;
}
.idxheaderbg {
    padding: 60px 0;
}
.idxregwrapper{
    padding: 40px 0;
}
.sectiontitle{
    position: relative;
    font-family: "Inter", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
    color: var(--cyan);
}


/*.container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }*/

        .section-padding {
            padding: 80px 0;
        }

        .cyan-text {
            color: var(--cyan);
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 10px 20px;
            font-size: 0.9rem;
            border-radius: 30px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-purple {
            background-color: var(--purple);
            color: var(--text-white);
        }
        .btn-purple:hover {
            background: rgba(0, 179, 185, 1);
        }

        .btn-cyan {
            background-color: var(--cyan);
            color: var(--text-white);
        }
        .btn-cyan:hover {
            background-color: var(--cyan-hover);
            color: var(--text-white);
        }

        .btn-outline-cyan {
            background-color: transparent;
            border: 1px solid var(--cyan);
            color: var(--cyan);
        }
        .btn-outline-cyan:hover {
            background-color: var(--cyan);
            color: var(--text-white);
        }

        .btn-grn {
            background-color: var(--grn);
            color: var(--text-white);
        }
        .btn-grn:hover {
            background-color: var(--grn-hover);
            color: var(--text-white);
        }

        /* Navbar */
        .navbar {
            background-color: #ffffff;
            color: var(--text-dark);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-weight: 800;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .nav-logo-icon {
            width: 20px;
            height: 20px;
            background-color: #e53e3e;
            display: inline-block;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--cyan);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero */
        .hero {
            position: relative;
            padding: 100px 0;
            min-height: 80vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            opacity: 1;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 150px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-left .summit-logo {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 30px;
        }

        .hero-left .summit-logo i {
            font-size: 2.5rem;
            color: #fff;
        }

        .hero-left h1 {
            font-size: 2.2rem;
            line-height: 1.2;
            font-weight: 700;
        }

        .hero-date {
            font-size: 0.95rem;
            color: #e2e8f0;
        }

        .badge {
            display: inline-block;
            background-color: rgba(237, 27, 47, 1);
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero-right h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.1;
        }

        .hero-right p {
            font-size: 0.95rem;
            color: #e2e8f0;
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        /* About Section */
        .about-container {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--cyan);
        }

        .about-content h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .about-content p {
            color: var(--text-gray);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .about-img {
            margin-top: 30px;
            width: 100%;
            height: 200px;
            object-fit: cover;
            object-position: center calc(100% + 50px);
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        /* Market Snapshot Card */
        .market-snapshot {
            background-color: #ffffff;
            color: var(--text-dark);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .snapshot-header {
            background: rgba(39, 81, 111, 1);
            padding: 25px 30px;
        }

        .snapshot-header h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .snapshot-header p {
            color: #a0aec0;
            font-size: 0.9rem;
        }

        .snapshot-body {
            padding: 10px 30px 30px 30px;
        }

        .snapshot-list {
            list-style: none;
        }

        .snapshot-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            margin-bottom: 15px;
            background-color: #f8fafc;
            border-radius: 8px;
            border: 1px solid #edf2f7;
        }

        .snapshot-list li:last-child {
            margin-bottom: 0;
        }

        .icon-box {
            width: 45px;
            height: 45px;
            background-color: var(--cyan);
            color: white;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.05rem;
            flex-shrink: 0;
        }

        .text-box h4 {
            font-size: 0.95rem;
            font-weight: 700;
        }

        .text-box p {
            font-size: 0.8rem;
            color: #718096;
            margin: 0;
            line-height: 1.3;
        }

        /* Why Attend */
        .why-attend-container {
            display: grid;
            grid-template-columns: 60fr 40fr;
            gap: 50px;
            align-items: stretch;
        }

        .why-attend-content > p {
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        .benefits-card {
            background-color: transparent;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .benefits-header {
            background-color: #23425a;
            padding: 20px 30px;
        }

        .benefits-header h3 {
            font-size: 1.25rem;
            margin-bottom: 5px;
            color: #ffffff;
        }

        .benefits-header p {
            color: #a0aec0;
            font-size: 0.85rem;
            margin: 0;
        }
        
        .benefits-body {
            background-color: #162432;
        }

        .benefits-list {
            list-style: none;
        }

        .benefits-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 10px;
            margin: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .benefits-list li:last-child {
            border-bottom: none;
        }

        .icon-box-small {
            width: 35px;
            height: 35px;
            background-color: var(--cyan);
            color: #fff;
            border-radius: 6px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            font-size: 0.9rem;
        }

        .benefits-list .text-box h4 {
            font-size: 0.75rem;
            margin-bottom:2px;
        }

        .benefits-list .text-box p {
            color: var(--text-gray);
            font-size: 0.8rem;
        }

        .why-attend-img-wrapper {
            width: 100%;
            height: 80%;
            align-self: end;
            min-height: 400px;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            margin: 0 auto;
        }

        .why-attend-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* Who Will Attend */
        .section-header {
            margin-bottom: 40px;
        }

        .wa-header {
            margin-left: 38%;
        }

        .text-center {
            text-align: center;
        }

        .header-with-line {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-with-line p {
            color: var(--text-white);
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .header-with-line .line {
            height: 1px;
            background-color: var(--cyan);
            flex-grow: 1;
        }

        .who-attend .header-with-line {
            justify-content: flex-start;
        }

        .who-attend .header-with-line .line {
            flex-grow: 0;
            width: 150px;
            height: 3px;
            background: linear-gradient(90deg, var(--cyan), transparent);
            border-radius: 2px;
        }

        .who-attend-container {
            display: grid;
            grid-template-columns: 40fr 60fr;
            gap: 40px;
            align-items: stretch;
        }

        .who-attend-img {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            object-fit: cover;
            object-position: center top;
        }

        .who-attend-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .wa-card {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(32, 55, 71, 1);
            backdrop-filter: blur(18px);
            box-shadow: 0px 18px 40px -12px rgba(0, 0, 0, 0.4);
            border-radius: 12px;
            padding: 25px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .wa-icon {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            color: white;
        }

        .wa-icon.orange { background-color: #ed8936; }
        .wa-icon.cyan { background-color: var(--cyan); }

        .wa-content p { color: var(--text-gray); font-size: 0.9rem; }
        .wa-content h2 { font-size: 2.2rem; margin: 5px 0; color: white; }
        .wa-content h4 { font-size: 1.05rem; margin-bottom: 15px; color: white; }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            background-color: rgba(0, 180, 216, 0.15);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #ffffff;
            font-weight: 500;
            border: 1px solid rgba(0, 180, 216, 0.1);
        }

        /* Key Themes */
        .themes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .theme-card {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(32, 55, 71, 1);
            backdrop-filter: blur(18px);
            box-shadow: 0px 18px 40px -12px rgba(0, 0, 0, 0.4);
            padding: 25px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            height: 190px;
            max-width: 280px;
            margin: 0 auto;
            width: 100%;
        }

        .theme-icon {
            width: 35px;
            height: 35px;
            background-color: var(--cyan);
            color: #fff;
            border-radius: 6px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .theme-card p {
            font-weight: 500;
            font-size: 0.9rem;
            color: white;
            line-height: 1.4;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .theme-card .card-line {
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--cyan), transparent);
            border-radius: 2px;
        }

        /* Key Opportunities */
        .opportunities-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
        }

        .opp-card {
            background-color: var(--cyan);
            border-radius: 12px;
            padding: 20px 15px;
            text-align: left;
            box-shadow: 0 10px 20px rgba(0, 180, 216, 0.2);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            height: 150px;
        }

        .opp-card:hover {
            transform: translateY(-5px);
        }

        .opp-icon-box {
            width: 35px;
            height: 35px;
            background-color: rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .opp-icon-box i {
            color: #fff;
            font-size: 0.9rem;
        }

        .opp-card p {
            font-weight: 700;
            font-size: 0.95rem;
            line-height: 1.2;
            color: #fff;
            margin: 0;
        }

        /* Speakers */
        .speakers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .speaker-card {
            text-align: center;
        }

        .speaker-card img {
            width: 100%;
            height: 250px;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            object-position: center 20%;
            border-radius: 12px;
            margin: 0 auto 15px auto;
            display: block;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .speaker-card h4 {
            color: var(--cyan);
            font-size: 0.95rem;
            margin-bottom: 5px;
        }

        .speaker-card p {
            font-size: 0.9rem;
            color: var(--text-white);
        }

        .speaker-card .company {
            font-weight: 700;
            font-size: 0.85rem;
            margin-top: 2px;
        }

        /* Footer */
        .footer {
            background-color: #ffffff;
            color: var(--text-dark);
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 1.5fr 2fr;
            gap: 60px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: #4a5568;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }

        .socials p {
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            width: 35px;
            height: 35px;
            background-color: #edf2f7;
            color: #4a5568;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .social-icons a:hover {
            background-color: var(--cyan);
            color: white;
        }

        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .footer-col h4 {
            font-size: 1rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer-col a {
            display: block;
            color: #4a5568;
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .footer-col a:hover {
            color: var(--cyan);
        }

.hero-bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; opacity: 0.5; }
    .hero-section { position: relative; z-index: 1; overflow: hidden; }



        /* Premium Scroll Reveal Animation */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), 
                        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: opacity, transform;
        }

        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered delays */
        .scroll-reveal.delay-1 { transition-delay: 0.1s; }
        .scroll-reveal.delay-2 { transition-delay: 0.2s; }
        .scroll-reveal.delay-3 { transition-delay: 0.3s; }
        .scroll-reveal.delay-4 { transition-delay: 0.4s; }

        




.idxpartnersbox img, .idxpartnersbox1 img, .idxpartnersbox2 img, .speakerbox img {
    width: 100%;
    display: table;
}


.hrwrapper hr {
    background-color: #2e97ce;
    height: 3px;
    margin: 30px 0;
    display: block;
    width: 100%}

.idxspeakerwrapper,  .idxpartnerwrapper {
    display: block;
    position: relative;
}
.idxpartnersbox, .speakerbox,  .idxpartnersbox2 {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: normal;
}

/*Speaker*/

.speaker-container{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}
.speaker-box{
    display: block;
    width: calc(25% - 40px);
    max-width: 100%;
    transition: var(--transition);
}
.speaker-box:hover{
    transform: translateY(-5px);
}
.speaker-box:hover .speaker-pic img{
    box-shadow: 4px -4px 10px 0 rgba(0, 0, 0, 0.1);
}
.speaker-content{
    text-align: center;
    padding: 24px 20px;  
}
.speaker-pic{
    position: relative;
}
.speaker-pic img{
    display: block;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 8px 8px 4px 0 rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}
.speaker-text1{
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    color: #000000;
}
.speaker-text2{
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0;
    color: #000000;
}
.img-overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 246, 231, 0.1);
    /*z-index: -1;*/
    border-radius: 12px;
}

/*Partner*/

.idxpartnersbox h6, .idxpartnersbox1 h6, .idxpartnersbox2 h6 {
    font-size: 11px;
    color: #1D1F1E;
    margin-top: 8px;
    font-weight: bold;
}
.idxpartnersbox {
    width: 20%;
    margin: 1%;
    padding: 7px 1%;
    border-radius: 7px;
    background: #fff;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
    box-shadow: 0px 18px 40px -12px rgba(255, 255, 255, 0.2);
    position: relative;
    transition: var(--transition);
}
.idxpartnersbox:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/*Footer*/

.footerwrapper {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 400;
    background: #FCFCFC;
}
.footerwrapper p{
    font-size: 14px;
}
.footerwrapper a {
    color: #000;
    text-decoration: none;
}
.footerwrapper a:hover {
    color: #0a8eae;
}
.footercol1 {
    padding: 0 0 15px;
    font-size: 14px;
}
.footerlogo {
    display: block;
    float: left;
    margin: 0 0 20px;
}
.organiserboximg1, .organiserboximg2 {
    margin: 0 auto 15px;
    text-align: center;
}
.footercol2 {
    padding: 8px 0;
}
.footerbottomright h4, .footercol2 h4 {
    display: block;
    font-weight: 700;
    color: #000000;
    line-height: normal;
    margin-bottom: 15px;
    font-size: 14px;
}
.footercol2 ul li {
    padding: 0;
    margin: 0 0 10px;
    font-size: 14px;
}
.footerbottom {
    font-size: 14px;
    line-height: 16px;
}
.footersocial a img {
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    margin-right: 12px;
}

/*Thank you*/

.thankyoutext h4, .thankyoutext h6 {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    line-height: 140%;
    margin-bottom: 10px;
    letter-spacing: 0;
    font-weight: 600;
}
.thankyoutext {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 26px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 36px;
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
}
.thankyoutext h6 {
    color: var(--cyan)
}
.thankyoutext h6 span {
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
}
.thankyoulink {
    text-align: center;
}
.thankyoulink a {
    font-weight: 400;
}
.tybtn a {
    display: inline-block;
    border-radius: 12px;
    padding: 17px 16px;
    font-size: 18px;
    line-height: normal;
    border: none;
    box-sizing: border-box;
    text-decoration: none;
    max-width: 100%;
    transition: .3s all;
    width: 300px;
    max-width: 80%;
    text-align: center;
}

.thankyoutext p {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #000000;
    letter-spacing: 0;
    padding: 0;
}
.table1 td, .table1 th {
    padding: 10px;
    font-size: 13px;
}
.idxboxcon {
    width: 80%;
    margin: auto;
}

/*Agenda*/

.tablemain {
    width: 1000px;
    margin: 0 auto;
    padding: 0;
}
.table1 {
    width: 100%;
    margin: 0 auto;
    border: 3px solid #0447AD;;
    text-align: left;
}
.table1 tr {
    background: #eaeaea;
}
.table1 tr:nth-child(2n) {
    background: #fff;
}
.table1 th {
    background: #0447AD;;
    color: #fff;
    font-weight: 900;
    line-height: 18px;
    text-transform: uppercase;
    text-align: left;
}
.table1 th:nth-child(2) {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
}
.table1 tr:hover {
    background-color: #cacaca;
}
.table1 td {
    line-height: normal;
}
.table1 td:first-child {
    font-size: 12px;
    width: 25%}
.table1 td:nth-child(2) {
    width: 75%;
    border-left: 1px solid #a4a4a4;
    border-right: 1px solid #a4a4a4;
}
.table1 td:nth-child(2) span {
    color: #000;
    font-weight: 700;
}
.table-responsive {
    overflow-x: auto;
}
.speakertd {
    display: none!important;
    font-weight: 900;
}
.table1demo td {
    background-color: #000;
    color: #fff!important;
}


.hero-info{
    font-size: 20px;
    line-height: 100%;
    color: var(--white);
}
.hero-title-tag{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
}

.idxawards .tags .tag{
    border: 1px solid #dddddd;
    background-color: transparent;
    color: #000000;
    transition: all 0.3s ease;
}
.idxawards .tags .tag:hover{
    transform: translateY(-2px);
}