@charset "utf-8";

.mobile_wrapper {
    height: 15vw;
    z-index: 999;
}

.navigation_mobile{
    width: 100%;
    z-index: 998;
    position: absolute;
}

.navigation_mobile p{
    font-size: 2em;
}

.breadcrumps {
    font-size: 2em;
    float: left;
}

.navigation_mobile > ul {
    background-color: #75A9FF;
}

.navigation_mobile ul {
    margin: 0;
    padding: 0;
    display: none;
}

.navigation_mobile ul li {
    padding-left: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height:  6em;
    border-top: 2px solid lightgrey;
}

.navigation_mobile > ul > li > ul {
    background-color: #49699f;
}

.navigation_mobile ul li ul li a{
        color: white;
}

.dropdown{
    margin-top: 2.2em;
    float: right;
    height: 4em;
    width: 4em;
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(assets/plus.png);
}

.active {
    background-image: url(assets/minus.png) !important;
}

.burger_wrapper {
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.hamburger {
    padding-left: 10px;
    padding-right: 10px;
    width: 30vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
}

.line{
  width: 80%;
  height: 15%;
  background-color: black;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
    
    border-radius: 2em;
}

.hamburger:hover{
  cursor: pointer;
}

/* ONE */

#hamburger-1.is-active .line:nth-child(2){
    width: 50%;
}

#hamburger-1.is-active .line:nth-child(1){

}

#hamburger-1.is-active .line:nth-child(3){
    width: 20%;
}
.active_mobile {
    background-color: aliceblue;
    justify-content: flex-start !important;
}

.active_mobile::before {
    font-size: 2em;
    margin-right: 10px;
    content: ">"
}
