.about-city {
  background-color: var(--colorBrand);
}

.about-city-frame {
  display: grid;
  grid-template: 'title title' 'content images' / 1fr 2fr;
  position: relative;
  padding-top: clamp(30px, 4vw, 50px);
  padding-bottom: 150px;
}

@media (max-width: 1260px) {
  .about-city-frame {
    grid-template: 'title title' 'content images' / 1fr 1fr;
  }
}

@media (max-width: 1080px) {
  .about-city-frame {
    grid-template: 'title' 'content ' ' images' / 1fr;
    padding-bottom: 30px;
  }
}

.about-city-title {
  grid-area: title;
  width: max-content;
  position: relative;
}

.about-city-title::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  max-width: 400px;
  background-color: #000;
  left: 0;
  bottom: 0;
}

.about-city-content {
  grid-area: content;
  max-width: 510px;
  display: grid;
  grid-template: 'subtitle subtitle' 'perex1 perex2' 'years years' 'button button' / 2fr 1fr;
  gap: clamp(1em, 5vw, 55px);
  padding-top: 50px;
  height: min-content;
}

@media (max-width: 1080px) {
  .about-city-content {
    max-width: 100%;
  }
}

@media (max-width: 550px) {
  .about-city-content {
    grid-template: 'subtitle' 'perex1' 'perex2' 'years' 'button' / 1fr;
  }
}

.about-city-subtitle {
  grid-area: subtitle;
  position: relative;
  height: min-content;
  max-width: 310px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
}

.about-city-subtitle::after {
  content: '';
  position: absolute;
  height: 100px;
  width: 15px;
  top: 0;
  left: calc(-1 * var(--sizeContentOffset));
  background: no-repeat center/cover url("/frontend/images/strip.png");
}

.about-city-perex1 {
  grid-area: perex1;
}

.about-city-perex2 {
  grid-area: perex2;
}

.about-city-years {
  grid-area: years;
  line-height: clamp(60px, 8vw, 95px);
  font-size: clamp(40px, 8vw, 90px);
  font-weight: 300;
}

@media (max-width: 1080px) {
  .about-city-years {
    place-self: center;
  }
}

.about-city .ButtonBase {
  grid-area: button;
  place-self: center;
  min-width: 280px;
}

.about-city .ButtonBase:hover, .about-city .ButtonBase:active, .about-city .ButtonBase:focus {
  background: #fff;
  color: #000;
}

.about-city-images {
  grid-area: images;
  position: relative;
  top: -130px;
  height: 970px;
  right: calc(-1 * var(--sizeContentOffset));
}

@media (max-width: 1700px) {
  .about-city-images {
    height: 750px;
  }
}

@media (max-width: 1260px) {
  .about-city-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    position: static;
    padding-left: 30px;
    gap: 3em;
  }
}

@media (max-width: 1080px) {
  .about-city-images {
    padding-top: 70px;
  }
}

@media (max-width: 550px) {
  .about-city-images {
    gap: 3em 1em;
    padding-left: 0;
  }
}

.about-city-image {
  position: absolute;
  min-width: 150px;
}

.about-city-image img {
  max-width: initial;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about-city-image-label {
  position: absolute;
  right: 86%;
  bottom: 84%;
  max-width: 118px;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
}

.about-city-image-1 {
  right: 45%;
  top: 20%;
  width: 60%;
}

.about-city-image-2 {
  top: 0;
  right: 22%;
  width: 28%;
}

.about-city-image-3 {
  top: 28%;
  right: 5%;
}

.about-city-image-3 span {
  right: 25%;
  bottom: 100%;
}

.about-city-image-4 {
  top: 50%;
  right: 5%;
}

.about-city-image-4 span {
  right: 65%;
  bottom: 95%;
}

.about-city-image-5 {
  top: 93%;
  right: 30%;
}

.about-city-image-inner {
  position: relative;
  height: 100%;
  width: 100%;
}

.about-city-image-inner::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--colorBrand);
  pointer-events: none;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s ease;
}

.about-city-image-inner:hover::after {
  opacity: 0.3;
  transition: all 0.5s ease;
}

@media (max-width: 1700px) {
  .about-city-image-1 {
    width: 40%;
    top: 29%;
  }
  .about-city-image-3 {
    top: 40%;
  }
  .about-city-image-4 {
    width: 40%;
    top: 67%;
  }
  .about-city-image-5 {
    top: 90%;
    right: 51%;
  }
}

@media (max-width: 1260px) {
  .about-city-image {
    width: 200px;
    position: static;
    height: auto;
  }
  .about-city-image-inner {
    display: flex;
    flex-flow: column-reverse;
    gap: 1em;
  }
  .about-city-image span {
    left: -50px;
    top: -40px;
    position: static;
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 550px) {
  .about-city-image {
    width: 150px;
  }
  .about-city-image span {
    left: 0;
    top: -33px;
  }
}

/*# sourceMappingURL=about-city.min.css.map */
