body {
  background-color: #f8fafc;
  overflow-x: hidden;
}

input:focus,
textarea:focus {
  border: 0;
  outline: none;
}

.hero-bg {
  background-image: linear-gradient(to right, rgba(44, 62, 80, 0.95), rgba(0, 86, 179, 0.6)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.clip-path-slant {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}


.case-swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
}

@media (max-width: 1024px) {
  .case-swiper .swiper-slide {
    flex-direction: column !important;
    align-items: flex-start;
  }

  .case-swiper .swiper-slide img {
    height: 200px !important;

    width: 100%;
  }
}

.case-swiper .swiper-slide {
  opacity: 0.4;
  transition: opacity 0.5s;
}

.case-swiper .swiper-slide-active {
  opacity: 1;
}


.case-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
}

.case-swiper .swiper-pagination-bullet-active {
  background: #0056b3 !important;
  width: 24px;
  border-radius: 4px;
}