.world-map {
    padding-top: 50px;
    margin-bottom: 200px;
}

.world-map .text {
    font-family: Titillium;
    font-weight: 300;
    font-size: 14px;
    font-style: normal;
    line-height: 27px;
    color: #444444;
}

.world-map .title {
    font-family: Titillium;
    font-weight: 400;
    font-size: 34px;
    font-style: normal;
    line-height: 27px;
    color: #000;
}

.world-map .underline {
    position: relative;
    padding-bottom: 2rem;
    width: fit-content;
}

.world-map .underline::before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 60%;
    height: 2px;
    background: #0C0C0C;
}

.world-map .country-location {
    padding: 2rem;
    position: relative;

}

.world-map .country-location::after {
    content: '';
    position: absolute;
    width: 110%;
    top: 0px;
    left: 0px;
    height: 1px;
    background: #D0D8DB;
}

.world-map .country-location::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 0px;
    left: 2rem;
    background-color: var(--data-dot-color);
    transform: translate(0%, -50%);
    z-index: 2;
}


.world-map .container {
    overflow: hidden;
}