body,
html {
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Arimo', sans-serif;
}

.close-icon {
    position: absolute;
    right: 4rem;
    top: 4rem;
    cursor: pointer;
    z-index: 9;
}

.close-icon img {
    width: 18px !important;
    filter: brightness(0);
}

.close-icon img:hover {
    filter: brightness(1);
}


.home-bg {
    background-image: url(../images/mask-group-7-1@1x.png);
    background-position: 50% 50%;
    background-size: cover;
    height: 105vh;
    min-height: 100vh;
    position: relative;
}

main {
    z-index: 2;
    position: relative;
    height: 100%;
    -webkit-transition: transform .7s ease-in-out;
    -moz-transition: transform .7s ease-in-out;
    -ms-transition: transform .7s ease-in-out;
    -o-transition: transform .7s ease-in-out;
    transition: transform .7s ease-in-out;
    overflow: hidden;
}

.sidebar {
    height: 100%;
    width: 400px;
    position: fixed;
    top: 0;
    z-index: 1;
    right: 0;
    transition: transform .7s ease-in-out;
}

.sidebar-color {
    background-color: #fff;
    opacity: 0.9;
    animation: 3s slide-left;
}

.bar {
    display: block;
    height: 2.5px;
    width: 34px;
    background-color: #fff;
    margin: 6px auto;
}

nav .button:hover .bar {
    background-color: #e8c195;
}

.button {
    cursor: pointer;
    display: inline-block;
    width: auto;
    margin: 0 auto;
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
}

.nav-right {
    position: fixed;
    right: 80px;
    top: 60px;
}

.nav-right.visible-xs {
    z-index: 3;
}

.hidden-xs {
    display: none;
}

.middle {
    margin: 0 auto;
}

/* .bar {
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
} */

.nav-right.visible-xs .active .bar {
    background-color: #000;
    /* -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease; */
}

.button.active .bar {
    height: 3px;
    width: 35px;
    background-color: var(--black);
    margin: 12px auto;
    position: relative;
    right: -26rem;
}

.button.active .top {
    -webkit-transform: translateY(15px) rotateZ(45deg);
    -moz-transform: translateY(15px) rotateZ(45deg);
    -ms-transform: translateY(15px) rotateZ(45deg);
    -o-transform: translateY(15px) rotateZ(45deg);
    transform: translateY(15px) rotateZ(45deg);

}

.button.active .bottom {
    -webkit-transform: translateY(-15px) rotateZ(-45deg);
    -moz-transform: translateY(-15px) rotateZ(-45deg);
    -ms-transform: translateY(-15px) rotateZ(-45deg);
    -o-transform: translateY(-15px) rotateZ(-45deg);
    transform: translateY(-15px) rotateZ(-45deg);
}

.button.active .middle {
    width: 0;
}

.move-to-left {
    -webkit-transform: translateX(-400px);
    -moz-transform: translateX(-400px);
    -ms-transform: translateX(-400px);
    -o-transform: translateX(-400px);
    transform: translateX(-400px);
}

.sidebar-list {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 4rem;
}

.sidebar-item {
    margin: 15px 0;
    opacity: 0;
    /* -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px); */
}

/* .sidebar-item:first-child {
    -webkit-transition: all .7s .2s ease-in-out;
    -moz-transition: all .7s .2s ease-in-out;
    -ms-transition: all .7s .2s ease-in-out;
    -o-transition: all .7s .2s ease-in-out;
    transition: all .7s .2s ease-in-out;
} */

/* .sidebar-item:nth-child(2) {
    -webkit-transition: all .7s .4s ease-in-out;
    -moz-transition: all .7s .4s ease-in-out;
    -ms-transition: all .7s .4s ease-in-out;
    -o-transition: all .7s .4s ease-in-out;
    transition: all .7s .4s ease-in-out;
}

.sidebar-item:nth-child(3) {
    -webkit-transition: all .7s .6s ease-in-out;
    -moz-transition: all .7s .6s ease-in-out;
    -ms-transition: all .7s .6s ease-in-out;
    -o-transition: all .7s .6s ease-in-out;
    transition: all .7s .6s ease-in-out;
}

.sidebar-item:last-child {
    -webkit-transition: all .7s .8s ease-in-out;
    -moz-transition: all .7s .8s ease-in-out;
    -ms-transition: all .7s .8s ease-in-out;
    -o-transition: all .7s .8s ease-in-out;
    transition: all .7s .6s ease-in-out;
} */

.sidebar-color {
    --visible: 0px;
    --hidden: 100px;
    animation: slide-right-animation 0.5s ease-in-out;
}

/* The slide right effect */
@keyframes slide-right-animation {
    0% {
        transform: translateX(var(--hidden));
        opacity: 0;
    }

    100% {
        transform: translateX(var(--visible));
        opacity: 1;
    }
}

.sidebar-item.active {
    opacity: 1;
    /* -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); */
}

.sidebar-anchor {
    text-decoration: none;
    font-size: 1.8em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 7px;
    color: var(--black);
    font-family: var(--font-family-glacialindifference-regular);
    font-size: var(--font-size-l);
    font-style: normal;
    font-weight: 400;
    flex: 1;
    letter-spacing: 2.92px;
    line-height: 45px;
    margin-bottom: -6.5px;
    margin-right: -2px;
    margin-top: 4.5px;
    text-align: left;
    white-space: nowrap;
}

.sidebar-anchor:hover {
    color: #e8c195;
}

.sidebar-anchor:before {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #FFF;
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
}

.sidebar-anchor:hover:before {
    width: 100%;
}

.ua {
    position: absolute;
    bottom: 20px;
    left: 30px;
}

@media (min-width: 480px) {
    .nav-list {
        display: block;
    }
}

@media (min-width: 320px) {
    .nav-right {
        position: absolute;
    }

    .hidden-xs {
        display: block;
    }

    .visible-xs {
        display: none;
    }
}

.home-content {
    position: relative;
    top: 40%;
}

.home-logo {
    display: flex;
    justify-content: center;
}

.home-logo img {
    width: 490px;
}

.home-center {
    display: flex;
    justify-content: center;
}

.home-btn {
    backdrop-filter: blur(30px) brightness(115%);
    border-radius: 29px;
    height: 58px;
    width: 632px;
    color: var(--black);
    font-family: var(--font-family-glacialindifference-bold);
    font-size: var(--font-size-l);
    font-weight: 700;
    letter-spacing: 4.50px;
    line-height: 56px;
    text-align: center;
    white-space: nowrap;
    margin: 50px 0;
}

/* Responsive */

@media (min-width: 320px) and (max-width: 500px) {


    .home-logo img {
        width: 85%;
    }

    .home-btn {
        width: 90%;
        font-size: 10px;
        height: 51px;
        line-height: 51px;
    }

    .home-bg {
        height: 100vh;
    }

    .nav-right {
        right: 35px;
        top: 40px;
    }

    .sidebar {
        width: 300px;
    }

    .sidebar-anchor {
        font-size: 2rem;
    }
}

.slide-in {
    animation: slide-in 0.5s ease forwards;
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
        visibility: visible;
    }

    to {
        transform: translateX(0%);
    }
}