.text-with-map {
    padding-top: 200px;
    max-width: 1440px;
    margin: auto;
}

.text-with-map h2 {
    font-family: 'Montserrat';
    font-size: 42px;
    font-weight: 700;
    color: #1b3b6b;
    text-align: center;
    margin-bottom: 50px;
}

.text-with-map .description {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FFFFFF;
    padding: 20px;
    border-radius: 6px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.text-with-map .map {
    position: relative;
}

.text-with-map .map img {
    width: 100%;
    border-radius: 6px;
}

.text-with-map .map .circle,
.text-with-map .map .circle::before {
    content: " ";
    margin: 15px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s;
    background-color: #169d53;
    position: absolute;
    top: 379px;
    left: 210px;
}

.text-with-map .map .circle::before {
    animation: mymove 1s infinite;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00FF00;
}

@-webkit-keyframes mymove {
    50% {
        transform: scale(2);
        opacity: 0
    }

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

@media (max-width: 1600px) {
    .text-with-map .description {
        font-size: 18px;
    }
}

@media (max-width: 1440px) {
    .text-with-map {
        max-width: 1300px;
    }

    .text-with-map .description {
        font-size: 16px;
    }
}

@media (max-width: 1340px) {
    .text-with-map {
        max-width: 1200px;
    }

    .text-with-map h2 {
        font-size: 38px;
    }
}

@media (max-width: 1279px) {
    .text-with-map {
        max-width: unset;
        padding: 170px 40px 0;
        padding-top: 100px;
    }

    .text-with-map .map .circle {
        top: 55%;
        left: 13%;
    }

    .text-with-map .map .circle,
    .text-with-map .map .circle::before {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767px) {
    .text-with-map {
        padding: 70px 20px 0;
    }

    .text-with-map h2 {
        font-size: 32px;
        line-height: 35px;
    }

    .text-with-map .description {
        top: 10px;
        left: 10px;
        padding: 10px;
        font-size: 12px;
    }

    .text-with-map .map .circle,
    .text-with-map .map .circle::before {
        width: 30px;
        height: 30px;
    }
}
