#service {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}
#service .header {
  text-align: center;
  margin: 50px auto;
}
#service .header .headline-2 {
  text-align: center;
  color: #19462C;
  margin-bottom: 15px;
}
#service .header .subtitle-2 {
  text-align: center;
  color: #64748B;
}
#service .swiper {
  max-width: 1920px;
  width: 100%;
  height: 100%;
}
#service .swiper .swiper-pagination {
  bottom: 0;
}
#service .swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #19462C;
  width: 12px;
  height: 12px;
  opacity: 1;
  outline: none;
  transition: all 0.2s;
}
#service .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #19462C;
  opacity: 1;
}
#service .swiper .card {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 15px 32px;
  width: 390px;
  height: 400px;
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.1), 0px 8px 8px -4px rgba(16, 24, 40, 0.04);
  border-radius: 16px;
  transition: all 0.2s;
  color: #19462C;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 35px 0;
  text-align: center;
  text-decoration: none;
}
#service .swiper .card img {
  width: 100px;
  height: 100px;
  transition: all 0.2s;
  text-align: center;
  margin: 0 auto;
}
#service .swiper .card h1 {
  margin: 0;
  text-align: center;
}
#service .swiper .card h3 {
  text-align: center;
  margin: 0;
}
#service .swiper .card .icon {
  font-size: 52px;
}
#service .swiper .card:hover {
  background-color: #19462C;
  color: #FFFFFF;
}
@media (min-width: 1921px) {
  #service .swiper:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), white 90%);
    width: 70px;
    height: 100%;
  }
  #service .swiper:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0), white 90%);
    width: 70px;
    height: 100%;
  }
}
