@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700');
iframe {
    border: none; 
    outline: none; 
}
body {
    margin: 0;
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    color: #00111A;
    background: transparent;
}

/* ===== Tabs container ===== */

.tabs {
    text-align: left;
    border-bottom: 0;
    font-size: 0 !important;
    padding: 0;
    margin: 0;
}

.ar-ae .tabs {
    text-align: right;
}

.tabs li {
    float: none;
    display: inline-block;
    font-size: 0;
    margin: 0 24px 0 0;
    box-sizing: border-box;
}

/* ===== Tab items – underline style ===== */

.tabItem {
    position: relative;
    display: inline-block;
    padding: 16px 0;
    margin: 0;
    width: auto;

    font-family: inherit;
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;

    color: #00111A;;
    background: transparent;
    text-decoration: none;

    border: none;
    border-bottom: 3px solid transparent;

    transition: color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    text-align: center;
}

.tabItem:hover {
    color: #DF7A00;
    border-bottom-color: #DF7A00;
    background: transparent;
}

.tab-active,
.tab-active:hover {
    color: #DF7A00;
    border-bottom-color: #DF7A00;
    background: transparent;
}

/* Active / pressed parity */
.tabItem:active,
.tabItem-active {
    color: #DF7A00;
    border-bottom-color: #DF7A00;
    background: transparent;
}

/* ===== Optional indicator (kept but neutralized) ===== */

.tabItem-active:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
}

/* RTL alignment safety */
.ar-ae .tabs {
    direction: rtl;
}

.ar-ae .tabs li {
    margin: 0 20px;
}

@media (max-width: 980px) {
    .ar-ae .tabs li,
    .tabs li {
        margin: 0 0 5px 0;
        width: 50%;
    }
    .tabItem { 
        width: 100%;
    }
}

@media (max-width: 580px) {
    .ar-ae .tabs li,
    .tabs li {
        margin: 0 0 5px 0;
        width: 100%;
    }
    .tabItem { 
        width: 100%;
    }
}