/*!*************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/scss/blocks/achievements.scss ***!
  \*************************************************************************************************************************************************************************/
:root {
  --theme-main-font: "Montserrat", sans-serif;
  --theme-second-font: "Montserrat", sans-serif;
}

.achievements__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.achievements__item {
  max-width: 272px;
  max-height: 215px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.achievements__item--icon {
  width: 96px;
  height: 96px;
  margin-bottom: 16px;
}
.achievements__item--title {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 12px;
}
.achievements__item--subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: rgba(51, 51, 51, 0.8980392157);
}
@media (max-width: 768px) {
  .achievements__items {
    gap: 3px;
  }
  .achievements__item {
    max-width: 176px;
    max-height: 178px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .achievements__item--icon {
    width: 72px;
    height: 72px;
    margin-bottom: 8px;
  }
  .achievements__item--title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .achievements__item--subtitle {
    font-size: 12px;
  }
}
