.activities {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.activities__text {
  max-width: 651px;
  width: 100%;
}
.activities__text p {
  margin: 0;
}
.activities__cards {
  display: grid;
  gap: 20px;
  justify-content: center;
}
@media all and (min-width: 1000px) {
  .activities {
    gap: 60px;
  }
  .activities__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-content: unset;
    padding-left: 100px;
  }
}
@media all and (min-width: 1050px) {
  .activities::after {
    content: '';
    background-image: url("../../images/shape_2.svg");
    width: 300px;
    height: 300px;
    background-size: 300px;
    position: absolute;
    background-repeat: no-repeat;
    top: 0;
    right: 0;
    z-index: -1;
  }
}
@media all and (min-width: 1300px) {
  .activities::after {
    width: 400px;
    height: 400px;
    background-size: 400px;
    top: 0;
    right: 0;
  }
}
@media all and (min-width: 1600px) {
  .activities__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-left: 277px;
  }
}
@media all and (min-width: 1800px) {
  .activities::after {
    width: 525px;
    height: 525px;
    background-size: 525px;
    top: 0;
    right: 0;
  }
}
