.banner {
	background-color: #F0F0F0;
	background-image: url(../pic/banner.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	height: 715px;
	display: flex;
	align-items: center;
}

.banner__image {
	display: none;
}

.banner__text {
	max-width: 572px;
}

.banner__title {
	display: flex;
	align-items: center;
	margin-bottom: 32px;
}

.banner__title > img {
	margin-right: 16px;
}

.banner__description {
	margin-bottom: 64px;
}

.banner__btn {
	width: 100%;
	max-width: 513px;
}

/* numbers */

.numbers {
	display: flex;
	justify-content: space-between;
}

.numbers-item {
	width: 375px;
}

.numbers-item__title {
	font-weight: 700;
	font-size: 64px;
	line-height: 100%;
	color: var(--amega-blue-color, #0075FF);
	margin-bottom: 24px;
}

.numbers-item__title > span {
	font-size: 48px;
}

.numbers-liner {
	margin: 0 20px;
	width: 1px;
	background: #E3E4E5;
}

/* promo-framer */

.promo-framer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.promo-framer__title {
	max-width: 652px;
	margin-right: 20px;
}

.promo-framer__video {
	height: 462px;
}

/* framer-offers */

.framer-offers {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 40px;
}

.framer-offer {
	min-height: 300px;
	perspective: 1000px;
}

/* This container is needed to position the front and back side */
.framer-offer-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.3s;
	transform-style: preserve-3d;
}

.framer-offer:hover .framer-offer-inner {
	transform: rotateY(-180deg);
}

.framer-offer-front, .framer-offer-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.framer-offer-front {
	background: #F0F0F0;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.framer-offer-back {
	transform: rotateY(180deg);
}

.framer-offer-back img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.framer-mobile {
	grid-row: 1 / 3;
	grid-column: 3 / 4;
	background: #F0F0F0;
	padding: 24px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.framer-mobile__icon {
	margin-bottom: 16px;
}

.framer-mobile__title {
	margin-bottom: 16px;
	max-width: 300px;
	text-align: center;
}

.framer-mobile__text {
	margin-bottom: 24px;
}

.framer-mobile__links {
	display: none;
}

.framer-advantages {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	grid-template-rows: 1fr 1fr;
}

.framer-advantages-item {
	padding: 24px;
	background: #FCFCFC;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 300px;
	border: 1px solid #E3E4E5;
}

.framer-advantages-item:nth-child(6) {
	display: none;
}

.framer-advantages-image {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.framer-advantages-image img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 750px;
}

.framer-video {
	position: relative;
	cursor: pointer;
}

.framer-video__preview {
	margin-bottom: 24px;
	width: 100%;
}

.framer-video__play {
	width: 80px;
	height: 80px;
	position: absolute;
	left: 50%;
	top: 108px;
	transform: translateX(-50%);
	border-radius: 50%;
	border: 2px solid #E3E4E5;
	background: rgba(193, 193, 193, 0.40);
	backdrop-filter: blur(2px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.promo-code {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.promo-code__text {
	max-width: 913px;
	font-size: 12px;
}

.promo-code__text-title {
	margin-bottom: 25px;
}

.promo-code-value {
	display: inline-block;
	padding: 8px 16px;
	background: #0075FF;
	color: #FCFCFC;
}

.promo-code__btn {
	width: 375px;
}

.dealers-item__image {
	margin-bottom: 16px;
	display: block;
	width: 100%;
}

@media (max-width: 1684px) {
	.banner__btn {
		max-width: 413px;
	}

	.numbers-item__title {
		font-size: 48px;
	}

	.numbers-item {
		width: 305px;
	}

	.numbers-liner {
		margin: 0 10px;
	}

	.promo-framer__video {
		max-width: 630px;
		height: 372px;
	}

	.promo-framer__title {
		max-width: 522px;
	}

	.framer-offers {
		gap: 20px;
	}

	.framer-advantages {
		gap: 20px;
	}

	.framer-advantages-image img {
		width: 700px;
	}

	.promo-code__text-title {
		max-width: 847px;
	}

	.promo-code__btn {
		width: 327px;
	}
}

@media (max-width: 1344px) {
	.primary-section_gray {
		padding: 40px 0;
	}

	.banner {
		height: 389px;
		background-image: url(../pic/banner-tablet.png);
	}

	.banner__text {
		max-width: 442px;
	}

	.banner__title {
		margin-bottom: 20px;
	}

	.banner__title br {
		display: none;
	}

	.banner__description {
		margin-bottom: 56px;
	}

	.banner__btn {
		max-width: 349px;
	}

	.numbers-item {
		width: 225px;
	}

	.numbers-item__title {
		font-size: 32px;
	}

	.numbers-item__title > span {
		font-size: 24px;
	}

	.promo-framer {
		display: block;
	}

	.promo-framer__title {
		max-width: 100%;
		margin-bottom: 20px;
		margin-right: 0;
		font-size: 24px;
	}

	.promo-framer__video {
		max-width: 100%;
		height: auto;
	}

	.framer-offers {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr 1fr;
	}

	.framer-offer {
		min-height: 276px;
	}

	.framer-offer-front {
		padding: 16px;
	}

	.framer-offer__title {
		max-width: 365px;
	}

	.framer-offer__title br {
		display: none;
	}

	.framer-mobile {
		grid-row: 3 / 4;
		grid-column: 1 / 3;
		padding: 16px;
	}

	.framer-mobile__qr {
		display: none;
	}

	.framer-mobile__links {
		display: flex;
	}

	.framer-mobile__icon {
		width: 60px;
		height: 60px;
	}

	.framer-mobile__title {
		margin-bottom: 8px;
	}

	.framer-mobile__text {
		margin-bottom: 20px;
	}

	#advantages-section {
		overflow: hidden;
	}

	.framer-advantages {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto auto;
	}

	.framer-advantages-image {
		grid-row: 1 / 2;
	}

	.framer-advantages-image img {
		width: 400px;
	}

	.framer-advantages-item {
		min-height: 276px;
	}

	.framer-advantages-item:nth-child(6) {
		display: block;
		position: relative;
		background-color: transparent;
		border: none;
		padding: 0;
	}

	.framer-advantages-item:nth-child(6)::after {
		content: "";
		width: 500px;
		height: 500px;
		display: block;
		background-image: url(../pic/radial.png);
		background-size: contain;
		position: absolute;
		right: -100px;
		top: 50%;
		transform: translateY(-50%);
	}

	.framer-video__preview {
		margin-bottom: 20px;
	}

	.framer-video__play {
		top: 62px;
	}

	.promo-code__text-title {
		margin-bottom: 15px;
	}

	.promo-code__btn {
		width: 278px;
	}
}

@media (max-width: 1023px) {
	.banner {
		height: 400px;
	}

	.banner__text {
		max-width: 358px;
	}

	.banner__description {
		margin-bottom: 40px;
	}

	.banner__btn {
		max-width: 309px;
	}

	.numbers-item {
		width: 169px;
	}

	.numbers-item__title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.numbers-item__title > span {
		font-size: 20px;
	}

	.framer-offer {
		min-height: 212px;
	}

	.framer-advantages-item {
		min-height: 258px;
	}

	.promo-code__text-title {
		max-width: 337px;
	}
}

@media (max-width: 767px) {
	.banner {
		height: auto;
		align-items: flex-start;
		padding: 32px 0;
		background-image: none;
	}

	.banner__text {
		max-width: 100%;
	}

	.banner__description {
		margin-bottom: 32px;
	}

	.banner__image {
		display: block;
		margin: 0 auto 32px;
	}

	.banner__btn {
		max-width: 100%;
	}

	.numbers {
		display: block;
	}

	.numbers-liner {
		display: none;
	}

	.numbers-item {
		width: auto;
	}

	.numbers-item:not(:last-child) {
		margin-bottom: 24px;
	}

	.numbers-item__title {
		font-size: 20px;
		margin-bottom: 8px;
	}

	.numbers-item__text br {
		display: none;
	}

	.framer-offers {
		grid-template-columns: 1fr;
	}

	.framer-mobile {
		grid-row: 5 / 6;
		grid-column: 1 / 2;
	}

	.framer-advantages {
		grid-template-columns: 1fr;
	}

	.framer-advantages-item, .framer-advantages-image {
		min-height: 222px;
	}

	.framer-advantages-image img {
		width: 300px;
	}

	.framer-advantages-item:nth-child(6) {
		display: none;
	}

	.framer-video__play {
		width: 48px;
		height: 48px;
		top: 72px;
	}

	.promo-code {
		flex-direction: column;
		align-items: flex-start;
	}

	.promo-code__text {
		margin-bottom: 32px;
	}

	.promo-code__text-title {
		margin-bottom: 18px;
	}
}