.main-nav .menu a {
    color: var(--py-body-color);
}

.header-top {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    padding-bottom: 2rem;
}

.header-top .menu {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1.6rem;
}

.header-top .menu-item a {
    color: var(--py-body-color);
    text-decoration: none;
    padding-right: 1rem;
    border-right: 1px solid var(--py-body-color);
}

.header-top .menu-item a:hover {
    color: var(--py-brand-color-1);
}

.header-top .menu-item:last-child a {
    border: none;
    color: var(--py-brand-color-1);
}

.half-bg-top {
    background-image: linear-gradient(to top, black 50%, white 50%);
}

.half-bg-bottom {
    background-image: linear-gradient(to bottom, black 50%, white 50%);
}

.py-inspiration-card {
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: white;
    overflow: hidden;
}

.py-inspiration-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
    transition: 0.8s;
}

.py-inspiration-card__content {
    display: flex;
    flex-direction: column;
    gap: var(--py-content-gap);
    padding: 2rem 3rem;
    background-color: hsla(0, 0%, 0%, 0.58);
    z-index: 2;
    max-height: 6.4rem;
    transition: max-height 0.8s;
}

.py-inspiration-card:hover {
    color: white;
}

.py-inspiration-card__heading {
    font-size: 2.2rem;
    line-height: 1;
    width: max-content;
}

.py-inspiration-card__txt {
    font-size: 1.8rem;
}

.py-inspiration-card:hover .py-inspiration-card__content {
    max-height: 100%;
}

.py-inspiration-card:hover img {
    scale: 1.1;
}

.py-steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 25px) minmax(0, 1fr) minmax(0, 25px) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.py-steps__content {
    display: flex;
    flex-direction: column;
    padding: 2rem 3rem;
    gap: 1.8rem;
    text-decoration: none;
    color: var(--py-body-color);
    height: 100%;
    box-shadow: 0px 3px 8px #00000008;
}

.py-steps__content-heading {
    font-family: var(--py-font-family-body);
    font-size: clamp(2.4rem, calc(2.4rem + ((1vw - 0.32rem) * 0.35714285714285715)), 2.8rem);
    font-weight: 700;
}

.py-steps__content-number {
    font-size: clamp(5rem, calc(5rem + ((1vw - 0.32rem) * 1.7857142857142858)), 7rem);
    font-family: var(--py-font-family-heading);
    order: -1;
    line-height: 1;
    color: var(--py-brand-color-1);
}

.py-steps__content:hover {
    color: var(--py-body-color);
    box-shadow: 0px 3px 8px #B9BD8B33;
}

.py-divider {
    width: 100%;
    height: 1px;
    background-color: var(--py-brand-color-1);
}

.project-slider .splide__slide-heading {
    font-size: 2.2rem;
}

.project-slider__header-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-slider .splide__arrow {
    border: none;
    background-color: transparent;
}

.project-slider .splide__arrows {
    position: absolute;
    top: 100%;
    transform: translate(0, -24px);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.stripe-link {
    color: var(--py-body-color);
    text-decoration: none;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.stripe-link:before {
    content: "";
    width: 2rem;
    height: 1px;
    background-color: var(--py-brand-color-1);
    display: inline-flex;
    margin-right: 1rem;
}

.footer-top {
    padding: 10rem var(--py-sec-pad-inline);
    font-size: 1.6rem;
    color: var;
}

.footer-bottom {
    padding: 2rem var(--py-sec-pad-inline);
}

.footer-top .py-container {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    position: relative;
}

.footer-bottom {
    font-size: 1.5rem;
    color: #555555;
}

.footer-bottom img {
    max-height: 3.4rem;
}

.footer-bottom .py-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.footer-bottom__images {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-bottom__text {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #555555;
    text-decoration: none;
}

.footer-bottom span {
    padding-right: 0.8rem;
    border-right: 1px solid #555555;
}

.footer-top ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-top a {
    color: var(--py-body-color);
    text-decoration: none;
}

.footer-top .menu li:first-child {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-bottom__text ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-bottom__text .menu .menu-item a {
    padding-right: 0.8rem;
    border-right: 1px solid #555555;
}

.footer-top .py-container div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-top .py-container div img {
    max-width: 11rem;
}

.py-two-col-grid-img-full {
    display: grid;
    grid-template-columns: minmax(var(--py-sec-pad-inline), 1fr) minmax(0, 70rem) minmax(0, clamp(2rem, calc(2rem + ((1vw - 0.32rem) * 7.142857142857143)), 10rem)) minmax(0, 70rem) minmax(var(--py-sec-pad-inline), 1fr);
    align-items: center;
}

.py-two-col-grid-img-full img {
    grid-column: 4/6;
}

.grid-img-full-reverse img {
    order: -1;
    grid-column: 1/3;
}

.py-inspirations-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.py-inspirations-grid a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    color: var(--py-body-color);
}

.py-inspirations-grid h2 {
    font-size: 2.2rem;
}

.py-inspirations-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s;
}

.py-inspirations-grid a:hover img {
    scale: 1.05;
}

.py-inspiration-grid__img-wrapper {
    height: 360px;
    overflow: hidden;
}

.py-inspiration-grid__content {
    display: flex;
    gap: 2rem;
    font-size: 1.8rem;
    justify-content: space-between;
    flex-grow: 1;
}

.py-inspiration-grid__content-span {
    min-width: fit-content;
}

.py-inspirations-grid a:hover .stripe-link {
    color: var(--py-brand-color-1);
}

.py-inspiration-grid__content-p {
    font-size: 1.6rem;
}

.wpgb-facet button.wpgb-button {
    color: var(--py-button-text-color)!important;
    background-color: var(--py-button-color);
    padding: var(--py-button-padding)!important;
    border: 1px solid var(--py-button-color)!important;
    border-radius: var(--py-button-border-radius)!important;
    font-weight: 300!important;
    font-size: 2rem!important;
    line-height: 1.4!important;
    width: fit-content;
}

.py-project-h1 {
    position: relative;
    text-align: center;
    padding-bottom: var(--py-container-gap);
}

.py-project-h1:after {
    content: "";
    width: 7rem;
    height: 1px;
    display: block;
    background-color: var(--py-brand-color-1);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.py-project-content {
    display: flex;
    flex-direction: column;
    gap: var(--py-content-gap);
}

.py-project-fields__item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.py-project-fields__title {
    font-size: 1.6rem;
    padding-bottom: 1rem;
    position: relative;
    color: #555;
}

.py-project-fields__title:after {
    content: "";
    width: 2rem;
    height: 1px;
    display: block;
    background-color: var(--py-brand-color-1);
    position: absolute;
    left: 0;
    bottom: 0;
}

.py-project-fields {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 4rem;
}

.insta-single-post {
    display: flex;
    color: white;
    justify-content: space-between;
}

.insta-single-post .stripe-link {
    color: white;
}

.project-slider .splide__slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.py-blog-posts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--py-grid-gap);
}

.py-blog-posts a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--body-color);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.py-blog-posts__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem;
}

.py-blog-posts img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: 0.8s;
}

.py-blog-posts h2 {
    font-size: clamp(2rem, calc(2rem + ((1vw - 0.32rem) * 0.5357142857142857)), 2.6rem);
}

.py-blog-posts span {
    color: var(--py-brand-color-1);
}

.py-blog-posts__img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.py-blog-posts a:hover img {
    scale: 1.1;
}

.py-blog-posts a:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.py-blog-posts__content p {
    font-size: 1.8rem;
}

.py-post-container {
    gap: clamp(2rem, calc(2rem + ((1vw - 0.32rem) * 5.357142857142857)), 8rem);
}

.jobs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--py-body-color);
    padding: 2rem;
    border: 1px solid var(--py-brand-color-1);
}

.jobs__link {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jobs__fields {
    display: flex;
    gap: clamp(3rem, calc(3rem + ((1vw - 0.32rem) * 0.8928571428571429)), 4rem);
    font-size: 1.6rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.jobs__fields-items {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jobs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.jobs__heading {
    font-size: 2.4rem;
}

.search-wrapper__btn {
    border: none;
    background-color: transparent;
}

.search-wrapper {
    position: relative;
}

.search-wrapper__panel {
    position: absolute;
    top: 130%;
    right: 0;
}

.search-wrapper__search-button {
    background-color: var(--py-brand-color-1);
    border: 2px solid var(--py-brand-color-1);
}

.py-text-decoration-none a {
    text-decoration: none;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;

    /* Remove default styling */
    appearance: none;

    /* Standard way, but limited support */
    width: 16px;

    /* Custom size */
    height: 16px;

    /* Custom size */
    background: url('/wp-content/uploads/close.svg') no-repeat center;

    /* Custom icon */
    background-size: cover;
    cursor: pointer;
}

.jobs:hover {
    color: var(--py-body-color);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.jobs:hover .jobs__link {
    color: var(--py-brand-color-1);
}

.py-search-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: 5rem;
}

.py-search-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-top__logos {
    margin-left: auto;
    align-items: flex-start;
}

.py-section-footer-half .py-container {
    padding: 2rem;
}

.wpgb-facet .wpgb-checkbox-facet .wpgb-checkbox[aria-pressed=true] .wpgb-checkbox-control {
    background: var(--py-brand-color-1)!important;
    border-color: var(--py-brand-color-1)!important;
}

.py-career-top-bar {
    top: 131px;
}

@media (max-width:479px) {
    .py-search-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    }

    .project-slider .splide__slide img {
        height: 250px;
    }

    .py-career-top-bar {
        top: 88.5px;
    }
}

.py-search-item h2 {
    font-size: 2.6rem;
}

.py-career-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    gap: clamp(2rem, calc(2rem + ((1vw - 0.32rem) * 5.357142857142857)), 8rem);
}

.py-career__content {
    display: flex;
    flex-direction: column;
    gap: var(--py-content-gap);
}

.py-career__side {
    position: sticky;
    top: 150px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.py-career__side .btn,
.py-career-s2__content .btn {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jobs__fields-items svg {
    height: 22px;
    width: auto;
}

.py-career-s2__wrapper {
    display: flex;
    color: var(--py-white);
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.py-career-s2__wrapper h2 {
    max-width: 450px;
}

.py-career-s2__content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.py-career-s2__img {
    position: relative;
    max-width: 456px;
}

.py-career-s2__img p {
    position: absolute;
    bottom: 0;
    padding: 2rem;
}

#join h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.py-products-grid h2 {
    font-size: 2rem;
    color: var(--py-body-color);
}

.py-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.py-products-grid a {
    gap: 1rem;
    align-items: center;
    text-decoration: none;
}

.py-products-grid__img-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 3rem 4rem;
    background-color: hsl(0, 0%, 96%);
    max-height: 400px;
    overflow: hidden;
    flex-grow: 1;
}

.py-products-grid a:hover h2 {
    color: var(--py-brand-color-1);
}

.py-products-grid__img-wrapper img {
    height: 100%;
    width: auto;
    transition: scale 0.4s;
}

.py-products-grid a:hover img {
    scale: 1.04;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.py-single-product-container {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: clamp(2rem, calc(2rem + ((1vw - 0.32rem) * 5.357142857142857)), 8rem);
}

.py-product-content {
    display: flex;
    flex-direction: column;
    gap: var(--py-content-gap);
}

.py-product-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.py-single-product-container iframe {
    width: 100%;
    max-width: 100%;
    height: 500px;
}

@media (max-width:991px) {
    .footer-top .py-container {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width:767px) {
    .footer-top .py-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-top__logos {
        flex-direction: row!important;
        margin-left: 0;
    }

    .py-section-footer-half {
        min-height: 60vh!important;
    }
}

.mobile-menu__panel img {
    position: absolute;
    opacity: 0.08;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width:767px) {
    .py-steps {
        grid-template-columns: minmax(0, 1fr);
    }

    .py-steps svg {
        margin-inline: auto;
        rotate: 90deg;
    }
}

@media (max-width:991px) {
    .py-inspiration-card__heading {
        width: auto;
        max-width: 150px;
    }

    .py-inspiration-card__content {
        max-height: 8.4rem;
    }
}

@media (max-width:479px) {
    .header-top {
        display: none;
    }
}

@media (max-width:767px) {
    .py-two-col-grid-img-full {
        grid-template-columns: minmax(0, 1fr);
    }

    .py-two-col-grid-img-full img {
        grid-column: auto;
        order: -1;
    }

    .py-two-col-grid-img-full > div:nth-child(2) {
        padding-top: 4rem;
        padding-inline: var(--py-sec-pad-inline);
    }

    .py-inspirations-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .py-products-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .py-inspiration-grid__img-wrapper {
        height: 250px;
    }

    .py-project-fields {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width:479px) {
    .py-project-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .py-products-grid {
        grid-template-columns: minmax(0,1fr);
    }
}

@media (max-width:767px) {
    .py-single-product-container {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width:479px) {
    .jobs {
        flex-direction: column;
        align-items: flex-start;
    }

    .jobs__fields {
        flex-direction: column;
    }
}

@media (max-width:767px) {
    .py-blog-posts {
        grid-template-columns: minmax(0,1fr);
    }
}

.footer-bottom .py-container:before {
    content: "";
    position: absolute;
    top: -2rem;
    width: 100%;
    height: 1px;
    background-color: #ced0d0;
}

.py-project-container > p {
    text-align: center;
}

.footer-bottom__images a {
    display: flex;
    align-items: center;
}