.blurM a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}    
.blurM span a:after {
    background-color: #ffffff;
    display: block;
    content: "";
    height: 2px;
    width: 0%;
    -webkit-transition: width .3s ease-in-out;
    -moz--transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
}
.blurM span a:hover:after,
.blurM span a:focus:after {
    width: 100%;
}

.blurM {
    background: rgb(255 255 255 / 15%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mobile {
  position: absolute;
  right: 25px;
  top: 18px;  
}
.mobile div {
    display: block;
    position: relative;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    z-index: 9999999;
    border: 2px solid #00000000;
    cursor: pointer;
    box-sizing: content-box;
}
.mobile div span {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
    transition-duration: .4s;
}
.mobile div span:nth-child(1) {
    top: 10px;
}
.mobile div span:nth-child(2) {
    top: 18px;
}
.mobile div span:nth-child(3) {
    bottom: 11px;
}
.mobile div.active span:nth-child(1) {
    transform: translate(-15px, 8px) rotate(-45deg);
}
.mobile div.active span:nth-child(2) {
    transition-duration: 0s;
    opacity: 0;
}
.mobile div.active span:nth-child(3) {
    transform: translate(-15px, -8px) rotate(45deg);
}
.mobile nav {
    display: block;
    position: fixed;
    bottom: 16px;
    right: 16px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    z-index: 9999990;
    transition-duration: .4s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mobile nav.open {
    background-color: rgba(0, 0, 0, 0.9);
    width: 100vw;
    height: 100vh;
    right: 0px;
    bottom: 0px;
    border-radius: 0;
}
.mobile nav ul {
    display: none;
}
.mobile nav ul.show {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    width: 100%;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
.mobile ul li:not(:last-child) {
    margin-bottom: 22px;
}
.mobile ul li a {
    font-size: 24px;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #fff;
}
@keyframes fadein {
    0% {
        opacity: 0;
         
    }
    100% {
        opacity: 1;
    }
}
@media (min-width:768px){
    .mobile {
        display: none;
    }
}