.about-internal {
  min-height: 70vh;
  justify-content: center;
}


.about__content {
  display: flex;
  flex-direction: row;
  margin-block-start: 120px;
  margin-block-end: 125px;
  margin-inline: 80px;
  justify-content: space-between;
  gap: 50px;
}

@media screen and (width <= 990px) {
  .about__content {
    flex-direction: column;
    gap: 80px;
  }
}

@media screen and (width <= 480px) {
  .about__content {
    margin-block-start: 50px;
    margin-block-end: 80px;
    margin-inline: 40px;
  }
}

.about-title {
  text-transform: inherit;
  font-size: clamp(1.875rem, 1.2219rem + 2.809vw, 3.75rem);
  line-height: 2.2;
  font-family: "Open Sans ExtraBold", Arial, sans-serif;
  font-stretch: 200%;
  color: var(--base1);
}

.about__sign {
  padding-inline-start: 60px;
  font-size: 22px;
  font-weight: 400;
  font-stretch: 100%;
  font-style: italic;
  line-height: 26px;
  color: var(--white);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.about__choose {
  display: flex;
  flex-direction: column;
  gap: 34px;
  inline-size: 60%;
  padding-inline-end: 50px;
}

@media screen and (width <= 990px) {
  .about__choose {
    inline-size: 100%;
  }
}

.about-image {
  width: 100%; 
  max-width: 50vh; 
  height: 400px; 
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; 
  overflow: hidden;
  display: inline-block;
  background-image: url(../images/about-gallary/about-img-2.jpg);
  border-radius: 20px;  
  box-shadow: 15px 15px 10px rgb(246 246 246 / 30%);
  align-self: center;
}

.content-section__pictures {
  margin-block-start: 50px;
  margin-block-end: 60px;
  margin-inline: 50px;
  display: grid;
  gap: 10px;
}

@media (width >= 768px) {
  .content-section__pictures {
    gap: 20px;
    margin-inline: 80px;
    margin-block-start: 100px;
    margin-block-end: 150px;
  }
}

.content-section__pictures-gallery {
  display: grid;
  gap: 10px;
  padding-block-start: 15px;
}

@media (width >= 768px) {
  .content-section__pictures-gallery {
    grid-template-columns: minmax(229px, 1fr) 230px minmax(229px, 1fr);
    grid-template-rows: 192px 230px 318px;
    gap: 20px;
    grid-template-areas:
      "sunset sunset ice-cream"
      "tape books ice-cream"
      "tape street street";
  }
  .picture-sunset {
    grid-area: sunset;
  }
  .picture-ice-cream {
    grid-area: ice-cream;
  }
  .picture-tape {
    grid-area: tape;
  }
  .picture-books {
    grid-area: books;
  }
  .picture-street {
    grid-area: street;
  }
}

@media (width >= 1024px) {
  .content-section__pictures-gallery {
    grid-template-columns: minmax(229px, 1fr) 315px minmax(229px, 1fr);
    grid-template-rows: 260px 315px 428px;
  }
  .picture-5 {
    padding-block-start: 5px;
  }
}

.pictures-gallery__main-page {
  margin-block-start: 50px;
  margin-block-end: 50px;
  margin-inline: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

@media (width >= 768px) {
  .pictures-gallery__main-page {
    margin-inline: 40px;
    margin-block-start: 80px;
    margin-block-end: 55px;
  }
}

.pictures-gallery__main-page-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (width <= 768px) {
  .pictures-gallery__main-page-row {
    flex-direction: column;
  }
}

.pictures-gallery__main-page-img {
  width: 30%;
  height: 50vh;
  object-fit: cover; 
  border-radius: 10px; 
}

@media (width <= 768px) {
  .pictures-gallery__main-page-img {
    width: 100%;
  }
}

.content-section__pictures-img {
  width: 100%;
}

@media (width >= 768px) {
  .content-section__pictures-img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
}