:root {
    --cta-gradient: linear-gradient(
        270deg,
        rgba(171, 92, 49, 1) 0%,
        rgba(196, 130, 93, 1) 100%
    );
    --link-color: #ffffff;
    --link-hover-color: rgb(240, 221, 210);
    --gradient-position: 0 0%;
    --navbar-color: linear-gradient(
        349deg,
        rgba(110, 179, 242, 1) 0%,
        rgba(155, 206, 255, 1) 100%
    );
    --link-navbar-color: white;
    --html-background: rgba(237, 244, 252, 1);
    --scroll-color: #439ce3;
    --stand-out-color: #216daf;
}

.menu {
    height: 100px;
    max-height: 190px;
    background: rgb(206, 135, 95);

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.4s;

    z-index: 98;
}

#navigation {
    display: flex;
    align-items: center;

    margin-left: auto;
}

#navigation ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
}

#navigation li {
    display: table-cell;
    position: relative;
    padding: 10px 0;
    margin: 0 20px;
}

#navigation a {
    text-decoration: none;
    color: var(--link-color);
    font-size: 23px;
    text-decoration: none;
    transition: all 0.2s;
}

#navigation a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #fff;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

#navigation a:hover:after {
    width: 100%;
    left: 0;
}

#navigation-mobile {
    position: fixed;
    background: rgba(186, 109, 68, 0.911);
    z-index: 99;
    height: 0;
    width: 100%;
    left: 0;
    top: 0;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
}

#navigation-mobile ul {
    list-style: none;
}

#navigation-mobile li {
    padding: 2vh;
    text-align: center;
}

#navigation-mobile a {
    text-decoration: none;
    color: white;
    font-size: 40px;
}

#mobile-menu-button {
    cursor: pointer;
    border-radius: 100%;
    background: #ce875f;
    height: 50px;
    width: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 999;
    margin-left: auto;
}

.bar1,
.bar2,
.bar3 {
    width: 25px;
    height: 4px;
    background-color: rgb(255, 255, 255);
    margin: 6px 0;
    border-radius: 5px;
    transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-7px, 7px);
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-7px, -7px);
}

#logo {
    max-width: 80px;
    width: 8vw;
    min-width: 60px;
    transition: all 0.2s;
}

.big {
    max-width: 120px !important;
    width: 9vw !important;
    min-width: 80px !important;
    transition: all 0.2s;
}

#menu-content {
    display: flex;
    align-items: center;
    height: 100%;
}

@media only screen and (max-width: 1000px) {
    #navigation {
        display: none;
    }

    #mobile-menu-button {
        display: flex;
    }
}
