.about {
  box-sizing: border-box;
  width: 100vw;
  display: flex;
  flex-direction: column;
  min-height: 90vh;
  align-items: center;
}

@media only screen and (min-width: 1024px){
  .about {
    display: flex;
    gap: 5vh;
    flex-direction: row;
    padding: 5vh;
    max-width: 1920px;
    margin: 0 auto;
  }
}

.about__collage {
  width: 100%;
  overflow: hidden;
  flex: 1 1 65%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 600px) and (max-width: 1023px){
  .about__collage {
    flex: 1 1 60vh;
    max-height: 60vh;
  }
}

@media only screen and (min-width: 1024px){
  .about__collage {
    height: 100%;
  }
}

.about__collage img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about__description {
  line-height: 1.5;
  padding: 5vw;
  text-align: justify;
  flex: 1 1 35%;
}

.about__sak {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.about__sak a {
  flex: 1 1 30%;
}

.about__sak img {
  display: block;
  width: 100%;
}

.about__sak p {
  flex: 1 1 50%;
}

@media only screen and (min-width: 1024px){
  .about__description {
    padding: 0;
    font-size: 1rem;
  }
}
