.header-scrolled .header-sticky {
  background-color: black !important;
}


.theme-btn .elementor-button-icon svg {
  width: 10px;
  position: absolute;
  right: 0;
  z-index: 1;
  transition: 0.3s all;
}

span.elementor-button-icon {
  width: 10px;
  overflow: hidden;
  position: relative;
}

span.elementor-button-content-wrapper {
  position: relative;
}

.theme-btn .elementor-button-icon svg.duplicate-arrow path {
  fill: #fff;
  stroke: #fff;
}

.theme-btn .elementor-button-icon svg.duplicate-arrow {
  right: 10px;
}


.theme-btn .elementor-button:hover svg:first-child {
  right: -10px;
}

.theme-btn .elementor-button:hover svg.duplicate-arrow {
  right: 0;
}

.rotate-img img {
  animation: rotation 11s linear infinite;
}

/* 10s rotate + 1s pause */
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  77% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/* SERVICE SLIDER START */

.service-item {
  height: 433px;
  position: relative;
  line-height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.service-item .service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.5s all;
}

.service-item .arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50px;
  background: #FFF;
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
}

.service-item .arrow svg {
  width: 40px;
  height: 40px;
}

.service-item .content h4 {
  color: var(--Black, #000);
  padding: 20px;
  font-family: Gotham;
  font-size: 28px;
  font-style: normal;
  line-height: 38px;
  margin: 0;
  transition: 0.5s all;
}

.service-item .content {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 30px);
  margin-left: 0;
  border-radius: 10px 0;
  background: #fff;
  z-index: 1;
  transform: translateY(20px);
  transition: 0.5s all;
  overflow: hidden;
}

.service-item .content ul {
  margin: 0;
  padding: 0 20px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-item .content ul li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
}

.service-item .content ul li img {
  width: 20px;
  height: 20px;
}

.service-item .content ul li p {
  margin: 0;
  transition: 0.5s all;
}

.service-item:hover .service-img {
  filter: blur(4px);
  transform: scale(1.2);
}

.service-item:hover .arrow {
  transform: rotate(-30deg);
  background: #000;
}

.service-item:hover .arrow svg path {
  fill: #fff;
}

.service-item:hover .content {
  transform: translateY(0);
  background: var(--Black, #000);
}

.service-item:hover .content h4,
.service-item:hover .content p {
  color: var(--White, #FFF);
}


.service-slider .swiper-slide {
  display: flex;
  justify-content: center;
}

/* small tweak so .content transition appears smooth */
.service-item .content {
  transition: transform .5s ease, height .35s ease;
}

.service-slider .main-custom-arrow {
  margin-top: 60px;
}

.main-custom-arrow {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;

}

.main-custom-arrow .arrows::after {
  display: none;
}

.main-custom-arrow .arrows {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  position: unset;
  margin: 0;
  height: auto;
  width: 79px;
}

.main-custom-arrow .custom-pagination {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  position: unset;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-custom-arrow .swiper-pagination-bullet {
  margin: 0 !important;
  width: 6px;
  height: 6px;
}

.main-custom-arrow .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--Black, #000);
}

/* SERVICE SLIDER END */

@media (max-width:767px) {
  .service-slider .main-custom-arrow {
    margin-top: 30px;
  }

  .main-custom-arrow {
    gap: 20px;
  }

  .main-custom-arrow .custom-pagination {
    gap: 20px;
  }

  .main-custom-arrow .arrows {
    width: 60px;
  }
}