.it-ac-map {
    background: #fff;
    box-sizing: border-box;
    color: #111;
    margin-left: 50%;
    padding: 54px 20px 64px;
    transform: translateX(-50%);
    width: 100vw;
}

.it-ac-map-header {
    margin: 0 auto 36px;
    max-width: 980px;
    text-align: center;
}

.it-ac-map-header h2 {
    color: inherit;
    font-family: 'Helvetica Now Condensed', 'Roboto Condensed', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 0.95;
    margin: 0 0 22px;
    text-transform: uppercase;
}

.it-ac-map-header p {
    align-items: center;
    color: inherit;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    line-height: 1.2;
    margin: 0;
}

.it-ac-map-header p span {
    align-items: center;
    background: #1f2026;
    border-radius: 3px;
    color: #fff;
    display: inline-flex;
    font-size: 11px;
    height: 22px;
    justify-content: center;
    width: 22px;
}

.it-ac-map-layout {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 38px;
    margin: 0 auto;
    max-width: 1180px;
}

.it-ac-map-content {
    margin: 0 auto;
    max-width: 425px;
    order: 2;
    width: 100%;
}

.it-ac-map-location-item {
    background: #F7F7FC;
    border-radius: 8px;
    display: none;
    overflow: hidden;
}

.it-ac-map-location-item.active {
    display: block;
}

.it-ac-map-card-image {
    aspect-ratio: 360 / 150;
    position: relative;
    width: 100%;
}

.it-ac-map-card-image picture,
.it-ac-map-card-image img {
    display: block;
    height: 100%;
    width: 100%;
}

.it-ac-map-card-image img {
    object-fit: cover;
}

.it-ac-map-card-image span {
    align-items: center;
    background: #fff;
    border-radius: 8px;
    color: #111;
    display: flex;
    font-size: 18px;
    font-weight: 500;
    height: 44px;
    justify-content: center;
    left: 18px;
    line-height: 1;
    position: absolute;
    top: 18px;
    width: 44px;
}

.it-ac-map-card-body {
    padding: 22px 26px 28px;
}

.it-ac-map-card-meta {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin: 0 0 18px;
}

.it-ac-map-card-meta h3 {
    color: inherit;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.it-ac-map-card-meta p {
    align-items: center;
    color: inherit;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 18px;
    gap: 6px;
    line-height: 1;
    margin: 0;
}

.it-ac-map-card-description p {
    color: inherit;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.it-ac-map-card-description p + p {
    margin-top: 12px;
}

.it-ac-map-controls {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.it-ac-map-control {
    align-items: center;
    background: #111;
    border: 0;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 32px;
    justify-content: center;
    padding: 0;
    width: 32px;
}

.it-ac-map-control:hover,
.it-ac-map-control:focus,
.it-ac-map-control:active,
.it-ac-map-control:focus-visible {
    background: #111;
    border: 0;
    box-shadow: none;
    color: #fff;
    outline: 0;
}

.it-ac-map-control svg {
    display: block;
    transform-origin: center;
}

.it-ac-map-control[data-it-ac-map-prev] svg {
    transform: rotate(180deg);
}

.it-ac-map-image {
    margin: 0 auto;
    max-width: 620px;
    order: 1;
    position: relative;
    width: 100%;
}

.it-ac-map-main-map {
    display: block;
    height: auto;
    width: 100%;
}

.it-ac-map-marker {
    align-items: center;
    background: #1f2026;
    border: 0;
    border-radius: 7px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    height: 38px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 38px;
}

.it-ac-map-marker.active {
    background: #ff5a1f;
    color: #fff;
}

.it-ac-map-marker:hover,
.it-ac-map-marker:focus,
.it-ac-map-marker:active,
.it-ac-map-marker:focus-visible {
    border: 0;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
    color: #fff;
    outline: 0;
}

@media (min-width: 768px) {
    .it-ac-map {
        padding: 70px 40px 90px;
    }

    .it-ac-map-header {
        margin-bottom: 44px;
    }

    .it-ac-map-header h2 {
        font-size: 45px;
    }

    .it-ac-map-layout {
        display: grid;
        grid-template-columns: 425px minmax(0, 1fr);
        gap: 88px;
    }

    .it-ac-map-content,
    .it-ac-map-image {
        order: 0;
    }

    .it-ac-map-card-image {
        aspect-ratio: 425 / 300;
    }
}

@media (min-width: 1200px) {
    .it-ac-map-image {
        max-width: 675px;
    }
}
