/* =========================================
   Header
========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;

    z-index: 1000;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,.90) 0%,
        rgba(255,255,255,.75) 25%,
        rgba(255,255,255,.45) 60%,
        rgba(255,255,255,.15) 90%,
        rgba(255,255,255,0) 100%
    );

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
/* -----------------------------------------
   Header Inner
----------------------------------------- */

.header__inner {
    height: 70px;

    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* -----------------------------------------
   Logo
----------------------------------------- */

.header__logo {
    display: block;
}

.header__logo-image {
    display: block;
    width: 60px ;
    height: auto ;
}


/* -----------------------------------------
   Contact
----------------------------------------- */

.header__contact {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-decoration: none;
    color: #555;
}

.header__contact-icon {
    width: 40px;
    height: 40px;
}

.header__contact-text {
    font-size: 12px;
}

@media screen and (max-width: 768px) {

    .header__inner {
        height: 60px;
        padding: 0 16px;
    }

    .header__logo-image {
        width: 48px;
    }

    .header__contact-icon {
        width: 32px;
        height: 32px;
    }

    .header__contact-text {
        font-size: 10px;
    }

}