.services {
  background: #A0A09F;
}
.services__content {
  display: flex;
  flex-flow: column;
  gap: 64px;
  padding: 53px 0px;
}
.services__head {
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
}
.services__mini-title {
  max-width: 40%;
  width: 100%;
}
.services__title {
  max-width: 49%;
  width: 100%;
  font-family: Geist;
  font-weight: 300;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -2.8%;
  color: #f0f2f5;
}
.services__title strong {
  font-weight: 300;
  color: #121212;
}
.services__body {
  display: flex;
  flex-flow: row;
  gap: 68px 32px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.services__item {
  width: calc((100% - 96px) / 4);
  display: flex;
  flex-flow: column;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s ease, opacity 0.6s ease;
  will-change: transform, opacity;
}
.services__item.visible {
  opacity: 1;
  transform: translateY(0);
}
.services__item-digits {
  margin-bottom: 8px;
  font-family: Geist Mono;
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -1%;
  text-align: left;
  color: rgba(144, 164, 174, 0.6509803922);
}
.services__item-image {
/*   height: 256px; */
  width: 100%;
}
.services__item-title {
  font-family: Geist;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.4%;
  color: #f0f2f5;
  margin-bottom: 28px;
  min-height: 46px;
}
.services__item-button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 18px;
  border: 1px solid rgba(144, 164, 174, 0.6509803922);
  border-radius: 30px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
	transition: 0.3s ease;
	position: relative;
	z-index: 3;
}
.services__item-button svg path {
	transition: 0.3s ease;
}

.services__item img {
	transition: 0.3s ease;
}

.services__item:hover .services__img-overlay {
	backdrop-filter: blur(3px);
}

.services__item:hover .services__item-button {
	background: #fff;
}

.services__item:hover .services__item-button svg path {
	fill: rgb(0, 28, 54);
}

.services__item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.services__img-container {
	position: relative;
	display: flex;
	margin-bottom: 16px;
}

.services__img-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
/* 	background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%); */
	transition: 0.3s ease;
}

@media (max-width: 1024px) {
  .services {
/*     background: #001c36; */
  }
  .services__content {
    display: flex;
    flex-flow: column;
    gap: 32px;
    padding: 48px 0 12px 0;
  }
  .services__head {
    display: flex;
    flex-flow: column;
    gap: 8px;
    justify-content: space-between;
  }
  .services__mini-title {
    max-width: 100%;
    width: 100%;
  }
  .services__title {
    max-width: 100%;
    width: 100%;
    font-family: Geist;
    font-weight: 300;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -2.8%;
/*     color: #f0f2f5; */
	padding-top: 54px;
  }
  .services__title strong {
    font-weight: 300;
/*     color: #94a9b5; */
  }
  .services__body {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0px;
  }
  .services__item {
    width: calc((100% - 8px) / 2);
    display: flex;
    flex-flow: column;
    position: relative;
    margin-bottom: 32px;
  }
  .services__item-digits {
    margin-bottom: 8px;
    font-family: font family/Geist Mono;
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: -1%;
    text-align: left;
    color: rgba(144, 164, 174, 0.6509803922);
  }
  .services__item-image {

/*     height: 230px; */
    width: 100%;
    margin-bottom: 16px;
  }
  .services__item-title {
    font-family: Geist;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.4%;
    color: #f0f2f5;
    margin-bottom: 28px;
    min-height: 66px;
  }
  .services__item-button {
    width: -moz-fit-content;
    width: fit-content;
    padding: 7px 18px;
    border: 1px solid rgba(144, 164, 174, 0.6509803922);
    border-radius: 30px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
  .services__item-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}/*# sourceMappingURL=style.css.map */