@import url('./../common/_variable.css');

header {
    position: fixed;
    top: 0;
    padding: 0 var(--padding);
    width: 100%;
    height: var(--headerHeight);
    background-color: transparent;
    backdrop-filter: blur(20px);
    z-index: 100;
    transition: var(--fitText-animation);
}
header > .inner {
    height: 100%;
}

header nav {
    display: flex;
    align-items: center;
    column-gap: 20px;
}
header nav a {
    display: flex;
    align-items: center;
    justify-content: center;
}

header nav a.btn-social {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}
header nav a.btn-download {
    column-gap: 10px;
    width: 140px;
    height: 40px;
    border-radius: 40px;
    background-color: #000;
    font-size: 15px;
    color: #fff;
}
header nav a.btn-download > img {
    width: 20px;
    height: 20px;
}

/** -------------------- RESPONSIVE -------------------- */
@media screen and (max-width: 767px) {
    header > .inner {
        justify-content: center;
    }
    header nav {
        display: none;
    }
}
/** -------------------- //RESPONSIVE -------------------- */

/** -------------------- RESPONSIVE -------------------- */
/* @media screen and (max-width: 379px) {
    header > .inner {
        justify-content: center;
    }
    header nav {
        display: none;
    }
}
@media screen and (min-width: 380px) and (max-width: 1023px) {
    header > .inner {
        justify-content: center;
    }
    header nav {
        display: none;
    }
} */
/** -------------------- //RESPONSIVE -------------------- */
