body{
    background-color: rgb(40,40,40);
    color:white;
    position: relative;
}

/*ANTI-SCROLL HORIZONTAL*/
html, body {
    max-width: 100%;
    overflow-x:hidden;
}

a{
    text-decoration: none;
    color: red;
}


nav > .row{
padding: 0;
}

.nav-button-div{
    width: 100%;


    /*CENTER*/
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.devecout-nav{
    text-align:center;
    margin: auto;
    font-weight: 600;
    font-size:large;
}

.nav-link{    
    transition: all 1s ease;

    color: white;
    font-weight: lighter;

    /*CENTER*/
    display: table;
}
.nav-link:hover{
    color: rgb(40,40,40);
    background-color: white;
    font-size:large;
    font-weight:bolder;
}

nav{
    height: 100%;
    margin-top: 0px;
    margin: auto;
}

header{
    position: sticky;
    z-index: 1;
}

.nav-row{
    min-height: 100px;
}


#nav-link-devecout{
    transition: all 1s ease;

    color: rgb(0,255,123);
    font-weight: xx-large;
    font-size: 2em;

    /*CENTER*/
    display: table;
}
#nav-link-devecout:hover{
    color: rgb(40,40,40);
    background-color: rgb(0,255,123);
    font-size:large;
    font-weight: bolder;
    font-size: 2em;

}

/*-----JS-----*/
 
#js-background{
    z-index: -1;
    position: fixed;
    top:0;
    left:0;
}

.js-cell{
    position:absolute;
    width: 35px;
    height: 35px;
    z-index: -1;
    transition: all 1.3s ease;
}

#hub-rule > a
{
    color: inherit;
    font-weight: bold;
    background-color: transparent;
    transition:all ease-in-out 0.3s;
}
#hub-rule > a:hover
{
    color:rgb(40,40,40);
    background-color: rgb(0,255,123);
    transition:all ease-in-out 0.3s;
    border-radius: 5px;
}


#hub-rule,#hub-rule-min{
    width: fit-content;
    margin-left: 8vw;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    font-size: larger;

    transition: all 1s ease;
}

.visibleHelp{
    color:white;
    background-color: rgba(0,0,0,0.3);
    transition: all 1s ease;
}

.invisibleHelp{
    color:rgba(0,0,0,0);
    background-color: rgba(0,0,0,0);
    transition: all 1s ease;
}
.invisibleHelp>*{
    visibility: hidden;
    color:rgba(0,0,0,0);
    background-color: rgba(0,0,0,0);
    transition: all 0.3s ease;
}

.contact-line-type{
    font-weight: 700;
}

#contact-title{
    margin: 50px;
    margin-left: 100px;
}

/*SCROLL BAR*/

body::-webkit-scrollbar {
    width: 20px;               
  }

  body::-webkit-scrollbar-thumb {
    background-color: rgb(0,255,123);    
    border-radius: 20px;
  }

  