.offer {
	color:var(--color-text);
	background: url('https://app.cloudair.tech/data/cloudair/media/cloudair_tech/offer/background.jpg?w=2400&output=webp') bottom center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 70px;
}
.offer div.headline {
	font-size:90px;
	letter-spacing: -.5px;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 70px;
	margin:0;
	color:var(--color-text);
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
}
.offer div.headline img {
	display:none;
}
.offer p.headline {
	font-size:48px;
	line-height: 44px;
	font-weight: 300;
	margin-bottom:2rem;
}
.offer p {
	font-size: 34px;
	margin: 0;
	line-height: 36px;
	font-weight: 300;
}
.offer-logo {
	width: 280px;
}
.offer-grid {
	margin-top: 70px;
	display: grid;
	gap:8px;
	grid-template-columns: repeat(1, 1fr);
	margin-bottom: 70px;
}
.offer-grid-item {
	border-radius:10px;
	border:1px solid #E4EDF5;
	background-color:#FFFFFF;
	overflow: hidden;
	position: relative;
	transition: background .6s ease;
}
.offer-grid-item-content {
	padding:1rem;
	color:var(--color-text);
	height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	z-index: 1;
}
.offer-grid-item-content p,
.offer-grid-item-content strong,
.offer-grid-item-content div {
	transition: all .2s ease;
}
.offer-grid-item-content p {
	margin:0;
	font-size:30px;
	text-transform:uppercase;
	font-weight: 600;
	letter-spacing: -.25px;
	line-height: 32px;
}
.offer-grid-item-content strong {
	font-size:18px;
	line-height: 20px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: -.25px;
}
.offer-grid-item-content div {
	padding-top: 0.2rem;
	font-size: 15px;
	line-height: 18px;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	max-height: 0;
}
.offer-grid-item img {
	left:50%;
	top:40%;
	transform: translate(-50%,-50%);
	max-width: 70%;
	position: absolute;
	opacity:.7;
	transition:transform .8s ease;
}
.offer-grid-item:hover {
	background-color: #3b494f;
}
.offer-grid-item:hover img {
	transform: translate(-50%,-50%) scale(2);
	opacity:1;
	mix-blend-mode: overlay;
}
.offer-grid-item:hover p,
.offer-grid-item:hover strong,
.offer-grid-item:hover div {
	color:#fff;
}
.offer-grid-item-content:hover div {
	max-height: 200px;
	opacity: 1;
	visibility: visible;
}
.offer-blocks {
	display:flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-top:-10%;
}
.offer-blocks img:nth-child(1) {
	width:40%;
	transform: translateX(-35%);
}
.offer-blocks img:nth-child(2) {
	width:22%;
	transform: translateX(-82%) translateY(-20%);
}
.offer-blocks img:nth-child(3) {
	width:14%;
	transform: translateX(-80%) translateY(-60%);
}
.offer-blocks img:nth-child(4) {
	width:18%;
	transform: translateX(-60%) translateY(-10%);
}
.offer-blocks img:nth-child(5) {
	width:30%;
	transform: translateX(-30%);
}
.offer-signature {
	width:300px;
	height: 88px;
}
.offer-welcome {
	margin-top: 70px;
}
.offer-welcome p {
	font-size: 24px;
	font-weight: 300;
}
.offer-position {
	font-size: 14px;
	text-transform: uppercase;
}
.offer-avatar {
	width:64px;
	flex:0 0 64px;
	margin-right: 1rem;
	border-radius: 50%;
}

@media (min-width: 420px) {
	.offer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.offer-grid-item-content {
		height: 190px;	
	}
	.offer div.headline {
		font-size:120px;
		line-height: 98px;
	}
}
@media (min-width: 768px) {
	.offer-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.offer-grid-item-content {
		height: 220px;	
	}
	.offer div.headline img {
		display: block;	
	}
}
@media (min-width: 768px) {
	.offer-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 992px) {
	.offer-blocks {
		overflow-x: hidden;
	}
}
@media (min-width: 992px) {
	.offer-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.offer {
		padding: 70px 0 0 0;
		margin-bottom: 320px;
	}
	.offer-welcome {
		margin-top: 300px;
	}
}
@media (min-width: 1200px) {
	.offer-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}