/* :root {
  --font-smaller: 12px;
  --font-small: 13px;
  --font-common: 14px;
  --font-middle: 15px;
  --font-normal: 16px;
  --font-large: 18px;
  --font-larger: 20px;
  --font-largest: 23px;
  --font-subtitle: 28px;
  --font-caption: 30px;
  --font-title: 45px;
  --black-color: #000;
  --black-color-100: #333;
  --grey-color-100: #4d4d4d;
  --grey-color-150: #9d9d9d;
  --grey-color-200: #616161;
  --grey-color-250: #bcbcbc;
  --grey-color-300: #c4c4c4;
  --grey-color-350: #cfcfcf;
  --grey-color-400: #dcdcdc;
  --grey-color-450: #e5e5e5;
  --grey-color-500: #b8b8b8;
  --grey-color-550: #ccc;
  --grey-color-600: #dbdbdb;
  --grey-color-opacity-20: rgba(158, 158, 158, 0.23);
  --grey-color-opacity-65: rgba(247, 247, 247, 0.65);
  --white-color: #fff;
  --white-color-opacity-75: rgba(255, 255, 255, 0.75);
  --white-color-opacity-65: rgba(255, 255, 255, 0.65);
  --white-color-opacity-60: rgba(255, 255, 255, 0.60);
  --white-color-100: #f7f7f7;
  --white-color-200: #f3f3f3;
  --blue-color-100: #abbece;
  --gradient-black-100: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.74) 100%);
  --gradient-black-hero: linear-gradient(90.29deg, #383838 0.25%, rgba(45, 45, 45, 0.56) 99.07%);
  --gradient-black-300: linear-gradient(198.1deg, #6E6E71 -7.67%, #252429 46.83%);
  --gradient-blue-100: linear-gradient(90.61deg, rgba(171, 190, 206, 0.1) 0.53%, rgba(171, 190, 206, 0.68) 52.08%, rgba(171, 190, 206, 0.1) 99.51%);
  --gradient-blue-200: linear-gradient(113.26deg, rgba(171, 190, 206, 0.35) 1.43%, rgba(171, 190, 206, 0) 110.33%);;
} */

/* HISTORY */
.history {
  margin: 0 0 150px;
}

/* COUNTER */
.counter {
  margin: 0 0 180px;
}
.counter__container {
  position: relative;
}
.counter__container::before {
  content: '';
  position: absolute;
  top: -65px;
  right: -190px;
  width: 205px;
  height: 205px;
  background-color: var(--grey-color-opacity-65);
  border-radius: 50%;
}
.counter__txt {
  margin: 0 0 20px;
}
.counter__list {
  justify-content: space-between;
}
.counter__item {
  width: 33%;
  max-width: 360px;
}
.count-col__numbers {
  align-items: baseline;
  flex-wrap: nowrap;
  font-weight: 700;
}
.count-col__num {
  font-size: 149px;
}
.count-col__aff {
  position: relative;
  font-size: 62px;
}
.count-col__aff::before {
  content: '';
  position: absolute;
  right: -35px;
  top: -6px;
  width: 95px;
  height: 95px;
  background-color: var(--blue-color-100);
  border-radius: 50%;
  z-index: -1;
}
.count-col__desc {
  font-size: var(--font-normal);
  font-weight: 700;
  color: var(--grey-color-150);
}
@media (max-width: 1400px) {
  .history, .counter {
    margin: 0 0 80px;
  }
  .count-col__num {
    font-size: 110px;
  }
  .count-col__aff {
    font-size: 40px;
  }
  .count-col__aff::before {
    right: -20px;
    top: -8px;
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 1024px) {
  .history, .counter {
    margin: 0 0 60px;
  }
  .count-col__num {
    font-size: 90px;
  }
  .count-col__aff {
    font-size: 30px;
  }
  .count-col__aff::before {
    top: -10px;
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 768px) {
  .count-col__num {
    font-size: 60px;
  }
  .count-col__aff {
    font-size: 20px;
  }
  .count-col__desc {
    font-size: var(--font-common);
  }
  .count-col__aff::before {
    width: 35px;
    height: 35px;
  }
  .counter__item {
    padding: 0 10px 0 0;
  }
  .history, .counter {
    margin: 0 0 40px;
  }
}
@media (max-width: 480px) {
  .counter__item {
    width: 100%;
  }
}