.map-filter {
    display: flex;
    justify-content: center;
}

.map-filter__btn {
    display: inline-block;
    font-weight: 400;
    text-decoration: none;
    font-size: clamp(1.7rem, 1.3rem + 1.3vw, 3rem);
    color: #fff;
    position: relative;
    margin: 0 3vw;
    opacity: 0.8;
    text-align: center;
    padding-bottom: 10px;
    text-align: center;
    
}

.map-filter__btn:hover {
    opacity: 1;
}

.map-filter__btn:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: clamp(0.375rem, 0.2668rem + 0.4027vw, 0.75rem);
    border-radius: 12px;
    background: #FEDC00;
    opacity: 0;
}

.map-filter__btn.active {
    opacity: 1;
    font-weight: 700;
}

.map-filter__btn.active:after {
    opacity: 1;
}

.map-preview {
    background: #fff;
    padding: 10px 15px;
    box-shadow: 0 4px 45px 0 rgba(14, 38, 72, .1);
}

.map-preview__img {
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
}

.map-preview__img img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

.map-icon {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background: #1B4580 url(../img/map/map-icon.svg) no-repeat center;
    background-size: 16px;
    margin-inline-start: auto;
}

.map-preview h2,
.map-preview .h2 {
    color: #1B4580;
}

@media (max-width: 767px) {
    .section.section--content.tab-content {
        padding-top: 10px;
    }
    .map-icon {
        width: 28px;
        height: 28px;
        background-size: 12px;
    }

    .map-filter {
        overflow: hidden;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .map-filter__btn {
        flex: 0 0 auto;
        font-size: 18px;
    }
    .map-filter__btn:after {
        padding-bottom: -3px;
    }
}

.slider-activity {
    max-width: 1170px;
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 24px;
    margin-bottom: clamp(3.75rem, 2.6678rem + 4.0268vw, 7.5rem);

}

.slider-activity .swiper {
    overflow: visible;
}

.slider-activity .swiper-slide {
    width: 240px;
    height: auto;
}


.slide-activity {
    height: 100%;
    color: #0D213E;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 8px 0px rgba(0, 0, 0, .1);
    padding: 6px;
    padding-bottom: 15px;
    font-size: clamp(1rem, 0.9639rem + 0.1342vw, 1.125rem);
    position: relative;

    width: 300px;
    margin: 0 auto 20px auto;
    max-width: 100%;
}

.slide-activity__img {
    overflow: hidden;
    height: 120px;
    margin-bottom: 8px;
}

.slide-activity__img--placeholder {
    background-image: url("data:image/svg+xml,%3Csvg width='240' height='165' viewBox='0 0 240 165' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_313_2)'%3E%3Cpath d='M162 75.2898C172.71 75.2898 181.39 66.6098 181.39 55.8998C181.39 45.1898 172.71 36.5098 162 36.5098C151.29 36.5098 142.61 45.1898 142.61 55.8998C142.61 66.6098 151.29 75.2898 162 75.2898Z' fill='%23BBBDBF'/%3E%3Cpath d='M0 0V164.56H240V0H0ZM231.89 156.45H224.81L173.62 105.26L146.57 132.31L89.42 75.16L8.13 156.45H8.12V8.11H231.89V156.44V156.45Z' fill='%23BBBDBF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_313_2'%3E%3Crect width='240' height='164.56' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80px;
}

.slide-activity__img img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.slide-activity__title {
    margin-bottom: 4px;
    text-decoration: none;
    color: #0D213E;
    font-weight: 700;
    display: block;
    line-height: 1;
    text-align: center;
    font-size: clamp(1.375rem, 1.1225rem + 0.9396vw, 2.25rem);
}

.slide-activity__title:hover {
    color: #1B4580;
}

.next-activity,
.prev-activity {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    outline: none;
    border: none;
    border-radius: 50%;
    background-color: #009444;
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
}

.next-activity:before,
.prev-activity:before,
.next-activity:after,
.prev-activity:after {
    display: none;
}

.next-activity {
    left: 0px !important;
    right: auto !important;
    background-image: url(../img/activity/left.svg);
}

.prev-activity {
    left: auto !important;
    right: 0px !important;
    background-image: url(../img/activity/right.svg);
}


.activity-decor {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    z-index: 0;
    transform: scaleX(-1);
}


@media (min-width: 1199px) {

    .slider-activity .swiper-slide:not(.swiper-slide-visible) {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }


}

@media (max-width: 1199px) {

    .next-activity,
    .prev-activity {
        display: none;
    }

    .slider-activity {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 767px) {

    .slide-activity {
        margin-bottom: 0;
    }
    .slide-activity__img {
        height: 140px;
    }
}