@font-face {
    font-family: "UTM-Avo";
    src: url(../fonts/UTM-Avo.ttf) format('truetype');
}
@font-face {
    font-family: "UTM-AvoBold";
    src: url(../fonts/UTM-AvoBold.ttf) format('truetype');
}
@font-face {
    font-family: "MTD-Attention-Script";
    src: url(../fonts/MTD-Attention-Script.otf) format('opentype');
}
@font-face {
    font-family: "Prata-Regular";
    src: url(../fonts/Prata-Regular.ttf) format('truetype');
}
@font-face {
    font-family: "icielBrandonText-Bold";
    src: url(../fonts/icielBrandonText-Bold.ttf) format('truetype');
}
body,html {
    min-height: 100vh;
    font-size: 14px;
    font-family: "UTM-Avo";
    box-sizing:border-box;
    position: relative;
}
strong,b {
    font-family: "UTM-Avo";
    font-weight: 700;
}
ul,ol {
    list-style-type: none;
    padding:0;
    margin:0;
}
img,div {
    display: block;
}
a:hover {
    text-decoration: none;
}
header {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    background: transparent;
    padding: 5px 0px;
    z-index: 9;
}
header.sticky {
    top: -70px;
    transform: translateY(70px);
    transition: transform 500ms ease, background 500ms ease;
    -webkit-transition: transform 500ms ease, background 500ms ease;
    background: #FFF;
    box-shadow: 0px 3px 16px 0px rgb(0 0 0 / 10%);
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .nav-menu-top {
    display: flex;
    justify-content: center;
    align-items: center;
}
header .nav-menu-top img {
    height: 75px;
    width: auto;
}
header ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
header ul li {
    padding:0 15px;
    height: 100%;

}
header ul li a {
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
header ul li a span {
    transition: transform .5s ease;
    transform: translateY(0px);
}
header.sticky ul li a {
    color: #000;
}
header.sticky .logo {
    background-image: linear-gradient(to right, #67BFA4 0%,#322867 100%);
    background-image: -moz-linear-gradient(to right, #67BFA4 0%,#322867 100%);
    background-image: -ms-linear-gradient(to right, #67BFA4 0%,#322867 100%);
    background-image: -o-linear-gradient(to right, #67BFA4 0%,#322867 100%);
    background-image: -webkit-linear-gradient(to right, #67BFA4 0%,#322867 100%);
    position: fixed;
    padding:10px;
    top:0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
header ul li:hover a span {
    color: #F5C480;
    position: relative;
    transition: transform .5s ease;
    transform: translateY(-15px);
}
.header__popup-menu {
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 100%;
    background: #FFF;
    text-align: center;
    z-index: 101;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -moz-transition-duration: .6s;
    -o-transition-duration: .6s;
    -webkit-transition-duration: .6s;
    transition-duration: .6s;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-backface-visibility: visible;
    display: none;
}
.header-mobile {
    position: fixed;
    background-color: #fff;
    height: 70px;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    box-shadow: 6px 7px 15px 11px rgb(0 0 0 / 10%);
}
.teaser2-logo,.logo_mobile {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: 0;
    z-index: 100;
    background-color: #322867;
    padding: 10px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.header-mobile .teaser2-logo {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header-mobile .teaser2-logo img,.logo_mobile img {
    width: 80px;
}
.hamburger {
    position: fixed;
    z-index: 103;
    top: 10px;
    left: 40px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    display: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.hamburger .hamburger-menu {
    font-family: 'iCielGotham-Book';
    font-size: 14px;
    color: #666666;
}
*[class*="hamburger__line--"] {
    float: right;
    display: block;
    width: 45px;
    margin: 4px 25px;
    clear: both;
    border-top: 3px solid #666666;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.1, 0.2, 1.18);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.1, 0.2, 1.18);
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.2, 1.18);
}

*[class*="hamburger__line--"] {
    width: 33px;
    margin: 2px 21px;
}
.hamburger__line--one {
    margin-top: 8px;
}
.header__popup-menu .menu_mobile {
    padding: 100px 0 0;
    width: 100%;
}
.header__popup-menu .menu_mobile li {
    padding: 5px 10px;
    position: relative;
}
.header__popup-menu .menu_mobile li:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 35px;
    height: 1px;
    background-color: #A62045;
}
.header__popup-menu .menu_mobile li a {
    position: relative;
    padding: 0 !important;
    display: block;
    background: transparent !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #3d3a3d;
    white-space: nowrap;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
    letter-spacing: 0.5px;
}
.hamburger.active .hamburger__line--one {
    -webkit-transform: translateY(7px) rotateZ(45deg);
    -moz-transform: translateY(7px) rotateZ(45deg);
    transform: translateY(7px) rotateZ(45deg);
    border-top: 3px solid #3d3a3d;
}
.hamburger.active .hamburger__line--two {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-menu-bar .8s forwards;
    animation: active-menu-bar02 .8s forwards;
}
.hamburger.active .hamburger__line--three {
    -webkit-transform: translateY(-7px) rotateZ(-45deg );
    -moz-transform: translateY(-7px) rotateZ(-45deg);
    transform: translateY(-7px) rotateZ(-45deg);
    border-top: 3px solid #3d3a3d;
}
.header__popup-menu.active {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
    display: block;
}




#banner-top .slider-top img {
    height: 100vh;
    object-fit: cover;
}

.title-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.title-section img {
    margin-right: 15px;
    margin-bottom: 45px;
}
.title-section h2 {
    font-family: "UTM-AvoBold";
}

.description-left {
    padding-left: 10vw;
}
.description-right {
    padding-right:10vw;
}

/*  Section Tổng Quan */
#tong-quan {
    padding: 50px 0px;
    position: relative;
}
#tong-quan ul {
    margin-top: 40px;
}
#tong-quan ul li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}
#tong-quan ul li::before {
    content: "■";
    color: rgb(30, 154, 188);
    position: absolute;
    top: 0;
    left: 0px;
}
#tong-quan ul li p {
    margin-bottom: 0;
}
#tong-quan ul li>p:first-child {
    width: 40%;
}
#tong-quan ul li>p:last-child,#tong-quan ul li div {
    width: 60%;
}


/* Section Vị Trí */
#vi-tri {
    background-image: linear-gradient(to right,#67BFA4 0%,#304D7D 100%);
    background-image: -o-linear-gradient(to right,#67BFA4 0%,#304D7D 100%);
    background-image: -moz-linear-gradient(to right,#67BFA4 0%,#304D7D 100%);
    background-image: -ms-linear-gradient(to right,#67BFA4 0%,#304D7D 100%);
    background-image: -webkit-linear-gradient(to right,#67BFA4 0%,#304D7D 100%);
    padding: 50px 0px;
    color: #FFF
}
#vi-tri .title-section h2 {
    color: #FFF;
}
#vi-tri .slogan-vitri {
    margin-bottom: 15px;
}
.map-vitri {
    position: relative;
    width: 100%;
    height: 100%;
}
.pointer {
    position: absolute;
    top: 58%;
    left: 39%;
}
.pointer span {
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: -90%;
    left: -59%;
    border-radius: 50%;
    pointer-events: none;
    animation: AniPointer 4s infinite;
}
.pointer span:first-child {
    animation-delay: 0s;
}
.pointer span:nth-child(2) {
    animation-delay: 1s;
}
.pointer span:nth-child(3) {
    animation-delay: 2s;
}
@keyframes AniPointer {
    0% {
        box-shadow: 0 0 0 #353186;
        transform: scale(0);
    }
    50% {
        box-shadow: 0 0 50px #742B75;
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 60px #9C2166;
        transform: scale(2);
    }
}
@keyframes dash {
    100%{
        stroke-dashoffset: 1000;
    }
}
#vi-tri .map-vitri {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Section Phân Khu */
#phan-khu {
    padding-top: 50px;
    padding-bottom: 50px;
}

#phan-khu h5 {
    font-weight: 700;
}
#phan-khu ul li {
    text-align: center;
}
.img-radius {
    border-radius: 15px;
}
#phan-khu .card-img {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
#phan-khu .card-img:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
#phan-khu .card-img .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 9;
}
#phan-khu .card-img .img:before {
    content:'';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: #000000a8;
    z-index: 2;
    opacity: 1;
    transition: all .5s ease-in-out .5s;
}
#phan-khu .card-img:hover .img:before {
    opacity: 0;
    transition: all .5s ease-in-out .5s;
}
#phan-khu .card-img .img span {
    width: 25%;
    height: 100%;
    transition: .5s;
    background-size: cover;
}
#phan-khu .card-img .img span:nth-child(1) {
    background-position: 0;
    transition-delay: 0s;
}
#phan-khu .card-img .img span:nth-child(2) {
    background-position: 33.33333%;
    transition-delay: .1s;
}
#phan-khu .card-img .img span:nth-child(3) {
    background-position: 66.66666%;
    transition-delay: .2s;
}
#phan-khu .card-img .img span:nth-child(4) {
    background-position: 100%;
    transition-delay: .3s;
}
#phan-khu .card-img:hover .img>span{
    transform: translateY(-100%)
}
#phan-khu .card-img .content-phan-khu {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    padding: 20px 20px;
    width: 100%;
    height: 100%;
    transform: translateY(0%);
    position: absolute;
    bottom: 0;
    left:0;
    z-index: 99;
    transition: 1s;
    transition-delay: .1s;
}
#phan-khu .card-img:hover .content-phan-khu {
    transform: translateY(-100%);
    transition: 1s;
    transition-delay: .1s;
}
.content-phan-khu h2 {
    font-family: "Prata-Regular";
    color: #F1657E
}
.content-phan-khu span {
    font-family: "MTD-Attention-Script";
    color: #FFF;
}
.content-phan-khu .tieukhu-2 {
    color: #B4592A;
}
#phan-khu .col-lg-6 {
   display: flex;
    flex-direction: column;
}
#phan-khu .col-lg-6 ul{
    flex: 1;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
/* Section Mặt Bằng */
#mat-bang {
    padding-bottom: 50px;
    padding-top:50px;
}
#mat-bang .mat-bang {
    position: relative;
    overflow: hidden;
}
#mat-bang .mat-bang svg {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
#Layer_1 {
    background: #FFF;
}
.hover-block {
    fill-opacity: 0;
    stroke: red;
    stroke-miterlimit: 10;
    stroke-width: 4;
    stroke-dasharray: 5000;
    stroke-dashoffset: 5000;
    cursor: pointer;
    fill: #ee333538;
    transition: all .3s ease-in-out;
}
.hover-block[data-block='2'] {
    fill: #f6ee2c4f;
    stroke: #F6EE2C;
}
.hover-block.active {
    animation-name: DrawStroke2;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-timing-function: linear;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 1));
    fill-opacity: 1;
}
.cls-21 {
    animation: dash 15s infinite linear;
}
@keyframes DrawStroke2 {
    0% {
        stroke-dashoffset: 5000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
.block-title-matbang {
    opacity: 0;
    transition: all 1s ease;
    transform: scale(1.3);
    position: absolute;

}
#matbang-1.block-title-matbang {
    top: 27%;
    lefT: 26%;
}
#matbang-2.block-title-matbang {
    top: 70%;
    lefT: 50%;
}
.block-title-matbang.active {
    width: auto;
    height: auto;
    cursor: pointer;
    transform: scale(.8);
    transform-origin: center center;
    box-shadow: 0 10px 20px 5px rgb(0 0 0 / 30%);
    z-index: 10;
    border-radius: 20px;
    opacity: 1;
    transition: all 1s ease;
}
.default-block-title-matbang {
    position: relative;
    background-color:#ff000099;
    border-radius: 20px;
    padding: 10px 20px;
    text-align: center;
    z-index: 2;
}
#matbang-2 .default-block-title-matbang {
    background: #f6ee2cba;
}
h2.tieukhu-2 {
    font-family: "Prata-Regular";
    color: #FFF;
    margin-bottom:0;
}
h2.tieukhu-2 span {
    font-family: "MTD-Attention-Script";
    color: #FFF;
}
.block-oval {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.oval {
    width: 140px;
    height: 140px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -40px 0 0 -70px;
    z-index: 3;
    mix-blend-mode: overlay;
    display: none;
}
.block-title-matbang.active .oval {
    display: block;
}
.block-title-matbang.active .oval:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/oval1.svg) no-repeat 50%/contain;
    animation: Rotate 6s linear infinite;
}
.block-title-matbang.active .oval:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/oval.svg) no-repeat 50%/contain;
    animation: Rotate 4s linear infinite;

}
@keyframes Rotate{
    0%{
        transform:rotate(0deg) translateZ(0)
    }
    to{
        transform:rotate(1turn) translateZ(0)
    }
}


/* Section 360 Dự Án */
#duan-360 {
    padding-top: 50px;
    padding-bottom:50px;
}
#duan-360 iframe {
    width: 100%;
    height:calc(100vw * 155/500);
    display:block;
}


/* Section Liên Hệ */
#lienhe {
    padding-top: 30px;
    padding-bottom:30px;
    background-image: linear-gradient(to right,#67BFA4 0%,#322867 100%);
}
#lienhe H2 {
    font-size: 1.5rem;
    color: #FFF;
}
#lienhe P {
    font-size: 1rem;
    color: #FFF;
}
#lienhe ul li {
    display: flex;
    justify-content: center;
    align-items: center;
}
#lienhe ul li>p {
    width: 50%;
    color: #FFF;
    font-size: 1.2rem;
}
#lienhe ul li>p a {
    color: #FFF;
}
#lienhe ul li>p a:hover {
    text-decoration: underline;
}
#lienhe ul li>p:nth-child(1) {
    padding-right: 20px;
}

#mat-bang ul li h3 {
    font-size: 1.2rem;
    font-weight: 900;
    background-image: linear-gradient(to right,#67BFA4 0%,#322867 100%);
    background-image: -webkit-linear-gradient(to right,#67BFA4 0%,#322867 100%);
    background-image: -o-linear-gradient(to right,#67BFA4 0%,#322867 100%);
    background-image: -ms-linear-gradient(to right,#67BFA4 0%,#322867 100%);
    background-image: -moz-linear-gradient(to right,#67BFA4 0%,#322867 100%);
    color: #FFF;
    padding: 5px 3px 5px 5px;
    margin-bottom: 0;
}
#mat-bang ul li p {
    margin-bottom: 0px;
}

.list-tien-ich {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.list-tien-ich span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 25px;
    height: 25px;
    background: #67BFA4;
    border-radius: 50%;
    z-index: 1;
    color: #FFF;
    font-weight: 900;
    cursor: pointer;
    animation: animate-big 2s ease-in-out infinite;
}

.list-tien-ich span:nth-child(1) {
    top: 48%;
    left: 30%;
}
.list-tien-ich span:nth-child(2) {
    top: 28%;
    left: 37%;
}
.list-tien-ich span:nth-child(3) {
    top: 25%;
    left: 55%;
}
.list-tien-ich span:nth-child(4) {
    top: 33%;
    left: 48%;
}
.list-tien-ich span:nth-child(5) {
    top: 36%;
    left: 29%;
}
.list-tien-ich span:nth-child(6) {
    top: 75%;
    left: 37%;
}
.list-tien-ich span:nth-child(7) {
    top: 70%;
    left: 26%;
}

@keyframes animate-big {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}
@-webkit-keyframes animate-big {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}
.list-hot-news {
    display: grid;

    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;

    gap: 10px;
    height: 100%;
}
.list-hot-news .gird-item-section-12:nth-child(1) {
    grid-row-start: 1;
    grid-column-start: 1;

    grid-row-end: 3;
    grid-column-end: 2;
}
.list-hot-news .gird-item-section-12:nth-child(2) {
    grid-row-start: 1;
    grid-column-start: 2;

    grid-row-end: 2;
    grid-column-end: 3;
}
.list-hot-news .gird-item-section-12:nth-child(3) {
    grid-row-start: 2;
    grid-column-start: 2;

    grid-row-end: 3;
    grid-column-end: 3;
}
.list-hot-news .gird-item-section-12:nth-child(4) {
    grid-row-start: 1;
    grid-column-start: 3;

    grid-row-end: 2;
    grid-column-end: 4;
}
.list-hot-news .gird-item-section-12:nth-child(5) {
    grid-row-start: 2;
    grid-column-start: 3;

    grid-row-end: 3;
    grid-column-end: 4;
}
.list-hot-news .gird-item-section-12 .title-news a:before{
    position: absolute;
    content:"";
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: #000000b5;
    z-index: 0;
}
.gird-item-section-12>a {
    display: block;
    width: 100%;
    position: relative;
    height: 100%;
}
.gird-item-section-12 img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    display: block;
    max-width: unset;
}
.gird-item-section-12 .item {
    width: 100%;
    position: relative;
}
.gird-item-section-12 .item:nth-child(1) {
    padding-bottom:5px;
}
.gird-item-section-12 .item:nth-child(2) {
    padding-top:5px;
}
.gird-item-section-12 .item>a:before {
    position: absolute;
    content:"";
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: #00000047;
}
.gird-item-section-12 .item a {
    position: relative;
}
.gird-item-section-12 .item img {
    height: 245px;
    object-fit: cover;
    width: 100%;
    max-width: unset;
}
.title-news {
    position: absolute;
    left:0;
    bottom:0;
    width: 100%;
    padding: 5px 15%;
}
.title-news h4 {
    color: #FFF;
    font-size: 1.2rem;
    position: relative;
}
.title-news p {
    color: #FFF;
    position: relative;
}

.list-news-2 {
    margin-top:30px;
}
.list-news-2 .title-news-2 h4 {
    color: #000;
    font-size: 1rem;
    font-weight: 900;
    margin-top: 20px;
}
.list-news-2 .title-news-2 p {
    color: #000;
    font-size: .8rem;
}


/*** Chi tiết dự án ***/
#default-news{
    color: #000;
    margin-top: 100px;
}
#default-news h1 {
    font-weight: 900;
    font-family: "UTM-AvoBold";
    font-size: 1.8rem;
}
#default-news p.time-news {
    padding: 10px 0px 30px;
}
.default_description_new {
    text-align: justify;
    font-family: "UTM-Avo";
}
.default_description_new img {
    margin:auto;
    display: block;
    max-width: 100%;
    height: auto;
}

.wp-caption {
    max-width: 100%;
}

.other-news {
    padding-bottom: 15px;
    position: relative;
    margin-bottom:15px;
    font-weight: 900;
}
.other-news:before {
    content:'';
    position: absolute;
    bottom: 0;
    left:0;
    width: 20%;
    height: 5px;
    transform: translateY(50%);
    background: #351242;
}
.other-news:after {
    content:'';
    position: absolute;
    bottom: 0;
    left:0;
    width:100%;
    height: 2px;
    transform: translateY(50%);
    background: #351242;
}
.item-other-new {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
    margin-bottom: 20px;
}
.item-other-new> a {
    width: 100%;
    display: block;
    color: #000;
}
.item-other-new>a:nth-child(2) {
    margin-top: 15px;
    font-weight: 700;
    font-family: "UTM-AvoBold";
}

#default-news .other-sticky {
    position: sticky;
    top: 100px;
}

#tin-tuc {
    padding-bottom: 30px;
}