.flex_layout.service_hero .image{
    grid-column: 1 / -1;
    height: 100vh;
    position: relative;
    /* margin-bottom: 2.5rem; */
}

.flex_layout.service_hero .image img{
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}

.flex_layout.service_hero .breadcrumbs{
    grid-column: 1 / -1;
    padding-inline: var(--grid-margin);
}

.flex_layout.service_hero .info{
    grid-column: 1 / span 5;
    padding-left: var(--grid-margin);
}

.flex_layout.service_hero .details{
    margin-top: var(--grid-margin);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flex_layout.service_hero .details div{
    display: flex;
    flex-direction: row;
    gap: .5rem;
    align-items: flex-start;
}

.flex_layout.service_hero .details .icon{
    width: 1.25rem; height: 1.25rem;
    background-color: currentColor;
}

.flex_layout.service_hero .location .icon{
    mask: url(../../../../../../uploads/green-oaks/icons/location.svg) no-repeat center / contain;
    -webkit-mask: url(../../../../../../uploads/green-oaks/icons/location.svg) no-repeat center / contain;
}

.flex_layout.service_hero .surface .icon{
    mask: url(../../../../../../uploads/green-oaks/icons/surface.svg) no-repeat center / contain;
    -webkit-mask: url(../../../../../../uploads/green-oaks/icons/surface.svg) no-repeat center / contain;
}

.flex_layout.service_hero .style .icon{
    mask: url(../../../../../../uploads/green-oaks/icons/style.svg) no-repeat center / contain;
    -webkit-mask: url(../../../../../../uploads/green-oaks/icons/style.svg) no-repeat center / contain;
}

.flex_layout.service_hero .specialists .icon{
    mask: url(../../../../../../uploads/green-oaks/icons/specialists.svg) no-repeat center / contain;
    -webkit-mask: url(../../../../../../uploads/green-oaks/icons/specialists.svg) no-repeat center / contain;
}

.flex_layout.service_hero .specialists .text{
    display: block;
}

.flex_layout.service_hero .specialists .names{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.flex_layout.service_hero .specialists .person{
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.flex_layout.service_hero .details .text{
    font-weight: 700;
    font-size: var(--body-small);
}

.flex_layout.service_hero .details .pk-button{
    border: none;
    padding: 0;
    margin-left: 1.625rem;
}

.flex_layout.service_hero .details .button-text::after{
    content: '';
    --mask-url: url("data:image/svg+xml,%3Csvg width='18' height='16' viewBox='0 0 18 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 3.83333V12.1667M3.83333 2.16667V13.8333M8.83333 0.5H15.5C16.4205 0.5 17.1667 1.24619 17.1667 2.16667V13.8333C17.1667 14.7538 16.4205 15.5 15.5 15.5H8.83333C7.91286 15.5 7.16667 14.7538 7.16667 13.8333V2.16667C7.16667 1.24619 7.91286 0.5 8.83333 0.5Z' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    display: block;
    width: 1em; height: 1em;
    background-color: currentColor;
    mask: var(--mask-url) no-repeat center / contain;
    -webkit-mask: var(--mask-url) no-repeat center / contain;
    margin-top: 2px;
}

.flex_layout.service_hero .details .pk-button:hover .button-text::after{
    transform: translateX(0);
}

/* .flex_layout.service_hero .details .button-text::after{
    content: none;
} */

.flex_layout.service_hero .intro{
    grid-column: 7 / span 5;
    font-size: var(--body-large);
}


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

    .flex_layout.service_hero .image{
        height: 60vh;
    }

    .flex_layout.service_hero .details{
        gap: .5rem;
    }

    .flex_layout.service_hero .intro{
        grid-column: 1 / -1;
        margin-top: var(--grid-margin);
        padding: var(--grid-margin);
    }

}