.section-map .map-item .map-img img,
.section-map .map-img-top img,
.section-map .map-img-bot img {
    border-radius: 1rem;
    width: 100%;
}

.section-map .map-item::after,
.section-map .map-content-left-top::after,
.section-map .map-content-left-bottom::after {
    content: '';
    background: linear-gradient(179.98deg, rgba(255, 255, 255, 0) 27.39%, #00237F 99.98%);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    border-radius: 1rem;
    transition: 0.3s;
}

.section-map .map-item .map-content {
    position: absolute;
    bottom: clamp(1.5rem, 2vw, 30px);
    right: clamp(1.5rem, 2vw, 2rem);
    left: clamp(1.5rem, 2vw, 2rem);
    z-index: 2;
}

.section-map .map-text-left-top,
.section-map .map-text-left-bottom {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    left: 1.5rem;
    z-index: 2;
}

.section-map .map-content-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.section-map .map-item .map-content .map-title,
.section-map .map-text-left-top .map-title,
.section-map .map-text-left-bottom .map-title {
    color: var(--white);
    font-family: var(--bold_font);
    font-size: 1.25rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.section-map .map-item .map-content .map-subtitle,
.section-map .map-text-left-top .map-subtitle,
.section-map .map-text-left-bottom .map-subtitle {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.section-map a.map-content-left-top:hover::after,
.section-map a.map-content-left-bottom:hover::after {
    opacity: 0;
}

.section-map .map-content-left-top::before,
.section-map .map-content-left-bottom::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    border-radius: 1rem;
    background: linear-gradient(179.98deg, rgba(255, 255, 255, 0) 27.39%, var(--color2) 99.98%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-map a.map-content-left-top:hover::before,
.section-map a.map-content-left-bottom:hover::before {
    opacity: 1;
}

.section-map .sw-navigation.sw-between .swiper-nav-next,
.section-map .sw-navigation.sw-between .swiper-nav-prev {
    top: 50%;
}

.section-map .sw-navigation.sw-between .swiper-nav-next {
    right: 2rem;
}

.section-map .sw-navigation.sw-between .swiper-nav-prev {
    left: 2rem;
}

@media (max-width: 991.98px) {
    .section-map .sw {
        margin-top: 1.25rem;
    }

    .section-map .map-item .map-img img {
        min-height: 340px;
    }

    .section-map .sw-navigation {
        position: absolute;
        left: 1.5rem;
        top: 1.5rem;
        z-index: 3;
        margin-top: 0;
    }

    .section-map .map-item .map-content .map-subtitle {
        max-height: 100px;
        overflow-y: auto;
    }
}