@font-face {
    font-family: 'ariq';
    src: url('../font/ariq.woff2') format('woff2'),
    url('../font/ariq.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'butterscotch-regular';
    src: url('../font/butterscotch-regular.woff2') format('woff2'),
    url('../font/butterscotch-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'calibri-light';
    src: url('../font/calibri-light.woff2') format('woff2'),
    url('../font/calibri-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'calibri-bold';
    src: url('../font/calibri-bold.woff2') format('woff2'),
    url('../font/calibri-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'gotham-light';
    src: url('../font/gotham-light.woff2') format('woff2'),
    url('../font/gotham-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'gotham-medium';
    src: url('../font/gotham-medium.woff2') format('woff2'),
    url('../font/gotham-medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'gotham-bold';
    src: url('../font/gotham-bold.woff2') format('woff2'),
    url('../font/gotham-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'kanit-medium';
    src: url('../font/kanit-medium.woff2') format('woff2'),
    url('../font/kanit-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'kanit-light';
    src: url('../font/kanit-light.woff2') format('woff2'),
    url('../font/kanit-light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'pk-sukhothai-medium';
    src: url('../font/pk-sukhothai-medium.woff2') format('woff2'),
    url('../font/pk-sukhothai-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root{
    --pimary-color:#374538;
    --secondary-color:#283429;
    --tertiary-color:#373737;
    --ariq-font:'ariq', 'pk-sukhothai-medium';
    --butterscotch-regular-font:'butterscotch-regular', 'pk-sukhothai-medium';
    --kanit-light-font:'kanit-light', 'pk-sukhothai-medium';
    --kanit-medium-font:'kanit-medium', 'pk-sukhothai-medium';
    --calibri-light-font:'calibri-light', 'pk-sukhothai-medium';
    --calibri-bold-font:'calibri-bold', 'pk-sukhothai-medium';
    --gotham-light-font:'gotham-light', 'pk-sukhothai-medium';
    --gotham-medium-font:'gotham-medium', 'pk-sukhothai-medium';
    --pk-sukhothai-medium-font:'pk-sukhothai-medium', 'pk-sukhothai-medium';
}
::selection {
    color: #ffffff;
    background: var(--secondary-color);
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--calibri-light-font);
    font-size: 16px;
    color: var(--tertiary-color);
    line-height: 1.7;
    overflow-x: hidden;
    background: #ffffff;
}

input, select, button, a, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
    transition: all 0.5s;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    list-style: none;
}
select option{
    color: black!important;
}

.container {
    position: relative;
    padding: 0;
}
h1{
    margin: 0;
    font-family: var(--ariq-font);
    line-height: normal;
    font-weight: inherit;
}
h2{
    margin: 0;
    font-family: var(--gotham-medium-font);
    font-size: 38px;
    line-height: normal;
    font-weight: inherit;
}
h3{
    margin: 0;
    font-family: var(--gotham-medium-font);
    font-size: 20px;
    line-height: normal;
    font-weight: inherit;
}
h4{
    margin: 0;
    font-family: var(--calibri-light-font);
    font-size: 18px;
    text-transform: uppercase;
    line-height: normal;
    font-weight: inherit;
}
.section_header{
    background: var(--pimary-color);
    height: 70px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
    transition: all 0.25s;
}
.brand_logo{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 90px;
    top: 0;
    width: fit-content;
    transition: all 0.25s;
}
.section_header:before{
    content: '';
    background-image: url('../images/icon/bg_logo.png');
    width: 397px;
    height: 75px;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    margin: auto;
    background-position: center bottom;
    z-index: -1;
    transition: all 0.25s;
}
.brand_logo img{
    width: auto;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: auto;
    padding-top: 20px;
}
.hamberger_menu {
    display: block;
    height: 70px;
}
.button_container {
    position: absolute;
    /*top: 0;*/
    /*bottom: 0;*/
    height: 18px;
    width: 30px;
    margin: auto;
    cursor: pointer;
    transition: all 1s;
    z-index: 15;
    left: 50px;
    right: auto;
    top: 0;
    bottom: 0;
}

.button_container:hover {
    opacity: 1;
}

.button_container.active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
    background: #ffffff;
}

.button_container.active .middle {
    opacity: 0;
    background: #002724;
}

.button_container.active .bottom {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
    background: #ffffff;
}

.button_container span {
    background: #ffffff;
    border: none;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}

.button_container span:nth-of-type(2) {
    top: 8px;
}

.button_container span:nth-of-type(3) {
    top: 16px;
}

.overlay {
    position: fixed;
    background: var(--pimary-color);
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    /*max-width: 540px;*/
    /* opacity: 0; */
    overflow: hidden;
    z-index: 9;
    transition: all 1s;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: center;*/
    /*background-image: url('../images/icon/bg_description.jpg');*/
}

.overlay.open {
    opacity: 1;
    width: 350px;
}

.overlay.open li {
    -webkit-animation: fadeInUp .9s ease forwards;
    animation: fadeInUp .9s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .40s;
    animation-delay: .40s;
}

.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: .60s;
    animation-delay: .60s;
}

.overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s;
}
.overlay.open li:nth-of-type(8) {
    -webkit-animation-delay: .70s;
    animation-delay: .70s;
}

.overlay.open li:nth-of-type(9) {
    -webkit-animation-delay: .75s;
    animation-delay: .75s;
}

/*.overlay.open li:nth-of-type(8) {*/
/*    -webkit-animation-delay: 1.05s;*/
/*    animation-delay: 1.05s;*/
/*}*/

/*.overlay.open li:nth-of-type(9) {*/
/*    -webkit-animation-delay: 1.15s;*/
/*    animation-delay: 1.15s;*/
/*}*/

/*.overlay.open li:nth-of-type(10) {*/
/*    -webkit-animation-delay: 1.25s;*/
/*    animation-delay: 1.25s;*/
/*}*/


.overlay nav {
    position: relative;
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
    text-align: left;
    padding: 0 50px;
    margin-top: 75px;
}

.overlay ul {
    list-style: none;
    margin: 80px auto 0;
    position: relative;
    height: 100%;
    text-transform: uppercase;
    color: #ffffff;
    text-align: left;
    padding: 0 50px;
}

.overlay ul li {
    /*display: block;*/
    position: relative;
    padding: 10px 0;
    opacity: 0;
    width: 100%;
    line-height: initial;
}

.overlay ul li a {
    display: block;
    position: relative;
    color: #ffffff;
    text-decoration: none;
    /*overflow: hidden;*/
    opacity: 0.6;
    transition: all 0.25s;
}

.overlay ul li a.active, .overlay ul li a:hover, .nav_mobile .overlay-menu .active {
    color: #ffffff;
    opacity: 1;
}

.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
    width: 100%;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

.fix_body {
    overflow: hidden !important;
}
.box_language{
    position: absolute;
    right: 50px;
    top: 0;
    text-transform: uppercase;
    font-family: var(--pk-sukhothai-medium-font);
    font-size: 20px;
    color: #407d83;
}
.box_language ul{
    margin: 0;
    padding: 0;
}
.box_language li{
    float: left;
    padding: 0 15px;
    list-style: none;
}
.box_language li.active{
    color: #ffffff;
}
.box_language li:nth-last-child(1){
    padding-right: 0;
}
.box_language a{
    line-height: 70px;
}
.section_parallax{
    position: relative;
    height: auto;
    margin-top: 70px;
    background-image: url('../images/icon/bg_parallax.jpg');
    background-size: cover;
    background-position: left top;
    overflow: hidden;
    text-align: center;
}
.section_parallax .col-xs-6:nth-child(1){
    float: right;
}
.images_parallax{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_parallax img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_parallax label{
    font-family: var(--butterscotch-regular-font);
    font-size: 100px;
    line-height: normal;
    font-weight: inherit;
    color: var(--pimary-color);
    margin-bottom: 25px;
}
.details_parallax{
    padding: 70px 50px 0 50px;
}
.details_parallax h1{
    font-family: var(--ariq-font);
    text-transform: uppercase;
    font-weight: inherit;
    color: var(--pimary-color);
    font-size: 80px;
    line-height: 115px;
}
.details_parallax h1>span:nth-child(1){
    font-size: 230px;
}
.details_parallax h1>span:nth-child(3){
    font-size: 115px;
}
.section_product{
    padding: 80px 0;
    text-align: center;
}
.section_product ul.nav{
    margin: auto;
    font-family: var(--pk-sukhothai-medium-font);
    border: none;
    text-transform: uppercase;
    display: inline-block;
    display: flex;
    overflow-x: auto;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    list-style-type: none;
    padding: 0;
    scrollbar-width: none;
}

.nav-tabs > li{
    float: left;
    margin: 0;
    padding: 0 15px;
}
.nav-tabs > li > a{
    background: none!important;
    margin: 0;
    border-radius: 0;
    color: inherit!important;
    display: inline;
}
.nav-tabs > li.active a{
    background: #053c41 !important;
    color: #ffffff!important;
    border-radius: 100px;
    padding: 10px 30px;
}
.nav-tabs > li > a, .nav-tabs > li > a:hover, .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus{
    border: none!important;
}
.images_product{
    border: 1px solid #eeeeee;
    padding: 15px;
    text-align: center;
    height: 320px;
}
.images_product img{
    width: 100%;
    max-height: 200px;
    object-fit: cover;
}
.details_product{
    font-family: var(--calibri-bold-font);
}
.details_product p{
    margin: 0 25px 10px;
    line-height: 1.3;
}
.section_product .tab-content{
    margin: 50px 0;
    display: inline-flex;
    width: 100%;
}
.details_product label{
    font-family: var(--calibri-light-font);
}
.box_product .col-xs-3{
    padding: 10px;
}
/*.box_product{*/
/*    margin: -10px;*/
/*}*/
.btn_more{
    border: 1px solid var(--pimary-color);
    color: var(--pimary-color);
    font-family: var(--gotham-medium-font);
    text-transform: uppercase;
    background: none;
    padding: 15px 30px;
    border-radius: 100px;
    font-size: 15px;
    transition: all 0.25s;
}
.btn_more:hover{
    background: var(--pimary-color);
    color: #ffffff;
}
.section_news{
    padding: 80px 50px;
    text-align: center;
    background: #f3f3f3;
}
.images_news img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}
.slide_news{
    margin: 50px 0;
}
.slide_news .slide{
    padding: 0 15px;
}
.slick-list{
    margin: 0 -15px;
}
.slick-arrow{
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 225px;
}
.slick-arrow img{
    width: auto;
    height: 30px;
}
.slick-prev{
    left: -40px;
}
.slick-next{
    right: -40px;
}
.details_news{
    text-align: left;
    padding: 30px 0 0;
}
.details_news h3{
    font-family: var(--kanit-medium-font);
}
.details_news label{
    font-family: var(--gotham-light-font);
}
.details_news p{
    font-family: var(--kanit-light-font);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}
.section_farmfresh{
    width: 100%;
    overflow: hidden;
}
.section_farmfresh .slick-slide{
    width: 100%!important;
}
.images_farmfresh{
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_farmfresh img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_farmfresh{
    background-image: url('../images/icon/bg_farmfresh.jpg');
    background-size: cover;
    background-position: top right;
    text-align: center;
    padding: 0 50px;
}
.details_farmfresh label{
    font-family: var(--butterscotch-regular-font);
    font-size: 46px;
    color: var(--pimary-color);
}
.details_farmfresh h1{
    font-size: 120px;
    color: var(--pimary-color);
    line-height: 110px;
    margin-bottom: 10px;
}
.section_farmfresh .col-xs-6:nth-child(1){
    float: right;
}
.section_footer{
    position: relative;
    display: grid;
    width: 100%;
}
.contact_footer{
    background: var(--pimary-color);
    color: #ffffff;
    padding: 80px 0 50px 0;
    position: relative;
}
.contact_footer p{
    margin: 0;
}
.contact_footer:before{
    content: '';
    background: #ffffff2b;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 125px;
    left: 0;
}
.contact_footer h4{
    font-family: var(--gotham-medium-font);
    text-transform: none;
    font-size: 15px;
    margin-bottom: 50px;
}
.contact_footer ul{
    margin: 0;
    padding: 0;
}
.contact_footer li{
    list-style: none;
    position: relative;
}
ul.submenu_footer{
    margin-left: 30px;
}
ul.submenu_footer li:after{
    content: '';
    width: 10px;
    height: 1px;
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    border-bottom: 2px dotted #ffffff;
    margin: auto;
}
.contact_footer .col-xs-4:nth-child(2) label{
    font-family: var(--calibri-bold-font);
    font-size: 34px;
    line-height: normal;
}
.contact_email{
    margin: 20px 0;
}
.contact_email span{
    width: 50px;
    display: inline-block;
}
.contact_footer .mask_img {
    width: 28px !important;
    height: 28px !important;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100%;
    mask-repeat: no-repeat;
    background: #ffffff;
    transition: all 0.25s;
    display: inline-block;
    vertical-align: sub;
}
.contact_footer a:hover{
    color: #8fc53f;
}
.contact_footer .mask_img:hover{
    background: #8fc53f;
}
.social_media ul{
   margin: 15px 0 0;
    padding: 0;
}
.social_media li{
    float: left;
    padding: 0 10px;
}
.contact_footer .btn_more{
    border-color: #ffffff;
    margin-top: 25px;
    color: #ffffff;
}
.contact_footer .btn_more:hover{
    background: #ffffff;
    color: var(--pimary-color);
}
.copyright_footer{
    background: var(--secondary-color);
    color: #ffffff;
    text-align: center;
}
.brand_logo_footer{
    position: absolute;
    left: 0;
    right: 0;
    top: -30px;
    text-align: center;
    z-index: 1;
}
.brand_logo_footer img{
    height: 70px;
}
.section_footer:before {
    content: '';
    background-image: url('../images/icon/bg_logo.png');
    width: 397px;
    height: 75px;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
    background-position: center bottom;
    z-index: 0;
    transform: rotate(180deg);
}
.navbar_fix ul.submenu_footer{
    margin: 10px 0 0 30px;
    padding: 0;
}
.navbar_fix ul.submenu_footer li:nth-last-child(1){
    padding-bottom: 0;
}
.section_header.scroll_menu{
    height: 60px;
    z-index: 3;
}
.scroll_menu .box_language a {
    line-height: 60px;
}
.scroll_menu .brand_logo{
    height: 70px;
}
.scroll_menu.section_header:before{
    top: 40px;
}
.slick-dots{
    margin: 25px 0 0;
    padding: 0;
}
.slick-dots li {
    margin: 0 3px;
}
.section_parallax_info{
    /*height: 50vh;*/
    margin-top: 70px;
}
.section_parallax_info .images_parallax{
    height: 50vh;
}
.section_parallax_info h1{
    font-size: 130px;
}
.section_parallax_info .details_parallax{
    padding: 0 50px;
}
.section_aboutus{
    padding: 80px 0 100px;
    text-align: center;
    font-family: var(--kanit-light-font);
}
.section_aboutus p>label{
    font-family: var(--kanit-medium-font);
}
.section_aboutus p>span{
    display: inline-block;
    width: 100%;
}
.slide_aboutus{
    margin: 50px 0 0;
}
.slide_aboutus .slide{
    padding: 0 15px;
}
.slide_aboutus .slide_aboutus{
    padding: 0 15px;
}
.slide_aboutus .slick-arrow{
    top: 0;
    bottom: 0;
    height: 30px;
    margin: auto;
}
.images_aboutus{
    height: 300px;
}
.images_aboutus img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_about{
    background: var(--pimary-color);
    color: #ffffff;
    text-align: left;
    padding: 30px;
    height: 182px;
}
.details_about h3{
    font-family: var(--kanit-medium-font);
    font-size: 20px;
}
.details_about p{
    margin: 10px 0 0;
    font-family: var(--kanit-light-font);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.services{
    padding: 80px 0 0;
    width: 800px;
    margin: 0 auto;
}
.services h2{
    font-family: var(--kanit-medium-font);
    font-size: 34px;
}
.services h3{
    font-family: var(--kanit-medium-font);
    font-size: 20px;
    margin-bottom: 10px;
}
.services .col-xs-6, .services .col-xs-12{
    text-align: left;
    margin-bottom: 25px;
}
.services .col-xs-12:nth-last-child(1){
    margin-bottom: 0;
}
.details_services{
    margin-top: 50px;
}
.section_product_info{
    padding: 80px 0 100px;
    overflow: hidden;
}
.section_product_info .btn_more{
    margin-top: 50px;
}
.tabs__list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}
.tabs__list:after {
    clear: both;
    content: '';
    display: block;
}
.tabs__list > li {
    display: inline;
    white-space: nowrap;
}
.tabs__list > li label {
    color: #222222;
    cursor: pointer;
    float: left;
    line-height: normal;
    position: relative;
    height: auto;
    margin: 0;
    background: none;
    border: none;
    padding: 10px 0;
    transition: all 0.25s;
}
.tabs__list > li:hover label {
    text-decoration: none;
}
.tabs__radio:nth-of-type(1):checked ~ .tabs__list > li:nth-of-type(1) label, .tabs__radio:nth-of-type(2):checked ~ .tabs__list > li:nth-of-type(2) label, .tabs__radio:nth-of-type(3):checked ~ .tabs__list > li:nth-of-type(3) label, .tabs__radio:nth-of-type(4):checked ~ .tabs__list > li:nth-of-type(4) label, .tabs__radio:nth-of-type(5):checked ~ .tabs__list > li:nth-of-type(5) label {
    background: #053c41 !important;
    color: #ffffff !important;
    border-radius: 100px;
    padding: 10px 30px;
    height: auto;
    margin: 0;
}
/* IE8 fallback */
.tabs__list > li .tabs__list--active {
    background: #FFFFFF;
    height: 21px;
    margin-bottom: -1px;
    margin-top: 0;
}
.tabs__container {
    background: none;
    border: none;
    margin: 50px 0 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.tabs__container > .tabs__panel {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    font-size: initial;
    height: 0;
    margin: 0;
    padding: 0;
    vertical-align: top;
    white-space: normal;
    width: 100%;
}
.tabs__radio:nth-of-type(1):checked ~ .tabs__container > .tabs__panel:first-child {
    margin-left: 0;
}
.tabs__radio:nth-of-type(2):checked ~ .tabs__container > .tabs__panel:first-child {
    margin-left: -100%;
}
.tabs__radio:nth-of-type(3):checked ~ .tabs__container > .tabs__panel:first-child {
    margin-left: -200%;
}
.tabs__radio:nth-of-type(4):checked ~ .tabs__container > .tabs__panel:first-child {
    margin-left: -301%;
}
.tabs__radio:nth-of-type(5):checked ~ .tabs__container > .tabs__panel:first-child {
    margin-left: -402%;
}
/* IE8 fallbacks */
.tabs__radio--checked ~ .tabs__container > .tabs__panel:first-child {
    margin-left: 0;
}
.tabs__radio + .tabs__radio--checked ~ .tabs__container > .tabs__panel:first-child {
    margin-left: -100%;
}
.tabs__radio + .tabs__radio + .tabs__radio--checked ~ .tabs__container > .tabs__panel:first-child {
    margin-left: -200%;
}
.tabs__radio + .tabs__radio + .tabs__radio + .tabs__radio--checked ~ .tabs__container > .tabs__panel:first-child {
    margin-left: -300%;
}
.tabs__radio + .tabs__radio + .tabs__radio + .tabs__radio + .tabs__radio--checked ~ .tabs__container > .tabs__panel:first-child {
    margin-left: -400%;
}
.tabs__radio:nth-of-type(1):checked ~ .tabs__container > .tabs__panel:nth-child(1),
.tabs__radio:nth-of-type(2):checked ~ .tabs__container > .tabs__panel:nth-child(2),
.tabs__radio:nth-of-type(3):checked ~ .tabs__container > .tabs__panel:nth-child(3),
.tabs__radio:nth-of-type(4):checked ~ .tabs__container > .tabs__panel:nth-child(4),
.tabs__radio:nth-of-type(5):checked ~ .tabs__container > .tabs__panel:nth-child(5) {
    height: auto;
}
/* IE8 fallback */
.tabs__container > .tabs__panel--active {
    height: auto;
}
.section_product_info .dropdown{
    display: none;
}
.section_product_info .dropdown li{
    padding: 0 15px;
}
.section_product_info .dropdown-menu > li > a{
    border-bottom: 1px solid #eeeeee;
    font-family: var(--pk-sukhothai-medium-font);
    font-size: initial;
    color: #222222;
}
.section_product_info .dropdown .btn-default{
    position: relative;
    width: 100%;
    border-radius: 100px;
    background: #053c41;
    font-size: initial;
    color: #ffffff;
    font-family: var(--pk-sukhothai-medium-font);
    padding: 10px 30px;
    text-align: left;
}
.section_product_info .dropdown .btn-default .caret{
    display: block;
    float: right;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    height: 10px;
    margin: auto;
    border-top: 10px solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
}
.section_product_info .dropdown .dropdown-menu{
    width: 100%;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus{
    background: none;
}
.row_news_info{
    margin: -25px;
}
.row_news_info .col-xs-6{
    padding: 25px;
}
.row_news_info .details_news .btn_more{
    background: #053c41;
    color: #ffffff;
    margin-top: 25px;
    position: relative;
    padding: 15px 30px 15px 70px;
}
.row_news_info .details_news .btn_more:before{
    content: '';
    background-image: url('../images/icon/gallery.png');
    width: 30px !important;
    height: 30px !important;
    display: inline;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-size: cover;
}
.row_news_info .details_news .btn_more:hover{
    background: var(--pimary-color);
}
.contact_form{
    width: 768px;
    margin: 50px auto 0;
}
.contact_form h2{
    font-size: 38px;
    font-family: var(--gotham-light-font);
    text-transform: uppercase;
}
.contact_form h2>label{
    font-family: var(--gotham-medium-font);
}
.row_input{
    margin-top: 50px;
    text-align: left;
}
.input_data{
    width: 100%;
    padding: 0 0 10px;
    border: none;
    border-bottom: 1px solid #afafaf;
}
.contact_form .col-xs-2{
    width: 20%;
    padding: 0 0 10px 0;
    color: #777777;
}
.contact_form .col-xs-10{
    width: 80%;
}
.contact_form .col-xs-12{
    margin-bottom: 25px;
    display: inline-block;
    width: 100%;
}
.contact_form textarea{
    height: 200px;
    border: 1px solid #afafaf;
    padding: 10px;
}
.contact_form .col-xs-12.text_area{
    margin-top: 25px;
}
.btn_submit{
    background: var(--pimary-color);
    color: #ffffff;
}
.btn_submit:hover{
    background: var(--secondary-color);
}
.row_input label>span{
    color: red;
}
.section_contact{
    padding: 80px 0;
}
.section_address{
    padding: 0 0 100px;
}
.details_address{
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 50px 0;
    display: inline-flex;
    width: 100%;
}
.details_address img{
    width: 100%;
}
.details_address h2{
    text-transform: uppercase;
    font-size: 30px;
}
.details_address p{
    margin: 0;
}
.details_address ul{
    margin: 0;
    padding: 0;
}
.details_address li{
    list-style: none;
}
.details_address li label{
    width: 100px;
}
.details_address .col-xs-6{
    margin-top: 30px;
}
.details_address .col-xs-6 .mask_img{
    width: 30px !important;
    height: 30px !important;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100%;
    mask-repeat: no-repeat;
    background: #010002;
    transition: all 0.25s;
    display: inline-block;
    vertical-align: sub;
}
ul.social_media_contact{
    margin-top: 15px;
}
.social_media_contact li{
    float: left;
    padding-right: 15px;
}
.details_address a:hover{
    color: var(--pimary-color);
}
.details_address .col-xs-6 .mask_img:hover{
    background: var(--pimary-color);
}
.google_map{
    margin-top: 50px;
    text-align: center;
}
.google_map iframe{
    width: 100%;
    height: 600px;
    display: block;
}
.google_map .btn_more{
    margin-top: 50px;
}

.slide_home img{
    width: 100%;
    height: auto;
    display: block;
}
img.banner_mobile{
    display: none;
}
.slider__buttons button{
    background: none;
    margin: 0;
    padding: 0;
    border: none;
    position: absolute;
    top: 30px;
    z-index: 1;
    font-size: 30px;
    color: #053c41;
}
.slider__buttons button.buttons_left{
    left: -30px;
}
.slider__buttons button.buttons_right{
    right: -30px;
}
/*.section_product ul.nav:before{*/
/*    content: '';*/
/*    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 100%);*/
/*    width: 50px;*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    left: 0;*/
/*}*/
.nav-tabs > li > a{
    display: inherit;
}
.section_product .slider__buttons button{
    top: 10px;
}
.section_product_info .slider__buttons button{
    top: 15px;
}
.slide_home .slick-dots{
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: 0;
}
.slide_home .slick-arrow img{
    height: 30px!important;
    width: auto!important;
    display: block;
}
.slide_home .slick-arrow{
    position: absolute;
    width: auto;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    height: 30px;
    z-index: 1;
}
.slide_home .slick-next{
    right: 30px;
    left: auto;
}
.slide_home .slick-prev{
    left: 30px;
    right: auto;
}
.slide_home .slick-dots li.slick-active button, .slide_home .slick-dots button{
    background: var(--pimary-color);
}
.location{
    display: inline-block;
    width: 100%;
    margin-top: 80px;
}
.location h2 {
    font-family: var(--kanit-medium-font);
    font-size: 34px;
}
.location p > label{
    font-family: var(--kanit-light-font);
    display: inline-block;
    width: 100%;
}
.location img{
    width: 100%;
    margin-top: 50px;
}
img.location_m{
    display: none;
}