@import url('https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&display=swap');

@font-face {
    font-family: Lato Light;
    src: url('../font/Lato-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Lato Regular;
    src: url('../font/Lato-Regular.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Lato Bold;
    src: url('../font/Lato-Bold.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Kanit Regular;
    src: url('../font/Kanit-Regular.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --hg-font-title: 'Inter', 'Kanit Regular';
    --hg-font-body: 'Inter', 'Kanit Regular';
    --hg-color-secondary: #131419;

    --hg-color-body: #323232;
    --hg-color-light: #eee;
    --hg-bg: #F9F9F9;

}

html, body {
    overflow-x: hidden
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--hg-font-body);
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: inherit;
    transition: all 0.5s;
}

h1, h2, h3 {
    font-family: var(--hg-font-title);
    color: var(--hg-color-secondary);
    line-height: 1.4;
    font-weight: bold;
    text-transform: capitalize;
    margin: 0;

}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-family: var(--hg-font-title);
    font-weight: bold;
    font-size: 16px;
    margin: 0;
}

p {
    margin: 8px 0 15px;
    font-weight: 400;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    list-style: none;
}

hgroup {
    margin: 0 0 15px;
}

::-moz-selection {
    background-color: var(--hg-color-primary);
    color: #fff;
}

::selection {
    background-color: var(--hg-color-primary);
    color: #fff;
}

.container {
    width: 1440px;
    padding: 0;
    margin: auto;
}

/*********************************/
/* HEADER */
/*********************************/
header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: #fff;
    color: var(--hg-color-secondary);
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
    transition: all .6s;
    z-index: 9;
}

header .navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: cover;
    margin: 11px 0;
}

header .pull-right > div {
    display: inline-block;
}

header .nav-menu ul,
header .nav-lang ul {
    padding: 0;
    margin: 0;
}

header .nav-menu {
    position: relative;
    border-right: 1px solid #eee;
    padding-right: 20px;
}

header .nav-menu ul li {
    list-style: none;
    display: inline-block;
    padding: 0 10px;
}

header .nav-menu ul li a {
    line-height: 75px;
}


header .nav-menu ul li:last-child {
    padding: 0 0 0 10px;
}

header .nav-menu ul li a.active,
header .nav-menu ul li a:hover {
    color: var(--hg-color-primary);
}

header .nav-lang {
    position: relative;
    margin-left: 15px;
    top: -1px;
}

header .nav-lang li {
    position: relative;
    list-style: none;
    display: inline-block;
    line-height: 75px;
}

header .nav-lang label {
    position: relative;
    cursor: pointer;
}

header .nav-lang .icon-down-arrow {
    font-size: 10px;
    display: inline-block;
    transition: all .3s;

}

header .nav-lang .icon-globe {
    font-size: 14px;
}

header .nav-lang .lang_parent {
    position: absolute;
    width: 100%;
    background: #fff;
    text-align: center;
    white-space: nowrap;
    transform: translateY(1em);
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}

header .nav-lang:hover .lang_parent {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;

}

header .nav-lang:hover .icon-down-arrow {
    transform: rotate(180deg);
}

header .nav-lang .lang_parent li {
    display: block;
    line-height: normal;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

header .nav-lang .lang_parent li:last-child {
    border: none;
}

header .nav-lang .lang_parent a:hover,
header .nav-lang label:hover {
    color: var(--hg-color-primary);

}

/*********************************/
/* MENU MOBILE */
/*********************************/
.menu-mobile {
    position: relative;
    display: none !important;
}

.hamburger {
    position: relative;
    width: 30px;
    height: 15px;
    cursor: pointer;
    z-index: 10;
}

.hamburger span {
    position: absolute;
    background: var(--hg-color-secondary);
    width: 100%;
    height: 1px;
    transition: .23s ease-in-out;

}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 7px;
    left: 0;
    right: 0;
    margin: auto;
}

.hamburger span:nth-child(3) {
    top: 14px;

}

.hamburger.active {
    right: -67px;
    top: 15px;
}

.hamburger.active span:nth-child(2) {
    width: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    top: 0;
    transform: rotate(-45deg);
}

/*********************************/
/* IMG SLIDE */
/*********************************/
.slide_show {
    position: relative;
    width: 100%;
    height: 480px;
    display: inline-block;
    margin-top: 75px;
}

.slide_show:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(88, 173, 223, 1) 0%, rgba(0, 60, 96, 1) 100%);
    opacity: .9;
}

.slide_show img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-slide {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    text-align: center;
    margin: auto;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

.slide_show h1 {
    font-size: 64px;
    color: #fff;

    font-family: var(--hg-font-body);
}

.slide_show label {
    font-weight: lighter;
}

/*********************************/
/* HOME */
/*********************************/
main .container {
    width: 1170px;
	/*width: 100%;*/
}

main.main_info .container, header .container {
   	width: 100%;
padding: 0 100px;

}

.product-manual {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 100px 0;
}

.row-product {
    margin-right: -15px;
    margin-left: -15px;
}

.child-page .row-product {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.child-page .row-product a > [class*=col-xs-] {
    width: 100%;
}

.product-manual [class*=col-xs-] {
    padding: 0 15px;
}

.product-manual .product {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 50px;
    text-align: center;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 15px -3px, rgba(0, 0, 0, 0) 0 0 6px -2px;
}

.product-manual .product img {
    width: 65px;
    margin: 0 0 15px;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.product-manual .product h2 {
    font-size: 24px;
}

.product-manual .product:hover img {
    -webkit-animation-name: swing;
    animation-name: swing;
}

/*********************************/
/* PAGE CHILD */
/*********************************/
.product-manual.child-page {
    text-align: center;

}

.product-manual.child-page hgroup h2 + h3 {
    font-size: 18px;
    margin: 8px 0 0;
    font-family: var(--hg-font-body);
    font-weight: lighter;
}

.product-manual.child-page h2 {
    margin-bottom: 50px;
}

.product-manual.child-page [class*=col-xs-] {
    padding: 15px;
}

.product-manual.child-page a {
    position: relative;
}

.product-manual .product-child {
    position: relative;
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 10px;
    padding: 15px 25px;
    text-align: left;
    display: inline-block;
    transition: all 220ms;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 15px -2px, rgba(0, 0, 0, 0) 0 0 6px -2px;
}

.product-manual.child-page .product-child [class*=col-xs-] {
    position: relative;
    padding: 0;
}

.product-manual.child-page .product-child .col-xs-10 {
    margin: 4px 0;
}

.product-manual.child-page [class*=col-xs-]:last-child .product-child {
    display: flex;
    align-items: center;
}

.product-manual .product-child img {
    width: 32px;
    height: 32px;
    display: block;
}

.product-manual .product-child:hover {
    transform: scale(1.045);
    color: var(--hg-color-primary);
}

.product-manual.child-information .product-child {
    min-height: 80px;
}


/*********************************/
/* PAGE INFO */
/*********************************/
.navigate {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 50px 0;
    color: #707070;
}

.navigate a:hover {
    color: var(--hg-color-primary);
}

.navigate i {
    font-size: 12px;
}

.row-content {
    margin-right: -50px;
    margin-left: -50px;
}

.row-content [class*=col-xs-] {
    padding: 0 50px;
}

.row-content [class*=col-xs-]:nth-child(2) {
    border-left: 1px solid #eee;
}

.side-menu {
    position: relative;
}

.side-menu label {
    position: relative;
    font-weight: bold;
    width: 100%;
}

.side-menu ul {
    margin: 20px 0 0;
    list-style: none;
    padding: 0 0 0 15px;
}

.side-menu ul li {
    position: relative;
    padding: 5px 0;
}

.side-menu a:hover, .side-menu a.active {
    color: var(--hg-color-primary);
}

.side-menu a.active:before {
    content: '\e900';
    font-family: icomoon;
    position: absolute;
    left: -17px;
    font-size: 11px;
    display: block;
    top: 9px;
}

.side-menu span:before {
    content: "\e901";
    font-family: icomoon;
    position: relative;
    float: right;
    font-size: 14px;
    display: none;
    transition: all .3s;

}

.side-menu span.active:before {

    transform: rotate(180deg);
}

.side-menu ul li > ul {
    margin: 0 0 0 30px;
    padding: 0;
}

.side-menu ul li > ul li {
    list-style: disc;
}

.side-menu ul li > ul li a.active:before {
    display: none;
}

.content-info {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 0 0 50px;
}

.content-info .container {
    position: relative;
}

.content {

}

.content img {
    width: 100%;
    height: auto !important;
    /*display: block;*/
    margin: 0;
    vertical-align: middle;
}

.content iframe {
    width: 100% !important;
}

.content ol {
    padding: 0 0 0 15px;
}

.editable + ol {
    margin: 0;
}

.content li {
    padding: 4px 0;
}

.content h3 + ol {
    margin: 10px 0 0;
}

.content-info table {
    width: 100% !important;
    border-collapse: collapse;
    border: none;
}

.content-info table tr {
    border-bottom: solid 1px #eee;
}

.content-info table tr td {
    padding: 15px;
    text-align: left;
    border: none;
}

.content-info table tr td ul {
    margin: 0;
    padding: 0;
}

.content-info table tbody tr:nth-child(2n + 1) {
    background-color: rgba(230, 235, 237, 0.25);
}

.content-info .editable a {
    color: var(--hg-color-primary);
}

.content-info .editable h2 {
    font-size: 26px;
    margin: 15px 0;
}

.error_page .btn_download {
    margin: 15px 0 0;
}

/*********************************/
/* FOOTER */
/*********************************/
footer {
    position: relative;
    width: 100%;
    display: inline-block;
    background: var(--hg-color-secondary);
    padding: 100px 0 50px;
    color: #fff;
}

footer h3, footer .contact-footer a:hover {
    color: var(--hg-color-primary);
}

footer h4 {
    font-weight: bold;
    color: #fff;
}

footer ul {
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
}

footer ul li {
    padding: 2px 0;
}

footer ul li > ul {
    margin: 0;
}

.contact-footer h3 {
    font-size: 18px;
}

.qr-code {
    height: 150px;
    width: 150px;
    object-fit: cover;
    margin: 15px 0 0;
}

.slide_partner {
    position: relative;
    width: 100%;
    display: inline-block;
    margin: 50px 0 0;
}

.slide_partner img {
    height: 50px;
    width: auto;
    display: block;
    margin: auto;
    filter: grayscale(1);
    transition: .35s;
}

.slide_partner img:hover {
    filter: grayscale(0);
}

.copyright {
    position: relative;
    width: 100%;
    display: inline-block;
    margin: 50px 0 0;
}


.copyright .col-xs-6:nth-child(2) {
    text-align: right;
}

.copyright a:hover {
    color: var(--hg-color-primary);
}

.social-footer a {
    font-size: 20px;
    vertical-align: sub;
    padding: 0 5px;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: inline-block;
}

.social-footer a:hover {
    opacity: 1;
    -webkit-animation-name: swing;
    animation-name: swing;
    color: #fff;
}

.scroll-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 100px;
    background: rgba(255, 255, 255, 0.48);
    border-radius: 50px;
    padding: 14px 17px;
    display: inline-block;
    bottom: 100px;
    color: #ffffff;
    z-index: 999;
    cursor: pointer;
    transition: all .6s;
}

.scroll-to-top:hover {
    background: #fff;
    color: var(--hg-color-primary);
}
.tabel_connect td{
    background: #fdfaec !important;
    border: 1px solid #f7e4ab !important;
}

/***************************/
/* DOWNLOAD */
/***************************/
.page_download {
    position: relative;
    width: 100%;
}

.page_download img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    display: block;
}

.page_download .col-xs-12 {
    padding: 15px;
    border-top: 1px solid #eee;
}

.product-manual.child-page .page_download .col-xs-12 > [class*=col-xs-] {
    padding: 0;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page_download .col-xs-12 .col-xs-8 {
    padding: 0 0 0 50px;
}

.page_download p,
.page_download .btn_book {
    margin: 0;
}

.btn_download {
    position: relative;
    padding: 12px 20px;
    border-radius: 30px;
    color: #fff;
    background: var(--hg-color-primary);
    display: inline-block;
}

.btn_download:hover {
    background: var(--hg-color-secondary);
}

/*********************************/
/* PAGE FAQ */
/*********************************/

.child-page.child-faq .row-product {
    margin-right: -10px;
    margin-left: -10px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.child-page.child-faq a {
    padding: 10px;
}

.product-manual.child-faq .product-child {
    background: none;
    box-shadow: none;
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
}

.product-manual.child-faq .product-child figure,
.content-info figure {
    margin: 0;
}

.product-manual.child-faq .product-child img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-manual.child-faq figcaption {
    text-align: left;
    margin-top: 15px;
}

.product-manual.child-faq figcaption h3 {
    font-size: 18px;
}

.product-manual.child-faq .no-images {
    height: 135px;
}

.no-images {
    width: 100%;
    height: 600px;
    background: #2b2a2a;
}
.content-info .content figure img {
    width: 80% !important;
    border-radius: 10px;
    margin: auto;
}
.content-info .content figure h3 {
    margin-bottom: 50px;
}

.content-info .content figcaption {
    margin-top: 50px;
}