.services {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.services:not(.services--style2) {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.services--style2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  margin-right: -40px;
}
@media all and (max-width: 800px) {
  .services--style2 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0;
    margin-right: 0;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
.services--style2 .services-single {
  height: 240px;
}
@media all and (max-width: 800px) {
  .services--style2 .services-single {
    height: initial;
    padding-bottom: 30%;
  }
}
.services--style2 .services-content::before {
  opacity: 0;
}
.services--style2 .services-content::after {
  opacity: 1;
}
.services--style2 .services-content:hover::before {
  opacity: 1;
}
.services--style2 .services-content:hover::after {
  opacity: 0;
}
.services-single {
  flex: 0 0 25%;
  position: relative;
  z-index: 1;
  height: 360px;
}
@media all and (max-width: 800px) {
  .services-single {
    flex-basis: 50%;
    padding-bottom: 50%;
    min-height: 140px;
    height: auto;
  }
}
.services-single__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  object-fit: cover;
  object-position: center;
}
.services-content {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: #FFFFFF;
}
@media all and (max-width: 800px) {
  .services-content {
    padding: 1rem;
  }
}
.services-content:hover::before {
  opacity: 0;
}
.services-content:hover::after {
  opacity: 1;
}
.services-content, .services-content::before, .services-content::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.services-content::before, .services-content::after {
  content: "";
  z-index: -1;
  transition: opacity 0.3s ease;
}
.services-content::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.services-content::after {
  opacity: 0;
  background-color: rgba(245, 130, 32, 0.7);
}
.services-content__title {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 2;
  text-align: center;
}
.services-content__title::after {
  content: "";
  background: url(../img/list-arrow.svg) calc(100% - 1rem) center/32px 32px no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: block;
  margin-left: 0.9rem;
  flex-shrink: 0;
}
@media all and (max-width: 800px) {
  .services-content__title::after {
    display: none;
  }
}
/*# sourceMappingURL=services.css.map */
