/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/

html.hide-overflow,
html.hide-overflow body,
body.hide-overflow {
    overflow: hidden;
}

body {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    background-color: var(--grey-bg);
}

.main-wrapper {
    position: relative;
    z-index: 71;
}

body.page-home main {
    background-image: linear-gradient(to bottom, var(--white), var(--beige-sand));
}


.hide-main-sidebar .row > .col-main-sidebar {
    display: none;
}
.hide-main-sidebar .row > .col-main-section {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}



/* This is buggy!! */
/*html {*/
/*    scroll-behavior: smooth;*/
/*}*/

/*body {*/
/*    height: 100vh;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    font-family: var(--theme-font);*/
/*    font-weight: 300;*/
/*    background: var(--grey-bg);*/
/*}*/

/*body.page-home main {*/
/*    background-image: linear-gradient(to bottom, var(--white), var(--beige-sand));*/
/*}*/

/*body.menu-open html,*/
/*body.menu-open {*/
/*    overflow: hidden;*/
/*}*/






/*--------------------------------------------------------------
# Globals - lists
--------------------------------------------------------------*/

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


/*--------------------------------------------------------------
# Globals - links + buttons
--------------------------------------------------------------*/

a:not(.link) {
    text-decoration: none;
}

button,
button:focus {
    outline: inherit;
}

/*--------------------------------------------------------------
# Globals - form elements
--------------------------------------------------------------*/

textarea {
    resize: none;
}


/*--------------------------------------------------------------
# Globals - utility classes
--------------------------------------------------------------*/

.show-mobile {
    display: none;
}
.show-desktop {
    display: block;
}


/*--------------------------------------------------------------
# Globals - media querys
--------------------------------------------------------------*/

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

    .show-mobile {
        display: block;
    }
    .show-desktop {
        display: none;
    }

}




/*--------------------------------------------------------------
# Globals - media querys
--------------------------------------------------------------*/

.video-container {
    display: flex;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    line-height: 1em;
    margin: auto;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}









/* Picture */

picture {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
}
picture.responsive {
    pointer-events: none;
    width: 100%;
}
picture.flex {
    display: flex;
}
picture.fill > img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
picture.contain > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
picture.cover > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.picture-wrap {
    position: relative;
}

.picture-wrap.block {
    display: block;
}

.picture-wrap.overflow {
    overflow: hidden;
}

.picture-wrap.is-empty::after {
    content: ' ';
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    inset: 0;
}

.picture-wrap.is-empty::after {
    background-image: url('/images/no-image.webp');
}

.picture-wrap.is-empty::after {
    background-image: url('/images/no-image.png');
}




/* Breadcrumbs */

ul.breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
}

ul.breadcrumb > li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

ul.breadcrumb > li > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}


















