.homepage #header {
    height: 100vh;
    overflow: hidden;
}

#front_video {
    position: fixed;
    left: 0px;
    top: 0px;
    min-width: 100vw;
    min-height: 100vh;
}

#front_video_cover {
    background: url(../../images/image_texture.png);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

section.fixed{
    position: absolute;
    bottom: 0;
    width: 100%;
}

#logo {
    background-image: url(../../images/zeeds.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    height: 60px;
    padding-top: 50px;
    position: fixed;
    top: calc(50% - 30px);
}

#logo b {
    color: #919499;
    font-weight: 900;
}

#intro p.style3 {
    margin-bottom: 20px;
}

#features header.style1 {
    padding: 0 0 5em 0;
}

.feature-list.small section {
    padding-top: 0;
    border-top: none;
}

#footer {
    padding-bottom: 0;
}

#copyright {
    padding-top: 0;
}

#copyright ul {
    box-shadow: none;
    padding-top: 3em;
}

#nav>ul {
    box-shadow: none;
}

.inner_page #logo {
    top: 154px;
}

#header{
    background-image: none;
}

#header #img{
    background-image: url(../../images/3d-modeling.jpg);
    background-position: bottom;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: fixed;
}

#web-development #header #img{
    background-image: url(../../images/web-development.jpg);
}

#mobile-apps-games #header #img{
    background-image: url(../../images/game-designing.jpg);
}

.portfolio-gallery {
    display: none;
}

.portfolio h3 {
    text-transform: capitalize;
}

.portfolio h3 a.lowercase {
    text-transform: lowercase;
}

.mfp-arrow-right:before {
    right: 0;
    left: auto;
    margin-right: 25px;
}

.mfp-arrow-right:after {
    margin-right: 31px;
    right: 0;
    left: auto;
}

#loader {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    width: 100%;
    height: 100vh;
    top: 0px;
    z-index: 100;
}

#loader svg {
    animation-name: loader;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
}

@keyframes loader {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(359deg);
    }
}

@media screen and (max-width: 736px) {
    .inner_page #logo {
        top: 76px;
    }

    .wrapper .title {
        width: 22em;
        margin-left: -11em;
    }

    #logo{
        transform: unset !important;
        filter: unset !important;
        opacity: 1;
    }
}