.usp {
    min-height: 137px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.usp::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;

	background-size: cover;
	background-position: center;

	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.usp:hover {
	color: var(--global-palette-highlight);
}

.usp:hover::after {
	opacity: 1;
    z-index: -1;
}

.usp.usp-1::after {
    background-image:
    linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 40%),
    url("../img/usp/usp-1.webp");
}

.usp.usp-2::after {
    background-image:
    linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 40%),
    url("../img/usp/usp-2.webp");
}

.usp.usp-3::after {
    background-image:
    linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 40%),
    url("../img/usp/usp-3.webp");
}

.usp.usp-4::after {
    background-image:
    linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 40%),
    url("../img/usp/usp-4.webp");
}

.usp.usp-5::after {
    background-image:
    linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 40%),
    url("../img/usp/usp-5.webp");
}

@media (max-width: 767px) {
    .usp p.highlight_text {
        max-width: 60%;
        word-break: normal;
    }
}

@media (max-width: 560px) {
    .hero_video {
        aspect-ratio: 1/1!important;
    }
}