@keyframes icon-bounce {
    0%,100%,20%,50%,80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    60% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px)
    }
}
.block-section-service-2 {
  padding-top: var(--offset-top-desktop);
  padding-bottom: var(--offset-bottom-desktop);
}
.section-service-2 {
  background-color: var(--bg-color);
}
.section-service-2 .block-title .title {
    margin-bottom: 60px;
}
.section-service-2 .block-service:not(:first-child) .service-item:before {
  content: '';
  width: 1px;
  height: 60%;
  background-color: var(--border);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section-service-2 .service-item {
  position: relative;
  z-index: 0;
  padding: 30px;
  text-align: center;
}
.section-service-2 .service-item .icon {
      width: 112px;
    height: 112px;
  background-color: #EFF6F1;
  margin-left: auto;margin-right: auto;
  border-radius: 50%;
  display: flex;justify-content: center;
  align-items: center;
}
.section-service-2 .service-item .icon img {
  width: 64px;height: 64px;
}
.section-service-2 .service-item .title {
  font-size: 19px;
  font-weight: bold;
  margin-top: 10px;
  color: var(--title);
}
.section-service-2 .service-item .desc {
  font-size: 14px;
  margin-top: 10px;
  font-weight: 400;
  color: var(--body);
  min-height: 76px;
}
.section-service-2 .service-item .action {
  margin-top: 10px;
}
.section-service-2 .service-item .button {
  padding: 0;
  background: 0;
  border: 0;
  position: relative;
  color: var(--link);
  font-weight: bold;
}
.section-service-2 .service-item .button .button--icon{
  margin-left: 5px;
}
.section-service-2 .service-item .button .button--icon svg{
  width: 9px;height: 9px;
}
.section-service-2 .service-item .button:before {
  content: '';
  top: calc(100% + 2px);
  width: 0;left: 0;
  position: absolute;
  opacity: 0;
  height: 1px;
  background-color: var(--title);
  visibility: hidden;
  z-index: 1;
}
.section-service-2 .service-item .button:hover {color: var(--desc);}
.section-service-2 .service-item .button:hover:before {
  opacity: 1;width: 100%;
  visibility: visible;
}
@media (min-width: 992px) {
  .section-service-2 .service-item:hover .icon {
        animation: icon-bounce 1s infinite linear;
  }
}
@media (max-width: 992px) {
  .block-section-service-2 {
    padding-top: var(--offset-top-mobile);
    padding-bottom: var(--offset-bottom-mobile);
  }
  .section-service-2 {
    margin-bottom: 0px;
  }
  .section-service-2 .block-service {padding: 20px 15px;}
  .section-service-2 .service-item {
    margin-bottom: 0px;
    padding: 0;
  }
  .section-service-2 .service-item .desc {
    font-size: 14px;
        margin-top: 12px;
    min-height: unset;
  }
  .section-service-2 .service-item .title {
    font-size: 16px;    
    margin-top: 15px;
    line-height: 1.2;
  }
  .section-service-2 .block-title .title {
    margin-bottom: 30px;
  }
  .section-service-2 .block-service:not(:first-child) .service-item:before {display: none;}
}


