.site-id-1 .flex-layout.home_hero-layout {
    background: linear-gradient(
        to bottom,
        #bee6ef 0%,
        rgba(190, 230, 239, 0.5) 50%
    );
}

.site-id-14 .flex-layout.home_hero-layout {
    background: linear-gradient(to bottom, #fcff99 0%, #fcff99 50%);
}

.home_hero-layout .pk-row-content.pk-grid-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.home_hero-layout {
    position: relative;
    overflow: hidden;
    /* min-height: 95dvh; */
}

.site-id-1 .flex-layout.home_hero-layout:after {
    content: "";
    height: 100px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #feb2ce;
    display: block;
    z-index: 1;
}

.site-id-14 .flex-layout.home_hero-layout:after {
    content: "";
    height: 100px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #e0d1fc;
    display: block;
    z-index: 1;
}

.home_hero-layout .hero-container {
    width: 100%;
}

.home_hero-layout .hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 80px 0;
}

.home_hero-layout .center-container {
    min-width: 305px;
}

.home_hero-layout .hero-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.home_hero-layout .hero-image img {
    width: 100%;
    display: block;
    object-fit: contain;
}

.home_hero-layout .hero-logo {
    flex-shrink: 0;
    max-width: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    margin-top: 55px;
}

.home_hero-layout .rotating-logo {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.home_hero-layout .rotating-logo svg {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.home_hero-layout .rotating-logo svg {
    width: 100%;
    height: 100%;
}

.home_hero-layout .rotating-logo .logo-inner-wrap {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home_hero-layout .rotating-logo .logo-inner-wrap img {
    min-width: 30px;
}

.hero-image.hero-image-2 img {
    object-fit: contain;
    object-position: left;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hero Personen Afbeeldingen */
.flex-layout.home_hero-layout .pk-col-right,
.flex-layout.home_hero-layout .pk-col-left {
    display: flex;
}

/* Afbeeldingen Links */
.flex-layout.home_hero-layout .pk-col-left .image-wrap-left {
    position: relative;
    right: -45px;
}

.site-id-14 .flex-layout.home_hero-layout .pk-col-left .image-wrap-left {
    right: -65px;
}

.flex-layout.home_hero-layout .pk-col-left .image-wrap-left .pk-hero-cloud {
    position: absolute;
    top: -30px;
    left: -120px;
}

.site-id-14 .flex-layout.home_hero-layout .pk-col-left .image-wrap-left .pk-hero-cloud {
    top: 20px;
    left: -140px;
}

.flex-layout.home_hero-layout .pk-col-left .image-wrap-right {
    position: relative;
    z-index: 1;
}

.flex-layout.home_hero-layout .pk-col-left .image-wrap-right .pk-hero-cloud {
    position: absolute;
    bottom: 100px;
    right: -100px;
}



/* Afbeeldingen Rechts */
.flex-layout.home_hero-layout .pk-col-right .image-wrap-left {
    position: relative;
    z-index: 1;
}

.flex-layout.home_hero-layout .pk-col-right .image-wrap-left .pk-hero-cloud {
    position: absolute;
    top: -55px;
    left: -150px;
}

.site-id-14 .flex-layout.home_hero-layout .pk-col-right .image-wrap-left .pk-hero-cloud{
	top: 0;
	left: -90px;
}

.flex-layout.home_hero-layout .pk-col-right .image-wrap-right {
    position: relative;
    left: -50px;
}

.flex-layout.home_hero-layout .pk-col-right .image-wrap-right .pk-hero-cloud {
    position: absolute;
    top: 0;
    right: -150px;
}

.site-id-14 .flex-layout.home_hero-layout .pk-col-right .image-wrap-right {
    position: relative;
    left: -70px;
	z-index: 1;
}

.site-id-14 .flex-layout.home_hero-layout .pk-col-right .image-wrap-right .pk-hero-cloud {
    right: -185px;
}

/* Hover state */
.flex-layout.home_hero-layout .pk-hero-cloud {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.flex-layout.home_hero-layout .person-image:hover + .pk-hero-cloud {
    opacity: 1;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .home_hero-layout .hero-images {
        gap: 30px;
    }

    .home_hero-layout .hero-logo {
        width: 160px;
        height: 160px;
    }
    .home_hero-layout .hero-image-1 {
        display: none;
    }
}

@media (max-width: 768px) {
    .home_hero-layout .hero-content {
        min-height: 400px;
        padding: 40px 0;
    }

    .home_hero-layout .hero-images {
        flex-wrap: wrap;
        gap: 0px;
    }

    .home_hero-layout .hero-image {
        max-width: 160px;
    }

    .home_hero-layout .hero-logo {
        flex: 0 0 120px;
        width: 64px;
        height: 64px;
        order: -1;
        margin-bottom: 20px;
    }

    .site-id-1 .flex-layout.home_hero-layout:after {
        content: "";
        height: 130px;
    }
}

@media (max-width: 480px) {
    .home_hero-layout .hero-images {
        flex-direction: column;
    }

    .home_hero-layout .hero-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }

    .home_hero-layout .hero-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 1360px) {
    .home_hero-layout .hero-titles {
        display: none;
    }
}
