.preem {
	padding: 70px 0;
}

.preem-head {
	position: relative;
}

.preem-head-span {
	position: absolute;
	top: -10px;
	right: -100px;
	font-size: 205px;
	line-height: 80%;
	font-weight: 900;
	text-transform: uppercase;
	font-style: italic;
	color: #26272D;
	opacity: 6%;
}

.preem-content {
	position: relative;
}

.preem-list {
	display: grid;
	grid-template-columns: 400px 400px;
	justify-content: space-between;
	gap: 20px;
	margin-top: 60px;
}

.preem-item {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
	background-color: #FFFFFFCC;
	border: 1px solid #FFFFFF33;
	border-radius: 10px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	box-shadow: 0 0 10px #00000040;
	-webkit-box-shadow: 0 0 10px #00000040;
}

.preem-item-title {
	font-size: 18px;
	font-weight: 500;
}

.preem-btn-block {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
}

.preem-btn {
	cursor: pointer;
	display: flex;
    align-items: center;
    gap: 5px;
	padding: 10px 20px;
	color: white;
	background-color: var(--theme-color-second);
	border-radius: 8px;
}

.preem-btn-arrow {
	display: inline-block;
    width: 17px;
    height: 16px;
	background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3e%3cpath d='M16.5495 7.47L9.54949 0.469996C9.35657 0.282431 9.07824 0.212038 8.81934 0.285332C8.56044 0.358627 8.36031 0.564474 8.29434 0.825333C8.22836 1.08619 8.30657 1.36243 8.49949 1.55L14.2095 7.25H0.979492C0.565279 7.25 0.229492 7.58578 0.229492 8C0.229492 8.41421 0.565279 8.75 0.979492 8.75H14.1995L8.49949 14.45C8.35654 14.5893 8.27592 14.7804 8.27592 14.98C8.27592 15.1796 8.35654 15.3707 8.49949 15.51C8.63733 15.6546 8.82974 15.7345 9.02949 15.73C9.22856 15.7309 9.41961 15.6516 9.55949 15.51L16.5595 8.51C16.8519 8.21718 16.8519 7.74281 16.5595 7.45L16.5495 7.47Z' fill='white'/%3e%3c/svg%3e") no-repeat;
	background-size: contain;
    background-position: center;
	transition: transform .2s;
}

.preem-btn:hover {
	color: white;
}

.preem-btn:hover .preem-btn-arrow {
	transform: translatex(10px);
}

.preem-img {
	position: absolute;
	z-index: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 640px;
	height: auto;
	margin: auto;
	object-fit: contain;
}


@media screen and (max-width: 1200px) {
	.preem-list {
		grid-template-columns: 1fr 1fr;
	}

	.preem-img {
		display: none;
	}

	.preem-btn-block {
		position: static;
		margin-top: 50px;
	}

	.preem-head-span {
		font-size: 148px;
	}
}


@media screen and (max-width: 767px) {
	.preem-head-span {
		display: none;
	}

	.preem {
		padding: 40px 0;
	}
}

@media screen and (max-width: 480px) {
	.preem-list {
		grid-template-columns: 1fr;
	}
}