@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="ar"] body,html[lang="ug"] body,html[lang="ur"] body  {
    direction: rtl;
}

.rtl p {
    direction: rtl;
    letter-spacing: 0px !important;
}

.rtl span,
.rtl ul,
.rtl li,
.rtl a,
.rtl h1,
.rtl h2,
.rtl h3,
.rtl h4,
.rtl h5,
.rtl h6 {
    letter-spacing: 0px !important;
}

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

.rtl #global-globe > div > div > div.column.is-5-desktop > div.buttons{
    justify-content: end;
}

@media screen and (max-width: 835px) {
    .rtl #global-globe > div > div > div.column.is-5-desktop > div.buttons{
        justify-content: center;
    }
}


/**
 * FONT
 */
body {
    /* direction: rtl;
    unicode-bidi: embed; */
    overflow: hidden;
}

/**
 * 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-jp-only,
.is-ar-only,
.is-kr-only,
.is-pt-only,
.is-es-only,
.is-ug-only
 {
    display: none !important;
}

.set-rtl {
    direction:rtl;
}


body.translatepress-ar .is-ar-only {
    display: initial !important;
}
body.translatepress-pt_PT .is-pt-only {
    display: initial !important;
}
body.translatepress-es_ES .is-es-only {
    display: initial !important;
}
body.translatepress-zh_TW .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-ja .is-jp-only {
    display: initial !important;
}

body.translatepress-ar .is-ug_CN-only {
    display: initial !important;
}

body.translatepress-ur .is-ur-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-zh_TW .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-ja .hide-jp-only {
    display: none !important;
}

body.translatepress-ar .hide-ar-only {
    display: none !important;
}

body.translatepress-ur .hide-ur-only {
    display: none !important;
}

body.translatepress-ug_CN .hide-ug_CN-only {
    display: none !important;
}

body:not(.translatepress-en_GB) .en-only {
    display: none !important;
}

/**
 * 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: "segoeui";
    src: url("style/fonts/en_kr_pt_es_th/segoeui.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "segoeuib";
    src: url("style/fonts/en_kr_pt_es_th/segoeuib.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "hiraginoKakuW3";
    src: url("style/fonts/jp/Hiragino-Kaku-Gothic-Pro-W3.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "hiraginoKakuW6";
    src: url("style/fonts/jp/Hiragino-Kaku-Gothic-ProN-W6.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "meiryo";
    src: url("style/fonts/jp/MEIRYO.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "beVietnamProRegular";
    src: url("style/fonts/vn/BeVietnamPro-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "notoNaskhArabic";
    src: url("style/fonts/ar/NotoNaskhArabic-VariableFont_wght.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;
}
@font-face {
    font-family: "msuighur";
    src: url("style/fonts/msuighur.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;
}
.translatepress-vi {
    font-family: "beVietnamProRegular" !important;
}
.translatepress-ja {
    font-family: "hiraginoKakuW3", "hiraginoKakuW6", "meiryo" !important;
}
.translatepress-en_GB,
.translatepress-th,
.translatepress-ko_KR, 
.translatepress-es_ES,
.translatepress-pt {
    font-family: "segoeui" !important;
}
.translatepress-ar {
    font-family: "notoNaskhArabic" !important;
}
.translatepress-ur {
    font-family: "notoNaskhArabic" !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;
}


.swiper-slide {
    background-repeat: no-repeat;
}