/* Custom Styles for Evonith Expandable Card Slider */

.evonith-ext-global {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 7rem;
    background: #121111;
}
.evonith-ext-container {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.evonith-ext-head {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.evonith-ext-title {
    font-size: 46px;
    font-weight: 400;
    color: #ffffff;
    width: 80%;
    margin-bottom: 20px;
    line-height: 64px;
    font-family: Nyght serif;
}

.evonith-ext-title span {
    color: #ffffff;
    width: 80%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.evonith-ext-swiper {
  width: 70%;
}

.evonith-ext-swiper .swiper-wrapper {
  display: flex;
}

.evonith-ext-card {
  background-size: cover !important;
  background-position: center;
  height: 100vh;
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  filter: blur(1.5px);
  transform: scale(0.95);
  position: relative;
  background: rgba(0, 0, 0, 0.4);
}

.evonith-ext-card.expanded {
  filter: blur(0);
  transform: scale(1);
  z-index: 2;
}

.evonith-ext-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: center;
  height: 100%;
}

.evonith-ext-card-title,
.evonith-ext-card-icon {
  filter: blur(1.5px);
  transition: filter 0.3s ease;
}

.evonith-ext-card.expanded .evonith-ext-card-title,
.evonith-ext-card.expanded .evonith-ext-card-icon {
  filter: blur(0);
}

.evonith-ext-card-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 3px;
    display: none;
}

.evonith-ext-card.expanded .evonith-ext-card-text {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

.evonith-ext-card-title {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-top: 14px;
}

.evonith-ext-card-icon {
  width: 50px;
  height: auto;
}

.evonith-ext-swiper-button {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 10px;
  position: relative;
  display: flex;
  border: 1px solid white;
  align-items: center;
  justify-content: center;
}

.evonith-ext-swiper-button.swiper-button-prev::after,
.evonith-ext-swiper-button.swiper-button-next::after {
  display: none;
}

.evonith-ext-swiper-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.evonith-ext-swiper-button img {
  width: 19px;
}

.evonith-ext-swiper-button.swiper-button-next {
  border-color: #D23D0F;
}

.evonith-ext-button-arrow {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  color: #fff;
  display: none;
  width: 10%;
  position: absolute;
  bottom: 4%;
  right: 4%;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: -7px !important;
    left: auto;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 0px !important;
    right: auto;
}

.evonith-ext-card.expanded .evonith-ext-button-arrow {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
	
.evonith-ext-card {
    height: 400px;
}
	
	.evonith-ext-global {
    padding-left: 0rem;
}
	
	.evonith-ext-title {
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    width: 100%;
    margin-bottom: 0px;
    line-height: 49px;
    font-family: Nyght serif;
}
	
  .evonith-ext-container {
    flex-direction: column;
  }

  .evonith-ext-head,
  .evonith-ext-swiper {
    width: 100%;
  }

}