body{
    position: relative;
    background-color: #0E0E0E !important;
    background-size: cover;
}

.container-desktop{
    display: block;
}
.container-mobile{
    display: none;
}
@media only screen and (max-width: 550px) {
    .container-desktop{
        display: none;
    }
    .container-mobile{
        display: block;
    }
}


.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.fix{
    position: fixed;
}
.index-1{
    z-index: -1;
}
.index5{
    z-index: 5;
}
.center{
    text-align: center;
}
.right{
    text-align: right;
}
.top10{
    margin-top: 10%;
}
.top5{
    margin-top: 5%;
}
.top2{
    margin-top: 2%;
}


.footer-nav-bar {
    position: fixed;
    z-index: 10;
    bottom: 0;
}
.footer-nav-bar .icon-nav-bar-container {
    position: relative;
    z-index: 2;
    background-image: url('../Image/bg13.webp');
    background-position: center;
    padding: 0.5rem 0;
}

.menu{
    width: 80%;
    height: 100%;
    background-image: url('../Image/bg14.webp');
    position: fixed;
    top: 0;
    right: -500px;
    z-index: 50;
    transition: right.3s;
}

.menu--open{
    right:0;
}

.cursor{
    cursor:pointer;
}

.linkunderline{
    text-decoration: none;
}