@font-face {
    font-family: 'Plain Thin';
    font-weight: 100;
    font-display: swap;
    src: url('fonts/Plain-Thin.woff2') format('woff2'), url('fonts/Plain-Thin.woff') format('woff');
}

body {
    font-family: 'Plain Thin';
    font-weight: 100;
    font-size: 22px;
}

a {
    text-decoration: none;
    color: #666;
}

a:hover {
    color: #000;
}

.navbar-left,
.navbar-right {
    position: fixed;
    top: 0;
    z-index: 99;
}

.navbar-left {
    left: 0;
}

.navbar-right {
    right: 0;
}

.logo {
    float: left;
    top: 20px;
    left: 30px;
    position: fixed;
    overflow: hidden;
    padding: 3px 0;
}

.logo img {
    width: 28px;
    transition: all 0.5s;
}

.logo div {
    display: inline-block;
    overflow: hidden;
    bottom: -20px;
    left: -4px;
    position: relative;
}

.logo span {
    margin-left: -100%;
    transition: all 1s;
    position: relative;
    display: inline-block;
    opacity: 0;
}

.logo:hover img {
    transform: rotate(180deg);
}

.logo:hover span {
    margin: 0;
    opacity: 1;
}

.menu-button {
    float: right;
    width: 50px;
    height: 50px;
    top: 28px;
    right: 16px;
    position: absolute;
}

#burger-wrapper {
    top: 0;
    right: 80px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    pointer-events: initial;
    z-index: 99;
}

#burger-wrapper #menu-burger {
    width: 16px;
    height: 22px;
    position: relative;
    margin: 0 auto;
    pointer-events: none;
}

#burger-wrapper #menu-burger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    opacity: 1;
    right: 0;
    background-color: #000;
    transform: rotate(0deg);
    transition: background-color 0.05s ease-in-out, transform 0.2s ease-in-out, top 0.2s ease-in-out;
}

#burger-wrapper #menu-burger span:nth-child(1) {
    top: 7px;
}

#burger-wrapper #menu-burger span:nth-child(2) {
    top: 15px;
}

#burger-wrapper #menu-burger span:nth-child(3) {
    display: none;
}

#burger-wrapper #menu-burger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

#burger-wrapper #menu-burger.open span:nth-child(2) {
    transform: rotate(-45deg);
    top: 10px;
}

.menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    align-items: center;
    background-color: rgb(248, 239, 249);
}

.menu {
    overflow: scroll;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.menu-item {
    overflow: hidden;
    /* display: flex; */
    /* align-items: center; */
    /* width: 100vw; */
    /* justify-content: center; */
    /* height: 80px; */
}

.menu-item a {
    font-family: "Plain Thin";
    font-weight: 500;
    font-size: 52px;
    line-height: 1em;
    text-decoration: none;
    color: #000;
}

.menu-item a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100vw;
}

.menu-item a:hover,
.menu-container .info a:hover {
    transition: transform 0.1s ease-out 0s;
    transform: skewX(-10deg);
}

.menu-item div {
    transform: translateY(100%);
}

.menu-container .info {
    margin-top: 10vh;
}

.menu-container .info a {
    font-family: "Plain Thin";
    font-weight: 500;
    color: #000;
    font-size: 20.8px;
    text-decoration: none;
}

.slideup {
    text-align: center;
}

.slideup a {
    display: inline-block;
}

.appointment {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translatey(-245%) rotate(270deg);
    transform-origin: bottom right;
}

.appointment a {
    /* position: fixed; */
    /* right: 0; */
    /* transform-origin: bottom right; */
    /* transform: rotate(270deg) translateX(50%); */
    /* top: 50%; */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 1;
}

@media only screen and (max-width: 960px){

    .logo {
        top: 0px;
        left: 10px;
    }

    .logo img {
        width: 20px;
    }

    .menu-button {
        top: 12px;
        right: 0px;
    }

    .menu-item a {
        font-size: 36px;
        padding: 5px 15px;
    }

    .appointment {
        position: fixed;
        bottom: 0px;
        top: unset;
        z-index: 1;
        width: 100vw;
        text-align: center;
        transform: none;
    }

    .appointment a {
        line-height: 35px;
        padding: 0 15px;
    }
}