@font-face {
	font-family: "Sarabun";
	font-weight: normal;
	font-style: normal;
	src: url("../fonts/Sarabun-Regular.ttf");
}

@font-face {
	font-family: "Sarabun";
	font-weight: normal;
	font-style: italic;
	src: url("../fonts/Sarabun-Italic.ttf");
}

@font-face {
	font-family: "Sarabun";
	font-weight: bold;
	font-style: normal;
	src: url("../fonts/Sarabun-SemiBold.ttf");
}

@font-face {
	font-family: "Sarabun";
	font-weight: bold;
	font-style: italic;
	src: url("../fonts/Sarabun-SemiBoldItalic.ttf");
}

@font-face {
	font-family: "Belle";
	src: url("../fonts/SFUBelleRegular.TTF");
}

@font-face {
	font-family: "Heartbeat";
	src: url("../fonts/UTM\ A&S\ Heartbeat.ttf");
}

.centered {
	float: none;
	margin-left: auto;
	margin-right: auto;
}

img {
	max-width: 100%;
	height: auto;
}

input,
.input {
	outline: none;
}

button {
	outline: none;
}

html,
body {
	font-family: "Sarabun";
	font-size: 18px;
	line-height: 1.5;
	font-variant-ligatures: none;
	color: #333333;
}

a {
	color: #bc9a5c;
	transition: all ease 0.4s;
}

a:hover {
	color: #60481e;
	text-decoration: none;
}

img {
	max-width: 100%;
}

p {
	margin-bottom: 13px;
}

main {
	position: relative;
	z-index: 2;
}

.spinner {
    animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    display: inline-block;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* section {
	overflow: hidden;
} */

.container {
	position: relative;
}

@media screen and (min-width: 1700px) {
	.container {
		max-width: 1680px;
	}
    .container-left {
        max-width: 100%;
        width: 100%;
        margin-left: calc(100vw / 2 - 1680px / 2);
    }
    .container-right {
        max-width: 100%;
        width: 100%;
        margin-right: calc(100vw / 2 - 1680px / 2);
    }
}

@media screen and (min-width: 1200px) and (max-width: 1699px) {
	.container {
		max-width: 1200px;
	}
    .container-left {
        max-width: 100%;
        width: 100%;
        margin-left: calc(100vw / 2 - 1200px / 2);
    }
    .container-right {
        max-width: 100%;
        width: 100%;
        margin-right: calc(100vw / 2 - 1200px / 2);
    }
}

/******************************************************************************************/
/**************************************** GENARAL *****************************************/
/******************************************************************************************/

.main-title {
    color: #60481e;
    font-family: "Belle";
    font-size: 45px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    background-image: url(../images/pattern-title.svg);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 112px;
}

.main-title.main-title-white {
    color: #fff;
    background-image: url(../images/pattern-title-white.svg);
}

.main-title.main-title-center {
    text-align: center;
    background-position-x: center;
}
.main-title.main-title-right {
    text-align: right;
    background-position-x: right;
}

.section {
    position: relative;
}

.section > * {
    position: relative;
    z-index: 1;
}

.section-right-pattern::before,
.section-left-pattern::before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    width: 140px;
    max-width: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    opacity: 0.7;
    pointer-events: none;
}

.section-right-pattern::before {
    right: 0;
    background-image: url(../images/pattern-section-right.svg);
}

.section-left-pattern::before {
    left: 0;
    background-image: url(../images/pattern-section-left.svg);
}

.section-right-bg::after,
.section-left-bg::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.4;
    pointer-events: none;
}

.section-right-bg::after {
    background: linear-gradient(-60deg, #bc9a5c 0%, transparent 66%)
}

.section-left-bg::after {
    background: linear-gradient(60deg, #bc9a5c 0%, transparent 66%)
}

.section-content-center .container {
    height: 100%;
    display: flex;
}
.section-content-center .section-content {
    margin-top: auto;
    margin-bottom: auto;
}
label.error {
    color: red;
    font-size: 90%;
    font-style: italic;
    margin: 0;
}

/******************************************************************************************/
/**************************************** END GENARAL *************************************/
/******************************************************************************************/

/******************************************************************************************/
/**************************************** HEADER ******************************************/
/******************************************************************************************/

header.header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu-box-container {
    background: #bc9a5c;
    background-image: url(../images/pattern-menu-left.svg), url(../images/pattern-menu-right.svg);
    background-repeat: no-repeat;
    background-position: top left, top right;
    background-size: auto 100%;
}


.menu-box {
    display: flex;
    height: 75px;
}

.menu-box .main-title {
    display: none;
}

.menu-box .menu-container {
    flex: 1;
    display: flex;
}

.menu-box .left-menu-container {
    justify-content: flex-end;
    padding-right: 85px;
}

.menu-box .right-menu-container {
    justify-content: flex-start;
    padding-left: 85px;
}

.menu-box .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menu-box .menu .item-link {
    color: #fff;
    display: block;
    padding: 5px 27px;
    height: 100%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: bold;
    transition: all ease .4s;
    position: relative;
}

.menu-box .menu .item-link::before,
.menu-box .menu .item-link::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 1px;
    top: 50%;
    background: #60481e;
    transition: all ease .4s;
}

.menu-box .menu .item-link::before {
    right: calc(100% - 22px);
}

.menu-box .menu .item-link::after {
    left: calc(100% - 22px);
}

.menu-box .menu .item-link:hover,
.menu-box .menu .item.active .item-link {
    color: #60481e;
}

.menu-box .menu .item-link:hover::before,
.menu-box .menu .item-link:hover::after,
.menu-box .menu .item.active .item-link::before,
.menu-box .menu .item.active .item-link::after {
    width: 20px;
}

.menu-thumbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.menu-thumbs .logo-container {
    display: block;
    pointer-events: all;
    width: 170px;
    margin: auto;
    padding: 12px 25px;
    position: relative;
}

.menu-thumbs .logo-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100vh;
    pointer-events: none;
    background-image: url(../images/bg-logo.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
}

.menu-thumbs .logo {
    position: relative;
    z-index: 1;
}

.header .languages {
    list-style: none;
    padding: 0;
    margin: 0 -4px;
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.header .menu-container .languages {
    margin-left: 4px;
}

.header .languages .item {
    padding: 0 4px;
    display: flex;
    align-items: center;
}

.header .languages .item-link {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d2ac67;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .contact-container  {
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 14px;
    pointer-events: none;
}

.header .btn-contact {
    background: #bc9a5c;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px 2px;
    line-height: 1;
    height: 36px;
    border-radius: 100px;
    pointer-events: all;
    transition: all ease .4s;
}

.header .btn-contact:hover {
    box-shadow: 0 0 10px rgba(188, 154, 92, 0.8);
    background-color: #6a5835
}

.header .btn-contact.big {
    font-size: 20px;
    font-weight: bold;
}

.header .btn-contact .icon {
    font-size: 24px;
    margin-right: 8px;
}

.menu-thumbs .mobile-thumb {
    display: none;
}
.zing-zing-animation {
    -webkit-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -o-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

@keyframes quick-alo-circle-img-anim {
    0% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
    }
    10% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
    }
    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
    }
}

/******************************************************************************************/
/**************************************** END HEADER **************************************/
/******************************************************************************************/

/********** FULL PAGE **************/
.fullpage-container {
    height: calc(100vh - 75px);
    overflow: hidden;
}
.fullpage-container .section {
    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%;
}
.next-slide-mouse {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    width: 27px;
    z-index: 99;
    cursor: pointer;
    text-align: center;
}

.next-slide-mouse .icon {
    color: #fff;
    font-size: 24px;
    display: block;
    animation: fadein 2s infinite ease-in-out;
}
.next-slide-mouse .icon:nth-of-type(1) {
    animation-delay: 0s;
    margin-bottom: -28px;
}
.next-slide-mouse .icon:nth-of-type(2) {
    animation-delay: 0.1s;
    margin-bottom: -28px;
}
.next-slide-mouse .icon:nth-of-type(3) {
    animation-delay: 0.2s;
    margin-bottom: -4px;
}

.next-slide-mouse>img {
    width: 100%;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    70% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
/********** END FULL PAGE **************/

/******************************************************************************************/
/**************************************** SECTION - BANNER ********************************/
/******************************************************************************************/
.banner-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.banner-video-container .banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-video-container .control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    cursor: pointer;
}
.banner-video-container .control > img {
    transition: all ease .4s;
}
.banner-video-container .control:hover > img {
    transform: scale(0.85);
}
.banner-video-container .title {
    font-family: "Heartbeat";
    font-size: 70px;
    color: #fff;
    text-shadow: 0 0 2px rgba(0,0,0,0.8);
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    text-align: center;
}
.fullpage-container .banner-slider {
    height: 100%;
}
/******************************************************************************************/
/**************************************** END SECTION - BANNER ****************************/
/******************************************************************************************/

/******************************************************************************************/
/**************************************** SECTION - OVERVIEW ******************************/
/******************************************************************************************/
.section-overview {
    padding: 40px 0;
}
.section-overview .section-content {
    display: flex;
    flex-wrap: wrap;
    margin-left: -48px;
    margin-right: -48px;
}
.section-overview .img-container {
    width: 59.6%;
    padding-left: 48px;
    padding-right: 48px;
}
.section-overview .content {
    width: 40.4%;
    padding-left: 48px;
    padding-right: 48px;
}
.section-overview .description {
    margin-bottom: 32px;
    text-align: justify;
}
.overview-box-container {
    padding: 50px 30px 40px;
    background: #bc9a5c;
    color: #fff;
}
.overview-box {
    list-style: none;
    padding: 0;
    margin: -26px -34px;
    display: flex;
    flex-wrap: wrap;
}
.overview-box > .item {
    width: 50%;
    display: flex;
    align-items: flex-start;
    padding: 28px 34px;
    min-height: 145px;
    position: relative;
}
/** horizon **/
.overview-box > .item::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 1px;
    background: #E0E0DF;
}
.overview-box > .item:nth-of-type(2n)::before {
    display: none;
}
.overview-box > .item:nth-of-type(1)::before,
.overview-box > .item:nth-of-type(2)::before {
    top: 50px
}
.overview-box > .item:nth-last-of-type(1)::before,
.overview-box > .item:nth-last-of-type(2)::before {
    bottom: 52px
}
.overview-box > .item .info::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 45px;
    background-size: 100% 100%;
}
.overview-box > .item:nth-of-type(2n) .info::before {
    display: none;
}
.overview-box > .item:nth-of-type(1) .info::before,
.overview-box > .item:nth-of-type(2) .info::before {
    background: url(../images/icons/overview-top.svg);
    top: 7px;
    right: -7px;
}
.overview-box > .item:nth-last-of-type(1) .info::before,
.overview-box > .item:nth-last-of-type(2) .info::before {
    background: url(../images/icons/overview-bottom.svg);
    bottom: 8px;
    right: -7px;
}

/** Vertical **/
.overview-box > .item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #E0E0DF;
}
.overview-box > .item:nth-of-type(2n + 1)::after {
    left: 80px;
}
.overview-box > .item:nth-of-type(2n)::after {
    right: 80px;
}
.overview-box > .item:nth-last-of-type(1)::after,
.overview-box > .item:nth-last-of-type(2):nth-of-type(2n + 1)::after {
    display: none;
}
.overview-box > .item .info::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 16px;
    background-size: 100% 100%;
}
.overview-box > .item:nth-of-type(2n + 1) .info::after {
    background: url(../images/icons/overview-left.svg);
    bottom: -7px;
    left: 37px;
}
.overview-box > .item:nth-of-type(2n) .info::after {
    background: url(../images/icons/overview-right.svg);
    bottom: -7px;
    right: 37px;
}
.overview-box > .item:nth-last-of-type(1) .info::after,
.overview-box > .item:nth-last-of-type(2):nth-of-type(2n + 1) .info::after {
    display: none;
}

.overview-box .icon {
    width: 54px;
}
.overview-box .info {
    margin-left: 16px;
}
.overview-box .info .label {
    font-size: inherit;
    font-weight: normal;
    margin-bottom: 8px;
}
.overview-box .info .value {
    font-size: inherit;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.2;
}
/******************************************************************************************/
/**************************************** END SECTION - OVERVIEW **************************/
/******************************************************************************************/

/******************************************************************************************/
/**************************************** SECTION - LOCATION ******************************/
/******************************************************************************************/
.section-location .section-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}
.section-location .content {
    width: 23.6%;
    padding-left: 20px;
    padding-right: 20px;
}
.section-location .img-container {
    width: 76.4%;
    padding-left: 20px;
    padding-right: 20px;
}
.section-location .description {
    text-align: justify;
}
/******************************************************************************************/
/**************************************** END SECTION - LOCATION **************************/
/******************************************************************************************/

/******************************************************************************************/
/**************************************** SECTION - MASTER PLAN ***************************/
/******************************************************************************************/
.master-plan {
    position: relative;
}
.master-plan .list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}
.master-plan .list-items .item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.master-plan .list-items .item .name {
    background: #d08b22;
    color: #fff;
    transition: all ease .4s;
    display: block;
    min-width: 8.85vw;
    text-align: center;
    line-height: 1.2;
    padding: 0.52vw 0.78vw;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 0 3px 2px rgba(0,0,0,0.2);
    position: absolute;
    z-index: 2;
    bottom: 9vw;
    left: 0;
    transform: translate(-50%, 50%);
    font-size: 0.9375vw;
    white-space: nowrap;
}
.master-plan .list-items .item.active .name {
    background: #fff;
    color: #bc9a5c;
}
.master-plan .list-items .item .line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 9vw;
    background: #d08b22;
    transition: all ease .4s;
}
.master-plan .list-items .item.active .line {
    background: #fff;
}
.master-plan .list-items .item .line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 0.833vw;
    height: 0.833vw;
    border-radius: 50%;
    background: #d08b22;
    transition: all ease .4s;
    z-index: 1;
}
.master-plan .list-items .item .line::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 1vw;
    height: 1vw;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: 1px solid #d08b22;
    transition: all ease .4s;
    animation: point 1.5s ease-in-out infinite;
}
.master-plan .list-items .item.active .line::after {
    border-color: #fff;
    background: rgba(208, 139, 34, 0.5);
}
.master-plan .list-items .item.active .line::before {
    background: #fff;
}
@keyframes point {
    0% {
        transform: translate(-50%, 50%) scale(1);
        opacity: 0;
    }
  
    50% {
        opacity: 1;
    }
  
    100% {
        transform: translate(-50%, 50%) scale(1.5);
        opacity: 0;
    }
}
.section-master-plan {
    position: relative;
}
.section-master-plan .info {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    pointer-events: none;
}
.section-master-plan .info .content {
    width: 25%;
    margin-left: auto;
    background: rgba(188, 154, 92, 0.9);
    padding: 16px 34px;
    color: #fff;
}
/******************************************************************************************/
/**************************************** END SECTION - MASTER PLAN ***********************/
/******************************************************************************************/

/******************************************************************************************/
/**************************************** SECTION - UTILITIES *****************************/
/******************************************************************************************/
.section-utilities {
    padding-top: 40px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    background-color: #a58549;
    color: #fff;
}
.section-utilities .main-title{
    margin-bottom: 20px;
    margin-left: 16.5%;
}
.section-utilities .utilities-slider {
    flex: 1;
    margin-left: -52%;
    margin-right: -52%;
}
.utilities-slider .swiper-slide {
    cursor: pointer;
    transition: all ease .4s;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
}
.utilities-slider .swiper-slide-active {
    cursor: auto;
    opacity: 1;
}
.utilities-slider .swiper-slide-active .img {
    padding-top: 0;
    padding-bottom: 0;
}
.utilities-slider .img-container {
    flex: 1;
    position: relative;
}
.utilities-slider .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 46px;
    padding-bottom: 46px;
    object-fit: cover;
    object-position: center;
    transition: all ease .4s;
    flex: 1;
}
.utilities-slider .caption {
    text-align: center;
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: all ease .4s;
}
.utilities-slider .swiper-slide-active .caption {
    opacity: 1;
}
.utilities-slider .caption .name {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 4px;
}
.utilities-slider .caption .description {
    white-space: nowrap;
    font-size: inherit;
    margin: 0;
}
/******************************************************************************************/
/**************************************** END SECTION - UTILITIES *************************/
/******************************************************************************************/

/******************************************************************************************/
/**************************************** SECTION - WHY ***********************************/
/******************************************************************************************/
.section-why {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
}
.why-list-container {
    position: relative;
}
.why-list-container .img-container,
.why-list-container .img {
    width: 100%;
}
.why-list-container .main-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: static;
    height: 0;
}
.why-list .item {
    position: static;
}
.why-list .item .number {
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-family: "Belle";
    color: #60481e;
}
.why-list .item .title {
    position: absolute;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    white-space: nowrap;
    transform: translateY(-50%);
}
.why-list .item .description {
    position: absolute;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    line-height: 1.3;
    transform: translateY(-50%);
    width: 20%;
    font-size: 16px;
}
.why-list .item:nth-of-type(1) .number {
    top: 12%;
    left: 32.5%;
}
.why-list .item:nth-of-type(2) .number {
    top: 49%;
    left: 27%;
}
.why-list .item:nth-of-type(3) .number {
    top: 84.2%;
    left: 32.2%;
}
.why-list .item:nth-of-type(4) .number {
    top: 12%;
    left: 66.8%;
}
.why-list .item:nth-of-type(5) .number {
    top: 49%;
    left: 72.3%;
}
.why-list .item:nth-of-type(6) .number {
    top: 84.2%;
    left: 67%;
}
.why-list .item:nth-of-type(1) .title {
    top: 3.6%;
    right: 72%;
}
.why-list .item:nth-of-type(2) .title {
    top: 40.4%;
    right: 77.5%;
}
.why-list .item:nth-of-type(3) .title {
    top: 75.9%;
    right: 72%;
}
.why-list .item:nth-of-type(4) .title {
    top: 3.6%;
    left: 72.5%;
}
.why-list .item:nth-of-type(5) .title {
    top: 40.4%;
    left: 77.5%;
}
.why-list .item:nth-of-type(6) .title {
    top: 75.9%;
    left: 72.5%;
}
.why-list .item:nth-of-type(1) .description {
    top: 14%;
    right: 72%;
    text-align: right;
}
.why-list .item:nth-of-type(2) .description {
    top: 51.4%;
    right: 77.5%;
    text-align: right;
}
.why-list .item:nth-of-type(3) .description {
    top: 86.8%;
    right: 72%;
    text-align: right;
}
.why-list .item:nth-of-type(4) .description {
    top: 14%;
    left: 72.5%;
}
.why-list .item:nth-of-type(5) .description {
    top: 51.4%;
    left: 77.5%;
}
.why-list .item:nth-of-type(6) .description {
    top: 86.8%;
    left: 72.5%;
}
/******************************************************************************************/
/**************************************** END SECTION - WHY *******************************/
/******************************************************************************************/

/******************************************************************************************/
/**************************************** SECTION - BLOG **********************************/
/******************************************************************************************/
.section-blog {
    padding-top: 80px;
    padding-bottom: 60px;
}
.section-blog .section-content {
    width: 100%;
}
.section-blog .swiper-pagination {
    position: static;
    transform: none;
    margin-top: 20px;
}
.section-blog .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 1px solid #bc9a5c;
    border-radius: 50%;
    opacity: 1;
    transition: all ease .4s;
}
.section-blog .swiper-pagination .swiper-pagination-bullet-active,
.section-blog .swiper-pagination .swiper-pagination-bullet:hover {
    background: #bc9a5c;
}
.item-blog-full {
    position: relative;
    display: inline-block
}
.item-blog-full .img {
    width: 100%;
}
.item-blog-full .box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(188, 154, 92, 0.8);
    color: #fff;
    padding: 20px 28px;
}
.item-blog-full .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.item-blog .img-container {
    display: block;
    margin-bottom: 16px;
}
.item-blog .title {
    font-size: 20px;
    font-weight: bold;
    color: #60481e;
    margin-bottom: 12px;
    transition: all ease .4s;
}
.item-blog .title:hover {
    color: #a58549;
}
.item-blog .date {
    color: #bc9a5c;
    margin-bottom: 8px;
}
.item-blog .description {
    color: #60481e;
    text-align: justify;
}
/******************************************************************************************/
/**************************************** END SECTION - BLOG ******************************/
/******************************************************************************************/

/******************************************************************************************/
/**************************************** SECTION - PROGRESS ******************************/
/******************************************************************************************/
.section-video-progress {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 40px;
}
.section-video-progress .section-content {
    width: 100%;
}
.section-video-progress .progress-video-container  {
    width: 66.66%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}
.progress-video-container {
    position: relative;
}
.progress-video-container .progress-video {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.progress-video-container .control {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 88px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.progress-video-container .control > img {
    transition: all ease .4s;
}
.progress-video-container .control:hover > img {
    transform: scale(0.85);
}
/******************************************************************************************/
/**************************************** END SECTION - PROGRESS **************************/
/******************************************************************************************/

/******************************************************************************************/
/**************************************** SECTION - FOOTER ********************************/
/******************************************************************************************/
.section-footer {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.section-footer .partner {
    padding: 100px 0 40px;
    flex-grow: 1;
    position: relative;
}
.section-footer .partner::before,
.section-footer .partner::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 220px;
    height: 350px;
    max-width: 40%;
    max-height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.2;
}
.section-footer .partner::before {
    left: 0;
    background-image: url(../images/pattern-footer-left.svg);
    background-position: bottom left;
}
.section-footer .partner::after {
    right: 0;
    background-image: url(../images/pattern-footer-right.svg);
    background-position: bottom right;
}
.section-footer .partner-list {
    display: flex;
    width: 33.33%;
    margin: 0 auto;
}
.section-footer .partner-list .item {
    padding: 0 40px;
    width: 50%;
    text-align: center;
}
.section-footer .partner-list .item .title {
    font-size: 24px;
    color: #433213;
    margin-bottom: 40px;
}
.section-footer .partner-list .item .img {
    width: 80%;
}
.section-footer .footer-box {
    padding: 70px 0 0 0;
    background: #ebe0cc;
}
.section-footer .footer-box .title {
    font-family: "Belle";
    font-size: 35px;
    margin-bottom: 20px;
    color: #60481e;
}
.section-footer .footer-box a {
    color: inherit;
}
.section-footer .footer-box a:hover {
    color: #d2ac67;
}
.section-footer .footer-box .socials {
    padding: 0;
    margin: 40px -8px 0;
    list-style: none;
    display: flex;
}
.section-footer .footer-box .socials .item {
    padding: 0 8px;
}
.section-footer .footer-box .socials .item-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #d08b22;
    border-radius: 50%;
    color: #fff;
}
.section-footer .footer-box .socials .item-link.facebook {
    background: #395398;
}
.section-footer .footer-box .socials .item-link.youtube {
    background: #bf0411;
}
.section-footer .footer-box .socials .item-link.instagram {
    background: linear-gradient(45deg, #F9ED32 5%, #F8D939 10%, #F5A54D 15%, #F0536C 25%, #EE2A7B 40%, #9E2AA7 60%, #5B2ACD 75%, #2A2AE8 85%, #0B2AF9 95%, #002AFF 100%);
}
.section-footer .footer-box .bct {
    display: inline-block;
    margin-top: 32px;
    width: 160px;
}
.default-form .group-input {
    margin-bottom: 12px;
    position: relative;
}
.default-form .group-input .captcha {
    position: absolute;
    right: 12px;
    top: 8px;
    height: 30px;
    cursor: pointer;
}
.default-form .group-input .input {
    width: 100%;
    border: 1px solid #e1e1e1;
    background: #fff;
    border-radius: 20px;
    outline: none;
    padding: 6px 20px;
    display: block;
}
.default-form .submit-btn {
    background: #bc9a5c;
    color: #fff;
    padding: 6px 20px;
    text-align: center;
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 20px;
}
.section-footer .copyright {
    text-align: center;
    padding: 40px 0 20px;
}
.section-footer .scroll-to-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #6a5835;
    color: #d2ac67;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 40px;
    cursor: pointer;
}
/******************************************************************************************/
/**************************************** END SECTION - FOOTER ****************************/
/******************************************************************************************/

/******************************************************************************************/
/**************************************** SECTION - FOOTER ********************************/
/******************************************************************************************/
.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    padding: 20px;
    overflow: auto;
}
.popup .overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.6;
    background: #000;
}
.popup .box {
    width: 1000px;
    max-width: 100%;
    position: relative;
    z-index: 1;
    margin: auto;
    background: #2c2b2a;
    padding: 60px;
    color: #fff;
}
.popup .box > * {
    position: relative;
    z-index: 11;
}
.popup .box::before,
.popup .box::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 220px;
    height: 350px;
    max-width: 40%;
    max-height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05;
}
.popup .box::before {
    left: 0;
    background-image: url(../images/pattern-footer-left.svg);
    background-position: bottom left;
}
.popup .box::after {
    right: 0;
    background-image: url(../images/pattern-footer-right.svg);
    background-position: bottom right;
}
.popup .close-btn {
    position: absolute;
    top: -32px;
    right: -32px;
    padding: 12px;
    cursor: pointer;
}
.popup .title {
    font-family: "Belle";
    font-size: 35px;
    margin-bottom: 20px;
    color: #fff;
}
/** Toggle Open **/
.popup {
    opacity: 0;
    pointer-events: none;
    transition: all ease .4s;
}
.popup.open {
    opacity: 1;
    pointer-events: all;
}
.popup .box {
    transition: all ease .4s;
    transform: translateY(20px);
}
.popup.open .box {
    transform: translateY(0px);
}
/******************************************************************************************/
/**************************************** END SECTION - FOOTER ****************************/
/******************************************************************************************/

/******************************************************************************************/
/**************************************** PAGE - BANNER ***********************************/
/******************************************************************************************/
.page-banner {
    height: 450px;
    position: relative;
    width: 100%;
}
.page-banner .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page-banner .title {
    font-family: "Heartbeat";
    font-size: 70px;
    color: #fff;
    text-shadow: 0 0 2px rgba(0,0,0,0.8);
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}
.page-banner .box-tabs {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.page-banner .page-title {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.page-banner .tabs {
    display: flex;
    background: #f7f7f7;
    margin: 0;
    padding: 0 40px;
    list-style: none;
}
.page-banner .tabs .item-link {
    display: block;
    position: relative;
    padding: 8px 20px 12px;
    color: #6a5835;
    transition: all ease .4s;
    font-weight: bold;
}
.page-banner .tabs .item-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-top: 9px solid #b77517;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 0px solid transparent;
    opacity: 0;
    transition: all ease .4s;
}
.page-banner .tabs .item.active .item-link,
.page-banner .tabs .item-link:hover {
    color: #b77517;
}
.page-banner .tabs .item.active .item-link::before,
.page-banner .tabs .item-link:hover::before {
    opacity: 1;
}
.page-banner .dropdown-menu {
    position: static;
    font-size: inherit;
    color: inherit;
    border: none;
    border-radius: 0;
}
.page-banner .dropdown-toggle {
    display: none;
}
/******************************************************************************************/
/**************************************** END PAGE - BANNER *******************************/
/******************************************************************************************/

/******************************************************************************************/
/**************************************** PAGE - TIN TỨC **********************************/
/******************************************************************************************/
.page-blog-content .section-content {
    padding-top: 100px;
    padding-bottom: 20px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.page-blog-content .section-content .title {
    font-size: 36px;
    color: #60481e;
    margin-bottom: 12px;
}
.page-blog-content .section-content .date {
    color: #d08b22;
    margin-bottom: 0;
}
.page-blog-content .section-content .excerpt {
    margin-top: 20px;
    color: #60481e;
}
.page-blog-content .section-content .content {
    margin-top: 20px;
}
.page-blog-content .section-content .share {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.page-blog-content .sfsi_shortcode_container {
    float: none;
    min-height: unset;
    margin-left: 5px;
}
.page-blog-content .divider {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    height: 1px;
    background: #a58549;
    opacity: .3;
}
.blog-pagination-slider .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
.blog-pagination-slider .swiper-pagination-bullet {
    width: 28px;
    height: 28px;
    border-radius: 0;
    color: #333;
    transition: all ease .4s;
    margin-left: 5px;
    margin-right: 5px;
    background: #d2cfcd;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
}
.blog-pagination-slider .swiper-pagination-bullet:hover,
.blog-pagination-slider .swiper-pagination-bullet-active {
    background: #a58549;
    color: #fff;
}
.page-blog-content .related-post {
    padding-top: 32px;
    padding-bottom: 60px;
}
/******************************************************************************************/
/**************************************** END PAGE - TIN TỨC ******************************/
/******************************************************************************************/
@media screen and (max-width: 1699px) {
    body {
        font-size: 13.5px;
    }
    p {
        margin-bottom: 10px;
    }
    /******************************************************************************************/
    /**************************************** GENARAL *****************************************/
    /******************************************************************************************/

    .main-title {
        font-size: 34px;
        margin-bottom: 27px;
        padding-bottom: 21px;
        background-size: 84px;
    }
    .section-right-pattern::before,
    .section-left-pattern::before {
        width: 105px;
    }
    
    /******************************************************************************************/
    /**************************************** END GENARAL *************************************/
    /******************************************************************************************/

    /******************************************************************************************/
    /**************************************** HEADER ******************************************/
    /******************************************************************************************/
    .menu-box {
        height: 56px;
    }

    .menu-box .left-menu-container {
        padding-right: 64px;
    }

    .menu-box .right-menu-container {
        padding-left: 64px;
    }

    .menu-box .menu .item-link {
        padding: 4px 19px;
    }

    .menu-box .menu .item-link::before {
        right: calc(100% - 17px);
    }

    .menu-box .menu .item-link::after {
        left: calc(100% - 17px);
    }

    .menu-box .menu .item-link:hover::before,
    .menu-box .menu .item-link:hover::after,
    .menu-box .menu .item.active .item-link::before,
    .menu-box .menu .item.active .item-link::after {
        width: 15px;
    }

    .menu-thumbs .logo-container {
        width: 125px;
        padding: 9px 18px;
    }

    .header .languages {
        margin: 0 -3px;
    }

    .header .menu-container .languages {
        margin-left: 3px;
    }

    .header .languages .item {
        padding: 0 3px;
    }

    .header .languages .item-link {
        width: 30px;
        height: 30px;
    }

    .header .contact-container  {
        margin-top: 10px;
    }
    
    .header .btn-contact {
        padding: 0px 15px 2px;
        height: 27px;
        border-radius: 75px;
    }
    
    .header .btn-contact.big {
        font-size: 15px;
    }
    
    .header .btn-contact .icon {
        font-size: 18px;
        margin-right: 6px;
    }

    /******************************************************************************************/
    /**************************************** END HEADER **************************************/
    /******************************************************************************************/

    /********** FULL PAGE **************/
    .fullpage-container {
        height: calc(100vh - 56px);
        overflow: hidden;
    }
    .fullpage-container .fullpage-pagination {
        right: 23px;
    }

    .fullpage-container .fullpage-pagination .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
        margin: 12px 0;
    }
    .next-slide-mouse {
        bottom: 23px;
        width: 21px;
    }
    .next-slide-mouse .icon {
        font-size: 18px;
    }
    .next-slide-mouse .icon:nth-of-type(1) {
        margin-bottom: -21px;
    }
    .next-slide-mouse .icon:nth-of-type(2) {
        margin-bottom: -21px;
    }
    .next-slide-mouse .icon:nth-of-type(3) {
        margin-bottom: -3px;
    }
    
    /********** END FULL PAGE **************/

    /******************************************************************************************/
    /**************************************** SECTION - BANNER ********************************/
    /******************************************************************************************/
    .banner-video-container .control {
        width: 90px;
    }
    .banner-video-container .title {
        font-size: 53px;
        top: 75px;
    }
    /******************************************************************************************/
    /**************************************** END SECTION - BANNER ****************************/
    /******************************************************************************************/

    /******************************************************************************************/
    /**************************************** SECTION - OVERVIEW ******************************/
    /******************************************************************************************/
    .section-overview {
        padding: 30px 0;
    }
    .section-overview .section-content {
        margin-left: -36px;
        margin-right: -36px;
    }
    .section-overview .img-container {
        padding-left: 36px;
        padding-right: 36px;
    }
    .section-overview .content {
        padding-left: 36px;
        padding-right: 36px;
    }
    .section-overview .description {
        margin-bottom: 24px;
    }
    .overview-box-container {
        padding: 38px 23px 30px;
    }
    .overview-box {
        margin: -20px -20px;
    }
    .overview-box > .item {
        padding: 20px 20px;
        min-height: 109px;
    }
    /** horizon **/
    .overview-box > .item:nth-of-type(1)::before,
    .overview-box > .item:nth-of-type(2)::before {
        top: 38px
    }
    .overview-box > .item:nth-last-of-type(1)::before,
    .overview-box > .item:nth-last-of-type(2)::before {
        bottom: 39px
    }
    .overview-box > .item .info::before {
        width: 12px;
        height: 34px;
    }
    .overview-box > .item:nth-of-type(1) .info::before,
    .overview-box > .item:nth-of-type(2) .info::before {
        background: url(../images/icons/overview-top.svg);
        top: 5px;
        right: -5px;
    }
    .overview-box > .item:nth-last-of-type(1) .info::before,
    .overview-box > .item:nth-last-of-type(2) .info::before {
        bottom: 6px;
        right: -5px;
    }

    /** Vertical **/
    .overview-box > .item:nth-of-type(2n + 1)::after {
        left: 60px;
    }
    .overview-box > .item:nth-of-type(2n)::after {
        right: 60px;
    }
    .overview-box > .item .info::after {
        width: 34px;
        height: 12px;
    }
    .overview-box > .item:nth-of-type(2n + 1) .info::after {
        bottom: -5px;
        left: 28px;
    }
    .overview-box > .item:nth-of-type(2n) .info::after {
        bottom: -5px;
        right: 28px;
    }

    .overview-box .icon {
        width: 42px;
    }
    .overview-box .info {
        margin-left: 12px;
    }
    .overview-box .info .label {
        margin-bottom: 6px;
    }
    /******************************************************************************************/
    /**************************************** END SECTION - OVERVIEW **************************/
    /******************************************************************************************/

    /******************************************************************************************/
    /**************************************** SECTION - MASTER PLAN ***************************/
    /******************************************************************************************/
    .section-master-plan .info {
        bottom: 30px;
    }
    .section-master-plan .info .content {
        padding: 12px 25px;
    }
    /******************************************************************************************/
    /**************************************** END SECTION - MASTER PLAN ***********************/
    /******************************************************************************************/

    /******************************************************************************************/
    /**************************************** SECTION - UTILITIES *****************************/
    /******************************************************************************************/
    .section-utilities {
        padding-top: 30px;
        padding-bottom: 15px;
    }
    .section-utilities .main-title{
        margin-bottom: 15px;
    }
    .utilities-slider .img {
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .utilities-slider .caption {
        min-height: 69px;
    }
    .utilities-slider .caption .name {
        font-size: 17px;
        margin-bottom: 3px;
    }
    /******************************************************************************************/
    /**************************************** END SECTION - UTILITIES *************************/
    /******************************************************************************************/
    
    /******************************************************************************************/
    /**************************************** SECTION - WHY ***********************************/
    /******************************************************************************************/
    .why-list .item .number {
        font-size: 38px;
    }
    .why-list .item .title {
        font-size: 15px;
    }
    .why-list .item .description {
        font-size: 12px;
    }
    /******************************************************************************************/
    /**************************************** END SECTION - WHY *******************************/
    /******************************************************************************************/

    /******************************************************************************************/
    /**************************************** SECTION - BLOG **********************************/
    /******************************************************************************************/
    .section-blog {
        padding-top: 60px;
        padding-bottom: 45px;
    }
    .section-blog .swiper-pagination {
        margin-top: 15px;
    }
    .section-blog .swiper-pagination .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
    }
    .item-blog-full .box {
        padding: 15px 21px;
    }
    .item-blog-full .title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    .item-blog .img-container {
        margin-bottom: 12px;
    }
    .item-blog .title {
        font-size: 15px;
        margin-bottom: 9px;
    }
    /******************************************************************************************/
    /**************************************** END SECTION - BLOG ******************************/
    /******************************************************************************************/

    /******************************************************************************************/
    /**************************************** SECTION - PROGRESS ******************************/
    /******************************************************************************************/
    .section-video-progress {
        padding: 60px 0 30px;
    }
    .section-video-progress .progress-video-container  {
        margin-top: 30px;
    }
    .progress-video-container .control {
        width: 66px;
    }
    /******************************************************************************************/
    /**************************************** END SECTION - PROGRESS **************************/
    /******************************************************************************************/

    /******************************************************************************************/
    /**************************************** SECTION - FOOTER ********************************/
    /******************************************************************************************/
    .section-footer .partner {
        padding: 75px 0 30px;
    }
    .section-footer .partner-list .item {
        padding: 0 30px;
    }
    .section-footer .partner-list .item .title {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .section-footer .footer-box {
        padding: 53px 0 0 0;
    }
    .section-footer .footer-box .title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .section-footer .footer-box .socials {
        margin: 30px -6px 0;
    }
    .section-footer .footer-box .socials .item {
        padding: 0 6px;
    }
    .section-footer .footer-box .socials .item-link {
        width: 26px;
        height: 26px;
    }
    .section-footer .footer-box .bct {
        margin-top: 24px;
        width: 120px;
    }
    .default-form .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    .default-form [class*=col-] {
        padding-left: 10px;
        padding-right: 10px;
    }
    .default-form .group-input {
        margin-bottom: 9px;
    }
    .default-form .group-input .captcha {
        right: 9px;
        top: 6px;
        height: 23px;
    }
    .default-form .group-input .input {
        border-radius: 15px;
        padding: 5px 15px;
    }
    .default-form .submit-btn {
        padding: 5px 15px;
        border-radius: 15px;
    }
    .section-footer .copyright {
        padding: 30px 0 15px;
    }
    .section-footer .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 30px;
    }
    .section-footer .partner::before,
    .section-footer .partner::after {
        bottom: 0;
        width: 165px;
        height: 263px;
    }
    /******************************************************************************************/
    /**************************************** END SECTION - FOOTER ****************************/
    /******************************************************************************************/

    /******************************************************************************************/
    /**************************************** SECTION - POPUP *********************************/
    /******************************************************************************************/
    .popup {
        padding: 20px;
    }
    .popup .box {
        width: 750px;
        padding: 45px;
    }
    .popup .close-btn {
        top: -24px;
        right: -24px;
        padding: 9px;
    }
    .popup .title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .popup .box::before,
    .popup .box::after {
        width: 165px;
        height: 263px;
    }
    /******************************************************************************************/
    /**************************************** END SECTION - POPUP *****************************/
    /******************************************************************************************/

    /******************************************************************************************/
    /**************************************** PAGE - BANNER ***********************************/
    /******************************************************************************************/
    .page-banner {
        height: 378px;
    }
    .page-banner .title {
        font-size: 53px;
        top: 75px;
    }
    .page-banner .page-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .page-banner .tabs {
        padding: 0 30px;
    }
    .page-banner .tabs .item-link {
        padding: 6px 15px 9px;
    }
    .page-banner .tabs .item-link::before {
        border-top: 7px solid #b77517;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 0px solid transparent;
    }
    /******************************************************************************************/
    /**************************************** END PAGE - BANNER *******************************/
    /******************************************************************************************/

    /******************************************************************************************/
    /**************************************** PAGE - TIN TỨC **********************************/
    /******************************************************************************************/
    .page-blog-content .section-content {
        padding-top: 75px;
        padding-bottom: 15px;
    }
    .page-blog-content .section-content .title {
        font-size: 27px;
        margin-bottom: 9px;
    }
    .page-blog-content .section-content .excerpt {
        margin-top: 15px;
    }
    .page-blog-content .section-content .content {
        margin-top: 15px;
    }
    .page-blog-content .divider {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .blog-pagination-slider .swiper-pagination {
        margin-top: 24px;
    }
    .blog-pagination-slider .swiper-pagination-bullet {
        width: 21px;
        height: 21px;
        margin-left: 4px;
        margin-right: 4px;
    }
    .page-blog-content .related-post {
        padding-top: 24px;
        padding-bottom: 45px;
    }
    /******************************************************************************************/
    /**************************************** END PAGE - TIN TỨC ******************************/
    /******************************************************************************************/
}

@media screen and (max-width: 1199px) {
    .container-left {
        margin-left: calc(100vw / 2 - 960px / 2);
    }
    .container-right {
        margin-right: calc(100vw / 2 - 960px / 2);
    }
    .main-title {
        font-size: 30px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .menu-thumbs {
        pointer-events: all;
        position: relative;
        background: #bc9a5c;
        background-image: url(../images/pattern-menu-left.svg), url(../images/pattern-menu-right.svg);
        background-repeat: no-repeat;
        background-position: top left, top right;
        background-size: auto 100%;
    }

    .menu-thumbs .content {
        height: 56px;
        position: relative;
    }

    .menu-thumbs .logo-container {
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 110px;
    }

    .menu-thumbs .mobile-thumb {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .menu-thumbs .mobile-thumb .languages {
        margin-right: 16px;
    }

    .menu-thumbs .mobile-thumb .btn-menu-container {
        display: flex;
        align-items: center;
        color: #fff
    }

    .menu-thumbs .mobile-thumb .btn-menu {
        position: relative;
        width: 25px;
        height: 16px;
        margin-left: 4px;
    }

    .menu-thumbs .mobile-thumb .btn-menu > span {
        content: "";
        position: absolute;
        right: 0;
        height: 2px;
        width: 100%;
        background: #fff;
    }

    .menu-thumbs .mobile-thumb .btn-menu > span:nth-of-type(1) {
        top: 0;
        width: 60%;
    }

    .menu-thumbs .mobile-thumb .btn-menu > span:nth-of-type(2) {
        top: 50%;
        top: calc(50% - 1px);
        width: 80%;
    }

    .menu-thumbs .mobile-thumb .btn-menu > span:nth-of-type(3) {
        bottom: 0;
        width: 100%;
    }

    .header .menu-container .languages {
        display: none;
    }

    .menu-box-container {
        position: fixed;
        background: transparent;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 110;
    }

    .menu-box-container .container {
        padding: 0;
        margin: 0;
        max-width: unset;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .menu-box-container .overlay {
        background: rgba(0,0,0,0.8);
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
    }

    .menu-box {
        position: absolute;
        z-index: 110;
        top: 0;
        right: 0;
        bottom: 0;
        display: block;
        height: 100%;
        width: 320px;
        padding: 30px 0;
        max-width: 100%;
        background: #bc9a5c;
        overflow: auto;
        background-image: url(../images/pattern-menu-mobile.svg);
        background-position: bottom right;
        background-repeat: no-repeat;
        background-size: 90%;
    }

    .menu-box .main-title {
        display: block;
    }

    .menu-box .menu-container {
        padding: 0;
        display: block;
    }
    .menu-box .menu {
        flex-direction: column;
    }
    .menu-box .btn-close-menu {
        position: absolute;
        left: 0;
        top: 0;
        width: 30px;
        height: 30px;
        background: rgba(255,255,255,.5);
        z-index: 100;
    }
    .menu-box .btn-close-menu > span {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        height: 2px;
        width: 20px;
        background: #333;
    }
    .menu-box .btn-close-menu > span:nth-of-type(1) {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .menu-box .btn-close-menu > span:nth-of-type(2) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .menu-box .menu .item-link {
        padding: 8px 20px;
    }
    .menu-box .menu .item.active .item-link::after {
        display: none;
    }
    .menu-box .menu .item .item-link::before {
        width: 0;
        left: 20px;
        right: auto;
    }
    .menu-box .menu .item.active .item-link::before {
        width: 30px;
    }
    .menu-box .menu .item.active .item-link {
        padding-left: 55px;
    }

    .menu-box-container {
        opacity: 0;
        pointer-events: none;
        transition: all ease .4s;
    }

    .menu-box-container.open {
        opacity: 1;
        pointer-events: all;
    }

    .menu-box-container .menu-box {
        pointer-events: none;
    }

    .menu-box-container.open .menu-box {
        pointer-events: all;
    }

    .menu-box-container .menu-box {
        transform: translateX(100%);
        transition: all ease .4s;
    }

    .menu-box-container.open .menu-box {
        transform: translateX(0);
    }
    .banner-video-container .title {
        font-size: 45px;
        top: 70px;
    }
    .banner-video-container .control {
        width: 70px;
    }

    .section-overview .section-content {
        margin-left: -20px; 
        margin-right: -20px; 
    }
    .section-overview .img-container,
    .section-overview .content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .section-overview .img-container {
        width: 50%;
    }
    .section-overview .content {
        width: 50%;
    }
    .section-overview .description {
        margin-bottom: 20px;
    }
    .section-location .section-content {
        margin-left: -15px;
        margin-right: -15px;
    }
    .section-location .content {
        width: 35%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .section-location .img-container {
        width: 65%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .section-master-plan .info .content {
        width: 35%;
        bottom: 20px;
    }
    .why-list .item .description {
        -webkit-line-clamp: 4;
    }
    .why-list .item .number {
        font-size: 32px;
    }
    .section-video-progress .progress-video-container {
        width: 100%;
    }
    .section-footer .partner-list {
        width: 42%;
    }
    .page-banner .title {
        font-size: 45px;
        top: 70px;
    }
    .page-banner .page-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .page-blog-content .section-content {
        padding-top: 50px;
    }
    .page-blog-content .section-content .title {
        font-size: 24px;
    }
    .page-blog-content .section-content {
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .container-left {
        margin-left: calc(100vw / 2 - 720px / 2);
    }
    .container-right {
        margin-right: calc(100vw / 2 - 720px / 2);
    }
    .fullpage-container {
        height: auto;
    }

    .fullpage-wrapper {
        display: block;
    }

    .fullpage-wrapper>.swiper-slide {
        height: auto;
    }
    .section-overview .content {
        width: 100%;
        order: 1;
    }
    .section-overview .img-container {
        width: 100%;
        order: 2;
    }
    .section-overview {
        padding: 50px 0;
    }
    .section-location {
        padding: 50px 0;
    }
    .section-location .content {
        width: 100%;
        margin-bottom: 20px;
    }
    .section-location .img-container {
        width: 100%;
    }
    .section-master-plan {
        display: flex;
        flex-direction: column;
    }
    .section-master-plan .info {
        position: static;
        order: -1;
    }
    .section-master-plan .container{
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .section-master-plan .info .content {
        width: 100%;
    }
    .section-utilities .utilities-slider {
        height: 50vw;;
    }
    .why-list-container .img-container {
        display: none;
    }
    .why-list-container .main-title {
        transform: none;
        position: static;
        text-align: left;
        background-position-x: left;
        color: white;
        background-image: url(../images/pattern-title-white.svg);
        margin-bottom: 50px;
    }
    .why-list {
        height: auto;
    }
    .why-list .item {
        padding-left: 50px;
        margin-bottom: 20px;
        position: relative;
    }
    .why-list .item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #fff;
        box-shadow: inset 5px 0 5px rgba(0,0,0,.1);
    }
    .why-list .item::after {
        content: "";
        position: absolute;
        left: 10px;
        top: 10px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: #fff;
        box-shadow: inset -10px 0 10px rgba(0,0,0,.05), -5px 0 5px 2px rgba(0,0,0,.05);
    }
    .why-list .item .title,
    .why-list .item .description {
        position: static;
        transform: none;
    }
    .why-list .item .number {
        top: 50px !important;
        left: 46px !important;
        z-index: 1;
    }
    .why-list .item .title {
        width: 80%;
        height: 26px;
        background: linear-gradient(to right, #f2b653, #b77517);
        border-radius: 0 12px 12px 0;
        padding-left: 50px;
        display: flex;
        align-items: center;
        margin: 0;
    }
    .why-list .item .description {
        width: 100%;
        height: 74px;
        background: rgba(255,255,255,.9);
        border-radius: 0 45px 45px 0;
        padding: 5px 20px 5px 60px;
        display: flex;
        align-items: center;
        text-align: left !important;
    }
    .section-footer .partner-list {
        width: 60%;
    }
    .page-blog-content .section-content .title {
        font-size: 21px;
    }
}

@media screen and (max-width: 767px) {
    .container-left {
        margin-left: calc(100vw / 2 - 540px / 2);
    }
    .container-right {
        margin-right: calc(100vw / 2 - 540px / 2);
    }
    .banner-video-container .control {
        width: 60px;
    }
    .banner-video-container {
        height: 500px;
    }
    .section-utilities .utilities-slider {
        margin-left: -80%;
        margin-right: -80%;
        height: 60vw;
    }
    .utilities-slider .caption .name {
        font-size: 14px;
    }
    .section-footer .partner-list {
        width: 80%;
    }
    .section-footer .partner {
        padding: 50px 0 30px
    }
    .page-blog-content .section-content .title {
        font-size: 18px;
    }
}

@media screen and (max-width: 575px) {
    .container-left {
        margin-left: 0;
    }
    .container-right {
        margin-right: 0;
    }
    .menu-thumbs .content {
        height: 50px;
    }
    .menu-thumbs .logo-container {
        width: 100px;
    }
    .header .btn-contact .icon {
        margin-right: 0;
        font-size: 16px;
    }
    .header .btn-contact > span {
        display: none;
    }
    .header .btn-contact {
        width: 30px;
        height: 30px;
        padding: 0;
    }
    .banner-video-container .title {
        font-size: 34px;
        top: 60px;
    }
    .overview-box {
        margin: -20px;
    }
    .overview-box > .item {
        padding: 20px;
        min-height: 130px;
        flex-direction: column;
        text-align: center;
    }
    .overview-box .icon {
        margin: 0 auto 10px auto;
    }
    .overview-box .info {
        margin-left: 0;
        width: 100%;
    }
    .section-utilities .utilities-slider {
        height: 70vw;
    }
    .why-list .item {
        padding-left: 25px;
    }
    .why-list .item::before {
        width: 46px;
        height: 46px;
    }
    .why-list .item::after {
        width: 36px;
        height: 36px;
        top: 5px;
        left: 5px;
    }
    .why-list .item .number {
        top: 23px !important;
        left: 21px !important;
        font-size: 20px;
    }
    .why-list .item .title {
        padding-left: 25px;
    }
    .why-list .item .description {
        border-bottom-left-radius: 40px;
        padding-left: 25px;
    }
    .section-footer .partner-list {
        width: 100%;
    }
    .section-footer .partner-list .item {
        padding: 0 15px
    }
    .popup .box {
        padding: 30px 20px;
    }
    .page-banner .title {
        font-size: 34px;
        top: 60px;
    }
    .page-banner .dropdown-menu {
        position: absolute;
        font-size: inherit;
        color: inherit;
        border: none;
        border-radius: 0;
    }
    .page-banner .dropdown-toggle {
        display: block;
        width: 100%;
        border-radius: 0;
        font-size: inherit;
        color: inherit;
        background: #f0f0f0;
        border: none;
        padding: 6px 20px;
    }
    .page-banner .dropdown-menu {
        display: none;
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }
    .page-banner .dropdown-menu.show {
        display: block
    }
    .page-banner .tabs .item-link::before {
        display: none;
    }
    .page-banner .tabs .item-link {
        padding: 8px 15px;
    }
    .item-blog .title {
        font-size: 14px;
    }
}