.cols-holder .col-image {
  margin-bottom: 50px;
  position: relative;
  /*#animate-wheel {
    transform-origin: center;
    transform-box: fill-box;
    animation: rotate 6s linear infinite;
  }*/
}
@media (min-width: 1280px) {
  .cols-holder .col-image {
    margin-bottom: 0;
  }
}
.cols-holder .col-image img,
.cols-holder .col-image svg {
  display: block;
  margin: auto;
  max-width: 260px;
  height: auto;
}
@media (min-width: 1280px) {
  .cols-holder .col-image img,
  .cols-holder .col-image svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 0;
    max-width: calc(200px + 180 * (100vw - 1280px) / 640);
  }
}
@media (min-width: 1920px) {
  .cols-holder .col-image img,
  .cols-holder .col-image svg {
    max-width: 380px;
  }
}
.cols-holder .col-image .wheel {
  transform-origin: center;
  transform-box: fill-box;
  animation: rotate 6s linear infinite;
}
@media (min-width: 1280px) {
  .cols-holder .row-content {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .cols-holder .row-content.row-top .col {
    padding-bottom: calc(70px + 60 * (100vw - 1280px) / 640);
  }
}
@media (min-width: 1280px) {
  .cols-holder .row-content.row-bottom .col {
    padding-top: calc(70px + 60 * (100vw - 1280px) / 640);
    padding-bottom: 0;
  }
}
@media (min-width: 1920px) {
  .cols-holder .row-content .col {
    flex: 0 0 480px;
    max-width: 480px;
  }
}
@media (min-width: 1280px) {
  .cols-holder .row-content .col {
    flex: 0 0 calc(340px + 140 * (100vw - 1280px) / 640);
    max-width: calc(340px + 140 * (100vw - 1280px) / 640);
  }
}
.cols-holder .row-content .col .inner {
  padding-bottom: 50px;
}
@media (min-width: 1280px) {
  .cols-holder .row-content .col .inner {
    padding-bottom: 0;
  }
}
.cols-holder .row-content .col .inner h2 {
  text-transform: uppercase;
  margin-bottom: 35px;
}
.cols-holder .row-content .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1280px) {
  .cols-holder .row-content .inner {
    display: block;
    text-align: left;
  }
}
.cols-holder .row-content .inner ul,
.cols-holder .row-content .inner ol {
  text-align: left;
  list-style-position: inside !important;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}