/*|==========================|MOBILE_MENU|==========================|*/
.mobile_menu{
    position:fixed;
    z-index: 6;
    width:100%;
    height:100%;
    display: none;
    transition: 0.5s;
    transform: translate(100%,0);
}
.back_button{
    width:30%;
    text-align: center;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size:50px;
    color: var(--highlight_color_4);
}
.mobile_menu_toolbar{
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    border-left: 10px solid var(--highlight_color_3);
    z-index: 2;
    overflow: auto;
    margin-left:auto;
    width:70%;
    height:100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content:flex-start;
    background-color: rgb(23, 23, 23);
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.slide_in_class{
    animation-name: slide_in_animation;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes slide_in_animation{
    0%{
        background-color: rgba(0, 0, 0, 0);
        backdrop-filter: blur(0px);
    }
    20%{
        transform: translate(0,0);
        backdrop-filter: blur(5px);
        background-color: rgba(0, 0, 0, 0);
    }
    60%{
        transform: translate(0,0);
        background-color: rgba(0, 0, 0, 0.47);
        backdrop-filter: blur(12px);
    }
    100%{
        transform: translate(0,0);
        background-color: rgba(0, 0, 0, 0.47);
        backdrop-filter: blur(12px);
    }
}
.slide_out_class{
    animation-name:  slide_out_animation;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes slide_out_animation{
    0%{
        background-color: rgba(0, 0, 0, 0);
        transform: translate(0,0);
        backdrop-filter: blur(0px);
    }
    20%{
        transform: translate(100%,0);
    }
    100%{
        background-color: rgba(0, 0, 0, 0);
        transform: translate(100%,0);
        backdrop-filter: blur(0px);
    }
}
.logo{
    width:70px;
    margin: 0 auto;
    margin-top:50px;
}
.mobile_nav_title{
    color: #ffffff;
    font-family: 'Montserrat Alternates', sans-serif;
    margin:0;
    font-size: 25px;
    text-align: center;
    cursor:default;
}
.mobile_menu ul{
    padding:0;
    display: block;
    list-style:none;
    text-align: center;
    
}
.mobile_menu a{
    font-size:25px;
    color: white;
    text-decoration:none;
    font-family: 'Montserrat Alternates',sans-serif;
    user-select: none;
}
.mobile_menu li{
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    background-color: rgba(51, 51, 51, 0.36);
    margin: 25px 0;
    margin-left:10px;
    box-shadow: 10px 10px 10px black;
}
.mobile_menu li:hover{
    box-shadow: 10px 10px 10px rgba(8, 8, 8, 0.5);
    transform: scale(0.98);
}
.burger_menu {
  margin-top: 10px;
  margin-right: 30px;
  border-radius: 10px;
  z-index: 3;
  width: 70px;
  display: none;
  flex-direction: column;
  cursor: pointer;
  align-items: center;
}

.visible{
    display:flex;
}
.invisible{
    display:none;
}

.burger-menu:active + .mobile_menu{
    display:flex;
}
.bar {
  box-shadow: 0px 0px 0px 3px #000000;
  border-radius: 50px;
  margin: 0 auto;
  width: 76%;
  height: 4px;
  background-color: var(--highlight_color_4);
  margin: 7px 0;
}


.title img{
    width:60px;
    margin-right:10px;
}


@media (max-width:967px) {
    .burger_menu{
       display:flex;
    }
    .hero{
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
    }
}