.swiper {
    width: 100%;
    height: 477px;
}

.wrapper {
  padding: 30px;
  min-height: 100%;
}

.image-slider {
	border-radius: 15px;
    background-color: var(--bg);
}

.image-slider__image {
  text-align: left;
  height: 100%;
}

.image-slider__image p {
	position: absolute;
    bottom: 130px;
    left: 30px;
    font-size: 14px;
    width: 100%;
    text-wrap: nowrap;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 40%);
    -webkit-text-shadow: 1px 1px 2px rgb(0 0 0 / 40%);
    color: var(--second-text);
    font-weight: 500;
}

.image-slider__image h3 {
	position: absolute;
    color: var(--main-text);
    bottom: 175px;
    left: 30px;
    font-weight: 800;
    font-size: 24px;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 37%);
    -webkit-text-shadow: 1px 1px 2px rgb(0 0 0 / 37%);
}

.image-slider__image img {
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
}

.image-slider .swiper-button-next::after,
.image-slider .swiper-button-prev::after {
	color: rgb(255 255 255 / 50%);
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: rgb(255 255 255);
}

.swiper-button-next:active::after,
.swiper-button-prev:active::after {
  transform: scale(0.8);
}

.swiper-button-next,
.swiper-button-prev {
	bottom: 50px !important;
    right: 20px !important;
    top: unset !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    border: none;
}

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

.swiper-buttons {
	width: 80px;
    position: absolute;
    right: 20px;
    bottom: 50px;
    background: rgb(255 255 255 / 10%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    height: 45px;
    z-index: 1;
    border-radius: 48px;
}

.image-slider .swiper-pagination {
	bottom: 10px !important;
    right: 10px !important;
    border-radius: 24px !important;
    width: 100% !important;
    height: 9px;
    line-height: 4px;
}

.image-slider .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  line-height: 20px;
  font-size: 14px;
  background-color: rgb(255 255 255 / 80%);
  border-radius: 7px;
  transition: width 0.15s linear;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
  width: 18px;
}

.swiper-pagination-bullet-active {
  width: 20px !important;
  transition: width 0.15s linear;
}

.image-slider .swiper-pagination-fraction {
  font-size: 14px;
  color: #fff;
}

.swiper_btn svg {
	height: 12px;
    width: 12px;
    fill: white;
    transition: 0.3s ease-in-out;
}

.swiper_btn:hover svg {
  transform: rotate(45deg);
}

.image-slider__image .swiper_btn {
	display: flex;
    position: absolute;
    bottom: 50px;
    left: 0;
    z-index: 2;
    align-items: center;
    justify-content: center;
    height: 41px;
    line-height: 41px;
    background: linear-gradient(90deg, #58389a 0%, #694bca 100%);
    padding: 0 20px 0 30px;
    border-radius: 0 15px 15px 0;
    gap: 15px;
    cursor: pointer;
    overflow: hidden;
    font-style: italic;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.01em;
    color: #fff;
}