#header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #b4842f;
    z-index: 1;
}

#header .logo {
    align-items: center;
}

#header .logo:hover span {
    color: #fff;
}

#header .logo img {
    margin-right: 10px;
}

#header .logo span {
    text-transform: uppercase;
    font-family: Vnf, serif;
    font-size: 40px;
    color: #fff;
}

#header .logo .title-small {
    max-width: 160px;
    font-size: 14px;
    line-height: 1.5;
    margin-right: 3px;
}

#header ul {
    display: flex;
}

#header ul li a {
    font-family: Vnf, serif;
    color: #fff;
    font-size: 18px;
    padding: 0 15px;
}

#header ul li a:hover,
#header ul li.active a {
    color: #3a3f54;
    transition: 0.5s;
}

#footer {
    background-color: #b4842f;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
}

#footer ul li a {
    font-family: Vnf, serif;
    font-size: 14px;
    color: #fff;
    padding: 0 5px;
    border-right: 1px solid #ccc;
    line-height: 0.8;
    display: block;
}

#footer ul li:last-child a {
    border-right: 0;
}

.social-main {
    position: fixed;
    bottom: 45px;
    right: 15px;
}

.social-main a {
    display: flex;
    background-color: #a2a2a2;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-bottom: 5px;
    overflow: hidden;
    animation: lac 1s linear infinite;
    color: #fff;
}

.social-main a img {
    max-width: 60%;
    max-height: 60%;
    border-radius: 100%;
}

.social-main a:hover {
    background-color: #b4842f;
    color: #fff;
}

.social-main a:last-child {
    margin-bottom: 0;
}

@keyframes lac {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-25deg);

    }
    20% {
        transform: rotate(25deg);

    }
    30% {
        transform: rotate(-25deg);

    }
    40% {
        transform: rotate(25deg);

    }
    50% {
        transform: rotate(0);

    }
    100% {
        transform: rotate(0);

    }
}

