.home-hero__media img, .home-hero__media video {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.home-hero__media::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}
.home-hero__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.block--home-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.home-hero__content {
    position: relative;
    min-height: 100vh;
    padding: 130px max(var(--padding), calc((100vw - var(--width)) / 2)) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

@media screen and (max-width: 600px){
    .home-hero__content {
        justify-content: start;
        padding-top: 150px !important;
    }
}

.home-hero__logo img {
    height: 50px;
    width: auto;
}

.home-hero__title p {
    margin: 0;
}

.home-hero__title {
    font-size: var(--font-size-h2);
    color: white;
    font-weight: 400;
    margin: 0;
    text-align: center;
    line-height: 120%;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 600px){
    .home-hero__title {
        font-size: var(--font-size-h3);
    }
    ul.home-hero__values li {
        padding: 2px 5px;
    }
}


.page-hero .home-hero__title > p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-hero  .home-hero__title br {
    display: none;
}

ul.home-hero__values {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    font-size: var(--font-size-h6);
    color: white;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 7px;
    font-weight: 300;
}
ul.home-hero__values li {
    font-size: var(--font-size-normal);
}
ul.home-hero__values li:not(:last-child) {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* ul.home-hero__values li:not(:last-child)::after {
    content: "";
    height: 10px;
    width: 10px;
    display: block;
    border-radius: 100%;
    background-color: var(--color);
    color: white;
    font-weight: 400;
} */
.home-hero__cta-text {
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    text-align: center;
    font-weight: 400;
}
.home-hero__cta-text strong {
    font-weight: 600;
}
.home-hero__cta-text p:not(:first-child) {
    margin-top: 20px; /* Adjust value as needed */
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

.home-hero__review {
	color: white;
	display: flex;
	gap: 5px;
	align-items: center;
}

@media screen and (max-width: 1600px){
    .home-hero__logo img {
        height: 40px;
    }
}
@media screen and (max-width: 1300px){
    .home-hero__logo img {
        height: 30px;
    }
    .home-hero__content {
        padding: 130px max(var(--padding), calc((100vw - var(--width)) / 2)) !important;
    }
}
@media screen and (max-width: 786px){
    .home-hero__logo img {
        height: 20px;
    }
}
.home-hero__cta-buttons.btn-group-wrapper {
    justify-content: center;
}
.home-hero__cta-buttons.btn-group-wrapper .btn--su-se-uni-global:not(:first-child) {
    border-color: white;
    color: white;
}
.home-hero__content.main-section {
    position: relative;
}


.home-hero__title em {
    padding: 5px 10px;
    font-style: normal;
    position: relative;
    display: block;
    width: fit-content;
}

.home-hero__title em::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 100%;
    background: var(--color-brand) !important;
    background-size: 400% 400%;
    animation: revealWidth 1s 1s forwards !important;
    clip-path: polygon(
        10px 0,
        100% 0,
        calc(100% - 10px) 100%,
        100% 100%,
        0 100%,
        0 100%
    );
    z-index: -1;
}

@keyframes revealWidth {
    from { width: 0; }
    to { width: calc(100% + 20px); }
}

.home-hero__content.main-section::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    z-index: -1;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.5) 100%);
}

.home-hero__content span.casestudies__product-title svg {
    height: 12px;
}

.home-hero__content .casestudies__product-title {
    font-size: var(--font-size-h6);
}
.home-hero__content .casestudies__product-item {
    padding: 3px 8px;
}

.home-hero::before {
    content: "";
    display: block;
    position: absolute;
    background: var(--color);
    width: 100%;
    bottom: 0;
    left: 0;
    height: 0;
    z-index: 2;
}
@media screen and (max-width: 992px){
    .home-hero__content {
        gap: 15px;
    }
}

.wp-block-gallery {
    z-index: 5;
    background-color: var(--background-light);
    position: relative;
}
:where(figure) {
    margin: 0;
}
h1.home-hero__title p {
    display: flex;
    flex-direction: column;
    align-items: center;
}