@font-face {
	font-family: Fresh;
	src: url(../fonts/SVN-Fresh-Script.otf);
}

@font-face {
	font-family: Narziss;
	src: url(../fonts/UVF-Narziss-Drops.ttf);
}

@font-face {
	font-family: NotoSerif;
	src: url(../fonts/NotoSerif-Regular.ttf);
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: NotoSerif;
	src: url(../fonts/NotoSerif-Italic.ttf);
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: NotoSerif;
	src: url(../fonts/NotoSerif-Bold.ttf);
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: NotoSerif;
	src: url(../fonts/NotoSerif-BoldItalic.ttf);
	font-weight: bold;
	font-style: italic;
}

body {
	font-size: 18px;
	font-family: NotoSerif;
	line-height: 1.6;
}
p {
	margin-bottom: 16px;
}
*:not(input) {
	-webkit-user-select: none; /* Chrome all / Safari all */
	-moz-user-select: none; /* Firefox all */
	-ms-user-select: none; /* IE 10+ */
	user-select: none; /* Likely future */
}
[data-aos="fade-left-short"] {
	opacity: 0;
	transform: translateX(20px);
}
[data-aos="fade-left-short"].aos-animate {
	opacity: 1;
	transform: translateX(0px);
}
[data-aos="fade-right-short"] {
	opacity: 0;
	transform: translateX(-20px);
}
[data-aos="fade-right-short"].aos-animate {
	opacity: 1;
	transform: translateX(0px);
}
[data-aos="fade-up-short"] {
	opacity: 0;
	transform: translateY(20px);
}
[data-aos="fade-up-short"].aos-animate {
	opacity: 1;
	transform: translateX(0px);
}
[data-aos="fade-down-short"] {
	opacity: 0;
	transform: translateY(-20px);
}
[data-aos="fade-down-short"].aos-animate {
	opacity: 1;
	transform: translateX(0px);
}
.btn {
    border: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    padding: 5px 50px 5px 0;
    position: relative;
    color: #189849;
    transition: all ease 0.4s;
    font-weight: bold;
    display: inline-block;
    margin: 20px auto;
}
.btn:before {
    content: "";
    position: absolute;
    right: 0;
    width: 40px;
    top: 50%;
    height: 1px;
    background: #189849;
    transition: all ease 0.4s;
}
.btn.white {
    color: #fff;
}
.btn.white:before {
    background: #fff
}
.btn:hover {
    color: #189849;
    text-decoration: none;
    padding-right: 80px;
}
.btn:hover:before {
    width: 70px;
}
.default-icon {
	display: inline-block;
	line-height: 1;
}
.h-100 {
	height: 100%;
}
.w-100 {
	width: 100%;
}
.position-relative {
	position: relative;
}
.d-none {
	display: none;
}
.d-block {
	display: block;
}
/* <= 1600  */
@media screen and (max-width: 1600px) {
	.d-xl-none {
		display: none;
	}
	.d-xl-block {
		display: block;
	}
}
/* < 1200 */
@media screen and (max-width: 1199px) {
	.d-lg-none {
		display: none;
	}
	.d-lg-block {
		display: block;
	}
}
/* < 992 */
@media screen and (max-width: 991px) {
	.d-md-none {
		display: none;
	}
	.d-md-block {
		display: block;
	}
}
/* < 768 */
@media screen and (max-width: 767px) {
	.d-sm-none {
		display: none;
	}
	.d-sm-block {
		display: block;
	}
}
/* < 576 */
@media screen and (max-width: 575px) {
	.d-xs-none {
		display: none;
	}
	.d-xs-block {
		display: block;
	}
}
/* ----------------------------- Menu Beauty ------------------------- */
.menu-beauty-container {
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 100%;
	left: 0px;
	z-index: 999;
	overflow: hidden;
	transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-beauty-container.active {
	bottom: 0px;
	transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-beauty {
	width: 100vw;
	height: 100vh;
	overflow-x: auto;
	background-image: url("../images/menu-bg-bottom.png");
	transition: 0.25s all ease;
	position: relative;
	z-index: 1;
}
.menu-pattern-1 {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 20%;
	min-width: 120px;
	z-index: -1;
	transition: 0.5s all ease 0.25s;
}
.menu-pattern-2 {
	position: absolute;
	bottom: 0px;
	right: 30px;
	width: 10%;
	min-width: 60px;
	z-index: -1;
	transition: 0.5s all ease 0.25s;
}
.menu-beauty a {
	color: #fff;
	text-decoration: none;
}
.menu-beauty > ul {
	display: flex;
	list-style: none;
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0px;
}
.menu-beauty > ul > li {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	z-index: 1;
}
.menu-beauty > ul > li > div {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
    opacity: 0;
    z-index: -1;
	background-position-y: 0%;
	background-repeat: repeat-x;
	background-attachment: fixed;
	transition: 0.7s all ease;
	pointer-events: none;
	background-size: cover;
}
.menu-beauty > ul > li:hover > div {
	opacity: .3;
	transition: 0.7s all ease;
}
.menu-beauty > ul > li > a {
    text-transform: uppercase;
    text-align: center;
}
.menu-beauty > ul > li > a.animate_down {
    opacity: 1;
	transform: translateY(-0px);
	-webkit-transform: translateY(-0px);
}
.menu-beauty > ul > li {
    transform: translateY(-40px);
    transition: 1s all ease;
    opacity: 0;
}

.menu-beauty > ul > li.animate_down {
    opacity: 1;
	transform: translateY(-0px);
	-webkit-transform: translateY(-0px);
}
.menu-beauty > ul > li > a:hover, .menu-beauty > ul > li > a.animate_down:hover {
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    color: #1bb511;
}
.menu-beauty > ul > li > ul {
	list-style: none;
	display: none;
	padding: 0px;
	padding-left: 20px;
	margin: 0px;
	margin-top: 20px;
	width: 100%;
}
.menu-beauty > ul > li > ul > li {
	position: relative;
	padding-left: 20px;
	margin: 10px 0px;
	transition: 0.25s all ease;
}
.menu-beauty > ul > li > ul > li:before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background-image: url(../images/favicon.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 10px;
	left: 0px;
	transform: translateY(-50%);
}
.menu-beauty > ul > li > ul > li:hover {
	padding-left: 30px;
}
.menu-beauty .menu-button {
	position: absolute;
	z-index: 11;
	top: 10px;
	right: 20px;
	font-size: 30px;
}
.close-btn {
	display: block;
	width: 46px;
	height: 46px;
	position: relative;
	z-index: 1;
}
.close-btn:before {
	content: "";
	width: 100%;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.close-btn:after {
	content: "";
	width: 100%;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

/*--------------- GENARAL ------------------*/
.big-container {
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
	width: 1720px;
	max-width: 100%;
}
.container {
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
	width: 1430px;
	max-width: 100%;
}
.container-fluid {
	padding-left: 16px;
	padding-right: 16px;
}
.section {
	overflow: hidden;
	position: relative;
}
.section .top-title {
	position: absolute;
	z-index: 80;
	top: 0;
	left: 0;
	width: 650px;
	height: 100%;
	pointer-events: none;
	font-weight: normal;
	line-height: 1.3;
}
.section .top-title:before {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	content: "";
	background-image: url(../images/bg-title.png);
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100%;
}
.section .top-title.top-title-none-text:before {
	background-image: url(../images/bg-title-tong-quan.png);
}
.section .top-title .top {
	color: #fff;
	padding-top: 75px;
	padding-left: 25%;
	font-size: 43px;
	font-family: Narziss;
	display: block;
	position: relative;
}
.section .top-title .bot {
	color: #fff;
	padding-top: 0px;
	padding-left: 42%;
	font-size: 48px;
	font-family: Fresh;
	display: block;
	position: relative;
}
.section .top-title.align-top .top {
	padding-top: 60px;
	padding-left: 20%;
}
.section .top-title.align-top .bot {
	padding-left: 35%;
}
.list-favicons {
	display: flex;
	margin-bottom: 30px;
}
.list-favicons > img {
	width: 12px;
	height: 12px;
	margin-right: 10px;
}
.img-hover-mapster {
	position: relative;
}
.img-hover-mapster .map {
	width: 100%;
}
.img-hover-mapster .info-groups {
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	pointer-events: none;
}
.img-hover-mapster .info-group {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 155px;
	height: 155px;
	background-image: url(../images/bg-img-highlight.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #1a4475;
	font-weight: bold;
	transform: translate(-50%, -50%);
	pointer-events: all;
	text-decoration: none;
}
.img-hover-mapster .info-groups p {
	margin-bottom: 0px;
	line-height: 1.3;
}
.img-hover-mapster .info-groups .text-medium {
	font-size: 18px;
}
.img-hover-mapster .info-groups .text-big {
	font-size: 30px;
}

.section .content-note {
	position: absolute;
	z-index: 90;
	right: 0;
	bottom: 0;
	width: 715px;
	height: 100vh;
	pointer-events: none;
	background: url(../images/bg-content-mb.png);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: 100%;
	color: #fff;
	display: flex;
	align-items: flex-end;
}
.section .content-note .text {
	padding-left: 30%;
	padding-right: 30%;
	transform: translateY(50%) translateY(-50px);
}

.dial-slider {
	position: relative;
	width: 100%;
	padding-top: 100%;
	height: 0;
}
.dial-slider:before {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	content: "";
	border-radius: 50%;
	border: 9px solid rgba(255, 255, 255, 0.2);
}
.dial-slider .item {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.dial-slider .item .number-container {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(50%, -50%);
	width: 86px;
	height: 86px;
	border: 1px solid #fff;
	border-radius: 50%;
	font-size: 40px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: all;
	cursor: pointer;
	transition: all ease 0.4s;
}
.dial-slider .item.active .number-container {
	width: 120px;
	height: 120px;
	background-color: #fff;
	color: #0b8342;
	font-size: 60px;
}

/*--------------- FULLPAGE ------------------*/
.fullpage-container {
	height: 100vh;
	overflow: hidden;
}
.fullpage-container .fullpage-pagination {
	right: 30px;
}
.fullpage-container .fullpage-pagination .swiper-pagination-bullet {
	outline: none;
	width: 12px;
	height: 12px;
	border: 1px solid #fff;
	background-color: transparent;
	transition: all ease 0.4s;
	margin: 16px 0;
	opacity: 1;
}
.fullpage-container .fullpage-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #fff;
}
.fullpage-section-slider {
	height: 100%;
}
.fullpage-section-slider .full-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.fullpage-section-slider .nav-icon-container {
	position: absolute;
	z-index: 1;
	top: 50%;
	transform: translateY(-50%);
	font-size: 60px;
	color: #188a4f;
	cursor: pointer;
	outline: none;
	line-height: 1;
}
.fullpage-section-slider .fullpage-section-slider-prev {
	left: 50px;
}
.fullpage-section-slider .fullpage-section-slider-next {
	right: 50px;
}

/*--------------- MENU ------------------*/
.menu {
	position: absolute;
	z-index: 100;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	pointer-events: none;
}
.menu:before {
	content: "";
	width: 100%;
	height: 180px;
	background: linear-gradient(rgba(10, 25, 53, 0.4), transparent 100%);
	position: absolute;
	z-index: -1;
}
.menu .menu-content {
	display: flex;
	justify-content: space-between;
}
.menu .logo-container {
	width: 550px;
	position: relative;
	pointer-events: all;
}
.menu .logo-container:before {
	position: absolute;
	content: "";
	pointer-events: none;
	z-index: -1;
	left: -11%;
	top: 0;
	right: 0%;
	height: 100vh;
	background: url(../images/bg-logo.png);
	background-repeat: no-repeat;
	background-position: top;
	background-size: 100%;
}
.menu .logo {
	display: block;
	width: 160px;
	margin-top: 8px;
}
.logo img {
    max-width: 100%;
}
.menu .slogan {
	position: absolute;
	left: 45%;
	top: 28px;
	color: #fff;
	font-size: 37px;
	line-height: 1.3;
	font-weight: normal;
	letter-spacing: 1px;
}
.menu .slogan .top {
	font-family: Narziss;
	display: block;
}
.menu .slogan .bot {
	font-family: Fresh;
	display: block;
	margin-left: 60px;
}
.menu-thumb-container {
	pointer-events: all;
	position: relative;
	padding-top: 27px;
}
.menu-thumb-container:before {
	position: absolute;
	content: "";
	pointer-events: none;
	z-index: -1;
	left: -4%;
	top: 0;
	right: -36%;
	height: 100vh;
	background: url(../images/bg-menu-thumb.png);
	background-repeat: no-repeat;
	background-position: top;
	background-size: 100%;
}
.menu-thumb {
	display: flex;
	align-items: center;
}
.menu-thumb-item {
	margin-left: 26px;
}
.menu-thumb .phone {
	display: flex;
	align-items: center;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	text-decoration: none;
}
.menu-thumb .phone .icon {
	width: 19px;
	margin-right: 8px;
}
.menu-thumb .lang {
	display: flex;
	background: #3d8dd3;
	color: #fff;
	font-weight: bold;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
    text-decoration: none;
    text-transform: uppercase;
	font-size: 16px;
}
.menu-thumb .menu-button {
	display: flex;
	text-decoration: none;
	color: #fff;
	align-items: center;
}
.menu-thumb .menu-button .icon {
	color: #40b649;
	font-size: 27px;
	margin-left: 8px;
}
.menu-nav {
	pointer-events: all;
	position: relative;
	padding-top: 40px;
}
.menu-nav .tabs-list {
	list-style-type: none;
	margin-left: -25px;
	margin-right: -25px;
	margin-bottom: 0;
	padding: 0;
}
.menu-nav .tabs-list > li {
	display: inline-block;
	padding-left: 25px;
	padding-right: 25px;
	margin-bottom: 15px;
	border-right: 1px solid #fff;
}
.menu-nav .tabs-list > li:last-of-type {
	border-right: none;
}
.menu-nav .tabs-list > li > a {
	text-decoration: none;
	display: block;
	position: relative;
	color: #fff;
}
.menu-nav .tabs-list > li .icon {
	position: absolute;
	font-size: 24px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	opacity: 0;
	transition: all ease 0.4s;
	color: #fff;
}
.menu-nav .tabs-list > li > a:hover,
.menu-nav .tabs-list > li.active > a {
	color: #42b649;
}
.menu-nav .tabs-list > li > a:hover .icon,
.menu-nav .tabs-list > li.active > a .icon {
	transform: translateX(-50%) translateY(20px);
	opacity: 1;
	color: #42b649;
}

.sticky-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(10, 26, 46, 0.9);
	z-index: 101;
	transition: all ease 0.4s;
	transform: translateY(-100%);
}
.sticky-menu.open {
	transform: translateY(0);
}
.sticky-menu-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}
.sticky-menu-content .logo {
	display: block;
	width: 190px;
}

/*--------------- FOOTER MENU -----------------------*/
.sticky-register {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 99;
	width: 215px;
	overflow: hidden;
	transition: all ease 0.4s;
	cursor: pointer;
}
.sticky-register .background {
	width: 100%;
}
.sticky-register .register-wrapper {
	position: absolute;
	bottom: 9%;
	left: 4%;
	display: flex;
	align-content: center;
	color: #fff;
	transition: all ease 0.4s;
}
.sticky-register .register-wrapper .icon {
	font-size: 42px;
	padding-right: 8px;
}
.sticky-register .register-wrapper .text-container {
	overflow: hidden;
	transition: all ease 0.4s;
}
.sticky-register .register-wrapper .text {
	display: block;
	padding-left: 8px;
	border-left: 1px solid #fff;
	line-height: 1.3;
}
.sticky-register .register-wrapper .text-container,
.sticky-register .register-wrapper .text {
	width: 215px;
}
.sticky-register.min {
	width: 120px;
}
.sticky-register.min .register-wrapper {
	left: 14%;
	bottom: 5%;
}
.sticky-register.min .register-wrapper .text-container {
	width: 0;
	opacity: 0;
}
.sticky-register.hidden {
	opacity: 0;
	pointer-events: none;
}

/*--------------- SECTION TỔNG QUAN SLIDER ------------------*/
.section-overview-slider {
	position: relative;
}
.section-overview-slider .full-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.section-overview-slider .popup-video {
	position: absolute;
	z-index: 99;
	bottom: 0;
	left: 0;
	width: 450px;
	color: #fff;
	outline: none;
	text-decoration: none;
}
.section-overview-slider .popup-video .img {
	width: 100%;
}
.section-overview-slider .info {
	position: absolute;
	z-index: 11;
	top: 65%;
	left: 65%;
	transform: translate(-65%, -65%);
	display: flex;
	flex-direction: column;
	align-items: center;
}
.section-overview-slider .triangle-container {
	height: 60px;
	width: 60px;
	border-radius: 50%;
	border: 1px solid #2bc0d5;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.section-overview-slider .triangle {
	border-left: 14px solid #2bc0d5;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
}
.section-overview-slider .next-slide-mouse {
	position: absolute;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
	width: 27px;
	z-index: 99;
	cursor: pointer;
}
.section-overview-slider .next-slide-mouse > img {
	width: 100%;
}

/*--------------- SECTION TỔNG QUAN ------------------*/
.section-overview {
	position: relative;
	background: linear-gradient(#1a4375, #16284e);
}
.section-overview .content-container {
	display: flex;
	margin-left: -15px;
	margin-right: -15px;
	flex-wrap: wrap;
}
.section-overview .img-container {
	width: 71%;
	padding: 40px 15px 20px 15px;
	justify-content: center;
	align-items: center;
	display: flex;
	position: relative;
}
.section-overview .img-container:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-image: url(../images/bg-tong-quan-section.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
.section-overview .img-container .img {
	max-width: 960px;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.section-overview .content {
	width: 29%;
	color: #fff;
	padding-top: 50px;
	padding-left: 15px;
	padding-right: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.section-overview .content-mobile {
	display: none;
}
.section-overview .list-favicons {
	margin-bottom: 32px;
}
.section-overview .viewmore {
	display: inline-block;
	align-self: flex-start;
	text-decoration: none;
	transition: all ease 0.4s;
	padding-right: 50px;
	position: relative;
	color: #40b649;
	transition: all ease 0.4s;
}
.section-overview .viewmore:before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 40px;
	height: 1px;
	background: #40b649;
	transition: all ease 0.4s;
}
.section-overview .viewmore:hover {
	padding-right: 100px;
}
.section-overview .viewmore:hover:before {
	width: 90px;
}
.section-overview .list-infos {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	padding: 0;
	margin: 32px -15px 0;
}
.section-overview .list-infos .item {
	width: 50%;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 32px;
}
.section-overview .list-infos .item .icon {
	width: 60px;
	margin-bottom: 20px;
}
.section-overview .list-infos .item p {
	margin-bottom: 0px;
}
.section-overview .list-infos .item .up-size {
	font-size: 110%;
}

/*--------------- SECTION MẶT BẰNG ------------------*/
.section-master-plan {
	position: relative;
	display: flex;
	flex-direction: column;
}
.section-master-plan .master-plan-content {
	height: 100%;
	width: 100%;
	position: relative;
	flex: 1
}
.section-master-plan .img-hover-mapster {
	position: relative;
	left: 85%;
	transform: translateX(-85%);
}
.img-hover-mapster .info-lines path {
	transition: all ease 0.6s;
	transition-delay: 0.1s;
}
.img-hover-mapster .info-lines path.open {
	stroke-dashoffset: 0 !important;
	transition-delay: 0s;
}
.img-hover-mapster .info-lines circle {
	transition: all ease 0.4s;
	opacity: 0;
	transition-delay: 0.6s;
}
.img-hover-mapster .info-lines circle.open {
	opacity: 1;
	transition-delay: 0s;
}
.img-hover-mapster .info-groups .info-group {
	transition: all ease 0.4s;
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.5);
	transition-delay: 0s;
	pointer-events: none;
}
.img-hover-mapster .info-groups .info-group.open {
	transition-delay: 0.3s;
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
	/* pointer-events: all; */
}

/*--------------- SECTION CHỦ ĐẦU TƯ ------------------*/
.section-cdt {
	padding: 50px 0 30px;
	background-image: url(../images/bg-cdt.jpg);
	background-position: center;
	background-size: cover;
}
.section-cdt .content {
	height: 100%;
	width: 800px;
	color: #fff;
	text-align: center;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.section-cdt .content .logo {
	width: 330px;
	max-width: 100%;
	margin: 0 auto 30px auto;
}

/*--------------- SECTION LÝ DO CHỌN DỰ ÁN ------------------*/
.section-why {
	padding-top: 150px;
	background-image: url(../images/bg-why.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
}
.section-why:before {
	position: absolute;
	z-index: 79;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	content: "";
	background: linear-gradient(#1a4375, #16284e);
	opacity: 0.7;
}
/* .section-why .top-title {
	z-index: auto;
} */
.section-why .top-title:before {
	z-index: 81;
}
.section-why .top-title .top {
	z-index: 82;
}
.section-why .top-title .bot {
	padding-left: 34%;
	z-index: 82;
}
.section-why .content {
	position: relative;
	z-index: 82;
	height: 100%;
	width: 1560px;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
}
.section-why .slider {
	padding-left: 15px;
	padding-right: 15px;
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.section-why .dial-slider-container {
	width: 710px;
	padding: 75px 95px 75px 75px;
	position: relative;
	max-width: 100%;
}
.section-why .dial-slider-container:before {
	content: "";
	position: absolute;
	z-index: 0;
	bottom: 0;
	top: 0;
	right: 0;
	left: 0;
	background-image: url(../images/flower-why.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.section-why .infos {
	padding-left: 15px;
	padding-right: 15px;
	width: 50%;
	color: #fff;
}
.section-why .info {
	font-size: 20px;
	display: none;
	animation: fadein-right 0.6s;
}
.section-why .info .list-favicons {
	margin-bottom: 30px;
}
.section-why .info .description {
	margin-bottom: 30px;
}
.section-why .dial-pagination {
	color: #40b649;
	font-style: italic;
}
.section-why .info.active {
	display: block;
}
@keyframes fadein-right {
	0% {
		opacity: 0;
		transform: translateX(50px);
	}
	100% {
		opacity: 1;
		transform: translateX(0px);
	}
}

/*--------------- SECTION FOOTER ------------------*/
.section-footer {
	display: flex;
	flex-direction: column;
}
.section-footer .main-footer {
	background: #1a4475;
	flex: 1;
	position: relative;
	padding-top: 80px;
	color: #fff;
	padding-bottom: 30px;
}
.section-footer .main-footer > * {
	position: relative;
	z-index: 10;
}
.section-footer .main-footer:before {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	content: "";
	background: url(../images/bg-footer.svg);
	background-position: center;
	background-size: cover;
	opacity: 0.1;
}
.section-footer .main-footer:after {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	content: "";
	background-image: url(../images/bg-footer-left.png), url(../images/bg-footer-right.png);
	background-position: bottom left, bottom right;
	background-repeat: no-repeat;
	background-size: 21%, 13%;
}
.section-footer .main-footer > * {
	position: relative;
}
.section-footer .title {
	font-size: 24px;
	margin-bottom: 30px;
}
.section-footer .title-partner {
	text-align: center;
}
.section-footer .partner-slider-container {
	position: relative;
	padding-left: 30px;
	padding-right: 30px;
}
.section-footer .partner-slider img {
	max-width: 100%;
	filter: brightness(0) invert(1);
	transition: all ease .4s;
}
.section-footer .partner-slider img:hover {
	filter: brightness(100%) invert(0);
}
.section-footer .partner-slider-container .nav-icon-container {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	font-size: 40px;
	line-height: 1;
	outline: none;
}
.section-footer .partner-slider-container .partner-slider-prev {
	left: -10px;
}
.section-footer .partner-slider-container .partner-slider-next {
	right: -10px;
}
.section-footer .divider-after-slider {
	width: 100%;
	height: 1px;
	background: #0d6d5b;
	margin-top: 30px;
	margin-bottom: 30px;
}
.section-footer .contact-form {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.section-footer .contact-form p {
	margin-bottom: 8px;
}
.section-footer .contact-form img {
    max-width: 100%;
}
.section-footer .contact-form .image-captcha {
    max-width: 100%;
    height: 44px;
    cursor: pointer;
}
.section-footer .contact-form .image-captcha img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.section-footer .contact-form a {
	outline: none;
	color: #45cdff;
}
.section-footer .contact-container {
	width: 41.67%;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 15px;
}
.section-footer .form-container {
	width: 58.33%;
	padding-left: 15px;
	padding-right: 15px;
}
.section-footer .contact {
	width: 450px;
	max-width: 100%;
}
.section-footer .map-frame iframe {
	width: 100%;
	height: 150px;
}
.section-footer .socials {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	align-items: center;
}
.section-footer .socials > li {
	margin-right: 10px;
}
.section-footer .socials > li > a {
	display: block;
	border: 1px solid #fff;
	width: 28px;
	box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.1);
}
.section-footer .socials > li.bct > a {
	width: 150px;
	border: none;
	box-shadow: none;
}
.section-footer .socials > li img {
	display: block;
}
.section-footer .cta {
	margin-bottom: 30px;
}
.section-footer .form-info {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	align-items: flex-start;
}
.section-footer .form-info .col-6 {
	width: 50%;
}
.section-footer .form-info .col-12 {
	width: 100%;
}
.section-footer .form-info .col-2 {
	width: 16.67%;
}
.section-footer .form-info .col-4 {
	width: 33.33%;
}
.section-footer .form-info .input-group {
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 20px;
	display: block;
	line-height: 1;
}
.section-footer .form-info .input {
	width: 100%;
	background: #183763;
	border: none;
	padding: 11px 15px;
	outline: none;
	font-size: 16px;
	color: #fff;
}
.section-footer .form-info .input::-webkit-input-placeholder {
	color: #fff;
}
.section-footer .form-info .input:-ms-input-placeholder {
	color: #fff;
}
.section-footer .form-info .input::placeholder {
	color: #fff;
}
label.error {
	color: #ff4343;
	margin-top: 3px;
	margin-bottom: 0;
	font-size: 90%;
	font-style: italic;
}
.section-footer .form-info .submit {
	border: none;
	background: transparent;
	outline: none;
	cursor: pointer;
	padding: 5px 50px 5px 0;
	position: relative;
	color: #189849;
	transition: all ease 0.4s;
	font-weight: bold;
}
.section-footer .form-info .submit:before {
	content: "";
	position: absolute;
	right: 0;
	width: 40px;
	top: 50%;
	height: 1px;
	background: #189849;
	transition: all ease 0.4s;
}
.section-footer .form-info .submit:hover {
	padding-right: 80px;
}
.section-footer .form-info .submit:hover:before {
	width: 70px;
}
.section-footer .copyright {
	background: #162a51;
}
.section-footer .copyright .content {
	position: relative;
	display: flex;
	align-items: center;
}
.section-footer .copyright .content .text {
	flex: 1;
	color: #5491d8;
	padding: 5px 30px 5px 0;
	line-height: 1.3;
}
.section-footer .copyright .content .to-top {
	margin-top: 20px;
	font-size: 36px;
	background: #009642;
	width: 47px;
	height: 47px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

/*----------------------- SECTION MAIN BANNER ------------------------*/
.section-main-banner {
	height: 670px;
	background: linear-gradient(#1a4375, #16284e);
	padding-top: 130px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.section-main-banner .main-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.4;
}
.section-main-banner .content {
	position: relative;
	z-index: 1;
	color: #fff;
	text-align: center;
	padding: 0 16px;
}
.section-main-banner .content a {
	color: inherit;
	text-decoration: none;
	outline: none;
	transition: all ease 0.4s;
}
.section-main-banner .title {
	font-size: 40px;
	text-transform: uppercase;
	font-weight: normal;
	line-height: 1.5;
	margin-bottom: 40px;
}

.section-about-overview {
	height: 100vh;
	min-height: 500px;
}
.section-about-overview .content-container {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	display: flex;
	align-items: center;
	padding-bottom: 50px;
}
.section-about-overview .content {
	width: 530px;
	position: relative;
	color: #fff;
	max-width: 100%;
}
.section-about-overview .content:before {
	content: "";
	position: absolute;
	left: -12%;
	right: -30%;
	bottom: -180px;
	height: 100vh;
	background-image: url(../images/heart.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: bottom;
	z-index: -1;
	opacity: 0.9;
}

.section-hdmau {
	background: #f1f1f1;
	padding: 250px 0;
}
.section-hdmau .list-pdf {
	padding: 0;
	margin: 0 -15px;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.section-hdmau .list-pdf > li {
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 30px;
	width: 33.33%;
}
.section-hdmau .list-pdf > li > a {
	display: flex;
	color: inherit;
	background-color: #fff;
	align-items: center;
	padding: 20px 35px;
	text-decoration: none;
	border-radius: 5px;
	box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
	transition: all ease 0.4s;
}
.section-hdmau .list-pdf > li > a:hover {
	box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.2);
}
.section-hdmau .list-pdf .icon {
	width: 75px;
	padding-right: 25px;
	margin-right: 25px;
	border-right: 1px solid #e1e1e1;
}
.bg-bottom-right:after,
.bg-bottom-right-big:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 28%;
	background: url(../images/bg-bottom-right.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 100%;
	min-width: 300px;
}
.bg-bottom-right-big:after {
	width: 35%;
}
.bg-bottom-left-big:after,
.bg-bottom-left:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 28%;
	background: url(../images/bg-bottom-left.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 100%;
	min-width: 300px;
}
.bg-bottom-left-big:after {
	width: 35%;
}
.bg-bottom-right > *,
.bg-bottom-right-big > *,
.bg-bottom-left > *,
.bg-bottom-left-big > * {
	position: relative;
	z-index: 1;
}
.bg-bottom-right > .menu,
.bg-bottom-right-big > .menu,
.bg-bottom-left > .menu,
.bg-bottom-left-big > .menu {
	position: absolute;
	z-index: 100;
}
.section-linked {
	background: linear-gradient(#1a4375, #16284e);
}
.section-linked .content {
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	padding: 30px 0;
	align-items: center;
	position: relative;
}
.section-linked .content .img-linked-container {
	width: 66.67%;
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.section-linked .content .img-linked {
	width: 100%;
}
.section-linked .content .description {
	width: 33.33%;
	padding-left: 15px;
	padding-right: 15px;
}
.section-linked .content .bg-zoom-in-group {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.section-linked .content .bg-zoom-in {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #189849;
	border-radius: 50%;
	animation: bg-zoom-in 6s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.section-linked .content .bg-zoom-in:nth-of-type(1) {
	animation-delay: 0s;
}
.section-linked .content .bg-zoom-in:nth-of-type(2) {
	animation-delay: 2s;
}
.section-linked .content .bg-zoom-in:nth-of-type(3) {
	animation-delay: 4s;
}
@keyframes bg-zoom-in {
	0% {
		opacity: 1;
		width: 0;
		padding-top: 0;
	}
	20% {
		opacity: 1;
	}
	80% {
		opacity: 0.4;
	}
	100% {
		opacity: 0;
		width: 100%;
		padding-top: 100%;
	}
}

.section-location {
	padding-top: 70px;
	background: #f6f8f6;
}
.section-location .content {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	align-items: center;
}
.section-location .content .description-container {
	width: 40%;
	width: calc(540px + 50vw - 1400px / 2);
}
.section-location .content .description {
	width: 540px;
	max-width: 100%;
	padding: 230px 15px 120px;
	margin-left: auto;
	font-size: 17px;
}
.section-location .content .img-location-container {
	flex: 1;
}
.section-location .content .img-location-container img {
    width: 100%;
}
.section-location .locations {
	padding: 0;
	margin: 20px -10px 0 -10px;
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	font-size: 16px;
}
.section-location .locations > li {
	width: 33.33%;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}
.section-location .locations > li > .icon {
	width: 32px;
	margin-right: 8px;
}

.text-center {
	text-align: center;
}
.section-top {
	margin-top: 100px;
	margin-bottom: 40px;
	padding-left: 15px;
	padding-right: 15px;
}
.section-title .list-favicons {
	display: inline-block;
	margin-bottom: 15px;
}
.section-title h2 {
	font-size: 30px;
	color: #0058c3;
}

.section-utilities .fullpage-section-slider {
	height: 100vh;
}

.section-policy {
	height: 100vh;
	display: flex;
	align-items: center;
	background-color: #f1f1f1;
}
.policy-flex {
	display: flex;
	align-items: center;
	margin: 0px -15px;
}
.policy-flex img {
	max-width: 100%;
}
.policy-col-5 {
	width: 50%;
	padding: 0px 15px;
}
.policy-content {
	padding-right: 70px;
}
.policy-btn {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	color: #333333;
	text-decoration: none;
	transition: 0.25s all ease;
}
.policy-btn:hover {
	color: #011c53;
	text-decoration: none;
}
.policy-btn img {
	width: 25px;
	display: inline-block;
	margin-right: 15px;
}
.section-progress {
	padding-top: 200px;
	padding-bottom: 80px;
	height: 100% !important;
}
.search-menu {
	position: relative;
	margin: 30px auto 0px;
	width: 320px;
}
.search-menu input {
	width: 100%;
	padding: 7px 40px 7px 10px;
	border: 1px solid #0058c3;
	border-radius: 5px;
	color: #0058c3;
}
.search-menu input::placeholder {
	text-transform: uppercase;
	color: #0058c3;
	opacity: 0.8;
}
.search-menu button {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background: transparent;
	border: none;
	padding: 10px;
	color: #0058c3;
	font-size: 22px;
	line-height: 1.3em;
	cursor: pointer;
	outline: none;
	transition: 0.25s all ease;
}
.search-menu button:hover {
	color: #6dbb8d;
}
.progress-flex {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.progress-item {
	width: calc(100% / 3);
	padding: 0px 15px;
	margin-bottom: 30px;
}
.progress-item-wrapper {
	text-align: justify;
	font-size: 17px;
}
.progress-item-wrapper a {
	color: #000;
	text-decoration: none;
	transition: 0.25s all ease;
}
.progress-item-wrapper a:hover {
	color: #0e69b4;
}
.progress-feature {
	display: block;
	width: 100%;
	padding-top: 60%;
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}
.progress-feature img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0px;
	left: 0px;
	transition: 0.5s all ease;
}
.progress-feature:hover img {
	transform: scale(1.1) rotate(2deg);
}
.progress-item-wrapper .list-favicons {
	margin-bottom: 15px;
}
.progress-item-wrapper h3 {
	font-size: 18px;
	margin-bottom: 5px;
}
.pagination .screen-reader-text {
	display: none;
}
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}
.pagination > div {
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 17px;
	line-height: 1em;
	margin: 0px 14px;
	background: #d0d0d0;
	color: #000;
	text-align: center;
	border-radius: 50%;
	text-decoration: none;
	transition: 0.25s all ease;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: #189849;
	color: #fff;
}
.pagination .page-numbers:hover {
	opacity: 0.7;
}

.section-news {
	background-color: #f1f1f1;
}
.news-flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-left: -15px;
	margin-right: -15px;
}
.news-flex > div {
	padding: 0px 15px;
}
.news-content {
	width: 75%;
}
.entry-title {
	color: #19406f;
	margin-top: 30px;
	font-size: 28px;
}
.news-content-inner > img {
	max-width: 100%;
}
.sidebar {
	width: 25%;
}
.widget .list-favicons {
	margin-bottom: 15px;
}
.widget > h3 {
	margin-bottom: 30px;
	text-transform: uppercase;
	color: #19406f;
	font-size: 24px;
}
.news-item {
	margin-bottom: 40px;
}
.news-widget .pagination {
	justify-content: flex-start;
}
.news-widget .pagination .page-numbers {
	margin: 0px 7.5px;
}
.news-widget .pagination .page-numbers:nth-child(1) {
	margin-left: 0px;
}

.floor-container {
	margin-bottom: 150px;
}
.floor-flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-left: -15px;
	margin-right: -15px;
}
.floor-flex > div {
	padding: 0px 15px;
}
.floor-flex .floor-left {
	width: calc(7 / 12 * 100%);
}
.floor-flex .floor-right {
	width: calc(4 / 12 * 100%);
}
.floor-content {
	margin-top: 90px;
}
.floor-pagination {
	position: absolute;
	top: 0px;
	right: 0px;
	width: calc(4 / 12 * 100%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px 15px;
	z-index: 11;
}
.floor-pagination > select {
	width: 49%;
	padding: 7px 10px;
	border: 1px solid #0058c3;
	border-radius: 5px;
	font-weight: bold;
	text-transform: uppercase;
	color: #0058c3;
}
.floor-pagination > div {
	width: 49%;
}
.floor-pagination .selectize-control.single .selectize-input, .floor-pagination .selectize-dropdown.single {
	text-transform: uppercase;
	font-weight: bold;
	color:  #0058c3;
	border-color: #0058c3;
	background: #fff;
	padding: 10px;
}
.floor-content > h3 {
	color: #0058c3;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 30px;
}
.floor-content > h4 {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 20px;
}
.floor-content > img {
	width: 50%;
	min-width: 200px;
}
.floor-note {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.floor-note > p {
	width: 48%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 17px;
	margin-bottom: 20px;
}
.floor-note > p > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 30px;
	border-top-left-radius: 10px;
	border-bottom-right-radius: 10px;
	color: #333333;
	margin-right: 10px;
}
.floor-container .swiper-slide-active .img-hover-mapster .info-group {
	pointer-events: all;
}
.floor-container .swiper-slide .img-hover-mapster .info-group {
	pointer-events: none;
}
.bg-cyan {
	background-color: #85cec6;
}
.bg-orange {
	background-color: #f3b880;
}
.bg-lightblue {
	background-color: #c1d3e7;
}
.bg-green {
	background-color: #547739;
}
.selectize-control.single .selectize-input {
	border-color: #0058c3;
	background: transparent;
}

.section-floor-plan-detail {
	padding-top: 200px;
}
.back {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-transform: uppercase;
	margin-top: 40px;
}
.back:hover {
	text-decoration: none;
}
.back svg {
	height: 35px;
	transform: translateX(-10px);
}
.floor-table {
	width: 100%;
	text-decoration: none;
	text-align: center;
	margin-bottom: 30px;
}
.floor-table table {
	width: 100%;
	overflow: overlay;
}
.floor-table table th {
	padding-top: 10px;
	padding-bottom: 10px;
	background: #4cb848;
	color: #fff;
}
.floor-table table td {
	padding: 10px;
	color: #333;
}
.floor-table table tr {
	border-bottom: 1px solid #ccc;
}
.floor-table table tr:first-child {
	border: 0px;
}
.type-container {
	margin-bottom: 150px;
}
.type-wrapper .floor-flex {
	justify-content: flex-end;
}
.type-wrapper .floor-flex .floor-left {
	width: 50%;
	margin-right: 150px;
}
.section-utility-plan {
	position: relative;
}
.section-utility-plan .img-hover-mapster {
	position: relative;
	left: 90%;
	transform: translateX(-90%);
}
.utility-plan {
	display: flex;
	align-items: flex-start;
    justify-content: flex-start;
}
.section-utility-plan {
    padding-left: 100px;
}
/* .utility-left-wrapper {
	margin-top: 200px;
} */
.section-utility-plan .title-beauty {
	margin-top: 200px;
}
.title-beauty {
	display: flex;
	align-items: flex-start;
	color: #0058c3;
	margin-top: 30px;
	margin-bottom: 20px;
}
.title-beauty .script {
	font-family: Fresh;
	font-size: 65px;
	line-height: 1em;
	margin-right: 15px;
}
.title-beauty .normal {
	font-family: 'Narziss';
	font-size: 30px;
	line-height: 30px;
}
.utility-left-content li {
    font-size: 15px;
}
.utility-left-content h5 {
	font-size: 18px;
	line-height: 24px;
    color: #1a4475;
    margin-top: 10px;
	margin-bottom: 15px;
}
.utility-left-content ul {
	list-style: none;
    padding: 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 680px;
    min-width: 980px;
}
.utility-left-content ul > div {
    margin-right: 20px;
}
.utility-left-content ul h5, .utility-left-content ul li {
    width: 48%;
    margin-right: 2%;
}
.utility-left-content ul li.active {
    color: #33b44a;
}
.utility-left-content ul li .utility-number {
	display: inline-block;
	width: 23px;
	height: 18px;
	margin-right: 10px;
	text-align: center;
	font-size: 13px;
	line-height: 18px;
	color: #fff;
	background: #33B44A;
	border-top-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

.utility-right {
    width: 1054px;
    height: 1039px;
    position: absolute;
    top: 0px;
    right: 0px;
}
.utility-image img {
    transition: .5s all ease;
    width: 100%;
}
.qtip-custom {
    background: transparent !important;
    border: none !important;
}
.qtip-custom .qtip-tip {
    display: none !important;
}
.qtip-custom .qtip-content {
    overflow: unset;
    padding: 0px;
    text-align: center;
}
.qtip-custom .utility-item {
    position: relative;
    left: 5px;
    top: 38px;
    pointer-events: none;
}
.qtip-custom .utility-title {
    color: #1a4475;
    font-size: 17px;
    line-height: 20px;
    width: 155px;
    height: 155px;
    padding: 15px;
    background-image: url(../images/bg-img-highlight.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.qtip-custom .utility-number {
    display: inline-block;
    width: 23px;
    height: 18px;
    margin-right: 10px;
    text-align: center;
    font-size: 13px;
    line-height: 18px;
    color: #fff;
    background: #33B44A;
    border-top-left-radius: 6px;
    border-bottom-right-radius: 6px;
    position: relative;
}
.footer-menu {
	display: block;
	list-style-type: none;
	padding: 0;
	margin: 0 -15px;
	display: flex;
}
.footer-menu > li {
	display: inline-block;
	padding: 0 15px;
	margin-bottom: 5px;
	border-left: 1px solid #fff;
}
.footer-menu > li:first-of-type {
	border: none;
}
.footer-menu > li > a {
	color: #fff;
	transition: all ease .4s;
	text-decoration: none;
}
.footer-menu > li > a:hover {
	color: #33B44A;
}

@media screen and (max-width: 1750px) {
	body {
		font-size: 16px;
	}
	.big-container {
		width: 1570px;
	}
	.dial-slider .item .number-container {
		width: 70px;
		height: 70px;
		font-size: 32px;
	}
	.dial-slider .item.active .number-container {
		width: 100px;
		height: 100px;
		font-size: 46px;
	}
	.sticky-menu-content .logo {
		width: 170px;
	}
	.sticky-menu-content {
		height: 60px;
	}

	.section-why .info {
		font-size: 17px;
	}
	.section-why .dial-slider-container {
		width: 550px;
		padding: 50px 65px 50px 50px;
	}
	.section-footer .divider-after-slider {
		margin-top: 25px;
		margin-bottom: 30px;
	}
	.section-footer .form-info .input {
		font-size: 15px;
	}
	.section-footer .title {
		margin-bottom: 20px;
	}
	.section-footer .map-frame iframe {
		height: 150px;
	}
	.section-footer .copyright .content .to-top {
		width: 40px;
		height: 40px;
		margin-top: 15px;
	}
	.news-item {
		margin-bottom: 40px;
    }
}

@media screen and (max-width: 1600px) {
	body {
		font-size: 14px;
	}
	p {
		margin-bottom: 10px;
	}
	.big-container {
		width: 1240px;
	}
	.container {
		width: 1140px;
	}
	.menu-beauty > ul > li > ul {
		padding-left: 5px;
	}
	.menu .logo-container {
		width: 380px;
	}
	.menu .logo {
		width: 100px;
	}
	.menu .slogan {
		top: 21px;
		font-size: 29px;
	}
	.menu .slogan .bot {
		margin-left: 45px;
	}
	.menu-thumb .phone {
		font-size: 15px;
	}
	.menu-thumb .lang {
		font-size: 14px;
	}
	.menu-thumb-item {
		margin-left: 20px;
	}
	.menu-thumb .lang {
		width: 30px;
		height: 30px;
	}
	.menu-thumb-container {
		padding-top: 21px;
	}
	.menu-thumb .menu-button .icon {
		font-size: 21px;
	}
	.menu-nav {
		flex: 1;
	}
	.menu-nav .tabs-list {
		text-align: center;
	}
	.menu-nav .tabs-list > li {
		border: none;
	}
	.menu-nav .tabs-list > li {
		padding-left: 12.5px;
		padding-right: 12.5px;
	}
	.sticky-menu-content {
		height: 55px;
	}
	.sticky-menu-content .logo {
		width: 155px;
	}
	.fullpage-container .fullpage-pagination {
		right: 22px;
	}
	.fullpage-container .fullpage-pagination .swiper-pagination-bullet {
		width: 9px;
		height: 9px;
		margin: 12px 0;
	}
	.sticky-register .register-wrapper .text-container,
	.sticky-register .register-wrapper .text {
		width: 135px;
		font-size: 13px;
	}
	.sticky-register .register-wrapper .icon {
		font-size: 31px;
		padding-right: 6px;
	}
	.sticky-register .register-wrapper .text {
		padding-left: 6px;
	}
	.sticky-register {
		width: 155px;
	}
	.sticky-register.min {
		width: 90px;
	}
	.img-hover-mapster .info-group {
		width: 120px;
		height: 120px;
	}
	.img-hover-mapster .info-groups .text-medium {
		font-size: 14px;
	}
	.img-hover-mapster .info-groups .text-big {
		font-size: 22px;
	}

	.section .content-note {
		width: 540px;
	}
	.section .content-note .text {
		transform: translateY(50%) translateY(-40px);
	}
	.dial-slider:before {
		border-width: 7px;
	}
	.dial-slider .item.active .number-container {
		width: 90px;
		height: 90px;
		font-size: 45px;
	}
	.list-favicons {
		margin-bottom: 24px;
	}
	.menu-beauty > ul > li > ul {
		margin-top: 10px;
	}

	/*--------------- SECTIONS -------------------*/
	.section .top-title {
		width: 490px;
	}
	.section .top-title .top {
		font-size: 32px;
		padding-top: 65px;
	}
	.section .top-title.align-top .top {
		padding-top: 50px;
	}
	.section .top-title .bot {
		font-size: 36px;
	}

	.section-overview-slider .popup-video {
		width: 340px;
	}
	.section-overview-slider .triangle-container {
		width: 45px;
		height: 45px;
		margin-bottom: 12px;
	}
	.section-overview .list-favicons {
		margin-bottom: 24px;
	}
	.section-overview .list-infos {
		margin-top: 24px;
	}
	.section-overview .list-infos .item .icon {
		width: 45px;
		margin-bottom: 15px;
	}
	.section-overview .list-infos .item {
		margin-bottom: 24px;
	}
	.section-overview .img-container .img {
		max-width: 720px;
	}
	.img-hover-mapster .info-lines circle {
		r: 6;
	}
	.section-cdt .content .logo {
		width: 250px;
		margin-bottom: 20px;
	}
	.section-why .info {
		font-size: 15px;
	}
	.section-why .dial-slider-container {
		width: 525px;
	}
	.section-footer .title {
		font-size: 18px;
	}
	.section-footer .contact-form p {
		margin-bottom: 6px;
		line-height: 1.5;
		font-size: 13px;
	}
	.section-footer .form-info .input {
		font-size: 14px;
		padding: 9px 15px;
	}
	.section-footer .cta {
		margin-bottom: 20px;
	}
	.section-footer .copyright .content .to-top {
		width: 35px;
		height: 35px;
		font-size: 30px;
	}

	/*--------------- SECTION MAIN TITLE -------------------*/
	.section-main-banner {
		height: 550px;
		padding-top: 100px;
	}
	.section-main-banner .title {
		font-size: 30px;
		margin-bottom: 30px;
	}
	.section-main-banner .tabs-list > li {
		padding-left: 18px;
		padding-right: 18px;
	}
	.section-about-overview .content {
		width: 400px;
	}
	.section-about-overview .content:before {
		bottom: -135px;
	}
	.section-hdmau {
		padding: 200px 0 150px;
	}
	.section-hdmau .list-pdf > li > a {
		padding: 15px 25px;
	}
	.section-hdmau .list-pdf .icon {
		width: 50px;
		padding-right: 18px;
		margin-right: 18px;
	}
	.section-linked .content {
		padding-top: 80px;
	}
	.section-location .content .description-container {
		width: calc(470px + 50vw - 1110px / 2);
	}
	.section-location .content .description {
		font-size: 14px;
		padding: 170px 15px 90px;
		width: 470px;
	}
	.section-location .locations {
		font-size: 13px;
	}
	.section-location .locations > li {
		margin-bottom: 10px;
	}
	.section-location .locations > li > .icon {
		width: 24px;
	}
	.progress-feature {
		margin-bottom: 15px;
	}
	.pagination .page-numbers {
		margin: 0px 10px;
	}
	.widget > h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.news-item {
		margin-bottom: 30px;
	}
	.section-top {
		margin-top: 70px;
		margin-bottom: 30px;
	}
	.section-title h2 {
		font-size: 22px;
	}
	.floor-content {
		margin-top: 60px;
	}
	.floor-content > h3 {
		font-size: 15px;
		line-height: inherit;
		margin-bottom: 20px;
	}
	.floor-note > p > span {
		width: 36px;
		height: 22px;
		border-top-left-radius: 8px;
		border-bottom-right-radius: 8px;
	}
	.floor-note > p {
		font-size: 14px;
		margin-bottom: 15px;
	}
	.selectize-input {
		padding: 6px 10px;
	}
	.floor-content > h4 {
		font-size: 14px;
	}
	.search-menu input {
		padding: 5px 30px 4px 10px;
	}
	.search-menu button {
		padding: 2px 10px;
		font-size: 18px;
	}
	.progress-item-wrapper h3 {
		font-size: 14px;
	}
	.progress-item-wrapper {
		font-size: 13px;
	}
	.pagination .page-numbers {
		font-size: 14px;
		width: 25px;
		height: 25px;
		margin: 0 8px;
	}
	.entry-title {
		font-size: 21px;
	}
	.close-btn {
		width: 30px;
		height: 30px;
	}
	.section-progress {
		padding-top: 160px;
	}
	.section-footer .copyright .content .text { 
		font-size: 13px;
    }
    .utility-left {
        max-width: 1240px;
	}
	.section-footer .contact {
		width: 400px;
	}
    /* .utility-plan {
        display: block;
	}
	.utility-left-content ul {
		max-height: 500px;
		min-height: unset;
	} */
	.utility-left {
		width: 56%;
		margin-left: 0;
	}
	.section-utility-plan {
		padding-left: 50px;
	}
	.utility-right {
		width: 56%;
		height: 100%;
		display: flex;
		align-items: flex-end;
	}
	.utility-left-content li {
		font-size: 15px;
	}
	.utility-left-content ul {
		min-width: unset;
	}
	.utility-left-content ul {
		max-height: 600px;
	}
	.qtip-custom .utility-title {
		width: 120px;
		height: 120px;
		font-size: 14px;
		padding: 5px;
	}
}

@media screen and (max-width: 1199px) {
	.big-container {
		width: 1000px;
	}
	.container {
		width: 960px;
	}
	.menu-beauty > ul {
		flex-direction: column;
		overflow-x: auto;
		max-height: 100vh;
		padding-top: 10px;
		padding-bottom: 10px;
		justify-content: space-around;
	}
	.menu-beauty > ul > li > div {
		display: none;
	}
	.menu-beauty > ul > li {
		padding-top: 10px;
		padding-bottom: 10px;
		flex: none;
	}
	.menu-beauty > ul > li > ul {
		display: block;
		margin: 0px auto;
		padding: 0px;
		text-align: center;
	}
	.menu-beauty > ul > li > ul > li {
		padding: 0px;
	}
	.menu-beauty > ul > li > ul > li:before {
		display: none;
	}
	.close-btn {
		width: 30px;
		height: 30px;
	}
	.menu .logo-container {
		width: 370px;
	}
	.menu .logo {
		width: 95px;
	}
	.menu .slogan {
		font-size: 27px;
	}

	/*--------------- SECTIONS -------------------*/
	.section-overview-slider .popup-video {
		width: 310px;
	}
	.section-overview-slider .popup-video p {
		margin: 0;
	}
	.section-overview .img-container {
		width: 60%;
	}
	.section-overview .content {
		width: 40%;
	}
	.section-overview .content p {
		margin-bottom: 10px;
	}
	.dial-slider .item .number-container {
		width: 60px;
		height: 60px;
		font-size: 28px;
	}
	.dial-slider .item.active .number-container {
		width: 80px;
		height: 80px;
		font-size: 40px;
	}
	.section-linked .content {
		padding-top: 100px;
	}
	.section-location .content .description-container {
		width: calc(450px + 50vw - 930px / 2);
	}
	.section-location .content .description {
		width: 450px;
	}
	.section-title h2 {
		font-size: 25px;
	}
	.floor-content {
		margin-top: 60px;
	}
	.floor-content > h3 {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.floor-content > h4 {
		font-size: 17px;
		margin-bottom: 15px;
	}
	.floor-note {
		margin-bottom: 15px;
	}
	.floor-note > p {
		font-size: 14px;
	}
	.news-content {
		width: 70%;
	}
	.sidebar {
		width: 30%;
	}
	.floor-pagination {
		width: calc(5 / 12 * 100%);
	}
	.floor-flex .floor-right {
		width: calc(5 / 12 * 100%);
	}
	.search-menu {
		width: 250px;
	}
	.type-wrapper .floor-flex .floor-left {
		margin-right: 80px;
    }
    .utility-left {
        max-width: 1000px;
	}
	.section-overview .img-container:before { display: none; }
	.section-footer .socials > li.bct > a {
		width: 120px;
	}
	.section-location {
		padding-top: 50px;
	}
	.section-utility-plan { 
		padding: 0;
	}
	.utility-plan {
		flex-wrap: wrap;
	}
	.utility-left {
		width: 100%;
		padding-left: 40px;
		padding-right: 40px;
		order: 2;
	}
	.utility-right {
		width: 100%;
		position: static;
		order: 1;
	}
	.section-utility-plan .title-beauty {
		padding-left: 50px;
	}
}

@media screen and (max-width: 991px) {
	.big-container,
	.container {
		width: 750px;
	}
	.img-hover-mapster .info-groups, .img-hover-mapster .info-lines {
		display: none;
	}
	.fullpage-container {
		height: auto;
	}
	.fullpage-wrapper {
		display: block;
	}
	.fullpage-wrapper > .swiper-slide {
		height: auto;
	}
	.list-favicons {
		margin-bottom: 20px;
	}
	.menu .logo-container {
		width: 320px;
	}
	.menu .logo {
		width: 80px;
	}
	.menu .slogan {
		font-size: 22px;
	}
	.menu .slogan .bot {
		margin-left: 35px;
	}
	.menu-nav {
		display: none;
	}
	.section .top-title {
		width: 360px;
	}
	.section .top-title .top {
		padding-top: 25px;
		padding-left: 20%;
		font-size: 28px;
	}
	.section .top-title.align-top .top {
		padding-top: 35px;
	}
	.section .top-title .bot {
		padding-left: 35%;
		font-size: 30px;
	}
	.sticky-register {
		width: 150px;
	}
	.sticky-register .register-wrapper {
		bottom: 12%;
	}
	.sticky-register .register-wrapper .icon {
		font-size: 28px;
	}
	.sticky-register .register-wrapper .text-container,
	.sticky-register .register-wrapper .text {
		width: 100px;
		font-size: 12px;
	}
	.section .content-note {
		width: 440px;
	}
	.section .content-note .text {
		line-height: 1.4;
		transform: translateY(50%) translateY(-30px);
	}

	
	.section.section-overview-slider .fullpage-section-slider {
		height: 550px;
		max-height: 100vh;
	}
	.section-overview-slider .popup-video {
		width: 250px;
	}
	.section-overview-slider .triangle-container {
		width: 35px;
		height: 35px;
	}
	.section-overview-slider .info {
		left: 100px;
		transform: none;
		top: auto;
		bottom: 15px;
	}
	.section-overview-slider .next-slide-mouse {
		width: 20px;
	}

	.section-overview {
		padding-top: 160px;
		padding-bottom: 50px;
	}
	.section-overview .img-container {
		width: 50%;
		padding-top: 0;
		padding-bottom: 0;
	}
	.section-overview .content-desktop {
		width: 50%;
		padding-top: 0;
		padding-bottom: 0;
	}
	.section-overview .content-mobile {
		display: block;
		padding-top: 0;
		width: 100%;
	}
	.section-overview .content-desktop .list-favicons,
	.section-overview .content-desktop .text,
	.section-overview .content-desktop .viewmore {
		display: none;
	}

	.section.section-master-plan .master-plan-content {
		height: 550px;
		max-height: 100vh;
		flex: none;
		flex: unset;
	}
	.img-hover-mapster .info-groups .info-group {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
	.img-hover-mapster .info-group {
		width: 90px;
		height: 90px;
	}
	.img-hover-mapster .info-groups .text-medium {
		font-size: 13px;
	}
	.img-hover-mapster .info-groups .text-big {
		font-size: 18px;
	}
	.img-hover-mapster .info-lines path {
		stroke-dashoffset: 0px !important;
	}
	.img-hover-mapster .info-lines circle {
		opacity: 1;
	}

	.section.section-cdt {
		height: 550px;
		padding-top: 160px;
		padding-bottom: 50px;
	}

	.fullpage-section-slider .fullpage-section-slider-prev {
		left: 0;
	}
	.fullpage-section-slider .fullpage-section-slider-next {
		right: 0;
	}
	.fullpage-section-slider .nav-icon-container {
		font-size: 40px;
	}

	.dial-slider .item .number-container {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}
	.dial-slider .item.active .number-container {
		width: 60px;
		height: 60px;
		font-size: 32px;
	}
	.section-why {
		padding-top: 160px;
		padding-bottom: 50px;
	}
	.section-why .dial-slider-container {
		padding: 40px;
		padding-right: 50px;
	}
	.section-why .info .list-favicons,
	.section-why .info .description {
		margin-bottom: 20px;
	}
	.section-footer .main-footer {
		padding-top: 50px;
		padding-bottom: 20px;
	}
	.section-footer .form-info .submit:hover {
		padding-right: 50px;
	}
	.section-footer .form-info .submit:hover:before {
		width: 40px;
	}

	.section-main-banner .title {
		font-size: 27px;
		margin-bottom: 20px;
	}
	.section-hdmau .list-pdf > li {
		width: 50%;
	}
	.section-linked .content {
		padding-top: 100px;
		padding-bottom: 50px;
	}
	.section-linked .content .img-linked-container {
		width: 100%;
	}
	.section-linked .content .description {
		width: 100%;
	}
	.section-location .content {
		display: block;
	}
	.section-location .content .description-container {
		width: 750px;
		padding: 0 15px;
		margin: 0 auto;
		max-width: 100%;
	}
	.section-location .content .description {
		width: 100%;
		padding-bottom: 0;
		margin-bottom: 50px;
	}
	.section-utilities .fullpage-section-slider {
		height: 100%;
	}
	.section-policy {
		padding-top: 100px;
		padding-bottom: 100px;
		height: 100%;
	}
	.policy-flex {
		flex-wrap: wrap;
	}
	.policy-col-5 {
		width: 100%;
	}
	.policy-content {
		margin-top: 30px;
		padding-right: 0px;
	}
	.section-progress {
		padding-bottom: 100px;
	}
	.progress-item {
		width: 50%;
	}
	.news-flex {
		flex-wrap: wrap;
	}
	.news-content {
		width: 100%;
		margin-bottom: 50px;
	}
	.entry-title {
		margin-top: 0px;
	}
	.sidebar {
		width: 100%;
	}
	.news-list {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		margin: 0px -15px;
	}
	.news-list > div {
		width: 50%;
		padding: 0px 15px;
	}
	.floor-pagination {
		width: 100%;
		padding: 0px;
	}
	.floor-flex {
		flex-wrap: wrap;
		padding-top: 80px;
	}
	.floor-flex > div {
		width: 100% !important;
	}
	.type-wrapper .floor-flex .floor-left {
		margin-right: 0px;
    }
    .utility-left {
        max-width: 750px;
    }
    .utility-left-content ul {
        flex-wrap: wrap;
        max-width: 100%;
        max-height: unset;
        min-width: unset;
    }
    .utility-left-content ul h5, .utility-left-content ul li {
        width: 100%;
        margin-right: 0px;
	}
	.footer-menu {
		margin-left: -10px;
		margin-right: -10px;
	}
	.footer-menu > li {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 13px;
	}
	.section-location {
		padding-top: 0px;
	}
}

@media screen and (max-width: 767px) {
	.big-container,
	.container {
		width: 550px;
	}
	.menu .menu-thumb-container, .menu .menu-nav, .menu .logo{
		display: none;
	}
	.menu .big-container {
		width: 100%;
		padding: 0;
	}
	.sticky-menu-content .logo {
		margin-right: 10px;
	}
	.menu .logo-container {
		width: 180px;
		margin-top: 55px;
	}
	.menu .logo-container:before {
		background-image: url(../images/bg-logo-mobile.png);
	}
	.menu .slogan {
		left: 15%;
	}
	.sticky-menu {
		transform: translateY(0);
	}
	.section .top-title {
		width: 300px;
	}
	.sticky-register {
		width: 90px;
	}
	.sticky-register .register-wrapper .text-container {
		width: 0;
	}
	.sticky-register .register-wrapper {
		left: 18%;
	}

	.section.section-master-plan .master-plan-content {
		height: 500px;
	}
	.section .content-note {
		width: 370px;
	}
	.img-hover-mapster .info-groups .text-medium {
		font-size: 12px;
	}
	.img-hover-mapster .info-groups .text-big {
		font-size: 15px;
	}
	.img-hover-mapster .info-group {
		width: 75px;
		height: 75px;
	}

	.section-overview .list-infos .item .icon {
		width: 40px;
	}
	.section-overview-slider .popup-video {
		width: 140px;
	}
	.section-overview-slider .triangle-container {
		margin: 0;
	}
	.section-overview-slider .triangle {
		border-width: 7px 0 7px 10px;
	}
	.section-overview-slider .info {
		left: 78px;
		bottom: 10px;
	}
	.section-overview-slider .info .text {
		display: none;
	}
	.section-overview {
		padding-top: 130px;
	}
	.section .top-title .top {
		padding-top: 15px;
		padding-left: 18%;
		font-size: 24px;
	}
	.section .top-title .bot {
		font-size: 25px;
	}
	.section .top-title.align-top .top {
		padding-top: 20px;
		padding-left: 15%;
	}
	.section .top-title.align-top .bot {
		padding-left: 32%;
	}
	.section-why .slider,
	.section-why .infos {
		width: 100%;
		padding: 0;
		margin-bottom: 15px;
	}
	.section-why .dial-slider-container {
		width: 400px;
		transform: rotate(90deg);
	}
	.dial-slider .item .number-container {
		transform: translate(50%, -50%) rotate(-90deg);
	}
	.section-footer .contact-container,
	.section-footer .contact,
	.section-footer .form-container {
		width: 100%;
	}
	.section-footer .contact-container {
		margin-bottom: 30px;
	}
	.section-main-banner {
		padding-top: 60px;
	}
	.section-main-banner .title {
		font-size: 26px;
	}
	.section-main-banner .tabs-list {
		margin-left: -10px;
		margin-right: -10px;
	}
	.section-main-banner .tabs-list > li {
		padding-left: 10px;
		padding-right: 10px;
		border: none;
	}
	.section-about-overview {
		height: 600px;
	}
	.section-about-overview .content-container {
		padding: 180px 0 100px;
	}
	.section-hdmau {
		padding: 100px 0px;
	}
	.section-hdmau .list-pdf > li {
		width: 100%;
	}
	.section-progress {
		padding-top: 150px;
	}
	.progress-item {
		width: 100%;
	}
	.pagination {
		margin-top: 0px;
	}
	.pagination .page-numbers {
		margin: 0px 7px;
	}
	.news-list > div {
		width: 100%;
	}
	.floor-table table td {
		white-space: nowrap;
    }
    .utility-left {
        max-width: 550px;
    }
    .section-utility-plan .title-beauty {
        margin-top: 100px;
	}
	.section-utilities .fullpage-section-slider {
		height: 450px !important;
	}
    .title-beauty {
        font-size: 18px;
        margin-bottom: 10px;
	}
    .title-beauty .script {
        font-size: 30px;
        line-height: 1.9em;
    }
    .title-beauty .normal {
        font-size: 18px;
        line-height: 1.3;
	}
	.section-master-plan.page-master-plan {
		padding-top: 55px;
	}
	.section-utility-plan .title-beauty {
		margin-top: 170px;
	}
}

@media screen and (max-width: 575px) {
	.section .content-note {
		width: 100%;
		position: relative;
		height: 27vw;
		margin-top: -10vw;
		background-image: url(../images/bg-content-mb-mobile.png);
		background-size: 100% 100%;
		opacity: 1 !important;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	.section .content-note .text {
		padding-left: 30px;
		padding-right: 30px;
		padding-bottom: 15px;
		width: 100%;
		transform: none;
	}
	.section .content-note .text p {
		margin-bottom: 0;
	}
	.section .top-title {
		width: 100%;
		height: 21vw;
		position: relative;
		margin-bottom: -5.6vw;
		opacity: 1 !important;
	}
	.section.section-master-plan .master-plan-content {
		height: 400px;
	}
	.section .top-title:before {
		background-image: url(../images/bg-title-mobile.png);
		background-size: 100% 100%;
	}
	.section .top-title .top {
		padding-top: 15px;
		font-size: 26px;
		padding-left: 15px;
	}
	.section .top-title .bot {
		padding-left: 45px;
		font-size: 28px;
	}
	.section.section-cdt {
		padding-top: 0;
		height: auto;
	}
	.section-cdt .content {
		padding-top: 100px;
		padding-bottom: 00px;
	}
	.section-why {
		padding-top: 0;
	}
	.section-why .top-title {
		margin-bottom: 20px;
	}
	.section-utilities .swiper-slide {
		display: flex;
		flex-direction: column;
	}
	.section-utilities .swiper-slide .full-img {
		flex: 1;
	}
	.menu-thumb .phone .text {
		display: none;
	}
	.menu-thumb .phone .icon {
		margin-right: 0;
	}
	.menu-thumb-item {
		margin-left: 10px;
	}
	.section-overview {
		padding-top: 0;
	}
	.section-overview .content-mobile {
		display: none;
	}
	.section-overview .content-desktop,
	.section-overview .img-container {
		width: 100%;
		margin-bottom: 30px;
	}
	.section-overview .content-desktop .list-favicons,
	.section-overview .content-desktop .text,
	.section-overview .content-desktop .viewmore {
		display: block;
	}
	.section-overview .img-container .img {
		max-width: 400px;
	}
	.section-main-banner .title {
		font-size: 24px;
	}
	.section-location .locations > li {
		width: 50%;
    }
    .utility-left {
        margin-left: 15px;
        margin-right: 15px;
	}
	.section-linked .content {
		padding-top: 140px;
	}
	.section-policy {
		padding-top: 140px;
	}
	.section-master-plan.page-master-plan .menu {
		display: none;
	}
	.utility-left {
		padding: 0;
	}
}
@media screen and (max-width: 450px) {
	.section.section-master-plan .master-plan-content {
		height: 350px;
	}
	.section-footer .form-info .input-group {
		width: 100%;
	}
	.section-footer .form-info .captcha-group {
		width: 70%;
	}
	.section-footer .form-info .captcha-img-group {
		width: 30%;
	}
	.section-about-overview .content:before {
		bottom: -85px;
		left: -15%;
		right: -60%;
	}
	.section .top-title .top {
		padding-top: 10px;
		font-size: 24px;
	}
	.section .top-title .bot {
		font-size: 25px;
	}

	.section-linked .content .img-linked {
		transform: scale(1.1);
	}
	.section .top-title {
		height: 26vw;
		margin-bottom: -7vw;
	}
	.section .content-note {
		height: 33vw;
		margin-top: -12vw;
	}
	.section-why .top-title {
		margin-bottom: 20px;
	}
	.section-policy {
		padding-top: 180px;
	}
}
