.top-banner-modern {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 20px;
	max-width: 1420px;
	margin: 0 auto;
}

.top-banner-modern__color {
	background-color: #FFE4EC;
	background-position: 90% bottom;
	background-repeat: no-repeat;
	border-radius: 24px;
	min-height: 520px;
	color: #0A0A0A;
	font-weight: 500;
	padding: 0 40px;
}

.top-banner-modern__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.top-banner-modern__title {
	font-weight: 600;
	font-size: 48px;
	line-height: 1;
	margin-bottom: 30px;
}

.top-banner-modern__descr {
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 30px;
	max-width: 420px;
}

.top-banner-modern__buttons a,
.top-banner-modern__buttons button {
	border: 0;
	border-radius: 12px;
	background: #F080A0;
	color: #fff;
	padding: 14px 30px;
	font-weight: 600;
	font-size: 16px;
	margin-right: 10px;
	cursor: pointer;
}

.top-banner-modern__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;
}

.top-banner-modern__static-title {
	color: #0202B3;
	font-weight: 600;
	font-size: 30px;
	line-height: 1;
}

.top-banner-modern__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: 1200px) {
	.top-banner-modern {
		grid-template-columns: 1fr;
		padding: 0 20px;
	}
	
	.top-banner-modern__static {
		display: none;
	}
}

@media (max-width: 860px) {
	.top-banner-modern__color {
		min-height: 400px;
		background-size: 40%;
	}
	
	.top-banner-modern__title {
		font-size: 24px;
	}
	
	.top-banner-modern__descr {
		font-size: 16px;
	}
}

@media (max-width: 620px) {
	.top-banner-modern__color {
		min-height: 330px;
	}
}

@media (max-width: 540px) {
	.top-banner-modern__color {
		min-height: 560px;
		background-position: center bottom;
		background-size: 70%;
		padding: 20px;
	}	
	
	.top-banner-modern__info {
		justify-content: flex-start;
	}
	
	.top-banner-modern__buttons {
		margin-top: auto;
	}
	
	.top-banner-modern__buttons a,
	.top-banner-modern__buttons button {
		display: block;
		width: 100%;
	}
}