.zenh_badges-block {
  margin: 120px 0 160px;
  position: relative;
}
.zenh_badges-parallax {
  position: absolute !important;
  z-index: 10;
  top: -320px;
  width: calc(50% - 370px);
  left: 0;
  bottom: -360px;
}
.zenh_badges-parallax img {
  max-height: 100%;
  max-width: 600px;
  object-fit: contain;
}
.zenh_badges {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
}
.zenh_badges-title-box {
  margin-bottom: 23px;
}
.zenh_badges-title {
  text-box: trim-both cap alphabetic;
  color: #000;
  text-align: center;
  font-family: Nunito;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
}
.zenh_badges-list {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display:none;
}
.zenh_badges-item {
  vertical-align: middle;
  cursor: pointer;
  transition: .2s all ease-in-out;
}
.zenh_badges-item:focus-visible {
  filter: brightness(0) saturate(100%) invert(55%) sepia(89%) saturate(500%) hue-rotate(90deg) brightness(0.85);
}
.zenh_badges-item-image {
  vertical-align: middle;
}
.zenh_badges-button-box {
  text-align: center;
  margin-top: 38px;
}
.zenh_badges-button {
  color: #000;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  background: #22E243;
  border: none;
  cursor: pointer;
  padding: 20px 72px 20px;
  border-radius: 40px;
  position: relative;
  transition: .2s all ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-box: trim-both cap alphabetic;
}
.zenh_badges-button > svg path {
  transition: .2s all ease-in-out;
}
.zenh_badges-button > svg {
  flex-shrink: 0;
}
.zenh_badges-button-label {
  line-height: 1;
}
.zenh_badges-button:focus-visible {
  color: #FFF;
  background: #000;
}
.zenh_badges-button > span {
  padding-left: 24px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  transition: .2s all ease-in-out;
}
.zenh_badges-button > span:before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../images/icons/code.svg) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.zenh_badges-button:focus-visible > span:before {
  background-image: url(../images/icons/code-white.svg);
}

@media screen and (max-width: 1450px) {
  .zenh_badges-parallax {
    left: -200px;
    width: calc(50% - 170px);
  }
}

@media screen and (min-width: 992px) {
  .zenh_badges-button:hover {
    color: #FFF;
    background: #000;
  }
  .zenh_badges-button:hover > svg path {
    stroke: #FFF;
  }
  .zenh_badges-button:hover > span:before {
    background-image: url(../images/icons/code-white.svg);
  }
  .zenh_badges-item:hover {
    filter: brightness(0) saturate(100%) invert(55%) sepia(89%) saturate(500%) hue-rotate(90deg) brightness(0.85);
  }
}

@media screen and (max-width: 991px) {
  .zenh_badges-list{
    display:flex;
  }
  .zenh_badges-block {
    margin-bottom: 96px;
    margin-top:102px;
  }
  .zenh_badges {
    padding: 0 22px;
    position: relative;
    z-index: 20;
  }
  .zenh_badges-title-box {
    margin-bottom: 25px;
  }
  .zenh_badges-title {
    font-size: 24px;
    line-height: 32px;
    max-width: 240px;
    margin: 0 auto;
  }
  .zenh_badges-button-box {
    margin-top: 32px;
    display: none;
  }
  .zenh_badges-button {
    padding: 20px;
    width: 100%;
    text-align: center;
  }
  .zenh_badges-button:before {
    left: 18px;
  }
  .zenh_badges-parallax {
    width: calc(50% - 50px);
    left: -30px;
    top: -60px;
    bottom: -50px;
  }
}