/* =========================================================
   WEBINAR POPUP - ALL STYLES SCOPED
========================================================= */

.webinar-popup-main {
    font-family: "TTInterphasesProVariable", Arial, sans-serif;
}




/* Please Take CSS Here >>>>>>>>>>>>>>>>>>>>>>*/

/* =========================
   POPUP
========================= */

.webinar-popup-main.webinar-popup-main {
    position: fixed;
    width: 100%;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    overflow: auto;
    padding: 60px 32px;
    box-sizing: border-box;
}

.webinar-popup-main .webinar-popup {
    position: relative;
    width: min(1027px, 100%);
    margin: auto;
    overflow: hidden;
    background: #fff;
    color: #000;
    box-sizing: border-box;
}

/* =========================
   CLOSE BUTTON
========================= */

.webinar-popup-main .webinar-close {
    position: absolute;
    top: 6px;
    right: 4px;
    z-index: 20;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #333;
    font-size: 32px;
    line-height: 28px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.webinar-popup-main .webinar-close:hover {
    opacity: 0.5;
}

/* =========================
   MAIN CONTENT
========================= */

.webinar-popup-main .webinar-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 38px 18px 30px 18px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.webinar-popup-main .webinar-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: bottom right;
    background-repeat: no-repeat;
    z-index: -1;
}

/* =========================
   LEFT CONTENT
========================= */

.webinar-popup-main .webinar-left {
    display: flex;
    flex-direction: column;
    width: 46%;
}

.webinar-popup-main .webinar-eyebrow {
    font-size: 16px;
    line-height: 1.15;
    font-weight: 400;
    margin: 0 0 8px;
    color: #111;
    text-transform: uppercase;
}

.webinar-popup-main .webinar-eyebrow sup {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    top: -0.5em;
}

.webinar-popup-main .webinar-title {
     margin: 0 0 15px;
    max-width: 510px;
    color: var(--red);
    font-size: 36px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.8px;
}

.webinar-popup-main .webinar-description {
    width: 470px;
    max-width: 100%;
    margin: 0 0 24px;
    color: var(--darkgray);
    font-size: 16px;
    line-height: 125%;
    font-weight: 500;
}

/* =========================
   EVENT DETAILS
========================= */

.webinar-popup-main .event-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.webinar-popup-main .event-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.webinar-popup-main .event-icon {
    position: relative;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--red);
}

/* =========================
   CALENDAR / CLOCK ICON
========================= */

.webinar-popup-main .calendar-icon,
.webinar-popup-main .clock-icon {
    width: 32px;
    height: 32px;
}

.webinar-popup-main .calendar-icon img,
.webinar-popup-main .clock-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* =========================
   EVENT TEXT
========================= */

.webinar-popup-main .event-text {
    color: #050505;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

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

.webinar-popup-main .register-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    padding: 9px 32px;
    box-sizing: border-box;
    background: var(--red);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 584;
    transition: background 0.2s ease;
    line-height: 1.25rem;
}

.webinar-popup-main .register-btn:hover {
    background: #b90000;
    color: #fff;
}

/* =========================
   RIGHT SIDE
========================= */

.webinar-popup-main .webinar-right {
    position: relative;
    width: 54%;
}

.webinar-popup-main .laptop-image {
    position: absolute;
    width: 420px;
    max-width: none;
    left: -40px;
    top: 90px;
    display: block;
}

/* =========================
   FOOTER
========================= */

.webinar-popup-main .webinar-footer {
    width: 100%;
    margin-top: 24px;
    font-size: 11px;
    line-height: 1.28;
}

.webinar-popup-main .webinar-footer p {
    margin: 0 0 8px;
    color: #83838F;
    font-weight: 500;
}

.webinar-popup-main .webinar-footer p.disclaimer {
    color: var(--darkgray);
}

.webinar-popup-main .webinar-footer .copyright {
    margin-bottom: 8px;
}

/* =========================
   KEY LOGO
========================= */

.webinar-popup-main .key-logo {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 20;
    width: 80px;
    height: 42px;
}

.webinar-popup-main .key-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* 21-08-2026*/
.webinar-popup-main .investment-disclaimer {
    color: var(--darkgray);
    margin: 12px 0;
    padding: 8px;
    border: 2px solid var(--darkgray);
    font-weight: 500;
    font-size: 11px;    
}

/* 25-08-2026 */
.webinar-popup-main .webinar-footer p:last-child {
    margin-bottom:0
}



/* =========================
   DESKTOP EXACT SIZE
========================= */

@media (min-width: 1028px) {

    .webinar-popup-main .webinar-popup {
        max-width: 690px;
    }

}

/* =========================
   TABLET
========================= */

@media (max-width: 1199px) {

    .webinar-popup-main .laptop-image {
        width: 465px;
    }

}

@media (max-width: 1023px) {

    .webinar-popup-main .webinar-inner {
        padding: 40px 35px;
    }

    .webinar-popup-main .webinar-left {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .webinar-popup-main .webinar-right {
        width: 100%;
        margin-block: 40px;
    }

    .webinar-popup-main .webinar-right img {
        margin: 0 auto;
    }

    .webinar-popup-main .webinar-eyebrow {
        font-size: 21px;
    }

    .webinar-popup-main .webinar-title {
        font-size: 42px;
    }

    .webinar-popup-main .webinar-description {
        font-size: 18px;
    }

    .webinar-popup-main .event-text {
        font-size: 27px;
    }

    .webinar-popup-main .event-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .webinar-popup-main .laptop-image {
        position: static;
        max-width: 100%;
    }

    .webinar-popup-main .webinar-footer {
        font-size: 12px;
        text-align: center;
        margin: auto;
    }

}

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

@media (max-width: 767px) {

    .webinar-popup-main.webinar-popup-main {
        padding: 48px 16px;
    }

    .webinar-popup-main .webinar-inner {
        display: block;
        height: auto;
        padding: 35px 25px;
    }

    .webinar-popup-main .webinar-eyebrow {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .webinar-popup-main .webinar-title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .webinar-popup-main .webinar-description {
        font-size: 16px;
        line-height: 1.25;
        margin-bottom: 22px;
    }

    .webinar-popup-main .event-details {
        gap: 10px;
    }

    .webinar-popup-main .event-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .webinar-popup-main .calendar-icon,
    .webinar-popup-main .clock-icon {
        width: 32px;
        height: 32px;
        margin: auto;
        display: table;
        position: relative;
        left: 1px;
    }

    .webinar-popup-main .event-text {
        font-size: 20px;
    }

    .webinar-popup-main .register-btn {
        width: 220px;
        height: 52px;
        font-size: 20px;
    }

    .webinar-popup-main .laptop-image {
        width: 270px;
        max-width: 100%;
    }

    .webinar-popup-main .webinar-footer {
        font-size: 10px;
    }

    .webinar-popup-main .key-logo {
        display: none;
    }

}