@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
@font-face {
    font-family: 'HelveticaNeue';
    src: url('font/HelveticaNeue-MediumExt.woff2') format('woff2'),
        url('font/HelveticaNeue-MediumExt.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'HelveticaNeueLTPro';
    src: url('font/HelveticaNeueLTPro-Bd.woff2') format('woff2'),
        url('font/HelveticaNeueLTPro-Bd.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
body{
    background: #fff;
    color: #000;
    overflow-x: hidden;
    font-weight: 300;
}
html body{
    font-family: 'Montserrat', sans-serif;
}
b,strong{
    font-weight: 600;
}
a{
    color: #000;
}
a:hover{
    color: #333;
}
.btn{
    border-radius: 0;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
}
.btn > i{
    margin-left: 5px;
    margin-right : -5px;
    font-size: 16px;
}
.btn-main{
    background: #000;
    color: #fff;
}
.btn-main:hover{
    background: #333;
    color: #fff;
}
.btn-white{
    background: #fff;
    color: #000;
}
.btn-white:hover{
    background: #ccc;
    color: #fff;
}
.btn.btn-lg{
    padding: 15px 40px;
    font-size: 16px;
}
.dropdown-item.hover,
.dropdown-item:hover{
    background: #eee;
}
.dropdown-item.active,
.dropdown-item:active{
    background: #000;
}
#mainmenu{
    padding: 0;
    margin: 0;
}
header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;

}
header .navbar-brand{
    padding: 0;
}
header .navbar-nav{
    padding: 0;
    margin: 0;
}
/*header .navbar-nav ul.ss{
    display: none;
}*/
.headlayout{
    display: flex;
    justify-content: space-between;
    min-width: 100%;
}
.headlayout #main_menu{
    padding-top: 70px;
    font-size: 14px;
    font-weight: 500;
}
.headlayout #main_menu a{
    color: #fff;
    text-decoration: none;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    display: block;
}
.headlayout #main_menu li.active > a,
.headlayout #main_menu a:hover,
.headlayout #main_menu a[aria-expanded="true"]{
    color: #f6b518;
}
.headlayout #main_menu a:hover i{
    border-color: #f6b518;
}
.headlayout #main_menu a[aria-expanded="true"] i{
    border-color: #f6b518;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);   
}
.headlayout #main_menu > ul.navbar-nav > li{
    padding: 0 15px;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
.headlayout #main_menu > ul.navbar-nav > li:hover{
    -webkit-transform: translateY(-5px);
       -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
         -o-transform: translateY(-5px);
            transform: translateY(-5px);
}
@media (max-width: 767px) {
    .headlayout #main_menu > ul.navbar-nav > li:hover{
        -webkit-transform: translateY(0);
           -moz-transform: translateY(0);
            -ms-transform: translateY(0);
             -o-transform: translateY(0);
                transform: translateY(0);
    }
}
.headlayout #main_menu > ul.navbar-nav > li > a{
    padding-bottom: 20px;
}
.headlayout #main_menu > ul.navbar-nav > li.g{
    position: relative;
}
.headlayout #main_menu > ul.navbar-nav > li ul.ss{
    position: absolute;
    left: 15px;
    top: 100%;
    background: rgb(102 102 102 / 90%);
    padding: 15px 15px;
    list-style: none;
}
/*.headlayout #main_menu > ul.navbar-nav > li:hover ul.ss{
    display: block;
}*/
.headlayout #main_menu > ul.navbar-nav > li ul.ss::before{
    content: '';
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    margin: auto;
    width: 0px;
    height: 0px;
    border-bottom: 15px solid rgb(102 102 102 / 90%);
    border-right: 15px solid transparent; /* ซ่อนขอบขวา */
    border-top: 15px solid transparent; /* ซ่อนขอบล่าง */
}
.headlayout #main_menu > ul.navbar-nav > li ul.ss > li > a{
    display: block;
    min-width: 150px;
    padding: 4px 5px;
}
.headlayout #main_menu > ul.navbar-nav > li ul.ss > li:hover > a{
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);   
}
.arrow {
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  position: relative;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.headlayout #main_menu > ul.navbar-nav > li .arrow{
    top: -2px;
    margin-left: 5px;
}
footer{
    color: #fff;
    background: #000;
    padding-top: 60px;
    font-size: 16px;
    position: relative;
}
footer a{
    color: #fff;
    display: block;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
footer a.inline{
    display: inline-block;
}
footer .f_menu :not(.f_logo) a:hover{
    color: #f6b518;
    text-decoration: none;
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -ms-transform: translateX(3px);
    -o-transform: translateX(3px);
    transform: translateX(3px);
    
}
footer .f_menu{
    display: flex;
    justify-content: space-between;
}
footer .f_privacy{
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    background: url('/web-assets/img/footer-hr.png') center top no-repeat;
    
    position: relative;
}
footer .f_privacy::after{
    content: '';
    display: block;
    border-top: 1px solid #303030;
    position: absolute;
    top: 6px;
    left: 0;
    right: calc(50% + 60px);
}
footer .f_privacy::before{
    content: '';
    display: block;
    border-top: 1px solid #303030;
    position: absolute;
    top: 6px;
    left: calc(50% + 60px);
    right: 0;
}
footer .f_menu{
    padding-bottom: 10px;
}
footer .f_menu ul{
    list-style: none;
    margin: 0;
}
footer .f_menu > ul > li{
    padding-top: 0;
    padding-bottom: 20px;
}
footer .f_menu > ul > li > a{
    font-weight: bold;
    padding-bottom: 5px;
}
footer .f_menu > ul > li > ul{
    list-style: disc;
    padding: 0;
    margin: 0;
    padding-left: 15px;
}
footer .f_menu .col4{
    max-width: 350px;
}
footer .f_menu .col4 i{
    font-size: 22px;
    margin-right: 5px;
    vertical-align: middle;
}
.social_icon a{
    margin-left: 5px;
}
.social_icon i{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    text-align: center;
    padding-top: 5px;
    font-size: 14px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    vertical-align: middle;
}
.social_icon a:hover{
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
    
}
.social_icon a:hover i{
    background: #f6b518;
}
footer .f_menu > ul > li > ul > li{
    padding-bottom: 10px;
}

/*inner html*/
.new_info .n_img{
    margin-bottom: 15px;
    display: block;
    overflow: hidden;
}
.new_info .n_img > img{
    width: 100%;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
.new_info:hover .n_img > img{
    -webkit-transform: scale(1.05);
       -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
         -o-transform: scale(1.05);
            transform: scale(1.05);
}
.new_info .n_subject{
    display: block;
    margin-bottom: 15px;
    color: #000;
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}
.news_lists_layout > li .n_name{
    position: relative;
}
.news_lists_layout > li .n_name::before,
.new_info .n_subject::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #18272F;
    bottom: -5px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
.news_lists_layout > li .n_name:hover::before ,
.new_info .n_subject:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
.new_info .n_cate{
    background: #f6b518;
    display: inline-block;
    padding: 4px 15px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
}
.new_info .n_cate.b{
    background: #f67618;
}
.new_info .n_desc{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.new_info .n_desc a.icon img{
    -webkit-transition: all .6s ease;
       -moz-transition: all .6s ease;
        -ms-transition: all .6s ease;
         -o-transition: all .6s ease;
            transition: all .6s ease;
}
.new_info .n_desc a.icon:hover img{
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
footer .btn-scrollup{
    background: #f6b518;
    border: 1px solid #000;
    position: absolute;
    bottom: calc(100% + 155px);
    right: 10%;
    text-align: center;
    padding: 10px 20px;
    margin: 0;
    display: block;
    opacity: 0;
    -webkit-transition: opacity ease 0.3s;
    -moz-transition: opacity ease 0.3s;
    -ms-transition: opacity ease 0.3s;
    -o-transition: opacity ease 0.3s;
    transition: opacity ease 0.3s;
    outline: none;
    box-shadow: none!important;
    z-index: 99;
}
footer .btn-scrollup i{
    font-size: 30px;
    margin: 0;
}
@media (max-width: 767px) {
    footer .btn-scrollup{
        padding: 5px 12px;
    }
    .FixMenu footer .btn-scrollup{
        bottom: 20px!important;
        right: 20px!important;
        position: fixed!important;
    }
    footer .btn-scrollup i{
        font-size: 30px;
    }
}
.FixMenu footer .btn-scrollup{
    opacity: 1;
    position: fixed;
    bottom: 50px;
}
.FixScroll footer .btn-scrollup{
    position: absolute;
    bottom: calc(135%);
}
.fix_policy{
    background: #f6b518;
    padding: 25px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}
.fix_policy .pol_html{
    max-width: 1024px;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
}
.fix_policy .pol_html a.btn{
    display: block;
    color: #f6b518;
    padding: 10px 20px;
    font-size: 16px;
}
.fix_policy .pol_html p{
    margin-bottom: 0;
    font-size: 14px;
    padding-right: 15px;
}
.fix_policy .pol_html p a{
    font-weight: 500;
    color: #000;
    text-decoration: underline;
}
@media (max-width: 1199px) {
    .fix_policy{
        padding: 30px;
    }
    .fix_policy .pol_html a.btn{
        font-size: 16px;
        padding: 10px 20px;
    }
}
@media (max-width: 767px) {
    .fix_policy{
        text-align: center;
    }
    .fix_policy .pol_html{
        flex-wrap: wrap;
        justify-content: center;
    }
    .fix_policy .pol_html p{
        padding-right: 0;
        margin-bottom: 15px;
    }
}
.breadcrumb{
    background: none;
    padding-left: 0;
}
.breadcrumb > li{
    font-size: 18px;
    font-weight: 600;
}
.breadcrumb > li > a{
    color: #fff;
}
.breadcrumb.black > li > a{
    color: #000;
}
.breadcrumb.black > li.active > a{
    color: #f6b518;
}
.breadcrumb .breadcrumb-item+.breadcrumb-item::before{
    content: '>';
    color: #fff;
}
.breadcrumb.black .breadcrumb-item+.breadcrumb-item::before{
    color: #000;
}
.breadcrumb-item.active > a,
.breadcrumb-item.active{
    color: #f6b518;
    font-weight: 600;
    text-decoration: none;
}
.page_mobile_nav{
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}
.page_mobile_nav > li{
    border-bottom: 1px solid #000;
}
.page_mobile_nav > li:last-child{
    border-bottom: none;
}
.page_mobile_nav > li > a{
    display: block;
    padding: 15px 40px;
    background: #adafb0;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}
.page_mobile_nav > li > a i{
    float: right;
    border-color: #000;
    margin-top: 7px;
    border-width: 0 4px 4px 0;
}
.page_mobile_nav > li.active > a{
    background: #f6b518;
}
.header_image{
    height: 710px;
    position: relative;
}
.header_image.MID9{
    height: 540px;
}
.header_image > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header_image > h1{
    position: absolute;
    bottom: calc(40% - 72px);
    color: #fff;
    text-align: center;
    width: 100%;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
}
.page_nav{
    position: relative;
}
.page_nav ul{
    list-style: none;
    position: absolute;
    right: 0;
    left: 0;
    top: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.page_nav ul > li{
    padding: 0 5px;
}
.page_nav ul > li > a{
    display: block;
    padding: 25px 33px;
    background: #adafb0;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    min-width: 220px;
    text-align: center;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    
}
.page_nav ul > li:hover > a{
    background: #ccc;
}
.page_nav ul > li.active > a{
    background: #f6b518;
}
.page_nav .all_nav{
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
}
.page_nav.fix_page_nav{
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 999;
}
.page_nav.fix_page_nav ul{
    top: 0;
}
.page_nav.fix_page_nav .all_nav{
    display: none;
}
#ifmsubmit{
    position: fixed;
    height: 400px;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    background: #fff;
    display: none;
}
/* Loading */
#lds-main {
    display: block;
    position: relative;
    width: 64px;
    height: 40px;
    margin: 0 auto;
}

#lds-main div {
    position: absolute;
    top: 15px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

#lds-main div:nth-child(1) {
    left: 6px;
    animation: lds-main1 0.6s infinite;
}

#lds-main div:nth-child(2) {
    left: 6px;
    animation: lds-main2 0.6s infinite;
}

#lds-main div:nth-child(3) {
    left: 26px;
    animation: lds-main2 0.6s infinite;
}

#lds-main div:nth-child(4) {
    left: 45px;
    animation: lds-main3 0.6s infinite;
}

@keyframes lds-main1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-main3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-main2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(19px, 0);
    }
}
#main_loading{
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999999;
}
#main_loading #lds-main{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.swal2-modal .swal2-styled{
    outline: none;
}