.services {
  display: flex; flex-direction: column; justify-content: center;
}

.service {
  background: linear-gradient(to bottom, rgb(5, 39, 71) 0%, rgba(5, 39, 71, 0) 70%);
  padding: 1rem;
  border: 1px solid var(--dark-blue);
  border-radius: 3rem;
}

.service .title h2{
  color: black;
}

.big-number {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center;
  margin-top: 20rem;
}

.big-number span {
  font-size: 16rem;
}

.big-number .mid-line {
  width: 15rem;
  height: 2px;
  background-color: black;
}

.big-number .line {
  height: 20rem;
  width: 2px;
  background-color: black;
}

.service-description p {
  margin: 4rem 0rem;
}

.service-description {
  background: linear-gradient(to bottom, transparent 0%, var(--dark-blue-t));
  backdrop-filter: blur(30px);
  border-radius: 2rem;
  padding: 2rem;

}

@media screen and (min-width:800px) {
  .service {
    display: flex; flex-direction: row;
    background: linear-gradient(to right, rgba(5, 39, 71, 0.801) 0%, rgba(5, 39, 71, 0) 70%);
    column-gap: 3rem;
    background-color: ;
  }

  .service .title {
    flex: 1;
    display: flex;
    justify-content: center; align-items: center;
  }

  .service-description {
    background: linear-gradient(to right, transparent 0%, var(--dark-blue-t));
    backdrop-filter: blur(30px);
    flex: 1;
  }
}

@media screen and (min-width: 1000px) {
  .service h2 {
    font-size: 3.5rem;
  }

}