@charset "UTF-8";

:root {
    /**
     * COLOR
     */
    /* brand color */
    --color-brand-standard: #d91d22;
    --color-brand-Auxiliary: #000018;

    /* icon color */
    --color-icon-01: #ffffff;
    --color-icon-02: #d91d22;
    --color-icon-03: #36383B;
    --color-icon-04: #10E213;
    --color-icon-05: #FFDC49;
    --color-icon-06: #EA6B00;

    /* primary button */
    --color-btn-primary-default: #d91d22;
    --color-btn-primary-hover: #ff4e53;
    --color-btn-primary-active: #B60E12;
    --color-btn-primary-disabled: #F0F0F0;

    /* secondary button */
    --color-btn-secondary-default: #ffffff;
    --color-btn-secondary-hover: #d91d22;
    --color-btn-secondary-active: #B60E12;
    --color-btn-secondary-disabled: #f0f0f0;

    /* bg general */
    --color-bg-general-01: #ffffff;
    --color-bg-general-02: #f8f9fb;
    --color-bg-general-03: #36383B;
}


html[lang="ug"] body {
    direction: rtl;
}

html[lang="ug"] p {
    direction: rtl;
    letter-spacing: 0px !important;
}
html[lang="ug"] span,
html[lang="ug"] ul,
html[lang="ug"] li,
html[lang="ug"] a,
html[lang="ug"] h1,
html[lang="ug"] h2,
html[lang="ug"] h3,
html[lang="ug"] h4,
html[lang="ug"] h5,
html[lang="ug"] h6 {
    letter-spacing: 0px !important;
}

html[lang="ug"] .btn {
    letter-spacing: inherit !important;
}
html[lang="ug"] #global-globe p.number{
    direction: ltr;
    background-color: inherit;
    justify-content: flex-end;
    margin-right: inherit;
    margin-left: 1.5rem;
    padding: 0.25rem 0;
}

html[lang="ug"] #global-globe > div > div > div.column.is-5-desktop > div.buttons{
    justify-content: end;
}

@media screen and (max-width: 835px) {
    html[lang="ug"] #global-globe > div > div > div.column.is-5-desktop > div.buttons{
        justify-content: center;
    }
}


/**
 * FONT
 */
body {
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/**
 * THEME
 */
.is-light-theme,
.is-dark-theme {
    display: none;
}
#site-header.light-theme .is-light-theme,
#site-header.dark-theme .is-dark-theme {
    display: initial;
}

/* show/hide specific language */
.is-zh-only,
.is-sc-only,
.is-en-only,
.is-th-only,
.is-vn-only,
.is-ug-only,
.is-kr-only {
    display: none !important;
}
body.translatepress-zh_CN .is-zh-only {display: initial !important;}
body.translatepress-sc .is-sc-only {display: initial !important;}
body.translatepress-en_GB .is-en-only {display: initial !important;}
body.translatepress-th .is-th-only {display: initial !important;}
body.translatepress-vi .is-vn-only {display: initial !important;}
body.translatepress-ko_KR .is-kr-only {display: initial !important;}
body.translatepress-ug_CN .is-ug-only {display: initial !important;}

body.translatepress-zh_CN .hide-zh-only {display: none !important;}
body.translatepress-sc .hide-sc-only {display: none !important;}
body.translatepress-en_GB .hide-en-only {display: none !important;}
body.translatepress-th .hide-th-only {display: none !important;}
body.translatepress-vi .hide-vn-only {display: none !important;}
body.translatepress-ko_KR .hide-kr-only {display: none !important;}
body.translatepress-ug_CN .hide-ug-only {display: none !important;}

body.translatepress-ug_CN {
    font-family: "ALKATIPKitab";
}

/**
 * BUTTON
 */
/* general */
.btn {
    display: inline-block;
    min-width: 150px;
    min-height: 48px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 22px;
    letter-spacing: 1.5px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid transparent;
    padding: 12px 16px;
}

/* size */
.btn.lg {
    min-width: 180px;
    min-height: 56px;
    padding: 16px;
}
.btn.sm {
    min-width: 80px;
    min-height: 36px;
    font-size: 14px;
    padding: 6px 8px;
}

/* primary button */
.btn.primary {
    background-color: var(--color-btn-primary-default);
    border-color: var(--color-btn-primary-default);
    color: var(--color-bg-general-01);
}
.btn.primary:hover {
    background-color: var(--color-btn-primary-hover);
    border-color: var(--color-btn-primary-hover);
}
.btn.primary:active {
    background-color: var(--color-btn-primary-active);
    border-color: var(--color-btn-secondary-active);
}
.btn.primary.disabled {
    cursor: not-allowed;
    background-color: var(--color-btn-primary-disabled);
    border-color: var(--color-btn-primary-disabled);
    color: #8d8e8f;
}

/* secondary button */
.btn.secondary {
    background-color: var(--color-btn-secondary-default);
    border-color: var(--color-brand-standard);
    color: var(--color-brand-standard);
}
.btn.secondary:hover {
    background-color: var(--color-btn-secondary-hover);
    border-color: var(--color-btn-secondary-hover);
    color: var(--color-bg-general-01);
}
.btn.secondary:active {
    background-color: var(--color-btn-secondary-active);
    border-color: var(--color-btn-secondary-active);
    color: var(--color-bg-general-01);
}
.btn.secondary.disabled {
    cursor: not-allowed;
    background-color: var(--color-btn-secondary-disabled);
    border-color: var(--color-btn-secondary-disabled);
    color: #8d8e8f;
}

/**
 * SWIPER
 */
.swiper-wrapper {
    box-sizing: border-box;
}

/**
 * POSITION
 */
.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}

/**
 * LAYOUT
 */
.container {
    max-width: 1760px !important;
    padding-left: 24px;
    padding-right: 24px;
}
@media screen and (min-width: 835px) {
    .container {
        padding-left: 32px;
        padding-right: 32px;
    }
}
@media screen and (min-width: 1025px) {
    .container {
        padding-left: 80px;
        padding-right: 80px;
    }
}

/**
 * BULMA
 */
.title:not(.is-spaced)+.subtitle {
    margin-top: 0;
}
.buttons:last-child {
    margin-bottom: 0;
}
.navbar-dropdown {
    border-top: 0;
}
.has-text-danger {
    color: var(--color-brand-standard) !important;
}
@media screen and (max-width: 835px) {
    .is-hidden-mobile, .tablet-only {
        display: none !important;
    }
}

/* Font Family */
@font-face {
    font-family: "MicrosoftYaHei";
    src: url("style/fonts/sc/MicrosoftYaHeiLight.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "PingFangSCRegular";
    src: url("style/fonts/sc/PingFang-SC-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "MicrosoftJhengHei";
    src: url("style/fonts/tc/Microsoft-JhengHei.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "PingFangHKRegular";
    src: url("style/fonts/tc/PingFangHK-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "roboto";
    src: url("style/fonts/default/Roboto-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

.translatepress-sc {
    font-family: "MicrosoftYaHei" !important;
}
.translatepress-zh_CN {
    font-family: "MicrosoftYaHei" !important;
}
.translatepress-zh_TW {
    font-family: "MicrosoftJhengHei" !important;
}
/* CSS specific to iOS devices */ 
.safari.translatepress-sc {
    font-family: "PingFangSCRegular" !important;
}
.safari.translatepress-zh_CN {
    font-family: "PingFangSCRegular" !important;
}
.safari.translatepress-zh_TW {
    font-family: "PingFangHKRegular" !important;
}



