.background__header{
	width: 100vw;
}

.background__img{
	width: 100%;
	object-fit: contain;
}

.services__box{
	padding-top: 5.2vw;
	display: flex;
	flex-direction: column;
	gap: 3.47vw;
}

.services{
	display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr;
  gap: 1.74vw;
}

.services__item{
	display: flex;
  max-width: 43.75vw;
  padding: 2.43vw 6.94vw 3.47vw 2.43vw;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.47vw;
  border-radius: 20px;
  background: var(--blue-200);
  box-sizing: border-box;
}

.services__icon{
	width: 6.94vw;
  height: 6.94vw;
  object-fit: cover;
}

.services__text{
	max-width: 34.72vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.74vw;
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.services__title{
	font-size: 1.94vw;
  line-height: 2.5vw;
}

.services__description{
	font-size: 1.25vw;
  line-height: 1.94vw;
}

@media (max-width: 992px) {
	.services__item {
    padding: 3.53vw 10.09vw 5.04vw 3.53vw;
    gap: 5.04vw;
  }

  .services__icon {
    width: 10.09vw;
    height: 10.09vw;
  }

  .services__text {
    gap: 2.52vw;
  }

  .services__title {
    font-size: 2.83vw;
    line-height: 3.63vw;
  }

  .services__description {
    font-size: 1.82vw;
    line-height: 2.83vw;
  }
}

@media (max-width: 641px) {
	.services__box{
		padding-top: 8vw;
		gap: 5.33vw;
	}

	.services{
		grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    gap: 4vw;
	}

	.services__item {
    max-width: 100%;
    padding: 6.67vw 5.33vw 8vw;
    gap: 8vw;
  }

	.services__icon {
    width: 18.67vw;
    height: 18.67vw;
  }

  .services__text {
    max-width: 100%;
    gap: 4vw;
  }

  .services__title {
    font-size: 5.33vw;
    line-height: 6.93vw;
  }

  .services__description {
    font-size: 4.27vw;
    line-height: 6.4vw;
  }
}