.anchors-icon-component {
  padding-bottom: 16px;
  padding-top: 8px;
}
.anchorsWithIcon {
  display: flex;
  flex-wrap: wrap;
  /*gap: 25px;*/
  justify-content: center;
  text-align: center;
  margin: 6px 16px 0;
}
  

  .anchorsWithIcon .anchorLink {
    flex-basis: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    /* margin: 0 25px 25px;*/
  }

  .anchorsWithIcon .anchor-item {
    display: flex;
  }
  .anchorsWithIcon.text-under .anchor-item {
    align-items: center;
    flex-direction: column;
  }

    .anchorsWithIcon .anchor-item img {
      width: 39px;
      height: 39px;
    }

    .anchorsWithIcon .anchor-item .text {
      color: #123A5E;
      font-size: 16px;
      line-height: 18px;
      font-weight: 600;
      max-width: 140px;
      margin-top: 5px;
      text-align: center;
    }
  .anchorsWithIcon.text-next_to .anchorLink .anchor-item {
    flex-direction: row;
    gap: 8px;
  }

    .anchorsWithIcon.text-next_to .anchorLink .anchor-item .text {
      margin-left: 10px;
      margin-top:0px;
      text-align:right;
    }

@media screen and (max-width: 768px) {
  .anchorsWithIcon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:15px;
  }

  .anchors-icon-component {
    padding-bottom: 16px;
  }
  .anchorsWithIcon.text-next_to {
    justify-content: space-evenly;
    display:flex;
  }

    .anchorsWithIcon .anchorLink {
      flex-basis: 90px;
      flex-direction: column;
      /*margin-bottom: 20px;*/
      text-align: center;
    }

    .anchorsWithIcon .anchor-item {
      flex-direction: column;
    }

      .anchorsWithIcon .anchor-item .text {
        max-width: none;
      }

      .anchorsWithIcon .anchor-item img {
        width: 39px;
        height: 39px;
      }
}

@media screen and (min-width: 768px) {
  .anchorsWithIcon {
    justify-content: space-between;
  }
}
