.projects-locations .container {
    padding-left: 4vw;
    padding-right: 4vw;
}
.world-preview__decor {
    position: absolute;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100vw;
    z-index: 1;
    /* z-index: -1; */
    /* background-blend-mode: multiply; */
    mix-blend-mode: multiply;
}


@media (min-width: 1200px) {
    .mySwiper-world {
        margin: 200px 0;    
    }
}


.mySwiper-world .swiper-slide {
    height: auto;
}

.world-preview {
    height: 440px;
    background: #fff;
    box-shadow: 0 0 44px 0 rgba(19, 59, 240, 0.07);
    overflow: hidden;
    border-radius: 10px;
    padding: clamp(1.25rem, 0.9307rem + 1.1881vw, 2rem);
    display: flex;
    flex-direction: column;
}

.world-preview__title {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    flex: 1;
}
.world-preview__flag {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.world-preview__content {
    transform: translateY(100%);
    transition: all 0.4s ease;
    position: relative;
    margin-top: auto;
}

.world-preview__total {
    transform: translateY(-100%);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding-right: 24px;
    position: relative;
}
.world-preview:not(.empty-parameters) .world-preview__total:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 4px;
    width: 22px;
    height: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 22px;
    background-image: url(../../../assets/img/icons/plus.svg);
    transition: all 0.4s ease;
}
.world-preview__total span {
    display: block;
    font-size: 45px;
    line-height: 1;
    padding-top: 2px;
    letter-spacing: normal;
}

.world-preview__info {
    opacity: 0;
    transition: 0.2s, max-height .2s;
    overflow: hidden;
    border-top: 1px solid #05044A;
    max-height: 0;
    overflow: hidden;
    transform: translateY(100%);
}
@keyframes identifier {
    from {  }
    to {  }
}
@-o-keyframes identifier {
    from {  }
    to {  }
}
@-moz-keyframes identifier {
    from {  }
    to {  }
}
@keyframes identifier {
    from {  }
    to {  }
}

.world-preview__parameters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px 8px;
}

.world-preview__param {
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    width: calc(50% - 4px);
}

.world-preview__param span {
    display: block;
    letter-spacing: .025em;
    font-size: 24px;
    margin-bottom: 1px;
}

.world-preview__map {
    margin: 0 0 20px 0;
/*    flex: 1;*/
    height: 210px;
    
    display: flex;
    align-items: center;
    justify-content: center;
/*    transition: all 0.2s ease;*/
    opacity: 1;
}
.world-preview__map img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: .3s;
}



.world-preview:hover .world-preview__content {
    transform: translateY(0%);
}
.world-preview:hover .world-preview__total {
    transform: translateY(0%);
}
.world-preview:hover .world-preview__info {
    opacity: 1;
    display: block;
    max-height: 1000px;
    transform: translateY(0);
    margin-top: 34px;
    padding-top: 34px;
}
.world-preview:not(.empty-parameters):hover .world-preview__map {
/*
    display: none;
    opacity: 0;
*/
    opacity: 0;
    height: 0;
    overflow: hidden;
}
.world-preview:not(.empty-parameters):hover .world-preview__map img {
        opacity: 0;
}

.world-preview:hover .world-preview__total:before {
    background-image: url(../../../assets/img/icons/minus.svg);
}

@media (min-width: 1200px) {

    .mySwiper-world {
        overflow: visible;
    }
    .swiper-button-next-world,
    .swiper-button-prev-world {
        display: none;
    }
    .mySwiper-world .swiper-wrapper {
        flex-wrap: wrap;
        margin-left: -10px;
        margin-right: -10px;
    }
    .mySwiper-world .swiper-slide {
        margin-left: 10px;
        margin-right: 10px;
        width: calc(25% - 20px);
        height: auto;
        position: relative;
    }

}

@media (max-width: 1199px) {

    .mySwiper-world .swiper-button-prev,
    .mySwiper-world .swiper-button-next {
        width: 44px;
        height: 24px;
        border: none;
        outline: none;
        background-image: url(../../../assets/img/icons/arrow.svg);
        background-size: contain;
        margin: 0 15px;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    .mySwiper-world .swiper-button-prev {
        transform: scaleX(-1);
    }
    .mySwiper-world .swiper-button-prev:before,
    .mySwiper-world .swiper-button-next:before,
    .mySwiper-world .swiper-button-prev:after,
    .mySwiper-world .swiper-button-next:after {
        display: none;
    }
    .mySwiper-world {
        margin-bottom: 44px;
    }

}