/*
#ff5604
#003e3e
*/
.block-services .services-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  /*
  &.count-2{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
  }
  &.count-3,
  &.more_than_3{
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
  }
      */
}
.block-services .services-wrap .box {
  width: 100%;
  border-radius: 30px;
  background: var(--wp--preset--color--tertiary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  overflow: hidden;
}
.block-services .services-wrap .box a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.block-services .services-wrap .box a:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.block-services .services-wrap .box .thumb {
  height: 176px;
  overflow: hidden;
}
.block-services .services-wrap .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.block-services .services-wrap .box .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 160px;
  padding: 20px;
}
.block-services .services-wrap .box .info h3 {
  font-size: var(--wp--preset--font-size--md);
  margin-bottom: 16px;
  font-weight: 500;
  text-align: center;
}
.block-services .services-wrap .box .info .ico {
  display: block;
  background: var(--wp--preset--color--primary) url(../../images/arrow-right.svg) center no-repeat;
  width: 40px;
  height: 40px;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}
@media (max-width: 989.98px) {
  .block-services .services-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
  }
  .block-services .services-wrap .box {
    width: calc(50% - 6px);
  }
}
@media (max-width: 599.98px) {
  .block-services .services-wrap .box {
    width: 100%;
  }
}
/*# sourceMappingURL=services.css.map */