﻿/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

    #hero:before {
        content: "";
        background: rgba(0, 0, 0, 0.65);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .hero-container {
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 0 15px;
    }

    #hero h1 {
        margin: 0 0 10px 0;
        font-size: 10rem;
        font-family: "Courgette", cursive;
        color: #fff;
    }

    #hero h2 {
        color: #eee;
        margin-bottom: 50px;
        font-size: 1.25rem;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    #hero .btn-scroll {
        transition: 0.4s;
        color: rgba(255, 255, 255, 0.6);
        animation: up-down 1s ease-in-out infinite alternate-reverse both;
    }

        #hero .btn-scroll i {
            font-size: 48px;
        }

        #hero .btn-scroll p {
            margin-bottom: -0.8rem;
        }

        #hero .btn-scroll:hover {
            color: #ffb727;
        }

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 575px) {
    #hero h1 {
        font-size: 40px;
    }

    #hero h2 {
        text-align: center;
        margin-bottom: 30px;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(-5px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(-5px);
    }
}

#hero-video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -100;
}