.services {
  padding: 3rem 0;
}

.services .service-block {
  padding-bottom: 3rem;
}

.services .service-block .title {
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}

.services .service-block .title .number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--gradient-start);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  font-weight: 900;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 0 5vw;
}

.service {
  display: flex;
  width: 100%;
  min-height: 320px;
}

.service.left {
  flex-direction: row;
}

.service.right {
  flex-direction: row-reverse;
}

.service-img {
  width: 50%;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content h3 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 700;
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.service-content li {
  display: flex;
  align-items: start;
  gap: 10px;
}

.service-content li i {
  margin-top: 4px;
  font-size: 14px;
  color: #2d6cdf;
}

.service-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  width: max-content;
  border: 2px solid var(--vibrant-orange);
  color: var(--vibrant-orange);
}

.service-btn:hover {
  background-color: var(--vibrant-orange);
  color: white;
}

.list-other-services {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0 5vw;
}

.list-other-services .card {
  width: calc(100% / 5 - 1rem);
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
}

.list-other-services .card img {
  width: 90px;
  height: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.list-other-services .card h3 {
  font-size: 0.9rem;
  font-weight: 400;
  color: gray;
  text-align: center;
}

@media only screen and (max-width: 1000px) {
  .services {
    padding: 2rem 0;
  }

  .services .service-block .title .number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.8rem;
  }

  .services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin-bottom: 2rem;
  }

  .service {
    display: flex;
    width: 100%;
    min-height: auto;
    margin-bottom: 2rem;
  }

  .service-content ul {
    font-size: 0.9rem;
  }

  .service-btn {
    padding: 8px 16px;
  }

  .list-other-services {
    padding: 0 0;
  }

  .list-other-services .card {
    width: calc(100% / 4 - 1rem);
  }

  .list-other-services .card img {
    width: 70px;
  }
}

@media only screen and (max-width: 560px) {
  .service.left {
    flex-direction: column;
  }

  .service.right {
    flex-direction: column;
  }

  .service-img {
    width: 100%;
  }

  .service-img img {
    width: 100%;
    height: 100%;
    min-height: 20rem;
    margin-bottom: 1rem;
  }

  .service-content {
    width: 100%;
    padding: 0px;
  }

  .service-content h3 {
    font-size: 1.2rem;
  }

  .list-other-services .card {
    width: calc(100% / 2 - 1rem);
  }
}
