.map-container-wrap {
    background: white;
    width: 100%;
    margin: auto;
    position: relative;
}

.map-info {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 98;
    background: linear-gradient(to bottom, white 0%, transparent 100%);
    padding-left: 0;
}

.map-info-container {
    position: relative;
    width: 1300px;
    max-width: 100%;
    margin: auto;
    font-family: "Titillium Web", sans-serif;
}

.map-info-inner {
    width: 100%;
}

.map-info-container h2 {
    font-weight: 900;
    font-size: 48px;
    text-align: left;
    margin: 50px 0;
    padding-left: 130px;
}

.map-info-container p {
    font-weight: 400;
    font-size: 18px;
    text-align: left;
}

.map-container {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    display: block;
}

area {
    cursor: pointer;
}

.site-info-container {
    width: 1300px;
    max-width: 100%;
    margin: 30px auto;
    padding: 0 20px;
    font-family: "Titillium Web", sans-serif;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.site-info-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-info-header {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
}

.site-info-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
}

.site-info-icon img {
    max-width: 100%;
    max-height: 100%;
}

.site-info-title {
    font-weight: 900;
    font-size: 36px;
    text-transform: uppercase;
    margin: 0;
    color: #333;
}

.site-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 20px;
}

.site-info-data {
    flex-direction: column;
    animation: flex;
    display: flex;
    height: 100%;
}

.site-info-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    max-height: 450px;
    overflow: auto;
}

.site-info-text h4 {
    margin: 15px 0;
}

.site-info-carousel {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.site-info-carousel .swiper {
    width: 100%;
    height: 100%;
}

.site-info-carousel .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    height: 450px !important;
    justify-content: center;
    align-items: center;
}

.site-info-carousel .swiper-slide img {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

:root {
    --swiper-navigation-color: #ffffff;
    --swiper-pagination-color: #ffffff;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    top: 460px !important;
}

.swiper-pagination-bullet {
    background: #D9D9D9 !important;
    width: 20px;
    height: 20px;
    opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #BEAB93 !important;
}

@media (max-width: 768px) {
    .map-info-inner {
        width: 100%;
    }

    .map-info-container h2 {
        font-size: 44px;
        margin: 15px 0;
        padding: 0;
        text-align: center;
    }

    .map-info-container p {
        padding: 0 15px;
    }

    .site-info-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .site-info-title {
        font-size: 28px;
    }

    .site-info-text {
        max-height: 100%;
    }
}
