﻿/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    /*transition: all 0.5s;*/
    padding: 5px 0;
    background: #008fd4;
    height: 60px;
}

/*#header.header-transparent {
    background: rgba(0, 143, 212, 0.6);
}

#header.header-scrolled {
    background: rgba(0, 143, 212, .95);
    padding: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}*/

#header .logo h1 {
    font-size: 24px;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 50px;
    transition: 0.75s ease-in-out;
    opacity: 0;
}

#header.header-scrolled img {
    opacity: 1;
}

@media (max-width: 768px) {
    #header.header-scrolled {
        padding: 0px 0;
    }
}
