.swiper-1 {
  width: 100%;
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
}

.swiper-1 .swiper-slide {
  display: flex;
  justify-content: flex-end !important;
  padding: 25px !important;
  gap: 9px;
  aspect-ratio: 984/580;
  min-height: 580px;
}
@media (width<1440px) {
  .swiper-1 .swiper-slide {
    min-height: unset;
  }
}
.swiper-1 h2 {
  color: var(--system-colors-white-base, #fff);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px; /* 100% */
  letter-spacing: -1.44px;
}
.swiper-1 p {
  color: white;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  letter-spacing: -0.7px;
}
@media (width<600px) {
  .swiper-1 h2 {
    font-size: 20px;
    line-height: 20px; /* 100% */
  }
  .swiper-1 p {
    font-size: 12px;
    color: #fff;
    line-height: 14.5px; /* 120.833% */
  }
}
.swiper-1 .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
/* swlides */
.swiper-1 .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-1 .swiper-slide .overlay {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, #141414 0%, rgba(20, 20, 20, 0) 0.01%, rgba(20, 20, 20, 0.86) 100%);
}

/* pagination */
.swiper-1 .swiper-pagination-horizontal {
  position: absolute;
  top: 34px !important;
  left: 5% !important;
  height: fit-content;
  width: fit-content !important;
}
@media (width<1024px) {
  .swiper-1 .swiper-pagination-horizontal {
    left: 0 !important;
    width: 100% !important;
    bottom: 0 !important;
    transform: translateY(420px);
  }
}

.swiper-1 .swiper-pagination-bullet {
  backdrop-filter: blur(2px);
  width: 10px;
  height: 22px;
  border: 2px solid #919191;
  background: white;
  border-radius: 32px;
}
.swiper-1 .swiper-pagination-bullet-active {
  background: rgba(255, 0, 5, 0.12);
  width: 40px;
  height: 22px;
  position: relative;
  border: 1px solid #ff0005;
  padding: 0 10px;
}
.swiper-1 .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: 1px;
  }
  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 rgba(255, 0, 5, 0.12);
  border-radius: 48px;
  text-align: center;
  color: black;
  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;
  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;
}
