.venue-art { height:auto; background:linear-gradient(135deg,#25272e,#52565e); position:relative; display:grid; place-items:center; color:#fff; }
.venue-art i { font-size:75px; color:var(--red); }
.venue-art span { position:absolute; bottom:30px; left:30px; font-weight:700; }
.venue-details { display:grid; gap:10px; margin:25px 0; color:#777; font-size:20px; font-weight: 400; }
.venue-details i { color:var(--red); margin-right:8px; }


/* =========================================================
   IMPORTANT DATES / CONFERENCE TABLE
   ========================================================= */

.conference-table-wrapper {
    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #e7e7eb;

    box-shadow:
        0 15px 45px rgba(12, 2, 70, 0.08);

    position: relative;
}


/* =========================================================
   TABLE
   ========================================================= */

.conference-table {
    width: 100%;

    border-collapse: collapse;

    margin: 0;

    font-family: Poppins, Arial, sans-serif;
}


/* =========================================================
   TABLE HEADER
   ========================================================= */

.conference-table thead {
    background:
        linear-gradient(
            135deg,
            #0c0246,
            #460112
        );
}

.conference-table thead th {
    color: #fff;

    font-family: Montserrat, sans-serif;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    padding: 20px 28px;

    border: 0;
}

.conference-table thead th:first-child {
    text-align: left;
}

.conference-table thead th:last-child {
    width: 250px;
    text-align: center;
}


/* =========================================================
   TABLE BODY
   ========================================================= */

.conference-table tbody tr {
    border-bottom: 1px solid #eeeeF2;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.conference-table tbody tr:last-child {
    border-bottom: 0;
}

.conference-table tbody tr:hover {
    background: #faf8fa;
}


/* =========================================================
   TABLE CELLS
   ========================================================= */

.conference-table td {
    padding: 20px 28px;

    color: #4d4d57;

    font-size: 13px;

    vertical-align: middle;
}

.conference-table td:last-child {
    text-align: center;
}


/* =========================================================
   ACTIVITY TITLE
   ========================================================= */

.date-title {
    display: flex;

    align-items: center;

    gap: 14px;

    font-weight: 600;

    color: #24232b;
}


/* =========================================================
   ICON
   ========================================================= */

.date-icon {
    width: 42px;
    height: 42px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(12, 2, 70, 0.08),
            rgba(70, 1, 18, 0.08)
        );

    color: #0c0246;

    font-size: 17px;

    transition: 0.3s ease;
}

.conference-table tr:hover .date-icon {
    background: #e43d55;

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   DATE BADGE
   ========================================================= */

.date-badge {
    display: inline-block;

    min-width: 135px;

    padding: 9px 16px;

    border-radius: 30px;

    background: #f5f4f7;

    color: #0c0246;

    font-family: Montserrat, sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.3px;

    border: 1px solid #e7e7eb;
}


/* =========================================================
   HIGHLIGHT DATE
   ========================================================= */

.date-badge.highlight {
    background: #e43d55;

    border-color: #e43d55;

    color: #fff;

    box-shadow:
        0 6px 18px rgba(228, 61, 85, 0.25);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 767px) {

    .conference-table-wrapper {
        border-radius: 12px;
    }

    .conference-table thead th {
        padding: 15px 14px;

        font-size: 10px;
    }

    .conference-table thead th:last-child {
        width: 125px;
    }

    .conference-table td {
        padding: 14px 12px;

        font-size: 11px;
    }

    .date-title {
        gap: 9px;
    }

    .date-icon {
        width: 34px;
        height: 34px;

        font-size: 14px;
    }

    .date-badge {
        min-width: auto;

        padding: 7px 9px;

        font-size: 9px;
    }
}

/* =========================================================
   REGISTRATION TABLE
   ========================================================= */

.registration-table-wrapper {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e7e7eb;

    box-shadow:
        0 18px 50px rgba(12, 2, 70, 0.09);
}


/* TABLE */

.registration-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-family: Poppins, Arial, sans-serif;
}


/* HEADER */

.registration-table thead {
    background: linear-gradient(
        135deg,
        #0c0246,
        #25072f,
        #460112
    );
}

.registration-table th {
    color: #fff;

    padding: 22px 25px;

    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.registration-table th:first-child {
    text-align: left;
}

.registration-table th:not(:first-child) {
    width: 220px;
    text-align: center;
}

.registration-table th small {
    display: block;

    margin-top: 4px;

    font-family: Poppins, sans-serif;
    font-size: 9px;
    font-weight: 400;

    text-transform: none;
    letter-spacing: 0;

    color: rgba(255,255,255,.65);
}


/* BODY */

.registration-table tbody tr {
    border-bottom: 1px solid #ededf1;

    transition: .3s ease;
}

.registration-table tbody tr:last-child {
    border-bottom: 0;
}

.registration-table tbody tr:hover {
    background: #faf9fb;
}


/* CELLS */

.registration-table td {
    padding: 20px 25px;

    vertical-align: middle;

    color: #555560;

    font-size: 13px;
}

.registration-table td:not(:first-child) {
    text-align: center;

    border-left: 1px solid #f0f0f3;
}


/* CATEGORY */

.registration-category {
    display: flex;
    align-items: center;
    gap: 15px;
}

.registration-category strong {
    color: #24232b;

    font-family: Montserrat, sans-serif;

    font-size: 14px;
    font-weight: 700;
}


/* ICON */

.registration-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        rgba(12,2,70,.08),
        rgba(228,61,85,.08)
    );

    color: #0c0246;

    font-size: 18px;

    transition: .3s ease;
}

.registration-table tr:hover .registration-icon {
    background: #e43d55;
    color: #fff;

    transform: translateY(-2px);
}


/* PRICE */

.price {
    display: inline-block;

    min-width: 115px;

    padding: 10px 15px;

    border-radius: 30px;

    background: #f5f4f7;

    border: 1px solid #e7e7eb;

    color: #0c0246;

    font-family: Montserrat, sans-serif;

    font-size: 12px;
    font-weight: 800;
}


/* EARLY BIRD */

.early-price {
    background: rgba(228,61,85,.08);

    border-color: rgba(228,61,85,.20);

    color: #c82b45;
}


/* =========================================================
   REGISTER BUTTON
   ========================================================= */

.registration-action {
    text-align: center;

    margin-top: 40px;
}


/* BUTTON */

.registration-action .btn-register {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 220px;

    padding: 15px 32px;

    background: #e43d55;

    border: 2px solid #e43d55;

    border-radius: 5px;

    color: #fff;

    font-family: Montserrat, sans-serif;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .7px;

    transition: all .3s ease;

    box-shadow:
        0 10px 25px rgba(228,61,85,.22);
}


/* ICON */

.registration-action .btn-register i {
    font-size: 16px;
}


/* HOVER */

.registration-action .btn-register:hover {

    background: #c82b45;

    border-color: #c82b45;

    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(228,61,85,.30);
}


/* DESCRIPTION */

.registration-action p {

    margin: 12px 0 0;

    color: #888;

    font-size: 10px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .registration-table-wrapper {
        border-radius: 12px;

        overflow-x: auto;
    }

    .registration-table {
        min-width: 650px;
    }

    .registration-table th {
        padding: 16px 14px;

        font-size: 10px;
    }

    .registration-table td {
        padding: 15px 12px;

        font-size: 11px;
    }

    .registration-category {
        gap: 10px;
    }

    .registration-category strong {
        font-size: 11px;
    }

    .registration-icon {
        width: 38px;
        height: 38px;

        min-width: 38px;

        font-size: 14px;
    }

    .price {
        min-width: 95px;

        padding: 8px 10px;

        font-size: 10px;
    }

    .registration-action {
        margin-top: 30px;
    }

    .registration-action .btn-register {
        width: 100%;

        max-width: 280px;

        padding: 14px 25px;
    }
}