@charset "UTF-8";
/* CSS Document */

.double-usp {
	padding: var(--widget-padding);
}

.double-usp .column {
	padding: 100px;
	position: relative;
}

.double-usp .column .underlay {
	position: absolute;
	background-color: var(--act-alt);
	background-image: var(--back-orange);
	background-size: cover;
	width: 100%;
	height: 50%;
	bottom: 0;
	border-radius: var(--big-radius);
}

.double-usp .column .usp-grid {
	z-index: 1;
	grid-template-columns: 1fr 1fr;
	gap: var(--std-gap);
}

.double-usp .column .usp-grid .box {
	background-color: var(--act-primary-light);
	padding: 20px;
	border-radius: var(--big-radius);
	transition: all 0.3s;
}

.double-usp .column .usp-grid .box:hover {
	background-color: var(--act-primary-light);
	padding: 20px;
	border-radius: var(--big-radius);
	box-shadow: var(--shadow);
	transform: translateY(-20px);
	transition: all 0.3s;
}

.double-usp .heads {
	text-align: center;
	padding: 20px 0;
}

.double-usp .heads h5 {
	font-size: 22px;
	line-height: 32px;
	font-weight: 300;
	font-style: italic;
	color: var(--act-primary);
}

.double-usp .column .box .content {
	background-color: var(--white);
	padding: 20px;
	border-radius: var(--big-radius);
}

.double-usp .column .box .list {
	gap: 15px;
	margin-bottom: 30px;
}

.double-usp .column .box .list .list-item {
	gap: 10px;
	align-items: start;
}

.double-usp .column .box .list .list-item svg {
	color: var(--act-alt-light);
}

.double-usp .column .box .list .list-text b, .double-usp .column .box .list .list-text p {
	font-size: 16px;
}


@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1024px){ /* original breakpoint 1024px */
	.double-usp .column {
		padding: 30px;
	}
}

@media screen and (max-width: 768px) {
	.double-usp .boxed {
		padding: 0;
	}
	
	.double-usp .column .underlay {
		bottom: 25%;
		border-radius: 0;
	}
	
	.double-usp .column .usp-grid {
		grid-template-columns: 1fr;
	}
	
	.map .column {
		padding: 40px;
	}
}