.block-banner-map .container {
    padding: 0;
}

.block-banner-map .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.block-banner-map .grid-content {
    padding:0 var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.block-banner-map .map__container iframe {
    width: 100%;
    height: 775px;
    border-radius: 100% 0 0 100%;
    max-width: 720px;
    float: right;
}

.block-banner-map .btns__container {
    display: flex;
    gap: var(--space-3);
    width: 100%;
    justify-content: center;
}

@media only screen and (max-width: 768px) {
    .block-banner-map .grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .block-banner-map .map__container iframe {
        height: 475px;
    }

    .block-banner-map .title {
        font-size: 4rem !important;
    }
}

.map__container {
    position: relative;
    border-radius: 50% 0 0 50%;
    overflow: hidden;
    height: 100vh;
    max-height: 775px;
    max-width: 75%;
    margin: auto;
    margin-right: 0;
}

.google-map {
    height: 100% !important;
}


@media (max-width: 1366px) {
    .map__container {
        height: 650px;
    }
}

@media (max-width: 1100px) {
    .map__container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .map__container {
        height: 650px;
    }
}

@media (max-width: 650px) {
    .map__container {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .map__container {
        height: 400px;
    }
}

@media (max-width: 380px) {
    .map__container {
        height: 320px;
    }
}