.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    background: #222;
    border-bottom: 1px solid #ff4500;
    padding: .5rem 1rem;
    gap: .5rem;
    z-index: 100;
    box-shadow: 0 8px 15px #222;
}

.header .logo{
    margin-right: auto;
}
.header .logo img{
    width: 3.5rem;
    padding: 0 .5rem 0 0;
    border-right: 2px solid #ff4500;
}

.header .navbar{
    padding: .2rem 1rem;
    border-radius: 25px;
    border: 1px solid #444;
    gap: .2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header .navbar a{
    padding: 0 .5rem 0 0;
}
.header .navbar a i{
    color: #ff9100;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.header .navbar a span{
    font-size: .7rem;
    color: #ddd;
}

.header .about{
    position: absolute;
    top: 100%;
    right: -100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem;
    background: #222;
    border-radius: 0 0 0 1rem;
    border-left: 1px solid #ff4500;
    border-bottom: 1px solid #ff4500;
    box-shadow: 0 8px 15px #222;
    visibility: hidden;
    pointer-events: none;
}

.header .about.active{
    right:0;
    visibility: visible;
    pointer-events: all;
}


.header .about a{
    color: #ddd;
    font-size: clamp(.6rem, 2vw, 1rem);
    font-weight: 200;
    background:#000;
    border: 1px solid #555;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
    padding:.3rem .5rem;
    border-radius: .7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
}
.header .about a:hover{
    color: #fff;
}

.header .about .rrss{
    position: absolute;
    top: 110%;
    right: .5rem;
    padding: .5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: .5rem;
    border: 1px solid rgba(0,0,0, .1);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.header .about .rrss a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: .5rem;
    color:#fff;
    text-shadow: 0 0 3px #000;
    font-size: clamp(.6rem, 2vw, .8rem);
    background: transparent;
}
.header .about .rrss a i{
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.header .btnNav{
    color: #999;
    font-size: clamp(1rem, 2vw, 1.5rem);
    cursor: pointer;
}
.header .btnNav:hover{
    color: #fff;
}



/***************/

.mobileQuick{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .5rem 1rem;
    background: #000;
    border-top: 1px solid #ff4500;
    display: none;
}
.mobileQuick a{
    font-size: 2rem;
    color: #999;
}

.mobileQuick .phoneBtn{
    z-index: 8;
    transform: translateY(-50%);
    padding: .5rem;
    border-radius: 50rem;
    background: #333;
    box-shadow: 0 0 10px #ff4500;
    border: 1px solid #ff4500;
    color: #ff4500;
}



@media(max-width:480px){
    .header .about{
        border-radius: unset;
        border-left: none;
    }
    .header .about.active{
        left: 0;
    }

    .mobileQuick{
        display: flex;
    }
}

