/* ------ default ------ */
* {
    margin: 0px;
    padding: 0px;
    outline: none !important;
}

a,
a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

body {
    width: 100%;
    position: relative;
    display: inline-block;
    color: #000;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    font-weight: 300;
    font-family: 'Prompt', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #25333C;
    word-wrap: break-word;
}

.font-white {
    color: #ffffff;
}
.font-black {
    color: #000000;
}
.font-green {
    color: #4F758B;
}
.font-upper {
    text-transform: uppercase;
}
.font-lower {
    text-transform: lowercase;
}

.font-noto {
    font-family: 'NotoSerifThai', sans-serif !important; 
}
.font-prompt {
    font-family: 'Prompt', sans-serif !important; 
}
.font-light {
    font-weight: 300;
}
.font-regular {
    font-weight: 400;
}
.font-medium {
    font-weight: 500;
}
.font-semibold {
    font-weight: 600;
}
.font-bold {
    font-weight: 700;
}

h1, h2 {
    font-size: 52px;
    line-height: 56px;
    font-weight: 500;
    text-transform: uppercase;
}
h3 {
    font-size: 40px;
    line-height: 46px;
    font-weight: 500;
    text-transform: uppercase;
}
h4 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
    text-transform: uppercase;
}
h5 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    text-transform: uppercase;
}
h6 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: uppercase;
}

.btn{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    padding: 8px 20px;
    background: #fff;
    border-radius: 0px;
    border: 1px solid #000;
    outline: none !important;
    font-family: 'NotoSerifThai', sans-serif; 
    text-transform: uppercase;
}
.btn:hover {
    opacity: 0.9;
}
.btn-black {
    background: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}
.btn-black:hover, .btn-trans:hover {
    background: #fff !important;
    color: #000 !important;
    opacity: 1;
}
.btn-trans {
    background: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
}
.btn-primary {
    border-color: #425563 !important;
    background: #425563 !important;
    color: #fff !important;
}
.btn-md{
    padding: 9.5px 25px;
}
.btn-lg{
    padding: 25px 42px;
}
.btn-icon {
    justify-content: center;
    align-items: center;
}
.btn-icon i {
    margin-right: 10px;
}
.btn-minwidth {
    min-width: 165px;
}
.btn-minwidth2 {
    min-width: 200px;
}

.no-padding {
    padding: 0px !important;
}
.no-padding-top {
    padding-top: 0px;
}
.no-padding-bottom {
    padding-bottom: 0px;
}
.no-padding-left {
    padding-left: 0px;
}
.no-padding-right {
    padding-right: 0px;
}

.no-margin {
    margin: 0px !important;
}
.no-margin-top {
    margin-top: 0px !important;
}
.no-margin-bottom {
    margin-bottom: 0px !important;
}
.no-margin-left {
    margin-left: 0px;
}
.no-margin-right {
    margin-right: 0px;
}

.bg {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden !important;
}

/* ------ loading ------ */
#loading {
    text-align: center;
    padding-top: 42vh;
    color: #fff;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1px;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: none;
}
#loading .icon {
    border: 10px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top: 10px solid rgba(255, 255, 255, 0.8);
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin: 0 auto 20px;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ------ custom ------ */
#wrapper{
    position: relative;
    background: #fff;
}
section {
    position: relative;
    padding: 60px 0px;
    overflow: hidden;
}

header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    z-index: 2000;
    padding: 10px 0px;
    transition: .3s ease 0s;
}
header .navbar {
    background: transparent;
    border-radius: 0px;
    border: 0px;
    margin: 0px;
}
header .navbar-toggle {
    display: block !important;
}
header .navbar .navbar-nav>li>a{
    color: #fff !important;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    padding: 24px 25px 16px;
    background: transparent !important;
}
header .navbar .navbar-right>li>a {
    padding-left: 12px;
    padding-right: 12px;
}
header .navbar-brand {
    height: auto;
}
header .navbar-brand img {
    height: 44px;
}
header .navbar-center {
    top: 0px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 60px;
    overflow: hidden;
}
header #bar.for-project .navbar-center {
    white-space: nowrap;
    overflow-x: auto;
    display: inline-flex;
    max-width: calc(100% - 240px);
    justify-content: start;
    right: 30px;
    left: auto;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    position: relative;
    float: right;
}
header #bar.for-project .navbar-center > li > a {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
}
header #bar.for-project .nav-search, header #bar.for-project .nav-lang {
    display: none;
}
header .navbar .navbar-toggle {
    border: 0px;
    margin: 0px;
    padding: 29px 10px;
    background: transparent !important;
}
header .navbar .navbar-toggle .icon-bar {
    background: #fff;
    width: 47px;
    height: 2px;
    border-radius: 0px;
    transition: .3s ease 0s;
}
header .navbar .icon-bar+.icon-bar {
    margin-top: 10px;
}
header.scroll {
    background: #fff;
    padding: 4px 0px;
    box-shadow: 0px 4px 4px rgba(79, 117, 139, 0.22);
}
header.scroll .navbar .navbar-nav>li>a{
    color: #425563 !important;
    padding: 15px 25px 5px;
}
header.scroll .navbar .navbar-toggle .icon-bar, body.is-head header .navbar .navbar-toggle .icon-bar{
    background: #425563;
}
header.scroll .navbar-brand {
    padding: 5px 15px;
}
header.scroll .navbar .navbar-toggle {
    padding: 20px 0px;
}
header:not(.scroll) .navbar-brand img, header:not(.scroll) .m-icon-search-green {
    filter: brightness(0) invert(1);
}
body.is-head header .navbar-brand img, body.is-head header .m-icon-search-green {
    filter: none;
}

body , body.open header{
    left: 0px;
    transition: .3s ease-in .1s;
}
body.open, body.open header {
    left: -400px;
}
body.open header .navbar .icon-bar {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
body.open header .navbar .icon-bar+.icon-bar {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -2px;
}

#menu {
    position: fixed;
    width: 400px;
    max-width: 100%;
    height: 100vh !important;
    background: #25333C;
    z-index: 2000;
    right: -400px;
    top: 0px;
    overflow-y: auto;
    border: 0px;
    padding: 30px 50px 30px 30px;
    transition: .3s ease-in 0s;
}
#menu.in {
    right: 0px;
}
#menu li  {
    width: 100%;
    display: inline-block;
}
#menu li a {
    color: #fff !important;
    font-size: 20px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: 700;
    width: 100%;
    display: inline-block;
    padding: 10px 0px;
    font-family: 'Helvetica','Prompt', sans-serif;
}
#menu ul {
    margin-top: 30px;
}
#menu .navbar-right {
    margin-top: 20px;
}
#menu .navbar-right li a {
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 4px 0px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#menu .navbar-right li a  > span {
    opacity: 0.5;
    top: 4px;
} 
#menu .navbar-right li:last-child a {
    border: 0px;
}
#menu li a {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
#menu ul {
    margin: 0px;
}

.banner .item {
    position: relative;
}
.banner .item img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}
.banner .item .text {
    position: absolute;
    top: 55%;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    width: 650px;
    max-width: 100%;
    margin: 0 auto;
    right: 0;
    left: 0;
}
.banner .item .text.w-900 {
    width: 900px;
}
.banner.is-pro .item .text {
    width: 690px;
    text-align: left;
    top: 70%;
    margin-right: 0px;
}
.banner.is-pro-detail .item .text {
    width: 824px;
    top: 75%;
}
.banner.is-height-auto .item img {
    height: auto;
}
.banner .owl-dots {
    text-align: center;
}
.banner .owl-dots .owl-dot {
    width: 145px;
    height: 2px;
    background: #D9D9D9;
    margin: 5px;
    display: inline-block;
}
.banner .owl-dots .owl-dot.active {
    background: #4F758B;
}
.scroll-down {
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 12px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
}

.form-control {
    border: 0px;
    border-bottom: 1px solid #D9D9D9;
    box-shadow: none;
    height: auto;
    padding: 10px 0px;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-weight: 400;
    line-height: 1.42857143 !important;
}
.form-control:focus {
    border-color: #000;
}
.form-control.has-border{
    border: 1px solid #D9D9D9;
    padding: 10px;
}
.form-control.has-border + .glyphicon {
    right: 10px;
}
.form-control.no-placeholder::placeholder {
    opacity: 0;
}
.form-control.is-trans {
    background: transparent;
}

.form-group {
    display: inline-block;
    width: 100%;
}
.form-group .form-control {
    position: relative;
    z-index: 1;
    background: transparent;
    font-weight: 400;
}
.form-group .form-control + label {
    font-weight: 400;
    position: absolute;
    top: 8px;
    left: 0px;
    margin: 0px;
    transition: .3s ease 0s;
}
.form-group .form-control:focus + label, .form-group .form-control:not(:placeholder-shown) + label {
    top: -12px;
    font-size: 14px;
    font-weight: 300;
}
.form-group .form-control.but-placeholder:focus::placeholder  {
    opacity: 1;
}

form .form-group {
    position: relative;
}

.input-search {
    position: relative;
}
.input-search .form-control {
    padding-right: 30px;
}
.input-search .m-icon {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 24px;
    height: 24px;
}
.select {
    position: relative;
}
.select .form-control {
    padding-right: 30px;
}
.select span {
    position: absolute;
    right: 0px;
    top: 12px;
}
.select .form-control.no-border {
    border: 0px;
    border-bottom: 1px solid #D9D9D9;
}

.project-filter {
    width: 100%;
    position: relative;
    text-align: center;
}
.project-filter .form-control {
    font-size: 16px;
    font-weight: 300;
    font-family: 'Prompt' !important;
}
.project-filter .form-control::placeholder {
    color: #000000;
}
.project-filter .select-dropdown {
    display: flex;
    justify-content: space-between;
}
.project-filter .select-dropdown .select {
    width: calc(20% - 10px);
    margin-left: 10px;
    padding-left: 10px;
}
.project-filter .select-dropdown .select .form-control {
    border: 0px;
    background: transparent !important;
    cursor: pointer;
}
.project-filter .select-dropdown .select:first-child {
    margin: 0px;
    padding-left: 0px;
}
.project-filter .select-dropdown .select:not(:first-child):after {
    content: '';
    position: absolute;
    left: 0px;
    top: 10px;
    height: 20px;
    border-right: 1px solid #D6D6D6;
}
.project-filter .select-dropdown-option {
    color: #fff;
    text-align: left;
    padding: 20px 0px;
    position: relative;
    display: none;
}
.project-filter .select-dropdown-option:before {
    content: '';
    position: absolute;
    top: 0px;
    left: -30%;
    width: 160%;
    background: #25333C;
    height: 100%;
}
.project-filter .select-dropdown-option .option:not(:first-child) {
    display: none;
}
.project-filter .select-dropdown-option .radio {
    display: inline-block;
}
.project-filter .select-dropdown-option .radio label {
    color: #fff;
    border: 1px solid #fff;
    text-transform: uppercase;
    padding: 7px 12px;
    margin: 5px;
    background: none;
    font-weight: 500;
}
.project-filter .select-dropdown-option .radio input {
    display: none;
}
.project-filter .select-dropdown-option .radio input:checked + label {
    color: #25333c;
    background: #fff;
}
.project-filter .select-dropdown-option .radio.is-logo label {
    border: 0px;
    background: transparent !important;
}
.project-filter .select-dropdown-option .radio.is-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    object-position: center;
    filter: brightness(0) invert(1);
}
.project-filter .select-dropdown-option .radio.no-border label {
    border: 0px;
    padding: 7px 30px;
    font-weight: 500;
}
.project-filter .select-dropdown-option .radio.col-4 {
    width: calc(25% - 5px);
    padding: 5px;
}
.project-filter .select-dropdown-option .radio.col-4 label {
    width: 100%;
    margin: 0px;
    text-align: center;
}
.project-filter .select-dropdown-mobile .form-control {
    padding: 14px 30px 14px 12px;
}
.project-filter .select-dropdown-mobile .form-control + .glyphicon {
    top: 15px;
}
.project-filter .container > .form-group {
    width: 1080px;
    max-width: 100%;
    margin: 0 auto 15px;
}
.project-filter .f-head, .project-filter .ft-control {
    display: none;
}

.project-box {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 40px;
    display: inline-block;
}
.project-box .status {
    position: absolute;
    left: 0px;
    top: 0px;
    background: #25333C;
    color: #fff;
    font-weight: 400;
    padding: 8px 10px;
    text-transform: uppercase;
    z-index: 1;
}
.project-box .status.is-green {
    background: #4F758B;
}
.project-box .status.is-red {
    background: #C61118;
}
.project-box .img {
    position: relative;
}
.project-box .img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}
.project-box .text {
    text-align: center;
    padding: 25px 15px 10px;
    font-size: 16px;
    line-height: 22px;
}
.project-box .text .price {
    color: #4F758B;
    font-weight: 500;
}
.project-box .overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(62, 62, 62, 0.6);
    border: 1px solid #D9D9D9;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    opacity: 0;
    transition: .3s ease 0s;
}
.project-box .overlay span {
    display: inline-block;
    text-transform: uppercase;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 30px;
}
.project-box:hover .overlay {
    opacity: 1;
}
.project-box h6 {
    font-family: 'Prompt', sans-serif;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.project-box .text ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: 315px;
    max-width: 100%;
    margin: 15px auto 10px;
    color: #4F758B;
    font-size: 15px;
    padding-left: 40px;
}
.project-box .text ul li {
    width: 50%;
    display: flex;
    justify-items: start;
    margin-bottom: 5px;
}
.project-box .text ul i {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}
.project-box .price-normal {
    color: #000;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-decoration: line-through;
}
.project-box .price-special {
    color: #BB2A3E;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.home-about {
    width: 100%;
    position: relative;
    text-align: center;
}
.home-about .btn {
    position: absolute;
    bottom: 65px;
    width: 165px;
    background: transparent;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.home-about .btn:hover {
    background: #000;
}
.home-about h2 {
    width: 972px;
    max-width: 100%;
    margin: 0 auto;
    text-transform: uppercase;    
    z-index: 1;
    position: relative;
    position: absolute;
    left: 0;
    right: 0;
}

img {
    max-width: 100%;
}
.img {
    width: 100%;
}
.row.is-reverse, .row.is-reverse-mobile {
    overflow: hidden;
}
.row.is-reverse > div:nth-child(odd), .row.is-reverse-mobile > div:nth-child(odd) {
    float: right;
}
.row.is-middle {
    display: flex;
    align-items: center;
}
.row.is-middle.row.is-reverse, .row.is-middle.row.is-reverse-mobile {
    flex-direction: row-reverse;
}

.home-pet .text {
    width: 300px;
    max-width: 100%;
}
.home-pet .text p {
    margin: 15px 0px 25px;
}
.bg-black {
    background: #000;
    color: #fff;
}
.bg-main {
    background: #425563; 
    color: #fff;
}
.bg-skin {
    background: #FBF9F9;
}
.bg-dark {
    background: #25333C; 
    color: #fff;
}
.bg-black {
    background: #161616;
    color: #fff;
}
.bg-gray {
    background: #F5F5F5;
}

.home-life .title {
    width: 615px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    text-align: center;
}
.life-box {
    width: 100%;
    position: relative;
}
.life-box .item {
    position: relative;
}
.life-box .text {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.life-box .text h5 {
    width: 100%;
    text-align: center;
    align-self: end;
}
.life-box .text .btn {
    align-self: start;
    min-width: 160px;
    margin-top: 5px;
}
.life-slide {
    margin: 75px 0px 55px;
}

.title {
    margin-bottom: 50px;
    text-align: center;
}
.title.style-2 {
    width: 835px;
    max-width: 100%;
    margin:  0 auto;
}

.article-box {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}
.article-box .type {
    color: #4F758B;
}
.article-box .date {
    font-size: 14px;
}
.article-box .text {
    padding: 20px 0px;
}
.article-box.is-land {
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
    margin-bottom: 50px;
}
.article-box.is-land img {
    height: 320px;
    width: 55%;
    object-fit: cover;
    object-position: center;
}
.article-box h6 {
    text-transform: uppercase;
}
.article-box.is-highlight {
    margin-top: 45px;
    position: relative;
    display: inline-block;
}
.article-box.is-highlight .text {
    position: absolute;
    color: #fff;
    width: 650px;
    max-width: 100%;
    padding: 0px;
    left: 150px;
    bottom: 75px;
}
.article-box.is-highlight .type {
    color: #fff;
}
.article-box.is-highlight img {
    width: 100%;
    height: 645px;
    object-fit: cover;
    object-position: center;
}

.news-slide .owl-stage {
    margin-left: -150px;
}

footer {
    color: #fff;
    background: #425563;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    padding: 45px 0px 0px;
}
footer ul {
    list-style: none;
}
footer .footer-social {
    display: flex;
    gap: 15px;
}
footer .btn-newsletter {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    font-size: 14px;
}
footer .footer-menu {
    column-count: 2;
    list-style: none;
    margin-bottom: 50px;
}
footer .footer-menu a {
    padding: 8px 0px;
    width: 100%;
    display: inline-block;
    text-transform: capitalize;
}
footer .copyright {
    border-top: 1px solid #D9D9D9;
    margin-top: 35px;
    padding: 20px 0px;
}
footer .copyright ul {
    display: flex;
    gap: 15px;
}

#cookie {
    background: #25333C;
    color: #fff;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100vw;
    padding: 15px 0px;
    z-index: 2000;
    font-size: 16px;
    line-height: 24px;
}
#cookie .row {
    align-items: center;
    display: flex;
}

.project-cover .row > div {
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.project-cover .text {
    width: 538px;
    max-width: 40vw;
    text-align: center;
    margin: 0 auto;
}
.project-cover .text.is-hot-deal {
    text-align: left;
}
.project-cover .text.is-hot-deal ul {
    list-style: none;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    width: 100%;
}
.project-cover .text.is-hot-deal ul label {
    font-weight: 300;
    width: 115px;
    flex: none;
}
.project-cover .text.is-hot-deal ul li {
    margin-top: 10px;
    display: flex;
}
.project-cover .text .tag {
    margin-top: 20px;
}
.project-cover .text .tag span {
    background: #BB2A3E;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    display: inline-block;
    padding: 3px 15px 2px;
}
.project-cover .text.is-hot-deal h4 {
    font-weight: 300;
    text-decoration: line-through;
}
.project-cover .text.is-hot-deal .btn {
    min-width: 200px;
    padding: 10px 20px;
    margin-top: 30px;
}
.project-cover .logo {
    height: 150px;
    width: 260px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 0px;
}
.project-cover .img {
    width: 50%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    flex: 1;
}
.project-cover.style-1 .img {
    height: 100vh;
}
.project-cover.style-2 .row > div:nth-child(odd) {
    float: right;
}
.project-cover.style-3 .row > div{
    width: 100%;
    display: block;
    min-height: initial;
}
.project-cover.style-3 .img {
    width: 100%;
    height: 645px;
    object-fit: cover;
    object-position: center;
}
.project-cover.style-3 .text {
    padding: 60px 15px 70px;
    width: 860px;
    max-width: 100%;
}
.project-cover.style-3 h3 {
    margin-bottom: 15px;
}

.project-vdo, .sec-vdo .vdo {
    width: 100%;
    position: relative;
    cursor: pointer;
}
.project-vdo img, .sec-vdo .vdo img {
    width: 100%;
}
.project-vdo i, .sec-vdo .vdo i {
    width: 92px;
    height: 92px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.project-vdo:hover i, .sec-vdo .vdo:hover i {
    opacity: 0.8;
}
.project-vdo iframe, .sec-vdo .vdo iframe {
    display: none;
}

.project-gallery-box {
    position: relative;
    margin-top: -1px;
}
.project-gallery-box h5 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 5;
    text-align: center;
    padding: 65px 15px 15px;
    /* color: #fff; */
}
.project-gallery .item {
    width: 100%;
    position: relative;
}
.project-gallery .owl-nav button.owl-next, .project-gallery .owl-nav button.owl-prev {
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -40px;
}
.project-gallery .owl-nav button.owl-next img, .project-gallery .owl-nav button.owl-prev img {
    width: 45px;
}
.project-gallery .owl-nav button.owl-prev {
    right: auto;
    left: 0px;
}
.project-gallery.style-2 .owl-nav button.owl-next {
    right: -20px;
}
.project-gallery.style-2 .owl-nav button.owl-prev {
    left: -20px;
}
.project-gallery .owl-nav button.disabled {
    filter: grayscale(100%);
    }
.project-gallery-box.style-2 {
    padding: 75px 0px 0px 75px;
}
.project-gallery-box.style-2 .inner {
    position: relative;
    padding: 70px 100px;
    background: #fff;
    z-index: 1;
}
.project-gallery-box.style-2:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: calc(100% - 130px);
    background: #706259;
}
.project-gallery-box.style-2 h5 {
    position: relative;
    color: #000;
    text-align: left;
    padding: 0px;
    margin-bottom: 30px;
}

.tab .nav-tabs {
    border-bottom: 1px solid #D9D9D9;
    white-space: normal;
    overflow-x: hidden;
    flex-wrap: wrap;
    padding-bottom: 1px;
}
.tab .nav-tabs .active {
    border: 0px !important;
    border-bottom: 1px solid #425563 !important;
    border-radius: 0px;
}
.tab .nav-tabs a {
    border: 0px !important;
    background: transparent !important;
    text-transform: uppercase;
    padding-left: 8px;
    padding-right: 8px;
   }
.tab .nav-tabs li {
    display: flex;
}

.btn-social-box .btn {
    border: 1px solid #D9D9D9;
    display: flex;
    width: 100%;
    align-items: center;
    height: 50px;
    font-family: 'Prompt', sans-serif;
    width: calc(50% - 8px);
}
.btn-social-box .btn i {
    width: 32px;
    height: 32px;
}
.btn-social-box .btn:hover {
    background: transparent;
    opacity: 0.8;
    color: #000;
}
.required {
    font-size: 12px;
    color: red;
    font-weight: 400;
    display: none;
}

.checkbox {
    position: relative;
    display: inline-block;
}
.checkbox.is-full, .checkbox.is-full > label {
    width: 100%;
}
.checkbox > input {
    display: none;
}
.checkbox label {
    padding-left: 30px;
    font-weight: 300;
}
.checkbox label::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 3px;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
}
.checkbox input:checked + label::before {
    content: '\e013';
    background: #000;
    color: #fff;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
}

.tab-register {
    width: 860px;
    max-width: 100%;
    margin: 0 auto;
}
.tab-register li {
    width: 50%;
    text-align: center;
    justify-content: center;
    font-family: 'NotoSerifThai';
}
.tab-register .btn-social-box {
    display: flex;
    gap: 15px;
    margin: 30px 0px;
    flex-wrap: wrap;
}
.tab-register .or {
    border-top: 1px solid #D9D9D9;
    position: relative;
}
.tab-register .or span {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0px 10px;
    background: #fff;
    text-transform: uppercase;
}
.tab-register .form-group {
    margin-bottom: 25px;
    display: inline-block;
    width: 100%;
}

.project-virtual .select {
    width: 525px;
    max-width: 100%;
    margin: 30px auto 0px;
}
.project-virtual .select-option {
    margin-top: 40px;
}
.project-virtual .select-option .item:not(:first-child) {
    display: none;
}
.project-virtual .select-option .item {
    text-align: center;
}
.project-virtual .select-option .item img {
    width: 1080px;
    max-width: 100%;
}
.project-virtual .select-option .item iframe {
    width: 100%;
    height: 600px;
}

.project-pro {
    width: 1080px;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
}
.project-pro img {
    width: 100%;
    position: relative;
    height: 250px;
    object-fit: cover;
}
.project-pro .text {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    color: #fff;
    background: linear-gradient(90deg, rgba(37, 51, 60, 0.01) 0%, rgba(37, 51, 60, 0.5) 67.87%);
}
.project-pro .text .inner {
    width: 300px;
    max-width: 100%;
    text-align: center;
}
.project-pro .text .btn {
    margin-top: 15px;
}
.project-pro .row {
    height: 100%;
}
.project-pro .row > div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.project-pro.style-2 .row > div {
    width: 100%;
    margin-left: 0px;
}
.project-pro.style-2 .text .inner {
    width: 425px;
}
.project-pro.style-2 .text .btn {
    min-width: 220px;
}

.project-article {
    width: 100%;
    position: relative;
}
.project-article .item {
    margin-top: 40px;
    display: block;
}
.project-article .text {
    width: 420px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}
.project-article .row {
    display: flex;
    align-items: center;
}
.project-article .item:nth-child(even) .row {
    flex-direction: row-reverse;
}
.project-article.style-2 .item:nth-child(even) .row {
    flex-direction: initial;
}
.project-article.style-2 .item:nth-child(odd) .row {
    flex-direction: row-reverse;
}

.bg-orange {
    background: #C78A66;
    color: #fff;
}

.tab-info {
    margin-top: 30px;
}
.tab-info .nav-tabs {
    border-bottom: 1px solid #D9D9D9;
    justify-content: center;
    gap: 60px;
    display: flex;
}
.tab-info .nav-tabs a {
    color: #fff !important;
    padding-left: 0px;
    padding-right: 0px;
}
.tab-info .nav-tabs .active {
    border-bottom: 2px solid #fff !important;
    font-weight: 500;
}
.tab-info ul {
    list-style: none;
}
.tab-info ul li {
    padding: 5px 0px;
}
.tab-info ul.col-4 {
    column-count: 4;
    margin-bottom: 0px;
}
.tab-info ul.col-4 li {
    padding: 8px 0px;
}
.tab-info .tab-content {
    padding: 35px 0px;
}

.project-neigh {
    width: 100%;
    position: relative;
    font-weight: 500;
    display: inline-block;
}
.project-neigh .item {
    float: left;
    width: 25%;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'NotoSerifThai', sans-serif !important;
}
.project-neigh .item .no {
    width: 120px;
    height: 120px;
    border: 2px solid #fff;
    padding: 20px 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-wrap: wrap;
    margin: 0 auto 15px;
}
.project-neigh .item .no h3, .project-neigh .item .no p {
    margin: 0px;
    width: 100%;
    display: block;
}
.radial-bar {
    width: 200px;
    height: 200px;
}
.radial-bar-lg:after, .radial-bar-lg > img {
    width: 150px;
    height: 150px;
    margin-left: 25px;
    margin-top: 25px;
    background: #c78a66;
    color: #fff;
    font-size: 52px;
    line-height: 52px;
    font-weight: 500;
    line-height: 145px;
}

.progress-box {
    width: 640px;
    max-width: 100%;
    margin-top: 20px;
}
.progress-box .text {
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 10px;
}
.progress-box .progress {
    height: 8px;
    background: #fff;
}
.progress-box .progress-bar {
    background: #4F758B;
    border-radius: 20px;
}

.project-progress {
    width: 1000px;
    max-width: 100%;
    margin: 20px auto;
}

.form-brochure {
    width: 100%;
    position: relative;
    border-top: 1px solid #D9D9D9;
    padding: 50px 0px;
}
.form-brochure .form-control {
    background: transparent !important;
    color: #fff;
    border-color: #fff !important;
}
.form-brochure .form-group {
    margin-bottom: 50px;
}
.form-brochure > .row {
    width: 860px;
    max-width: 100%;
    margin: 0 auto;
}

.project-plan-box{
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 50px;
    padding-bottom: 30px;
}
.project-plan-box h4{
    margin-bottom: 20px;
}
.project-plan-box .select-result {
    position: relative;
    margin: 45px 0px;
}
.project-plan-box .select-result .m-icon-zoom {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.project-plan-box .select-result img {
    height: 665px;
    width: 100%;
    object-fit: contain;
    object-position: center;
} 
.project-plan-box .form-control {
    border-color: #000;
    background: transparent;
}

.mfp-bg, .mfp-wrap {
    z-index: 3000;
}

.tab-loc .nav-tabs {
    justify-content: center;
    display: flex;
    gap: 50px;
    border-color: #D9D9D9;
}
.tab-loc .nav-tabs a {
    padding-left: 0px;
    padding-right: 0px;
}
.tab-loc .nav-tabs .active a {
    color: #425563;
    font-weight: 500;
}
.tab-loc .nav-tabs .active {
    border-width: 2px !important;
}
.tab-loc .tab-content {
    padding: 50px 0px;
}

.project-map {
    width: 100%;
    height: 600px;
}

.tab-loan ul.nav-tabs {
    gap: 0px;
    display: flex;
    gap: 0px;
    justify-content: space-between;
    width: calc(50% - 15px);
}
.tab-loan ul.nav-tabs li {
    margin-right: 20px;
    min-width: 200px;
    text-align: center;
    display: flex;
    justify-content: center;
    max-width: 50%;
}

.loan-form label {
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 0px;
}
.loan-form .form-control {
    color: #fff;
}
.input-unit {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #fff;
}
.input-unit .form-control {
    border-bottom: 0px;
}

.loan-calc {
    column-count: 2;
    margin-top: -75px;
    text-align: center;
}
.loan-calc.is-full {
    column-count: 1;
}
.loan-calc label {
    text-transform: uppercase;
    font-weight: 500;
}
.loan-calc h2 {
    margin-top: 110px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 25px;
}

.nav-tabs>li>a {
    font-weight: 300;
}
.nav-tabs>li.active>a {
    font-weight: 500;
}

.project-condo-modern .project-gallery-box.style-2:after, .project-condo-modern .bg-orange, .project-condo-modern .radial-bar-lg:after, .project-condo-modern .radial-bar-lg > img {
    background: #706259;
}
.project-luxury .project-gallery-box.style-2:after, .project-luxury .bg-orange, .project-luxury .radial-bar-lg:after, .project-luxury .radial-bar-lg > img {
    background: #491D2A;
}
.project-modern-housing .project-gallery-box.style-2:after, .project-modern-housing .bg-orange, .project-modern-housing .radial-bar-lg:after, .project-modern-housing .radial-bar-lg > img {
    background: #AA9767;
}
.project-hotel .project-gallery-box.style-2:after, .project-hotel .bg-orange, .project-hotel .radial-bar-lg:after, .project-hotel .radial-bar-lg > img {
    background: #007598;
}
.project-tower .project-gallery-box.style-2:after, .project-tower .bg-orange, .project-tower .radial-bar-lg:after, .project-tower .radial-bar-lg > img {
    background: #425563;
}

.project-grid {
    margin-bottom: 15px;
}
.project-grid.row {
    display: flex;
    flex-wrap: wrap;
}
.project-grid, .row.is-small {
    margin-left: -10px;
    margin-right: -10px;
}
.project-grid > div, .row.is-small > div {
    padding: 0px 10px;
}

.modal {
    z-index: 3000;
}
.modal-backdrop {
    z-index: 2500;
    opacity: 0.75;
}
.modal .close {
    opacity: 1;
}
.modal .close img {
    width: 50px;
}
.modal .modal-header {
    border: 0px;
}

.thankyou-box {
    width: 850px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    text-align: center;
    padding: 0px 0px 50px;
}

.promotion-box {
    width: 100%;
    position: relative;
    margin-bottom: 60px;
    display: inline-block;
}
.promotion-box .item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 60px;
}
.promotion-box .item .text h4 {
    width: 300px;
    max-width: 100%;
}
.promotion-box .item .text p {
    clear: both;
}
.promotion-box .item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}
.promotion-box .item:nth-child(even) .text h4 {
    float: right;
    margin-right: 0px;
}
.promotion-box .item .img {
    width: 640px;
}
.promotion-box .item .text {
    width: calc(100% - 640px);
    padding: 20px;
}
.img-responsive {
    width: 100%;
}

.project-slide {
    margin: 0px;
    margin-top: 50px;
}
.project-slide .img img {
    height: 250px;
}

body.is-head header {
    box-shadow: 0px 4px 4px rgba(79, 117, 139, 0.22);
    background: #fff;
}
body.is-head header .navbar .navbar-nav>li>a {
    color: #425563 !important;
}
body.is-head #wrapper {
    padding-top: 95px;
}

.tab-news .nav-tabs {
    justify-content: center;
    display: flex;
    gap: 20px;
}

.news-box {
    margin-top: 55px;
}
.news-box .item {
    display: flex;
    gap: 20px;
}
.news-box .item .article-box {
    margin-bottom: 0px;
    border-bottom: 0.3px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 50px;
    transition: .5s ease .1s;
}
.news-box .item:nth-child(odd) .article-box:nth-child(1), .news-box .item:nth-child(even) .article-box:nth-child(2), .news-box .item.is-hover:nth-child(odd) .article-box:nth-child(2), .news-box .item.is-hover:nth-child(even) .article-box:nth-child(1) {
    width: 70%;
    filter: none;
    opacity: 1;
}
.news-box .item:nth-child(odd) .article-box:nth-child(2), .news-box .item:nth-child(even) .article-box:nth-child(1), .news-box .item.is-hover:nth-child(odd) .article-box:nth-child(1), .news-box .item.is-hover:nth-child(even) .article-box:nth-child(2) {
    width: 30%;
    filter: grayscale(100%);
    opacity: 0.5;
}
.news-box .item:nth-child(odd) .article-box:nth-child(2) img, .news-box .item:nth-child(even) .article-box:nth-child(1) img, .news-box .item.is-hover:nth-child(odd) .article-box:nth-child(1) img, .news-box .item.is-hover:nth-child(even) .article-box:nth-child(2) img {
    display: none;
}
.news-box .item:nth-child(odd) .article-box:nth-child(1) img, .news-box .item:nth-child(even) .article-box:nth-child(2) img, .news-box .item.is-hover:nth-child(odd) .article-box:nth-child(2) img, .news-box .item.is-hover:nth-child(even) .article-box:nth-child(1) img {
    display: block;
}

.cover, .cover img {
    width: 100%;
    position: relative;
}

.article-detail {
    width: 860px;
    max-width: 100%;
    margin: 0 auto;
}
.article-detail table {
    max-width: 100%;
}
.article-detail .date {
    font-size: 14px;
    font-weight: 300;
}
.article-detail .head {
    text-align: center;
    margin-bottom: 45px;
}
.article-detail .footer {
    margin-top: 60px;
    padding: 45px 0px;
    border-top: 0.5px solid #D9D9D9;
    border-bottom: 0.5px solid #D9D9D9;
}
.article-detail p, .article-detail h1, .article-detail h2, .article-detail h3, .article-detail h4, .article-detail h5, .article-detail h6, .article-detail ul {
    margin-bottom: 20px;
}
.article-detail img {
    max-width: 100%;
    height: 100%;
}

.share-box {
    display: flex;
    align-items: center;
}
.share-box label {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    margin-right: 10px;
}
.share-box a {
    display: inline-block;
    padding: 2px 10px;
}
.share-box .m-icon {
    width: 32px;
    height: 32px;
}

.blog-list {
    width: 100%;
    position: relative;
}
.blog-list .item {
    width: 100%;
    position: relative;
    padding: 70px 0px 50px;
    border-bottom: 1px solid #D9D9D9;
}
.blog-list .item:last-child {
    padding-bottom: 0px;
    border-bottom: 0px;
}
.blog-list ul {
    column-count: 2;
    font-size: 20px;
    line-height: 30px;
    list-style: none;
}
.blog-list ul li {
    margin-bottom: 20px;
}
.blog-list ul li::before {
    content: "•";
    padding-right: 15px;
}
.blog-list .row > div:first-child {
    padding-right: 30px;
}

.blog.style-2, .blog-icon {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}
.blog.style-2 .item {
    margin-bottom: 50px;
    display: inline-block;
}
.blog.style-2 .item:nth-child(even) .row {
    flex-direction: row-reverse;
    text-align: right;
}
.blog.style-2 .item:last-child {
    margin-bottom: 0px;
}

.tree {
    position: relative;
    width: 100%;
    padding-top: 30px;
    margin-top: 50px;
}
.tree::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0px;
    height: 100%;
    border-left: 1px solid #000;
}
.bg-main .tree::before {
    border-color: #fff;
}
.tree ul, .blog ul {
    list-style: none;
}
.tree ul li::before, .blog ul li::before {
    content: "•";
    padding-right: 15px;
    font-size: 22px;
}
.tree .no {
    font-size: 52px;
    line-height: 56px;
    font-weight: 500;
}
.tree .item {
    padding: 10px;
}
.tree .item:last-child {
    padding-bottom: 0px;
}
.tree .item:nth-child(odd) {
    padding-right: calc(50% + 15px);
    text-align: right;
}
.tree .item:nth-child(even) {
    padding-left: calc(50% + 15px);
    text-align: left;
}

.form-land, .form-construction {
    width: 860px;
    max-width: 100%;
    margin: 0 auto;
}
.form-land h4 {
    margin: 40px 0px;
}
.form-land .map-box {
    padding-top: 50px;
    padding-bottom: 20px;
}

.input-upload {
    margin-top: 30px;
}
.input-upload, .input-upload .btn-box {
    display: inline-block;
    position: relative;
}
.input-upload .btn-box input {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.input-upload .btn-box:hover .btn {
    opacity: 0.9;
}
.input-upload .btn-box {
    float: left;
    margin-right: 30px;
}
.input-upload .btn-box i {
    float: left;
}
.input-upload label {
    font-weight: 500;
}
.input-upload ul {
    width: 300px;
    max-width: 100%;
    list-style: none;
    display: inline-block;
    color: #4F758B;
}
.input-upload ul li {
    display: flex;
    padding: 5px;
}
.input-upload ul li .m-icon {
    margin-left: 15px;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.radio {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0px;
}
.radio-inline {
    margin-top: 10px !important;
}
.radio input {
    display: none;
}
.radio label {
    padding-left: 25px;
    position: relative;
    background: url('../images/radio.png') no-repeat top left;
    background-position-y: 3px
}
.radio input:checked + label {
    background-image: url('../images/radio-active.png');
}

.table.no-border th, .table.no-border td {
    border: 0px !important;
    padding: 3px 0px;
}

.blog-icon .item {
    text-align: center;
    margin-top: 40px;
}
.blog-icon .item img {
    width: 145px;
    height: 145px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 15px;
}
.blog-icon .item p {
    width: 240px;
    max-width: 100%;
    margin: 0 auto;
}
.blog-icon .row {
    display: flex;
    flex-wrap: wrap;
}
.faq-inner {
    width: 100%;
    position: relative;
    font-weight: 300;
    padding-left: 45px;
}
.faq-inner .char {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
}
body.lang-th .faq-inner {
    padding-left: 125px;
}

.panel-group {
    margin-top: 40px;
}
.panel {
    background: #fff;
    border: 0px;
    border-bottom: 1px solid #D9D9D9;
    margin: 0px !important;
    border-radius: 0px !important;
}
.panel .panel-title {
    text-transform: capitalize;
}
.panel>.panel-heading {
    border: 0px;
    background: transparent;
    border-left: 7px solid #4F758B;
    padding: 25px 20px;
}
.panel .panel-body {
    border-left: 7px solid #fff !important;
    padding: 25px 20px;
}

.download-box {
    width: 100%;
    display: flex;
    gap: 20px 20px;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
}
.download-box .item {
    width: calc(50% - 10px);
}

.blog-img, .blog-img .img, .blog-img img {
    width: 100%;
    position: relative;
}
.blog-img .text {
    width: 485px;
    max-width: 100%;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 0px 20px;
}
.blog-img .download-box {
    width: 85%;
    margin: 20px auto 0px;
}
.blog-img h3 {
    margin-bottom: 20px;
}
.blog-img .img img {
    height: 645px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-vdo {
    width: 100%;
    position: relative;
    height: calc(100vh - 95px);
    background: #000;
    color: #fff;
}
.banner-vdo .img {
    position: relative;
    width: 100%;
    height: 65vh;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.banner-vdo .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.banner-vdo .img i {
    width: 92px;
    height: 92px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.banner-vdo .text {
    text-align: center;
    width: 690px;
    max-width: 100%;
    width: 100%;
    top: 34%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.banner-vdo .text h2 {
    font-size: 65px;
    line-height: 75px;
}
.banner-vdo .vdo {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.link-section {
    color: #fff;
    display: flex;
    gap: 40px;
    text-align: center;
    justify-content: center;
    align-items: center;
    list-style: none;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-transform: uppercase;
    flex-wrap: wrap;
    margin: 0px;
}
.link-section li {
    padding: 20px 10px;
    display: inline-block;
    cursor: pointer;
}

.lifescape-box {
    width: 100%;
    position: relative;
    display: inline-block;
}
.lifescape-box .body > .item:not(.active) {
    display: none;
}
.lifescape-box .head {
    float: left;
    width: 380px;
    max-width: 100%;
    margin-top: 5px;
}
.lifescape-box .head > .item {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    cursor: pointer;
}
.lifescape-box .head .item.active {
    font-weight: 500;
    position: relative;
}
.lifescape-box .head .item.active::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 12px;
    width: 40px;
    height: 1px;
    background: #000;
}
.lifescape-box .body {
    float: left;
    width: calc(100% - 380px);
}
.lifescape-box .body > .item {
    width: 100%;
    position: relative;
}
.lifescape-box .body > .item .img {
    width: 530px;
    height: 545px;
    object-fit: cover;
    object-position: center;
}
.lifescape-box .body > .item .text {
    position: absolute;
    right: 150px;
    top: 0px;
    width: 325px;
    max-width: 100%;
    left: auto;
    mix-blend-mode: difference;
    color: #fff;
}
.lifescape-box .body > .item .text h2 {
    margin-top: 0px;
}
.lifescape-box .body > .item.style-2 .img {
    float: right;
}
.lifescape-box .body .item.style-2 .text {
    left: 0;
    right: auto;
}

.section-menu {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-petscape {
    position: relative;
    margin-bottom: 30px;
}
.section-petscape .content {
    width: 1000px;
    max-width: 100%;
    margin: 50px auto 80px;
    text-align: center;
}

section ul {
    padding-left: 20px;
}

.number-run {
    width: 100%;
    position: relative;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}
.number-run .item .no {
    font-weight: 500;
    font-size: 65px;
    line-height: 115%;
    padding-bottom: 12px;
    padding-top: 12px;
}

.logo-box .form-group {
    margin-top: 50px;
    margin-bottom: 20px;
}
.logo-box  .btn-box {
    text-align: center;
    width: 850px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.logo-box .btn-box .btn {
    flex: 1;
    margin-top: 10px;
} 
.logo-box .row.is-reverse {
    text-align: right;
}

.blog-full {
    width: 100%;
    position: relative;
    display: inline-block;
}
.blog-full .item {
    float: left;
    width: 50%;
    position: relative;
}
.blog-full .item .text {
    position: relative;
    color: #fff;
    text-align: center;
    min-height: 645px;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 20px;
}
.blog-full .item .text .inner {
    width: 590px;
    max-width: 100%;
}

section:not(.bg-orange) .tab-info .nav-tabs a {
    color: #000 !important;
}
section:not(.bg-orange) .tab-info .nav-tabs .active {
    border-color: #425563 !important;
    color: #425563;
}
section:not(.bg-orange) .tab-info .nav-tabs .active a {
    color: #425563 !important;
}
section:not(.bg-orange) .input-unit{
    border-color: #000;
}

.highlight-box {
    width: 100%;
    position: relative;
    display: inline-block;
}
.highlight-box .row {
    min-height: 250px;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    color: #fff;
    flex-wrap: wrap;
}

.content-h645 {
    width: 860px;
    max-width: 100%;
    margin:  0 auto;
    min-height: 645px;
    display: flex;
    align-items: center;
}

hr {
    border-color: #D9D9D9;
}

.step-content {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}
.step-content p {
    font-family: 'NotoSerifThai';
}

.form-contact .form-group {
    margin-bottom: 25px;
}
.form-contact .form-group .form-control + label {
    left: 0px;
}

textarea {
    resize: none;
}

.list {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 50px;
}
.list .item {
    float: left;
    border-bottom: 1px solid #D9D9D9;
    padding: 30px 0px;
    display: inline-block;
    width: 100%;
}
.list .item:first-child {
    border-top: 1px solid #D9D9D9;
}
.list .item:hover {
    color: #4F758B;
    background: #F5F5F5;
}

.job-content {
    width: 100%;
    position: relative;
}
.job-content .job-ul {
    list-style: none;
    padding: 0px;
    column-count: 2;
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    margin-top: 25px;
}
.job-content .job-ul li {
    margin-bottom: 25px;
}
.job-content .img {
    width: 100% !important;
    margin-top: 80px;
}

.content-detail {
    width: 860px;
    max-width: 100%;
    margin: 0 auto;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
}

.dataTables_wrapper .dataTables_paginate {
    text-align: center;
    margin-top: 50px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    border: 1px solid #D9D9D9;
    text-align: center;
    margin: 7.5px;
    cursor: pointer;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #4F758B;
    color: #FFFFFF;
}
.dataTables_wrapper .dataTables_paginate .paginate_button .m-icon {
    width: 12px;
    height: 12px;
}

.dataTables_wrapper .table {
    border-bottom: 1px solid #D9D9D9;
}
.dataTables_wrapper .table>tbody>tr>td {
    padding: 23px 15px;
}
.table-hover>tbody>tr:hover {
    background-color: #f9f9f9;
}
.position-list h6 {
    margin-bottom: 15px;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    border-color: #D9D9D9;
}

.position-box {
    width: calc(100% - 400px);
    margin: 0 auto;
    max-width: 100%;
    position: relative;
}
.position-box .position-search {
    margin-bottom: 35px;
}
.position-box .position-filter {
    position: absolute;
    left: -200px;
    top: 82px;
    width: 200px;
    padding-right: 30px;
}
.position-box .position-filter .checkbox {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.career-content, .career-form {
    width: 860px;
    max-width: 100%;
    margin: 0 auto;
}
.career-content > .head  h4 {
    margin: 15px 0px 20px;
}
.career-content > .head .btn {
    min-width: 200px;
}
.career-content > .body {
    margin: 50px 0px 0px;
}
.career-content h1, .career-content h2, .career-content h3, .career-content h4, .career-content h5, .career-content h6 {
    font-family: 'Prompt', sans-serif !important; 
    margin-top: 20px;
}
.career-content ul {
    padding-left: 25px;
    display: inline-block;
}
.career-content ul li {
    margin-bottom: 25px;
}

.career-form label.control-label, .career-form label {
    text-align: left;
    font-weight: 300;
}
.career-form .col-sm-3 {
    padding-right: 0px;
}
.sec-text {
    width: 100%;
    position: relative;
    min-height: 482px;
    display: flex;
    align-items: center;
}
.sec-text .text {
    width: 640px;
    max-width: 100%;
    margin: 15px auto;
    position: relative;
}

.sec-text.is-bg {
    min-height: 594px;
}
.sec-text.is-bg .text {
    width: 1000px;
}
.sec-text.is-bg .bg {
    object-fit: cover;
    object-position: center;
}
.sec-text.is-height-auto {
    min-height: auto;
}
.sec-text.is-height-auto .title {
    margin-bottom: 0px;
}
.sec-title {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto 65px;
}
.sec-title p {
    margin-top: 15px;
}
.sec-vdo {
    padding: 0px;
}

.life-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.life-grid .item {
    width: calc(33.33% - 20px);
}

.life-section {
    margin-top: -30px;
}

/* ir */
header.for-ir #bar {
    position: relative;
}
header.for-ir .navbar-center {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 350px);
    justify-content: center;
}
header.for-ir #bar .navbar-nav>li>a {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    padding: 24px 5px 16px;
}
header.for-ir #bar .navbar-center>li>a {
    padding: 24px 0px 16px;
}
header.for-ir.scroll #bar .navbar-nav>li>a {
    color: #425563 !important;
    padding: 15px 5px 5px;
}
header.for-ir.scroll #bar .navbar-center>li>a {
    color: #425563 !important;
    padding: 15px 0px 5px;
}
header.for-ir.scroll .navbar .navbar-toggle {
    padding-left: 5px;
}
#menu.for-ir .navbar-right {
    margin-top: 50px;
}
.sum-box {
    width: 100%;
    position: relative;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}
.sum-box .item {
    width: 25%;
    border-left: 1px solid #D9D9D9;
    margin: 15px 0px;
}
.sum-box .item:first-child, .doc-box .item:first-child {
    border: 0px;
}
.sum-box h3 {
    margin: 5px 0px 15px;
}
.section-seo {
    position: relative;
}
.section-seo , .section-seo .row.is-middle {
    overflow: visible;
}
.section-seo .container {
    width: 1000px;
    max-width: 100%;
}
.section-seo .img {
    width: 400px;
    max-width: 100%;
    margin-top: -280px;
}
.section-seo .text {
    padding: 100px 0px;
}
.doc-box {
    width: 100%;
    position: relative;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}
.doc-box .item {
    width: 33.33%;
    border-left: 1px solid #000;
    margin: 15px 0px;
}
.doc-box .text-icon {
    margin: 25px 0px 35px;
}

.text-icon {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.text-icon i {
    width: 15px;
    height: 15px;
}
.list-ir {
    width: 645px;
    max-width: 100%;
    margin: -20px auto 0px;
}
.list-ir .item {
    padding: 20px 0px;
    border-bottom: 1px solid #D9D9D9;
}

.download-list {
    width: 856px;
    max-width: 100%;
    margin: 0 auto;
}
.download-list .list {
    margin: 20px 0px;
}
.download-list .list .item {
    padding: 22px 20px;
    transition: .3s ease 0s;
    font-weight: 300;
}
.download-list .list .item:hover {
    font-weight: 500;
}
.download-list .list .item:first-child {
    border-top: 0px;
}
.download-list .list .item > div {
    padding: 0px;
}
.table.style-2 th {
    background: #25333C;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    padding: 20px 15px;
}
.table.style-2 td {
    padding: 20px 15px;
    border-bottom: 1px solid #000;
}
.people-box {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.people-box .item {
    width: calc((25% - 30px));
    text-align: center;
}
.people-box .item .img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top center;
}
.people-box .item .text {
    padding: 18px 5px;
}
.people-box .position {
    font-size: 15px;
}
.section-seo.style-2 {
    padding-bottom: 280px !important;
}
.section-director {
    padding-top: 0px;
    margin-top: -280px;
}

.contact-call {
    width: 800px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
.contact-call .item {
    text-align: center;
    width: 50%;
    padding: 5px 20px;
    border-left: 1px solid #D9D9D9;
    margin: 40px 0px;
}
.contact-call .item:first-child {
    border: 0px;
}

.sitemap {
    text-transform: uppercase;
    list-style: none;
    padding: 0px;
}
.sitemap h4 {
    margin: 0px;
}
.sitemap > li {
    width: 100%;
    border-bottom: 1px solid #D9D9D9;
    display: inline-block;
}
.sitemap > li > a {
    float: left;
    width: 33.33%;
    padding: 20px 0px;
    display: inline-block;
}
.sitemap .sub {
    float: left;
    width: 66.66%;
    list-style: none;
    column-count: 2;
    padding: 12px 0px;
}
.sitemap .sub.no-col {
    column-count: 1;
}
.sitemap .sub a {
    padding: 12px 0px;
    display: inline-block;
    font-weight: 400;
}
.sitemap a:hover {
    color: #425563;
}

.search-option {
    width: 100%;
    display: flex;
    gap: 25px 30px;
    flex-wrap: wrap;
}
.search-option .checkbox {
    margin: 0px;
}
.search-option .checkbox label {
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    text-transform: uppercase;
    color: #000000;
    padding: 7px 15px;
    position: relative;
    display: inline-block;
    left: auto;
    top: auto !important;
}
.search-option .checkbox label:before {
    display: none;
}
.search-option .checkbox input:checked + label{
    background: #425563;
    color: #fff;
}
.search-box {
    width: 1000px;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 20px 0px;
}
.search-box .btn-close {
    position: absolute;
    right: 0px;
    top: 0px;
}
.search-box .form-group {
    width: 865px;
    max-width: 100%;
    margin: 30px auto;
    display: block;
}
.search-box input.input-keyword {
    font-size: 40px;
    line-height: 46px;
    padding: 20px 0px;
}
.search-box input.input-keyword::placeholder {
    color: #D9D9D9;
    font-weight: 500;
}

header .navbar-nav>li>.dropdown-menu {
    right: -50%;
}
header .navbar-nav>li>.dropdown-menu:before {
    content: '';
    padding: auto;
    left: calc(50% - 10px);
    top: -8px;
    width: 15px;
    height: 15px;
    background: #fff;
    position: absolute;
    transform: rotate(135deg);
    border: 1px solid #d1d1d1;
    border-top: 0px;
    border-right: 0px;
}
.fade-out.aos-animate {opacity: 0}
.fade-out-up.aos-animate {opacity: 1; top: -50px;}
.newslter-box {
    width: 862px;
    max-width: 100%;
    margin: 20px auto 150px;
}
.newslter-box .form-group {
    margin-top: 30px;
    margin-bottom: 0px;
}
.modal-content {
    border-radius: 0px;
}
.coming {
    font-size: 65px;
    line-height: 115%;
    text-transform: uppercase;
    color: #6B6B6B;
    padding: 30vh 0px;
    text-align: center;
}

.search-result {
    width: 100%;
    position: relative;
}
.search-result .item {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #D9D9D9;
    padding: 30px 0px;
    display: inline-block;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.search-result h6 {
    margin: 10px 0px;
}
.search-result .img {
    float: left;
    width: 420px;
}
.search-result .text {
    float: left;
    width: calc(100% - 420px);
    padding: 15px;
}

.banner-iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
}

.popup {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.8);
    padding: 15px;
    overflow-y: auto;
    display: none;
    z-index: 3000;
    text-align: center;
}
.popup .control {
    max-width: 100%;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 auto;
    display: inline-block;
}
.popup .control .icon-close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    cursor: pointer;
    width: 40px;
}
.popup .control .img {
    width: 1000px;
    max-width: 100%;
}
.popup .control a {
    display: inline-block;
    width: 100%;
}

body.no-scroll {
    overflow-y: hidden;
}

.article-box > img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: top center;
}

.sec-title .img {
    width: auto;
}
.sec .img {
    width: auto;
}
.sec.project-article .img {
    width: 100%;
}

#totop {
    position: fixed;
    bottom: 20px;
    right: 25px;
    background: #21343c;
    color: #fff;
    width: 45px;
    height: 50px;
    line-height: 40px;
    text-align: center;
    line-height: 52px;
    cursor: pointer;
    z-index: 1500;
}
#totop:hover {
    opacity: 0.8;
}

/* 2023-12 */
.blog-full .item {
    min-height: 645px;
    padding: 60px 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.blog-full .item > img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.blog-full .item .text {
    display: block !important;
    min-height: initial !important;
    width: 100% !important;
    text-align: center;
}
.blog-full .item .text .inner {
    margin: 0 auto;
    display: block;
}
.highlight-box {
    min-height: 220px;
    width: 100%;
    display: flex;
    align-items: center;
}
.highlight-box > img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.highlight-box > .row {
    min-height: initial !important;
    width: calc(100% + 30px) !important;
}

.add-line {
    border: 2px solid #22c755;
    color: #22c755;
    font-weight: 600;
    display: inline-flex;
}
.add-line > div {
    padding: 12px 20px;
}
.add-line > div:first-child {
    background: #22c755;
    color: #fff;
}