@font-face {
    font-family: 'Sarabun-Regular';
    src: url('../font/FrankRuhlLibre-Bold.ttf') format('truetype');
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sarabun-Regular', sans-serif;
}

.flex_center_box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex_center_column_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.space_between_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex_align_center {
    display: flex;
    align-items: center;
}

.flex_justify_center_column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text_center {
    text-align: center;
}

.cursor_pointer {
    cursor: pointer;
}


.flex_column {
    flex-direction: column;
}

.line_height_18 {
    line-height: 1.6 !important;
}

.line_height_20 {
    line-height: 2 !important;
}

.line_height_12 {
    line-height: 1.2 !important;
}

.line_height_14 {
    line-height: 1.4 !important;
}

.max_width {
    width: max-content;
}

.logo {
    height: 48px;
}

.article_card_title {
    transition: 400ms;
    min-height: 64px;
}

.article-card:hover .article_card_title {
    color: #2e4e3f;
}

.ellipsis_2_line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis_3_line {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.common_button {
    font-size: 1rem;
    align-items: center;
    height: 46px;
    font-weight: 500;
    padding: 0 1.3rem;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgba(143, 142, 142, 0.15) !important;
    background: #2e4e3f;
    transition: 400ms;
    width: max-content;
}

.common_button:hover {
    background: rgba(46, 78, 63, 0.85);
}

.h_18 {
    height: 18rem;
}

.logo_white {
    display: block;
}

.logo_blue {
    display: none;
}

.scrolled {
    background-color: #2e4e3f;
}

.header_nav a {
    transition: 400ms;
}

header {
    transition: 400ms;
}

/* .scrolled .header_nav a {
    color: #000;
}
.scrolled .lang_btn{
    color: #000;
} */

.value_bg {
    background-image: url(../images/index-value.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.contact-left {
    filter: drop-shadow(0px 3px 30px rgba(189, 189, 189, 0.26));
    background-color: #ffffff;
    position: relative;
    left: 50px;
}

.text_uppercase {
    text-transform: uppercase;
}
.news_section{
    margin-top: -12rem;
    height: 600px;
}
@media (min-width: 1536px) {
}

@media (min-width: 768px) and (max-width: 1024px) {

    .header_nav {
        display: none !important;
    }

    .phone_menu {
        display: block !important;
    }

}

@media (max-width: 768px) {
    .phone_menu {
        display: auto !important;
    }

    .contact-left {
        left: 0px;
        top: 50px;
    }

    .banner_nav a {
        margin-bottom: 15px;
    }

    .logo {
        height: 40px;
    }
    .news_section{
        margin-top: -8rem;
        height: auto;
        padding-bottom: 1rem;
    }
}