.py-header-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
}

/* test */
.py-header-phone:hover {
    color: white;
}

.py-header-cta {
    background-color: white;
    border: 2px solid white;
}

.py-header-cta:hover {
    color: white;
    background-color: transparent;
}

.py-text-indent {
    padding-left: clamp(0rem, calc(0rem + ((1vw - 0.4rem) * 10.576923076923077)), 11rem);
}

.parallax-image {
    transform: translateY(150px);
}

.py-border-bottom {
    border-bottom: 1px solid var(--py-brand-color-2);
}

.py-border-left-white {
    border-left: 1px solid var(--py-white);
    padding-left: 2rem;
}

.py-footer .py-container {
    gap: clamp(2.5rem, calc(2.5rem + ((1vw - 0.4rem) * 5.288461538461538)), 8rem);
}

.py-footer__bottom {
    display: flex;
    flex-direction: column;
}

.py-footer__bottom img {
    width: 100%;
}

.py-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr) minmax(0, 4fr);
    gap: clamp(2rem, calc(2rem + ((1vw - 0.4rem) * 5.769230769230769)), 8rem);
}

.btn--third {
    background-color: white;
    border-color: var(--py-button-color);
}

.btn--third:hover {
    background-color: var(--py-button-color);
}

.py-stories-card {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    max-width: 700px;
}

/* Modal Style */
.modal__container {
    display: flex;
    justify-content: center;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    overflow-y: auto;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.25);
}

.modal__panel-wrapper {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal__panel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    border-radius: 0.75rem;
    background-color: white;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.modal__title {
    font-weight: 500;
    color: #1f2937;
}

.modal__content {
    margin-top: 0.5rem;
    color: #6b7280;
    max-width: 20rem;
}

.modal__buttons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.modal__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.5rem;
    border: 1px solid;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.modal__button--trigger {
    border-color: #e5e7eb;
    background-color: white;
    color: #1f2937;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.modal__button--trigger:hover {
    border-color: #e5e7eb;
    background-color: #f9fafb;
}

.modal__button--cancel {
    border-color: transparent;
    background-color: transparent;
    color: #1f2937;
}

.modal__button--cancel:hover {
    background-color: rgba(31, 41, 55, 0.1);
}

.modal__button--confirm {
    border-color: transparent;
    background-color: #1f2937;
    color: white;
}

.modal__button--confirm:hover {
    background-color: #111827;
}

/* End Modal */
.py-stories-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2rem;
    gap: 2rem;
    background-color: white;
}

.py-stories-card__content-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.py-stories-card__content-top .modal__button {
    border: none;
    padding: 0;
}

.py-stories-card__content-bottom h3 {
    font-size: 2.5rem;
}

.py-stories-card__content-bottom p {
    font-size: 1.4rem;
}

.py-stories-card__content-text {
    font-size: 2.2rem;
}

.py-stories-card__content-top p {
    font-size: 1.4rem;
}

.py-what-we-do-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    height: 100%;
}

.py-what-we-do-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.py-what-we-do-card__content {
    padding: 2.5rem;
}

.splide__slide > div {
    height: 100%;
}

.py-regular-slider .splide {
    position: static;
}

.py-regular-slider .splide__arrows {
    display: flex;
    gap: 3rem;
    position: absolute;
    left: 0;
    bottom: 0;
}

.py-position-relative {
    position: relative;
}

.py-regular-slider .splide__arrow {
    aspect-ratio: auto;
    border: none;
    padding: 0;
    background-color: transparent;
}

.custom-cursor {
    position: fixed;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 9999;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    transform: translate(-50%, -50%);
}

/* Hide default cursor on .splide hover */
.splide__track:hover {
    cursor: auto;
}

.py-div {
    display: flex;
}

.py-margin-top-auto {
    margin-top: auto!important;
}

.py-three-stories-card-wrapper {
    display: flex;
    gap: 2rem;
}

.py-three-stories-card-wrapper .py-stories-card {
    display: flex;
    min-height: 371px;
}

.py-three-stories-card-wrapper .py-stories-card__content {
    width: 100%;
    max-width: 350px;
}

.py-three-stories-card-wrapper .py-stories-card__img {
    width: 0px;
    opacity: 0;
    height: 371px;
    object-fit: cover;
    transform-origin: left center;
    transition: width   0.75s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.45s 0.1s ease-out;
}

.py-three-stories-card-wrapper .py-stories-card.active .py-stories-card__img {
    width: 350px;
    opacity: 1;
    max-width: 50%;
}

p.gform_required_legend {
    display: none;
}

.gform_wrapper.gravity-theme .gfield_label {
    color: white;
    font-weight: 400!important;
}

.gform_wrapper.gravity-theme .gfield_required {
    color: white!important;
}

.gform_wrapper.gravity-theme #gform_3 .gfield_label {
    color: var(--py-body-color);
    font-weight: 400!important;
}

.gform_wrapper.gravity-theme #gform_3 .gfield_required {
    color: var(--py-body-color)!important;
}

.ginput_container input::placeholder,
.ginput_container textarea::placeholder {
    color: #84B2DF;
}

label.gform-field-label.gform-field-label--type-inline.gfield_consent_label {
    color: white;
}

#gform_4 .gchoice .gform-field-label {
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    color: var(--py-body-color);
    max-width: 100%!important;
}

#gform_4 .gfield-choice-input {
    display: none;
}

#gform_4 .gfield-choice-input:checked + .gform-field-label {
    background-color: var(--py-brand-color-2);
}

#input_4_1 label {
    font-size: 1.4rem;
}

div#input_4_1 {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: white;
}

.py-footer__grid .cols {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    font-size: 1.4rem;
}

.py-footer__grid .cols h2 {
    font-size: 2.5rem;
}

.py-footer__grid .cols .menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.py-footer__grid .menu a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
}

.py-footer__grid .cols a {
    color: white;
    text-decoration: none;
    word-break: break-word;
}

.py-footer__grid .cols .btn--second {
    color: var(--py-button-text-color);
}

.py-three-post-grid {
    display: grid;
    gap: 2rem;
}

.py-three-post-grid__item {
    background-color: var(--py-brand-color-1);
    color: white;
    text-decoration: none;
}

.py-three-post-grid__item-col {
    padding: 1.5rem 2.5rem;
}

.py-three-post-grid__item-col.top-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid white;
}

.py-three-post-grid__item-col.bottom-col h2 {
    font-size: 2.5rem;
}

.py-three-post-grid__item:hover {
    color: white;
    opacity: 0.8;
}

.py-three-post-grid__item-col .py-meta {
    display: flex;
    gap: 3rem;
    align-items: center;
    font-size: 1.4rem;
}

.py-footer__grid .menu li {
    max-width: fit-content;
}

.btn--fourth {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn--fifth {
    --py-button-color: var(--py-white);
}

.btn--fifth:hover {
    background-color: transparent;
    color: black!important;
}

.btn--six {
    background-color: transparent;
    color: var(--py-body-color);
    border-color: white;
}

.btn--six:hover {
    background-color: white;
    color: var(--py-body-color);
    border-color: white;
}

.py-space-slider .splide__arrows {
    position: absolute;
    right: 40px;
    top: -60px;
    gap: 4rem;
}

.py-space-slider .splide__arrow {
    border: none;
    background-color: transparent;
    padding: 0;
}

.youtube__backdrop {
    position: fixed;
    inset: 0;
    background-color: #00000094;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.py-stories-card__content-top .youtube button {
    border: none;
    padding: 0;
    background-color: transparent;
}

.py-team-card {
    display: flex;
    flex-direction: column;
    color: white;
    gap: 2rem;
    border: 1px solid white;
    border-radius: 20px;
    padding: 2rem 1.4rem;
    min-height: 491px;
    position: relative;
}

.py-team-card__top {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.py-team-card__top-linkedin {
    display: flex;
}

.py-team-card__top-vid .youtube button {
    border: none;
    background-color: transparent;
    padding: 0;
}

.py-team-card__img {
    width: 225px;
}

.py-team-card:nth-child(even) {
    top: 10rem;
}

.py-team-card__name {
    font-size: 2.5rem;
}

.py-team-card__title {
    font-size: 1.4rem;
}

.py-team-card__top-vid {
    margin-left: auto;
}

input#gform_submit_button_3 {
    --py-button-color: var(--py-brand-color-2);
}

input#gform_submit_button_3:hover {
    color: var(--py-body-color);
}

.py-contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: white;
}

.py-contact-details__phones {
    display: flex;
    flex-direction: column;
}

.py-contact-details a {
    color: white;
    text-decoration: none;
}

.py-single-post__top {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--py-brand-color-2);
}

.py-single-post__top-meta {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.py-single-post__content-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 2fr);
    gap: clamp(3rem, calc(3rem + ((1vw - 0.4rem) * 6.730769230769231)), 10rem);
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--py-brand-color-2);
}

.py-single-post__top-h1 {
    font-size: var(--py-h2);
    max-width: 800px;
}

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

.py-single-post__content-sidebar aside {
    display: flex;
    flex-direction: column;
    gap: clamp(6rem, calc(6rem + ((1vw - 0.4rem) * 1.9230769230769231)), 8rem);
}

.video-bg-section {
    position: relative;
    overflow: hidden;
    height: 80vh;
    width: 100%;
    padding-block: 0;
}

.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-bg-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-bg-container .bg-iframe {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 100vw;
    height: 190%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
    aspect-ratio: 16/9;
}

.video-bg-section a {
    pointer-events: all!important;
}

.py-overflow-hidden {
    overflow: hidden;
}

.py-display-none {
    display: none;
}

div#gform_confirmation_message_4,
div#gform_confirmation_message_1 {
    color: white;
}

select.ui-datepicker-month,
select.ui-datepicker-year,
.gravity-theme.ui-datepicker .ui-datepicker-calendar th span,
.gravity-theme.ui-datepicker .ui-datepicker-calendar td {
    font-size: 1.2rem !important;
}

/* Adjust for aspect ratios to mimic background-size: cover 
@media (min-aspect-ratio: 16/9) {
    .video-bg-container .bg-iframe {
        height: 56.25vw;

    }
}

@media (max-aspect-ratio: 16/9) {
    .video-bg-container .bg-iframe {
        width: 177.78vh;
    }
} */
.youtube__backdrop iframe {
    width: 1200px;
    height: auto;
    aspect-ratio: 16 / 9;
    max-width: 100%;
}

.custom-video-cursor {
    position: fixed;
    width: 150px;
    height: 50px;
    pointer-events: none;
    z-index: 9999;
    background: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    opacity: 0;
    transition: opacity 0.2s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hide default cursor on hover */
.video-bg-section:hover {
    cursor: none;
}

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

.py-post-grid__item-content {
    display: flex;
    flex-direction: column;
    gap: var(--py-content-gap);
    padding: 2rem 1.5rem;
    background-color: var(--py-brand-color-1);
    color: white;
}

.py-post-grid__item-content-h2 {
    font-size: 2.5rem;
}

.py-post-grid__item-content .py-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.py-post-grid__item-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.wpgb-facet-1 ul.wpgb-hierarchical-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.wpgb-facet-1 .wpgb-hierarchical-list li {
    margin: 0!important;
}

.wpgb-facet-1 span.wpgb-radio-control {
    display: none !important;
}

.wpgb-facet-1 .wpgb-radio-label {
    padding: 0!important;
}

.wpgb-facet-1 .wpgb-radio {
    flex-direction: column;
}

.wpgb-facet-1 .wpgb-radio:after {
    content: "";
    width: 0%;
    height: 1px;
    background-color: var(--py-body-color);
    display: block;
    transition: all 0.4s;
}

.wpgb-facet-1 .wpgb-radio:hover:after {
    width: 100%;
}

.wpgb-facet-1 .wpgb-radio[aria-pressed="true"]:after {
    width: 100%;
}

.wpgb-facet-2 button.wpgb-button.wpgb-load-more {
    background-color: transparent;
    color: black;
    padding: 0.5rem 0;
    border-bottom: 1px solid black;
    border-radius: 0;
}

.py-sign-up {
    background-color: var(--py-brand-color-1);
    border-radius: 500px;
    padding: 3.5rem 3.5rem 3.5rem 7rem;
}

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

.py-sign-up__grid-content {
    color: white;
    display: flex;
    flex-direction: column;
    gap: var(--py-content-gap);
    justify-content: center;
}

.py-sign-up__grid-content h2 {
    font-size: var(--py-h3);
}

form#gform_5 {
    display: flex;
    gap: 10rem;
}

#gform_5 .gform-body.gform_body {
    width: 100%;
}

#gform_5 .gform-footer.gform_footer.top_label {
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

input#gform_submit_button_5 {
    align-self: center;
    margin: 0;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    min-width: 160px;
    font-size: 2.8rem;
    font-family: var(--py-font-family-heading);
    font-weight: 400;
}

.gform-datepicker {
    width: 100%!important;
}

.py-single-post__top-back {
    order: -1;
    color: var(--py-black);
    text-decoration: none;
    align-self: flex-start;
}

ul.py-category-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

ul.py-category-links a {
    color: black;
    text-decoration: none;
}

.py-single-post__bottom {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.py-single-post__bottom-recent {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.py-single-post__bottom .py-single-post__top-back {
    display: none;
    order: unset;
    align-self: center;
}

.py-single-post__bottom-recent h2 {
    font-size: var(--py-h3);
}

.py-hiw-slider .wp-block-list {
    list-style-type: disc;
    padding-left: 30px;
}

.py-hiw-slider .splide__slide .py-flex {
    padding-right: 2rem;
    border-right: 1px solid var(--py-brand-color-2);
    height: 100%;
}

.py-slider-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border: 1px solid var(--py-brand-color-2);
}

.py-slider-video__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.py-slider-video .youtube button {
    display: flex;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    background-color: transparent;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 2rem;
}

.py-slider-video .youtube {
    justify-content: flex-end;
    height: 100%;
}

.mobile-menu__panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 2rem;
}

.main-nav-mobile {
    padding-block: 2rem 4rem;
    border-bottom: 1px solid var(--py-brand-color-2);
}

.py-header-phone-cta {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.mobile-menu__panel-bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: white;
    padding-block: 2rem;
    font-size: 1.4rem;
}

.mobile-menu__panel-bottom .py-header-phone-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.py-three-stories-slider {
    display: none;
}

@media (max-width:767px) {
    .py-header-phone,
    .py-header-cta {
        display: none;
    }

    .py-regular-slider .splide__arrows {
        display: flex;
        gap: 3rem;
        position: static;
        justify-content: space-between;
    }

    .py-space-slider .splide__arrows {
        position: static;
    }

    form#gform_5 {
        display: flex;
        flex-direction: column;
        gap: 5rem;
    }

    .py-border-left-white {
        border-left: none;
        padding-left: 0;
    }
}

.py-header-logo-menu {
    display: flex;
    align-items: center;
    gap: 4rem;
}

@media (max-width:767px) {
    .py-header-logo-menu {
        width: 100%;
        justify-content: space-between;
        gap: 2rem;
    }

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

    .py-tab-l-down-border-top-none {
        border-top: none;
    }

    .py-tab-l-down-gap-0 {
        gap: 0;
    }

    .py-tab-l-down-none {
        display: none;
    }
}

@media (max-width:1200px) {
    .py-three-stories-card-wrapper {
        display: none;
    }

    .py-three-stories-slider {
        display: block;
    }
}

.py-stories-card__img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

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

.py-three-stories-slider .splide__arrows {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.py-three-stories-slider .splide__arrow {
    padding: 0;
    background-color: transparent;
    border: none;
}

.splide__arrow:disabled {
    opacity: 0.4;
}

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

.py-img-l-up {
    display: none;
}

.py-img-l-down {
    display: none;
}

.py-grid-l-up {
    display: none;
}

.py-grid-l-down {
    display: none;
}

.py-single-post__bottom-recent .py-single-post__top-back {
    display: flex;
}

#field_4_1 {
    display: none;
}

#input_4_9 {
    color: white;
}

#input_4_9 option {
    color: black;
}

@media (max-width:767px) {
    .py-footer__grid .cols {
        padding-bottom: clamp(2rem, calc(2rem + ((1vw - 0.4rem) * 5.769230769230769)), 8rem);
        border-bottom: 1px solid var(--py-brand-color-2);
    }

    .py-img-l-down {
        display: block;
    }

    .py-grid-l-down {
        display: grid;
    }

    .py-padding-inline-l-down-0 {
        padding-inline: 0;
    }

    .py-border-block-l-down {
        border-block: 1px solid var(--py-white);
    }

    .py-border-bottom-l-down {
        border-bottom: 1px solid var(--py-white);
    }
}

@media (min-width:768px) {
    .py-img-l-up {
        display: flex;
    }

    .py-grid-l-up {
        display: grid;
    }

    #field_4_1 {
        display: block;
    }

    #field_4_9 {
        display: none;
    }

    .py-row-gap-0-l-up {
        row-gap: 0;
    }
}

.py-max-100 {
    max-width: 100%;
}

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

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

@media (max-width:991px) {
    .custom-cursor {
        display: none!important;
    }

    .custom-video-cursor {
        display: none!important;
    }

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

    .py-sign-up {
        border-radius: 0;
        padding: 3.5rem 2rem;
    }

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

    .py-team-card:nth-child(even) {
        top: 0rem;
    }

    .py-tab-xl-down-border-top-none {
        border-top: none;
    }

    .video-bg-container .bg-iframe {
        position: absolute;
        top: 50%;
        height: 120%;
    }
}

.py-space-slider {
    width: 100%;
}

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

    tbody.buttons-tbody {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    tr.areacalc-group-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 5px;
    }

    tbody.buttonFooter {
        display: flex;
    }

    tr.areacalc-footer-row {
        display: flex;
        justify-content: space-between;
    }

    tr#ribbon {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
}

@media (max-width:479px) {
    .py-single-post__bottom .py-single-post__top-back {
        display: flex;
    }

    .py-single-post__bottom-recent .py-single-post__top-back {
        display: none;
    }
}

.py-post-grid .py-meta span {
    font-size: 1.4rem;
}

@media (max-width:991px) {
    .py-three-stories-slider .splide__arrows {
        max-width: 700px;
    }
}

.py-footer__bottom a {
    width: 100%;
}

.py-copyright-link {
    display: flex;
    align-items: center;
    column-gap: 5rem;
    font-size: 1.4rem;
    flex-wrap: wrap;
}

.py-copyright-link a {
    color: white;
    text-decoration: underline!important;
}

@media (max-width:479px) {
    .py-stories-card__img {
        height: auto;
    }
}

@media (max-width:991px) {
    .video-bg-section {
        height: auto!important;
        aspect-ratio: 16/9;
    }
}