/*slider*/
.swiper__banner .swiper-slide img {
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide--img {
	max-height: 910px;
	display: flex;
    align-items: center;
	justify-content: center;
}
.swiper-slide--img::before {
	content: '';
    position: absolute;
    background-image: url('/local/templates/bulat/img/back_bubbles.png');
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: opacity 0.6s;
    opacity: 0.3;
}

.swiper-slider--background::after {
	content: '';
	display: block;
    position: absolute;
	width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: opacity 0.6s;
	background: linear-gradient(270deg, rgba(21, 21, 21, 0.25) 0%, rgba(0, 0, 0, 0) 100%), rgba(29, 29, 29, 0.4);
}

.swiper-slide--title {
	position: absolute;
    top: 0;
    width: 100%;
    padding-top: 225px;
}

.swiper-slide--title h1 {
	color: var(--color-white);
	margin-bottom: 60px;
	margin-top: 0;
}

.swiper-pagination.castomn {
	bottom: 120px!important;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	text-align: center;
}

.swiper-pagination.castomn .swiper-pagination-bullet {
	width: 33%;
	margin: 0 30px!important;
	border-radius: 0!important;
	height: 2px!important;
	background: var(--dots-color-gray)!important;
	opacity: 1;
}

.swiper-pagination.castomn .swiper-pagination-bullet:first-child {
	margin-left: 0!important;
}

.swiper-pagination.castomn .swiper-pagination-bullet:last-child {
	margin-right: 0!important;
}

.swiper-pagination.castomn .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--color-white)!important;
}

.swiper-pagination.castomn .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
	background-color: red;
	animation: slide-progress 7s cubic-bezier(.3,0,.3,1) forwards;
}

.swiper-pagination-bullet {
	width: 20px;
	height: 4px;
	border-radius: 0;
	position: relative;
	overflow: hidden;
}
	
.swiper-pagination-bullet::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

@media(max-width: 1100px) {

	.swiper-slide--title {
		padding: 75px 0;
	}

	.swiper-slide--title h1 {
		font-size: 50px;
		line-height: 50px;
	}

	.swiper-pagination.castomn {
		bottom: 65px !important;
	}

	.swiper__banner .swiper-slide img {
		display: block;
		width: -webkit-fill-available;
		height: 555px;
		object-fit: cover;
	}
	.swiper-slide--img {
		max-height: 555px;
	}

}

@media(max-width: 500px) {
	.swiper-slide--title {
		padding: 90px 5px;
		hyphens: manual;
    	word-break: break-all;
	}

	.swiper-pagination.castomn {
		bottom: 65px !important;
	}

	.swiper-slide--title h1 {
		font-size: 30px;
		line-height: 36px;
	}
}

@keyframes slide-progress {
	0% {
		transform: translateX(-100%);
		// width: 0;
	}

	100% {
		transform: translateX(0);
		// width: 100%;
	}
}

@keyframes search-panel {
	0% {
		transform: translateY(-100%);
		// width: 0;
	}

	100% {
		transform: translateY(0);
		// width: 100%;
	}
}
.block_button__link {
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 20px;
}

@media(max-width: 560px) {
	.block_button__link {
		width: 100%;
		flex-direction: column;
	}
}