section .container:has(.street_block) {
  max-width: 1400px;
}

.street_block {
  margin-top: 77px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 640px 1fr;
}
@media screen and (max-width: 767px) {
  .street_block {
    grid-template-columns: 1fr 136px;
    gap: 30px 6px;
  }
}
.street_block .text_area {
  padding-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .street_block .text_area {
    grid-column: 1/3;
    grid-row: 1/2;
    padding-bottom: 0;
  }
}
.street_block .img_area {
  display: flex;
}
@media screen and (max-width: 767px) {
  .street_block .img_area:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.street_block .img_area:nth-of-type(3) {
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .street_block .img_area:nth-of-type(3) {
    grid-column: 2/3;
    grid-row: 2/3;
    align-items: flex-start;
  }
  .street_block .img_area:nth-of-type(3) .img img {
    max-width: 136px;
  }
}
.street_block .img_area .img {
  width: 256px;
}
@media screen and (max-width: 767px) {
  .street_block .img_area .img {
    width: 100%;
  }
  .street_block .img_area .img img {
    width: 100%;
    max-width: 256px;
  }
}
.street_block .text + .text {
  margin-top: 45px;
}

.street_event {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .street_event {
    display: flex;
    flex-direction: column;
  }
}
.street_event .event .event_title {
  position: relative;
  border-bottom: 1px solid #222;
  padding-left: 30px;
  font-size: 20px;
  padding-bottom: 12px;
}
.street_event .event .event_title:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 1px;
  height: calc(100% - 0.5rem);
  background: #81CDD1;
}
.street_event .event .text_area {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .street_event .event .text_area {
    display: flex;
    flex-direction: column;
  }
}
.street_event .event .text_area .img img {
  max-width: 180px;
  margin-inline: auto;
}
.street_event .event .text_area .text {
  translate: 0 -8px;
  line-height: 2;
}

/*# sourceMappingURL=street.css.map */
