.block-location {
  padding: 60px 0;
  background-color: rgb(var(--color-accent));
  color: #FFFFFF;
}
.block-location.bg-gray {
  border-top: solid 1px rgba(var(--color-black), 0.08);
  border-bottom: solid 1px rgba(var(--color-black), 0.08);
  background-color: rgba(var(--color-black), 0.03);
}
.block-location .inner {
  padding: 0 16px;
  display: flex;
  flex-flow: column;
  gap: 48px;
}
.block-location .heading {
  text-align: center;
}
.block-location .item {
  text-align: center;
}
.block-location .item:not(:last-child) {
  border-bottom: solid 1px rgba(var(--color-white), 0.15);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.block-location .item .label {
  font-weight: 500;
  color: rgba(var(--color-white), 0.7);
  margin-bottom: 15px;
}
.block-location .item .info {
  font-size: 1.5rem;
  max-width: 216px;
  margin-inline: auto;
}
.block-location .map {
  aspect-ratio: 6/8;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: solid 1px rgba(var(--color-white), 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-location .map picture {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.block-location .map picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.block-location .map .map-pin {
  position: relative;
}
.block-location .map .map-pin::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  bottom: -16px;
  left: calc(50% - 4px);
  background-color: #ffffff;
}
.block-location .map .map-link {
  position: absolute;
  right: 16px;
  bottom: 16px;
}
@media (width >= 800px) {
  .block-location {
    padding: 80px 0;
  }
  .block-location .inner {
    gap: 64px;
  }
  .block-location .directions {
    display: flex;
    justify-content: center;
  }
  .block-location .item:not(:last-child) {
    border-bottom: 0;
    border-right: solid 1px rgba(var(--color-white), 0.15);
    padding-bottom: 0;
    margin-bottom: 0;
    padding-right: 48px;
    margin-right: 48px;
  }
  .block-location .item .info {
    max-width: 280px;
    font-size: 1.75rem;
  }
  .block-location .map {
    aspect-ratio: auto;
    height: 600px;
    border-radius: 40px;
  }
}/*# sourceMappingURL=block-location.css.map */