html, body {
    font-family: 'Montserrat';
}

@media (min-width: 1024px){
    html.home ,
    body.home{
        /*overscroll-behavior: none;*/
        /*overflow-x: hidden;*/
        
        overscroll-behavior: none;
        overflow: hidden;
    }
    
    html.home{
        overflow-y: auto;
    }
}

.row-align-center > .container > .row,
.row-align-center > .row {
    align-items: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999 !important;
    padding: 1.5rem 3.5%;
}
body:not(.home) header {
    background: var(--color-highlight);
}

body.home:not(.is-mobile) {
    background-color: transparent;
}

body.home .page-section.padding {
    padding: 0 3.5%;
}

body.is-loading {
    overflow: hidden;
}
body .preloader {
    opacity: 0;
    z-index: -1;
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
}
body:not(.is-loading) .preloader {
    transition: all 2s;
}
body.is-loading .preloader {
    z-index: 999999;
    opacity: 1;
}

.preloader .background-loading {
    width: 100%;
    height: 100vh;
}
.is-loading.show .preloader .background-loading {
    transition: 5s;
    transform: scale(1.2);
}

.preloader .logo-animate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    width: 30%;
    height: 30%;
}
.logo-animate {
    position: relative;
}
.logo-base {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    -webkit-mask-image: url(/templates/batdongsan01/assets/media/logo/logo_gradient.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url(/templates/batdongsan01/assets/media/logo/logo_gradient.png);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}
.logo-animate .logo-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.9) 50%, transparent 65%);
    background-size: 200% 100%;
    animation: shine 3s linear infinite;
     -webkit-mask-image: url(/templates/batdongsan01/assets/media/logo/logo_gradient.png); 
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
     mask-image: url(/templates/batdongsan01/assets/media/logo/logo_gradient.png); 
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mix-blend-mode: overlay;
}

@keyframes shine {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.fs-16 {
    font-size: 1.6rem;
}
.img-filter {
    filter: brightness(0) invert(1);
}
.font-weight-600 {
    font-weight: 600;
}

.btn-register {
    border: 1px solid #fff;
    border-radius: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: .8rem 2rem;
    margin-right: 1rem;
    color: var(--white);
    font-size: 15px;
    cursor: pointer;
}
.btn-register:hover {
    color: var(--white);
}

.menu-section {
    position: fixed;
    width: 0;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100vh;
    z-index: 1100;
    background-color: #1b473e94;
    overflow: auto;
    opacity: 0;
    z-index: -1;
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
    /*display: none;*/
}
.menu-section.open {
    opacity: 1;
    z-index: 1100;
    width: 25%;
    /*display: block;*/
}
.menu-section.open > ul {
    transform: translate(-50%, -50%);
    top: 50%;
}

/*block lien he*/
.title-form {
    font-size: 150%;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    background: -webkit-linear-gradient(left, #efcae2, #dfefef, #c9c4e3, #dfefef, #c9c4e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    padding-top: 5px;
    margin-bottom: 20px;
    /*font-family: 'Blacker Sans Text';*/
}
/*block lien he*/

.page-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*background-position: 100% 100%;*/
    overflow: hidden;
    /*scroll-snap-align: start;*/
    /*scroll-snap-stop: always;*/
    background-size: 100% 100%;
}
.page-section.gradient {
    background-image: linear-gradient(90deg, #34574e, #34574e, #0f4c32);
}

.wrap-form {
    border-radius: 2rem;
    padding: 2rem 4rem;
    background-color: var(--white);
}
.wrap-form .title {
    text-align: center;
    line-height: 1.3;
    font-size: 130%;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-highlight);
}
.wrap-form .btn-submit {
    background: -webkit-linear-gradient(left, #eacda1, #cdac7a);
    text-shadow: none !important;
    text-transform: uppercase;
    letter-spacing: 0;
    border-radius: 20em;
    border: 0;
}
.infomation .cdt {
    font-size: 130%;
    margin-bottom: 1.5rem;
}
.infomation .cdt .name{
    font-size: 200%;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}
.infomation ul {
    margin-bottom: 2rem;
    font-size: 1.6rem;
}
.infomation ul li {
    margin-bottom: 1rem;
    display: flex;
}
.infomation ul li i{
    width: 6rem;
}
.infomation ul li span {
    flex: 1;
}
.border-top-light {
    border-top: 1px #ffffff57 solid;
}
/*end chan trang*/

/*trang chu*/
.img-fullscreen {
    width: 100%;
    height: 100vh;
}

.btn-video {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 7rem;
    height: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.banner-video .icon {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(90deg, #fad6a7, #b08e54);
    color: #fff;
    font-size: 3rem;
}

.is-loading .banner-video .icon {
    display: none;
}

/* Hiá»‡u á»©ng Wave chung */
.wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

/* Wave 1: Nhá»‹p nhanh hÆ¡n, tá»a rá»™ng vá»«a */
.wave-big {
    animation: wave-animation 1.2s ease-out infinite;
}

/* Wave 2: Nhá»‹p cháº­m hÆ¡n, tá»a rá»™ng hÆ¡n */
.wave-small {
    animation: wave-animation 1.2s ease-out infinite .6s;
}

/* Keyframes táº¡o hiá»‡u á»©ng lan tá»a vÃ  má» dáº§n */
@keyframes wave-animation {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4; /* Giá»¯ Ä‘á»™ rÃµ lÃ¢u hÆ¡n á»Ÿ giá»¯a quÃ¡ trÃ¬nh */
    }
    100% {
        transform: scale(3); /* Tá»a rá»™ng ra */
        opacity: 0;   /* Biáº¿n máº¥t hoÃ n toÃ n khi Ä‘áº¡t cá»±c Ä‘áº¡i */
    }
}


.about-info {
    position: absolute;
    top: 35%;
    left: 6%;
    max-width: 88%;
    color: var(--white);
    text-align: center;
    font-size: 140%;
}    
.about-info .logo {
    width: 100%;
    height: 100px;
    max-width: 250px;
    margin: 0 auto 2rem;
}

.section-dashboard {
    position: relative;
}
.section-dashboard:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #011511;
    z-index: -1;
}
.dashboard {
    position: absolute;
    bottom: 5%;
    right: 5%;
    left: 5%;
    z-index: 1;
    width: 90%;
    font-weight: 700;
    font-size: 120%;
    background: rgb(49 86 76 / 85%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0px 30px rgba(255, 255, 255, .75);
}
.dashboard .title-block {
    font-weight: 700;
    margin-bottom: 2rem;
    color: #eacca1 !important;
}
.dashboard .project {
    display: grid;
    grid-template-columns: repeat(5, max-content);
    gap: 20px;
    justify-content: space-between;
}
.dashboard .project .item-info .name {
    color: #eacca1 !important;
}
.dashboard .project .item-info:first-child .value {
    line-height: 1;
}
.dashboard .project .item-info .value {
    font-size: 2rem;
    font-weight: 600;
}
.dashboard .project .number {
    font-size: 200%;
}
.dashboard .infomation .item-info {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
    padding: 1rem 0;
    border-top: 1px solid var(--color-text-highlight);
}



.position-info {
    color: var(--white);
}
.position-info .desc {
    text-align: justify;
    margin-bottom: 2rem;
}
.text-gradient {
    background: -webkit-linear-gradient(left, #eacda1, #cdac7a, #eacda1, #e2c99d, #ad9059);
    background: linear-gradient(left, #eacda1, #cdac7a, #eacda1, #e2c99d, #ad9059);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.title-block {
    font-size: 250%;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 3rem;
    display: block;
    width: 100%;
    /*font-family: 'Blacker Sans Text';*/
}
.title-block .text-small {
    font-size: 1.5rem;
    /*width: 45%;*/
    margin: auto;
    text-transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*font-family: 'Barlow';*/
}
.title-block .text-small .text-left {
    transform: translateX(-2rem);
}
.title-block .text-small .text-right {
    transform: translateX(5rem);
}

.position-info .card ul {
    padding-left: 2.5rem;
    list-style: none;
    margin-bottom: 1rem !important;
}
.position-info .card ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}
.position-info .card ul li:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1.5rem;
    transform: translateY(-50%);
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    background-color: var(--white);
}
.position-info .card .btn-collapsed {
    text-align: left;
    font-weight: 600;
    background-color: #a98d58;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 2px;
    color: var(--white);
}
.position-info .card .btn-collapsed:not(.collapsed) .fa-solid:before {
    content: "\f107";
}
.position-info .card .card-body {
    background-color: #00000021;
    padding: 5px 10px;
}

.zoom-image {
    overflow: hidden;
}
.zoom-action {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.zoom-action > a {
    display: block;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.5);
    color: #333;
    text-align: center;
    line-height: 36px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 20;
}

.session-library {
    background-position: inherit;
}
.session-library .img-left {
    width: 85%;
    /*max-width: 400px;*/
    margin: auto;
    text-align: center;
}
.session-library .item-library .name {
    font-size: 160%;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-text-highlight);
    margin-bottom: 1rem;
    /*font-family: 'Blacker Sans Text';*/
}
.session-library .item-library img {
    border-radius: 0 6em;
}
.item-library .number {
    text-align: right;
    color: #fff;
    font-size: 160%;
    line-height: 1.4;
    position: relative;
    margin: 1rem 0;
}
.item-library .number::before {
    content: ' ';
    position: absolute;
    width: calc(100% - 130px);
    height: 1px;
    background: #fff;
    top: 20px;
    left: 90px;
}
.session-library .swiper-navigation {
    position: absolute;
    bottom: 3px;
}



.creative {
    position: relative;
}
.creative .title-slide {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    margin-bottom: 2rem;
}
.creative .btn-arrow {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--color-highlight);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-side {
    opacity: 0;
    transition: 1s;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.creative .big-img {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-position: bottom center;
}

.content-side.active .big-content {
    position: relative;
    width: calc(100% + 30px);
    height: 100vh;
    left: -15px;;
}
.content-side.active .big-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(0deg, #1d573e, transparent);
}
.content-side .big-content .hero-content {
    position: absolute;
    bottom: 3rem;
    left: 5%;
    z-index: 1;
    width: 40%;
}
.hero-heading {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 20px 24px;
    width: fit-content;
}

/* line trÃ¡i */
.hero-line {
    width: 1px;
    height: 120px;
    background: rgba(255,255,255,.25);
    margin-top: 4px;
}

/* title */
.hero-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 1px;
}

/* dáº¥u & */
.ampersand {
    font-size: 350%;
    color: rgba(255,255,255,.95);
    line-height: 1;
    transform: translateY(4px);
    font-weight: 400;
}

/* text chÃ­nh */
.title-text {
    font-size: 250%;
    font-weight: 500;
    background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(228,241,255,.92) 45%, rgba(173,218,255,.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1.4;
}

/* subtitle */
.hero-subtitle {
    margin-top: 18px;
    font-size: 20px;
    padding-left: 6rem;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
}

.content-side .desc {
    color: var(--white);
    margin-top: 2rem;
}
.content-side:not(.active) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 1s;
    opacity: 0;
    z-index: -1;
    /*transform: translateX(100%);*/
}
.content-side.side-1 .wrap-content {
    transition: 1s;
    transform: translateX(-200%);
    z-index: 1;
    padding: 0;
}
.content-side.side-2 .wrap-content {
    transition: 1s;
    transform: translateX(200%);
    padding: 0;
}

.content-side.side-2.active .wrap-content {
    transform: translateX(0%);
}
.content-side.active {
    opacity: 1;
    transform: none;
}
.content-side.active .wrap-content {
    transform: translateX(0%);
}
.content-side .content {
    position: relative;
    height: 100vh;
}
.content-side .content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(132deg, #3a6552, #0e4d32);
    opacity: 0.9;
}
.content-side .content .info {
    position: absolute;
    z-index: 2;
    width: 70%;
    left: 4rem;
    bottom: 60px;  
    top: 50%;
    transform: translateY(-50%);
}
.img-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.session-experience .swiper-slide {
    height: 100vh;
}
.session-experience .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #2c397d9e, transparent);
    z-index: 1;
}

.session-experience .ratio-16-9 {
    width: 100%;
    height: 100vh;
}
.session-experience .content {
    position: absolute;
    bottom: 12%;
    left: 3%;
    width: 95%;
    z-index: 6;
    color: var(--white);
}
.session-experience .content .name {
    text-transform: uppercase;
    font-size: 160%;
    font-weight: 600;
    margin-bottom: 1rem;
}
.session-experience .content .name span {
    font-size: 80%;
    display: block;
}
    
.session-experience .text-fixed {
    position: absolute;
    /*top: 50%;*/
    left: 3%;
    /*transform: translateY(-50%);*/
    z-index: 2;
    font-size: 150%;
    width: 40%;
    line-height: 1.2;
    font-weight: 500;
    color: var(--white);
    font-style: italic;
}

.session-experience .text-fixed .big-text {
    font-size: 250%;
    font-weight: 600;
    background: linear-gradient(90deg, #d8b6ff 0%, #f8e7a8 25%, #9fe8ff 55%, #9fd4ff 75%, #f0cfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}
.session-experience .text-fixed .bottom-right {
    text-align: right;
}

.session-experience .swiper-navigation {
    position: absolute;
    bottom: 22%;
    left: 3%;
    z-index: 1;
}

.section-news {
    padding: 0 10% !important;
}
.section-news .article-item {
    margin-bottom: 1.5rem;
}
.section-news .inner-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1.5rem;
}
.section-news .inner-content .post-date{
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid var(--color-highlight);
    padding: 5px 10px;
    font-weight: 600;
}
.small-article .post-date .day{
    font-size: 120% !important;
}
.section-news .inner-content .post-date .day{
    font-size: 160%;
}
.section-news .inner-content .post-date span {
    margin: 0;
    font-weight: 600;
}
.swiper-navigation-center {
    width: calc(100% + 8rem);
    padding: 0 4rem;
}
.swiper-navigation-center .swiper-button-prev, 
.swiper-navigation-center .swiper-button-next{
     position: absolute; 
     top: 50%; 
     transform: translateY(-50%);
}
.swiper-navigation-center .swiper-button-prev {
    left: 0;
}
.swiper-navigation-center .swiper-button-next {
    right: -10px;
}


.section-amenities .background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 26%;
    height: 100%;
    z-index: 0;
    object-position: bottom;
    display: none;
}

.title-amenities {
    font-weight: 500;
    font-size: 300%;
    line-height: 1;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-family: 'Blacker Sans Text';
}
.title-amenities .number {
    font-size: 250%;
    margin-right: 1rem;
    /*font-family: 'Blacker Sans Text';*/
}
.title-amenities .main-info {
    white-space: nowrap;
}
.title-amenities .text-main {
    font-size: 120%;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}
.title-amenities .text-small {
    line-height: 1.2;
    font-size: 68%;
    font-weight: 600;
}
.is-mobile .list-amenities {
    columns: 2;
}
.list-amenities li {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
}
.list-amenities li .stt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 13px;
    line-height: 1;
    border-radius: 50%;
    background-color: #D6E2E9;
    margin-right: 1rem;
    color: #333;
    font-weight: 600;
}
.list-amenities li .name {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    flex: 1;
}

.position-amenities li {
    position: absolute;
    z-index: 1;
    text-align: center;
    border-radius: 20em;
    color: var(--white);
    font-weight: 500;
    font-size: 11px;
    cursor: pointer;
}
.position-amenities li .stt {
    width: 20px;
    height: 20px;
    display: block;
    line-height: 20px;
    border-radius: 50%;
    background-color: var(--color-highlight);
}
.position-amenities li .name {
    position: absolute;
    z-index: -1;
    white-space: nowrap;
    top: -40px;
    background-color: var(--color-highlight);
    padding: 5px 10px;
    border-radius: 10px;
    border: 2px solid #fff;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .2s;
}
.position-amenities li .name span {
    position: relative;
}
.position-amenities li .wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    display: block;
    background: #ffffffb0;
    z-index: -1;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: examplex;
    border-radius: 20em;
}
.position-amenities li:hover .name {
    opacity: 1;
    z-index: 3;
}
.position-amenities li:hover .name span{
    opacity: 1;
    z-index: 3;
}

@keyframes examplex {
    0%{transform:scale(1)}
    25%{transform:scale(1.5)}
    50%{transform:scale(1)}
    75%{transform:scale(1.5)}
    100%{transform:scale(1)}
}

.amenities-1 {
    top: 17%;
    right: 4.5%;
}
.amenities-2 {
    top: 38%;
    left: 48%;
}
.amenities-3 {
    top: 41%;
    left: 34.7%;
}
.amenities-4 {
    top: 42.3%;
    left: 27%;
}
.amenities-5 {
    top: 25%;
    left: 24.8%;
}
.amenities-6 {
    top: 44%;
    left: 21.3%;
}
.amenities-6-1 {
    top: 24%;
    left: 91.7%;
}
.amenities-7 {
    top: 51%;
    left: 13.8%;
}
.amenities-8 {
    top: 63%;
    left: 24.5%;
}
.amenities-8-1 {
    top: 61%;
    left: 34%;
}
.amenities-9 {
    top: 19.5%;
    left: 39%;
}
.amenities-9-1 {
    top: 35.5%;
    left: 39.5%;
}
.amenities-9-2 {
    top: 56.5%;
    left: 40.8%;
}
.amenities-9-3 {
    top: 73%;
    left: 41.5%;
}
.amenities-10 {
    top: 12%;
    right: 7.2%;
}
.amenities-11 {
    top: 33.5%;
    right: 32.5%;
}
.amenities-12 {
    top: 13%;
    left: 32.5%;
}
.amenities-12-1 {
    top: 71.5%;
    left: 47%;
}
.amenities-12-2 {
    top: 64.5%;
    left: 65.8%;
}
.amenities-13 {
    top: 59%;
    right: 29.5%;
}
.amenities-14 {
    top: 8%;
    right: 40.5%;
}
.amenities-15 {
    bottom: 24.5%;
    right: 28.7%;
}
.amenities-16 {
    top: 35.5%;
    right: 41%;
}




.big-article {
    padding: 1.5rem;
    background-color: var(--white);
}
.big-article .article-description {
     display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
 }
.section-news a {
    font-weight: 600;
    font-size: 16px;
}
.small-article * {
    color: var(--white) !important;
}
.small-article .article-title {
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.small-article .post-date {
    padding: 0 5px !important;
    border: 1px solid var(--white) !important;
}
.small-article .ratio-16-9 {
    padding-top: 52%;
}

.team {
    background: #fff;
    border-radius: 12em 0;
    padding: 50px 11%;
    text-align: center;
}
.team .lead {
    margin-bottom: 5rem;
}
.team .name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 1rem;
    color: #2c397d;
}
.item-member {
    margin-bottom: 1.5rem;
}
.item-member img {
    height: 13rem;
    object-fit: contain;
}
.is-mobile .item-member img {
    height: 8rem;
}


.session-floor .list-floor-plan {
    position: relative;
    /* padding: 3rem; */
}
.session-floor .item-floor {
    position: absolute;
    cursor: pointer;
    color: transparent;
    opacity: .75;
    transition: .3s;
    background: transparent !important;
}

/*.area-114-8:hover,*/
/*.area-115-3:hover,*/
/*.area-115-5:hover,*/
/*.area-118-9:hover,*/
/*.area-120:hover,*/
/*.area-192-7:hover,*/
/*.area-216-3:hover,*/
.session-floor .item-floor:hover,
.session-floor .item-floor.active {
    background: rgba(255, 255, 255, .75) !important;
    /*border: 1px solid #0f4d32;*/
    color: transparent;
}

.is-mobile .session-floor .img-left {
    max-width: 60%;
    margin-bottom: 3rem;
}
.area-114 {
    top: 74.85%;
    left: 23.9%;
    width: .85%;
    height: 4.24%;
    clip-path: polygon(0 0, 40% 0, 100% 20%, 100% 100%, 0 100%);
}
.area-114-5 {
    top: 30.9%;
    left: 26.7%;
    width: .9%;
    height: 4.3%;
    clip-path: polygon(0% 80%, 0% 0%, 100% 0%, 100% 100%, 70% 100%);
}
.area-114-8 {
    top: 30.9%;
    left: 42.8%;
    width: .9%;
    height: 4.3%;
    background: #00b050;
    opacity: .5;
    clip-path: polygon(
        0% 0%,
        100% 0%,
        100% 75%,
        48% 100%,
        0% 100%
    );
}
.area-115-3 {
    top: 41.5%;
    left: 45.6%;
    width: 0.905%;
    height: 4.4%;
    background: #7030a0;
    clip-path: polygon(0 22%, 50% 0, 100% 0, 100% 100%, 0 100%);
}
.area-115-5 {
    top: 30.9%;
    left: 27.6%;
    width: 15.05%;
    height: 4.3%;
    background: #98d35a;
}
.area-115-5.floor-number-2 {
    top: 30.9%;
    left: 46.9%;
    width: 24.25%;
    height: 4.3%;
    background: #98d35a;
}

.area-117-75 {
    top: 74.85%;
    left: 6.05%;
    width: 17.8%;
    height: 4.24%;
}

.area-118-9 {
    top: 30.9%;
    left: 71.16%;
    width: 1%;
    height: 4.3%;
    background: #4472c4;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 40% 100%, 0% 100%);
}


.area-119-3 {
    top: 41.5%;
    left: 26.7%;
    width: .9%;
    height: 4.4%;
    clip-path: polygon(0 20%, 60% 0, 100% 0, 100% 100%, 0 100%);
}

.area-119-6 {
    top: 41.5%;
    left: 42.77%;
    width: .9%;
    height: 4.4%;
    clip-path: polygon(0 0, 30% 0, 100% 20%, 100% 100%, 0 100%);
}

.area-120.floor-number-1 {
    top: 30.8%;
    left: 6.1%;
    width: 17.05%;
    height: 4.4%;
    background: #ffca29;
}
.area-120.floor-number-2 {
    top: 41.5%;
    left: 6.1%;
    width: 17.05%;
    height: 4.4%;
    background: #ffca29;
}
.area-120.floor-number-3 {
    top: 46%;
    left: 6.1%;
    width: 17.05%;
    height: 4.25%;
    background: #ffca29;
}
.area-120.floor-number-4 {
    top: 61.1%;
    left: 6.1%;
    width: 17.05%;
    height: 4.3%;
    background: #ffca29;
}
.area-120.floor-number-5 {
    top: 65.5%;
    left: 6.1%;
    width: 17.05%;
    height: 4.4%;
    background: #ffca29;
}
.area-120.floor-number-6 {
    top: 41.5%;
    left: 27.6%;
    width: 15.15%;
    height: 4.4%;
    background: #ffca29;
}
.area-120.floor-number-7 {
    top: 41.5%;
    left: 46.55%;
    width: 24.25%;
    height: 4.4%;
    background: #ffca29;
}

.area-164-3 {
    top: 30.9%;
    left: 45.65%;
    width: 1.25%;
    height: 4.3%;
    clip-path: polygon(0% 75%, 0% 0%, 100% 0%, 100% 100%, 45% 100%);
}

.area-175-5 {
    top: 41.5%;
    left: 70.9%;
    width: 1.2%;
    height: 4.4%;
    clip-path: polygon(0 0, 60% 0, 100% 24%, 100% 100%, 0 100%);
}

.area-192-7 {
    top: 74.85%;
    left: 4.6%;
    width: 1.4%;
    height: 4.24%;
    clip-path: polygon(0 22%, 35% 0, 100% 0, 100% 100%, 0 100%);
}
.area-216-3 {
    background: #ff0000;
    width: 1.54%;
    height: 4.6%;
}
.area-216-3.floor-number-1 {
    top: 41.5%;
    left: 23.15%;
    height: 4.4%;
    clip-path: polygon(
        0 0,
        60% 0,
        100% 24%,
        100% 100%,
        0 100%
    );
}
.area-216-3.floor-number-2 {
    top: 41.5%;
    left: 4.6%;
    height: 4.4%;
    clip-path: polygon(0 22%, 35% 0, 100% 0, 100% 100%, 0 100%);
}
.area-216-3.floor-number-3 {
    top: 30.8%;
    left: 4.6%;
    height: 4.4%;
    clip-path: polygon(0% 77%, 0% 0%, 100% 0%, 100% 100%, 35% 100%);
}
.area-216-3.floor-number-4 {
    top: 46%;
    left: 4.6%;
    height: 4.3%;
    clip-path: polygon(0% 77%, 0% 0%, 100% 0%, 100% 100%, 35% 100%);
}
.area-216-3.floor-number-5 {
    top: 30.8%;
    left: 23.15%;
    height: 4.4%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 77%, 60% 100%, 0% 100%);
}
.area-216-3.floor-number-6 {
    top: 46%;
    left: 23.15%;
    height: 4.3%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 77%, 60% 100%, 0% 100%);
}
.area-216-3.floor-number-7 {
    top: 61.1%;
    left: 4.6%;
    height: 4.3%;
    clip-path: polygon(
        0 22%,
        35% 0,
        100% 0,
        100% 100%,
        0 100%
    );
}
.area-216-3.floor-number-8 {
    top: 65.5%;
    left: 4.6%;
    height: 4.4%;
    clip-path: polygon(0% 77%, 0% 0%, 100% 0%, 100% 100%, 35% 100%);
}
.area-216-3.floor-number-9 {
    top: 61.1%;
    left: 23.15%;
    height: 4.3%;
    clip-path: polygon(0 0, 60% 0, 100% 24%, 100% 100%, 0 100%);
}
.area-216-3.floor-number-10 {
    top: 65.5%;
    left: 23.16%;
    height: 4.4%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 77%, 60% 100%, 0% 100%);
}


/*end trang chu*/

body:not(.home) .share-button-icon {
    border: 1px solid #472f92;
}
body:not(.home) img.share-button-icon {
    filter: none;
}

body:not(.home) {
    padding-top: 9rem;
}

body.is-mobile.home {
    padding-top: 9rem;
    background-color: #0a3623;
}

.is-mobile .preloader .logo-animate {
    width: 100%;
    max-width: 250px;
}

.is-mobile.home header {
    background: linear-gradient(180deg, var(--color-highlight), transparent);
}
.is-mobile .logo-section img {
    height: 4rem;
    filter: brightness(0) invert(1);
}
.is-mobile .btn-menu-mobile {
    margin-top: 3px;
}
.is-mobile .menu-section.open {
    width: 100%;
}

.is-mobile .img-fullscreen {
    height: auto;
}
.is-mobile .session-library,
.is-mobile .page-section.padding {
    padding: 8rem 3.5% !important;
}
.is-mobile .page-section {
    height: auto;
}

.is-mobile .about-info {
    position: relative;
    left: 0;
    max-width: 100%;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 85%;
    flex-direction: column;
}

.is-mobile .creative .big-img {
    background-image: none !important;
    position: relative;
    height: auto;
}
.is-mobile .content-side .big-content {
    height: 0;
}
.is-mobile .content-side img.img-background {
    position: relative;
}
.is-mobile .content-side .content {
    height: 90vw;
}
.is-mobile .content-side .content .img{
    max-width: 30rem;
    margin: auto;
}
.is-mobile .content-side .content .info {
    position: absolute;
    z-index: 2;
    width: 100%;
    left: 50%;
    top: 3rem;
    transform: translateX(-50%);
    text-align: center;
    padding: 0 3.5%;
}
.is-mobile .creative .title-slide {
    justify-content: center;
}
.is-mobile .content-side.side-2 > .row {
    display: flex;
    flex-direction: column-reverse;
}

.is-mobile .dashboard {
    position: relative;
    left: 0;
    padding: 3rem 3.5%;
    font-weight: 600;
    width: 100%;
    border-radius: 0;
}
.is-mobile .dashboard .project,
.is-mobile .dashboard .infomation .item-info {
    grid-template-columns: repeat(1, max-content);
    gap: 10px;
}

.is-mobile .page-section.section-amenities {
    padding: 0 !important;
}
.is-mobile .section-amenities .background {
    opacity: 0;
}
.is-mobile .section-amenities .position-info {
    margin-bottom: 3rem;
    padding: 3rem 3.5% !important;
    background-image: linear-gradient(90deg, #386652, #0e4d32);
}

.is-mobile .session-experience .ratio-16-9 {
    width: 100%;
    height: 90vw;
    padding-top: initial;
}
.is-mobile  .session-experience .swiper-slide {
    height: 90vw;
}
.is-mobile .session-experience .text-fixed {
    font-size: 110%;
    left: 5%;
    top: 10%;
    width: 60%;
}
.is-mobile .session-experience .content {
    bottom: 8%;
}

.is-mobile .session-experience .swiper-slide::before {
    width: 100%;
    background: linear-gradient(180deg, #2c397d9e, transparent, #2c397d9e);
}

.is-mobile .session-award .swiper-navigation-center {
    width: calc(100% + 4rem);
    padding: 0 2rem;
}
.is-mobile .session-award .swiper-navigation-center .swiper-navigation {
    display: none;
}

.is-mobile .session-contact .infomation {
    margin-top: 3rem;
}
.is-mobile .session-contact,
.is-mobile  .section-team {
    padding: 8rem 0;    
}
.is-mobile .team {
    border-radius: 7em 0;
}
.is-mobile  .list-member {
    flex-wrap: wrap;
}
.is-mobile .session-contact {
    background-size: contain;
}
.is-mobile footer .btn-register {
    display: none;
}
.is-mobile .infomation .cdt .name {
    font-size: 170%;
}

.is-mobile .session-floor {
    background-color: var(--white);
}

body, p, a, li {
    font-size: 16px;
}
@media (min-width: 1024px) and (max-width: 1200px) {
    body.home .col-lg-3 {
        flex: 0 0 33%;
        max-width: 33%;
    }
    body.home .col-lg-9 {
        flex: 0 0 67%;
        max-width: 67%;
    }
    .dashboard .project .item-info {
        max-width: 200px;
    }
    .dashboard .project .item-info .value {
        font-size: 16px;
    }
}
@media (min-width: 992px) and (max-width: 1380px) {
    body, p, a, li {
        font-size: 13px;
    }
}
@media (min-width: 577px) and (max-width: 768px) {
    .is-mobile .dashboard .project, .is-mobile .dashboard .infomation .item-info {
        grid-template-columns: repeat(2, max-content);
    }
}
@media (max-width: 576px) {
    .is-mobile .session-experience .swiper-slide,
    .is-mobile .session-experience .ratio-16-9 {
        height: 120vw;
    }
    .session-experience .swiper-navigation {
        bottom: 40%;
    }
    .is-mobile .session-experience .text-fixed {
        left: 15%;
    }
    .ampersand {
        font-size: 250%;
    }
    .title-text {
        font-size: 120%;
    }
    
    .title-block {
        font-size: 200% !important;
    }
    
    .dashboard .title-block {
        font-size: 170% !important;
    }
    
    .title-amenities .number {
        font-size: 210%;
    }
    .title-amenities .text-main {
        font-size: 100%;
    }
    .title-amenities .text-small {
        font-size: 60%;
    }
    
    .is-mobile .content-side .content .info {
        padding: 0 5rem;
        text-align: justify;
    }
    .is-mobile .hero-subtitle {
        margin-top: 5px;
        font-size: 16px;
        padding-left: 5rem;
    }
    .session-experience .content .name {
        font-size: 120%;
    }
    
    .section-news .inner-content .post-date {
        position: absolute;
        opacity: 0;
    }
    .small-article .article-title a {
        font-size: 80% !important;
        line-height: 1.1;
    }
    .is-mobile .session-award .swiper-navigation-center {
        width: calc(100% + 0rem);
        padding: 0 2rem;
    }
    .team {
        border-radius: 1rem;
    }
    
    .is-mobile header .btn-register {
        display: none;
    }
    .is-mobile footer .btn-register {
        position: fixed;
        bottom: 2rem;
        left: 1rem;
        z-index: 1;
        display: block;
        font-size: 13px;
        background-color: var(--color-highlight);
    }
}
