.gr {
    position: relative;
}

.worldmap {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    opacity: .7;
    z-index: 1;
}

.gr-circle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    z-index: 10;
}

.gr-plus i {
    color: var(--epm-navy);
    font-size: 60px;
}

.gr-circle {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: 50%;
    background-color: #17234620;
}

.gr-circle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 330px;
    height: 330px;
    border-radius: 50%;
    border: 1px dashed var(--epm-navy);
}

.gr-circle h5 {
    color: var(--epm-navy);
    font-size: 42px;
    font-family: 'Montserrat';
    text-transform: uppercase;
}

.gr-circle p {
    color: var(--epm-navy);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.gr-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    text-align: center;
    margin-top: 6rem;
    z-index: 10;
}

.gr-text h5 {
    color: var(--epm-navy);
    font-size: 28px;
    line-height: 1.5;
}

.gr-text p {
    width: 55%;
    color: #888;
    font-size: 19px;
    line-height: 1.8;
}


/*==================================================*/
@media (max-width: 1650px) {
    .worldmap {
        top: 100px;
        transform: translate(-50%, 0);
        width: 90%;
    }
}


@media (max-width: 1000px) {
    .gr-circle-wrapper {
        gap: 3rem;
    }
    
    .gr-circle {
        width: 250px;
        height: 250px;
    }

    .gr-circle::after {
        width: 270px;
        height: 270px;
    }

    .gr-circle h5 {
        font-size: 36px;
    }

    .gr-circle p {
        width: 70%;
        font-size: 16px;
    }
}


@media (max-width: 850px) {
    .gr-text h5 {
        font-size: 22px;
    }

    .gr-text p {
        width: 90%;
        font-size: 17px;
    }

    .gr-text p br {
        display: none;
    }
}


@media (max-width: 768px) {
    .gr-circle-wrapper {
        gap: 2rem;
    }

    .gr-plus i {
        font-size: 40px;
    }
    
    .gr-circle {
        width: 200px;
        height: 200px;
    }

    .gr-circle::after {
        width: 220px;
        height: 220px;
    }

    .gr-circle h5 {
        font-size: 32px;
    }

    .gr-circle p {
        font-size: 14px;
    }
}


@media (max-width: 600px) {
    .worldmap {
        top: 160px;
    }
    
    .gr-circle-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gr-circle p {
        margin-top: -10px;
    }
    
    .gr-text h5 br {
        display: none;
    }
}


@media (max-width: 550px) {
    .gr-text {
        gap: 2rem;
        margin-top: 4rem;
    }

    .gr-text h5 {
        width: 90%;
        font-size: 24px;
    }

    .gr-text p {
        width: 80%;
        font-size: 15px;
    }
}