.hero_content_overlay-layout {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 100px;
}

.hero_content_overlay-layout .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero_content_overlay-layout::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.15);
}

.hero_content_overlay-layout .pk-row {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
}

.pk-home-hero .pk-row .pk-row-content {
    position: relative;
}

.pk-home-hero h1.pk-heading {
    margin-bottom: 30px;
}

.pk-home-hero .pk-text {
    font-size: var(--body-md);
    font-weight: 500;
}

/* hero button */
.pk-home-hero .pk-button {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 0;
    background: none;
    transition: opacity 0.5s ease-in-out;
}

.pk-home-hero .pk-button:hover {
    opacity: 0.8;
}

.pk-home-hero .pk-button .pk-button-text {
    color: var(--pk-primary-blue);
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 20px;
    background: var(--pk-white);
}

.pk-home-hero .pk-button::after {
    content: "\f8ce";
    font-family: "Material Symbols outlined";
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--pk-white);
    transition: transform 0.3s ease-in-out;
}

.pk-home-hero .pk-button:hover::after {
    transform: rotate(45deg);
}

/*Hero Shapes */
.hero-shape {
    position: absolute;
    height: 48px;
    background: var(--pk-blue-4);
    z-index: 5;
}
.hero-shape-1 {
    width: 160px;
    top: 0;
    right: 25px;
}

.hero-shape-2 {
    width: 95px;
    top: 150px;
    left: 0;
}
.hero-shape-3 {
    width: 130px;
    left: 0;
    bottom: 10vh;
    right: 0;
    margin: 0 auto;
}

.hero-shape-4 {
    width: 186px;
    bottom: 30vh;
    right: 0;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .hero_content_overlay-layout {
        margin-bottom: 55px;
    }
}

@media screen and (max-width: 992px) {
}
