header {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: block;
}

.spy-header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: -100px;
    left: 0;
    z-index: 110;
    display: block;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.30s ease-in-out;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
}

.responsive-header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 110;
    display: none;
    background-color: rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
    header,
    .spy-header {
        display: none;
    }
    .responsive-header {
        display: block;
    }
}

header .logo {
    width: 120px;
    height: 195px;
    margin: 15px 0;
}

.spy-header .logo,
.responsive-header .logo {
    width: 110px;
    height: 40px;
    margin: 4px 0;
}

header .top-link ul,
header .social-link ul {
    padding: 25px 0 0 0;
    margin: 0;
    list-style: none;
}

.spy-header .top-link ul,
.spy-header .social-link ul {
    padding: 18px 0 0 0;
    margin: 0;
    list-style: none;
}

.top-link ul li {
    display: inline-block;
    margin: 0 10px;
}

.social-link ul li {
    display: inline-block;
    margin: 0 0 0 10px;
}

.top-link a,
.social-link a {
    font-size: 0.8rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
}

.top-link a:hover,
.top-link a.active,
.social-link a:hover {
    color: #ff0b40;
}

.res-icons {
    display: inline-block;
    color: #fff;
    margin-top: 20px;
}

.responsive-menu {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    padding: 0;
    opacity: 0;
    display: none;
    background-color: rgba(0, 0, 0, 0.9);
}

.responsive-menu ul {
    padding: 0;
    margin: 100px 0 0 0;
    text-align: center;
    list-style: none;
}

.responsive-menu ul li {
    margin: 15px 0;
    font-size: 1.3rem;
}

.responsive-menu ul li a {
    color: #fff;
}

.responsive-menu ul li a.active {
    color: #ff0b40;
}
