.ozarign-banner {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	position: relative;
	width: 100%;
	height: 410px;
	padding: 35px;
	padding-right: 30%;
    margin-bottom: 50px;
	border-radius: 10px;
	background: linear-gradient(0deg, #ECEFFB 0%, rgba(236, 239, 251, 0.00) 100%);
}
.ozarign-banner:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: var(--url);
	background-size: cover;
	background-repeat: no-repeat;
}
.ozarign-banner__title {
	width: 100%;
	color: #000;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 12px;
}
.ozarign-banner__description p:first-child {
	color: #526070;
	font-size: 18px;
	font-family: Open Sans;
	line-height: 22px;
	margin-bottom: 9px;
}
.ozarign-banner__description p:nth-child(2) {
	color: #000;
	font-size: 14px;
	font-family: Open Sans;
	line-height: 22px;
	margin-bottom: 22px;
}

.ozarign-banner__description button {
	width: 196px;
	height: 38px;
	border: 1px solid #1476CD;
	color: #1476CD;
	border-radius: 8px;
	background: none;
	font-family: Helvetica;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
	letter-spacing: 0.07px;
}
@media(max-width: 768px) {
	.ozarign-banner {
		align-content: start;
		height: 157px;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
	.ozarign-banner__content {
		height: 80px;
		overflow: hidden;
	}
	.ozarign-banner:before {
		content: "More";
		position: absolute;
		bottom: 15px;
		color: var(--blue, #1476CD);
	}
	.ozarign-banner:after {
		background-size: 100%;
	}
	.ozarign-banner__title {
		font-size: 20px;
	}
	.ozarign-banner__description p:first-child {
		font-size: 14px;
	}
	.ozarign-banner_more {
		height: max-content;
	}
	.ozarign-banner_more:before {
		content: "Less";
	}
	.ozarign-banner_more:after {
		background-size: 100% 100%;
	}
	.ozarign-banner_more .ozarign-banner__content {
		height: auto;
	}
}