
@font-face {
    font-family: HighVoltageRough;
    src: url(../fonts/highvoltage-rough.ttf);
}



@keyframes flip-with-rotate {
    0% {
        transform: perspective(400px) rotateY(0);
    }

    100% {
        transform: perspective(400px) rotateY(180deg);
    }
}

@keyframes flip-with-rotate-reverse {
    0% {
        transform: perspective(400px) rotateY(180deg);
    }

    100% {
        transform: perspective(400px) rotateY(0);
    }
}

* {
    font-family: HighVoltageRough;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.bg-black {
    background-color: black;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
}

html {
    position: relative;
    min-height: 100%;
}


body::-webkit-scrollbar {
    display: none;
}
body {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* header start */
header {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 1090px;
}

    header #logo img,
    header #menu-logo {
        width: 400px;
    }

    header .social-icons img {
        height: 40px;
    }

/* header end */

#section-secondary {
    min-height: 200px;
}

footer {
}

    footer #footer-info-container {
        background-image: url('images/footer-van.png');
        background-repeat:no-repeat;
        background-size: 100% auto;
        background-position: center left;
        min-height: 190px;
    }

        footer #footer-info-container h4 {
            text-transform: uppercase;
            color: white;
        }

        footer #footer-info-container h5 {
            color: black;
        }

        footer #footer-info-container a {
            text-decoration: none;
            color: inherit;
        }
        footer #footer-info-container a:not(.location) {
            font-size: 22px;
            font-weight: 600;
        }

    footer #footer-side-menu {
    }

        footer #footer-side-menu * {
            font-family: Arial;
            letter-spacing: 2px;
        }

    footer #footer-side-menu {
        line-height: 31px;
    }

        footer #footer-side-menu a {
            color: white;
            text-decoration: none;
            text-transform: uppercase;
        }

        footer #footer-side-menu a:first-child {
            font-weight:700;
        }
            footer #footer-side-menu h6 {
            font-weight: 700;
        }

#page-hp .menu-img,
#page-hp .video-img,
#page-hp .images-img {
    width: 300px;
}

#page-hp .highlighted {
    color: white;
    text-align: center;
    font-size: 30px;
}

#page-hp .media {
    min-height: 1000px;
}

    #page-hp .media .left,
    #page-hp .media .right {
        flex: 1;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    #page-hp .media .left {
        background-image: url("images/hp-video-bg.jpg");
        margin-right: 6px;
    }

    #page-hp .media .right {
        background-image: url("images/hp-gallery-bg.jpg");
        margin-left: 6px;
    }

        #page-hp .media .left a,
        #page-hp .media .right a {
            width: 50%;
            height: 25vh;
        }

.animate-rotate{
    animation: flip-with-rotate 2s 1;
}