#about-block {
  margin-top: 60px;
}
#about-block .top_content_holder {
  display: flex;
  flex-direction: row;
}
#about-block .left_side {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  margin: 0px 30px 30px 0px;
}
#about-block .text * {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: var(--color_text);
}
#about-block .right_side {
  width: 50%;
  padding: 0px 15px 30px 0px;
  margin: 0px 0px 30px 0;
  max-height: 400px;
  overflow: auto;
}
#about-block .top_img {
  width: calc(50% - 15px);
  height: 100%;
  object-fit: cover;
}
#about-block .title {
  font-weight: 500;
  font-size: 32px;
  line-height: 41px;
  color: var(--text_titles);
  letter-spacing: 3px;
  margin-bottom: 10px;
}
#about-block .gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 285px);
  row-gap: 30px;
  column-gap: 30px;
}
#about-block .gallery > .gallery_img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  grid-row: 1/3;
}
#about-block .gallery > .gallery_img:nth-child(n + 2) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1100px) {
  #about-block .top_content_holder {
    flex-direction: column;
    gap: 30px;
  }
  #about-block .right_side {
    width: 100%;
    padding-top: 0;
    padding-bottom: 30px;
    max-height: none;
  }
  #about-block .title {
    margin-bottom: 15px;
  }
  #about-block .left_side {
    width: 100%;
  }
}
@media (max-width: 500px) {
  #about-block .left_side {
    flex-direction: column;
  }
  #about-block .top_img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  #about-block .text * {
    font-size: 16px;
  }
  #about-block .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  #about-block .gallery > .gallery_img:first-child {
    grid-row: 1;
  }
}
