.about {
  background: #fff;
  color: #21201f;
  font-family: manrope;
  padding: calc(64px + 16px) 50px calc(64px + 64px + 16px);
  border-radius: 64px 64px 0 0;
  margin-top: -64px;
}
@media (width < 768px) {
  .about {
    padding: 32px 16px calc(16px + 32px);
    margin-top: -16px;
    border-radius: 16px 16px 0 0;
  }
}

.about__miniblock {
  display: flex;
  justify-content: space-between;
  gap: 100px 16px;
}
@media (width < 1300px) {
  .about__miniblock {
    flex-direction: column;
    gap: 2em;
  }
}

.about__left {
  width: calc(611 / 1508 * 100%);
  display: flex;
  flex-direction: column;
}
@media (width < 1300px) {
  .about__left {
    width: 100%;
  }
}

.about__subtitle {
  margin-top: 24px;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 500;
}
@media (width < 768px) {
  .about__subtitle {
    font-size: 18px;
    margin-top: 1em;
  }
}

.about__text {
  font-size: 24px;
  line-height: 1.4;
  margin-block: 24px 68px;
}
@media (width < 768px) {
  .about__text {
    font-size: 18px;
    margin-block: 1em;
  }
}

.about__button {
  font-weight: 400;
  padding: 18px 32px;
  border-radius: 16px;
  text-align: center;
  background: radial-gradient(65.49% 100% at 51.66% 0%, #ff8262 0%, #e84e26 52.4%, #e87726 100%);
  color: #fff;
  font-size: 24px;
  margin-top: auto;
  width: 100%;

  transition: opacity 0.4s;
  &:hover {
    opacity: 0.6;
  }
}
@media (width < 768px) {
  .about__button {
    padding: 16px;
    font-size: 16px;
  }
}

.about__right {
  width: calc(738 / 1508 * 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  grid-auto-rows: 1fr;
}
@media (width < 1300px) {
  .about__right {
    width: 100%;
    gap: 16px;
  }
}
@media (width < 450px) {
  .about__right {
    grid-template-columns: 1fr;
  }
}

.about__advantage {
  border-radius: 24px;
  padding: 30px;
  background: 100% / cover no-repeat;
  color: #fff;

  &:nth-of-type(1) {
    background-image: url("./img/1.png");
    grid-column: 1/3;
  }
  &:nth-of-type(2) {
    background-image: url("./img/2.png");
  }
  &:nth-of-type(3) {
    background-image: url("./img/3.png");
    color: #21201f;
  }
  &:nth-of-type(4) {
    background-image: url("./img/4.png");
    color: #21201f;
  }
  &:nth-of-type(5) {
    background-image: url("./img/5.png");
  }
}
@media (width < 768px) {
  .about__advantage {
    padding: 16px;
  }
}
@media (width < 450px) {
  .about__advantage {
    border-radius: 16px;

    &:nth-of-type(1) {
      grid-column: 1/2;
    }
  }
}

.about__advantage-title {
  font-family: Oswald;
  font-weight: 500;
  font-size: 56px;
  text-transform: uppercase;
}
@media (width < 768px) {
  .about__advantage-title {
    font-size: 32px;
  }
}

.about__advantage-text {
  margin-top: 17px;
  font-family: Manrope;
  font-size: 24px;
  letter-spacing: -0.02em;
}
@media (width < 768px) {
  .about__advantage-text {
    font-size: 18px;
    margin-top: 1em;
  }
}
