/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.icons-repeater-block {
  margin-bottom: clamp(30px, 22.3529411765px + 0.0196078431 * 100vw, 60px);
}
.icons-repeater-block .wrapper {
  margin-bottom: clamp(30px, 22.3529411765px + 0.0196078431 * 100vw, 60px);
}
.icons-repeater-block .wrapper:last-child {
  margin-bottom: 0;
}
.icons-repeater-block .wrapper .element-title {
  font-size: clamp(18px, 14.9411764706px + 0.0078431373 * 100vw, 30px);
  font-weight: 700;
  margin-bottom: clamp(15px, 8.6274509804px + 0.0163398693 * 100vw, 40px);
}
.icons-repeater-block .icons-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: clamp(20px, 17.4509803922px + 0.0065359477 * 100vw, 30px);
}
@media (max-width: 768px) {
  .icons-repeater-block .icons-wrapper {
    justify-content: flex-start;
  }
}
.icons-repeater-block .icons-wrapper .icon-wrapper {
  width: calc(16.6% - 25px);
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .icons-repeater-block .icons-wrapper .icon-wrapper {
    width: calc(25% - 19px);
  }
}
@media (max-width: 768px) {
  .icons-repeater-block .icons-wrapper .icon-wrapper {
    width: calc(33.3% - 15px);
  }
}
@media (max-width: 512px) {
  .icons-repeater-block .icons-wrapper .icon-wrapper {
    width: calc(50% - 11px);
  }
}
.icons-repeater-block .icons-wrapper .icon-wrapper picture {
  width: inherit;
}
.icons-repeater-block .icons-wrapper .icon-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
.icons-repeater-block .icons-wrapper .icon-wrapper .icon {
  margin-bottom: clamp(5px, 3.7254901961px + 0.0032679739 * 100vw, 10px);
  pointer-events: none;
}
.icons-repeater-block .icons-wrapper .icon-wrapper .label {
  font-weight: 700;
  margin-bottom: 5px;
}
.icons-repeater-block .icons-wrapper .icon-wrapper .label:last-child {
  margin-bottom: 0;
}
.icons-repeater-block .icons-wrapper .icon-wrapper .site {
  font-weight: 600;
  color: var(--1-c-1-c-1-c);
  border-bottom: 1px solid var(--1-c-1-c-1-c);
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 5px;
  cursor: pointer;
  text-decoration: none;
}
.icons-repeater-block .icons-wrapper .icon-wrapper .site:hover {
  color: var(--338-af-4);
  border-bottom: 1px solid var(--338-af-4);
}
.icons-repeater-block .icons-wrapper .icon-wrapper .phone {
  color: var(--1-c-1-c-1-c);
}
.icons-repeater-block .icons-wrapper .icon-wrapper .phone:hover {
  color: var(--338-af-4);
}
