.hero-carousel {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.home-hero-content {
  width: 100%;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 300px;
  /* example height */
  overflow: hidden;
}

/* Slides (for context) */
.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
}

/* Arrows */
.carousel-arrows {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  /* allow transparent pass-through */
  z-index: 10;
  /* enough to stay above slides */
}

.left-arrows,
.right-arrows {
  width: 38px;
  height: 38px;
  background: #f2f2f2;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  pointer-events: auto;
  /* allow clicking only on arrows */
}

.left-arrows img,
.right-arrows img {
  width: 100%;
  height: 100%;
  /* filter: brightness(0) invert(1); */
  object-fit: contain;
  cursor: pointer;
}


/* Dots */
.carousel-dots {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 20;
  /* higher than arrows so both are clickable */
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
}

.dot.active {
  background-color: var(--primary--primary-900);
}

.h-choose-us-right {
  width: 100%;
}

.h-choose-us-our-avaliable-products {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.our-avaliable-products.background-blue {
  background-color: #023556;
}

.color-blue {
  color: #f2f2f2;
}

.our-avaliable-products {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex: 1 1 calc(50% - 1rem);
  box-sizing: border-box;
  background-color: #f2f2f2;
}

.avaliable-products-image {
  width: 100%;
  height: 20rem;
  border-radius: 10px;
}

.avaliableproductsimage {
  object-fit: cover;
  width: 100%;
  /* border-radius: 10px; */
  height: 100%;
}

.our-features-details {
  flex-flow: column;
  display: flex;
  row-gap: 0.7rem;
  width: 100%;
  height: 100%;
  justify-content: center;
  padding: 1rem 1rem 1.5rem;
}

.text-elevator-sm {
  font-size: 15px;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: #fff;
  max-width: 480px;
  width: 90%;
  padding: 1.5rem 2rem;
  position: relative;
  border-radius: 10px;
  animation: fadeIn 0.3s ease-in-out;
  overflow-y: auto;
  max-height: 90vh;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
}

.modal-content::-webkit-scrollbar {
  display: none;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.8rem;
  color: #333;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.career-contact-form {
  border: none !important;
  padding: 10px;
}

.career-contact.contact-form-inputs-wrap {
  grid-row-gap: 1rem;
}

.contact-form.career {
  grid-row-gap: 1.5rem;
}

.career.contact-input {
  line-height: 0.6;
  padding: 0.7rem 1.2rem;
}

.contact-input.text-area.career {
  height: 6rem;
  min-height: 6rem;
  max-height: 6rem;
}

/* //projects */
.swiper-container {
  padding: 20px 0;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
  width: 100%;

}

.swiper-slide {
  width: auto;
  display: flex;
  justify-content: center;
}

.h-product-list-item {
  max-width: 100%;
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  color: #313860;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 50%;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next{
  left: 0 !important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
  right: var(--swiper-navigation-sides-offset, 0px) !important;
    left: auto;
}
.carousel-swiper-button-next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  margin: 0 -10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
  width: 35px !important;
  height: 35px !important;
  background: #111;
  padding: 4px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  pointer-events: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-prev img,
.swiper-button-next img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  object-fit: contain;
  cursor: pointer;
}
