.section-suppliers {
  padding: var(--indexSectionPadding) 0;

  .page-width {
    position: relative;
  }
}

.section-suppliers__holder {
  max-width: 470px;
  margin: 0 auto;
  @media only screen and (min-width: 1200px) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 470px;
  }
  @media only screen and (min-width: 1400px) {
    max-width: 495px;
  }

  .section-suppliers__content {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    @media only screen and (min-width: 1200px) {
      margin-bottom: 0;
    }

    > * {
      margin-bottom: 24px;
      @media only screen and (min-width: 769px) {
        margin-bottom: 32px;
      }
      &:last-child {
        margin-bottom: 0;
      }
    }
  }
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  @media only screen and (min-width: 1200px) {
    padding-top: 8px;
  }
  .text-left & {
    justify-content: start;
  }
  .text-center & {
    justify-content: center;
  }
  .text-right & {
    justify-content: right;
  }
}

.skills__title {
  display: inline-flex;
  margin-bottom: 4px;
  padding: 12px 16px;
  text-transform: uppercase;
  background: #dfdfd7;
  border-radius: var(--productRadius);
  @media only screen and (min-width: 769px) {
    margin-bottom: 8px;
    font-size: 14px;
  }
  &:last-child {
    margin-bottom: 0;
  }
}

.section-suppliers__image {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 10px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  @media only screen and (min-width: 1200px) {
    position: absolute;
    inset: 0 var(--pageWidthPadding);
    display: block;
  }
  @media only screen and (min-width: 1400px) {
    inset: 0 calc(var(--pageWidthPadding) * 2);
  }
}

.section-suppliers__image-item {
  border-radius: 10px;
  overflow: hidden;
  @media only screen and (min-width: 1200px) {
    position: absolute;
    border-radius: 20px;
  }
  &:nth-child(1) {
    @media only screen and (min-width: 1200px) {
      top: 0;
      left: 8px;
    }
  }
  &:nth-child(2) {
    @media only screen and (min-width: 1200px) {
      top: 0;
      right: 8px;
    }
  }
  &:nth-child(3) {
    @media only screen and (min-width: 1200px) {
      bottom: 0;
      left: 8px;
    }
  }
  &:nth-child(4) {
    @media only screen and (min-width: 1200px) {
      right: 8px;
      bottom: 0;
    }
  }

  > *,
  .placeholder-svg {
    @media only screen and (min-width: 1200px) {
      display: block;
      width: 280px;
      height: 194px;
    }
    @media only screen and (min-width: 1400px) {
      width: 324px;
      height: 225px;
    }
  }

  img {
    width: 100%;
    max-width: none;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
