.items-list__item {
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  position: relative;
}
@media (min-width: 992px) {
  .items-list__item {
    padding-bottom: 25px;
  }
}
.items-list__item img {
  width: 100%;
  max-width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.items-list__item-link {
  display: block;
  position: relative;
  overflow: hidden;
}
.items-list__item-link:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(83, 194, 187, 0.96);
  opacity: 0;
  z-index: 5;
  transition: opacity 150ms;
}
.items-list__item-link.covered:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 4;
}
.items-list__item-link.type-1 {
  clip-path: polygon(50% 0, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}
.items-list__item-link.type-2 {
  clip-path: circle(50% at 50%);
}
.items-list__item-link.type-3 {
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.items-list__item:hover .items-list__item-link:after {
  opacity: 1;
}
.items-list__item-content {
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  color: #fff;
  z-index: 10;
}
@media (min-width: 768px) {
  .items-list__item-content {
    padding: 45px;
  }
}
@media (min-width: 1200px) {
  .items-list__item-content {
    padding: 55px;
  }
}
.items-list__item-name {
  text-transform: uppercase;
  line-height: 31px;
  font-size: 22px;
}
@media (min-width: 576px) {
  .items-list__item-name {
    line-height: 35px;
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .items-list__item-name {
    line-height: 31px;
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .items-list__item-name {
    line-height: 35px;
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  .items-list__item-name {
    line-height: 31px;
    font-size: 22px;
  }
}
.items-list__item-name.ai-icon {
  position: relative;
}
.items-list__item-name.ai-icon:before {
  --size: 65px;
  --top: -75px;
  content: "";
  width: var(--size);
  height: var(--size);
  display: block;
  position: absolute;
  top: var(--top);
  left: 50%;
  background: url("img/ai-net.png") no-repeat;
  background-size: contain;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .items-list__item-name.ai-icon:before {
    --size: 50px;
    --top: -60px;
  }
}
@media (min-width: 992px) {
  .items-list__item-name.ai-icon:before {
    --size: 65px;
    --top: -75px;
  }
}
@media (min-width: 1200px) {
  .items-list__item-name.ai-icon:before {
    --size: 50px;
    --top: -60px;
  }
}
@media (min-width: 1500px) {
  .items-list__item-name.ai-icon:before {
    --size: 65px;
    --top: -75px;
  }
}
.items-list__item-caption {
  margin-top: 10px;
  line-height: 24px;
  font-size: 16px;
}
@media (min-width: 576px) {
  .items-list__item-caption {
    line-height: 25px;
    font-size: 17px;
  }
}
@media (min-width: 768px) {
  .items-list__item-caption {
    line-height: 24px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .items-list__item-caption {
    line-height: 25px;
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .items-list__item-caption {
    line-height: 24px;
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .items-list__item-caption {
    margin-top: 20px;
  }
}
.items-list__item-tags {
  display: none;
}
@media (min-width: 992px) {
  .items-list__item-tags {
    width: 100%;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50px);
    transition: opacity 200ms, transform 300ms ease-out;
  }
}
.items-list__item-tags a {
  margin-top: 6px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 20px;
  font-size: 17px;
  color: #AEAEAE;
}
@media (min-width: 992px) {
  .items-list__item-tags a {
    line-height: 25px;
    font-size: 22px;
  }
}
.items-list__item-tags a:hover {
  color: #2A8E8A;
}
.items-list__item:hover .items-list__item-tags {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.items-list__buttons {
  padding-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .items-list__buttons {
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .items-list__buttons {
    padding-top: 60px;
  }
}
@media (min-width: 1200px) {
  .items-list__buttons {
    padding-top: 30px;
  }
}
@media (min-width: 1400px) {
  .items-list__buttons {
    padding-top: 60px;
  }
}
