/* scrollbar */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.1);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.3);
}

/**
 * heading
 */
h1,h2,h3,h4,h5,h6 {
    line-height: 150%;
}

a {
    color: #000;
}

a:hover {
    text-decoration: none;
}

/**
 * override bootstrap
 */
.btn {
    background-color: #004696;
    color: #FFF;
    width: auto;
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 10px;
    align-items: center;
}

.btn .btn-icon {
    margin-right: 5px;
}

.btn-primary,
.btn-primary.btn-inactive:hover  {
    background-color: #004696;
}

.btn-danger,
.btn-danger.btn-inactive:hover  {
    background-color: #ED533F;
}

.btn-light,
.btn-light:hover  {
    color: #212529;
    background-color: #f6f6f6;
    border-color: #f1f1f1;
}

.btn-inactive {
    cursor: default !important;
}

.btn.btn-extra {
    padding: 8px 30px;
    border-radius: 30px;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.btn-extra.with-arrow {
    padding-right: 50px;
}

.btn.btn-extra.with-arrow::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: url("../images/ic-arrow-ltr-white.svg") no-repeat center center;
    background-size: contain;
    transition: all 0.3s ease;
}

.btn.btn-extra.with-arrow:hover::after {
    right: 15px;
}

.input-group.customize {
    flex: 1;
    position: relative;
}

.input-group.customize .input-group-append,
.input-group.customize .input-group-prepend {
    position: absolute;
    z-index: 999;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-group.customize .input-group-append {
    right: 10px;
    cursor: pointer;
}

.input-group.customize .input-group-prepend {
    left: 10px;
}

.input-group.customize .input-group-text {
    height: 16px;
    width: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    background-color: transparent;
}

.input-group.customize .input-group-prepend .input-group-text {
    background-image: url(../images/ic-search.svg);
}

.input-group.customize .input-group-append .input-group-text {
    background-image: url(../images/ic-close.svg);
    height: 14px;
    width: 14px;
}

.input-group.customize input,
.btn.customize {
    height: 50px; 
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #333; 
    background-color: rgba(248, 248, 248, 1); 
    border-radius: 5px !important;
    border: 1px solid rgba(0, 70, 150, 0.5);
}


.input-group.customize input {
    z-index: 1;
    padding: 5px 40px 5px 40px;
}

.input-group.customize input:focus,
.btn.customize:focus {
    outline: none !important;
    box-shadow: none !important;
}

.list-style1 li {
    display: flex; 
    align-items: center; 
    padding-left: 40px;
    padding-bottom: 10px;
    position: relative;
}

.list-style1 li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background-image: url(../images/project-ic-circle-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain; 
    background-position: center;
}


.modal .modal-content {
    border-radius: 20px;
}
.modal .modal-content .modal-title {
    font-weight: bold;
}

/* =========================
   CAROUSEL
========================= */
.carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel.with-corner {
    border-radius: 10px;
    transform: translateZ(0);
}

.carousel-inner {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    height: 0;
    padding-top: 56.25%;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-indicators {
    position: absolute;
    display: flex;
    z-index: 10;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    transition: all 0.4s ease-in-out;
}

.carousel-indicators li.active {
    background-color: #ed533f;
    width: 30px;
    height: 12px;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0px 0px 1px rgba(0,0,0,0.3);
    transition: background-color 0.3s;
    opacity: 1.0;
    border-radius: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255,255,255,0.5);
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-control-next .carousel-control-next-icon,
.carousel-control-prev .carousel-control-prev-icon {
    width: 100%;
    height: 100%;
    background-image: url(../images/ic-arrow1-ltr-white.svg);
    background-size: 35%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.carousel-control-prev .carousel-control-prev-icon {
    transform: scaleX(-1);
}

@media (max-width: 991.98px) {
    .carousel-control-next, 
    .carousel-control-prev {
        display: none;
    }
}

/**
 * body,html
 */
body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 14px;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;

    position: relative;
    background-color: #253A52;

    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

header, footer {
    width: 100%;
}

/**
 * custom box
 */
.custom-box1 {
    width: 100%;
    opacity: 1;
    border-width: 2px;
    border-color: #F4941F;
    border-style: dashed;
    border-top-left-radius: 15px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 60px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 30px;
    background-color: rgba(0, 70, 150, .8);
}

.custom-box1 img {
    height: 45px;
    align-self: center;
}

.custom-box1 h5 {
    color: #F4941F;
    padding: 15px 0;
    margin: 0;
}

.text-underline {
    width: fit-content;
    border-bottom: 3px solid #C2C2C2;
    padding-bottom: 8px;
}

.main-contents {
    width: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background-color: #FFF;
}

/**
 * EVENT BOX
 */
.event-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px; 
    width: 100%;
    position: relative; 
}

.event-image-wrapper {
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.event-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-info {
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    padding: 20px 20px 30px 20px; 
    box-sizing: border-box;
    margin-top: -80px;
    border-radius: 70px 70px 40px 40px; 
    box-shadow: 0px -8px 15px 0px rgba(0, 0, 0, 0.07);

    align-items: center;
    
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column; 
    height: 100%;
}

.event-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #007bff;
    font-weight: bold;
}

.event-title {
    font-size: 1.1rem;
    color: #333;
    margin: 10px 0;
    flex-grow: 1; 

    display: flex;             
    align-items: center;      
    justify-content: center;   
}

/**
 * zones
 */
.zone-tags {
    width: 100%;
    text-align: center;
}

.zone-tags a {
    display: inline-block;
    margin: 5px 0;
    padding: 5px 10px;
    border: 1px dashed #fff; 
    border-radius: 30px;
    color: #fff;
    background: rgba(0, 70, 150, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.zone-tags a:hover {
    background: rgba(0, 70, 150, 1.0);
    color: #fff;
}

/**
 * 404
 */
.error404 header {
    background-color: #004696;
}

.error404 .main-contents {
    min-height: auto;
}

/**
 * HOME
 */

.page-template-page-home {}

.page-template-page-home header {
    background: linear-gradient(180deg, #004696 5.29%, rgba(0, 80, 109, 0) 100%);
    min-height: 300px;
}

@media (max-width: 991.98px) {
    .page-template-page-home header {
        min-height: 180px;
    }
}

/**
 * HOME - SECTION 1
 */
.home-section1 {
    position: relative;
    height: 100dvh;
    overflow: hidden;
}

.home-section1 header {
    position: relative;
    z-index: 2;
}

.home-section1 .slider-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    /*background: linear-gradient(180deg, #004696 5.29%, rgba(0, 80, 109, 0) 100%);*/
    z-index: 2;
}

.home-section1 .carousel,
.home-section1 .carousel-inner,
.home-section1 .carousel-item {
    height: 100%;
    padding-top: 0 !important;
}

.home-section1 .carousel-caption {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-image: url(../images/home-slider-bg.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
}

.home-section1 .carousel-caption .container {
    width: 100%;
    max-width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8); 
}


@media (max-width: 991.98px) {
    .home-section1 .carousel-caption {
        background: none;
    }

    .home-section1 .carousel-caption .container {
        background-color: rgba(0, 70, 150, .3);
    }

    .home-section1 .carousel-caption h3 {
        font-size: 1.5rem;
    }

    .home-section1 .carousel-caption h6 {
        font-size: 1.2rem;
    }
}

.home-section1 .carousel-control-next,
.home-section1 .carousel-control-prev {
    width: 58px;
    height: 116px;
    padding-top: 50px;
    padding-right: 25px;
    padding-bottom: 50px;
    padding-left: 25px;
    background-color: rgba(255, 255, 255, .5);
}

.home-section1 .carousel-control-next {
    right: -10px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.home-section1 .carousel-control-prev {
    left: -10px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.home-section1 .carousel-control-next-icon,
.home-section1 .carousel-control-prev-icon {
    background-color: transparent;
    background-image: url(../images/ic-arrow2-ltr-white.svg);
    background-repeat: no-repeat;
    background-size: 8px 16px;
}

.home-section1 .carousel-control-prev-icon {
    transform: scaleX(-1);
}

/**
 * HOME - SECTION 2
 */
.home-section2 {
    position: relative;
    background-color: #F2ECE6CC;
    background-image: url(../images/home-section2-bg2.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 350px auto;
}
.home-section2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/home-section2-bg1.svg);
    background-repeat: no-repeat;
    background-position: top left;
    z-index: 1;
    background-size: 100px auto;
    pointer-events: none;
}

.home-section2 h5 {
    color: #004696;
}

.home-section2 .list-unstyled li {
    display: flex;
    align-items: center; 
    margin-bottom: 12px;
}

.home-section2 .list-unstyled li::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background-image: url(../images/home-ic-circle-blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.home-section2 .capital-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    border-radius: 10px;
    background-color: rgba(255,255,255,.95);
    padding: 15px 30px;
}

.home-section2 .capital-box p {
    padding: 0;
    margin: 0;
    color: #004696;
}

.home-section2 .capital-box h3 {
    color: #ED533F;
    margin: 0;
    padding: 0;
}

@media (max-width: 991.98px) {
    .home-section2 {
        background-size: 80% auto;
    }

    .home-section2::before {
        background: none;
    }

    .home-section2 .capital-box  {
        bottom: 15px;
    }
}

/**
 * HOME - SECTION 3
 */
.home-section3 {
    position: relative;
    z-index: 1;
    width: 100%;
}

.home-section3::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    background-image: url(../images/home-section3-bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.home-section3::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(0, 70, 150, 0.75);
}

.home-section3 .zone-card {
    border: 1.5px dashed #ffffff;
    border-radius: 15px;
    overflow: hidden;
    padding: 8px;
    width: 100%;
    height: 100%;
    display: grid;
}
.home-section3 .zone-card .img-wrap {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.home-section3 .zone-card .img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-section3 .zone-card .zone-info {
    padding: 14px 20px;
    background: #F28C28;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    border-radius: 0 0 15px 15px;
}
.home-section3 .zone-card .zone-info .arrow {
    width: 24px;
    height: 24px;
    background: url(../images/ic-arrow-ltr-white.svg) no-repeat center center;    
}

.home-section3 .carousel-wrapper {
    width: 100%;
    overflow: hidden;
}
.home-section3 .carousel-inner-custom {
    display: flex;
    transition: transform 0.5s ease;
    margin: 0 -15px;
}
.home-section3 .carousel-item-custom {
    display: block !important;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    box-sizing: border-box;
    padding: 0 15px;
    border: 2px solid transparent;
}

.home-section3 .custom-carousel {
    position: relative;
    padding: 0 100px;
    box-sizing: border-box;
}

.home-section3 .carousel-control-next,
.home-section3 .carousel-control-prev {
    width: 65px;
    height: 65px;
    display: block !important;
}

.home-section3 .carousel-control-next {
    right: 20px;
}

.home-section3 .carousel-control-prev {
    left: 20px;
}

.home-section3 .carousel-control-next-icon, 
.home-section3 .carousel-control-prev-icon {
    background-image: url(../images/ic-arrow1-ltr-white.svg);
    background-size: 35%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991.98px) {
    .home-section3 .custom-carousel {
        padding: 0 80px;
    }
    .home-section3 .carousel-item-custom {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .home-section3 .carousel-control-next,
    .home-section3 .carousel-control-prev {
        width: 50px;
        height: 50px;
    }

}

@media (max-width: 767.98px) {
    .home-section3 .custom-carousel {
        padding: 0 80px;
    }
    .home-section3 .carousel-item-custom {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .home-section3 .carousel-control-prev.custom-prev {
        left: 5px; 
    }
    .home-section3 .carousel-control-next.custom-next {
        right: 5px; 
    }
}

/**
 * HOME - SECTION 4
 */
.home-section4 h5 {
    color: #004696;
}

.home-section4 .line-white {
    background: #C2C2C2;
}

/**
 * HOME - SECTION 5
 */
.home-section5 {
    overflow: hidden; 
    background-color: #004696;
}

.home-section5 .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
}

.home-section5 .carousel-item {
    height: auto;
    padding-top: 0;
    aspect-ratio: unset;
    
    display: none;
    position: relative;
    width: 100%;
    transition: transform 0.6s ease-in-out;
    backface-visibility: hidden;
    perspective: 1000px;
}

.home-section5 .carousel-item.active {
    display: block;
}

.home-section5 .carousel-item-next,
.home-section5 .carousel-item-prev {
    position: absolute;
    top: 0;
    display: block;
}

.home-section5 .carousel-item-next.carousel-item-left,
.home-section5 .carousel-item-prev.carousel-item-right {
    transform: translateX(0);
}

.home-section5 .active.carousel-item-right,
.home-section5 .carousel-item-next {
    transform: translateX(100%);
}

.home-section5 .active.carousel-item-left,
.home-section5 .carousel-item-prev {
    transform: translateX(-100%);
}

.home-section5 .carousel-image-pane {
    height: 100%;
    min-height: 750px;
    background-size: cover;
    background-position: center;
}

.home-section5 .carousel-content-pane {
    background-color: #004696;
    color: #ffffff;
    padding: 6rem 4rem;
    padding-top: calc(6rem - 80px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-section5 .text-underline {
    border-bottom-color: #FFF;
}

.home-section5 .content-icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.home-section5 .content-icon img {
    width: 30px;
    height: 30px;
    top: auto;
    left: auto;
}

.home-section5 .content-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.home-section5 .content-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
}

.home-section5 .btn-danger {
    background-color: #e74c3c;
    border-color: #e74c3c;
    font-weight: bold;
    align-self: flex-start; 
}

.home-section5 .carousel-inner {
    background-color: #004696;
}

.home-section5 .carousel-custom-controls {
    position: absolute;
    z-index: 10;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.home-section5 .carousel-custom-controls .row {
    align-items: flex-end;
    margin-left: 0;
}

.home-section5 .carousel-button {
    padding: 6rem 4rem;
}

.home-section5 .carousel-custom-controls a {
    color: #ffffff;
    border: 1px solid #F4941F;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    pointer-events: auto;
}

.home-section5 .carousel-custom-controls a:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 991.98px) {
    .home-section5 .carousel-custom-controls {
        position: relative;
        height: auto;
    }

    .home-section5 .carousel-content-pane {
        padding: 3rem;
        padding-bottom: 0;
    }

    .home-section5 .carousel-button {
        padding: 2rem 3rem 3rem 3rem;
    }

    .home-section5 .carousel-image-pane {
        min-height: 30vh;
    }

    .home-section5 .content-icon {
        display: none;
    }
}


/**
 * HOME - SECTION 6
 */
.home-section6 {}

.home-section6 .section-wrapper {
    background-color: #004696;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 20px;
}

.home-section6 .map-pane {
    padding: 0;
    overflow: hidden;
}

.home-section6 .map-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-section6 .info-pane {
    padding: 3rem;
    background-color: #00506D;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.home-section6 .info-pane h3 {
    font-weight: bold;
}

@media (max-width: 991.98px) {
    .home-section6 .container {
        max-width: 100%;
    }

    .home-section6 .section-wrapper {
        border-radius: 0;
    }

    .home-section6 .map-pane,
    .home-section6 .info-pane {
        border-radius: 0 !important;
    }

    .home-section6 .info-pane {
        text-align: center;
        align-items: center;
    }
}

/**
 * GALLERY
 */
.gallery {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.8);
    width: 100dvw;
    height: 100dvh;
    display: none;
}

.gallery .carousel {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100dvw;
}

.gallery .carousel .carousel-item img {
    width: 100% !important;
}

.gallery.active,
.gallery .carousel.active {
    display: flex;
}

.gallery .btn-close {
    position: absolute;
    z-index: 999999;
    width: 30px;
    height: 30px;
    background-color: #F8F8F8;
    background-image: url(../images/ic-close.svg);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 15px;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

@media (max-width: 991.98px) {
    .gallery .carousel-control-prev,
    .gallery .carousel-control-next {
        display: none;
    }
}

/**
 * PROJECT
 */
.page-project {}
.page-project .projects-top {
    background-image: url(../images/project-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.page-project .capital-services {}

.page-project .capital-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center; 
    text-align: center; 
}

.page-project .capital-info img {
    width: 120px;
}

.page-project .capital-info span {
    font-weight: bold;
    font-size: 20px;
    display: inline-block;
    padding: 0 5px;
}

.page-project .capital-info .highlight {
    display: inline-flex;
    align-items: center;
    background-color: #ED533F;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    text-decoration: none;
}

/**
 * EVENTS
 */
.page-events .main-contents {
    min-height: auto;
}

.page-events header,
.page-events .main-contents {
    background-color: #004696;
}

.page-events .main-contents.detail {
    background-color: #FFF;
}

.page-events .event-info {
    border-radius: 130px;
}

/**
 * ZONES, BLOCK, UNIT
 */
.zone-unit header,
.zone-unit .main-contents {
    background-color: #004696;
}

.zone-unit .main-contents {
    min-height: auto;
}

.zone-unit .top-wrapper {}

.zone-unit .contents-wrapper {
    background-color: #FFF;
}

.zone-unit .list-item a {
    color: #000;
    width: 100%;
}

.zone-unit .list-item img {
    width: 100%;
    border-radius: 10px;
}

.zone-unit .list-zone a {
    width: 100%;
    aspect-ratio: 9 / 6;
    font-weight: bold;
}

.zone-unit .list-zone img {
    height: calc(100% - 30px);
    object-fit: cover;
}

.zone-unit .contents-top li a {
    background-color: rgba(255,255,255,0.1);
}
.zone-unit .contents-top li.active a {
    background-color: #ed533f;
}

.zone-unit .contents-wrapper .line-white {
    background: #C2C2C2;
}

.zone-unit .top-wrapper .utitlities {
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.zone-unit .top-wrapper .utitlities .list-item {
    flex: 1 1 150px;
    max-width: 16.6666%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    font-weight: normal;
}

.zone-unit .top-wrapper .utitlities .list-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255,255,255,0.1);
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 15px 5px;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    font-weight: normal;
    cursor: default;
}

.zone-unit .top-wrapper .utitlities .list-item p {
    padding: 0;
    margin: 0;
    line-height: 120%;
}

.zone-unit .top-wrapper .utitlities .list-item img {
    width: 50px;
}

.zone-unit .top-wrapper .utitlities .list-item .title {
    
}

.zone-unit .top-wrapper .utitlities .list-item .number {
    font-size: 36px;
    padding: 0;
    margin: 0;
}

.zone-unit .utility-item .img-wrapper {
    width: 100%;
    aspect-ratio: 9 / 6;
    border-radius: 10px;
    overflow: hidden;
}

.zone-unit .utility-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zone-unit .top-wrapper .zone-locate {
    position: relative;   
}

.zone-unit .top-wrapper .zone-locate img.background {
    border: 10px solid #FFF;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.zone-unit .top-wrapper .zone-locate a:hover {
    color: #FFF;
}
.zone-unit .top-wrapper .zone-locate .btn-location {
    position: absolute;
    bottom: -60px;
    flex-direction: column;
    border: 10px solid #FFF;
    border-radius: 150px;
    width: 100%;
    background-color: #ED533F;
    padding: 15px;
}

.zone-unit .top-wrapper .zone-locate .btn-location p {
    padding: 0;
    margin: 0;
}

.zone-unit .top-wrapper .zone-locate .btn-location .text-large {
    padding-top: 10px;
}
.zone-unit .top-wrapper .zone-locate .btn-location .text-small {
    font-size: 11px;
    padding-top: 3px;
}

.zone-unit .filter-toolbar {
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
}

.zone-unit .filter-toolbar .dropdown {
    margin-left: 15px;
}

.zone-unit .filter-toolbar .dropdown .btn {
    min-width: 180px;
    width: 100%;
}

.zone-unit .filter-toolbar .dropdown .dropdown-toggle::after {}

.zone-unit .filter-toolbar .dropdown .dropdown-menu {
    width: 100%;
}

.zone-unit .property-grid .col-lg-2 {
    margin-bottom: 24px;
}

.zone-unit .property-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background-color: #fff;
    height: 100%;
}

.zone-unit .card-img-wrapper {
    position: relative;
}

.zone-unit .unit-img-wrapper {
    height: 165px;
}
.zone-unit .unit-img-wrapper img {
    border-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zone-unit .property-code-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #004696; 
    color: #fff;
    padding: 5px 15px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    white-space: nowrap;
}

.zone-unit .property-code-badge .info-icon {
    display: inline-block;
    color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    text-align: center;
    margin-left: 8px;
    background-image: url(../images/unit-ic-info-circle.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.zone-unit .property-card .card-body {
    padding: 15px;
    text-align: left;
}

.zone-unit .property-card .card-text {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
}

.zone-unit .property-card .card-text:last-child {
    margin-bottom: 0;
}

.zone-unit .property-card .card-text img {
    margin-right: 10px;
    color: #888;
    width: 18px;
    text-align: center;
}

.zone-unit .unit-item {
    display: none;
}

.zone-unit .unit-item .card-img-wrapper,
.zone-unit .unit-item .property-code-badge {
    cursor: pointer;
}

.zone-unit .modal-body {
    color: #333;
}
.zone-unit .modal-body .unit-name {
    font-size: 18px;
    color: #004696;
}
.zone-unit .modal-body ul {
    padding: 0 15px;
}

.zone-unit .modal-body ul li {
    line-height: 200%;
}

.zone-unit .unit-sold {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.zone-unit .unit-sold span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;

  background-color: #d32f2f;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;

  border-radius: 50%;
  border: 4px solid #000;
  outline: 5px solid #F7F1E6;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);

  transform: rotate(-8deg);
  font-family: "Arial Black", sans-serif;
}

.slider-zones .carousel.with-corner {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.unit-detail .unit-name {
    font-size: 20px;
    font-weight: bold;
    color: #004696;
}

.unit-detail .special-feature {
    color: #333;
}

.unit-detail .feature-icon {
    margin-right: 5px;
    width: 26px;
    height: 26px;
}

.unit-detail .list-feature {

}

.unit-detail .list-feature li {
    line-height: 200%;
}

.unit-detail .list-feature .status.sold {
    color: green;
}

.unit-detail .list-feature .status.unsold {
    color: red;
}

.unit-detail .list-feature .status.deposit {
    color: #FFBC21;
}

.unit-detail .slider {
    display: flex;
    align-items: center;  
    justify-content: center;
}

.unit-detail .default-thumb {
    border-radius: 10px;
}

.unit-detail .attach-files a {
    position: relative;
    margin: 0 5px 5px 0;
}

.unit-detail .attach-files a::after {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../images/ic-download.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;

    margin-left: 10px;
}

.unit-detail .video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.unit-detail .video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

@media (max-width: 991.98px) {
    .slider-zones .carousel.with-corner {
        border-radius: 10px;
    }

    .zone-unit .top-wrapper {
        display: flex;
        flex-direction: column-reverse;
    }

    .zone-unit.single .top-wrapper {
        flex-direction: column;
    }

    .zone-unit .top-wrapper .utitlities .list-item {
        max-width: 100%;
    }

    .zone-unit .filter-toolbar {
        flex-direction: column;
    }

    .zone-unit .filter-toolbar .dropdown {
        margin-left: 0;
        margin-bottom: 15px;
    }

    .zone-unit .property-code-badge {
        padding: 15px;
        border-radius: 30px;
        top: -24px;
    }

    .zone-unit .unit-img-wrapper {
        height: 200px;
    }

    .unit-detail .list-feature {
        padding: 0 20px;
    }
}

/**
 * AUTH
 */
.page-template-page-auth-php {
    
}
.page-template-page-auth-php .main-contents {
    min-height: auto;
    background-image: url(../images/default-page-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-template-page-auth-php .contents-wrapper {
    background-color: rgba(0, 70, 150, 0.9);
}

.page-template-page-auth-php header {
    background: none;
}

.page-template-page-auth-php .input-group.customize .input-group-prepend .input-group-text.username {
    background-image: url(../images/ic-user.svg);
}

.page-template-page-auth-php .input-group.customize .input-group-prepend .input-group-text.password {
    background-image: url(../images/ic-lock.svg);
    width: 20px;
    height: 20px;
}

.page-template-page-auth-php .btn.customize {
    width: 100%;
    text-align: center;
    justify-content: center;
    background-color: #ED533F;
    color: #FFF;
}
