.elementor-18989 .elementor-element.elementor-element-4f98068c{--display:flex;}.elementor-18989 .elementor-element.elementor-element-b8066ad{--display:flex;}.elementor-18989 .elementor-element.elementor-element-e4e42aa{--display:flex;}.elementor-18989 .elementor-element.elementor-element-454bb88{--n-tabs-heading-justify-content:initial;--n-tabs-title-width:100%;--n-tabs-title-height:initial;--n-tabs-title-align-items:center;--n-tabs-title-flex-grow:1;--n-tabs-heading-wrap:wrap;--n-tabs-heading-overflow-x:initial;--n-tabs-title-white-space:initial;--n-tabs-title-gap:2px;--n-tabs-title-color:#222222;}.elementor-18989 .elementor-element.elementor-element-454bb88.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs[data-touch-mode='false'] > .e-n-tabs-heading > .e-n-tab-title[aria-selected="false"]:hover{background:#41B37F;}.elementor-18989 .elementor-element.elementor-element-454bb88.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading > .e-n-tab-title[aria-selected="true"], .elementor-18989 .elementor-element.elementor-element-454bb88.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs[data-touch-mode='true'] > .e-n-tabs-heading > .e-n-tab-title[aria-selected="false"]:hover{background:#41B37F;}:where( .elementor-18989 .elementor-element.elementor-element-454bb88.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-content ) > .e-con{--padding-top:32px;--padding-right:32px;--padding-bottom:32px;--padding-left:32px;}/* Start custom CSS for text-editor, class: .elementor-element-841900d *//* =========================================================
   EVENT / TRAINING SCHEDULE UI
   ========================================================= */

.event-schedule {
    --primary: #b5d9e8;
    --primary-dark: #daeaf2;
    --secondary: #2f8f83;
    --accent: #e8f3f7;
    --text: #263238;
    --muted: #3b3d3d;
    --border: #dce7ec;
    --white: #ffffff;
    --shadow: 0 8px 24px rgba(31, 95, 139, 0.08);

    max-width: 1200px;
    margin: 30px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 Helvetica, Arial, sans-serif;
    color: var(--text);
}


/* =========================
   MONTH SECTION
   ========================= */

.event-month {
    display: grid;
    grid-template-columns: 230px 1fr;
    margin-bottom: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}


/* =========================
   MONTH LABEL
   ========================= */

.month-label {
    position: relative;
    padding: 35px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(
        145deg,
        var(--primary),
        var(--primary-dark)
    );

    color: #ffffff;
}

/*
.month-label::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);

    width: 24px;
    height: 24px;

    background: var(--primary-dark);
    rotate: 45deg;
}
*/

.month-icon {
    font-size: 30px;
    margin-bottom: 12px;
    line-height: 1;
}

.month-label h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.month-label span {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    opacity: 0.85;
    font-weight: 400;
}


/* =========================
   EVENT LIST
   ========================= */

.event-list {
    padding: 12px;
    background: #f8fbfc;
}


/* =========================
   EVENT CARD
   ========================= */

.event-card {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 20px;

    padding: 22px;
    margin-bottom: 10px;

    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.event-card:last-child {
    margin-bottom: 0;
}

.event-card:hover {
    transform: translateY(-2px);
    border-color: #b9d3df;
    box-shadow: 0 8px 20px rgba(31, 95, 139, 0.10);
}


/* =========================
   EVENT CONTENT
   ========================= */

.event-content {
    min-width: 0;
}

.event-title {
    margin: 0 0 9px;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 700;
    color: #20343d;
}

.event-description {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
}


/* =========================
   DATE BADGE
   ========================= */

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 10px;
    padding: 6px 11px;

    background: var(--accent);
    color: #3a5d6b;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;
}




/* =========================
   LINK BUTTON
   ========================= */

.event-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 100px;
    padding: 10px 16px;

    background: var(--secondary);
    color: #ffffff !important;

    border-radius: 7px;

    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.event-button:hover {
    background: #26766c;
    color: #ffffff !important;
    transform: translateY(-1px);
}


/* =========================
   LIST STYLE
   ========================= */

.event-description ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.event-description li {
    margin-bottom: 6px;
}


/* =========================
   SPECIAL TITLE
   ========================= */

.event-title strong {
    font-weight: 750;
}


/* =========================
   RESPONSIVE TABLET
   ========================= */

@media (max-width: 800px) {

    .event-month {
        grid-template-columns: 170px 1fr;
    }

    .month-label {
        padding: 25px 15px;
    }

    .month-label h2 {
        font-size: 17px;
    }

    .event-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .event-action {
        justify-content: flex-start;
    }

    .event-button {
        min-width: 120px;
    }
}


/* =========================
   RESPONSIVE MOBILE
   ========================= */

@media (max-width: 600px) {

    .event-schedule {
        margin: 15px auto;
    }

    .event-month {
        display: block;
        border-radius: 12px;
    }

    .month-label {
        min-height: auto;
        padding: 20px 15px;
    }

    .month-label::after {
        display: none;
    }

    .month-icon {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .month-label h2 {
        font-size: 17px;
    }

    .month-label span {
        font-size: 11px;
    }

    .event-list {
        padding: 8px;
    }

    .event-card {
        padding: 17px;
        border-radius: 10px;
    }

    .event-title {
        font-size: 15px;
        line-height: 1.5;
    }

    .event-description {
        font-size: 13px;
    }

    .event-button {
        width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-841900d *//* =========================================================
   EVENT / TRAINING SCHEDULE UI
   ========================================================= */

.event-schedule {
    --primary: #b5d9e8;
    --primary-dark: #daeaf2;
    --secondary: #2f8f83;
    --accent: #e8f3f7;
    --text: #263238;
    --muted: #3b3d3d;
    --border: #dce7ec;
    --white: #ffffff;
    --shadow: 0 8px 24px rgba(31, 95, 139, 0.08);

    max-width: 1200px;
    margin: 30px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 Helvetica, Arial, sans-serif;
    color: var(--text);
}


/* =========================
   MONTH SECTION
   ========================= */

.event-month {
    display: grid;
    grid-template-columns: 230px 1fr;
    margin-bottom: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}


/* =========================
   MONTH LABEL
   ========================= */

.month-label {
    position: relative;
    padding: 35px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(
        145deg,
        var(--primary),
        var(--primary-dark)
    );

    color: #ffffff;
}

/*
.month-label::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);

    width: 24px;
    height: 24px;

    background: var(--primary-dark);
    rotate: 45deg;
}
*/

.month-icon {
    font-size: 30px;
    margin-bottom: 12px;
    line-height: 1;
}

.month-label h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.month-label span {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    opacity: 0.85;
    font-weight: 400;
}


/* =========================
   EVENT LIST
   ========================= */

.event-list {
    padding: 12px;
    background: #f8fbfc;
}


/* =========================
   EVENT CARD
   ========================= */

.event-card {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 20px;

    padding: 22px;
    margin-bottom: 10px;

    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.event-card:last-child {
    margin-bottom: 0;
}

.event-card:hover {
    transform: translateY(-2px);
    border-color: #b9d3df;
    box-shadow: 0 8px 20px rgba(31, 95, 139, 0.10);
}


/* =========================
   EVENT CONTENT
   ========================= */

.event-content {
    min-width: 0;
}

.event-title {
    margin: 0 0 9px;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 700;
    color: #20343d;
}

.event-description {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
}


/* =========================
   DATE BADGE
   ========================= */

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 10px;
    padding: 6px 11px;

    background: var(--accent);
    color: #3a5d6b;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;
}




/* =========================
   LINK BUTTON
   ========================= */

.event-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 100px;
    padding: 10px 16px;

    background: var(--secondary);
    color: #ffffff !important;

    border-radius: 7px;

    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.event-button:hover {
    background: #26766c;
    color: #ffffff !important;
    transform: translateY(-1px);
}


/* =========================
   LIST STYLE
   ========================= */

.event-description ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.event-description li {
    margin-bottom: 6px;
}


/* =========================
   SPECIAL TITLE
   ========================= */

.event-title strong {
    font-weight: 750;
}


/* =========================
   RESPONSIVE TABLET
   ========================= */

@media (max-width: 800px) {

    .event-month {
        grid-template-columns: 170px 1fr;
    }

    .month-label {
        padding: 25px 15px;
    }

    .month-label h2 {
        font-size: 17px;
    }

    .event-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .event-action {
        justify-content: flex-start;
    }

    .event-button {
        min-width: 120px;
    }
}


/* =========================
   RESPONSIVE MOBILE
   ========================= */

@media (max-width: 600px) {

    .event-schedule {
        margin: 15px auto;
    }

    .event-month {
        display: block;
        border-radius: 12px;
    }

    .month-label {
        min-height: auto;
        padding: 20px 15px;
    }

    .month-label::after {
        display: none;
    }

    .month-icon {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .month-label h2 {
        font-size: 17px;
    }

    .month-label span {
        font-size: 11px;
    }

    .event-list {
        padding: 8px;
    }

    .event-card {
        padding: 17px;
        border-radius: 10px;
    }

    .event-title {
        font-size: 15px;
        line-height: 1.5;
    }

    .event-description {
        font-size: 13px;
    }

    .event-button {
        width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-841900d *//* =========================================================
   EVENT / TRAINING SCHEDULE UI
   ========================================================= */

.event-schedule {
    --primary: #b5d9e8;
    --primary-dark: #daeaf2;
    --secondary: #2f8f83;
    --accent: #e8f3f7;
    --text: #263238;
    --muted: #3b3d3d;
    --border: #dce7ec;
    --white: #ffffff;
    --shadow: 0 8px 24px rgba(31, 95, 139, 0.08);

    max-width: 1200px;
    margin: 30px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 Helvetica, Arial, sans-serif;
    color: var(--text);
}


/* =========================
   MONTH SECTION
   ========================= */

.event-month {
    display: grid;
    grid-template-columns: 230px 1fr;
    margin-bottom: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}


/* =========================
   MONTH LABEL
   ========================= */

.month-label {
    position: relative;
    padding: 35px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(
        145deg,
        var(--primary),
        var(--primary-dark)
    );

    color: #ffffff;
}

/*
.month-label::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);

    width: 24px;
    height: 24px;

    background: var(--primary-dark);
    rotate: 45deg;
}
*/

.month-icon {
    font-size: 30px;
    margin-bottom: 12px;
    line-height: 1;
}

.month-label h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.month-label span {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    opacity: 0.85;
    font-weight: 400;
}


/* =========================
   EVENT LIST
   ========================= */

.event-list {
    padding: 12px;
    background: #f8fbfc;
}


/* =========================
   EVENT CARD
   ========================= */

.event-card {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 20px;

    padding: 22px;
    margin-bottom: 10px;

    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.event-card:last-child {
    margin-bottom: 0;
}

.event-card:hover {
    transform: translateY(-2px);
    border-color: #b9d3df;
    box-shadow: 0 8px 20px rgba(31, 95, 139, 0.10);
}


/* =========================
   EVENT CONTENT
   ========================= */

.event-content {
    min-width: 0;
}

.event-title {
    margin: 0 0 9px;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 700;
    color: #20343d;
}

.event-description {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
}


/* =========================
   DATE BADGE
   ========================= */

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 10px;
    padding: 6px 11px;

    background: var(--accent);
    color: #3a5d6b;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;
}




/* =========================
   LINK BUTTON
   ========================= */

.event-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 100px;
    padding: 10px 16px;

    background: var(--secondary);
    color: #ffffff !important;

    border-radius: 7px;

    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.event-button:hover {
    background: #26766c;
    color: #ffffff !important;
    transform: translateY(-1px);
}


/* =========================
   LIST STYLE
   ========================= */

.event-description ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.event-description li {
    margin-bottom: 6px;
}


/* =========================
   SPECIAL TITLE
   ========================= */

.event-title strong {
    font-weight: 750;
}


/* =========================
   RESPONSIVE TABLET
   ========================= */

@media (max-width: 800px) {

    .event-month {
        grid-template-columns: 170px 1fr;
    }

    .month-label {
        padding: 25px 15px;
    }

    .month-label h2 {
        font-size: 17px;
    }

    .event-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .event-action {
        justify-content: flex-start;
    }

    .event-button {
        min-width: 120px;
    }
}


/* =========================
   RESPONSIVE MOBILE
   ========================= */

@media (max-width: 600px) {

    .event-schedule {
        margin: 15px auto;
    }

    .event-month {
        display: block;
        border-radius: 12px;
    }

    .month-label {
        min-height: auto;
        padding: 20px 15px;
    }

    .month-label::after {
        display: none;
    }

    .month-icon {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .month-label h2 {
        font-size: 17px;
    }

    .month-label span {
        font-size: 11px;
    }

    .event-list {
        padding: 8px;
    }

    .event-card {
        padding: 17px;
        border-radius: 10px;
    }

    .event-title {
        font-size: 15px;
        line-height: 1.5;
    }

    .event-description {
        font-size: 13px;
    }

    .event-button {
        width: 100%;
    }
}/* End custom CSS */