.swiper-2 {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 525px;
  overflow: hidden;
}
.swiper-2 h2 {
  transition: none !important;
  color: white;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -1.44px;
  border-radius: 0px 10px 10px 0px;
  background: #ed1c24;
  padding: 15px 30px;
  margin-bottom: 10px;
  transform: translateX(-30px);
}
.swiper-2 p {
  color: white;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 171.429% */
  letter-spacing: -0.7px;
  font-family: pptelegraf-light;
}
.swiper-2 .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
/* swlides */
.swiper-2 .swiper-slide {
  overflow: hidden;
  border-radius: 24px;
  height: 318px;
  transition: all 0.3s;
  margin-top: 104px;
  position: relative;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.swiper-2 .swiper-slide .overlay {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(175, 0, 3, 0.4) 0%, rgba(255, 0, 5, 0.4) 100%);
}
/* active slide*/
.swiper-2 .swiper-slide-active {
  height: 525px;
  margin-top: 0;
  padding: 60px 48px;
  justify-content: flex-start;
}
.swiper-2 .swiper-slide-active .overlay {
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.8) 0%, rgba(20, 20, 20, 0.3) 100%);
}

.swiper-2 .swiper-slide-active h2 {
  font-size: 48px;
  /* color: #ff0005; */
  background: #ed1c2300;
  margin-bottom: 0;
}
.swiper-2 .swiper-slide-active p {
  /* color: #141414; */
}
.swiper-2 .swiper-slide-active .header-nav-features {
  display: flex;
}

/* pagination */
.swiper-2 .swiper-pagination-horizontal {
  position: absolute;
  bottom: 0 !important;
  left: 400px !important;
  height: fit-content;
  width: fit-content !important;
}
@media (width<764px) {
  .swiper-2 .swiper-pagination-horizontal {
    left: 0 !important;
    width: 100% !important;
    bottom: 15px !important;
  }
}

.swiper-2 .swiper-pagination-bullet {
  backdrop-filter: blur(2px);
  width: 10px;
  height: 22px;
  border: 2px solid #919191;
  background: white;
  border-radius: 32px;
}
.swiper-2 .swiper-pagination-bullet-active {
  background: rgba(255, 0, 5, 0.12);
  width: 40px;
  height: 22px;
  position: relative;
  border: 1px solid #ff0005;
}

.swiper-2 .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 32px;
  background-color: #ff0005;
  height: 14px;
  animation: bulletAnimation 3s;
}

@keyframes bulletAnimation {
  from {
    width: 2px;
  }
  to {
    width: 34px;
  }
}

/* button */

.header-nav-features {
  position: relative;
  height: max-content;
  width: max-content;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header-nav-features .hire-container {
  padding: 16px 34px;
  border: 1px solid #ff0005;
  border-radius: 48px;
  text-align: center;
  color: white;
  transition: all 0.3s ease-in;
}

.header-nav-features .arrow-circle {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  transition: all 0.3s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff0005;
}

.header-nav-features .arrow-circle svg {
  color: #ff0005;
  transition: all 0.3s ease-in;
  transform: rotate(0deg);
}

.header-nav-features:hover .hire-container {
  background-color: #ff0005 !important;
  border: 1px solid rgba(255, 0, 5, 0.12);
  color: white;
}

.header-nav-features:hover .arrow-circle {
  border: 1px solid #ff0005;
}

.header-nav-features:hover .arrow-circle svg {
  transform: rotate(45deg);
  color: #ff0005;
}
