/* merch-soft.css */
.everything-block {
  padding: 3.75rem 0;
  margin-bottom: 3.5rem;
  background: var(--grayscale-color-1);
  border-radius: 50px;
  border: 1px solid var(--border-orange-1);
}

.everything-block-content {
  padding: 230px 0;
  position: relative;
}

.everything-block .section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.everything-block .section-title h2 {
  font: inherit;
  color: inherit;
  margin: 0;
}

.everything-block-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  padding: 0.687rem 0.875rem;
  box-shadow: 7px 7px 39px 0px #00000014;
  background: #FFFFFF01;
  width: fit-content;
  position: absolute;
  top: 24%;
  left: 17%;
}

.everything-block-item:nth-child(2) {
  top: 14%;
  right: 16%;
  left: unset;
}

.everything-block-item:nth-child(3) {
  top: unset;
  bottom: 23%;
  left: 18%;
}

.everything-block-item:nth-child(4) {
  top: unset;
  bottom: 14%;
  right: 35%;
  left: unset;
}

.everything-block-item:nth-child(5) {
  top: unset;
  bottom: 30%;
  right: 7%;
  left: unset;
}

.everything-block-item:nth-child(6) {
  top: 25%;
  left: 7%;
}

.everything-block-item:nth-child(7) {
  top: 3%;
  left: 17%;
}

.everything-block-item p {
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--typography-black-1);
}

.everything-block-item img {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 1200px) {
  .everything-block-item:nth-child(3) {
    bottom: 5%;
    left: 5%;
  }

  .everything-block-item:nth-child(5) {
    bottom: 30%;
    right: 6%;
  }

  .everything-block-item:nth-child(6) {
    top: 28% !important;
    left: 0%;
  }
}

@media screen and (max-width: 992px) {
  .everything-block-content {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 1rem;
  }

  .everything-block-item {
    position: static;
    width: 100%;
  }

  .everything-block .section-title {
    grid-column: span 2;
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .everything-block .section-title {
    margin-bottom: 1.5rem;
  }

  .everything-block {
    padding: 0;
  }

  .everything-block-content {
    padding: 2.625rem 0;
    display: flex;
    flex-direction: column;
  }

  .everything-block-item {
    position: static;
    width: 100%;
  }
}
