.main-banner {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 20px;
	max-width: 1420px;
	margin: 0 auto 40px;
}

.main-banner__slider {
	height: 460px;
    border-radius: 24px;
    overflow: hidden;	
}

.mainSlider__swiper2 {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.main-banner__slide {
	width: 100%;
	height: 100%;
	background-position: 90% bottom;
	background-repeat: no-repeat;
	background-size: auto 100%;
	border-radius: 24px;
}

.main-banner__slide-link {
	display: block;
	height: 100%;
}

.main-banner__slide-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;	
	padding: 30px 30px 0 30px;	
	height: 100%;
}

.main-banner__slide-logo {
    width: 140px;
    max-width: 140px;	
}

.main-banner__slide-logo img {
	max-width: 100%;
}

.main-banner__slide-content {
	display: flex;
    flex-direction: column;
    gap: 20px;	
	color: #0A0A0A;
	max-width: 50%;
	height: 65%;
	justify-content: center;
}

.main-banner__slide-title {
	font-weight: 600;
	font-size: 40px;
	line-height: 1.2;
	margin: 0;
	padding: 0;
}

.main-banner__slide-descr {
	font-weight: 500;
	font-size: 20px;
	line-height: 1.4;
}

.main-banner__slide-descr-mob {
	display: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.2;
	max-width: 60%;	
}

.main-banner__slide-price {
	font-weight: 600;
	font-size: 16px;
}

.main-banner__nav {
	display: flex;
	position: absolute;
	right: 20px;
	bottom: 16px;
	z-index: 1;
	gap: 10px; 
}

.main-banner__nav-prev,
.main-banner__nav-next {
	width: 48px;
	min-width: 48px;
	min-height: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--secondary-bg-color);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	transition: all 0.3s ease;
    cursor: pointer;
}

.main-banner__nav-prev svg {
	transform: rotate(180deg);
}

.main-banner__nav-prev:after,
.main-banner__nav-next:after {
	display: none;
}

.main-banner__nav-prev:hover,
.main-banner__nav-next:hover {
    background: var(--blue);
}

.main-banner__nav-prev:hover svg path, 
.main-banner__nav-next:hover svg path {
    stroke: var(--white);
}

.main-banner__static {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px 20px;
	background: url("/images/s-top-staitc-banner.png") center bottom no-repeat #E0E2FF;
	border-radius: 24px;
}

.main-banner__static-title {
	color: #0A0A0A;
	font-weight: 600;
	font-size: 28px;
	line-height: 1.2;
}

.main-banner__static-button a {
	display: block;
	width: 100%;
	border-radius: 12px;
	background: #fff;
	color: #0202b3;
	padding: 14px 0;
	text-align: center;
	font-weight: 600;
	font-size: 16px;
}

@media (max-width: 1140px) {
	.main-banner {
		grid-template-columns: 1fr;
	}
	
	.main-banner__static {
		display: none;
	}
}

@media (max-width: 840px) {
	.main-banner__slider {
		height: 450px;
	}
	
	.main-banner__slide-title {
		font-size: 16px;
		max-width: 50%;
	}
}

@media (max-width: 540px) {
	.main-banner {
		padding: 0 20px;
		gap: 10px;
	}
	
	.main-banner__slider {
		height: 220px;
	}	
	
	.main-banner__slide {
		padding: 20px 20px 0 20px;
		gap: 20px;
	}
	
	.main-banner__slide-inner {
		padding: 0;
	}
	
	.main-banner__slide {
		background-position: right bottom;
		background-size: 45%;
	}
	
	.main-banner__slide_222807 {
		background-position: 93% 32%;
	}
	
	.main-banner__slide-content {
		height: auto;
		max-width: 100%;
	}
	
	.main-banner__slide-title,
	.main-banner__slide-descr {
		display: none;
	}
	
	.main-banner__slide-descr-mob {
		display: block;
	}
	
	.main-banner__static {
		display: block;
		border-radius: 16px;
		height: 110px;
		padding: 0 20px;	
		background: #E0E2FF
	}
	
	.main-banner__static a {
		display: flex;
		height: 100%;
		align-items: center;
		justify-content: center;		
	}

	.main-banner__static-title {
		display: flex;
		align-items: center;
		font-size: 16px;
		color: #0A0A0A;
		height: 80px;
		background: url('/images/banner/b-stac.png') no-repeat;
		padding-left: 95px;
		line-height: 1.2;
	}

	.main-banner__static-button {
		display: none;
	}
	
	.main-banner__nav {
		gap: 0;
		right: 10px;
		bottom: 8px;
	}

	.main-banner__nav-prev,
	.main-banner__nav-next {
		transform: scale(0.7);
	}	
}