@use "../utilities";
.insabiIconsList {
  border-bottom: solid 1px var(--f-aire);
  &__title {
    @extend %VFSans-font;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.37;
    color: var(--a-negro-unops);
  }
  &__contentIcons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
  }
  &__icon {
    max-height: 75px;
    max-width: 251px;
    $sizes: 1 191 57, 2 118 70, 3 106 75, 4 251 58, 5 244 57, 6 69 70;
    @each $index, $w, $h in $sizes {
      &:nth-child(#{$index}) {
        width: #{$w}px;
        height: #{$h}px;
      }
    }
  }
}
