*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

body {
    line-height: 1.5;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    outline: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

:root {
    --side-width: calc((100% - 1320px) / 2);
}

html, body {
	font-family: "Montserrat-Medium", sans-serif !important;
}

@keyframes cf4FadeInOut {
    0% {
        opacity: 1;
    }

    17% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    92% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.font-heading {
    font-family: 'Montserrat-Bold', sans-serif;
    font-size: 100px;
    line-height: 1;
    color: #50656b;
    padding-top: 90px;
    z-index: 2;
    text-shadow: 0px -1px 0 #2a4f57, 1px -1px 0 #2a4f57, -1px 1px 0 #2a4f57, 1px 1px 0 #2a4f57;
    text-transform: uppercase;
}

.font-desc {
    font-family: 'Montserrat-Regular', sans-serif;
    font-size: 47px;
    line-height: 1;
    color: white;
	display: none;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

.top-layer {
    position: relative;
    z-index: 4;
}

.header {
    width: 100%;
    height: 915px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.header-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .8;
    background-size: cover;
    mix-blend-mode: hard-light;
    z-index: 2;
}

.header::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #3b526d, #007963);
    opacity: 0.55;   
    background-size: cover;
    z-index: 3;
	transition: all 1s linear;
}

.header-content {
    height: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    align-items: center;
}

.header-top .header-logo img {
    object-fit: cover;
}

.header-top .header-hotline {
    width: 145px;
    height: 36px;
    background-color: #d98b32;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    z-index: 10;
    background-image: linear-gradient(to left, #d98b32 18%, #d98b32 106%);
}

.header-top .header-hotline a {
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 17.5px;
    line-height: 36px;
    font-family: "Magistral", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}


.header-top .header-hotline a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    border-radius: 30px;
    background-color: #31b4bd;
    z-index: -1;
    transition: width .25s linear;
}

.header-top .header-hotline a:hover::after {
    width: 100%;
}

.header-body {
    display: flex;
    width: 100%;
    /* height: calc(100% - (-120px)); */
    justify-content: center;
    align-items: center;
    position: relative;
    top: 260px;
}

.header-menu {
    position: absolute;
    left: 0;
}

.header-menu .menu-item {
    display: flex;
    color: white;
    align-items: center;
    text-transform: uppercase;
    font-family: "Montserrat-Regular";
    font-size: 18px;
    position: absolute;
    left: 0;
    width: 315px;
    cursor: pointer;
}

.header-menu .menu-item:nth-child(1) {
    transform: translate3d(160px, -320px, 0);
}

.header-menu .menu-item:nth-child(2) {
    transform: translate3d(100px, -180px, 0);
}

.header-menu .menu-item:nth-child(3) {
    transform: translate3d(60px, -48px, 0);
}

.header-menu .menu-item:nth-child(4) {
    transform: translate3d(100px, 130px, 0);
}

.header-menu .menu-item:nth-child(5) {
    transform: translate3d(160px, 265px, 0);
}

.header-menu .menu-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 4px solid #949fa8;
}

.header-menu .menu-item.active img {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    /* transition: all linear .5s; */
}

.header-center {
    text-align: center;
	margin-left: 490px;
}

.header-center .heading {
    font-family: "Montserrat-Bold", sans-serif;
    font-size: 75px;
    color: white;
    margin: 0;
}

.header-center .title {
    font-family: "Montserrat-Medium";
    color: white;
    font-size: 50px;
    margin-top: 6px;
}

.header-center .location {
    font-family: "Montserrat-Medium", sans-serif;
    color: white;
    font-size: 36px;
    margin-top: 18px;
}

.next-btns {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.next:hover,
.prev:hover {
    opacity: .5;
    transition: opacity .25s ease;
}

.next-btns ion-icon {
    margin-bottom: 10px;
}

.line {
/* 	display: none; */
    position: absolute;
    width: 120px;
    border: 1px solid white;
    top: 55.4%;
    left: 33.5%;
}

.line::after {
    content: "";
    position: absolute;
    background-color: #fff;
    top: -5px;
    left: -11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.line::before {
    content: "";
    position: absolute;
    background-color: #fff;
    top: -5px;
    right: -11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 2;
}

.dynamic-circle,
.dynamic-circle-1 {
    width: 450px;
    height: 450px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.dynamic-circle::after,
.dynamic-circle::before,
.dynamic-circle-1::after,
.dynamic-circle-1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: transparent;
    z-index: 100;
    border: 1px solid #ffffff;
    opacity: .3;
}

.dynamic-circle::after {
    transform: scale(1);
    animation: sonarEffect_1 4s infinite;
}

.dynamic-circle::before {
    transform: scale(1.4);
    animation: sonarEffect_2 4s infinite;
    animation-delay: 1.95s;
}

.dynamic-circle-1::after {
    transform: scale(1.89);
    animation: sonarEffect_3 4s infinite;
    animation-delay: 3.9s;
}

.dynamic-circle-1::before {
    transform: scale(2.38);
    animation: sonarEffect_4 4s infinite;
    animation-delay: 5.8s;
}

@keyframes sonarEffect_1 {
    0% {
        filter: alpha(opacity=20);
        opacity: 0.2;
    }

    40% {
        filter: alpha(opacity=40);
        opacity: 0.4;
    }

    100% {
        -o-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
    }
}

@keyframes sonarEffect_2 {
    0% {
        filter: alpha(opacity=30);
        opacity: 0.2;
    }

    40% {
        filter: alpha(opacity=50);
        opacity: 0.4;
    }

    100% {
        -o-transform: scale(2);
        -webkit-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
        filter: alpha(opacity=0);
        opacity: 0;
    }
}

@keyframes sonarEffect_3 {
    0% {
        filter: alpha(opacity=30);
        opacity: 0.2;
    }

    40% {
        filter: alpha(opacity=50);
        opacity: 0.4;
    }

    100% {
        -o-transform: scale(2.5);
        -webkit-transform: scale(2.5);
        -ms-transform: scale(2.5);
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
    }
}

@keyframes sonarEffect_4 {
    0% {
        filter: alpha(opacity=30);
        opacity: 0.2;
    }

    40% {
        filter: alpha(opacity=50);
        opacity: 0.4;
    }

    100% {
        -o-transform: scale(3.3);
        -webkit-transform: scale(3.3);
        -ms-transform: scale(3.3);
        transform: scale(3.3);
        filter: alpha(opacity=0);
        opacity: 0;
    }
}

/*  */
.main {
    position: relative;
}

/* general */

.general {
    width: 100%;
    /* height: 96.5rem; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
}



.general .z-index {
    position: relative;
    z-index: 4;
}

.general::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #02142a;
    z-index: 1;
    opacity: 0.88;
}

/* .general::before {
    content: '';
    position: absolute;
    top: 110px;
    right: 0;
    background-image: radial-gradient(circle, #1d9da9, transparent 71%);
    width: 800px;
    height: 800px;
    z-index: 2;
} */

/* .general-header::after {
    content: "";
    position: absolute;
    background-image: url(http://localhost/imperium/wp-content/themes/imperium-town/img/general-overlay.png);
    width: 20rem;
    height: 20rem;
    z-index: 4;
    right: 0;
} */


/* --------------------------------------------------- */
@keyframes smoothbounceball {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(50px, 10px, 0);
    }
}

@keyframes smoothbounceball-1 {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(0, 50px, 0);
    }
}

.general .svg-container,
.general .svg-container-1 {
    position: absolute;
    top: 220px;
    right: 120px;
    width: 150px;
    height: 150px;
    z-index: 2;
}

.general .svg-container {
    animation: smoothbounceball 5s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.general .svg-container-1 {
    top: -109px;
    right: 192px;
    width: 250px;
    height: 250px;
    animation: smoothbounceball-1 4s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

/* --------------------------------------------------- */

.general-heading {
    padding-top: 90px;
    color: #d98d37;
    text-shadow: 2px 0px 0 #34475b, 1px -1px 0 #34475b, -1px 1px 0 #34475b, 1px 1px 0 #34475b;
}

.general-header {
    margin-bottom: 137.5px;
}

.general-desc {
    padding-top: 90px;
    position: absolute;
    top: 36px;
    left: 166px;
    z-index: 10;
}

.general .rounded-div {
    padding-left: var(--side-width);
}

.rounded-div {
    border-radius: 0 320px 320px 0;
    position: absolute;
    width: calc(100% - (var(--side-width) / 2));
    /* height: 635px; */
    background-color: #fff;
    bottom: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding-left: var(--side-width); */
}

.m-124 {
    margin-right: calc(var(--side-width) / 2) !important;
}

.general-content {
    background-size: cover;
    background-position: center center;
    position: relative;
}

.general-container {
    width: 100%;
}

.general-info {
    padding: 10px 0 10px 0;
    height: 570px;
    padding-left: 30px;
    overflow: scroll;
    overflow-x: hidden
}

/* custom scrollbar */
.general-info::-webkit-scrollbar {
    width: 20px;
}

.general-info::-webkit-scrollbar-track {
    background-color: transparent;
}

.general-info::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
        -webkit-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;

}

.general-info:hover.general-info::-webkit-scrollbar-thumb{
    background-color: #d6dee1;
}

.general-info::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}

.p-25 {
    padding: 25px 0;
}

ul.list-info {
    font-size: 16px;
/*     font-family: "FS Magistral"; */
    padding-right: 50px;
    padding-left: 0;
    list-style-type: circle;
    margin: 0;
}

.list-info .item-info {
    font-size: 18.5px;
    padding-left: 16px;
    margin-bottom: 16px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow-wrap: break-word;
    display: list-item;
    list-style-type: initial;
    position: relative;
}

/* .list-info .item-info::after {
    content: "";
    background-color: black;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
} */

.main-img {
    position: absolute;
    top: -190px;
    right: 105px;
}

.sub-img {
    display: flex;
    position: absolute;
    bottom: 69px;
    right: 112px;
}

.sub-img-left {
    width: 205px;
    height: 205px;
    position: absolute;
    left: -240px;
    bottom: -33px;
}

.sub-img-right {
    width: 225px;
    height: 225px;
}

.sub-img-left img,
.sub-img-right img {
    border-radius: 50%;
}

/* position */
.position {
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* .position-overlay {
    content: '';
    position: absolute;
    top: 110px;
    left: 0;
    background-image: radial-gradient(circle, #1d9da9, transparent 71%);
    width: 800px;
    height: 800px;
    z-index: 2;
} */

@keyframes smoothbounceball-2 {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(50px, 20px, 0);
    }
}

@keyframes smoothbounceball-3 {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-60px, 20px, 0);
    }
}

@keyframes smoothbounceball-4 {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(20px, 100px, 0);
    }
}

.position .svg-container,
.position .svg-container-1,
.position .svg-container-2 {
    position: absolute;
    z-index: 2;
}

.position .svg-container {
    top: 105px;
    right: 129px;
    width: 130px;
    height: 125px;
    animation: smoothbounceball-2 5s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.position .svg-container-1 {
    top: 0px;
    left: 100px;
    width: 140px;
    height: 140px;
    animation: smoothbounceball-3 6s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.position .svg-container-2 {
    top: 510px;
    right: 40px;
    width: 100px;
    height: 100px;
    animation: smoothbounceball-4 4s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}



.position .circle-wrap .triangle {
    clip-path: polygon(100% 0, 0 26%, 100% 100%);
    -webkit-clip-path: polygon(100% 0, 0 26%, 100% 100%);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 190px;
    left: 28%;
    background-image: linear-gradient(to bottom, #4fd2d4, transparent);
    z-index: 2;
    opacity: .6;
    animation: smoothbounceball-1 5s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.position::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #011b2d;
    opacity: .8;
}

.position::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, transparent, #5d5d5d);
}

.position-header {
    padding-top: 30px;
    text-align: center;
    position: relative;
}

.position-header .position-heading {
    color: #d98d37;
    text-shadow: 0px -1px 0 #3e4f5d, 1px -1px 0 #3e4f5d, -1px 1px 0 #3e4f5d, 1px 1px 0 #3e4f5d;
}

.position-project {
    position: absolute;
    top: 155px;
    left: 44.6%;
    z-index: 3;
}

.position .position-desc p {
    margin-top: 65px;
    font-family: "Montserrat-Medium", sans-serif;
    font-size: 19.5px;
    color: white;
    z-index: 3;
    position: relative;
    line-height: calc(3.5 / 1.8);
    text-align: justify;
}

.position .position-content p {
   font-family: "Montserrat-Medium", serif;
    font-size: 19.5px;
    line-height: calc(3.5 / 1.8);
    color: white;
    position: relative;
    z-index: 3;
    margin-top: 42px;
    margin-bottom: 60px;
    text-align: justify;
}

.position-map {
    width: 100%;
    height: 525px;
    background-color: #fff;
    position: relative;
    z-index: 2;
    border-radius: 60px;
    background-position: center;
}

.position .z-index {
    position: relative;
    z-index: 4;
}

/*  service */

.service {
    width: 100%;
    /* height: 935px; */
    background-size: cover;
    background-position: center center;
    position: relative;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(to top, transparent, #5d5d5d);
}

.service::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #011b2d;
    z-index: 1;
    opacity: .8;
}

.service .overlay {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, #012d36);
}

.position-map-wrap {
	padding-bottom: 60px;
}
/* .service .service-overlay {
    content: '';
    position: absolute;
    top: 110px;
    right: 12px;
    background-image: radial-gradient(circle, #2e949e, transparent 71%);
    width: 700px;
    height: 700px;
    z-index: 2;
} */

@keyframes smoothbounceball-5 {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(0, 50px, 0);
    }
}

@keyframes smoothbounceball-6 {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(0, 80px, 0);
    }
}

.service .svg-container,
.service .svg-container-1 {
    position: absolute;
    z-index: 2;
}

.service .svg-container {
    top: 80px;
    right: 150px;
    width: 120px;
    height: 130px;
    animation: smoothbounceball-5 4.5s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.service .svg-container-1 {
    top: -38px;
    right: 57px;
    width: 130px;
    height: 130px;
    animation: smoothbounceball-1 4s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

/* ------------------------------------------- */

.service .service-content {
    height: 505px;
    position: relative;
    margin-top: 235px;
}

.service .service-header {
    position: relative;
    z-index: 4;
}

.service-heading {
    padding-top: 90px;
    position: relative;
    z-index: 1;
    color: #d98d37;
    text-shadow: 0px -1px 0 #36515e, 1px -1px 0 #36515e, -1px 1px 0 #36515e, 1px 1px 0 #36515e;
}

.service-desc {
    padding-top: 90px;
    position: absolute;
    top: 35px;
    left: 80px;
    z-index: 4;
}

.service-content-wrap {
    position: relative;
    z-index: 4;
}

.list-service {
    position: absolute;
    top: -30%;
    width: 100%;
}

.service-content .slick-list{
    margin: 0 -24px;
}

.service-content .item-content {
    margin: 0 24px;
}

/* .service-item .item-content {
    padding: 0 24px;
} */

.slick-dotted.slick-slider {
    margin-bottom: 190px !important;
}

.service-item .item-img {
    border-radius: 25px;
    margin-bottom: 60px;
    height: 315px;
}

.service-item .item-text {
    font-size: 18px;
    color: black;
    line-height: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

/* place */
.place {
    height: 2300px;
    width: 100%;
    background-image: url(./img/service-bc.jpg), linear-gradient(to top, transparent, #091317);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    position: relative;
    padding-top: 90px;
    overflow-x: hidden;
}

.place::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #011b2d;
    opacity: .8;
}

.place::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to top, transparent, #012d36);
}

.place .place-overlay {
    content: '';
    position: absolute;
    top: 110px;
    left: -70px;
    background-image: radial-gradient(#06646d 2%, transparent 71%);
    width: 700px;
    z-index: 2;
}

@keyframes smoothbounceball-7 {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(0, 50px, 0);
    }
}

@keyframes smoothbounceball-8 {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(0, 90px, 0);
    }
}

@keyframes smoothbounceball-9 {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(60px, 50px, 0);
    }
}

@keyframes smoothbounceball-10 {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(10px, 30px, 0);
    }
}

.place .svg-container,
.place .svg-container-1,
.place .svg-container-2,
.place .svg-container-3 {
    position: absolute;
    z-index: 2;
    opacity: .5;
}

.place .svg-container {
    top: 15%;
    left: 22%;
    width: 120px;
    height: 130px;
    animation: smoothbounceball-1 4s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.place .svg-container-1 {
    top: 3%;
    left: 16%;
    width: 150px;
    height: 145px;
    animation: smoothbounceball-7 4s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.place .svg-container-2 {
    top: 13%;
    left: 11%;
    width: 80px;
    height: 120px;

    animation: smoothbounceball-3 4s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.place .svg-container-3 {
    bottom: 520px;
    right: 4px;
    width: 120px;
    height: 130px;
    animation: smoothbounceball-5 4.5s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}



.place .circle-wrap .triangle {
    clip-path: polygon(100% 0, 0 26%, 100% 100%);
    -webkit-clip-path: polygon(100% 0, 0 26%, 100% 100%);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 19%;
    left: 45%;
    background-image: linear-gradient(180deg, #59acad, transparent);
    z-index: 2;
    opacity: 0.3;
    animation: smoothbounceball-9 6s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}


.place .circle-wrap .triangle-1 {
    clip-path: polygon(100% 27%, 0 0, 0 100%);
    -webkit-clip-path: polygon(100% 27%, 0 0, 0 100%);
    width: 20px;
    height: 20px;
    position: absolute;
    top: 130px;
    right: 99px;
    background-image: linear-gradient(to bottom, #4fd2d4, transparent);
    z-index: 2;
    opacity: 0.3;
    animation: smoothbounceball-10 3s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.place .circle-wrap .triangle-2 {
    clip-path: polygon(100% 0, 0 26%, 100% 100%);
    -webkit-clip-path: polygon(100% 0, 0 26%, 100% 100%);
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 400px;
    left: 5%;
    background-image: linear-gradient(180deg, #59acad, transparent);
    z-index: 2;
    opacity: .5;
    animation: smoothbounceball-8 4s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.place .circle-wrap .triangle-3 {
    clip-path: polygon(100% 69%, 0 0, 0 100%);
    -webkit-clip-path: polygon(100% 69%, 0 0, 0 100%);
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 440px;
    left: 20%;
    background-image: linear-gradient(180deg, #59acad, transparent);
    z-index: 2;
    opacity: .5;
    animation: smoothbounceball-3 7s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}


.place .place-top {
    margin-bottom: 130px;
    position: relative;
    z-index: 2;
}

.place-header {
    text-align: right;
}

.place .place-heading {
    color: #d98d37;
    padding: 0;
}

.place .place-project {
    position: absolute;
    z-index: 2;
    right: 12.2%;
    top: 40%;
}

.place .place-content {
    position: relative;
    z-index: 4;
}

.place .list-place-header {
/*     font-family: 'FS Magistral'; */
    font-size: 33px;
    color: White;
    text-align: center;
    margin-bottom: 60px;
}

.place .place-main-img {
    margin-bottom: 30px;

}

.place .place-main-img img {
    height: 350px;
    width: 100%;
    border-radius: 10px;
}

.place .list-sub-img {
    display: flex;
    justify-content: space-around;
}

/* .place .item-sub-img{
    width: 140px;
} */

.place .list-sub-img .slick-slide {
    width: 140px !important;
    margin: 0 12.4px;
    border-radius: 10px;
}

.slick-prev:before, .slick-next:before {
    content: '' !important;
}

.slick-arrow {
    width: 25px !important;
    height: 40px !important;
    transition: all .25s linear;
    background-color: #fff !important;
    
}

.slick-arrow:hover{
   scale: 1.1;
    opacity: 1 !important;
}

.slick-prev {
    left: 0px !important;
    top: 50% !important;
    z-index: 18;
    opacity: .4;
    border-radius: 0 5px 5px 0;
}

.slick-next {
    right: 2px !important;
    top: 50% !important;
    opacity: .4;
    border-radius: 5px 0  0 5px;
}

.slick-arrow i {
    font-size: 24px;
    color: #000;
}

.list-img-wrapper {
    width: 100%;
}

.place .item-sub-img img {
    width: 140px;
    height: 92px;
    border-radius: 10px;
}

.list-sub-img .item-sub-img {
    cursor: pointer;
}

.place .list-sub-img .slick-slide:hover {
    transform: scale(1.05);
    transition: transform .25s linear;
}



/*  advisory */
.advisory {
    background-image: linear-gradient(to bottom, #011827, #00393d);
    position: relative;
    height: 300px;
    width: 100%;
}

.advisory .svg-container,
.advisory .svg-container-1 {
    position: absolute;
    z-index: 12;
    opacity: .5;
}

.advisory .svg-container {
    top: 207px;
    left: 187px;
    width: 120px;
    height: 130px;
    animation: smoothbounceball-2 4s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.advisory .svg-container-1 {
    top: 220px;
    right: 350px;
    width: 110px;
    height: 95px;
    animation: smoothbounceball-10 3s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}


.advisory .circle-wrap .triangle {
    clip-path: polygon(100% 18%, 0 0, 0 94%);
    -webkit-clip-path: polygon(100% 18%, 0 0, 0 94%);
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50px;
    right: 25px;
    background-image: linear-gradient(180deg, #59acad -25%, transparent);
    z-index: 2;
    opacity: .4;
    animation: smoothbounceball-3 5s ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.advisory .advisory-header {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: -185%;
    left: var(--side-width);
}

.advisory-header .advisory-heading {
    color: #d98d37;
    text-shadow: -1px 1px 0 #6a8486, 1px -1px 0 #6a8486, 1px 1px 0 #6a8486, 1px 1px 0 #6a8486;
}

.advisory-header .advisory-project {
	position: absolute;
    top: 128px;
    left: 608px;
}

.advisory .advisory-form {
    position: relative;
}


.advisory-header .advisory-phone {
    font-family: 'UtmHanzel', serif;
    font-size: 42px;
    color: white;
    margin-bottom: 45px;
    margin-top: 50px;
}

.advisory .advisory-form .img-wrap {
   	position: absolute;
    top: 45.2%;
    left: 11px;
    transform: translate(-50px, -50%);
    height: 485px;
    width: auto;
}

.advisory-header .advisory-phone a{
    color: white;
    text-decoration: none;
}

.advisory .advisory-form {
    width: 100%;
    background-color: #fff;
    position: relative;
    z-index: 2;
    border-radius: 250px;
    background-color: #fff;
    background-position: center;
    padding: 60px 0 60px 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -228px;
}

.advisory .advisory-form .form-contact {
    padding: 17px 0;
	transform: translateX(-60px);
}

.advisory .advisory-form .contact {
    width: 100%;
    height: 100%;
}

.advisory-form .form-group input{
/*     font-family: "FS Magistral"; */
}

.advisory-form input[type='text'] {
    width: 100%;
    height: 64px;
    border: 1px dashed #d98d37;
    border-radius: 30px;
    padding: 0 15px;
    font-size: 18px;
}

.advisory-form .form-group {
    margin-bottom: 25px;
}

.advisory-form .form-group .form-message {
    font-size: 14px;
    font-family: "Montserrat-Medium", serif;
    color: #e17c7c;
    display: block;
    padding-left: 10px;
    margin-top: 10px;
}

.form-group.invalid .form-control {
    border-color: #f33a58;
}

.form-group.invalid .form-message {
    color: #f33a58;
}

.advisory-form input[type='text']::placeholder {
    color: #d98d37;
    font-size: 18px;
    font-family: "Montserrat-Medium", serif;
    font-weight: 600;
}

.advisory-form .radio {
    display: block;
    user-select: none;
    text-align: left;
/*     font-family: "FS Magistral"; */
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 18px;
}

.advisory-form input[type='radio'] {
    display: none;
}

.advisory-form input[type='radio']+span {
    display: inline-block;
    position: relative;
    padding-left: 30px;
}

.advisory-form input[type='radio']+span::before {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 50%;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    border: 1px dashed #d98d37;
    background: #fff;
}

.form-alert {
    display: none;
    text-align: center;
    /* margin-top: 16px; */
    font-size: 17px;
    color: #188c2a;
    font-family: "Open Sans", serif;
}

.form-alert p {
    margin-bottom: 0;
}

.form-alert.error {
    color: red;
}

.advisory-form input[type='radio']+span::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: #d98d37;
    position: absolute;
    border-radius: 50%;
    top: 4px;
    left: 4px;
    opacity: 0;
    transform: scale(0, 0);
    transition: all .2s cubic-bezier(0.64, 0.57, 0.67, 1.53);
}

.advisory-form input[type='radio']:checked+span:after {
    opacity: 1;
    transform: scale(1, 1);
}

.advisory-form .submit-btn {
    width: 370px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-70%, 55%);
    background-color: #d98d37;
    border-radius: 30px;
    font-size: 17px;
    font-family: "Montserrat-Bold", serif;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 2;
}

.advisory-form .submit-btn img {
    width: 30px;
    height: 30px;
    margin-right: 24px;
}

.advisory-form .submit-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 0;
    background-color: rgba(3, 96, 98, 0.355);
    width: 0;
    height: 100%;
    border-radius: 30px;
    transition: all .25s linear;
    z-index: -1;
}

.advisory-form .submit-btn:hover::after {
    width: 100%;
    z-index: 1;
    color: white;
}

/* loading animation */

.lds-ellipsis {
    display: none;
    position: relative;
    width: 27px;
    height: 27px;
    left: 45%;
    transform: translate(-50%);
    top: -25px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #38998f;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

.popup.advisory {position: fixed; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.5); width: 100%; height: 100%;display: flex;justify-content: center;align-items: center; opacity: 0; visibility: hidden;z-index: 1200; background-image: unset; transition: .6s;}
.popup.advisory.active {opacity: 1; visibility: visible;}
.popup.advisory .advisory-form {top: 0;}
.popup.advisory .close-btn {color: #fff; font-size: 20px; position:absolute;     top: 0px;  right: 12px; font-size: 32px;}

/* footer */
.footer {
    /* height: 300px; */
    width: 100%;
    background-color: #00393d;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.footer .footer-wrapper {
    width: 100%;
    height: 100%;
    clip-path: ellipse(55% 100% at 50.5% 100%);
    -webkit-clip-path: ellipse(55% 100% at 50.5% 100%);
    background-color: #fff;
}

.footer .logo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    margin-bottom: 40px;
}

.footer .logo img {
    width: 250px;
    height: 125px;
}

.list-contact {
    padding: 0;
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    position: relative;
}

.list-contact::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    border: 2px solid #d98d37;
    width: 100%;
}

.item-contact {
    display: flex;
    justify-content: center;
/*     font-family: "FS Magistral"; */
    color: #d98d37;
    font-size: 18px;
    align-items: center;
}

.list-contact .item-contact i {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.list-contact .item-contact p {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-contact .item-contact a {
    text-decoration: none;
    color: #d98d37;
}

.footer-wrapper .copyright {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
/*     font-family: "FS Magistral"; */
}

.footer-wrapper .copyright a{
    text-decoration: none;
    margin-left: 5px;
	color: #212529;
    transition: all .25s linear;
}

.footer-wrapper .copyright a:hover {
    color: #d98d37;
}

.arrow-top {
    position: absolute;
    bottom: 150px;
    right: 22px;
    width: 67px;
    height: 47px;
    background-color: #d98d37;
    clip-path: polygon(50% 0, 0% 100%, 100% 100%);
    -webkit-clip-path: polygon(50% 0, 0% 100%, 100% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.arrow-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #0aa9ab;
    z-index: -1;
    transition: height .25s linear;
}

.arrow-top:hover::after {
    height: 100%;
}

.arrow-top i {
    color: white;
    font-size: 24px;
    position: relative;
    top: 5px;
}

.slick-dots button:before {
    font-size: 19px !important;
    transition: all .25s linear;
}

.slick-dots li {
    margin: 0 12px !important;
}

.slick-dots {
    bottom: -40px !important;
    left: -30px !important;
}

.slick-dots li.slick-active button:before {
    opacity: 0.7 !important;
    color: #2b4873 !important;
   
}

.slick-dots button:hover:before {
    opacity: 0.7 !important;
    color: #2b4873 !important;
}

@keyframes opacity {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}

.selected {
    animation: opacity 2s linear;
}

.disabled {
    pointer-events: none;
}

/* section .button-nav .button-nav-item {
    background-color: #d98d37 ;
} */

section .button-nav .back-top {
    display: none;
}

section .button-nav a {
   text-decoration: none;
}

section .recommend-buy p {
	font-size: 17px;
}

section .recommend-buy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 25px;
    max-height: 25px;
	color: white;
	display: none;
}

.subscribe {
	
	position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding-top: 3vw;
    padding-bottom: 3vw;
    padding-left: 2vw;
    padding-right: 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 299;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.886) 0%, rgba(255, 255, 255, 0) 100%);
}

.subscribe svg{
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translatex(-50%);
	    width: 20vw;
    height: 4vw;
    color: rgb(255, 255, 255);
    transition: 0.3s;
}

.subscribe a {
	    top: 50%;
    position: absolute;
    font-weight: 400;
    width: auto;
    display: inline-block;
    font-size: 1vw;
    color: rgb(255, 255, 255);
    padding: 0.3vw 0.8vw;
    transition: 0.3s;
    left: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    font-size: 20px;
}

.subscribe a:hover {
	color: #fff;
    background-color: #d98d37;
    border-radius: 30px;
}

.footer-wrapper .copyright {
    padding-bottom: 130px;
}

.video {
	height: 90vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.video .button {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.video .button:hover:before {
	 width: 150px;
    height: 150px;
}
.video .button:before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #d98d37;
    width: 105px;
    height: 105px;
	border-radius: 50%;
	transition: .4s;
}
.video .button svg {
	width: 180px;
	height: 180px;
	position: relative;
}

#popup-video {
  position: fixed;
  flex-direction: row;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all ease .5s;
  z-index: 10;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#popup-video.active {
  opacity: 1;
  visibility: visible;
  transition: all ease .5s;
}

#popup-video .wrap-video {
  position: relative;
  width: 1000px;
}

#popup-video .wrap-video iframe {
	border-radius : 30px;
	overflow: hidden;
}

.news-heading {
	position: relative;
    z-index: 1;
    text-align: center;
}

.news-heading h2{
	color: #d98d37;
	margin-bottom: 50px;
}
.news-heading .font-desc {
	position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.new-wrap .img-wrap{
	overflow: hidden;
    border-radius: 20px;
    display: block;
    height: 240px;
}

.new-wrap .img-wrap img {
	transition: .4s;
}

.new-wrap .img-wrap img:hover {
	transform: scale(1.1);
}

.new-wrap h3 a {
	display: block;
    text-align: justify;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    margin-top: 12px;
}

.menu-btn {
	position: fixed;
	top: 30px;
	right:30px;
	z-index: 5;
	width: 150px;
	height: 150px;
	cursor: pointer;
	transition: .4s;
}

.menu-btn:hover {
	transform: scale(1.1);
}

.video .st0 {fill: #FFF !important;}

.menu-btn svg {
	color: #61dcde;
	fill: #61dcde;
}

.menu-btn span{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #61dcde;
    border-bottom: 2px solid #61dcde;
}

.menu-container {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 300;
	width: 0;
	transition: .5s;
}

.menu-container .menu-wrap{
	position: fixed;
    width: 0%;
    height: 100%;
    background-color: #fff;
    top: 0;
    right: 0;
    z-index: 1000;
	padding: 0;
	transition: .5s;
}

.menu-container .menu-wrap ul {
	    list-style: none;
}

.menu-container .menu-wrap ul li a {
	text-decoration: none;
}

.menu-container .menu-wrap ul li a h3{
	font-size: 24px;
	color: #000;
	text-transform: uppercase;
}

.menu-container .menu-wrap ul li + li {
	margin-top: 42px;
}

.menu-container.active {
	width: 80%;
}

.menu-container.active .menu-wrap{
	width: 20%;
	padding: 90px 36px;
}

.menu-container .menu-wrap .close-btn{
	cursor: pointer;
	    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border: 1px solid #000;
    border-radius: 4px;
    padding: 12px 16px;
    position: absolute;
    top: 10px;
    left: 10px;
	transition: .3;
}

.menu-container .menu-wrap .close-btn:hover {
	opacity: 0.5;
}