.flex-layout.hero-home-layout {
    position: relative;
    padding: 0;
}

.flex-layout.hero-home-layout .hero-home_background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.flex-layout.hero-home-layout .hero-home_background:before {
    content: '';
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%);
    z-index: 1;
}

.flex-layout.hero-home-layout .hero-home_background .hero-home_video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.flex-layout.hero-home-layout>.pk-row {
    position: relative;
    z-index: 1;
    max-width: calc(var(--pk-container-width) + 48px);
    padding-block: 170px 125px;
    padding-inline: var(--pk-site-gutter);
}

.flex-layout.hero-home-layout .heading-wrapper h1 {
    font-size: var(--heading-xl);
    color: var(--white);
    display: flex;
    flex-direction: column;
    letter-spacing: -1.6px;
    line-height: 0.93;
}

.flex-layout.hero-home-layout .heading-wrapper h1 .bold {
    margin-bottom: 1.5rem;
}

.flex-layout.hero-home-layout .hero-home_text {
    margin-bottom: 1.5rem;
}

.flex-layout.hero-home-layout .hero-home_text p {
    color: var(--white);
    line-height: 1.56;
}

.flex-layout.hero-home-layout .pk-module.pk-button-group .secondary {
    border-color: var(--blue-500);
}

.flex-layout.hero-home-layout .pk-module.pk-button-group .secondary:hover {
    border-color: var(--blue-400);
}

.flex-layout.hero-home-layout .pk-module.pk-button-group .secondary span {
    color: var(--white);
}

.flex-layout.hero-home-layout .hero-home_contact_info {
    margin-top: 270px;
    border-top: 0.5px solid var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 20px;
}

.flex-layout.hero-home-layout .hero-home_contact_info .contact_info_wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flex-layout.hero-home-layout .hero-home_contact_info .contact_info_wrapper .hero-home_email a,
.flex-layout.hero-home-layout .hero-home_contact_info .contact_info_wrapper .hero-home_phone a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--white);
    transition: color 180ms ease-in-out;
}

.flex-layout.hero-home-layout .hero-home_contact_info .contact_info_wrapper .hero-home_email a:hover,
.flex-layout.hero-home-layout .hero-home_contact_info .contact_info_wrapper .hero-home_phone a:hover {
    color: var(--blue-400);
}

.flex-layout.hero-home-layout .hero-home_contact_info .contact_info_wrapper .hero-home_email a svg path,
.flex-layout.hero-home-layout .hero-home_contact_info .contact_info_wrapper .hero-home_phone a svg path {
    transition: stroke 180ms ease-in-out;
}

.flex-layout.hero-home-layout .hero-home_contact_info .contact_info_wrapper .hero-home_email a:hover svg path,
.flex-layout.hero-home-layout .hero-home_contact_info .contact_info_wrapper .hero-home_phone a:hover svg path {
    stroke: var(--blue-400);
}

@media screen and (max-width: 992px) {
    .flex-layout.hero-home-layout .hero-home_heading {
        margin-bottom: 1.5rem;
    }

    .flex-layout.hero-home-layout .hero-home_contact_info {
        margin-top: 150px;
    }
}

@media screen and (max-width: 767px) {
    .flex-layout.hero-home-layout>.pk-row {
        padding-top: 100px;
        padding-inline: 1rem;
    }

    .flex-layout.hero-home-layout .hero-home_contact_info {
        margin-top: 80px;
    }

    .flex-layout.hero-home-layout .hero-home_contact_info .contact_info_wrapper {
        flex-wrap: wrap;
    }

    .pk-page .flex-layout.hero-home-layout .read_more {
        display: none;
    }

    .flex-layout.hero-home-layout .heading-wrapper h1 .bold {
        margin-bottom: 0.5rem;
    }
}