/* Header */
.wp-site-blocks > header {
    /* position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); */
    position: absolute; /* or fixed if you want it to remain visible on scroll */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
} 
.wp-block-columns.is-style-absolute-position {
    /* position: absolute;
    bottom: 0;
    left: 0;
    right: 0; */
}
@media screen and (min-width: 768px) {
    .wp-block-columns.is-style-absolute-position {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
}

@media screen and (max-width: 767px) {
    .wp-block-group.is-style-reverse-mobile {
        flex-direction: column-reverse;
    }
}

.wp-block-button__link.has-primary-color:hover {
    background-color: #425563 !important;
    color: #fff !important;
}

.wp-block-button.disabled:hover a {
    cursor: default;
}
.wp-block-video.is-style-hero {
    position: relative;
    overflow: hidden;
    height: 50vh;
}
.wp-block-video.is-style-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
}
.wp-block-video.is-style-hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    z-index: 1;
}
.wp-block-video.is-style-hero video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.video-hero__title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}
.video-hero__title:after {
    content: '';
    background-image: url('../assets/image/arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 40px;
    height: 60px;
    margin: 0 auto 20px;
}
.video-hero__title h1 {
    font-family: 'museo-sans', sans-serif;
    font-size: 1.65rem;
    color: #fff;
    letter-spacing: 0.4em;
    margin-bottom: 4vh;
}
.video-hero__scroll-element {
    
    
    bottom: -75px;
    /* margin-top: -2em; */
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    /* transform: translate(0, 79%); */
}

.video-hero__scroll-circle {
    display: inline-block;
    width: 4em;
    height: 4em;
    background-color: #fbf6f2;
    border-radius: 100%;
   
}

/* footer */
.wp-site-blocks > footer > .wp-block-group.has-background {
    position: relative;
}

.wp-site-blocks > footer > .wp-block-group.has-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px; /* Adjust height as needed */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), transparent);
    pointer-events: none;
}
.wp-site-blocks > footer.wp-block-template-part {
    margin-top: 0;
}

@media screen and (min-width: 768px) {
    .wp-block-video.is-style-hero {
        height: 100vh;
    }
    .wp-site-blocks > footer > .wp-block-group.has-background > .wp-block-group.has-background {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}
@media screen and (max-width: 767px) {
    main > .entry-content > .wp-block-group.alignwide {
        margin-right: calc(var(--wp--style--root--padding-right)* -1) !important;
        margin-left: calc(var(--wp--style--root--padding-left)* -1) !important;
        padding-left: calc(var(--wp--style--root--padding-left) / 2) !important;
        padding-right: calc(var(--wp--style--root--padding-right) / 2) !important;
    }
    .video-hero__title:after {
        display: none;
    }
    .video-hero__scroll-element {
        bottom: -65px;
    }
    .wp-site-blocks > footer .wp-block-columns > .wp-block-column {
        /* align-items: center !important;
        justify-content: center !important;
        align-content: center !important; */
        text-align: center;
    }
    .wp-site-blocks > footer > .wp-block-group:first-child {
        padding-top: 1rem !important;
    }
    .wp-site-blocks > footer .wp-block-columns .alignleft {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
    .wp-site-blocks > footer .wp-block-columns .alignright {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
    .wp-site-blocks .wp-block-columns .wp-block-navigation__container {
        justify-content: center;
    }
    .wp-site-blocks .wp-block-columns .wp-block-social-links {
        justify-content: center;
    }
    .wp-block-cover .wp-image-53 {
        display: none;
    }
}