.services p {
    color: #828282;
    margin: 0;
}

.services img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

.services_content {
    margin-top: 24px;

    display: grid;
    gap: 40px;
}

.services_content--left, .services_content--right {
    display: grid;
    gap: 24px;
}

.gmap_canvas {
    border-radius: 6px;
    border: 2px solid var(--secondary-color);
    width: 100%;
    height: auto;
}

@media (min-width: 760px) {
    .services_content {
        grid-template-columns: 1fr 1fr;
    }

    .services_content--right {
        order: 1;
    }
}