@font-face {
    font-family: 'VaisalaSans-Regular';
    font-style: normal;
    src: url('fonts/VaisalaSans-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'VaisalaSans-Regular';
    font-style: normal;
    src: url('fonts/VaisalaSans-Regular.otf') format('opentype');
}

iframe {
    border: none; 
    outline: none; 
}
body {
    max-width: 1110px;
    margin: 0 auto;
    font-family: VaisalaSans-Regular, sans-serif;
    font-size: 18px;
    color: #00111A;
    background: transparent;
}

/* ===== Tabs container ===== */

.tabs {
    text-align: left;
    border-bottom: 0;
    font-size: 0 !important;
    padding: 0;
    margin: 0;
    background: #0A2A3D;
}

.ar-ae .tabs {
    text-align: right;
}

.tabs li {
    float: none;
    display: inline-block;
    font-size: 0;
    padding: 0;
    box-sizing: border-box;
    width: calc(100%/4);
    text-align: center;
}

/* ===== Tab items – underline style ===== */

.tabItem {
    position: relative;
    display: inline-block;
    padding: 20px 0;
    margin: 0;
    width: auto;

    font-family: inherit;
    font-weight: normal;
    font-size: 18px;
    text-transform: capitalize;

    color: #FFFFFF;
    background: transparent;
    text-decoration: none;

    border: none;
    border-bottom: 5px solid transparent;

    transition: none;
    text-align: center;
}

.tabItem:hover {
    color: #FFFFFF;
    border-bottom-color: #FB6432;
    background: transparent;
}

.tab-active,
.tab-active:hover {
    color: #FFFFFF;
    border-bottom-color: #FB6432;
    background: transparent;
}

/* Active / pressed parity */
.tabItem:active,
.tabItem-active {
    color: #FFFFFF;
    border-bottom-color: #FB6432;
    background: transparent;
}

/* ===== Optional indicator (kept but neutralized) ===== */

.tabItem-active:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    color: #FFFFFF;
}

/* RTL alignment safety */
.ar-ae .tabs {
    direction: rtl;
}

.ar-ae .tabs li {
    margin: 0 20px;
}

@media (max-width: 980px) {
    .tabs {
        text-align: center;
    }
    .ar-ae .tabs li,
    .tabs li {
        margin: 0 0 5px 0;
        width: 50%;
    }
    .tabItem { 
        width: 100%;
    }
}

@media (max-width: 560px) {
    .ar-ae .tabs li,
    .tabs li {
        margin: 0;
        width: 100%;
    }
    .tabItem { 
        width: 75%;
    }
}