.hero-slider {
    position: relative;
	background: radial-gradient(ellipse at top right, #fcfcfc 0%, #f2f2f2 100%);
	margin-bottom: 60px;
}

.hero-slide .container {
    display: flex;
    align-items: center;

}

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 520px;
    gap: 40px;
}

.hero-left {
    flex: 1;
    max-width: 520px;
}

.hero-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}



.hero-right img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

/* кнопки */
.btn-arrow-next,
.btn-arrow-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.8);
    border: 1px solid #eee;
    border-radius: 50%;

    cursor: pointer;
    transition: 0.2s ease;
}

.btn-arrow-next:hover,
.btn-arrow-prev:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}

.btn-arrow-prev {
    left: 20px;
}

.btn-arrow-next {
    right: 20px;
}

.hero-slider.blue {
	background:
		radial-gradient(ellipse 600px 400px at var(--blue-b1x, 20%) var(--blue-b1y, 30%), rgba(100, 160, 255, 0.5) 0%, transparent 70%),
		#e4f0fe;
	animation: blueDrift1 15s ease-in-out infinite;
	text-transform: none;
	text-shadow: none;

}

.hero-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
}


span.swiper-pagination-bullet{
    width: 5px;
    border-radius: 4px;
    height: 5px;
    background: #fff;
    opacity: 0.8;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 4px;
    height: 5px;
    background: #b3485d;
}

.hero-right.mobile {
display: none;
}

.swiper {
    height: auto;
}


.hero-slide {
    align-items: stretch;
    overflow: hidden;
}

@property --blue-b1x {
	syntax: '<percentage>';
	inherits: false;
	initial-value: 30%;
}

@property --blue-b1y {
	syntax: '<percentage>';
	inherits: false;
	initial-value: 40%;
}

@keyframes blueDrift1 {
	0% {
		--blue-b1x: 10%;
		--blue-b1y: 20%;
	}

	25% {
		--blue-b1x: 80%;
		--blue-b1y: 70%;
	}

	50% {
		--blue-b1x: 90%;
		--blue-b1y: 20%;
	}

	75% {
		--blue-b1x: 20%;
		--blue-b1y: 80%;
	}

	100% {
		--blue-b1x: 10%;
		--blue-b1y: 20%;
	}
}

@media (max-width: 1640px) {
.hero-left {
    margin-left: 70px;
}
}

@media (max-width: 1399px) {
.hero-slide {
    min-height: 435px;
}

 .hero-left {
        margin-left: 0;
  }
}



@media (max-width: 1280px) {
    .hero-slide {
        min-height: 400px;
    }
}


@media (max-width: 1199px) {
    .hero-slide {
        min-height: 320px;
    }

.hero-right {
    width: 40%;
}
}

@media (max-width: 1100px) {
    .hero-left {
        margin-left: 20px;
        background: #ffffff;
        padding: 20px 20px;
        border-radius: 4px;


    }


    .hero-right {
        opacity: 1;
        z-index: -1;
        width: 100%;
    }

      .hero-title {
    font-size: 28px;
}
}

@media (max-width: 991px) {
    .hero-left {
        margin-left: 0;
    }


}



@media (max-width: 768px) {

    .hero-slide {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 0;
        min-height: 100%;
    }

     .hero-right {
         display: none;
    }

  .hero-right.mobile {
  display: block;
  position: relative;

	}

.hero-slider.blue {
    background: #e4f0fe;
    animation: none;

}



.hero-right img {
    height: 180px;
}

      .hero-left {
        margin-left: 20px;
        background: transparent;
        padding: 0;
        border-radius: 0;
    }



    .hero-left {
        max-width: 100%;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-buttons {
        justify-content: center;
    }

	.btn-arrow-next,
    .btn-arrow-prev {
        width: 40px;
        height: 40px;
    }
   .hero-left {
          padding: 40px 0;

   }

  .hero-title {
    font-size: 24px;
    margin-bottom: 15px;
}

  .btn-arrow-next, .btn-arrow-prev {
        display: none;
    }
}




@media (max-width: 560px) {
.hero-right img {
    height: 130px;
}

}


