/*********************************************/
/* Small screen nav
/*********************************************/
.small-screen-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: 500ms ease-out;
}

.show-nav {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

.burger-menu-button {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
}

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 3px;
    background-color: var(--burgerColor);
    margin: 8px 0;
  }
.bar1, .bar3 {
    transition: 0.4s;
}

.close-burger .bar1 {
-webkit-transform: rotate(-45deg) translate(-0.5em, 0.5em);
transform: rotate(-45deg) translate(-8px, 7px);
background-color: var(--burgerColor);
}

.close-burger .bar2 {opacity: 0;}

.close-burger .bar3 {
-webkit-transform: rotate(45deg) translate(-1em, -1em);
transform: rotate(45deg) translate(-8px, -7px);
background-color: var(--burgerColor);
}

.small-screen-nav a {
    text-decoration: none;
    display: block;
    width: 100%;
    /* margin-left: auto;
    margin-right: auto; */
    font-size: 16px;
    line-height: 60px;
    color: black;
    background-color: white;
    cursor: pointer;
    /* border-radius: 20px; */
    border-bottom: 1px solid var(--main1);
    padding-left: 20px;
    padding-right: 20px;
    /* box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2); */
    /* margin-bottom: 5px; */
}

.small-screen-nav > a:last-child {
    line-height: 40px;
    background-image: linear-gradient(to bottom right, var(--main1), var(--main2));
    border-bottom: 6px solid white;
}

.small-screen-nav > a:last-child:hover {
    box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

/* .small-screen-nav a:hover {
    box-shadow: inset 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
} */

.expander {
}

.expander-content {
    display: flex;
    flex-direction: column;
    height: auto;
}

.subtracted {
    display: none;
    height: 0;
}

@media screen and (min-width: 1000px){
    .burger-menu-button {
        display: none;
    }
    .small-screen-nav {
        display: none;
    }
}

/*********************************************/
/* Big screen nav
/*********************************************/
.nav-container {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: stretch;
    padding-left: 50px;
}

.nav-container a {
    text-decoration: none;
    color: var(--burgerColor);;
    line-height: 60px;
    padding: 0 1em 0 1em;
}

.nav-container a:hover {
    /* font-weight: bold; */
    color: var(--hoverOnMain);
}

.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    /* background-image: linear-gradient(to bottom right, #7DF7FF, #7C89FF); */
    background-color: white;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    border-bottom: 1px solid var(--main1);
}

.dropdown-content a:hover {
    color: var(--hoverOnMain);
}

.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-header {
    /* font-weight: bold; */
    color: var(--hoverOnMain);
}

@media screen and (max-width: 999px){
    .nav-container {
        display: none;
    }
}

/*********************************************/
/* Arrows
/*********************************************/
.arrow {
    border: solid var(--burgerColor);;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
  }
.arrow-white {
    border: solid var(--burgerColor);;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
  }

  .right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  
  .left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
  }
  
  .up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  
  .down {
    transform: rotate(45deg) translateY(-0.3em);
    -webkit-transform: rotate(45deg) translateY(-0.3em);
  }