.aboutus {
  display: flex;
  margin: 50px auto 0;
  max-width: 1394px;
  padding: 0 10px;
  gap: 15px;
}

.aboutus__title {
  margin: 0;
  margin-bottom: 15px;
  font-size: 26px;
  text-align: center;
  color: #202020;
}

.aboutus__content,
.aboutus__left,
.aboutus__right {
  display: flex;
  flex-direction: column;
  width: calc((100% - 30px) / 3);
}

.aboutus__content {
  justify-content: center;
  /* justify-content: flex-end; */
  align-items: center;
}

.aboutus__left,
.aboutus__right {
  gap: 20px;
}

.aboutus__left img,
.aboutus__right img {
  max-height: none;
  border-radius: 15px;
}

.aboutus__left img:nth-child(1) {
  width: 60%;
  align-self: flex-end;
}
.aboutus__left img:nth-child(2) {
  width: 90%;
}
.aboutus__right img:nth-child(1) {
  width: 90%;
  align-self: flex-end;
}
.aboutus__right img:nth-child(2) {
  width: 60%;
}

.aboutus__text {
  margin: 0;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: #202020;
}
.aboutus__text:nth-child(3) {
  margin-bottom: 40px;
}

.aboutus__link {
  position: relative;
  display: block;
  width: max-content;
  padding: 15px 55px 15px 25px;
  background-color: #d17378;
  border-radius: 5px;
  text-decoration: none !important;
  text-align: center;
  transition: all 0, 3s ease-in-out;
}
.aboutus .aboutus__link {
  color: white !important;
}

.aboutus__link::after {
  pointer-events: none;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("https://www.moderninakup.cz/user/documents/upload/aboutus/chevron-right-red-bg-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.aboutus__link:hover {
  background-color: #d09093;
  color: white;
}

@media (max-width: 1440px) {
  .aboutus__title {
    font-size: 24px;
  }
  .aboutus__text {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .aboutus {
    flex-wrap: wrap;
  }
  .aboutus__left,
  .aboutus__right {
    gap: 15px;
    flex-direction: row;
    order: 1;
    width: calc((100% - 15px) / 2);
    margin-bottom: 20px;
  }
  .aboutus__left {
    order: 1;
  }

  .aboutus__right {
    order: 2;
  }
  .aboutus__left img,
  .aboutus__right img {
    width: calc((100% - 15px) / 2) !important;
  }
  .aboutus__content {
    width: 100%;
    order: 3;
  }
  .aboutus__link {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .aboutus {
    margin: 30px auto 0;
  }
  .aboutus__left,
  .aboutus__right {
    flex-direction: column;
  }
  .aboutus__left img,
  .aboutus__right img {
    width: 100% !important;
  }
}
@media (max-width: 500px) {
  .aboutus {
    gap: 10px;
  }
  .aboutus__title {
    font-size: 20px;
  }
  .aboutus__left,
  .aboutus__right {
    gap: 10px;
  }
  .aboutus__left img,
  .aboutus__right img {
    border-radius: 5px;
  }
  .aboutus__text {
    font-size: 14px;
  }
  .aboutus__text:nth-child(3) {
    margin-bottom: 20px;
  }
}
