.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: .3rem .5rem;
    background: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0, .080);
    display: flex;
    align-items: center;
    gap: .5rem;
    z-index: 100;
}
.header .logoCont{
    padding: .5rem;
    border-radius: .3rem;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 600;
    color: #020202;
    font-size: clamp(.5rem, 2vw, .7rem);
    text-align: center;
    border: 1px solid #eee;
    background: #fff;
}
.header .logoCont:hover{
    background: #555;
    color: #fff;
}


.header .logoCont img{
    height: 1.3rem;
}

.header .navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
}


.header .navbar a{
    font-size: clamp(.7rem, 2vw, 1rem);
    padding: .3rem;
    border-radius:.5rem;
    background: #f5f5f5;
    color: #020202;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #fff;
}
.header .navbar a:hover{
    background: #020202;
    color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.7);
}

.header .contact{
    margin-inline: .5rem;
    padding:.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: #bbb;
}
.header .contact a{
    color: #bbbbbb;
    font-size: clamp(.7rem, 2vw, 1rem);
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
}
.header .contact a:hover{
    background: #000;
    color: #fff;
}

.header .navbarBtn{
    
    display: none;
}

.header .navbarBtn i{
    padding: .5rem;
    color: #9c9c9c;
    font-size: 1.3rem;
    cursor: pointer;
}

.header .aside{
    position: absolute;
    top: 100%;
    left: -115%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    width: 100%;
    padding: 1rem 4%;
    border-top: 1px solid #bbbbbb;
    visibility: hidden;
    pointer-events: none;
    transition: .3s cubic-bezier(.59,.02,0,1.34);
}
.header .aside.show{
    left: 0;
    visibility: visible;
    pointer-events: all;
}


.header .aside h1{
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}
.header .aside .navAside{
    padding: .5rem;
    border-radius: .5rem;
    background: #eee;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 8px rgba(0,0,0, .180);
    width: 100%;
    row-gap: .3rem;
    height: 100%;
}
.header .aside .navAside a{
    border-radius: .4rem;
    background: #fff;
    padding: .3rem .5rem;
    box-shadow: 0 3px 5px rgba(0,0,0, .080);
    color: #555;
    font-size: .8rem;
}
.header .aside .fakeBtn{
    margin-top: auto;
    margin-bottom: 6rem;
    background: #0077ff;
    box-shadow: 0 0 8px #2fb3ff;
    width: max-content;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: .5rem 4rem;
    border-radius: .5rem;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
}



@media(max-width:620px){
    .header .navbar{
        display: none;
    }
    .header .contact a{
        height: 1.5rem;
        width: 1.5rem;
    }
    .header .navbarBtn{
        display: block;
    }
    .header .aside{
        display: flex;
    }
}

@media(max-width:480px){
    .header .contact{
        display: none;
    }
}