/************
Header
*************/
/* STICKY NAVIGATION */

.header {
    letter-spacing: 0.056rem;
    position: fixed;
    top: 0;
    padding: 2.8rem 0;
    height: 12rem;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
    width: 100%;
    z-index: 999;
}

.header-ul {
    width: 70%;
}

.logo-img {
    stroke: #263d66;
}

.first-tspan {
    fill: #263d66;
}

.second-tspan {
    stroke: #2626286c;
    font-weight: normal;
}

.btn-login,
.btn-login:focus,
.btn-signup {
    border: none;
    outline: none;
    background: none;
}

.btn-signup:focus {
    outline: none;
}

.header-ul {
    display: flex;
    justify-content: space-around;
}

.header-ul > li {
    display: flex;
    align-items: center;
}

.header-ul > li a {
    color: #817f7f;
    transition: all 0.2s;
    text-transform: uppercase;
}

.header-ul > li a:hover,
.header-ul > li a:active {
    text-decoration: none;
    color: #333;
}

.btn-signup {
    background-color: #729cff;
    padding: 0.6rem 1.3rem;
    transition: all 0.2s;
}

.header-ul .btn-signup a,
.header-ul .btn-signup a:hover {
    color: #fff;
}

.btn-signup:hover {
    background-color: #517bdf;
}

/* MOBILE */
.btn-mobile-nav {
    border: none;
    background: none;
    cursor: pointer;

    display: none;
}

.icon-mobile-nav {
    height: 4.8rem;
    width: 4.8rem;
    color: #333;
}

.icon-mobile-nav[name="close-outline"] {
    display: none;
}
