p {
    margin: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0;
}

.map-box-container .map-container .map-img {
    position: absolute;
    width: 100%;
}

.map-container .news-block {
    position: absolute;
    width: 200px;
    font-size: 14px;
    font-weight: 500;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 24px 0;
    opacity: 0;
    border-top: 1px solid #E9204F;
    border-bottom: 1px solid #E9204F;
    box-shadow: 0 1px 60px 0 rgba(0, 0, 0, 0.08);
    animation: cartSlide 15s infinite;
    z-index: 2;
}

.map-container .news-block.block-1 {
    left: 27%;
    top: 36%;
    animation-delay: 1s;
}

.map-container .news-block.block-2 {
    bottom: 10%;
    right: 18%;
    animation-delay: 4s;
}

.map-container .news-block.block-3 {
    top: 10%;
    right: 30%;
    animation-delay: 7s;
}

.map-container .news-block.block-4 {
    top: 4%;
    left: 20%;
    animation-delay: 10s;
}
.map-container .news-block.block-5 {
    top: 20%;
    left: 44%;
    animation-delay: 13s;
}

.map-container .news-block .news-head .inner {
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.map-container .news-block .tag-body .tag-head {
    display: inline-block;
    background-color: #E9204F;
    color: #fff;
    border-radius: 8px 0;
    padding: 3px 10px;
}

.map-container .news-block .tag-body .tag-text {
    display: block;
    text-decoration: none;
    color: #E9204F;
    font-weight: 500;
}

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

.map-container .news-block a {
    color: #E9204F;
    margin: 0 10px;
}

.map-container .news-block .tag-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.map-container .news-block .tag-body .tag-head.neutral {
    background-color: #c7a24e;
    /*color: #282930;*/
}

.map-container .news-block .tag-body .tag-head.positive {
    background-color: green;
}

.map-container .news-block .tag-body .tag-head.negative {
    background-color: red;
}

.map-container .news-block .tag-body .keyword {
    color: #E9204F;
    text-align: center;
    margin: 10px;
}

@media only screen and (max-width: 767px) {
    .map-container .news-block {
        width: 140px;
    }
}

@keyframes cartSlide {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    13.333% {
        opacity: 1;
        transform: translateY(0);
    }

    23.333% {
        opacity: 1;
        transform: translateY(0);
    }

    32.333% {
        opacity: 0;
        transform: translateY(50px);
    }
}



.client-carousel .owl-item {
    position: relative;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    box-shadow: 0 1px 30px 1px rgba(0, 0, 0, 0.1);
    background: #F3F3F3;
    transition: .5s;
    overflow: hidden;
    z-index: 2;
}

.client-carousel .owl-item img,
.client-carousel .owl-item svg {
    width: 100%;
    filter: grayscale(1);
    transition: 1s;

}



.client-carousel .owl-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 80%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 80%);
    bottom: 0;
    left: 0;
    transition: .5s;
    z-index: 1;
}
.client-carousel .owl-item:hover img{
    filter: contrast(1);
    transform: scale(1.1);
}
