.map-and-adress__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.map-and-adress__left,
.map-and-adress__right {
  border-radius: 15px;
}
.map-and-adress__left {
  position: relative;
  width: 100%;
  background-color: var(--color-secondary--2);
  padding: 2rem 4rem;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;

}
.map-and-adress__left > * {
  position: relative;
  z-index: 2;
}

.map-and-adress__right {
  width: 100%;
  background-color: var(--color-primary--2);
  padding: 2rem 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map-and-adress__title {
  color: var(--color-white);
  font-size: var(--heading-size-l);
  font-weight: 700;
  line-height: 110%;
}

.map-and-adress__title p {
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (min-width: 1000px) {
  .map-and-adress__content {
    flex-direction: row;
    margin-bottom: 5rem;
  }
  .map-and-adress__left,
  .map-and-adress__right {
    width: 50%;
    min-height: 460px;
  }
  .map-and-adress__left::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 90%;
    background-image: url(../../images/contact/map.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
  }

}