/* ============ [01] HEADER START ============ */

.header_infos {
    top: 0;
    width: 100%;
    z-index: 999;
}

.header_infos.fixed {
    position: fixed;
    background-color: var(--white-color) !important;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}

.header_infos_flex {
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}


/* ==== Logo ==== */

.header_infos_logo {
    width: 100px;
    height: 23px;
    background-image: var(--logo-url);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}


/* ==== /Logo ==== */


/* ==== Country ==== */

.header_infos_menu_item:first-child {
    margin-left: 0;
}

.header_infos_menu_item {
    display: inline-block;
    margin-left: 10px;
}

.header_infos_btn_country {
    align-items: center;
    justify-content: flex-start;
    border: 1px solid var(--secondary-color);
    gap: 4px;
}

.header_infos_country_meta {
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.header_country_meta_span {
    color: var(--body-color);
}

.header_infos_country_icon i {
    color: var(--body-color);
}

.header_infos_choose_country {
    position: absolute;
    background-color: var(--white-color);
    box-shadow: var(--b-shadow);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition-delay: 0.2s;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    z-index: 1000;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: none;
}

.header_infos.fixed .header_infos_choose_country {
    height: 1000px !important;
}

.header_infos_choose_country_top {
    padding: 0 80px;
    padding-top: 40px;
    padding-bottom: 25px;
    align-items: center;
    justify-content: space-between;
}

.header_infos_choose_country_top_title {
    font-size: 1.5em;
}

.header_infos_choose_country_top_search {
    position: relative;
    margin-top: 10px;
    width: 300px;
}

.header_infos_choose_country_top_input {
    width: 100%;
    height: 38px;
    padding: 0 10px;
    font-size: 0.9em;
    outline: none;
    color: #30323a;
    border: 1px solid #636303;
    box-shadow: var(--b-shadow);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    position: relative;
}

.header_infos_choose_country_top_search i {
    position: absolute;
    top: 0;
    right: 0px;
    width: 38px;
    height: 100%;
    line-height: 38px;
    font-size: 1em;
    text-align: center;
    cursor: pointer;
}

.header_infos_choose_country_top_close i {
    font-size: 1.7em;
    font-weight: 500;
    cursor: pointer;
    padding: 5px 8px;
    border: 1px solid var(--border-1-color);
    border-radius: 6px;
}

.header_infos_choose_country_bottom {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 80px;
}

.header_infos_choose_country_btn {
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.header_infos_choose_country_meta {
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.header_infos_choose_country_meta_name {
    font-size: 1em;
    font-weight: 700;
}

.header_infos_choose_country_meta_language {
    color: var(--grey-2-color);
    font-size: 1em;
}


/* ==== /Country ==== */


/* ============ [01] HEADER END ============ */


/* ============ [02] MAIN START ============ */


/* ==== Hero ==== */

.hero_infos {
    padding-top: 8px;
    padding-bottom: 40px;
}

.hero_infos_center {
    margin-top: 25px;
}

.hero_infos_bottom {
    margin-top: 35px;
}


/* ==== /Hero ==== */


/* ============ [02] MAIN END ============ */


/* ============ [03] FOOTER START ============ */

.footer_infos {
    background-color: #fffede;
    margin-top: 50px;
    padding: 35px 5px;
    padding-bottom: 15px;
}

.footer_infos_logo_link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_infos_logo {
    width: 100px;
    height: 23px;
    background-image: var(--logo-footer-url);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer_infos_desc {
    text-align: center;
    margin-top: 16px;
    font-size: 1em;
}

.footer_infos_bottom {
    border-top: 1px solid #dbdada;
    margin-top: 15px;
    padding-top: 20px;
}

.footer_infos_social_media_list {
    text-align: center;
}

.footer_infos_social_media_item:first-child {
    margin-left: 0;
}

.footer_infos_social_media_item {
    display: inline-block;
    margin-left: 10px;
}

.footer_infos_social_media_link {
    color: var(--secondary-color);
}

.footer_infos_social_media_link:hover {
    color: var(--primary-color);
}

.footer_infos_social_media_item i {
    font-size: 1.3em;
}

.footer_infos_terms {
    margin-top: 15px;
}

.footer_infos_terms_list {
    text-align: center;
}

.footer_infos_terms_item:first-child {
    margin-left: 0;
}

.footer_infos_terms_item {
    display: inline-block;
    margin-left: 8px;
}

.footer_infos_terms_link {
    color: var(--body-color);
    font-size: 0.92em;
}

.footer_infos_terms_link:hover {
    text-decoration: underline;
}

.footer_infos_copyright {
    margin-top: 15px;
    text-align: center;
}

.footer_infos_copyright_p {
    color: #555454;
    font-size: 0.9em;
}


/* ============ [03] FOOTER END ============ */
