@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: 'AdobeGaramondPro_Bold';
    src: url('../font/AGaramondPro-Bold.woff2') format('woff2'),
    url('../font/AGaramondPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'FCFlexica_Light';
    src: url('../font/FCFlexicaNoncommercial-Light.woff2') format('woff2'),
    url('../font/FCFlexicaNoncommercial-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FCFlexica_Bold';
    src: url('../font/FCFlexicaNoncommercial-Bold.woff2') format('woff2'),
    url('../font/FCFlexicaNoncommercial-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter_Regular';
    src: url('../font/Inter-Regular.woff2') format('woff2'),
    url('../font/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter_SemiBold';
    src: url('../font/Inter-SemiBold.woff2') format('woff2'),
    url('../font/Inter-SemiBold.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: '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: 'Kanit_Light';
    src: url('../font/kanit-light.woff2') format('woff2'),
    url('../font/kanit-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DexotickByDhan_Studio';
    src: url('../font/DexotickByDhanStudio.woff2') format('woff2'),
    url('../font/DexotickByDhanStudio.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



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

body {
    padding: 0;
    margin: 0;
    font-family: 'Inter_Regular', 'Kanit_Light';
    font-size: 16px;
    color: #3d3d3d;
    line-height: 2;
    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;
}
::selection {
    color: #ffffff;
    background: #f9478e;
}
.container{
    padding: 0;
    position: relative;
}
h1{
    font-family: 'FCFlexica_Bold', 'Kanit_Light';
    margin: 0;
    font-weight: normal;
    font-size: 46px;
    letter-spacing: 2px;
    color: #000000;
    line-height: 48px;
    text-transform: uppercase;
}
h2{
    line-height: normal;
    margin: 0;
    font-weight: normal;
}
h4{
    font-family: 'Gotham_Light', 'Kanit_Light';
    line-height: normal;
    margin: 0;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    color: #000000;
}
.nav_header{
    font-family: 'Gotham_Medium', 'Kanit_Light';
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
    text-align: center;
    background: linear-gradient(90deg, rgba(254,129,0,1) 0%, rgba(248,75,144,1) 42%, rgba(179,23,110,1) 67%, rgba(131,58,180,1) 100%);
    color: #ffffff;
    text-transform: uppercase;
    border-top: 5px solid #000000;
}
.nav_header ul{
    display: inline-flex;
    margin: 0 auto;
    padding: 0;
    /*width: 100%;*/
    transition: all 1s;
}
.nav_header li{
    position: relative;
    float: left;
    list-style: none;
    padding: 0 25px;
    /*width: 16.666%;*/
}
.nav_header li:nth-child(1){
    padding-left: 0;
}
.nav_header li:nth-last-child(1){
    padding-right: 0;
}
.nav_header a{
    line-height: 60px;
    display: inline-grid;
}
.nav_header a:hover{
    color: #000000;
}
.nav_header a:before{
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid transparent;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.nav_header a.active:before{
    border-bottom: 12px solid #000000;
}
.slideshow{
    height: 65vh;
}
.slideshow .slide .image{
    object-position: left;
}
.logo_slide{
    position: absolute;
    left: -100px;
    width: 100%;
    /*height: 150px;*/
    top: 150px;
    bottom: auto;
    margin: auto;
    text-align: left;
    z-index: 1;
}
.logo_slide img{
    width: auto;
    height: 180px;
    display: block;
}
.section_slideshow{
    position: relative;
    margin-top: 65px;
}
.section_investment{
    position: relative;
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(90deg, rgba(253,90,11,1) 0%, rgba(249,43,56,1) 34%, rgba(174,10,96,1) 74%, rgba(121,17,94,1) 100%);
    color: #ffffff;
    overflow: hidden;
}
.section_investment .container{
    position: relative;
    z-index: 1;
}
.section_investment:before{
    content: '';
    background-image: url('../images/icon/investment-left.png');
    width: 110px;
    /*height: calc(100% - 50px);*/
    height: 100%;
    position: absolute;
    left: 100px;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
    margin: auto;
}
.section_investment:after{
    content: '';
    background-image: url('../images/icon/investment-right.png');
    width: 110px;
    /*height: calc(100% - 50px);*/
    height: 100%;
    position: absolute;
    right: 100px;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    bottom: 0;
    margin: auto;
}
.section_investment h2{
    font-family: 'AdobeGaramondPro_Bold','Kanit_Light';
    font-size: 30px;
}
.section_investment h2 > label{
    display: inline-block;
    width: 100%;
}
.section_investment p{
    margin: 0;
    font-family: 'FCFlexica_Light', 'Kanit_Light';
    font-size: 40px;
    line-height: normal;
}
.section_investment p > label{
    color: #ffcc59;
    font-family: 'FCFlexica_Bold', 'Kanit_Light';
    display: inline-block;
    width: 100%;
    font-size: 50px;
}
.section_investment p > label:hover{
    color: #000000;
}
.section_description{
    padding: 60px 0;
    text-align: center;
}
.section_description h1{
    margin-top: 20px;
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.section_description h1:before{
    content: '';
    background-image: url('../images/icon/line.jpg');
    width: 165px;
    height: 8px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-size: contain;
}
.section_description h1 > label{
    display: inline-block;
    width: 100%;
}
.section_description p{
    margin: 0;
}
.section_description p > label{
    font-family: 'Inter_SemiBold', 'Kanit_Light';
}
.btn_readmore{
    background: #000000;
    color: #ffffff;
    padding: 15px 40px;
    font-family: 'Inter_SemiBold', 'Kanit_Light';
    border: none;
    margin-top: 25px;
    transition: all 1s;
}
.btn_readmore:hover{
    background: #f9478e;
}
.images_services{
    height: 450px;
    overflow: hidden;
}
.images_services img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: all 1s;
}
.slide_services .slide:hover .images_services img{
    transform: scale(1.0);
}
.slide_services .slide{
    padding: 0 15px;
}
.slide_services{
    margin: 0 -15px;
}
.name_services{
    font-family: 'FCFlexica_Light', 'Kanit_Light';
    text-align: center;
    width: 100%;
    color: #ffffff;
    padding: 10px;
    font-size: 24px;
    text-transform: uppercase;
}
.name_services p{
    margin: 0;
    line-height: normal;
}
.name_blue{
    background: linear-gradient(90deg, rgba(61,54,106,1) 0%, rgba(110,174,176,1) 100%);
}
.name_pink{
    background: linear-gradient(90deg, rgba(112,18,94,1) 0%, rgba(240,1,95,1) 100%);
}
.name_orange{
    background: linear-gradient(90deg, rgba(248,33,66,1) 0%, rgba(255,181,12,1) 100%);
}
.section_services{
    padding: 0 0 60px;
}
.section_tagline{
    background-image: url('../images/icon/bg_tagline.jpg');
    background-size: cover;
    background-position: center bottom;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.section_tagline:before{
    content: '';
    background-image: url('../images/icon/line_tagline.jpg');
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
}
.section_tagline .col-xs-6{
    float: right;
}
.section_tagline h4{
    color: #ffffff;
    font-family: 'Inter_SemiBold', 'Kanit_Light';
    letter-spacing: 0;
    font-size: 20px;
}
.section_tagline h4 > label{
    display: inline-block;
    width: 100%;
    font-family: 'Inter_Regular', 'Kanit_Light';
    text-transform: none;
}
.section_tagline h1{
    margin-top: 25px;
    background: -webkit-linear-gradient(336deg, rgba(254,177,0,1) 10%, rgba(247,13,84,1) 30%, rgba(79,24,95,1) 50%, rgba(4,138,137,1) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section_features{
    padding: 60px 0;
    text-align: center;
}
.section_features h1{
    margin-top: 20px;
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.section_features h1:before{
    content: '';
    background-image: url('../images/icon/line.jpg');
    width: 165px;
    height: 8px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-size: contain;
}
.section_features img{
    height: auto;
    width: 90px;
    margin: 0;
}
.section_features li > label{
    width: calc(100% - 100px);
    padding-left: 30px;
    font-size: 20px;
    line-height: normal;
    color: #000;
}
.section_features li > label > span{
    display: inline-block;
    width: 100%;
    font-size: 22px;
    font-family: 'Inter_SemiBold', 'Kanit_Light';
    text-transform: uppercase;
    color: #000;
}
.section_features li:nth-child(odd){
    border-left: none;
}
.section_features li:nth-child(even){
    border-right: none;
}
.section_features li:nth-child(1), .section_features li:nth-child(2){
    border-top: none;
}
.section_features li:nth-last-child(1), .section_features li:nth-last-child(2){
    border-bottom: none;
}
.section_features p{
    margin: 5px 0 0;
    line-height: normal;
}
.section_features ul{
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.section_features li{
    width: 50%;
    float: left;
    padding: 20px;
    list-style: none;
    border: 1px solid #eeeeee;
    /*height: 180px;*/
    display: flex;
    align-items: center;
    text-align: left;
    /*flex-direction: column;*/
    /*justify-content: center;*/
    height: 190px;
}
.section_features p > label{
    display: inline-block;
    width: 100%;
}

.section_liftstyle{
    position: relative;
    height: 700px;
    font-family: 'FCFlexica_Bold', 'Kanit_Light';
    color: #000000;
    font-size: 44px;
}
.section_liftstyle:before{
    content: '';
    background-image: url('../images/icon/bg_lifestyle.png');
    width: 100%;
    height: 704px;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: left top;
}
.section_liftstyle .col-xs-7{
    float: right;
}
.section_liftstyle p{
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: normal;
    margin: 150px 0 0;
}
.section_liftstyle p > label{
    display: inline-block;
    width: 100%;
    font-family: 'FCFlexica_Light', 'Kanit_Light';
}
.section_directory{
    padding: 60px 0;
    text-align: center;
}
.section_directory h1{
    margin-top: 20px;
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.section_directory h1:before{
    content: '';
    background-image: url('../images/icon/line.jpg');
    width: 165px;
    height: 8px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-size: contain;
}
.section_directory ul{
    width: 768px;
    margin: 0 auto;
    padding: 0;
}
.section_directory li{
    width: 25%;
    float: left;
    padding: 15px;
    list-style: none;
    border: 1px solid #eeeeee;
}
.section_directory img{
    height: 100px;
    margin: 0 auto;
}
.section_directory li:nth-child(1), .section_directory li:nth-child(2), .section_directory li:nth-child(3), .section_directory li:nth-child(4){
    border-top: none;
}
.section_directory li:nth-child(9), .section_directory li:nth-child(10), .section_directory li:nth-child(11), .section_directory li:nth-child(12){
    border-bottom: none;
}
.section_directory li:nth-child(1), .section_directory li:nth-child(5), .section_directory li:nth-child(9){
    border-left: none;
}
.section_directory li:nth-child(4), .section_directory li:nth-child(8), .section_directory li:nth-child(12){
    border-right: none;
}
.section_footer{
    font-family: 'Inter_Regular', 'Kanit_Light';
    position: relative;
    background: #000000;
    padding: 110px 0 60px;
    color: #ffffff;
    letter-spacing: 1px;
}
.section_footer:before{
    content: '';
    background-image: url('../images/icon/line_footer.png');
    width: 100%;
    height: 45px;
    background-size: contain;
    /* background-repeat: no-repeat; */
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.section_footer .col-xs-3:nth-child(1){
    text-align: center;
}
.section_footer .col-xs-3 img{
    height: 130px;
    margin: 0 auto;
    /*filter: brightness(0) invert(1);*/
}
.section_footer h4{
    color: #ffffff;
    font-family: 'Gotham_Bold', 'Kanit_Light';
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 15px;
}
.section_footer ul{
    margin: 0;
    padding: 0;
}
.section_footer li{
    list-style: none;
}
.section_footer .col-xs-3:nth-child(2) h4{
    color: #ff8200;
}
.section_footer .col-xs-3:nth-child(3) h4{
    color: #f9478e;
}
.section_footer .col-xs-3:nth-child(4) h4{
    color: #058f8b;
}
.section_footer .col-xs-3:nth-child(4) label{
    display: inline-block;
    width: 100%;
}
.section_footer .col-xs-3:nth-child(4){
    padding-left: 80px;
}
.mask_img {
    width: 30px;
    height: 30px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100%;
    mask-repeat: no-repeat;
    background: #ffffff;
    transition: all 1s;
}
.social_footer{
    margin-top: 25px;
}
.social_footer li{
    float: left;
    padding-right: 15px;
}
.mask_img:hover{
    background: #f9478e;
}
.section_footer a:hover{
    color: #f9478e;
}
.section_copyright{
    background: #ffffff;
    display: inline-table;
    width: 100%;
    padding: 15px 0;
}
.section_copyright .col-xs-6:nth-last-child(1){
    text-align: right;
}
.section_copyright a{
    color: #cc912b;
}
.nav_header .logo_brand{
    opacity: 0;
    position: absolute;
    height: 60px;
    left: 0;
    top: 0;
    pointer-events: none;
    transition: all 1s;
}
.nav_header .logo_brand img{
    height: 60px;
    padding: 5px 0;
    display: block;
}
.scroll_menu .logo_brand{
    opacity: 1;
    pointer-events: auto;
}
.scroll_menu.nav_header ul{
    padding-left: 75px;
}
.button_container {
    display: none;
    position: fixed;
    left: auto;
    height: 17px;
    width: 35px;
    margin: auto;
    cursor: pointer;
    z-index: 100;
    padding-bottom: 0;
    top: 20px;
    bottom: auto;
    right: 50px;
    transition: all 1s;
}

.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: #000000;
    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: #000000;
    top: 0;
    right: 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;*/
}

.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: .45s;
    animation-delay: .45s;
}

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

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

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

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

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

.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;
    padding: 0;
    margin: 0 auto;
    position: relative;
    height: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    color: #ffffff;
}

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

.overlay ul li a {
    font-family: 'Gotham_Medium', 'Kanit_Light';
    display: block;
    position: relative;
    color: #ffffff;
    text-decoration: none;
    /*overflow: hidden;*/
    opacity: 0.7;
    transition: all 0.5s;
}

.overlay ul li a.active, .overlay ul li a:hover, .nav_mobile .overlay-menu .active {
    color: #f9478e;
    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;
}
.slick-dots{
    padding: 0;
    margin-top: 30px;
}
.slick-dots li {
    margin: 0 3px;
}
.section_aboutus p{
    margin-bottom: 20px;
}
.section_aboutus_person {
    color: #3d3d3d;
    padding-bottom: 25px;
}
.section_aboutus_person .col-xs-6{
    float: right;
}
.section_aboutus_person h4, .section_details_about h4{
    font-family: 'Inter_SemiBold','Kanit_Light';
    text-transform: uppercase;
    letter-spacing: 0;
    color: #3d3d3d;
}
.section_aboutus_person h1{
    font-family: 'Gotham_Bold','Kanit_Light';
    color: #e53984;
    font-size: 30px;
}
.section_aboutus_person p > label, .section_details_about p > label{
    font-family: 'Inter_SemiBold','Kanit_Light';
}
.section_details_about{
    position: relative;
    padding: 25px 0 50px 0;
    background-image: url('../images/icon/bg_aboutus.jpg');
    background-size: cover;
    background-position: left center;
}
.section_details_about .col-xs-6:nth-child(1){
    float: right;
}
.section_details_about ul{
    margin: 5px 0 0;
}
.section_aboutus_person p, .section_details_about p{
    margin-top: 0;
}
.section_aboutus_person .col-xs-6{
    position: relative;
}
.images_person {
    position: absolute;
    top: -150px;
}
.images_person img{
    width: 100%;
}
.section_portfolio{
    background: #ffffff;
    position: relative;
    padding: 50px 0;
    text-align: center;
}
.row_portfolio .col-xs-6{
    padding: 25px;
}
.row_portfolio{
    margin: 25px -25px 0;
}
.images_portfolio{
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.images_portfolio img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: all 1s;
}
.name_portfolio{
    background: linear-gradient(145deg, rgba(112,18,94,1) 0%, rgba(240,1,95,1) 100%);
    color: #ffffff;
    padding: 10px;
    text-align: center;
    font-family: 'FCFlexica_Light','Kanit_Light';
    text-transform: uppercase;
    font-size: 24px;
}
.row_portfolio .box_portfolio:hover .images_portfolio img{
    transform: scale(1.0);
}
.section_directory_info{
    padding-top: 0;
}
.images_map{
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.images_map img{
    width: auto;
    height: 100%;
    display: block;
    object-fit: contain;
}
.section_googlemap{
    padding: 50px 0;
    text-align: center;
}
.section_googlemap iframe{
    width: 100%;
    height: 500px;
    display: block;
}
.btn_googlemap{
    background: #000000;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    margin-top: 50px;
    text-transform: uppercase;
    transition: all 1s;
}
.btn_googlemap:hover {
    background: #f9478e;
}
.section_contact h3{
    font-family: 'Gotham_Bold','Kanit_Light';
    text-transform: uppercase;
    font-size: 24px;
    color: #000000;
    margin: 0 0 25px;
    line-height: normal;
}
.section_contact{
    color: #747474;
    padding-bottom: 50px;
    font-family: 'Inter_Regular','Kanit_Light';
}
.section_contact .col-xs-5 label{
    width: 120px;
}
.section_contact ul{
    margin: 25px 0 0;
    padding: 0;
}
.section_contact li{
    list-style: none;
}
.section_contact p{
    margin: 0;
}
.section_contact .row_input label{
    width: 100%;
    display: inline-block;

}
.row_input{
    color: #585858;
}
.input_data{
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #eeeeee;
    padding: 0 0 10px 0;
}
.section_contact .row_input .col-xs-12{
    margin-bottom: 15px;
}
.btn_submit{
    margin: 0;
}
.section_contact .row_input textarea{
    height: 200px;
}
.section_contact .col-xs-7{
    padding-left: 50px;
}
.star{
    color: red;
}
.master_plan{
    padding: 50px 50px 0;
}
.master_plan img{
    width: 100%;
}
.section_video{
    padding: 0 0 60px 0;
    text-align: center;
}
.section_video h1{
    margin-top: 20px;
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.section_video h1:before{
    content: '';
    background-image: url('../images/icon/line.jpg');
    width: 165px;
    height: 8px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-size: contain;
}
.video_box{
    display: inline-block;
    width: 100%;
}
.row_videobox .col-xs-6{
    padding: 0 25px;
}
.row_videobox{
    margin: 0 -25px;
}
.video_box .height_video{
    width: 100%;
    height: 300px;
    display: block;
}
.section_contact a:hover{
    color: #f9478e;
}
.tab-content{
    margin-top: 50px;
}
#select-box{
    border: none;
    color: #4d4d4d;
    padding: 0 0 0 5px;
    line-height: 40px;
}
.box_select{
    padding: 0 10px;
    border: 1px solid #000;
    display: inline-flex;
    margin: 0 10px;

}
.box_select i{
    margin-left: 10px;
    line-height: 38px;
}
.tab-container{
    text-align: center;
}
.images_gallery{
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
    transform: scale(1.05);
    transition: all 1s;
}
.box_gallery .col-xs-4{
    padding: 10px;
}
.gallery{
    margin-left: -10px;
    margin-right: -10px;
}
.box_imagesgallery{
    overflow: hidden;
}
.box_gallery .col-xs-4:hover .images_gallery{
    transform: scale(1.0);
}
.section_gallery{
    padding-bottom: 60px;
}
.section_investment h2{
    font-size: 55px;
    font-family: 'DexotickByDhan_Studio','Kanit_Light';
}