/*Map CSS */
.wrapper {
    text-align: center;
    width: 100%;
    border: 10px solid #006383;
    background: #7ab2cd;
    padding: 40px 0;
}
.map-image {
    position: relative;
    background-image: url(../images/map_section.png);
    width: 730px;
    height: 360px;
    background-repeat: no-repeat;
    display: inline-block;
    background-size: contain;
}

.map_pin {
    display: flex;
    position: absolute;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.595rem;
    font-weight: 500;
    align-items: center;
    color: #fff;
}
.map_pin span{
    text-shadow: 0 0 10px #000;
}

.map_pin i {
    font-size: 6px;
}
.map_pin_iran {
    right: 213px;
    top: 111px;
    color: #fff;
}

.map_pin_turkey {
    right: 250px;
    top: 130px;
}
.map_pin_poland {
    right: 292px;
    top: 96px;
}
.map_pin_france {
    right: 331px;
    top: 112px;
}
.map_pin_italy {
    right: 324px;
    top: 130px;
}

.map_pin_syria {
    right: 253px;
    top: 146px;
}
.map_pin_pakistan {
    right: 182px;
    top: 147px;
}
.map_pin_nepal {
    right: 168px;
    top: 159px;
}
.map_pin_bangladesh {
    right: 117px;
    top: 169px;
}
.map_pin_india {
    right: 194px;
    top: 178px;
}
.map_pin_srilanka {
    right: 142px;
    top: 194px;
}
.map_pin_morocco {
    right: 340px;
    top: 157px;
}
.map_pin_libya {
    right: 315px;
    top: 169px;
}
.map_pin_egypt {
    right: 280px;
    top: 181px;
}
.map_pin_uae {
    right: 274px;
    top: 167px;
}
.map_pin_oman {
    right: 252px;
    top: 191px;
}
.map_pin_yamen {
    right: 247px;
    top: 205px;
}
.map_pin_ethiopia {
    right: 257px;
    top: 216px;
}
.map_pin_nigeria {
    right: 342px;
    top: 206px;
}

.map_pin_uganda {
    right: 270px;
    top: 227px;
}
.map_pin_keyna {
    right: 275px;
    top: 240px;
}
.map_pin_congo {
    right: 308px;
    top: 249px;
}
.map_pin_tanzania {
    right: 267px;
    top: 263px;
}
.map_pin_southafrica {
    right: 261px;
    top: 287px;
}
.map_pin_usa {
    left: 168px;
    top: 153px;
}
.map_pin_colombia {
    left: 185px;
    top: 222px;
}
.map_pin_australia {
    right: 48px;
    top: 290px;
}
.marker-animation .circle {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    opacity: 0;
    animation: scaleIn 2s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
    top: -8.5px;
    left: -8.5px;
}

.map_icon_pin {
    position: relative;
    z-index: 1;
    margin-right: 3px;
}

.marker-animation {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}




@-webkit-keyframes scaleIn {

    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }

}
@-moz-keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.marquee-wrapper {
    height: 800px; /* Adjust height as needed */
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    flex-direction: column;
    animation: scroll-up 40s linear infinite;
}

.marquee-item {
    margin-bottom: 20px; /* spacing between testimonials */
}

@keyframes scroll-up {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* Pause animation on hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}