* {
    margin: 0;
    padding: 0;
}


@font-face {
    font-display: auto;
    font-family: Interstate;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/interstate-wgl-light.woff2) format("woff2"), url(../fonts/interstate-wgl-light.woff) format("woff")
}

@font-face {
    font-display: auto;
    font-family: Interstate;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/interstate-wgl-regular.woff2) format("woff2"), url(../fonts/interstate-wgl-regular.woff) format("woff")
}

@font-face {
    font-display: auto;
    font-family: Interstate;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/interstate-wgl-bold.woff2) format("woff2"), url(../fonts/interstate-wgl-bold.woff) format("woff")
}

@font-face {
    font-display: block;
    font-family: tp-icon;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/tp-icon.woff2?v2.14.0-beta.2) format("woff2"), url(../fonts/tp-icon.woff?v2.14.0-beta.2) format("woff"), url(../fonts/tp-icon.ttf?v2.14.0-beta.2) format("truetype")
}

:root {
    --padding: 1.5rem;
    --spacing: 0.5rem;
    --color-black: #21292F;
    --color-white: #fff;
    --color-grey: #64696D;
    --color-light: #F8F6F2;
    --color-text: var(--color-black);
    --color-text-grey: var(--color-grey);
    --color-background: var(--color-light);
    --color-code-light-grey: #cacbd1;
    --color-code-comment: #a9aaad;
    --color-code-white: #c5c9c6;
    --color-code-red: #d16464;
    --color-code-orange: #de935f;
    --color-code-yellow: #f0c674;
    --color-code-green: #a7bd68;
    --color-code-aqua: #8abeb7;
    --color-code-blue: #7e9abf;
    --color-code-purple: #b294bb;
    --font-family-sans: Interstate, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}


html {
    font-family: var(--font-family-sans);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto
}

img {
    width: 100%;
}

body {
    margin: 0 auto;
    width: 100%;
}

li {
    list-style: none;
}

a {
    color: currentColor;
    text-decoration: none;
}

button {
    font: inherit;
    background: none;
    border: 0;
    color: currentColor;
    cursor: pointer;
}

strong, b {
    font-weight: 700;
}

small {
    font-size: inherit;
    color: var(--color-text-grey);
}


.bg-light {
    background-color: var(--color-light);
}

.color-grey {
    color: var(--color-text-grey);
}


.navigation-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.navigation ul {
    display: flex;
    justify-content: space-between;
}

.navigation li {
    padding: 1rem;
}

.navigation li:first-child {
    padding-left: 0rem;
}

.navigation li:last-child {
    padding-right: 0rem;
}

.sub-nav li a[aria-current]:after {
    width: 100%;
    left: 0;
}

.sub-nav li {
    list-style: none;
}

.sub-nav .sub-nav-item {
    line-height: 2em;
    position: relative;
    z-index: 100;
}

.sub-nav .sub-nav-item:nth-child(1) {
    z-index: 99;
}

.sub-nav .sub-nav-item:nth-child(2) {
    z-index: 98;
}

.sub-nav .sub-nav-item:nth-child(3) {
    z-index: 97;
}

.sub-nav .sub-nav-item:nth-child(4) {
    z-index: 96;
}

.sub-nav .sub-nav-item:nth-child(5) {
    z-index: 95;
}

.sub-nav .sub-nav-item:nth-child(6) {
    z-index: 94;
}

.sub-nav .sub-nav-item:nth-child(7) {
    z-index: 93;
}

.sub-nav .sub-nav-item:nth-child(8) {
    z-index: 92;
}

.sub-nav .sub-nav-item:nth-child(9) {
    z-index: 91;
}

.sub-nav .sub-nav-item:nth-child(10) {
    z-index: 90;
}

.sub-nav .sub-nav-item:nth-child(11) {
    z-index: 89;
}

.sub-nav .sub-nav-item:nth-child(12) {
    z-index: 88;
}

.sub-nav li a {
    position: relative;
    padding-bottom: 0.25rem;
    color: var(--color-black);
}

#main-navigation {
    position: relative;
    z-index: 101;
}

#sub-navigation-frame {
    position: relative;
    z-index: 100;
}

.sub-nav li a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--color-black);
    transform-origin: bottom left;
    transition: transform 0.25s ease-out;
    opacity: 0.9;
}

.sub-nav li a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.sub-nav li a.current:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.search {
    display: flex;
    padding: 0 .5rem;
}

.search a {
    margin: 0;
    padding: 0.3rem .5rem;
}

.section {
    padding: 3rem 0;
}

.display-none {
    display: none;
}

.margin-bottom-1rem-negative {
    margin-bottom: -1rem;
}

.grid {
    --columns: 12;
    --gutter: 0rem;
    display: grid;
    grid-gap: var(--gutter);
    grid-template-columns: 1fr;
}

.grid > .column {
    margin-bottom: var(--gutter);
}

@media screen and (min-width: 48rem) {
    .grid {
        grid-template-columns: repeat(12, 1fr);
    }

    .grid > .column {
        grid-column: span var(--columns);
    }
}

.autogrid {
    --gutter: 3rem;
    --min: 10rem;
    display: grid;
    grid-gap: var(--gutter);
    grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
    grid-auto-flow: dense;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: 800;
    line-height: inherit;
}

.text {
    line-height: 1.75em;
}

.text a {
    text-decoration: underline;
    font-weight: 400;
}

.text :first-child {
    margin-top: 0;
}

.text :last-child {
    margin-bottom: 0;
}

.text p,
.text ul,
.text ol {
    margin-bottom: 1.5rem;
    line-height: 1.75rem;
    font-weight: 200;
}

.text ul,
.text ol {
    margin-left: 2rem;
    margin-top: 1rem;
}

.text ul p,
.text ol p {
    margin-bottom: 0;
}

.text ul > li {
    list-style: disc;
}

.text ol > li {
    list-style: decimal;
}

.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
    margin-bottom: 0;
}

/*.text h1,
.intro {
  font-size: 2rem;
  margin-bottom: 3rem;
  line-height: 1.25em;
}
.text h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.text h3 {
  font-weight: 600;
}*/
.text .codeblock {
    display: grid;
}

.text code {
    font-family: var(--font-family-mono);
    font-size: 1em;
    background: var(--color-light);
    padding: 0 .5rem;
    display: inline-block;
    color: var(--color-black);
}

.text pre {
    margin: 3rem 0;
    background: var(--color-black);
    color: var(--color-white);
    padding: 1.5rem;
    overflow-x: scroll;
    overflow-y: hidden;
    line-height: 1.5rem;
}

.text pre code {
    padding: 0;
    background: none;
    color: inherit;
}

.text hr {
    margin: 3rem 0;
}

.text dt {
    font-weight: 600;
}

.text blockquote {
    font-size: 1.25rem;
    line-height: 1.325em;
    border-left: 2px solid var(--color-black);
    padding-left: 1rem;
    margin: 3rem 0;
}

.text blockquote footer {
    font-size: 1rem;
    font-style: italic;
}

.text figure {
    margin: 1.5rem 0;
    line-height: 0;
}

.text figcaption {
    padding-top: .75rem;
    color: var(--color-text-grey);
}


.align-center {
    text-align: center;
}

.text-align-center {
    text-align: center;
}

.text-align-right {
    text-align: right;
}


.cta {
    background: var(--color-black);
    color: var(--color-white);
    display: inline-flex;
    justify-content: center;
    padding: .75rem 1.5rem;
    border: 4px solid var(--color-white);
    outline: 2px solid var(--color-black);
}

.box {
    background: var(--color-light);
    padding: 1.5rem;
    border: 4px solid var(--color-white);
    outline: 2px solid var(--color-light);
}

.video,
.img {
    position: relative;
    display: block;
    --w: 1;
    --h: 1;
    padding-bottom: calc(100% / var(--w) * var(--h));
    background: var(--color-black);
}

.img img,
.video iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.img[data-contain] img {
    object-fit: contain;
}

.img-caption,
.video-caption {
    padding-top: .75rem;
    line-height: 1.5em;
}

.footer {
    line-height: 1.75em;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background: #423D39;
    color: #F8F6F2;
    z-index: 10;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    width: 100%;
    margin-bottom: 3rem;
}

@media (min-width: 600px) {
    .footer-column {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .footer-column {
        width: 25%;
    }
}

.footer-bottom {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

@media (min-width: 600px) {
    .footer-bottom {
        flex-flow: row;
        align-items: flex-start;
    }
}

.footer-social {
    padding-left: 1rem;
}

@media (min-width: 600px) {
    .footer-social {
        padding-left: 0;
    }
}

/*
.footer h2 {
  font-weight: 600;
  margin-bottom: .75rem;
}
.footer ul,
.footer p {
  color: var(--color-text-light);
}
.footer p {
  max-width: 15rem;
}*/
.footer a:hover {
    color: var(--color-text-light);
}


.map {
    --w: 2;
    --h: 1;
    padding-bottom: calc(100% / var(--w) * var(--h));
    position: relative;
    overflow: hidden;
    background: var(--color-black);
}

.map iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.margin-s {
    margin-bottom: .75rem;
}

.margin-m {
    margin-bottom: 1.5rem;
}

.margin-l {
    margin-bottom: 3rem;
}

.margin-xl {
    margin-bottom: 4.5rem;
}

.margin-xxl {
    margin-bottom: 6rem;
}


.pagination {
    display: flex;
    padding-top: 6rem;
}

.pagination > span {
    color: var(--color-text-grey);
}

.pagination > * {
    padding: .5rem;
    width: 3rem;
    text-align: center;
    border: 2px solid currentColor;
    margin-right: 1.5rem;
}

.pagination > a:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}


.h1, h1 {
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: 1px
}

@media (min-width: 668px) {
    .h1, h1 {
        font-size: 37px;
        line-height: 1.3;
        letter-spacing: 1.2px
    }
}

@media (min-width: 1024px) {
    .h1, h1 {
        font-size: 43px;
        line-height: 1.3;
        letter-spacing: 1.4px
    }
}

@media (min-width: 1440px) {
    .h1, h1 {
        font-size: 49px;
        line-height: 1.3;
        letter-spacing: 1.5px
    }
}

@media (min-width: 1920px) {
    .h1, h1 {
        font-size: 59px;
        line-height: 1.3;
        letter-spacing: 1.9px
    }
}

.h2, h2 {
    font-size: 26px;
    line-height: 1.4;
    letter-spacing: 0.9px
}

@media (min-width: 668px) {
    .h2, h2 {
        font-size: 31px;
        line-height: 1.3;
        letter-spacing: 1px
    }
}

@media (min-width: 1024px) {
    .h2, h2 {
        font-size: 35px;
        line-height: 1.3;
        letter-spacing: 1.1px
    }
}

@media (min-width: 1440px) {
    .h2, h2 {
        font-size: 39px;
        line-height: 1.3;
        letter-spacing: 1.2px
    }
}

@media (min-width: 1920px) {
    .h2, h2 {
        font-size: 46px;
        line-height: 1.3;
        letter-spacing: 1.4px
    }
}

.h3, h3 {
    font-size: 23px;
    line-height: 1.4;
    letter-spacing: 0.8px
}

@media (min-width: 668px) {
    .h3, h3 {
        font-size: 26px;
        letter-spacing: 0.9px
    }
}

@media (min-width: 1024px) {
    .h3, h3 {
        font-size: 29px;
        letter-spacing: 0.9px
    }
}

@media (min-width: 1440px) {
    .h3, h3 {
        font-size: 31px;
        letter-spacing: 1px
    }
}

@media (min-width: 1920px) {
    .h3, h3 {
        font-size: 35px;
        letter-spacing: 1.1px
    }
}

.h4, h4 {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.7px
}

@media (min-width: 668px) {
    .h4, h4 {
        font-size: 22px;
        letter-spacing: 0.7px
    }
}

@media (min-width: 1024px) {
    .h4, h4 {
        font-size: 24px;
        letter-spacing: 0.7px
    }
}

@media (min-width: 1440px) {
    .h4, h4 {
        font-size: 25px;
        letter-spacing: 0.8px
    }
}

@media (min-width: 1920px) {
    .h4, h4 {
        font-size: 27px;
        letter-spacing: 0.8px
    }
}

.h5, h5 {
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: 0.6px
}

@media (min-width: 668px) {
    .h5, h5 {
        font-size: 18px;
        letter-spacing: 0.6px
    }
}

@media (min-width: 1024px) {
    .h5, h5 {
        font-size: 20px;
        letter-spacing: 0.6px
    }
}

@media (min-width: 1440px) {
    .h5, h5 {
        font-size: 20px;
        letter-spacing: 0.6px
    }
}

@media (min-width: 1920px) {
    .h5, h5 {
        font-size: 21px;
        letter-spacing: 0.7px
    }
}

.h5, h5-regular {
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: 0.6px
}

@media (min-width: 668px) {
    .h5, h5-regular {
        font-size: 18px;
        letter-spacing: 0.6px
    }
}

@media (min-width: 1024px) {
    .h5, h5-regular {
        font-size: 20px;
        letter-spacing: 0.6px
    }
}

@media (min-width: 1440px) {
    .h5, h5-regular {
        font-size: 20px;
        letter-spacing: 0.6px
    }
}

@media (min-width: 1920px) {
    .h5, h5-regular {
        font-size: 21px;
        letter-spacing: 0.7px
    }
}

.center {
    text-align: center !important;
}

.left {
    text-align: left !important;
}

.right {
    text-align: right !important;
}


.post-excerpt a {
    text-decoration: none !important;
}

hr {
    border: none;
}

.hr-line {
    border-top: 1px solid #A6A9AC;
}

.hr-s {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.hr-m {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.hr-l {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.hr-xl {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

.hr-xxl {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

ul.footer-social {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul.footer-social li {
    float: left;
}

ul.footer-social li a {
    display: block;
    color: white;
    text-align: center;
    padding-right: 1rem;
    text-decoration: none;
}


.body {
    position: relative;
    box-sizing: border-box;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
    background-color: var(--color-white);
}

.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--spacing);
    padding-left: var(--spacing);
}

.container-no-spacing > .grid > .column {
    margin-bottom: 0;
}


.container-fluid.container-fluid-flex-vertical-center .grid .column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container-fluid.container-fluid-flex-vertical-bottom .grid .column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}


@media (min-width: 48rem) {
    .container {
        max-width: 46rem;
    }
}

@media (min-width: 64rem) {
    .container {
        max-width: 62rem;
    }
}

@media (min-width: 88rem) {
    .container {
        max-width: 84rem;
    }
}

.container-fullwidth {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

.container-fullwidth .container {
    max-width: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

.site-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-header__start {
    display: flex;
    align-items: center;
}

.site-header__start > * + * {
    margin-left: 0rem;
}

@media (max-width: 679px) {
    .site-header__end {
        flex: 0 0 100%;
        order: 2;
        margin-top: 1rem;
    }
}

.nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: Max(220px, 20%);
    bottom: 0;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    display: block;
}

.sub {
    display: none;
}

.sub-nav {
    display: none;
    flex-wrap: wrap;
    font-size: 1rem;
}

.sub-nav li:not(:last-child) {
    margin-right: 1.5rem;
}

@media (min-width: 1024px) {
    .sub-nav {
        display: flex;
    }

    .sub {
        display: block;
    }
}

.sub {
    position: relative;
    z-index: 99;
}

.panel {
    position: fixed;
    bottom: 3px;
    left: 0px;
    z-index: 4000;
    background: transparent;
    width: 100vw;
    height: auto;
    /*display:none;*/
}

.panel nav {
    margin: 0 auto;
    width: max-content;
}

small {
    font-size: 0.9rem;
    white-space: nowrap;
}

.footer ul,
.footer li {
    list-style: none;
}

.damo-flag {
    border-top-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    display: inline-block;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.25rem;
    padding-bottom: 0.2rem;
    background: #C0A468;
    text-align: center;
    color: #fff;
}

.mobile-nav {
    position: fixed;
    top: 84px;
    right: 0;
    width: 100vw;
    height: calc(100vh - 84px);
    background: #f5ede5;
    z-index: 100000;
    overflow-y: scroll;
    padding-top: 1rem;
    padding-bottom: 3rem;
    box-sizing: border-box;
}

.mobile-wrapper {
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 2rem;
}

.mobile-nav .language-switch {

    border-top: 1px solid #d2cfcf;

    margin-top: 1rem;

    padding: 1.5rem 0.5rem;

}

.mobile-nav .language-switch a {

    display: inline-block;

    margin-right: 1rem;

}

.mobile-children {
    font-size: 0.9em;
}

.mobile-children li .burger-label svg {
    height: 1.4em;
}

.mobile-children li .burger-label {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
}

.mobile-nav .current {

    text-decoration: underline;
    text-decoration-line: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;

}

/* to the body element */
.noscroll {
    overflow: hidden;
}

.open-overlay {
    font-size: 1.8rem;
    position: relative;
    white-space: nowrap;
}

.close-overlay {
    font-size: 1.8rem;
    white-space: nowrap;
}

[aria-hidden="true"] {
    display: none;
}

[aria-hidden="false"] {
    display: block;
}

.mobile-button-text {
    font-size: 1.2rem;
    margin-left: 1rem;
    width: 25rem;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1rem;
}

@media (max-width: 800px) {
    .mobile-button-text {
        width: 20rem;
    }
}

@media (max-width: 600px) {
    .mobile-button-text {
        width: 15rem;
    }
}

@media (max-width: 480px) {
    .mobile-button-text {
        width: 10rem;
    }
}

.mobile-button-icon {
    display: inline-block;
    width: 2rem;
    line-height: 1.4rem;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.mobile-nav .close {
    font-size: 2rem;
    text-align: right;
}

.mobile-nav li {
    display: block;
    padding-left: 1rem;
}

.mobile-nav .depth-1 {
    padding-left: 0.5rem;
}

@media (min-width: 48rem) {
    .mobile-nav .depth-1 {
        padding-left: 0;
    }
}

.mobile-nav li a {
    width: 100%;
    display: block;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.mobile-nav li.depth-1 a {
    font-size: 1.15rem;
    font-weight: 400;
}

.mobile-nav li.depth-2 a {
    font-size: 1rem;
    font-weight: 300;
}

.mobile-nav li.depth-3 a {
    font-size: 0.9rem;
    font-weight: 300;
}

.flex-container {
    display: flex;
    flex-direction: row;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
    .flex-container {
        flex-direction: column;
    }
}


/* Responsive layout - makes a one column layout instead of a two-column layout */

ul {
    list-style-type: none;
}

.menu li {
    font-size: 1rem;
    white-space: nowrap;
}

.menu .item {
    line-height: 2em;
}

/* Mobile menu */
.menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.toggle {
    margin-top: 1rem;
    width: 24px;
}

.item {
    display: block;
    width: auto;
    transition: opacity 200ms ease-in-out;
}

.item.active {
    display: block;
}

.menu-wrapper {
    display: flex;
}

.menu {
    display: none;
}

.lang-item {
    margin-left: 1.5rem;
}

.lang-item ~ .lang-item {
    margin-left: 0;
}

.logo svg {

    display: block;

    height: 2rem;

}

/* Tablet menu */


/* Desktop menu */
@media (min-width: 1024px) {
    .menu {
        display: flex;
    }

    .open-overlay {
        display: none;
    }

    .mobile-nav {
        display: none;
    }

    .item {
        order: 1;
    }

    .button {
        order: 2;
    }

    .menu li {
        padding: 15px 10px;
        font-size: 1.15rem;
    }

    .menu {
        justify-content: flex-end;
    }

    .logo svg {
        padding: 0.25rem 0 0 0;
        height: 2.25rem;
        transform: scale(1.3);
        margin-left: 1.2rem;
    }
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
.menu li a {
    position: relative;
    padding-bottom: 0.25rem;
    color: var(--color-black);
}

.menu li a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--color-black);
    transform-origin: bottom left;
    transition: transform 0.25s ease-out;
    opacity: 0.9;
}

.menu li a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.menu li a.current:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.menu .item a:hover {
    cursor: pointer;
}

.language-display {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/**
  Dropdown Menu L1
 */
.menu-dropdown {
    position: absolute;
    display: grid;
    grid-template-rows: 0fr;
    font-weight: 250;
    /*transition: 500ms ease-in-out; */
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.3);
    visibility: hidden;
    line-height: 1.2em;
}

/*
.menu-dropdown .menu-link-anchor::before {
  content: "# ";
}
*/

.item:hover > .menu-dropdown {
    grid-template-rows: 1fr;
    visibility: visible;
}

.sub-nav-item:hover > .menu-dropdown {
    grid-template-rows: 1fr;
    visibility: visible;
}

.menu-dropdown .menu-dropdown-ul {
    background: var(--color-background);
    list-style: none;
    margin: 0;
    min-height: 0;
    padding-bottom: 0.75em;
}

.menu-dropdown .menu-dropdown-ul .menu-dropdown-item {
    list-style: none;
    padding: 0.75em 0.75em 0;
    gap: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 160px;
    font-size: 0.9em;
    position: relative;
    margin: 0;
}

.menu-dropdown .menu-dropdown-ul .menu-dropdown-item a {
    white-space: normal;
    flex-grow: 0;
}

.menu-dropdown .menu-dropdown-ul .menu-dropdown-item svg {
    height: 1rem;
    flex-shrink: 0;
}


/**
  Dropdown Menu L2
 */
.submenu-dropdown {
    position: absolute;
    display: grid;
    right: 0;
    top: 0;
    transform: translateX(100%);
    grid-template-rows: 0fr;
    max-width: 0;
    font-weight: 250;
    overflow: hidden;
    /* transition: 200ms ease-in-out; */
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.3);
    visibility: hidden;
}

.menu-dropdown-item:hover > .submenu-dropdown {
    grid-template-rows: 1fr;
    visibility: visible;
    max-width: 220px;
    min-width: 120px;
}

.submenu-dropdown .submenu-dropdown-ul {
    background: var(--color-background);
    list-style: none;
    margin: 0;
    min-height: 0;
    padding-bottom: 0.75em;
}

.submenu-dropdown .submenu-dropdown-ul .submenu-dropdown-item {
    max-width: 160px;
    list-style: none;
    padding: 0.75em 0.75em 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 0.9em;
    position: relative;
    margin: 0;
}

.submenu-dropdown .submenu-dropdown-ul .submenu-dropdown-item a {
    flex-grow: 0;
    white-space: normal;
}


.language-display {
    padding-left: 1.7rem;
}

.language-display svg {
    position: absolute;
    margin-left: -1.7rem;
    margin-top: -0.1rem;
    width: 1.6rem;
    height: 1.6rem;
}

.mobile-language-select {
    width: 0;
    height: 0;
    margin-left: 100%;
    position: relative;
    white-space: nowrap;
    top: 0;
}

.mobile-language-select .display {
    position: absolute;
    right: 0.5rem;
    top: 0;
    padding: 0.5rem 0;
    cursor: pointer;
}

.mobile-language-select .display .menu-dropdown {
    display: none;
    right: 0;
}

.mobile-language-select .display:hover > .menu-dropdown {
    display: block;
}

.logo-img {
    height: 48px;
}


.sort {
    display: flex;
    justify-content: space-between;
}

.header {
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 1rem 0.5rem;
    background: var(--color-light);
    transition: all 0.2s ease-in-out;
}


.shrink {
    box-shadow: 0 2px 0 rgb(0 0 0 / 10%);
}


.anchor::before {
    content: '';
    display: block;
    visibility: hidden;
}


.collection-access {
    text-align: center;
}

.collection-password {
    box-sizing: border-box;
    width: 100%;
    max-width: 480px;
    height: 32px;
    padding: 0 0.5rem;
    margin-bottom: 2em;
}

.locked-password-label {
    margin-top: 2em;
    margin-bottom: 2em;
    display: block;
}

.collection-enter {
    white-space: nowrap;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    padding: 0.5rem;
    border: 1px solid #000;
    border-radius: 0.25rem;
    background: #fff;
}

.collection-enter:hover {
    background: #EDD38E;
}

.collection-password-error {
    color: #C10023;
    margin: 1rem;
}

.right-to-left {
    direction: rtl;
}

.right-to-left .column {
    direction: ltr;
}

/**
SWIPEABLE
 */
.swipeable {
}
.swipeable-view {
    overflow: hidden;
    position: relative;
    cursor: grab;
}
.swipeable-view[data-dragging=true] {
    cursor: grabbing !important;
}
.swipeable-view[data-dragging=true] a {
    cursor: grabbing !important;
}
.swipeable-track {
    z-index: 1;
    position: relative;
    display: grid;
    grid-template-columns: repeat(100, 340px);
    width: 34000px;
}
.swipeable-item {
    flex-grow: 0;
    flex-shrink: 0;
    padding: 0 1rem;
    box-sizing: border-box;
    height: 100%;
}
.swipeable-item-v-stretch {
    height: 100%;
}
.swipeable-scrollbar {
    width: calc(100% - 32px);
    position: relative;
    height: 8px;
    overflow: visible;
    margin: 0 16px;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
}
.swipeable-scrollbar-thumb {
    position: absolute;
    background: #423D39;
    border-radius: 2px;
    height: 8px;
}
.swipeable-scrollbar-thumb:hover {
    background: #534d48;
}


/** Authors Page **/
.inline-svg-authors {
    display: inline;
    padding-right: 0.1em;
}

.inline-svg-authors svg {
    display: inline;
    line-height: 1;
    width: 1.2em;
    height: 1.2em;
    vertical-align: baseline;
}

.blog-author-background {
    padding-top: 2rem;
}

.blog-author-background:nth-child(odd) {
    margin: 0 calc(-2 * var(--spacing));
    padding: 0 calc(2 * var(--spacing));
    padding-top: 2rem;
}

/**
Visually Hidden CSS for accessibility purposes
 */
.visually-hidden {
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
}