/*-----------------------------------------------------------------------------------
	Admire l ออกแบบภายใน เปลี่ยนทุกมุมบ้าน ให้โดดเด่นไม่ซ้ำ ใคร
	About: A shiny new Blocs website.
	Author: PADOL
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#FFFFFF;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: :0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
	font-family:'FCIconic-Regular';
	src: url('./fonts/FCIconic-Regular/FCIconic-Regular.ttf');
	src: url('./fonts/FCIconic-Regular/FCIconic-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'FCIconic-Bold';
	src: url('./fonts/FCIconic-Bold/FCIconic-Bold.ttf');
	src: url('./fonts/FCIconic-Bold/FCIconic-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'FCIconic-ExtraBold';
	src: url('./fonts/FCIconic-ExtraBold/FCIconic-ExtraBold.ttf');
	src: url('./fonts/FCIconic-ExtraBold/FCIconic-ExtraBold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'FCIconic-Medium';
	src: url('./fonts/FCIconic-Medium/FCIconic-Medium.ttf');
	src: url('./fonts/FCIconic-Medium/FCIconic-Medium.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'FCIconic-Light';
	src: url('./fonts/FCIconic-Light/FCIconic-Light.ttf');
	src: url('./fonts/FCIconic-Light/FCIconic-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}


/* Sizes */

.bloc-xl{
	padding:150px 20px;
}
.bloc-md{
	padding:50px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


/* Group Styles */

.bloc-group{
	display:flex;
}
.bloc-tile-2{
	width:50%;
}
.bloc-tile-3{
	width:33.33333333%;
}
.bloc-tile-4{
	width:25%;
}
.bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
	width:100%;
}


/* Background Styles */

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}


/* Video Background Styles */

.video-bg-container, .bloc-video{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: -50%;
	overflow: hidden;
	transform: translateX(-50%);
	-webkit-transform:translateX(-50%);
}
.bloc-video, .video-bg-container iframe{
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	z-index: 0;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* = NavBar
-------------------------------------------------------------- */

/* = Sticky Nav
-------------------------------------------------------------- */

.sticky-bloc.sticky,.sticky-nav.sticky{
	position:fixed;
	z-index:1000;
	transition: all .2s ease-out;
}
.sticky-nav.sticky{
	box-shadow: 0 1px 2px rgba(0,0,0,.3);
}
/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

.btn-sq{
	border-radius: 0px;
}
.btn-clean{
	border:1px solid rgba(0,0,0,.08);
	border-bottom-color:rgba(0,0,0,.1);
	text-shadow:0 1px 0 rgba(0,0,1,.1);
	box-shadow: 0 1px 3px rgba(0,0,1,.25), inset 0 1px 0 0 rgba(255,255,255,.15);
}
.dropdown a .caret{
	margin:0 0 0 5px}.btn-dropdown .dropdown-menu .dropdown{
	padding: 3px 20px;
}

/* = Icons
-------------------------------------------------------------- */
.icon-md{
	font-size:30px!important;
}

/* Image Protection */
.img-protected{
	-webkit-touch-callout: none;
}



/* = Cards
-------------------------------------------------------------- */
.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}
/* = Classic Dividers
-------------------------------------------------------------- */
.divider-h{
	min-height: 1px;
	background-color:rgba(0,0,0,.2);
	margin: 20px 0;
}
.divider-half{
	width: 50%;
}
.dropdown-menu .divider-h{
	margin:0;
}



/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

/* Horizontal Scroll Container */
.blocs-horizontal-scroll-container{
	position:relative;
}
.blocs-horizontal-scroll-area{
	display:flex;
	overflow-x:auto;
	align-items:flex-start;
	gap:20px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.blocs-horizontal-scroll-area > *{
	flex-shrink:0;
	max-width:100%;
}
.blocs-horizontal-scroll-area::-webkit-scrollbar{
	display:none;
}
.blocs-horizontal-scroll-control{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	z-index:1;
	display:flex;
	text-align:center;
	border:0;
	margin:0 30px;
}
.blocs-scroll-control-next{
	right:0;
}
.blocs-round-btn{
	background:rgba(0,0,0,0.15);
	border-radius:100%;
	padding:12px;
	opacity:0;
	cursor:pointer;
	transform:scale(0.5);
	backdrop-filter:blur(20px);
	-webkit-backdrop-filter:blur(20px);
	transition:opacity .50s ease,transform .50s ease;
}
.blocs-horizontal-scroll-container:hover .blocs-round-btn,.blocs-horizontal-scroll-container.show-controls .blocs-round-btn{
	opacity:1;
	transform:scale(1.0);
}
.blocs-round-btn:active{
	background:rgba(0,0,0,0.3);
	transform:scale(0.9)!important;
	transition:transform .30s ease,background .50s ease;
}
.compact-blocs-controls .blocs-round-btn{
	padding:2px;
	width:30px;
	height: 30px;
}
.compact-blocs-controls .blocs-round-btn svg{
	width:14px;
	height:14px;
}
.compact-blocs-controls .blocs-horizontal-scroll-control{
	margin:0 20px;
}
.horizontal-scroll-icon{
	fill:none;
	stroke:#fff;
	stroke-width:4px;
	fill-rule:evenodd;
	stroke-linecap:round;
}
.hide-left-control > .blocs-scroll-control-prev, .hide-right-control > .blocs-scroll-control-next{
	opacity:0!important;
	pointer-events: none;
	transition:opacity .50s ease;
}
.show-controls:not(.hide-left-control) > .blocs-scroll-control-prev, .show-controls:not(.hide-right-control) > .blocs-scroll-control-next{
	opacity:1!important;
}
.show-controls.hide-left-control > .blocs-scroll-control-prev, .show-controls.hide-right-control > .blocs-scroll-control-next{
	opacity:0.4!important;
}
.blocs-horizontal-scroll-area img.lazyload{
	height:0;
}
.horizontal-scroll-v-t .blocs-horizontal-scroll-control{
	top:-40px;
}
.horizontal-scroll-v-b .blocs-horizontal-scroll-control{
	top:100%;
}
.horizontal-scroll-h-c .blocs-scroll-control-next{
	left:50%;
}
.horizontal-scroll-h-c .blocs-scroll-control-prev{
	right:50%;
}
.horizontal-scroll-h-l .blocs-scroll-control-next{
	left:60px;
}
.horizontal-scroll-h-l.compact-blocs-controls .blocs-scroll-control-next{
	left:40px;
}
.horizontal-scroll-h-r .blocs-scroll-control-prev{
	right:60px;
}
.horizontal-scroll-h-r.compact-blocs-controls .blocs-scroll-control-prev{
	right:40px;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"FCIconic-Regular";
	font-size:20px;
	color:var(--swatch-var-6079)!important;
}
.container{
	max-width:1140px;
}
.text23{
	font-size:23px;
	color:var(--swatch-var-619)!important;
}
.brand{
	font-weight:600;
	margin-left:0px;
}
.fit{
	padding:0px 0px 0px 0px;
}
.menu-icon-stroke{
	stroke:var(--swatch-var-1183)!important;
	fill:var(--swatch-var-1183)!important;
}
.link-style{
	width:793px;
}
.demo{
	font-family:"DBHelvethaicaX-MedExt";
	font-size:22px;
	text-align:left;
	text-decoration:none;
	color:var(--swatch-var-1183)!important;
	font-weight:normal;
	letter-spacing:0px;
}
.navbar-brand img{
	width:160px;
}
.h421{
	font-family:"Plus Jakarta Sans";
	font-weight:bold;
	font-size:55px;
	color:var(--swatch-var-619)!important;
}
.container-div-min-height{
	min-height:500px;
}
.card88{
	padding-left:90px;
	padding-right:90px;
}
.h3- flow-style{
	width:100%;
	font-family:"Plus Jakarta Sans";
	font-weight:500;
	color:#090909!important;
	font-size:14px;
}
.h2-5-style{
	font-family:"FCIconic-Medium";
	color:var(--swatch-var-6079)!important;
	font-weight:normal;
	line-height:55px;
	font-size:36px;
}
.green{
	color:var(--swatch-var-619)!important;
}
.h2-73-style{
	font-size:19px;
	color:var(--swatch-var-2190)!important;
	line-height:31px;
	font-family:"FCIconic-Regular";
}
.grid-0-bloc-59-style{
	grid-template-columns:1fr;
}
.card22{
	padding:22px 22px 22px 22px;
	border-radius:12px 12px 12px 12px;
	box-shadow:8.18px 10.10px 12px #E5E5E5;
	border-style:none;
	background-color:var(--swatch-var-2594);
}
.grid-995-style{
	grid-template-columns:0.15fr 1fr;
	grid-template-rows:auto;
}
.textgreen{
	color:var(--swatch-var-7932)!important;
	font-family:"DBHelvethaicaX-MedExt";
	font-size:24px;
	line-height:25px;
	font-weight:normal;
	text-decoration:none;
}
.p-style{
	font-family:"FCIconic-Bold";
	line-height:39px;
	color:#000000!important;
	width:100%;
	text-align:left;
	font-weight:normal;
	text-decoration:none;
	font-size:35px;
}
.img-bloc-214-style{
	width:100%;
}
.green3{
	color:var(--swatch-var-2240)!important;
}
.h2-วิสัยทัศน์-style{
	width:100%;
	font-family:"DBHelvethaicaX-MedExt";
	font-size:44px;
	font-weight:normal;
	color:var(--swatch-var-3391)!important;
	line-height:44px;
}
.img-billng-web01-1-style{
	width:173px;
}
.list{
	color:var(--swatch-var-1183)!important;
	background-color:transparent;
}
.green7{
	color:var(--swatch-var-7116)!important;
}
.btn-style{
	width:97.78%;
	border-radius:28px 28px 28px 28px;
	font-size:28px;
	border-style:solid;
	border-color:var(--swatch-var-4733)!important;
	padding:5px 5px 5px 5px;
}
.btn-โปรโมชั่น-style{
	width:100%;
	border-radius:28px 28px 28px 28px;
	border-style:solid;
	border-color:var(--swatch-var-4733)!important;
	color:var(--swatch-var-6079)!important;
	padding:11px 5px 11px 5px;
	font-size:20px;
	background-color:var(--swatch-var-4716);
	font-family:"FCIconic-Medium";
}
.grid-style{
	grid-template-rows:66px;
	min-height:66px;
	column-gap:16px;
}
.container-div-0-min-height{
	min-height:66px;
}
.fit3{
	padding-right:10px;
	padding-left:10px;
}
.cardstorkegreen{
	margin:0px 0px 0px 0px;
	padding:22px 22px 22px 22px;
	border-style:solid;
	border-color:var(--swatch-var-3391)!important;
	border-width:2px 2px 2px 2px;
	border-radius:12px 12px 12px 12px;
	text-decoration:none;
}
.green88{
	background-color:var(--swatch-var-7932);
}
.container-div-141-min-height{
	min-height:200px;
}
.img-583-style{
	width:69px;
}
.p-bloc-59-style{
	width:100%;
	font-family:"DBHelvethaicaX-Reg";
	color:var(--swatch-var-4716)!important;
	font-size:24px;
	line-height:24px;
	font-weight:normal;
}
.custom-shadow{
	border-radius:22px 22px 22px 22px;
}
.cardgreen2{
	background-color:var(--swatch-var-4630);
	padding:22px 22px 22px 22px;
	border-radius:22px 22px 22px 22px;
}
.green1{
	color:var(--swatch-var-7932)!important;
}
.p-124-style{
	width:99.68%;
	font-family:"Plus Jakarta Sans";
	font-weight:600;
	border-width:0px 0px 0px 0px;
	border-color:var(--swatch-var-1183)!important;
	font-size:26px;
	line-height:33px;
	border-style:solid;
	text-decoration:none;
}
.cardwhite5{
	padding:5px 5px 5px 5px;
	background-color:var(--swatch-var-4716);
	border-radius:19px 19px 19px 19px;
}
.red1{
	color:#C82640!important;
}
.grid-25397-style{
	grid-template-columns:1fr 1fr 1fr 1fr 1fr;
	grid-template-rows:auto;
}
.img-181-style{
	width:48px;
}
.black2{
	color:var(--swatch-var-2190)!important;
	font-size:24px;
}
.text1{
	font-size:15px;
	color:var(--swatch-var-2190)!important;
}
.text22{
	font-family:"FCIconic-Bold";
	text-decoration:none;
	color:var(--swatch-var-2190)!important;
	font-size:25px;
}
.card1{
	padding:12px 12px 12px 12px;
	border-radius:22px 22px 22px 22px;
	background-size:cover;
	background-position:center center;
	background-image:url("img/Group-5.png");
	background-image: -webkit-image-set(url("img/Group-5.webp") 1x,
url("img/Group-5.webp") 2x);background-image: image-set(url("img/Group-5.png") 1x,
url("img/Group-5.png") 2x,url("img/Group-5.webp") 1x,
url("img/Group-5.webp") 2x);
}
.container-div-32842-min-height{
	width:100%;
}
.blocs-card-width{
	width:25%;
	background-size:cover;
}
.blocs-card-width:hover{
	background-image:url("img/play12-1.svg");
}
.img-projectbased1-style{
	border-radius:9px 9px 9px 9px;
	width:100%;
}
.p-6-style{
	width:100%;
	font-family:"DBHelvethaicaX-MedExt";
	text-transform:uppercase;
	font-size:18px;
	color:var(--swatch-var-619)!important;
	line-height:13px;
}
.container-div-27348-min-height{
	min-height:323px;
	width:18.74%;
}
.card2{
	background-image:url("img/ad2-5.jpg");
	background-image: -webkit-image-set(url("img/ad2-5.webp") 1x,
url("img/ad2-5.webp") 2x);background-image: image-set(url("img/ad2-5.jpg") 1x,
url("img/ad2-5.jpg") 2x,url("img/ad2-5.webp") 1x,
url("img/ad2-5.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.card3{
	background-size:cover;
	background-position:center center;
	background-image:url("img/L-1000x667-Photoroom-5.jpg");
	background-image: -webkit-image-set(url("img/L-1000x667-Photoroom-5.webp") 1x,
url("img/L-1000x667-Photoroom-5.webp") 2x);background-image: image-set(url("img/L-1000x667-Photoroom-5.jpg") 1x,
url("img/L-1000x667-Photoroom-5.jpg") 2x,url("img/L-1000x667-Photoroom-5.webp") 1x,
url("img/L-1000x667-Photoroom-5.webp") 2x);
}
.card5{
	background-image:url("img/123-5.jpg");
	background-image: -webkit-image-set(url("img/123-5.webp") 1x,
url("img/123-5.webp") 2x);background-image: image-set(url("img/123-5.jpg") 1x,
url("img/123-5.jpg") 2x,url("img/123-5.webp") 1x,
url("img/123-5.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.black{
	color:var(--swatch-var-2190)!important;
	padding:0px 0px 0px 0px;
}
input{
	background-color:var(--swatch-var-7379);
	border-style:solid;
	border-color:var(--swatch-var-4733)!important;
	border-radius:22px 22px 22px 22px;
	color:var(--swatch-var-4733)!important;
	border-width:1px 1px 1px 1px;
	font-size:20px;
	line-height:20px;
}
.field-style{
	height:51px;
	font-size:22px;
	color:var(--swatch-var-4733)!important;
	border-radius:22px 22px 22px 22px;
	font-family:"FCIconic-Regular";
}
.btn-1-style{
	border-radius:31px 31px 31px 31px;
	background-color:var(--swatch-var-4733);
	width:100%;
	font-family:"FCIconic-Regular";
	font-size:20px;
	padding-top:11px;
	padding-bottom:11px;
}
.cardshadow{
	min-height:200px;
	border-style:none;
	box-shadow:1.34px 1.49px 31px #E8E8E8;
	border-radius:0px 0px 0px 0px;
	padding:2px 2px 2px 2px;
}
.container-div-bloc-2-31105-min-height{
	min-height:318px;
	background-size:cover;
	background-position:center center;
}
.textcard{
	font-size:19px;
	color:var(--swatch-var-6079)!important;
	padding:12px 12px 12px 12px;
	border-radius:22px 22px 22px 22px;
	background-color:var(--swatch-var-1413);
}
.h2-style{
	width:100%;
	font-family:"FCIconic-Bold";
	font-size:66px;
}
h3{
	font-size:22px;
}
.text2{
	font-size:17px;
	line-height:17px;
}
.text3{
	font-size:66px;
	text-align:right;
	line-height:66px;
}
.text4{
	font-family:"FCIconic-Bold";
	text-align:right;
	font-size:22px;
	color:var(--swatch-var-2190)!important;
}
.h1-53-9-style{
	font-size:60px;
	font-family:"FCIconic-ExtraBold";
	color:var(--swatch-var-2190)!important;
}
.p-3-style{
	font-family:"FCIconic-Bold";
	font-size:22px;
	color:var(--swatch-var-6079)!important;
	line-height:33px;
	text-decoration:none;
	opacity:1.0;
}
.p-4-style{
	line-height:26px;
	color:var(--swatch-var-2190)!important;
	font-size:17px;
}
.grid-0-style{
	grid-template-rows:auto;
	column-gap:7px;
}
.grid-0-bloc-2-31105-style{
	column-gap:4px;
	grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows:auto;
	min-height:27px;
}
.p-bloc-2-31105-style{
	line-height:27px;
	color:var(--swatch-var-1183)!important;
	font-size:18px;
	padding-right:0px;
	padding-left:0px;
	text-decoration:none;
	font-family:"FCIconic-Regular";
}
.p-7-style{
	width:100%;
	font-size:18px;
	line-height:28px;
	font-family:"FCIconic-Regular";
	color:var(--swatch-var-7072)!important;
}
.grid-36179-style{
	grid-template-columns:1fr 1fr 1fr;
	column-gap:27px;
	grid-template-rows:auto;
}
.row-style{
	width:100%;
	background-image:url("img/JPEG%20FINAL%205.jpg");
	background-image: -webkit-image-set(url("img/JPEG%20FINAL%205.webp") 1x,
url("img/JPEG%20FINAL%205.webp") 2x);background-image: image-set(url("img/JPEG%20FINAL%205.jpg") 1x,
url("img/JPEG%20FINAL%205.jpg") 2x,url("img/JPEG%20FINAL%205.webp") 1x,
url("img/JPEG%20FINAL%205.webp") 2x);
	background-size:cover;
	background-position:center center;
	min-height:285px;
}
.h5-style{
	width:100%;
	color:var(--swatch-var-4716)!important;
	font-size:25px;
	line-height:35px;
	text-decoration:none;
	font-family:"FCIconic-Bold";
}
.h5-2-style{
	width:100%;
	color:var(--swatch-var-4716)!important;
	font-size:20px;
	line-height:31px;
}
.grid-7350-style{
	grid-template-columns:1fr 1fr 1fr;
	column-gap:45px;
	grid-template-rows:auto;
}
.container-div-8663-min-height{
	min-height:376px;
	padding:20px 25px 20px 25px;
	border-radius:22px 22px 22px 22px;
}
.blog1{
	background-size:cover;
	background-image:url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-3.jpg");
	background-image: -webkit-image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-3.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-3.webp") 2x);background-image: image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-3.jpg") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-3.jpg") 2x,url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-3.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-3.webp") 2x);
	background-position:center center;
}
.container-div-47141-min-height{
	min-height:309px;
}
.btn-button-style{
	width:36.67%;
	border-radius:22px 22px 22px 22px;
	background-color:var(--swatch-var-4716);
	padding:1px 5px 1px 5px;
	font-size:22px;
	color:var(--swatch-var-2190)!important;
	border-width:1px 1px 1px 1px;
	border-color:var(--swatch-var-4733)!important;
	border-style:none;
	font-family:"FCIconic-Regular";
}
.blog3{
	background-image:url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.jpg");
	background-image: -webkit-image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 2x);background-image: image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.jpg") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.jpg") 2x,url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 2x);
	background-image: -webkit-image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 2x);background-image: image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.jpg") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.jpg") 2x,url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.blpg3{
	background-image:url("img/SS14-1.jpg");
	background-image: -webkit-image-set(url("img/SS14-1.webp") 1x,
url("img/SS14-1.webp") 2x);background-image: image-set(url("img/SS14-1.jpg") 1x,
url("img/SS14-1.jpg") 2x,url("img/SS14-1.webp") 1x,
url("img/SS14-1.webp") 2x);
	background-image: -webkit-image-set(url("img/SS14-1.webp") 1x,
url("img/SS14-1.webp") 2x);background-image: image-set(url("img/SS14-1.jpg") 1x,
url("img/SS14-1.jpg") 2x,url("img/SS14-1.webp") 1x,
url("img/SS14-1.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.h2-team-building-style{
	width:100%;
	font-size:120px;
	line-height:100px;
}
.h2-bloc-9-style{
	font-size:22px;
}
.navbar-nav li a{
	color:var(--swatch-var-6079)!important;
	font-family:"FCIconic-Regular";
	font-size:16px;
}
.navbar-logo{
	text-transform:none;
	text-decoration:none;
	font-size:20px;
}
.btn-join-now-style{
	width:100%;
	background-color:var(--swatch-var-4733);
}
.card6{
	background-image:url("img/A234-5.jpg");
	background-image: -webkit-image-set(url("img/A234-5.webp") 1x,
url("img/A234-5.webp") 2x);background-image: image-set(url("img/A234-5.jpg") 1x,
url("img/A234-5.jpg") 2x,url("img/A234-5.webp") 1x,
url("img/A234-5.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.wa1{
	background-image:url("img/96876903_l-01-1.jpg");
	background-image: -webkit-image-set(url("img/96876903_l-01-1.webp") 1x,
url("img/96876903_l-01-1.webp") 2x);background-image: image-set(url("img/96876903_l-01-1.jpg") 1x,
url("img/96876903_l-01-1.jpg") 2x,url("img/96876903_l-01-1.webp") 1x,
url("img/96876903_l-01-1.webp") 2x);
	background-image: -webkit-image-set(url("img/96876903_l-01-1.webp") 1x,
url("img/96876903_l-01-1.webp") 2x);background-image: image-set(url("img/96876903_l-01-1.jpg") 1x,
url("img/96876903_l-01-1.jpg") 2x,url("img/96876903_l-01-1.webp") 1x,
url("img/96876903_l-01-1.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.wa2{
	background-image:url("img/กระเบื้อง-ct-เพชร-เทาคาซ่า-1.jpg");
	background-image: -webkit-image-set(url("img/กระเบื้อง-ct-เพชร-เทาคาซ่า-1.webp") 1x,
url("img/กระเบื้อง-ct-เพชร-เทาคาซ่า-1.webp") 2x);background-image: image-set(url("img/กระเบื้อง-ct-เพชร-เทาคาซ่า-1.jpg") 1x,
url("img/กระเบื้อง-ct-เพชร-เทาคาซ่า-1.jpg") 2x,url("img/กระเบื้อง-ct-เพชร-เทาคาซ่า-1.webp") 1x,
url("img/กระเบื้อง-ct-เพชร-เทาคาซ่า-1.webp") 2x);
	background-image: -webkit-image-set(url("img/กระเบื้อง-ct-เพชร-เทาคาซ่า-1.webp") 1x,
url("img/กระเบื้อง-ct-เพชร-เทาคาซ่า-1.webp") 2x);background-image: image-set(url("img/กระเบื้อง-ct-เพชร-เทาคาซ่า-1.jpg") 1x,
url("img/กระเบื้อง-ct-เพชร-เทาคาซ่า-1.jpg") 2x,url("img/กระเบื้อง-ct-เพชร-เทาคาซ่า-1.webp") 1x,
url("img/กระเบื้อง-ct-เพชร-เทาคาซ่า-1.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.wa3{
	background-image:url("img/sanitary-technician-using-wrench-on-sink_23-2147772326-1.jpg");
	background-image: -webkit-image-set(url("img/sanitary-technician-using-wrench-on-sink_23-2147772326-1.webp") 1x,
url("img/sanitary-technician-using-wrench-on-sink_23-2147772326-1.webp") 2x);background-image: image-set(url("img/sanitary-technician-using-wrench-on-sink_23-2147772326-1.jpg") 1x,
url("img/sanitary-technician-using-wrench-on-sink_23-2147772326-1.jpg") 2x,url("img/sanitary-technician-using-wrench-on-sink_23-2147772326-1.webp") 1x,
url("img/sanitary-technician-using-wrench-on-sink_23-2147772326-1.webp") 2x);
	background-image: -webkit-image-set(url("img/sanitary-technician-using-wrench-on-sink_23-2147772326-1.webp") 1x,
url("img/sanitary-technician-using-wrench-on-sink_23-2147772326-1.webp") 2x);background-image: image-set(url("img/sanitary-technician-using-wrench-on-sink_23-2147772326-1.jpg") 1x,
url("img/sanitary-technician-using-wrench-on-sink_23-2147772326-1.jpg") 2x,url("img/sanitary-technician-using-wrench-on-sink_23-2147772326-1.webp") 1x,
url("img/sanitary-technician-using-wrench-on-sink_23-2147772326-1.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.grid-bloc-2-style{
	grid-template-columns:1.20fr 1.00fr 1fr;
	grid-template-rows:auto;
	min-height:26px;
	column-gap:20px;
	width:93.38%;
}
.container-div-37398-min-height{
	min-height:292px;
}
.h1-bloc-1-style{
	width:100%;
	font-size:55px;
	color:var(--swatch-var-4716)!important;
	font-family:"FCIconic-Bold";
}
.container-div-16605-min-height{
	min-height:300px;
}
.ac1{
	background-image:url("img/ac1.jpg");
	background-image: -webkit-image-set(url("img/ac1.webp") 1x,
url("img/ac1.webp") 2x);background-image: image-set(url("img/ac1.jpg") 1x,
url("img/ac1.jpg") 2x,url("img/ac1.webp") 1x,
url("img/ac1.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.ac2{
	background-image:url("img/ac2.jpg");
	background-image: -webkit-image-set(url("img/ac2.webp") 1x,
url("img/ac2.webp") 2x);background-image: image-set(url("img/ac2.jpg") 1x,
url("img/ac2.jpg") 2x,url("img/ac2.webp") 1x,
url("img/ac2.webp") 2x);
	background-image: -webkit-image-set(url("img/ac2.webp") 1x,
url("img/ac2.webp") 2x);background-image: image-set(url("img/ac2.jpg") 1x,
url("img/ac2.jpg") 2x,url("img/ac2.webp") 1x,
url("img/ac2.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.ac3{
	background-size:cover;
	background-image:url("img/ac3.jpg");
	background-image: -webkit-image-set(url("img/ac3.webp") 1x,
url("img/ac3.webp") 2x);background-image: image-set(url("img/ac3.jpg") 1x,
url("img/ac3.jpg") 2x,url("img/ac3.webp") 1x,
url("img/ac3.webp") 2x);
	background-position:center center;
}
.grid-15974-style{
	grid-template-columns:1fr 1fr 1fr 1fr;
}
.grid-1727-style{
	grid-template-columns:1fr 1fr 1fr;
	grid-template-rows:auto;
}
.fit2{
	padding:0px 0px 0px 0px;
}
.img-bloc-2-31105-style{
	width:100%;
	border-radius:12px 12px 0px 0px;
}
.card9{
	border-radius:0px 0px 0px 0px;
	border-width:0px 1px 1px 1px;
}
.container-div-4025-min-height{
	min-height:207px;
}
.grid-31018-style{
	grid-template-columns:1fr 1fr 1fr;
}
.img-group-162856-style{
	width:177px;
}
.blue{
	color:var(--swatch-var-4733)!important;
}
.grid-1992-style{
	grid-template-columns:1fr 1fr 1fr 1fr;
}
.container-div-0-style{
	width:100%;
}
.grid-40397-style{
	grid-template-columns:0.20fr 1fr;
}
.grid-0-bloc-2-style{
	width:100%;
	grid-template-columns:0.60fr 1fr;
	row-gap:16px;
}
.storke{
	border-width:0px 0px 0px 1px;
	border-style:solid;
	border-color:var(--swatch-var-4733)!important;
}
.text22:hover{
	color:var(--swatch-var-6079)!important;
}
.img-untitl-style{
	width:300px;
	opacity:1.0;
}
.grid-48342-style{
	grid-template-columns:2.00fr 1fr;
	grid-template-rows:auto;
	min-height:111px;
}
.grid-20348-style{
	grid-template-columns:1fr 0.15fr 0.15fr 0.15fr 0.15fr 0.15fr;
	min-height:29px;
	grid-template-rows:auto;
	column-gap:7px;
}
.img-facebook-1-style{
	width:23px;
}
.grid-47030-style{
	grid-template-columns:1fr;
	grid-template-rows:auto;
}
.stroke{
	border-style:solid;
	border-color:var(--swatch-var-7379)!important;
	border-width:0px 0px 1px 0px;
}
.grid-20157-style{
	grid-template-columns:0.35fr 0.35fr;
	width:55.02%;
	grid-template-rows:auto;
	min-height:32px;
}
.img-groupdf1628-style{
	width:181px;
}
.grid-35218-style{
	grid-template-columns:1fr;
	grid-template-rows:auto;
}
.field-bloc-19-style{
	width:100%;
	border-width:0px 0px 1px 0px;
	border-style:solid;
	border-color:var(--swatch-var-7379)!important;
	border-radius:0px 0px 0px 0px;
	color:var(--swatch-var-6079)!important;
	font-family:"FCIconic-Regular";
	font-size:19px;
}
.h2-bloc-19-style{
	font-family:"FCIconic-Light";
	font-size:20px;
	line-height:33px;
	color:var(--swatch-var-6079)!important;
}
.card77{
	padding:44px 22px 44px 22px;
}
.bold{
	font-weight:800;
	font-family:"FCIconic-Medium";
	text-transform:none;
}
.small2x{
	font-size:33px;
	font-family:"FCIconic-Medium";
}
.img-bloc-19-style{
	width:133px;
}
.h3medium{
	font-family:"FCIconic-Medium";
	color:var(--swatch-var-4733)!important;
}
.grid-bloc-48-style{
	grid-template-columns:1.20fr 1.90fr;
	grid-template-rows:27px;
	min-height:27px;
	column-gap:1px;
}
.h3-style{
	width:100%;
	font-family:"FCIconic-Light";
	font-size:18px;
	color:var(--swatch-var-6079)!important;
}
.grid-0-bloc-48-style{
	grid-template-columns:1.55fr 0.75fr 0.75fr 0.75fr;
	column-gap:4px;
	grid-template-rows:auto;
	min-height:21px;
	width:100%;
}
.img-bloc-48-style{
	width:31px;
}
.h2-bloc-63-style{
	width:100%;
	font-family:"FCIconic-Light";
	font-size:17px;
	line-height:27px;
	color:var(--swatch-var-6079)!important;
}
.big{
	font-family:"FCIconic-Bold";
	font-size:25px;
	line-height:29px;
	color:var(--swatch-var-4733)!important;
}
.btn-33-style{
	width:15.67%;
	border-radius:7px 7px 7px 7px;
	font-family:"FCIconic-Light";
	color:var(--swatch-var-4733)!important;
	border-width:1px 1px 1px 1px;
	border-style:solid;
	border-color:var(--swatch-var-4733)!important;
	background-color:var(--swatch-var-7411);
	font-size:16px;
}
.divider-style{
	width:21%;
	border-style:solid;
	border-width:1px 1px 1px 1px;
}
.grid-bloc-43-style{
	width:17.11%;
	grid-template-columns:1.05fr 0.55fr;
	grid-template-rows:auto;
	min-height:20px;
	column-gap:11px;
}
.small3x{
	font-family:"FCIconic-Light";
	font-size:14px;
	color:var(--swatch-var-1183)!important;
}
.grid-0-bloc-43-style{
	grid-template-columns:2.20fr 1fr 1fr 1fr;
	width:17.85%;
	column-gap:7px;
	grid-template-rows:auto;
	min-height:29px;
}
.container-div-bloc-24-min-height{
	min-height:1088px;
}
.img-ads-02-01-style{
	border-radius:12px 12px 12px 12px;
}
.container-div-27385-min-height{
	min-height:326px;
}
.blog8{
	background-image:url("img/Rectangle%20663.jpg");
	background-image: -webkit-image-set(url("img/Rectangle%20663.webp") 1x,
url("img/Rectangle%20663.webp") 2x);background-image: image-set(url("img/Rectangle%20663.jpg") 1x,
url("img/Rectangle%20663.jpg") 2x,url("img/Rectangle%20663.webp") 1x,
url("img/Rectangle%20663.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.blog9{
	background-image:url("img/Rectangle%2069.jpg");
	background-image: -webkit-image-set(url("img/Rectangle%2069.webp") 1x,
url("img/Rectangle%2069.webp") 2x);background-image: image-set(url("img/Rectangle%2069.jpg") 1x,
url("img/Rectangle%2069.jpg") 2x,url("img/Rectangle%2069.webp") 1x,
url("img/Rectangle%2069.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.img-dji-02-style{
	width:100%;
}
.btn-button-style:hover{
	color:var(--swatch-var-4716)!important;
	background-color:var(--swatch-var-4733);
}
.grid-6898-style{
	grid-template-columns:1fr 1fr 0.75fr;
	grid-template-rows:auto;
	min-height:59px;
}
.blog10{
	background-image:url("img/Group%20163042-1.jpg");
	background-image: -webkit-image-set(url("img/Group%20163042-1.webp") 1x,
url("img/Group%20163042-1.webp") 2x);background-image: image-set(url("img/Group%20163042-1.jpg") 1x,
url("img/Group%20163042-1.jpg") 2x,url("img/Group%20163042-1.webp") 1x,
url("img/Group%20163042-1.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.blog11{
	background-image:url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.jpg");
	background-image: -webkit-image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 2x);background-image: image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.jpg") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.jpg") 2x,url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 2x);
	background-image: -webkit-image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 2x);background-image: image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.jpg") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.jpg") 2x,url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.blog12{
	background-image:url("img/ss-1.jpg");
	background-image: -webkit-image-set(url("img/ss-1.webp") 1x,
url("img/ss-1.webp") 2x);background-image: image-set(url("img/ss-1.jpg") 1x,
url("img/ss-1.jpg") 2x,url("img/ss-1.webp") 1x,
url("img/ss-1.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.blog13{
	background-image:url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.jpg");
	background-image: -webkit-image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 2x);background-image: image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.jpg") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.jpg") 2x,url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 2x);
	background-image: -webkit-image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 2x);background-image: image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.jpg") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.jpg") 2x,url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-2.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.gradient{
	background:linear-gradient(0deg, var(--swatch-var-7072) 0%, transparent 100%);
}
a{
	font-size:20px;
}
.img-group-163049-style{
	width:100%;
}
.h5--สุขสร้างบ้าน--style{
	width:100%;
	font-family:"FCIconic-Bold";
	font-size:44px;
	color:var(--swatch-var-4716)!important;
}
.grid-bloc-67-style{
	grid-template-columns:1fr 1fr 1fr 1fr;
	width:48.35%;
	column-gap:12px;
}
.grid-26211-style{
	grid-template-columns:1fr 1fr 1fr;
	grid-template-rows:auto auto;
}
.h1-10-style{
	width:100%;
	font-family:"FCIconic-Bold";
	font-size:49px;
	background-color:transparent;
	color:var(--swatch-var-2190)!important;
}
.grid-45328-style{
	grid-template-columns:0.55fr 0.80fr 0.85fr;
	column-gap:30px;
}
.grid-3081-style{
	grid-template-columns:1.35fr 1fr;
	min-height:40px;
	grid-template-rows:auto;
}
.h6-style{
	width:100%;
	font-family:"FCIconic-Bold";
	color:var(--swatch-var-2190)!important;
	text-align:left;
	font-size:24px;
}
.container-div-bloc-2-style{
	width:100%;
}
.img-group-163064-style{
	border-radius:6px 6px 6px 6px;
	width:100%;
}
h5{
	font-family:"FCIconic-Light";
	font-size:22px;
	color:var(--swatch-var-2190)!important;
}
.h1-ล้านบาท-style{
	color:var(--swatch-var-2190)!important;
	font-family:"FCIconic-Regular";
	font-size:25px;
}
.grid-44946-style{
	grid-template-rows:auto;
	min-height:33px;
	column-gap:21px;
	grid-template-columns:1fr 0.75fr;
}
.h6-ห้อง-style{
	font-size:22px;
	color:var(--swatch-var-2190)!important;
}
.h1-2-99-style{
	font-family:"FCIconic-Bold";
	color:var(--swatch-var-2190)!important;
}
.h2-2-99-style{
	width:100%;
	font-family:"FCIconic-Bold";
	font-size:77px;
	color:var(--swatch-var-2190)!important;
}
.h2-ล้านบาท-style{
	font-family:"FCIconic-Bold";
	color:var(--swatch-var-2190)!important;
	font-size:28px;
}
.h2-รายละเอียดบ้าน-style{
	width:100%;
	font-family:"FCIconic-Bold";
	font-size:44px;
	color:var(--swatch-var-2190)!important;
	text-decoration:none;
}
.grid-49167-style{
	grid-template-columns:0.80fr 0.95fr;
	grid-template-rows:auto;
	column-gap:0px;
	min-height:41px;
}
.h2-79-style{
	width:100%;
	font-family:"FCIconic-Bold";
	font-size:20px;
	color:var(--swatch-var-2190)!important;
}
.h2-81-style{
	width:100%;
	font-size:19px;
	color:var(--swatch-var-2190)!important;
}
.grid-40716-style{
	grid-template-rows:auto;
	min-height:26px;
	column-gap:6px;
	grid-template-columns:3.20fr 1fr;
}
.h2-bloc-2-style{
	width:100%;
	font-family:"FCIconic-Bold";
	font-size:31px;
	color:var(--swatch-var-2190)!important;
}
.h2-bloc-7-style{
	width:100%;
	font-family:"FCIconic-Bold";
	font-size:48px;
}
.card66{
	padding:0px 150px 0px 150px;
}
.h1-bloc-36-style{
	width:100%;
	font-family:"FCIconic-Bold";
	font-size:22px;
	color:var(--swatch-var-4716)!important;
	line-height:29px;
	text-decoration:none;
}
.h1-50-style{
	width:85.06%;
	color:var(--swatch-var-4716)!important;
	line-height:28px;
	font-size:22px;
}
.container-div-bloc-43-min-height{
	min-height:515px;
	background-image:url("img/DJI_0244.jpg");
	background-image: -webkit-image-set(url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);background-image: image-set(url("img/DJI_0244.jpg") 1x,
url("img/DJI_0244.jpg") 2x,url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);
	background-image: -webkit-image-set(url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);background-image: image-set(url("img/DJI_0244.jpg") 1x,
url("img/DJI_0244.jpg") 2x,url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);
	background-image: -webkit-image-set(url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);background-image: image-set(url("img/DJI_0244.jpg") 1x,
url("img/DJI_0244.jpg") 2x,url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);
	background-size:cover;
	background-position:center center;
}
.h2-bloc-36-style{
	width:100%;
	font-family:"FCIconic-Bold";
	color:var(--swatch-var-2190)!important;
	line-height:59px;
	font-size:42px;
}
.h2-bloc-48-style{
	width:100%;
	font-family:"FCIconic-Bold";
	font-size:55px;
	color:var(--swatch-var-6079)!important;
}
.btn-โปรโมชั่น-style:hover{
	background-color:var(--swatch-var-4733);
	color:var(--swatch-var-4716)!important;
}
.h2-153-style{
	font-family:"FCIconic-Bold";
	font-size:44px;
	color:var(--swatch-var-6079)!important;
}
.container-div-31331-min-height{
	min-height:674px;
}
.btn-อ่านเพิ่มเติม-style{
	width:100%;
	color:var(--swatch-var-4733)!important;
	font-size:18px;
	border-radius:23.5px 23.5px 23.5px 23.5px;
	background-color:var(--swatch-var-4716);
	border-width:1px 1px 1px 1px;
	border-style:solid;
	border-color:var(--swatch-var-4733)!important;
}
.btn-อ่านเพิ่มเติม-style:hover{
	background-color:var(--swatch-var-4733);
	color:var(--swatch-var-4716)!important;
	border-width:1px 1px 1px 1px;
	border-style:solid;
	border-color:var(--swatch-var-4733)!important;
}
.h5-bloc-6-style{
	width:100%;
	font-family:"FCIconic-Bold";
	font-size:55px;
	color:var(--swatch-var-4716)!important;
	line-height:73px;
}
.h2-147-style{
	font-family:"FCIconic-Medium";
	font-size:44px;
	line-height:69px;
	color:var(--swatch-var-2190)!important;
	text-align:center;
}
.grid-6859-style{
	grid-template-rows:auto auto auto auto auto auto;
}
.h2-097-105-5932-style{
	width:100%;
	font-size:26px;
	color:var(--swatch-var-6079)!important;
	line-height:39px;
	font-family:"FCIconic-Regular";
}
.h2-171-style{
	width:100%;
	font-family:"FCIconic-Bold";
	color:var(--swatch-var-2190)!important;
	font-size:31px;
	line-height:37px;
}
.container-div-bloc-62-min-height{
	min-height:140px;
}
.img-36-style{
	width:100%;
}
.btn-1-style:hover{
	color:var(--swatch-var-4733)!important;
	background-color:var(--swatch-var-4716);
}
.h2-เหลือ-12-วัน --style{
	font-family:"FCIconic-Medium";
	color:var(--swatch-var-6079)!important;
	font-size:25px;
}
.h3-bloc-41-style{
	width:100%;
	font-size:25px;
	font-family:"FCIconic-Medium";
}
.blog0{
	background-image:url("img/sss.jpg");
	background-image: -webkit-image-set(url("img/sss.webp") 1x,
url("img/sss.webp") 2x);background-image: image-set(url("img/sss.jpg") 1x,
url("img/sss.jpg") 2x,url("img/sss.webp") 1x,
url("img/sss.webp") 2x);
	background-size:cover;
}
.mintra{
	background-image:url("img/Edit_Render_ACD001-4.png");
	background-image: -webkit-image-set(url("img/Edit_Render_ACD001-4.webp") 1x,
url("img/Edit_Render_ACD001-4.webp") 2x);background-image: image-set(url("img/Edit_Render_ACD001-4.png") 1x,
url("img/Edit_Render_ACD001-4.png") 2x,url("img/Edit_Render_ACD001-4.webp") 1x,
url("img/Edit_Render_ACD001-4.webp") 2x);
}
.ventta{
	background-image:url("img/Render_ACD002-5.jpeg");
	background-image: -webkit-image-set(url("img/Render_ACD002-5.webp") 1x,
url("img/Render_ACD002-5.webp") 2x);background-image: image-set(url("img/Render_ACD002-5.jpeg") 1x,
url("img/Render_ACD002-5.jpeg") 2x,url("img/Render_ACD002-5.webp") 1x,
url("img/Render_ACD002-5.webp") 2x);
}
.h2-bloc-2-31105-style{
	font-size:24px;
}
.big2x{
	color:var(--swatch-var-6079)!important;
	font-size:38px;
	line-height:55px;
}
.h2-4-style{
	width:100%;
	color:var(--swatch-var-2190)!important;
	font-family:"FCIconic-Regular";
	font-size:24px;
	line-height:34px;
}
.grid-bloc-68-style{
	grid-template-rows:auto;
	min-height:51px;
	grid-template-columns:1.65fr;
}
.grid-0-bloc-68-style{
	grid-template-rows:auto;
	min-height:31px;
}
.container-div-bloc-68-min-height{
	min-height:51px;
}
.chonlatee{
	background-image:url("img/Render_ACD003L%20copy-4.png");
	background-image: -webkit-image-set(url("img/Render_ACD003L%20copy-4.webp") 1x,
url("img/Render_ACD003L%20copy-4.webp") 2x);background-image: image-set(url("img/Render_ACD003L%20copy-4.png") 1x,
url("img/Render_ACD003L%20copy-4.png") 2x,url("img/Render_ACD003L%20copy-4.webp") 1x,
url("img/Render_ACD003L%20copy-4.webp") 2x);
	background-image: -webkit-image-set(url("img/Render_ACD003L%20copy-4.webp") 1x,
url("img/Render_ACD003L%20copy-4.webp") 2x);background-image: image-set(url("img/Render_ACD003L%20copy-4.png") 1x,
url("img/Render_ACD003L%20copy-4.png") 2x,url("img/Render_ACD003L%20copy-4.webp") 1x,
url("img/Render_ACD003L%20copy-4.webp") 2x);
}
.mina{
	background-image:url("img/Edit_Render_ACD004มินา-1.png");
	background-image: -webkit-image-set(url("img/Edit_Render_ACD004มินา-1.webp") 1x,
url("img/Edit_Render_ACD004มินา-1.webp") 2x);background-image: image-set(url("img/Edit_Render_ACD004มินา-1.png") 1x,
url("img/Edit_Render_ACD004มินา-1.png") 2x,url("img/Edit_Render_ACD004มินา-1.webp") 1x,
url("img/Edit_Render_ACD004มินา-1.webp") 2x);
}
.kiri{
	background-image:url("img/Render_ACD014-4.jpg");
	background-image: -webkit-image-set(url("img/Render_ACD014-4.webp") 1x,
url("img/Render_ACD014-4.webp") 2x);background-image: image-set(url("img/Render_ACD014-4.jpg") 1x,
url("img/Render_ACD014-4.jpg") 2x,url("img/Render_ACD014-4.webp") 1x,
url("img/Render_ACD014-4.webp") 2x);
	background-size:cover;
}
.phakin{
	background-image:url("img/Render_ACD013-4.jpg");
	background-image: -webkit-image-set(url("img/Render_ACD013-4.webp") 1x,
url("img/Render_ACD013-4.webp") 2x);background-image: image-set(url("img/Render_ACD013-4.jpg") 1x,
url("img/Render_ACD013-4.jpg") 2x,url("img/Render_ACD013-4.webp") 1x,
url("img/Render_ACD013-4.webp") 2x);
	background-size:cover;
}
.chatngern{
	background-image:url("img/Render_M_ACD0123-4.jpg");
	background-image: -webkit-image-set(url("img/Render_M_ACD0123-4.webp") 1x,
url("img/Render_M_ACD0123-4.webp") 2x);background-image: image-set(url("img/Render_M_ACD0123-4.jpg") 1x,
url("img/Render_M_ACD0123-4.jpg") 2x,url("img/Render_M_ACD0123-4.webp") 1x,
url("img/Render_M_ACD0123-4.webp") 2x);
	background-size:cover;
}
.container-div-49278-min-height{
	min-height:300px;
}
.mira{
	background-image:url("img/Render_ACD011-4.jpg");
	background-image: -webkit-image-set(url("img/Render_ACD011-4.webp") 1x,
url("img/Render_ACD011-4.webp") 2x);background-image: image-set(url("img/Render_ACD011-4.jpg") 1x,
url("img/Render_ACD011-4.jpg") 2x,url("img/Render_ACD011-4.webp") 1x,
url("img/Render_ACD011-4.webp") 2x);
	background-size:cover;
}
.timber{
	background-image:url("img/Render_ACD009-4.jpg");
	background-image: -webkit-image-set(url("img/Render_ACD009-4.webp") 1x,
url("img/Render_ACD009-4.webp") 2x);background-image: image-set(url("img/Render_ACD009-4.jpg") 1x,
url("img/Render_ACD009-4.jpg") 2x,url("img/Render_ACD009-4.webp") 1x,
url("img/Render_ACD009-4.webp") 2x);
	background-size:cover;
}
.niran{
	background-image:url("img/Edit_Render_ACD008-4.jpg");
	background-image: -webkit-image-set(url("img/Edit_Render_ACD008-4.webp") 1x,
url("img/Edit_Render_ACD008-4.webp") 2x);background-image: image-set(url("img/Edit_Render_ACD008-4.jpg") 1x,
url("img/Edit_Render_ACD008-4.jpg") 2x,url("img/Edit_Render_ACD008-4.webp") 1x,
url("img/Edit_Render_ACD008-4.webp") 2x);
	background-image: -webkit-image-set(url("img/Edit_Render_ACD008-4.webp") 1x,
url("img/Edit_Render_ACD008-4.webp") 2x);background-image: image-set(url("img/Edit_Render_ACD008-4.jpg") 1x,
url("img/Edit_Render_ACD008-4.jpg") 2x,url("img/Edit_Render_ACD008-4.webp") 1x,
url("img/Edit_Render_ACD008-4.webp") 2x);
	background-size:cover;
}
.daisy{
	background-image:url("img/Edit_Render_ACD008-4.jpg");
	background-image: -webkit-image-set(url("img/Edit_Render_ACD008-4.webp") 1x,
url("img/Edit_Render_ACD008-4.webp") 2x);background-image: image-set(url("img/Edit_Render_ACD008-4.jpg") 1x,
url("img/Edit_Render_ACD008-4.jpg") 2x,url("img/Edit_Render_ACD008-4.webp") 1x,
url("img/Edit_Render_ACD008-4.webp") 2x);
	background-image: -webkit-image-set(url("img/Edit_Render_ACD008-4.webp") 1x,
url("img/Edit_Render_ACD008-4.webp") 2x);background-image: image-set(url("img/Edit_Render_ACD008-4.jpg") 1x,
url("img/Edit_Render_ACD008-4.jpg") 2x,url("img/Edit_Render_ACD008-4.webp") 1x,
url("img/Edit_Render_ACD008-4.webp") 2x);
	background-size:cover;
}
.yarinda{
	background-image:url("img/ACD006_S_-4.jpg");
	background-image: -webkit-image-set(url("img/ACD006_S_-4.webp") 1x,
url("img/ACD006_S_-4.webp") 2x);background-image: image-set(url("img/ACD006_S_-4.jpg") 1x,
url("img/ACD006_S_-4.jpg") 2x,url("img/ACD006_S_-4.webp") 1x,
url("img/ACD006_S_-4.webp") 2x);
	background-size:cover;
}
.jasmine{
	background-image:url("img/Render_ACD005_M-4.jpg");
	background-image: -webkit-image-set(url("img/Render_ACD005_M-4.webp") 1x,
url("img/Render_ACD005_M-4.webp") 2x);background-image: image-set(url("img/Render_ACD005_M-4.jpg") 1x,
url("img/Render_ACD005_M-4.jpg") 2x,url("img/Render_ACD005_M-4.webp") 1x,
url("img/Render_ACD005_M-4.webp") 2x);
	background-size:cover;
}
.storke2{
	border-width:1px 0px 0px 0px;
	border-style:solid;
	border-color:var(--swatch-var-7379)!important;
}
.container-div-bloc-36-min-height{
	min-height:130px;
}
.container-div-2109-min-height{
	min-height:54px;
}
.h2-bloc-27-style{
	width:100%;
	color:var(--swatch-var-4716)!important;
	font-size:20px;
	font-family:"FCIconic-Regular";
	line-height:31px;
}
.container-div-15739-min-height{
	min-height:500px;
}
.h2-วิสัยทัศน์--style{
	width:100%;
	font-family:"FCIconic-Light";
	font-size:24px;
	color:var(--swatch-var-6079)!important;
	line-height:33px;
}
.h2-148-style{
	width:100%;
	font-family:"FCIconic-Bold";
	color:var(--swatch-var-6079)!important;
	font-size:33px;
}
.img-102-style{
	width:100%;
}
.h2-bloc-43-style{
	width:100%;
	font-family:"FCIconic-Bold";
	font-size:27px;
	color:var(--swatch-var-2190)!important;
	line-height:37px;
}
.activity2{
	background-image:url("img/ac2.jpg");
	background-image: -webkit-image-set(url("img/ac2.webp") 1x,
url("img/ac2.webp") 2x);background-image: image-set(url("img/ac2.jpg") 1x,
url("img/ac2.jpg") 2x,url("img/ac2.webp") 1x,
url("img/ac2.webp") 2x);
	background-image: -webkit-image-set(url("img/ac2.webp") 1x,
url("img/ac2.webp") 2x);background-image: image-set(url("img/ac2.jpg") 1x,
url("img/ac2.jpg") 2x,url("img/ac2.webp") 1x,
url("img/ac2.webp") 2x);
	background-size:cover;
}
.grid-bloc-33-style{
	column-gap:45px;
}
.container-div-43841-style{
	width:31.31%;
}
.h5-bloc-34-style{
	width:100%;
	font-family:"FCIconic-Bold";
	font-size:42px;
}
.social-icons{
	color:#FEFFFF!important;
}
.social-icons:hover{
	color:#C13724!important;
}
.grid-bloc-173-style{
	grid-template-columns:1fr 1fr 1fr;
	column-gap:0px;
}
.img-messeng-style{
	width:100px;
	position:relative;
	bottom:60px;
}
.p-bloc-67-style{
	color:var(--swatch-var-2190)!important;
	text-decoration:none;
	font-family:"FCIconic-Regular";
	font-size:22px;
}
.img-group-162872-style{
	width:100%;
}
.white{
	background-color:var(--swatch-var-2594);
}
.bloc-style{
	opacity:0.9;
}
.bloc-bloc-67-style{
	opacity:1.0;
}
.img-group-162904-2-style{
	width:100%;
}
.btn-ติดต่อเรา-style{
	width:100%;
	font-family:"FCIconic-Regular";
	background-color:var(--swatch-var-6079);
	padding:7px 5px 7px 5px;
	border-radius:22px 22px 22px 22px;
	color:var(--swatch-var-4716)!important;
	font-size:16px;
}
.btn-2-style{
	width:76.67%;
	border-radius:25px 25px 25px 25px;
	background-color:var(--swatch-var-6079);
	font-family:"FCIconic-Regular";
	font-size:22px;
	color:var(--swatch-var-4716)!important;
}
.btn-2-style:hover{
	background-color:var(--swatch-var-4716);
	color:var(--swatch-var-6079)!important;
	border-style:solid;
	border-color:var(--swatch-var-4733)!important;
	border-width:1px 1px 1px 1px;
}
.btn-3-style{
	border-radius:25px 25px 25px 25px;
	font-family:"FCIconic-Regular";
	font-size:22px;
	color:var(--swatch-var-6079)!important;
	background-color:var(--swatch-var-4716);
	border-style:solid;
	border-color:var(--swatch-var-4733)!important;
	border-width:1px 1px 1px 1px;
}
.btn-3-style:hover{
	background-color:var(--swatch-var-6079);
	font-family:"FCIconic-Regular";
	color:var(--swatch-var-4716)!important;
}
.card18x{
	padding-left:44px;
	padding-right:0px;
}
.btn-อ่านต่อ-style{
	border-radius:25px 25px 25px 25px;
	background-color:var(--swatch-var-4716);
	color:var(--swatch-var-4733)!important;
	font-family:"FCIconic-Regular";
	font-size:18px;
}
.p-431-style{
	width:100%;
	font-family:"FCIconic-Regular";
	font-size:18px;
	text-decoration:none;
	color:var(--swatch-var-6079)!important;
}
.list-style{
	width:100%;
	color:var(--swatch-var-4733)!important;
}
.btn-อ่านต่อ-style:hover{
	font-family:"FCIconic-Regular";
}
.svg-icon-style{
	fill:var(--swatch-var-6079)!important;
	width:25px!important;
	height:25px!important;
}
.btn-ติดต่อเรา-style:hover{
	background-color:var(--swatch-var-4716);
	color:var(--swatch-var-6079)!important;
}
.grid-bloc-2-31105-style{
	grid-template-rows:auto;
}
.h2-153-style:hover{
	color:var(--swatch-var-4716)!important;
	background-color:var(--swatch-var-6079);
}
.fit8{
	margin-left:22px;
}
.lang1{
	font-family:"Maitree";
	color:var(--swatch-var-2147)!important;
	font-size:13px;
}
.lang2{
	font-family:"Maitree";
	font-size:13px;
	color:var(--swatch-var-4716)!important;
}
.h1-bloc-7-style{
	font-family:"FCIconic-Medium";
	font-size:400px;
}
.cardroudn2{
	padding:22px 22px 22px 22px;
	background-color:var(--swatch-var-5805);
	border-style:none;
	border-radius:22px 22px 22px 22px;
}
.cardwhite2{
	padding:22px 22px 22px 22px;
	box-shadow:3.81px 5.87px 9px #D3D3D3;
	border-radius:12px 12px 12px 12px;
	background-color:var(--swatch-var-4716);
}
.lable2{
	font-family:"DBHelvethaicaX-LiExt";
	font-size:18px;
	font-weight:300;
	color:#034833!important;
	border-radius:0px 0px 0px 0px;
	border-color:var(--swatch-var-7379)!important;
}
.form-style{
	width:100%;
}
.btn-send-now-style{
	border-radius:26.5px 26.5px 26.5px 26.5px;
	width:100%;
	background-color:var(--swatch-var-6079);
	color:var(--swatch-var-4716)!important;
	font-family:"FCIconic-Light";
	font-weight:600;
	font-size:14px;
	padding-bottom:12px;
	padding-top:12px;
}
.btn-send-now-style:hover{
	background-color:var(--swatch-var-3391);
	color:var(--swatch-var-7932)!important;
}
label{
	font-size:15px;
}
.blocs12{
	width:44%;
}
.img-logo-mango2-style{
	width:60%;
}
.grid-bloc-140-style{
	grid-template-rows:auto;
	min-height:102px;
	column-gap:21px;
	grid-template-columns:1fr 1fr 1fr 1fr 1fr;
}
.container-div-0-bloc-140-min-height{
	min-height:102px;
}
.h5-style:hover{
	color:var(--swatch-var-3391)!important;
}
.grid-0-bloc-140-style{
	column-gap:4px;
	grid-template-rows:auto;
	min-height:35px;
	width:56.76%;
}
.img-1204-style{
	width:60%;
}
.container-div-29222-style{
	width:20.04%;
	min-height:181px;
	padding:12px 12px 0px 12px;
}
.img-bloc-140-style{
	width:100%;
	opacity:0.8;
}
.card13{
	margin-top:33px;
}
.p-363-style{
	width:100%;
	font-family:"DBHelvethaicaX-MedExt";
	font-size:33px;
	color:var(--swatch-var-3391)!important;
	line-height:33px;
}
.btn-14-style{
	width:100%;
	font-family:"DBHelvethaicaX-Med";
	font-size:22px;
	color:var(--swatch-var-3391)!important;
	border-radius:11px 11px 11px 11px;
	border-style:none;
	background-color:var(--swatch-var-7932);
}
.btn-14-style:hover{
	background-color:var(--swatch-var-3391);
	color:var(--swatch-var-7932)!important;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-4452:#31B0A5;
	
	--swatch-var-4716:rgba(255,255,255,1.00);
	
	--swatch-var-619:#14635A;
	
	--swatch-var-1183:rgba(20,20,20,1.00);
	
	--swatch-var-577:#01A18F;
	
	--swatch-var-2465:rgba(245,239,228,1.00);
	
	--swatch-var-3391:#CBFC01;
	
	--swatch-var-2594:rgba(251,255,253,1.00);
	
	--swatch-var-7932:#21716B;
	
	--swatch-var-2240:#44611E;
	
	--swatch-var-7116:#1E4C33;
	
	--swatch-var-1880:rgba(250,250,250,1.00);
	
	--swatch-var-7379:rgba(173,173,173,1.00);
	
	--swatch-var-5433:rgba(250,255,252,1.00);
	
	--swatch-var-4630:#D7ECE2;
	
	--swatch-var-1413:rgba(226,233,244,1.00);
	
	--swatch-var-307:rgba(43,43,43,1.00);
	
	--swatch-var-5855:#E8E8E8;
	
	--swatch-var-6079:rgba(0,46,108,1.00);
	
	--swatch-var-7072:rgba(0,0,0,1.00);
	
	--swatch-var-2190:rgba(0,0,0,1.00);
	
	--swatch-var-1648:rgba(250,250,250,1.00);
	
	--swatch-var-2079:rgba(255,255,255,1.00);
	
	--swatch-var-6639:#FFEF3D;
	
	--swatch-var-4341:#364687;
	
	--swatch-var-2147:#FFEF3D;
	
	--swatch-var-6885:#001724;
	
	--swatch-var-3436:#001724;
	
	--swatch-var-5805:#ECF8F6;
	
	--swatch-var-2768:#C3C190;
	
}


/* Background colour styles */

.bgc-4716{
	background-color:var(--swatch-var-4716);
}
.bgc-1880{
	background-color:var(--swatch-var-1880);
}
.bgc-6079{
	background-color:var(--swatch-var-6079);
}
.bgc-4452{
	background-color:var(--swatch-var-4452);
}
.bgc-5433{
	background-color:var(--swatch-var-5433);
}
.bgc-2594{
	background-color:var(--swatch-var-2594);
}
.bgc-5855{
	background-color:var(--swatch-var-5855);
}
.bgc-1648{
	background-color:var(--swatch-var-1648);
}

/* Text colour styles */

.bgc-4452{
	background-color:var(--swatch-var-4452);
}
.tc-2190{
	color:var(--swatch-var-2190)!important;
}
.tc-6885{
	color:var(--swatch-var-6885)!important;
}

/* Bloc image backgrounds */

.bg-Group-20162872{
	background-image:url("img/Group%20162872.jpg?timestamp=9850?timestamp=9850?timestamp=9850");
}
.bg-Rectangle-2061{
	background-image:url("img/Rectangle%2061.jpg");
}
.bg-3d-rendering-loft-luxury-living-room-with-bookshelf{
	background-image:url("img/3d-rendering-loft-luxury-living-room-with-bookshelf.jpg");
	background-image: -webkit-image-set(url("img/3d-rendering-loft-luxury-living-room-with-bookshelf.webp") 1x,
url("img/3d-rendering-loft-luxury-living-room-with-bookshelf.webp") 2x);background-image: image-set(url("img/3d-rendering-loft-luxury-living-room-with-bookshelf.jpg") 1x,
url("img/3d-rendering-loft-luxury-living-room-with-bookshelf.jpg") 2x,url("img/3d-rendering-loft-luxury-living-room-with-bookshelf.webp") 1x,
url("img/3d-rendering-loft-luxury-living-room-with-bookshelf.webp") 2x);
}
.bg-modern-living-room-interior-3d-render{
	background-image:url("img/modern-living-room-interior-3d-render.jpg");
	background-image: -webkit-image-set(url("img/modern-living-room-interior-3d-render.webp") 1x,
url("img/modern-living-room-interior-3d-render.webp") 2x);background-image: image-set(url("img/modern-living-room-interior-3d-render.jpg") 1x,
url("img/modern-living-room-interior-3d-render.jpg") 2x,url("img/modern-living-room-interior-3d-render.webp") 1x,
url("img/modern-living-room-interior-3d-render.webp") 2x);
}
.bg-Rectangle-2060{
	background-image:url("img/Rectangle%2060.jpg");
	background-image: -webkit-image-set(url("img/Rectangle%2060.webp") 1x,
url("img/Rectangle%2060.webp") 2x);background-image: image-set(url("img/Rectangle%2060.jpg") 1x,
url("img/Rectangle%2060.jpg") 2x,url("img/Rectangle%2060.webp") 1x,
url("img/Rectangle%2060.webp") 2x);
}
.bg-JPEG-20FINAL-201{
	background-image:url("img/JPEG%20FINAL%201.jpg?timestamp=9399?timestamp=9399?timestamp=9399");
}
.bg-Rectangle-2060{
	background-image:url("img/Rectangle%2060.jpg");
	background-image: -webkit-image-set(url("img/Rectangle%2060.webp") 1x,
url("img/Rectangle%2060.webp") 2x);background-image: image-set(url("img/Rectangle%2060.jpg") 1x,
url("img/Rectangle%2060.jpg") 2x,url("img/Rectangle%2060.webp") 1x,
url("img/Rectangle%2060.webp") 2x);
}
.bg-กิจกรร12{
	background-image:url("img/%E0%B8%81%E0%B8%B4%E0%B8%88%E0%B8%81%E0%B8%A3%E0%B8%A312.jpg");
}
.bg-Afw{
	background-image:url("img/Afw.jpg");
	background-image: -webkit-image-set(url("img/Afw.webp") 1x,
url("img/Afw.webp") 2x);background-image: image-set(url("img/Afw.jpg") 1x,
url("img/Afw.jpg") 2x,url("img/Afw.webp") 1x,
url("img/Afw.webp") 2x);
}
.bg-Ij8c9nt7z02jcDSncbGW{
	background-image:url("img/Ij8c9nt7z02jcDSncbGW.jpg");
	background-image: -webkit-image-set(url("img/Ij8c9nt7z02jcDSncbGW.webp") 1x,
url("img/Ij8c9nt7z02jcDSncbGW.webp") 2x);background-image: image-set(url("img/Ij8c9nt7z02jcDSncbGW.jpg") 1x,
url("img/Ij8c9nt7z02jcDSncbGW.jpg") 2x,url("img/Ij8c9nt7z02jcDSncbGW.webp") 1x,
url("img/Ij8c9nt7z02jcDSncbGW.webp") 2x);
}
.bg-HEAD-20MO3BILE{
	background-image:url("img/HEAD%20MO3BILE-1.jpg");
	background-image: -webkit-image-set(url("img/HEAD%20MO3BILE-1.webp") 1x,
url("img/HEAD%20MO3BILE-1.webp") 2x);background-image: image-set(url("img/HEAD%20MO3BILE-1.jpg") 1x,
url("img/HEAD%20MO3BILE-1.jpg") 2x,url("img/HEAD%20MO3BILE-1.webp") 1x,
url("img/HEAD%20MO3BILE-1.webp") 2x);
}
.bg-HEAD-20MO3BILE{
	background-image:url("img/HEAD%20MO3BILE-1.jpg");
	background-image: -webkit-image-set(url("img/HEAD%20MO3BILE-1.webp") 1x,
url("img/HEAD%20MO3BILE-1.webp") 2x);background-image: image-set(url("img/HEAD%20MO3BILE-1.jpg") 1x,
url("img/HEAD%20MO3BILE-1.jpg") 2x,url("img/HEAD%20MO3BILE-1.webp") 1x,
url("img/HEAD%20MO3BILE-1.webp") 2x);
}
.bg-33334{
	background-image:url("img/33334-1.jpg");
	background-image: -webkit-image-set(url("img/33334-1.webp") 1x,
url("img/33334-1.webp") 2x);background-image: image-set(url("img/33334-1.jpg") 1x,
url("img/33334-1.jpg") 2x,url("img/33334-1.webp") 1x,
url("img/33334-1.webp") 2x);
}
.bg-Rectangle-2061{
	background-image:url("img/Rectangle%2061.jpg");
}
.bg-Rectangle-2061{
	background-image:url("img/Rectangle%2061.jpg");
}
.bg-Rectangle-2060{
	background-image:url("img/Rectangle%2060.jpg");
	background-image: -webkit-image-set(url("img/Rectangle%2060.webp") 1x,
url("img/Rectangle%2060.webp") 2x);background-image: image-set(url("img/Rectangle%2060.jpg") 1x,
url("img/Rectangle%2060.jpg") 2x,url("img/Rectangle%2060.webp") 1x,
url("img/Rectangle%2060.webp") 2x);
}
.bg-Render-ACD003L-20copy{
	background-image:url("img/Render_ACD003L%20copy-4.png");
	background-image: -webkit-image-set(url("img/Render_ACD003L%20copy-4.webp") 1x,
url("img/Render_ACD003L%20copy-4.webp") 2x);background-image: image-set(url("img/Render_ACD003L%20copy-4.png") 1x,
url("img/Render_ACD003L%20copy-4.png") 2x,url("img/Render_ACD003L%20copy-4.webp") 1x,
url("img/Render_ACD003L%20copy-4.webp") 2x);
	background-image: -webkit-image-set(url("img/Render_ACD003L%20copy-4.webp") 1x,
url("img/Render_ACD003L%20copy-4.webp") 2x);background-image: image-set(url("img/Render_ACD003L%20copy-4.png") 1x,
url("img/Render_ACD003L%20copy-4.png") 2x,url("img/Render_ACD003L%20copy-4.webp") 1x,
url("img/Render_ACD003L%20copy-4.webp") 2x);
}
.bg-Rectangle-2060{
	background-image:url("img/Rectangle%2060.jpg");
	background-image: -webkit-image-set(url("img/Rectangle%2060.webp") 1x,
url("img/Rectangle%2060.webp") 2x);background-image: image-set(url("img/Rectangle%2060.jpg") 1x,
url("img/Rectangle%2060.jpg") 2x,url("img/Rectangle%2060.webp") 1x,
url("img/Rectangle%2060.webp") 2x);
}
.bg-Ij8c9nt7z02jcDSncbGW{
	background-image:url("img/Ij8c9nt7z02jcDSncbGW.jpg");
	background-image: -webkit-image-set(url("img/Ij8c9nt7z02jcDSncbGW.webp") 1x,
url("img/Ij8c9nt7z02jcDSncbGW.webp") 2x);background-image: image-set(url("img/Ij8c9nt7z02jcDSncbGW.jpg") 1x,
url("img/Ij8c9nt7z02jcDSncbGW.jpg") 2x,url("img/Ij8c9nt7z02jcDSncbGW.webp") 1x,
url("img/Ij8c9nt7z02jcDSncbGW.webp") 2x);
}
.bg-Edit-Render-ACD004มินา-12{
	background-image:url("img/Edit_Render_ACD004%E0%B8%A1%E0%B8%B4%E0%B8%99%E0%B8%B2-12.png");
}
.bg-portrait-harmonious-family-sitting-couch-holding-cardboard-roof{
	background-image:url("img/portrait-harmonious-family-sitting-couch-holding-cardboard-roof.jpeg");
	background-image: -webkit-image-set(url("img/portrait-harmonious-family-sitting-couch-holding-cardboard-roof.webp") 1x,
url("img/portrait-harmonious-family-sitting-couch-holding-cardboard-roof.webp") 2x);background-image: image-set(url("img/portrait-harmonious-family-sitting-couch-holding-cardboard-roof.jpeg") 1x,
url("img/portrait-harmonious-family-sitting-couch-holding-cardboard-roof.jpeg") 2x,url("img/portrait-harmonious-family-sitting-couch-holding-cardboard-roof.webp") 1x,
url("img/portrait-harmonious-family-sitting-couch-holding-cardboard-roof.webp") 2x);
}

/* = Custom Bric Data
-------------------------------------------------------------- */

.code-embed{
	color:#000;
}
.faqwrapper .qline {
	  display: block;
	  position: relative;
	  cursor: pointer}.faqwrapper .faq-q {
	  display: inline;
	  position: relative;
	  padding-right: .35em;
	  font-size: 1.5em;
	  line-height: 120%;
	  color: #616161}  .faqwrapper .fa {
	  display: inline;
	  position: relative;
	  margin-left: .12em;
	  padding-bottom: .25em;
	  line-height: 60%;
	  color: #616161}  .faqwrapper .aline {
	  display: block;
	  position: relative;
	  padding-left: .75em}    .faqwrapper .faq-a {
	  position: relative;
	  font-size: 1em;
	  line-height: 100%;
	  color: #616161}  .faqwrapper .left {
	  text-align: left}  .faqwrapper .center {
	  text-align: center}  .faqwrapper .aline.center {
	  padding-left: 0em}    .faqwrapper .right {
	  text-align: right}  .faqwrapper .aline.right {
	  padding-right: 2.25em}    .faqwrapper .hide {
	  display: none}  .faqwrapper .reveal {
	  display: block}      /*Infinite Sliderversion: 2.2.0Author: Lucas TsolakianCopyright 2023, Archetyponhttps://archetypon.net/brics/infinite-slider/*/.splide__list {
		padding: 0;
		margin: 0 auto;
		left: 0;
		right: 0}.is-edit .splide__list {
		display: grid;
		padding: 0;
		margin: 0 auto;
		left: 0;
		right: 0}@media (min-width:576px) {
		.is-edit .splide__list {
			grid-template-columns: 24.75% 24.75% 24.75% 24.75%;
			column-gap: .5%;
			row-gap: 1%}
}.infinite-slider, .is-item {
		background-color: transparent;
}
.is-edit img {
		width: 100%;
		height: auto}.is-edit div, .is-edit>img {
		width: auto;
		overflow: hidden}.is-item {
		position: relative;
		background-color: #eaeaea;
		color: #000;
		overflow: hidden}.is-item .is-bric-container {
		position: absolute;
		width: 100%;
		box-sizing: border-box;
		z-index: 1;
		color: #fff;
		background-color: rgba(0,0,0,0)}.is-item .is-bric-container.hidden {
		display: none}.is-item custom-bric-container {
		z-index: 100;
		width: 100%}.is-item-img.hidden {
		visibility: hidden}.is-item-top {
		top: 0;
		transition: .2s}.is-item-bottom {
		bottom: 0;
		transition: .2s}.is-item-middle {
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		transition: .2s}.is-item .clickable a:hover {
		cursor: pointer!important}.is-item.hover-brightness a:hover img {
		filter: brightness(85%);
		transition-duration: .5s}.img-text-overlay-container{
	position:relative;
}
.text-label-overlay{
	position:absolute;
	top: 50%;
	transform: translateY(-50%);
	width:100%;
	 text-align:center;
	font-size:40px;
}
.text-overlay-light-text{
	color:rgba(255,255,255,.5);
}


/* = Toggle Visibility
-------------------------------------------------------------- */

.toggled-item{transition: height 350ms ease-in-out, padding 350ms ease-in-out, opacity 350ms ease-in-out;overflow: hidden;}
.toggled-item-hidden{padding-top:0!important;padding-bottom:0!important;border-top:0!important;border-bottom:0!important;outline:0!important;opacity: 0;}
.object-hidden{display:none;}


/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.menu-icon-bloc-0-stroke{
		stroke:var(--swatch-var-6079)!important;
		fill:var(--swatch-var-6079)!important;
	}
	.fit{
	}
	.menu-icon-stroke{
		stroke:var(--swatch-var-2465)!important;
		fill:var(--swatch-var-2465)!important;
	}
	.link-style{
		width:600px;
	}
	.demo{
		letter-spacing:0px;
	}
	.container-div-min-height{
		min-height:753px;
	}
	.card88{
		padding-left:22px;
		padding-right:22px;
	}
	.h2-5-style{
		font-size:31px;
		line-height:48px;
	}
	.h2-73-style{
		font-size:22px;
		line-height:35px;
	}
	.card22{
		border-radius:12px 12px 12px 12px;
		padding:12px 12px 12px 12px;
		border-style:none;
	}
	.textgreen{
	}
	.p-style{
		width:100%;
		font-size:27px;
		color:var(--swatch-var-2190)!important;
		line-height:33px;
	}
	.green3{
	}
	.h2-วิสัยทัศน์-style{
		font-size:39px;
		line-height:44px;
	}
	.fit3{
	}
	.cardstorkegreen{
		border-radius:22px 22px 22px 22px;
		padding:2px 2px 2px 2px;
	}
	.img-583-style{
		width:54px;
	}
	.p-bloc-59-style{
		font-size:22px;
		font-weight:normal;
	}
	.custom-shadow{
	}
	.p-124-style{
		font-size:24px;
	}
	.grid-25397-style{
		grid-template-columns:1fr 1fr 1fr 1fr 1fr;
	}
	.img-181-style{
		width:35px;
	}
	.card1{
		padding:19px 19px 19px 19px;
	}
	.text22{
		font-size:26px;
	}
	.text1{
		line-height:22px;
	}
	.container-div-32842-min-height{
	}
	.blocs-card-width{
		width:50%;
	}
	.img-projectbased1-style{
		width:100%;
	}
	.p-6-style{
		line-height:18px;
	}
	.container-div-27348-min-height{
		width:35.88%;
		min-height:332px;
	}
	.container-div-0-min-height{
		min-height:66px;
	}
	.btn-style{
		font-size:23px;
	}
	.btn-โปรโมชั่น-style{
		font-size:22px;
		padding-top:11px;
		padding-bottom:11px;
		font-family:"FCIconic-Regular";
	}
	.container-div-bloc-2-31105-min-height{
		min-height:248px;
	}
	.p-bloc-2-31105-style{
		line-height:29px;
		font-size:19px;
	}
	.h1-53-9-style{
		font-size:50px;
		line-height:55px;
	}
	.grid-bloc-2-31105-style{
		column-gap:11px;
	}
	.cardshadow{
		padding:10px 10px 10px 10px;
	}
	.grid-0-style{
		grid-template-columns:1.05fr 1fr;
		column-gap:10px;
		grid-template-rows:auto;
	}
	.grid-0-bloc-2-31105-style{
		column-gap:6px;
		grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
		grid-template-rows:20px;
		min-height:26px;
		row-gap:13px;
	}
	.p-3-style{
		width:100%;
		font-family:"FCIconic-Bold";
		color:var(--swatch-var-6079)!important;
		font-size:20px;
	}
	.p-4-style{
		width:100%;
		font-size:15px;
		line-height:22px;
	}
	.container-div-0-bloc-2-31105-min-height{
		min-height:43px;
	}
	.container-div-style{
		width:100%;
	}
	.grid-36179-style{
		grid-template-columns:1fr 1fr;
	}
	.row-style{
		min-height:200px;
	}
	.h2-style{
		font-size:55px;
	}
	.h5-2-style{
		font-size:19px;
		line-height:29px;
	}
	.container-div-47141-min-height{
		min-height:258px;
	}
	.h5-style{
		line-height:31px;
		font-size:24px;
	}
	.btn-button-style{
		width:35.06%;
		border-color:var(--swatch-var-7379)!important;
		font-size:22px;
	}
	.container-div-8663-min-height{
		min-height:432px;
		padding:12px 22px 12px 22px;
	}
	.h2-team-building-style{
		font-size:70px;
		line-height:70px;
	}
	.container-div-0-bloc-1-min-height{
		min-height:71px;
	}
	.container-div-16605-min-height{
		min-height:388px;
	}
	.grid-7350-style{
		column-gap:14px;
		grid-template-columns:1fr 1fr;
	}
	.grid-1727-style{
		grid-template-columns:1fr 1fr;
	}
	.container-div-4025-min-height{
		min-height:181px;
	}
	.p-7-style{
		font-size:16px;
	}
	.img-group-162856-style{
		width:128px;
	}
	.grid-0-bloc-2-style{
		grid-template-columns:0.60fr 1fr;
		row-gap:22px;
	}
	.img-groupdf1628-style{
		width:151px;
	}
	.grid-48342-style{
		grid-template-columns:1.45fr 1fr;
		grid-template-rows:auto;
		min-height:72px;
	}
	.grid-20348-style{
		grid-template-columns:3.05fr 1fr 1fr 1fr 1fr 1fr;
		column-gap:4px;
		min-height:29px;
		grid-template-rows:29px;
	}
	.img-untitl-style{
		width:250px;
	}
	.container-div-2035-min-height{
		min-height:31px;
		border-style:none;
	}
	.grid-47030-style{
		grid-template-columns:1fr;
		grid-template-rows:auto;
		border-style:none;
		border-width:0px 0px 1px 0px;
		border-color:var(--swatch-var-7379)!important;
	}
	.grid-20157-style{
		width:43.05%;
		column-gap:15px;
	}
	.h1-style{
		line-height:22px;
		font-size:15px;
	}
	.card77{
		padding:44px 33px 44px 33px;
	}
	.btn-1-style{
		width:100%;
		font-size:16px;
		padding-top:11px;
		padding-bottom:11px;
	}
	.grid-bloc-48-style{
		grid-template-rows:29px;
		min-height:29px;
		grid-template-columns:0.45fr 1fr 0.30fr;
	}
	.grid-0-bloc-48-style{
		grid-template-columns:2.95fr 1fr 1fr 1fr;
		min-height:22px;
		row-gap:0px;
		grid-template-rows:22px;
	}
	.container-div-bloc-48-min-height{
		min-height:34px;
	}
	.grid-0-bloc-43-style{
		width:100%;
		min-height:34px;
		column-gap:16px;
	}
	.grid-bloc-43-style{
		width:31.65%;
	}
	.btn-button-style:hover{
		color:var(--swatch-var-2594)!important;
		background-color:var(--swatch-var-4733);
	}
	.btn-33-style{
		width:18.77%;
	}
	.img-group-163049-style{
		width:100%;
	}
	input{
		font-size:22px;
	}
	.field-style{
		font-size:22px;
	}
	.grid-26211-style{
		grid-template-columns:1fr 1fr;
		column-gap:14px;
	}
	.h6-style{
		font-size:15px;
		opacity:0.8;
		width:100%;
	}
	.grid-3081-style{
		grid-template-columns:1.40fr 1fr;
		min-height:28px;
		column-gap:3px;
	}
	.grid-45328-style{
		column-gap:23px;
		grid-template-columns:0.50fr 0.70fr 0.70fr;
		grid-template-rows:auto;
	}
	.h1-10-style{
		font-size:44px;
		color:var(--swatch-var-2190)!important;
		line-height:55px;
	}
	.h1-ล้านบาท-style{
		font-family:"FCIconic-Regular";
		font-size:19px;
		color:var(--swatch-var-2190)!important;
	}
	h5{
	}
	.grid-44946-style{
		column-gap:3px;
		min-height:28px;
	}
	.h6-ห้อง-style{
		width:100%;
		color:var(--swatch-var-2190)!important;
		font-size:15px;
	}
	.h1-2-99-style{
		width:100%;
		font-family:"FCIconic-Bold";
		color:var(--swatch-var-2190)!important;
	}
	.text4{
		color:var(--swatch-var-2190)!important;
		font-family:"FCIconic-Bold";
	}
	.h2-2-99-style{
		font-size:66px;
	}
	.h2-ล้านบาท-style{
		color:var(--swatch-var-2190)!important;
		font-size:23px;
	}
	.grid-40716-style{
		column-gap:2px;
		grid-template-columns:1.80fr 0.80fr;
		width:100%;
	}
	.grid-49167-style{
		column-gap:4px;
		grid-template-columns:1.15fr 1fr;
		row-gap:14px;
		grid-template-rows:auto;
		min-height:26px;
	}
	.h2-รายละเอียดบ้าน-style{
		font-size:33px;
	}
	.h2-79-style{
		font-size:14px;
	}
	.h2-81-style{
		font-size:14px;
	}
	.h2-bloc-2-style{
		font-size:26px;
	}
	.grid-bloc-67-style{
		grid-template-rows:auto;
		min-height:27px;
		width:78.7%;
	}
	.card66{
		padding-left:30px;
		padding-right:30px;
	}
	.h1-bloc-1-style{
		font-size:49px;
	}
	.container-div-27385-min-height{
		min-height:231px;
	}
	.h1-bloc-36-style{
		text-align:right;
	}
	.h1-50-style{
		text-align:right;
		font-size:18px;
		width:81.4%;
		line-height:26px;
	}
	.container-div-bloc-43-min-height{
		background-image:url("img/DJI_0244.jpg");
	background-image: -webkit-image-set(url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);background-image: image-set(url("img/DJI_0244.jpg") 1x,
url("img/DJI_0244.jpg") 2x,url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);
	background-image: -webkit-image-set(url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);background-image: image-set(url("img/DJI_0244.jpg") 1x,
url("img/DJI_0244.jpg") 2x,url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);
	background-image: -webkit-image-set(url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);background-image: image-set(url("img/DJI_0244.jpg") 1x,
url("img/DJI_0244.jpg") 2x,url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);
	}
	.container-div-bloc-24-min-height{
		min-height:650px;
	}
	.grid-15974-style{
		column-gap:14px;
		grid-template-rows:auto;
	}
	.btn-อ่านเพิ่มเติม-style{
		width:100%;
	}
	.h5-bloc-6-style{
		font-size:39px;
		line-height:49px;
	}
	.container-div-36638-min-height{
		min-height:231px;
	}
	.h2-097-105-5932-style{
		font-size:17px;
		line-height:29px;
	}
	.h2-171-style{
		font-size:23px;
	}
	.grid-bloc-69-style{
		row-gap:12px;
	}
	.container-div-bloc-62-min-height{
		min-height:159px;
	}
	.h2-4-style{
		font-size:22px;
		line-height:32px;
	}
	.container-div-49278-min-height{
		min-height:248px;
	}
	.container-div-30135-min-height{
		min-height:248px;
	}
	.textcard{
		font-family:"FCIconic-Regular";
		font-size:17px;
	}
	.grid-bloc-68-style{
		grid-template-columns:1fr;
		row-gap:0px;
	}
	.container-div-bloc-68-min-height{
		min-height:42px;
	}
	.container-div-bloc-68-style{
		width:100%;
	}
	.grid-0-bloc-68-style{
		width:100%;
	}
	.storke2{
		border-width:1px 0px 0px 0px;
		border-style:solid;
		border-color:var(--swatch-var-7379)!important;
	}
	.texttin{
		font-family:"FCIconic-Light";
		font-size:35px;
	}
	.h2-bloc-36-style{
		line-height:53px;
	}
	.grid-style{
		column-gap:9px;
	}
	.h2-bloc-48-style{
		font-size:66px;
	}
	.h2-bloc-43-style{
		line-height:39px;
	}
	.container-div-4783-min-height{
		min-height:34px;
	}
	.container-div-0-bloc-48-min-height{
		min-height:59px;
	}
	.grid-bloc-33-style{
		column-gap:20px;
		grid-template-rows:auto;
	}
	.h2-bloc-27-style{
		font-size:17px;
		line-height:27px;
	}
	.img-96876903-l--style{
		width:100%;
	}
	.container-div-43841-style{
		width:50.97%;
	}
	.grid-bloc-173-style{
		grid-template-rows:62px;
		column-gap:4px;
		grid-template-columns:0.90fr 1fr 0.30fr;
		min-height:62px;
	}
	.storkeright{
		border-style:solid;
		border-width:0px 1px 0px 0px;
		border-color:var(--swatch-var-307)!important;
	}
	.container-div-bloc-67-min-height{
		min-height:62px;
	}
	.p-bloc-67-style{
		text-decoration:none;
		font-family:"FCIconic-Regular";
		font-size:22px;
	}
	h1,h2,h3,h4,h5,h6,p,label,.btn,a{
		font-family:"FCIconic-Regular";
		font-size:24px;
	}
	.btn-ติดต่อเรา-style{
		width:100%;
	}
	.btn-2-style{
		font-family:"FCIconic-Regular";
		font-size:20px;
		width:100%;
	}
	.btn-3-style{
		border-radius:28px 28px 28px 28px;
		width:100%;
		font-size:20px;
	}
	.btn-3-style:hover{
	}
	.cardfit2{
		padding:4px 4px 4px 4px;
	}
	.card18x{
		padding-right:22px;
		padding-left:22px;
	}
	.btn-อ่านต่อ-style:hover{
		font-size:13px;
	}
	.btn-อ่านต่อ-style{
		font-size:15px;
	}
	.svg-icon-style{
		fill:var(--swatch-var-6079)!important;
		width:30px!important;
	}
	.menu-icon-16268-stroke{
		stroke:var(--swatch-var-6079)!important;
		fill:var(--swatch-var-6079)!important;
	}
	.brand{
		margin-left:200px;
	}
	.navbar-nav li a{
		font-family:"FCIconic-Bold";
		font-size:18px;
	}
	.fit8{
		margin-left:280px;
	}
	.menu-icon-0-stroke{
		stroke:var(--swatch-var-6079)!important;
		fill:var(--swatch-var-6079)!important;
	}
	.h1-bloc-7-style{
		font-size:480px;
	}
	.cardwhite2{
		box-shadow:3.81px 5.87px 8px #D6D6D6;
		padding:22px 22px 12px 12px;
		border-radius:17px 17px 17px 17px;
	}
	.green{
	}
	.lable2{
		font-size:18px;
	}
	.form-style{
		width:100%;
	}
	label{
		font-size:13px;
	}
	.btn-send-now-style:hover{
		background-color:var(--swatch-var-7379);
	}
	.btn-send-now-style{
		font-size:14px;
	}
	.img-logo-mango2-style{
		width:80%;
	}
	.grid-bloc-140-style{
		grid-template-columns:1fr 1fr 1fr 1fr 1fr;
		min-height:40px;
		column-gap:13px;
		row-gap:99px;
		grid-template-rows:40px;
	}
	.grid-0-bloc-140-style{
		min-height:25px;
	}
	.img-1204-style{
		width:80%;
	}
	.cardfit3{
		padding:0px 3px 0px 3px;
	}
	.container-div-29222-style{
		width:28.13%;
		min-height:153px;
	}
	.img-bloc-140-style{
		width:100%;
	}
	.card13{
		margin-top:22px;
	}
	.p-363-style{
	}
	.btn-14-style{
		border-radius:25px 25px 25px 25px;
	}
	
}

@media (max-width: 767px){
	.menu-icon-stroke{
		stroke:var(--swatch-var-4452)!important;
		fill:var(--swatch-var-4452)!important;
	}
	.fit{
	}
	.demo{
		font-family:"DBHelvethaicaX-MedExt";
		font-weight:normal;
		font-size:15px;
	}
	.fit-body{
		font-family:"Plus Jakarta Sans";
		font-weight:500;
	}
	.container-div-min-height{
		min-height:662px;
	}
	.menu-icon-0-bloc-0-stroke{
		stroke:var(--swatch-var-4733)!important;
		fill:var(--swatch-var-4733)!important;
	}
	.card88{
		padding-left:12px;
		padding-right:12px;
	}
	.h2-5-style{
		font-size:28px;
		line-height:39px;
	}
	.green{
	}
	.h2-73-style{
		line-height:35px;
		padding:0px 0px 0px 0px;
		font-size:22px;
	}
	.card22{
		border-radius:22px 22px 22px 22px;
	}
	.textgreen{
		font-size:22px;
		text-decoration:none;
	}
	.p-style{
		line-height:44px;
		color:var(--swatch-var-2190)!important;
		font-size:33px;
	}
	.h2-วิสัยทัศน์-style{
		font-size:38px;
	}
	.fit3{
		font-family:"DBHelvethaicaX-Reg";
		font-size:12px;
		padding-left:4px;
		padding-right:4px;
	}
	.container-div-141-min-height{
		min-height:185px;
	}
	.custom-shadow{
		border-radius:22px 22px 22px 22px;
	}
	.p-124-style{
		border-style:none;
		border-color:var(--swatch-var-4630)!important;
		font-size:22px;
	}
	.p-124-style:hover{
	}
	.cardwhite5{
		padding:2px 2px 2px 2px;
	}
	.grid-25397-style{
		grid-template-columns:1fr 1fr 1fr;
		column-gap:10px;
	}
	.img-style{
		width:100%;
	}
	.card1{
		padding:12px 12px 12px 12px;
		border-radius:19px 19px 19px 19px;
	}
	.text22{
		font-size:28px;
		line-height:32px;
	}
	.text1{
		font-size:16px;
		line-height:25px;
	}
	.blocs-card-width{
		width:50%;
	}
	.img-projectbased1-style{
		width:100%;
	}
	.p-6-style{
		font-size:14px;
	}
	.container-div-27348-min-height{
		width:42.11%;
		min-height:342px;
	}
	.container-div-32842-min-height{
	}
	.btn-style{
		border-radius:22px 22px 22px 22px;
	}
	.btn-1-style{
		border-radius:31px 31px 31px 31px;
		padding:12px 4px 12px 4px;
		font-size:19px;
	}
	.btn-โปรโมชั่น-style{
		padding:10px 4px 10px 4px;
		font-size:22px;
	}
	.container-div-0-min-height{
		min-height:66px;
	}
	.grid-bloc-2-31105-style{
		grid-template-columns:1fr;
		row-gap:34px;
	}
	.p-bloc-2-31105-style{
		font-size:22px;
		line-height:32px;
		text-decoration:none;
		width:100%;
	}
	.h1-ล้านบาท-style{
		line-height:30px;
		font-size:30px;
		color:var(--swatch-var-7072)!important;
		font-family:"FCIconic-Regular";
	}
	.container-div-bloc-2-31105-min-height{
		min-height:330px;
	}
	.p-3-style{
		font-size:22px;
		color:var(--swatch-var-6079)!important;
	}
	.grid-0-bloc-2-31105-style{
		min-height:31px;
		column-gap:14px;
	}
	.p-7-style{
		font-size:22px;
	}
	.p-4-style{
		font-family:"FCIconic-Regular";
		font-size:18px;
	}
	.h1-53-9-style{
		font-size:77px;
		line-height:80px;
	}
	.grid-36179-style{
		grid-template-columns:1fr;
		row-gap:34px;
	}
	.row-style{
		min-height:330px;
	}
	.grid-7350-style{
		grid-template-columns:1fr 1fr;
		column-gap:17px;
	}
	.container-div-47141-min-height{
		min-height:147px;
	}
	.h2-team-building-style{
		font-size:44px;
		line-height:44px;
	}
	.h2-bloc-9-style{
		font-size:17px;
	}
	.container-div-bloc-2-min-height{
		min-height:66px;
	}
	.container-div-37398-min-height{
		min-height:249px;
	}
	.grid-bloc-2-style{
		grid-template-rows:auto;
		width:100%;
		grid-template-columns:1.50fr 1fr 1fr;
		column-gap:8px;
	}
	.h5-2-style{
		font-size:22px;
		line-height:28px;
	}
	.h1-bloc-1-style{
		font-size:44px;
	}
	.container-div-16605-min-height{
		min-height:377px;
		width:100%;
	}
	.grid-15974-style{
		grid-template-rows:auto;
		grid-template-columns:1fr 1fr;
	}
	.grid-1727-style{
		grid-template-columns:1fr;
	}
	.container-div-33005-min-height{
		min-height:208px;
	}
	.container-div-4025-min-height{
		min-height:134px;
	}
	.h5-style{
		font-family:"FCIconic-Bold";
		font-size:20px;
	}
	.img-group-162856-style{
		width:127px;
	}
	.grid-1992-style{
		grid-template-columns:1fr 1fr;
		row-gap:0px;
	}
	.grid-0-bloc-2-style{
		column-gap:16px;
		row-gap:17px;
		grid-template-columns:0.50fr 1fr;
	}
	.ft{
	}
	.img-groupdf1628-style{
		width:104px;
	}
	.grid-48342-style{
		grid-template-columns:1.00fr 1fr;
		min-height:38px;
		grid-template-rows:38px;
		column-gap:26px;
	}
	.img-untitl-style{
		width:167px;
	}
	.container-div-810-min-height{
		min-height:38px;
		width:100%;
	}
	.grid-47030-style{
		grid-template-columns:1fr;
		row-gap:19px;
	}
	.container-div-12019-min-height{
		min-height:29px;
	}
	.grid-20348-style{
		min-height:32px;
		grid-template-rows:29px;
	}
	.small2x{
		font-size:27px;
	}
	.card77{
		padding:44px 27px 44px 27px;
	}
	.field-bloc-19-style{
		font-size:25px;
	}
	.h2-bloc-19-style{
		font-size:18px;
		line-height:25px;
	}
	.grid-bloc-48-style{
		grid-template-columns:1.25fr 1.75fr;
	}
	.h3-style{
		font-size:14px;
	}
	.btn-33-style{
		width:22.69%;
		font-size:12px;
	}
	.grid-bloc-43-style{
		width:37.45%;
	}
	.grid-0-bloc-43-style{
		min-height:20px;
		grid-template-rows:19px;
		width:22.32%;
	}
	.divider-style{
		color:var(--swatch-var-7379)!important;
	}
	.container-div-8663-min-height{
		min-height:338px;
	}
	.grid-6898-style{
		min-height:34px;
	}
	.grid-0-bloc-48-style{
		min-height:24px;
		grid-template-rows:24px;
		grid-template-columns:1.35fr 1fr 1fr 1fr;
	}
	.container-div-0-bloc-48-min-height{
		min-height:34px;
	}
	.h1-style{
		line-height:22px;
	}
	.img-group-163049-style{
		width:100%;
	}
	.grid-26211-style{
		grid-template-columns:1fr;
	}
	.grid-44946-style{
		min-height:20px;
	}
	.h6-ห้อง-style{
		font-size:14px;
	}
	.container-div-0-bloc-2-min-height{
		min-height:44px;
	}
	.grid-45328-style{
		grid-template-columns:1fr;
	}
	.h2-รายละเอียดบ้าน-style{
		font-size:27px;
	}
	.grid-49167-style{
		grid-template-columns:1.20fr 1fr;
		grid-template-rows:auto;
		min-height:26px;
	}
	.h2-79-style{
		font-size:15px;
	}
	.h1-bloc-36-style{
		font-size:18px;
		line-height:25px;
	}
	.h1-50-style{
		font-size:19px;
	}
	.h2-bloc-36-style{
		font-size:44px;
	}
	.container-div-bloc-24-min-height{
		min-height:637px;
	}
	.h5-bloc-6-style{
		font-size:44px;
		line-height:57px;
	}
	.container-div-36638-min-height{
		min-height:174px;
	}
	.grid-6859-style{
		grid-template-rows:auto auto auto auto auto auto;
	}
	.h2-171-style{
		font-size:19px;
	}
	.h2-097-105-5932-style{
		font-size:14px;
		line-height:22px;
	}
	.grid-bloc-69-style{
		row-gap:13px;
	}
	.h2-เหลือ-12-วัน --style{
		font-size:22px;
	}
	.card66{
	}
	.btn-button-style{
		font-size:20px;
	}
	.h2-4-style{
		font-size:18px;
		line-height:28px;
	}
	.grid-40716-style{
		grid-template-columns:2.80fr 1fr;
		column-gap:8px;
	}
	.grid-bloc-68-style{
		grid-template-columns:1fr;
		row-gap:0px;
	}
	.container-div-bloc-68-min-height{
		min-height:36px;
	}
	.texttin{
		font-family:"FCIconic-Light";
		font-size:33px;
		color:var(--swatch-var-2190)!important;
	}
	.big2x{
		line-height:49px;
	}
	.h2-bloc-48-style{
		font-size:55px;
	}
	.h2-bloc-27-style{
		font-size:22px;
		line-height:32px;
	}
	.h1-10-style{
		font-size:55px;
	}
	.h2-bloc-7-style{
		font-size:43px;
	}
	.container-div-bloc-48-min-height{
		min-height:24px;
	}
	.h2-148-style{
		font-size:32px;
	}
	.img-bloc-65-style{
		width:33px;
	}
	.h2-81-style{
		font-size:17px;
	}
	.h5-bloc-34-style{
		font-size:38px;
	}
	.grid-bloc-173-style{
		grid-template-columns:1.25fr 1fr 0.35fr;
		min-height:51px;
		grid-template-rows:47px;
	}
	.container-div-bloc-67-min-height{
		min-height:51px;
	}
	.img-head-mobile-style{
		width:100%;
	}
	.brand{
		margin-left:99px;
	}
	.white{
		background-color:var(--swatch-var-2079);
	}
	.img-messeng-style{
		text-decoration:none;
	}
	.p-bloc-67-style{
		text-decoration:none;
	}
	h1,h2,h3,h4,h5,h6,p,label,.btn,a{
		font-family:"FCIconic-Regular";
		font-size:24px;
	}
	.btn-3-style{
		font-size:20px;
	}
	.btn-2-style{
		font-size:20px;
	}
	.btn-3-style:hover{
	}
	.btn-2-style:hover{
	}
	.textcard{
		font-size:19px;
	}
	.cardfit2{
		padding:12px 12px 12px 12px;
	}
	.btn-อ่านต่อ-style:hover{
	}
	.btn-อ่านต่อ-style{
		font-size:15px;
	}
	.container-div-2035-min-height{
	}
	.navbar-nav li a{
		font-size:16px;
		font-family:"FCIconic-Bold";
	}
	.h5--สุขสร้างบ้าน--style{
		font-size:55px;
	}
	.text-left{
	}
	.lang1{
		font-family:"Maitree";
		color:var(--swatch-var-2147)!important;
		text-decoration:none;
	}
	.menu-icon-bloc-0-stroke{
		stroke:var(--swatch-var-6079)!important;
		fill:var(--swatch-var-6079)!important;
	}
	.btn-ติดต่อเรา-style{
		padding-top:11px;
		padding-bottom:11px;
	}
	.h1-bloc-7-style{
		line-height:220px;
	}
	.storkeright{
		padding-right:8px;
	}
	.cardroudn2{
		padding:22px 22px 22px 22px;
	}
	.cardwhite2{
		box-shadow:1.55px 1.26px 2px rgba(0,0,0,0.32);
	}
	.form-style{
		width:100%;
	}
	label{
		font-size:13px;
	}
	.btn-send-now-style{
		font-size:14px;
	}
	.blog8{
		width:100%;
	}
	.img-logo-mango2-style{
		width:70%;
	}
	.grid-bloc-140-style{
		column-gap:11px;
	}
	.grid-0-bloc-140-style{
		width:75.36%;
		min-height:20px;
	}
	.img-1204-style{
		width:80%;
	}
	.container-div-377-style{
		width:100%;
	}
	.container-div-29222-style{
		width:35.93%;
		padding:12px 12px 0px 12px;
		min-height:135px;
	}
	.img-bloc-140-style{
		width:100%;
	}
	.btn-14-style:hover{
		color:var(--swatch-var-7932)!important;
	}
	
}

@media (max-width: 575px){
	.menu-icon-stroke{
		stroke:var(--swatch-var-4452)!important;
		fill:var(--swatch-var-4452)!important;
	}
	.fit{
	}
	.menu-icon-0-stroke{
		stroke:var(--swatch-var-577)!important;
		fill:var(--swatch-var-577)!important;
	}
	.link-style{
		width:0px;
	}
	.demo{
		font-size:18px;
	}
	.fit-body{
		padding:0px 0px 0px 0px;
	}
	.container-div-min-height{
		min-height:437px;
	}
	.menu-icon-0-bloc-0-stroke{
		stroke:var(--swatch-var-4733)!important;
		fill:var(--swatch-var-4733)!important;
	}
	.card88{
		background-size:cover;
		padding:0px 2px 0px 2px;
	}
	.h2-5-style{
		line-height:34px;
		padding-right:0px;
		padding-left:0px;
		font-family:"FCIconic-Bold";
		font-size:24px;
	}
	.green{
	}
	.h2-73-style{
		width:100%;
		color:var(--swatch-var-2190)!important;
		line-height:25px;
		text-decoration:none;
		font-size:16px;
	}
	.card22{
		padding:8px 8px 8px 8px;
	}
	.grid-995-style{
		grid-template-columns:1fr;
		row-gap:10px;
	}
	.img-bloc-59-style{
		width:52px;
	}
	.textgreen{
		font-family:"DBHelvethaicaX-MedExt";
		line-height:22px;
		font-size:19px;
	}
	.p-style{
		font-size:22px;
		font-family:"FCIconic-Bold";
		line-height:32px;
		color:var(--swatch-var-2190)!important;
	}
	.h2-วิสัยทัศน์-style{
		font-size:33px;
		line-height:33px;
	}
	.fit3{
		padding:0px 5px 0px 5px;
	}
	.cardstorkegreen{
		padding-top:12px;
		padding-bottom:12px;
		border-radius:17px 17px 17px 17px;
	}
	.green88{
		padding:10px 0px 10px 0px;
	}
	.custom-shadow{
	}
	.cardgreen2{
		padding:12px 12px 12px 12px;
	}
	.p-124-style{
		font-size:17px;
		line-height:22px;
		border-color:var(--swatch-var-2594)!important;
	}
	.grid-25397-style{
		grid-template-columns:1fr;
	}
	.img-181-style{
		width:54px;
	}
	.container-div-32842-min-height{
		min-height:233px;
	}
	.blocs-card-width{
		width:100%;
	}
	.img-projectbased1-style{
		width:100%;
	}
	.container-div-27348-min-height{
		width:64.97%;
		min-height:334px;
	}
	.text22{
		font-size:28px;
		line-height:28px;
	}
	.text1{
		font-size:14px;
		line-height:14px;
	}
	.h1-style{
		line-height:22px;
		font-size:13px;
	}
	.container-div-0-min-height{
		min-height:41px;
	}
	.grid-style{
		grid-template-rows:41px;
		min-height:41px;
		column-gap:12px;
	}
	.btn-style{
		font-size:15px;
	}
	.btn-โปรโมชั่น-style{
		padding-top:8px;
		padding-bottom:8px;
		font-size:10px;
		width:100%;
	}
	.container-div-bloc-2-min-height{
		min-height:42px;
	}
	.field-style{
		height:47px;
		width:100%;
		color:var(--swatch-var-2190)!important;
		font-size:19px;
	}
	.p-bloc-2-31105-style{
		line-height:24px;
		text-decoration:none;
		font-size:15px;
	}
	.container-div-bloc-2-31105-min-height{
		min-height:252px;
		border-style:none;
	}
	.h2-style{
		font-size:33px;
	}
	.cardshadow{
		box-shadow:-1.53px 7.85px 42px #E8E8E8;
		border-radius:0px 0px 0px 0px;
		border-style:none;
		padding:0px 0px 0px 0px;
	}
	.h1-53-9-style{
		font-size:48px;
		line-height:52px;
	}
	.h1-ล้านบาท-style{
		font-size:26px;
		font-family:"FCIconic-Regular";
		width:100%;
		text-align:right;
	}
	.p-4-style{
		font-size:18px;
	}
	.p-3-style{
		font-size:18px;
		line-height:24px;
		font-family:"FCIconic-Bold";
		text-decoration:none;
		color:var(--swatch-var-6079)!important;
	}
	.p-7-style{
		font-size:16px;
		color:var(--swatch-var-7072)!important;
	}
	.grid-0-bloc-2-31105-style{
		column-gap:4px;
		width:94.77%;
	}
	.textcard{
		border-radius:22px 22px 22px 22px;
		padding:4px 4px 4px 4px;
	}
	.row-style{
		min-height:250px;
	}
	.h5-style{
		line-height:31px;
		font-size:25px;
		width:100%;
	}
	.img-36-style{
		width:95%;
	}
	.grid-7350-style{
		grid-template-columns:1fr;
	}
	.blog3{
		background-image:url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.jpg");
	background-image: -webkit-image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 2x);background-image: image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.jpg") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.jpg") 2x,url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 2x);
	background-image: -webkit-image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 2x);background-image: image-set(url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.jpg") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.jpg") 2x,url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 1x,
url("img/LINE_ALBUM_AC62%20คุณอมรรัตน์%20%28บุ๋ม3%29%20ปราสาท%20สุรินทร์_๒๔๐๕๐๘_193-1.webp") 2x);
		background-size:cover;
		background-position:center center;
	}
	.blpg3{
		background-image:url("img/SS14-1.jpg");
	background-image: -webkit-image-set(url("img/SS14-1.webp") 1x,
url("img/SS14-1.webp") 2x);background-image: image-set(url("img/SS14-1.jpg") 1x,
url("img/SS14-1.jpg") 2x,url("img/SS14-1.webp") 1x,
url("img/SS14-1.webp") 2x);
	background-image: -webkit-image-set(url("img/SS14-1.webp") 1x,
url("img/SS14-1.webp") 2x);background-image: image-set(url("img/SS14-1.jpg") 1x,
url("img/SS14-1.jpg") 2x,url("img/SS14-1.webp") 1x,
url("img/SS14-1.webp") 2x);
		background-size:cover;
		background-position:center center;
	}
	.h2-team-building-style{
		font-size:28px;
		line-height:22px;
	}
	.h2-bloc-9-style{
		width:100%;
		font-size:11px;
		line-height:16px;
	}
	.navbar-logo{
		font-size:18px;
	}
	.btn-join-now-style{
		font-size:11px;
		width:100%;
		color:var(--swatch-var-4716)!important;
	}
	.navbar-brand img{
		width:130px;
	}
	.container-div-47141-min-height{
		width:96.79%;
		padding:12px 12px 12px 12px;
		min-height:293px;
	}
	.grid-bloc-2-style{
		column-gap:4px;
		width:100%;
		grid-template-columns:1.60fr 1fr 1fr;
	}
	.grid-36179-style{
		row-gap:24px;
	}
	.container-div-16605-min-height{
		min-height:137px;
	}
	.h1-bloc-1-style{
		font-size:36px;
		font-family:"FCIconic-Bold";
	}
	.grid-15974-style{
		grid-template-columns:1fr 1fr;
		row-gap:11px;
		column-gap:12px;
	}
	.grid-1727-style{
		grid-template-columns:1fr;
	}
	.container-div-4025-min-height{
		min-height:159px;
	}
	.container-div-33005-min-height{
		min-height:211px;
	}
	.grid-31018-style{
		column-gap:6px;
		grid-template-rows:auto;
	}
	.img-group-162856-style{
		width:98px;
	}
	.grid-1992-style{
		grid-template-columns:1fr;
		row-gap:11px;
	}
	.grid-40397-style{
		grid-template-columns:0.10fr 1fr;
		grid-template-rows:auto;
		min-height:38px;
	}
	.grid-0-bloc-2-style{
		column-gap:10px;
		grid-template-columns:0.60fr 1fr;
		row-gap:4px;
	}
	.img-groupdf1628-style{
		width:115px;
	}
	.grid-48342-style{
		column-gap:12px;
		min-height:57px;
		grid-template-columns:1.15fr 1fr;
	}
	.img-untitl-style{
		width:145px;
	}
	.grid-20348-style{
		grid-template-columns:3.50fr 1fr 1fr 1fr 1fr 1fr;
		min-height:33px;
	}
	.container-div-12019-min-height{
		min-height:52px;
	}
	.container-div-810-min-height{
		min-height:57px;
	}
	.grid-47030-style{
		column-gap:8px;
		grid-template-columns:1fr;
		border-style:solid;
	}
	.grid-20157-style{
		width:74.05%;
	}
	.h2-bloc-19-style{
		font-size:14px;
		line-height:--2-31105-px;
	}
	.field-bloc-19-style{
		font-size:17px;
	}
	.card77{
		padding:22px 12px 22px 12px;
	}
	.img-bloc-19-style{
		width:108px;
	}
	.btn-1-style{
		width:100%;
		padding-top:10px;
		padding-bottom:10px;
		font-size:18px;
		color:var(--swatch-var-6079)!important;
	}
	.small2x{
		font-size:17px;
	}
	.blocsapp-special-menu blocsnav{
		background-color:var(--swatch-var-2079);
	}
	.grid-bloc-48-style{
		grid-template-columns:0.65fr 0.95fr;
		column-gap:10px;
		row-gap:8px;
		min-height:15px;
		grid-template-rows:15px;
	}
	.h3-style{
		font-size:12px;
	}
	.grid-0-bloc-48-style{
		min-height:20px;
		grid-template-columns:0.90fr 1fr 1fr 1fr;
		grid-template-rows:auto;
	}
	.container-div-bloc-48-min-height{
		min-height:20px;
	}
	.btn-button-style{
		border-radius:20.5px 20.5px 20.5px 20.5px;
		width:30.34%;
		font-size:22px;
		padding-top:3px;
		padding-bottom:3px;
	}
	.h2-bloc-63-style{
		font-size:20px;
		line-height:29px;
	}
	.btn-33-style{
		width:42.39%;
		font-size:13px;
	}
	.grid-bloc-43-style{
		width:64.83%;
	}
	.grid-0-bloc-43-style{
		width:100%;
		column-gap:5px;
	}
	.container-div-8663-min-height{
		min-height:406px;
		padding-left:26px;
		padding-right:26px;
	}
	.container-div-bloc-24-min-height{
		min-height:647px;
	}
	.grid-bloc-36-style{
		grid-template-columns:1fr;
	}
	.grid-6898-style{
		column-gap:6px;
		grid-template-columns:1fr 0.95fr 1fr;
	}
	input{
		font-size:25px;
		line-height:25px;
		color:var(--swatch-var-2190)!important;
	}
	.big2x{
		font-size:25px;
		color:var(--swatch-var-6079)!important;
		line-height:35px;
	}
	.text4{
		font-size:18px;
	}
	.menu-icon-19279-stroke{
		stroke:#005EA5!important;
		fill:#005EA5!important;
		background-color:var(--swatch-var-4733);
	}
	.text3{
		font-size:40px;
	}
	.h2-bloc-2-31105-style{
		font-size:1px;
	}
	.h2-รายละเอียดบ้าน-style{
		font-size:20px;
	}
	.h2-2-99-style{
		font-size:44px;
	}
	.h2-ล้านบาท-style{
		font-size:18px;
	}
	.grid-49167-style{
		column-gap:8px;
		grid-template-columns:0.90fr 1.05fr;
	}
	.h2-79-style{
		font-size:18px;
		width:99.05%;
	}
	.grid-40716-style{
		grid-template-columns:2.90fr 1fr;
	}
	.h2-81-style{
		font-size:16px;
	}
	.h2-bloc-2-style{
		font-size:24px;
	}
	.card66{
		padding-left:15px;
		padding-right:15px;
	}
	.container-div-0-bloc-1-min-height{
		min-height:128px;
	}
	.h1-50-style{
		line-height:24px;
		font-size:20px;
	}
	.h1-bloc-36-style{
		font-size:21px;
	}
	.grid-bloc-67-style{
		width:83.46%;
		column-gap:10px;
		margin-left:28px;
	}
	.line{
		border-style:solid;
		border-color:var(--swatch-var-7379)!important;
		border-width:0px 0px 0px 0px;
	}
	.container-div-bloc-43-min-height{
		min-height:295px;
		background-image:url("img/DJI_0244.jpg");
	background-image: -webkit-image-set(url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);background-image: image-set(url("img/DJI_0244.jpg") 1x,
url("img/DJI_0244.jpg") 2x,url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);
	background-image: -webkit-image-set(url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);background-image: image-set(url("img/DJI_0244.jpg") 1x,
url("img/DJI_0244.jpg") 2x,url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);
	background-image: -webkit-image-set(url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);background-image: image-set(url("img/DJI_0244.jpg") 1x,
url("img/DJI_0244.jpg") 2x,url("img/DJI_0244.webp") 1x,
url("img/DJI_0244.webp") 2x);
		background-size:cover;
		background-position:center center;
	}
	.h2-bloc-36-style{
		line-height:43px;
		font-size:24px;
	}
	.h2-bloc-48-style{
		font-size:37px;
	}
	.h2-153-style{
		width:100%;
		font-size:39px;
	}
	.btn-อ่านเพิ่มเติม-style{
		width:97.56%;
	}
	.h5-bloc-6-style{
		font-size:44px;
		line-height:59px;
	}
	.h5-2-style{
		font-size:24px;
		line-height:26px;
	}
	.h2-147-style{
		width:100%;
		font-family:"FCIconic-Medium";
		font-size:36px;
		line-height:49px;
	}
	.container-div-13589-min-height{
		min-height:92px;
	}
	.container-div-36638-min-height{
		min-height:91px;
	}
	.grid-6859-style{
		row-gap:10px;
		grid-template-rows:auto auto auto auto auto auto;
		column-gap:9px;
	}
	.black{
		padding-right:0px;
	}
	.img-125-style{
		width:151px;
	}
	.h2-097-105-5932-style{
		font-size:14px;
		line-height:27px;
	}
	.h2-171-style{
		font-size:15px;
		color:var(--swatch-var-2190)!important;
		line-height:23px;
	}
	.grid-bloc-69-style{
		row-gap:12px;
	}
	.container-div-bloc-62-min-height{
		min-height:57px;
	}
	.โครงสร้างสำเร็จรูป{
	}
	.h2-เหลือ-12-วัน --style{
		width:100%;
		font-family:"FCIconic-Medium";
		color:var(--swatch-var-4733)!important;
		font-size:20px;
	}
	.h3-bloc-41-style{
		font-size:17px;
	}
	.container-div-bloc-35-min-height{
		min-height:56px;
	}
	.h2-4-style{
		font-size:18px;
		line-height:26px;
	}
	.h1-10-style{
		font-size:40px;
	}
	.container-div-49278-min-height{
		min-height:200px;
	}
	.container-div-30135-min-height{
		min-height:200px;
	}
	.texttin{
		font-family:"FCIconic-Light";
		font-size:29px;
	}
	.grid-0-bloc-68-style{
		grid-template-columns:1fr 1fr;
		row-gap:0px;
		column-gap:11px;
	}
	.h2-bloc-7-style{
		font-size:24px;
	}
	.divider-style{
		width:90%;
		background-color:var(--swatch-var-4733);
	}
	.card55{
	}
	.h2-bloc-27-style{
		line-height:32px;
		font-size:19px;
	}
	.h2-148-style{
		font-size:28px;
	}
	.h2-bloc-43-style{
		font-size:24px;
		line-height:33px;
	}
	.img-bloc-65-style{
		width:22px;
	}
	.grid-bloc-33-style{
		grid-template-columns:1fr;
		row-gap:2px;
	}
	.h5-bloc-34-style{
		font-size:28px;
	}
	.container-div-43841-style{
		width:74.45%;
	}
	.grid-bloc-173-style{
		grid-template-columns:1.90fr 1.70fr 1fr;
		column-gap:0px;
	}
	.p-bloc-67-style{
		width:100%;
		font-size:16px;
		color:var(--swatch-var-2190)!important;
		text-decoration:none;
	}
	.img-messeng-style{
		width:90px;
		bottom:40px;
	}
	.menu-icon-dกด-stroke{
		stroke:var(--swatch-var-4733)!important;
		fill:var(--swatch-var-4733)!important;
	}
	.brand{
		margin-left:99px;
	}
	h1,h2,h3,h4,h5,h6,p,label,.btn,a{
		font-family:"FCIconic-Regular";
		font-size:23px;
	}
	.btn-2-style{
		font-size:17px;
		width:81.42%;
	}
	.btn-3-style{
		width:100%;
		font-size:17px;
	}
	.cardfit2{
		padding:2px 2px 2px 2px;
	}
	.h5--สุขสร้างบ้าน--style{
		font-size:38px;
		line-height:43px;
	}
	.card18x{
		padding:22px 33px 22px 57px;
	}
	.container-div-2109-min-height{
	}
	.btn-2-style:hover{
		color:var(--swatch-var-4733)!important;
	}
	.p-431-style{
		font-size:16px;
	}
	.list-style{
	}
	.btn-อ่านต่อ-style:hover{
	}
	.btn-อ่านต่อ-style{
		font-size:14px;
	}
	.svg-icon-style{
		width:25px!important;
		fill:var(--swatch-var-6079)!important;
	}
	.menu-icon-27947-stroke{
		stroke:var(--swatch-var-6079)!important;
		fill:var(--swatch-var-6079)!important;
	}
	.navbar-nav li a{
		font-family:"FCIconic-Bold";
		font-size:16px;
	}
	.color3{
		background:linear-gradient(114deg, var(--swatch-var-4341) 2%, var(--swatch-var-6885) 100%);
	}
	.fit8{
		padding-top:0px;
		padding-bottom:-0px;
		margin-left:100px;
	}
	.text-left{
		padding-left:0px;
		padding-right:0px;
	}
	.lang1{
		color:var(--swatch-var-2147)!important;
	}
	.lang2{
		text-decoration:none;
	}
	.menu-icon-bloc-0-stroke{
		stroke:var(--swatch-var-6079)!important;
		fill:var(--swatch-var-6079)!important;
	}
	.h1-bloc-7-style{
		width:100%;
		font-family:"FCIconic-Medium";
		font-size:200px;
		color:var(--swatch-var-6079)!important;
		line-height:100px;
	}
	.cardroudn2{
		padding-right:12px;
		padding-left:12px;
	}
	.cardwhite2{
		padding:10px 10px 10px 10px;
	}
	.lable2{
		font-size:18px;
	}
	.btn-send-now-style{
		font-size:13px;
		background-color:var(--swatch-var-6079);
		color:var(--swatch-var-4716)!important;
	}
	.btn-send-now-style:hover{
		color:var(--swatch-var-7932)!important;
		background-color:var(--swatch-var-7379);
	}
	label{
		font-size:12px;
	}
	.img-logo-mango2-style{
		width:90%;
	}
	.grid-bloc-140-style{
		column-gap:7px;
		min-height:40px;
		grid-template-columns:1fr 1fr 1fr;
	}
	.container-div-0-bloc-140-min-height{
		min-height:42px;
	}
	.grid-0-bloc-140-style{
		width:100%;
		min-height:20px;
	}
	.img-1204-style{
		width:90%;
	}
	.cardfit3{
		padding-left:3px;
		padding-right:3px;
	}
	.container-div-29222-style{
		min-height:108px;
		padding-bottom:0px;
		width:47.47%;
	}
	.img-bloc-140-style{
		width:100%;
	}
	.p-363-style{
		font-size:22px;
		line-height:28px;
	}
	.btn-14-style{
		padding-top:6px;
		padding-bottom:6px;
		width:100%;
		font-size:16px;
	}
	
}

