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

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

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

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


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

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


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


/* ==== Language & Home Website ==== */

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

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

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

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

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

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

.header_resource_choose_language {
    background-color: var(--white-color);
    box-shadow: var(--b-shadow);
    position: absolute;
    width: 120px;
    margin-top: 5px;
    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;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: none;
}

.header_resource_choose_language_link {
    display: block;
    padding: 10px 12px;
}

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

.header_resource_choose_language_link:hover {
    background-color: #fcfcf1;
}

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

.header_resource_home {
    display: block;
    border: 1px solid transparent;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.header_resource_home:hover {
    background-color: var(--primary-hover-color);
    color: var(--white-color);
}

.header_resource_home i {
    margin-left: 1px;
}


/* ==== /Language & Home Website ==== */


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


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


/* ==== Slider ==== */

.slider_resource {
    padding-top: 5px;
    padding-bottom: 40px;
}

.slider_resource_flex {
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.slider_resource_left {
    width: 60%;
}

.slider_resource_desc {
    margin-top: 15px;
}

.slider_resource_form {
    margin-top: 20px;
}

.slider_resource_form_group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.slider_resource_form_input {
    width: 68%;
    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;
}

.slider_resource_form_btn {
    border: 1px solid transparent;
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: var(--b-shadow);
    height: 38px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88em;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

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

.slider_resource_form_label {
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    margin-top: 6px;
}

.slider_resource_form_span {
    font-size: 0.8em;
}

.slider_resource_right {
    width: 40%;
}


/* ==== /Slider ==== */


/* ==== Resource Display ==== */

.resource_display_top_list {
    text-align: center;
}

.resource_display_top_item {
    display: inline-block;
    margin: 10px;
    margin-left: 0;
    margin-bottom: 0;
}

.resource_display_top_btn {
    display: block;
    border: 1px solid var(--secondary-color);
    color: var(--body-color);
    font-size: 0.9em;
}

.resource_display_top_btn:hover {
    border: 1px solid transparent;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.resource_display_top_btn_active {
    border: 1px solid transparent !important;
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
}

.resource_display_center {
    margin-top: 55px;
}

.resource_display_bottom {
    margin-top: 60px;
}

.resource_display_pagination_list {
    text-align: center;
}

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

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

.resource_display_pagination_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 20px;
    border: 1px solid #dadada;
    border-radius: 50%;
    text-align: center;
    color: var(--body-color);
    font-weight: 500;
    box-shadow: var(--b-shadow);
}

.resource_display_pagination_link:hover {
    border: 1px solid transparent !important;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.resource_display_pagination_link_active {
    border: 1px solid transparent !important;
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    cursor: default;
}

.resource_display_pagination_item_none {
    display: none !important;
}


/* ==== /Resource Display ==== */


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

.hero_resource {
    padding-top: 5px;
    padding-bottom: 40px;
}

.hero-resource-breadcrumbs-item {
    display: inline-block;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.85em;
}

.hero-resource-breadcrumbs-item a {
    color: #6a6a6b;
    font-size: 1em;
}

.hero-resource-breadcrumbs-item a:hover {
    text-decoration: underline;
}

.hero-resource-breadcrumbs-item::before {
    content: "\f054";
    font-family: "font Awesome 6 pro";
    font-size: 0.80em;
    color: #095228;
    margin-left: 2px;
    margin-right: 7px;
    font-weight: 700;
}

.hero-resource-breadcrumbs-item:first-child::before {
    display: none;
}

.hero_resource_center {
    margin-top: 30px;
}

.hero-resource-section {
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-resource-section-left {
    width: 60%;
}

.hero-resource-user {
    margin-top: 35px;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.hero-resource-user-img {
    height: 80px;
    width: 80px;
}

.hero-resource-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: var(--b-shadow);
}

.hero-resource-user-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-resource-user-name {
    font-size: 1.06em;
    font-weight: 550;
}

.hero-resource-user-date {
    color: var(--grey-color);
    font-size: 1em;
}

.hero-resource-section-right {
    width: 40%;
}

.hero-resource-image {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--b-shadow);
}

.hero_resource_bottom {
    margin-top: 20px;
}

.hero-resource-social-list {
    margin-top: 15px;
}

.hero-resource-social-item:first-child {
    margin-left: 0;
}

.hero-resource-social-item {
    display: inline-block;
    margin-left: 10px;
}

.hero-resource-social-link {
    color: var(--secondary-color);
}

.hero-resource-social-link:hover {
    color: var(--primary-color);
}

.hero-resource-social-item i {
    font-size: 1.3em;
}


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


/* ==== Details Resource ==== */

.details-resource {
    width: 800px;
    margin: 0 auto;
}

.details-resource-section h2:first-child,
.details-glossary-left h2:first-child {
    margin-top: 0;
}

.details-resource-section h2,
.details-glossary-left h2 {
    font-size: 2em;
    margin-top: 28px;
}

.details-resource-section h3,
.details-glossary-left h3 {
    font-size: 1.7em;
    margin-top: 20px;
}

.details-resource-section h4,
.details-glossary-left h4 {
    font-size: 1.5em;
    margin-top: 20px;
}

.details-resource-section ul,
.details-glossary-left ul {
    margin-top: 20px;
    margin-left: 40px;
}

.details-resource-section li:first-child,
.details-glossary-left li:first-child {
    margin-top: 0;
}

.details-resource-section li,
.details-glossary-left li {
    position: relative;
    font-size: 1.1em;
    margin-top: 10px;
}

.details-resource-section li::before,
.details-glossary-left li::before {
    position: absolute;
    content: "";
    top: 5px;
    left: -18px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

.details-resource-section a,
.details-glossary-left a {
    color: var(--primary-color);
}

.details-resource-section a:hover,
.details-glossary-left a:hover {
    color: var(--primary-hover-color);
    text-decoration: underline;
}

.details-resource-section img,
.details-glossary-left img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--b-shadow);
    margin-top: 18px;
    margin-bottom: 8px;
}

.go-further-title {
    text-align: center;
}

.go-further-bottom {
    margin-top: 30px;
}


/* ==== /Details Resource ==== */


/* ==== /Glossary ==== */

.glossary-main {
    text-align: center;
}

.glossary-item {
    margin: 0 240px;
}

.glossary-link {
    display: block;
    padding: 15px 20px;
    font-size: 1.2em;
    position: relative;
    overflow: hidden;
}

.glossary-link,
.details-glossary-aside-link {
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.glossary-link::after,
.details-glossary-aside-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #e7e7e7;
    transition: all 0.3s ease;
}

.glossary-link:hover::after,
.details-glossary-aside-link:hover::after {
    height: 2px;
    background-color: var(--primary-color);
}

.glossary-span {
    color: var(--body-color);
    font-weight: 550;
}

.glossary-link i,
.details-glossary-aside-link i {
    color: var(--primary-color);
    font-weight: 550;
}

.details-glossary {
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.details-glossary-left {
    width: 70%;
}

.details-glossary-right {
    width: 30%;
    background-color: #f5f5f5;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    padding: 15px 20px;
    position: sticky;
    top: 85px;
    right: 0;
}

.details-glossary-aside-title {
    font-size: 1.38em;
}

.details-glossary-aside-main {
    margin-top: 6px;
}

.details-glossary-aside-link {
    display: block;
    padding: 15px 4px;
    font-size: 1.1em;
    position: relative;
    overflow: hidden;
}

.details-glossary-aside-span {
    color: var(--body-color);
    font-weight: 500;
}


/* ==== /Glossary ==== */


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


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

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

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

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

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

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

.footer_resource_social_media_list {
    text-align: center;
}

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

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

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

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

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

.footer_resource_terms {
    margin-top: 15px;
}

.footer_resource_terms_list {
    text-align: center;
}

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

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

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

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

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

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


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