.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 3px 5px rgba(0,0,0, .080);
    padding: .2rem .5rem;
    display: flex;
    align-items: center;
    gap: .2rem;
    height: 3.5rem;
    justify-content: center;
    z-index: 100;
}
.header .logo{
    display: flex;
    background: #000;
    padding: .2rem;
    border-radius: .5rem;
    width: calc(100% - 85%);
    margin-right: auto;
    align-items: center;
    justify-content: center;
    height: calc(100% - 3%);
}

@media(max-width:1200px){
    .header .logo{
        width: calc(100% - 45%);
    } 
}

.header .logoContainer{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
}

.header .logo .logoContainer img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header .navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: #eee;
    border-radius: 4px;
    height: 75%;
    padding: .2rem;
}

@media(max-width:1200px){
    .header .navbar{
        display: none;
    } 
}


.header .navbar a{
    color: #aaa;
    font-size: .9rem;
    display: flex;
    padding: .5rem;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: 500;
}

.header .navbar a:hover{
    background: #999;
    color: #fff;
}

.header .navbar a:nth-child(1){
    font-size: 1.3rem;
}


.header .navbar a.active{
    background: #fff;
    box-shadow: 0 3px 5px rgba(0,0,0, .3);
    color: #333;
    font-weight: 600;
}
.header .rrss{
    background: #222;
    height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: .2rem;
    gap: .5rem;
    width: max-content;
    margin-right: 5rem;

}

/* @media(max-width:1200px){
    .header .rrss{
        margin-right: 3rem;
    }
} */


.header .rrss a{
    background: #505050;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 2rem;
    font-size: 1.2rem;
    color: #ffffff;
    width: 2rem;
    border-radius: 50%;
}



.header .sideBar{
    position: absolute;
    z-index: 7;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, .5);
    backdrop-filter: blur(5px);
    top: 100%;
    left:-115%;
    min-height: 100dvh;
    padding: 2rem 5%;
    border-top: 1px solid #e2e2e2;
    opacity: 0;
}
.header .sideBar.show{
    left: 0;
    opacity: 1;
}
.header .sideBar .container{
    display: flex;
    flex-direction: column;
    padding: .5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 15px rgba(0,0,0, .150);
    background: linear-gradient(0, #fff, #f7f7f7);
    height:calc(100% - 10%);
    width: 100%;
}
.header .sideBar .container .linksCont{
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
    background:#eee;
    padding: .2rem;
    border-radius: .5rem;
    box-shadow: inset 0 3px 5px rgba(0,0,0, .080);
    border-top: 2px solid #d1d1d1;
    border-bottom: 2px solid #fff;
}
.header .sideBar .container .linksCont a{
    color: #aaa;
    border-radius: 8px;
    padding: .5rem;
}

.header .sideBar .container .linksCont a:hover{
    background: #999;
    color: #fff;
}

.header .sideBar .container .linksCont a.active{
    background: #fff;
    color: #333;
    box-shadow: 0 3px 5px rgba(0,0,0, .2);
    font-weight: 700;
}

.header .sideBar .container .dashBoard{
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.header .sideBar .container .dashBoard .content{
    display: flex;
    background: #c5c5c5;
    width: max-content;
    padding: .2rem;
    border-radius: 50px;
    gap: .3rem;
}
.header .sideBar .container .dashBoard .content a{
    height: 3rem;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #aaa;
}
.header .sideBar .container .dashBoard .content a:hover{
    background: #4d4d4d;
    color: #fff;
}
.header .sideBar .container .closeBtn{
    width: max-content;
    padding: .5rem 3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    box-shadow: 0 0 8px #0077ff;
    margin-block: 1rem;
    background: #0077ff;
    text-align: center;
    cursor: pointer;
}
@media(max-width:1200px){
  .header .sideBar .container .closeBtn{
    width: 100%;
  }  
}


.header .menuBar{
    cursor: pointer;
    padding: .2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
@media(max-width:1200px){
    .header .menuBar{
        display: block;
    }
}

@media(max-width:480px){
   .header .menuBar{
    display: none;
   } 
}



.header .menuBar i{
    font-size: 2rem;
    color: #444;
}
