/*@font-face {*/
/*    font-family: 'swiss';*/
/*    src: url('../fonts/swiss-721-black.woff') format('woff');*/
/*    font-weight: 400;*/
/*    font-style: normal;*/
/*}*/

header {
    background-color: #f491ff;
    margin-bottom: 80px;
}

.custom-logo-link {
    display: flex;
}

.custom-logo-link img {
    object-fit: cover;
}

.navigation-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.main-navigation {
    width: fit-content;
}

.menu .menu-item {
    padding: 15px 0;
}

#menu-language-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: row wrap;
}

.menu .menu-item a {
    font-size: 16px;
    font-weight: 700;
    font-family: Helvetica, sans-serif;
    line-height: 1;
    transition: all 300ms ease;
    color: #000;
    text-decoration: none;
    display: block;
    margin: 0 10px;
}

.menu .menu-item:first-of-type a {
    margin-left: 0;
}

.menu .menu-item a:hover {
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .menu-toggle {
        width: 25px;
        height: 25px;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-content: center;
        align-items: center;
        background: none;
        border: 0;
        padding: 0;
    }

    .menu-toggle .line {
        height: 2px;
        background: #222;
        width: 25px;
        margin-bottom: 5px;
    }

    .main-navigation {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .main-navigation ul {
        display: block;
    }

    .main-navigation .menu .menu-item a {
        margin: 0;
    }
}