/* HEADER */
iframe {
    max-width: 100%;
}

.header-top {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, .9);
    filter: drop-shadow(4px 5px 6px rgba(0, 0, 0, .19));
    font-family: 'Roboto', sans-serif;
    z-index: 10;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    padding: 22px 40px;
}

.header-right {
    display: flex;
    align-items: center;
}

.menu-item {
    margin-right: 52px;
}

.menu {
    margin-right: 10px;
}

.menu-item a {
    font-family: 'Open Sans', sans-serif;
    color: #ffd100;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
}

.menu {
    display: flex;
    justify-content: space-between;
}

.menu-item a:focus:before,
.menu-item a:active:before,
.menu-item a:hover:before,
.current-menu-item a:before {
    content: "";
    position: absolute;
    bottom: -6px;
    width: 50%;
    border-bottom: 3px solid #fbce00;
    transition: all .2s ease;
    height: 0;
}

.custom-logo {
    width: 75%;
    height: auto;
}

.custom-logo-link {
    position: relative;
    z-index: 1;
}

.social {
    display: flex;
    align-items: center;
}

.social-item img {
    height: 30px;
}

.twitter {
    margin-right: 30px;
}

.mobile-menu-btn {
    display: none;
}

.header-bottom {
    width: 100%;
    height: 587px;
    background: rgba(0, 0, 0, .68);
    position: relative;
}

.video-container {
    position: absolute;
    width: 100%;
    height: 680px;
    background: black;
    border-left: none;
    border-right: none;
    top: 0;
}

.video {
    width: 100vw;
    position: absolute;
    opacity: 0.6;
    z-index: -1;
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.header-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 20px;
}

.header-title {
    margin-bottom: 50px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 64px;
    color: #ffd100;
    text-align: center;
}

.title-sub {
	max-width: 935px;
	font-family: 'Open Sans', sans-serif;
	font-size: 92px;
	font-weight: 800;
	text-align: center;
	color: white;
	z-index: 2;
	line-height: 80px;
}

.title-sub2 {
    max-width: 935px;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-align: bottom;
    margin-top: 20px;
    color: red;
    z-index: 2;
}

@media(max-width: 1310px) {
    .menu-item {
        margin-right: 20px
    }
}

@media(max-width: 1200px) {
    .header {
        margin-bottom: -1px;
    }

    .custom-logo {
        width: 250px;
        height: auto;
    }

    .header-wrap {
        padding: 38px 40px 42px;
    }

    .header-title {
        margin-bottom: 22px;
        font-size: 48px;
    }

    .video-container {
        height: 540px;
    }

    .header-bottom {
        height: 452px;
    }

    .header-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .title-sub {
        font-size: 72px;
    }

    .menu-item a {
        font-size: 16px;
    }

    .menu {
        padding-top: 6px;
    }
}

@media(max-width: 996px) {
    .header {
        margin-bottom: -1px;
    }

    .header-title {
        font-size: 52px;
    }

    .title-sub {
        font-size: 72px
    }
}

@media(max-width: 795px) {
    .header-title {
        font-size: 48px;
    }

    .title-sub {
        font-size: 72px
    }
}

@media(max-width: 738px) {
    .header-title {
        font-size: 48px;
        max-width: 425px;
    }

    .title-sub {
        font-size: 64px;
        max-width: 455px;
    }
}

@media(max-width: 640px) {
    /*     .header {
        margin-bottom: 515px;
    } */

    .header-wrap {
        padding-left: 48px;
        padding-right: 48px;
    }

    .header-bottom {
        height: 517px;
    }

    .video-container {
        height: 638px;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: 68px;
        color: white;
        cursor: pointer;
        position: relative;
        z-index: 1;
    }

    .menu {
        list-style: none;
        position: absolute;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 0;
        width: 100%;
        top: 0;
        left: 0;
        max-height: 0;
        background: rgba(0, 0, 0, 1);
        transition: max-height 0.15s ease-out;
        overflow: hidden;
    }

    .active {
        max-height: 100vh;
        height: 100vh;
        transition: max-height 0.25s ease-in;
    }

    .menu-item {
        margin: 0;
        padding: 15px 0;
        cursor: pointer;
    }

    .header .menu-item a {
        font-size: 48px;
        font-weight: 700;
        line-height: 2;
        display: inline-block;
        width: 100%;
    }

    .header .menu-item a:hover:before,
    .header .current-menu-item a:before {
        width: 25vw;
        bottom: 5px;
    }

    .menu-item:hover {
        background: rgba(255, 255, 255, .1);
    }

    .menu-item:hover a {
        color: white
    }

}

@media(max-width: 485px) {
    .header {
        margin-bottom: -1px;
    }

    .custom-logo {
        width: 200px;
        height: auto;
    }

    .header-wrap {
        padding-right: 20px;
        padding-left: 20px;
    }

    .mobile-menu-btn {
        margin-left: 30px
    }
}

@media(max-width: 425px) {

    .social {
        padding-left: 0px
    }

    .header-title {
        font-size: 32px;
    }

    .title-sub {
        font-size: 32px;
    }
}

@media(max-width: 350px) {
    .header-wrap {
        padding-top: 43px;
        padding-bottom: 42px;
    }

    .mobile-menu-btn {
        width: 30px;
        height: auto;
    }

    .custom-logo {
        width: 185px
    }
}

@-moz-document url-prefix() {
    @media(max-width: 400px) {
        .social img {
            width: 20px
        }

        .custom-logo {
            width: 170px
        }

        .video-container {
            height: 520px;
        }

    }
}

/* /HEADER */