
#body-container {
    position: relative;
}


/* Footer Ghostie */

#footer-ghostie {
    position: absolute;
    width: 200px;
    bottom: 278px;
    right: 2%;
    z-index: 10;
}

@media screen and (max-width: 1200px) and (max-height: 1200px) {
    #footer-ghostie {
        width: 140px;
        bottom: 220px;
        right: 6%;
    }
}

@media screen and (max-width: 767px) {
    #footer-ghostie {
        width: 24vw;
        bottom: 260px;
        right: 0;
    }
}


/* end of Footer Ghostie */

/* Header Size Animation */

header {
    transform: translate3d(0px,0px,0px);
    -webkit-transform: translate3d(0px,0px,0px);
    transition: height .3s linear;
}


/* brand */


brand {
    display: block;
    position: relative;
    z-index: 5;
    width: 100%;
    margin-top: 20px;
    font-size: 1.2em;
    text-align: center;
    color: #fff;
}

brand img {
    max-width: 200px;
    max-height: 80px;
}

@media screen and (max-width: 1200px) and (max-height: 1200px) {
    brand {
        margin-top: 10px;
        font-size: 1em;
    }
    
    brand img {
        max-width: 150px;
        max-height: 50px;
    }
}

@media screen and (max-width: 767px) {
    brand {
        margin-top: 10px;
        font-size: 0.9em;
    }
    
    brand img {
        max-width: 120px;
        max-height: 50px;
    }
}

/* end of brand */


/* Scroll Arrow */

.scroll-arrow {
    width: 40px;
    height: 40px;
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    border-left: none;
    border-top: none;
    border-right: 2px #fff solid;
    border-bottom: 2px #fff solid;
    position: absolute;
    bottom: 20px;
    left: calc(50% - 20px);
    z-index: 9;
    cursor: pointer;
}

.scroll-arrow:before {
    position: absolute;
    left: 50%;
}

.scroll-arrow:hover {
    border-right: 3px #fc0 solid;
    border-bottom: 3px #fc0 solid;
    margin-top: 1px;
}

.scroll-arrow:hover:before {
    border-right: 2px #fc0 solid;
    border-bottom: 2px #fc0 solid;
    animation-name: unset;
}

.scroll-arrow:before {
    content: "";
    width: 20px;
    height: 20px;
    top: 50%;
    margin: -10px 0 0 -10px;
    border-left: none;
    border-top: none;
    border-right: 1px #fff solid;
    border-bottom: 1px #fff solid;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: arrow;
}


@keyframes arrow {
    0% {
        opacity: 1;
        transform: translate(-10px, -10px);
    }
    100% {
        opacity: 0;
    }
}

/* end of Scroll Arrow */