section.values {
  padding-bottom: 60px;
}
section.values h2 {
  text-align: center;
  margin-bottom: 64px;
  line-height: 60px;
  font-weight: normal;
}
section.values .values-slider {
  padding-bottom: 100px;
}
.values-slider {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.values-slider .swiper-pagination-bullet-active::after {
  background-color: var(--default-blue);
}
.values-slider .custom-navigation {
  display: none;
}
.values-slider .swiper-pagination-bullet {
  background: var(--default-blue-10);
}

.value-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  padding: 50px 0px;
}
.value-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--default-blue);
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
}
.value-card:hover::before {
  background: #e6f2ff;
  scale: 0.96;
}
.value-card:hover span,
.value-card:hover h4 {
  opacity: 0;
}
.value-card:hover p {
  opacity: 1;
}
.value-card span {
  height: 113px;
  width: 113px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}
.value-card img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.value-card * {
  z-index: 1;
}
.value-card h4 {
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--white-color);
  line-height: 30px;
  font-size: 1.75rem;
  transition: all 0.3s ease-in-out;
}
.value-card p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 30px;
  font-size: 1.75rem;
  color: var(--default-blue);
  opacity: 0;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  width: 100%;
  padding: 0 22px;
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  .values-slider .custom-navigation {
    display: flex;
  }
}

@media only screen and (max-width: 991px) {
  section.values {
    padding-bottom: 100px;
  }
  .values-slider {
    padding-bottom: 100px;
  }
  .value-card span {
    height: 72px;
    width: 72px;
  }
  .value-card span svg {
    width: 40px;
  }
  .value-card h4 {
    font-size: 1rem;
    margin-top: 12px;
  }
  .value-card p {
    font-size: 1.125rem;
    line-height: normal;
  }
}

@media only screen and (max-width: 767px) {
  section.values h2 {
    margin-bottom: 37px;
    line-height: normal;
    font-size: 1.75rem;
    font-weight: 300;
  }
  section.values {
    padding-bottom: 90px;
  }
  .value-card {
    padding: 25px 0px;
  }
}
