@font-face {
    font-family: 'Ysabeau';
    src: url('../fonts/Ysabeau-VariableFont_wght.ttf') format('truetype');
    font-weight: 1 1000;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ysabeau';
    src: url('../fonts/Ysabeau-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 1 1000;
    font-style: italic;
    font-display: swap;
}

body {
    font-family: "Ysabeau", sans-serif;
    display: flex;
    flex-direction: column;
}

ul {
    margin: 0;
    padding: 20px;
}

p {
    margin: 0;
}

html, body {
    margin: 0;
}

#layout-header {
    position: sticky;
    top: 0;
    z-index: 3;
}

#layout-content {
    flex: 1;
}

a {
    color: #000;
    text-decoration: unset;
}

nav {
    height: 99px;
    background-color: #fff;
}

nav .nav {
    font-style: italic;
    font-size: 26px;
    color: #747474;
    text-decoration: unset;
}

nav .lang-switch a {
    color: #747474;
    display: block;
}

nav .lang-switch a:hover,
nav .lang-switch a.active {
    color: #E74B3E;
}

nav .nav.active,
nav .nav:hover {
    color: #E74B3E;
}

.stripe-loading-indicator {
    display: none !important;
}

nav img {
    height: 100%;
}

.flex {
    display: flex;
}

.flex-gap-50 {
    gap: 50px;
}

.flex-gap-5 {
    gap: 5px;
}

.flex-gap-40 {
    gap: 40px;
}

.flex-gap-20 {
    gap: 20px;
}

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

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

.max-height {
    height: 100%;
}

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

.flex-align-center {
    align-items: center;
}

.flex-align-end {
    align-items: end;
}

.content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

#footer {
    background-color: #4E4E4E;
    color: #FFEDE4;
    padding: 20px 0;
}

#footer .content {
    display: block;
}

#footer .content.mobile {
    display: none;
}

#footer a {
    color: #E74B3E;
}

#footer .footer-nav a {
    color: #FFEDE4;
}

._rel {
    position: relative;
}

h2 {
    margin: 0;
}

.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1000;
    display: none;
    flex: 0 0 30px;
}

.menu-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    left: 0;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.locale {
    margin-left: auto;
}

@media screen and (max-width: 1280px) {
    nav .nav {
        font-size: 21px;
    }
}

@media screen and (max-width: 1080px) {
    .menu-toggle {
        display: block;
    }

    .locale {
        margin-left: unset;
    }

    .nav-cont {
        justify-content: space-between;
    }

    nav .menu-items {
        width: 100%;
        position: absolute;
        flex-direction: column;
        top: 99px;
        left: 0;
        height: 0;
        overflow: hidden;
        background-color: #f2f2f2;
        z-index: 3;
        gap: 30px;
        box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, 0.25);
        transition: 500ms ease;
    }

    nav .nav {
        padding: 15px 0;
    }
}

@media screen and (max-width: 1024px) {
    #footer .content {
        display: none;
    }

    #footer .content.mobile {
        display: block;
    }

    #footer .nav-footer-item-mob {
        text-align: right;
    }
}
