@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.8 !important;
}

.line_height_15 {
    line-height: 1.5 !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: 45px;
}

.article_card_title {
    min-height: 64px;
}

.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: #34a3d7;
    transition: 400ms;
    width: max-content;
}

.common_button:hover {
    background: rgba(52, 163, 215, 0.7);
}

.h_18 {
    height: 18rem;
}

.logo_white {
    display: block;
}

.logo_blue {
    display: none;
}

.scrolled {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
}

.header_nav a {
    transition: 400ms;
}

header {
    transition: 400ms;
}

.scrolled .nav_item {
    color: #000;
}

.scrolled .nav_a {
    color: #000;
}

.scrolled .lang_btn {
    color: #000;
}

.border_color {
    border-color: #fff;
}

.scrolled .border_color {
    border-color: #000;
}

.scrolled .phone_menu_icon {
    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;
}

.border_1 {
    border-width: 1px;
}

.border_b_1 {
    border-bottom-width: 1px;
}

.hover-card-container {
    transition: all 0.5s ease;
}

.hover-card-content {
    transition: all 0.5s ease;
}

.hover-card-bg {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hover-card-text {
    transition: color 0.3s ease;
}

.hover-card-button {
    opacity: 0;
    transition: 400ms;
}

.hover-card-button:hover {
    background-color: #fff;
    color: #34a3d7;
}

.hover-card-container:hover .hover-card-content {
    color: #fff !important;
}

.hover-card-container:hover .article_card_content {
    color: #fff !important;
}

.hover-card-container:hover .article_card_date {
    color: #fff !important;
}

.hover-card-container:hover .hover-card-bg {
    opacity: 1;
}

.hover-card-container:hover .hover-card-text {
    color: black;
}

.hover-card-container:hover .hover-card-button {
    opacity: 1;
}

@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: 35px;
    }

    #mobileMenu {
        border-bottom: 1px solid #ccc;
    }

}