/* ==================================================
   HOME HERO
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Teko", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.home-hero {

    position: relative;

    width: 100%;
    height: 700px;

    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #000;
    color: #fff;
}

/* ==================================================
   YOUTUBE VIDEO
================================================== */

#hero-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 170%;

    overflow: hidden;

    z-index: 1;
}

/* Player Wrapper */

#hero-video>div {

    position: absolute !important;

    inset: 0;

    width: 100% !important;
    height: 100% !important;

    overflow: hidden;
}

/* iframe */

#hero-video iframe {

    position: absolute !important;

    top: 50%;
    left: 50%;

    border: 0;

    pointer-events: none;
}

/* ==================================================
   OVERLAY
================================================== */

.home-hero-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    z-index: 2;
}

/* ==================================================
   CONTENT
================================================== */

.home-hero-content {

    position: relative;

    z-index: 3;

    width: 100%;
    max-width: 1000px;

    padding: 20px;

    text-align: center;
}

.home-hero-content h1 {

    font-size: 68px;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 20px;
    margin-top: 50px;

    text-transform: uppercase;
}

.home-hero-content p {

    font-size: 22px;

    margin-bottom: 35px;
}

.home-hero-btn {
    margin-top: 20px;

    display: inline-flex;

    justify-content: center;
    align-items: center;

    width: 190px;
    height: 55px;

    background: #C92327;

    color: #fff;

    text-decoration: none;

    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;

    border-radius: 6px;

    transition: .3s;
}

.home-hero-btn:hover {

    background: #C92327;
}

/* ==================================================
   NOTEBOOK
================================================== */

@media (min-width:1024px) and (max-width:1365px) {

    .home-hero {

        height: 620px;
    }

    #hero-video {

        height: 150%;
    }

    .home-hero-content {

        max-width: 820px;

        padding: 0 30px;
    }

    .home-hero-content h1 {

        font-size: 56px;

        margin-top: 30px;

        margin-bottom: 18px;

        line-height: 1.1;
    }

    .home-hero-content p {

        font-size: 20px;

        margin-bottom: 28px;
    }

    .home-hero-btn {

        width: 175px;
        height: 52px;

        font-size: 18px;
    }

}

/* ==================================================
   TABLET
================================================== */

@media (min-width:768px) and (max-width:1023px) {

    .home-hero {

        height: 560px;
    }

    #hero-video {

        height: 145%;
    }

    .home-hero-content {

        max-width: 700px;

        padding: 0 35px;
    }

    .home-hero-content h1 {

        font-size: 46px;

        line-height: 1.15;

        margin-top: 15px;

        margin-bottom: 15px;
    }

    .home-hero-content p {

        font-size: 18px;

        line-height: 1.6;

        margin-bottom: 25px;
    }

    .home-hero-btn {

        width: 165px;
        height: 48px;

        font-size: 17px;
    }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width:767px) {

    .home-hero {

        height: 100vh;

        min-height: 620px;
    }

    #hero-video {

        height: 130%;
    }

    .home-hero-overlay {

        background: rgba(0, 0, 0, .55);
    }

    .home-hero-content {

        padding: 0 24px;
    }

    .home-hero-content h1 {

        font-size: 34px;

        line-height: 1.15;

        margin-top: 0;

        margin-bottom: 18px;
    }

    .home-hero-content p {

        font-size: 16px;

        line-height: 1.7;

        margin-bottom: 28px;
    }

    .home-hero-btn {

        width: 160px;
        height: 48px;

        font-size: 16px;
    }

}