@font-face { font-family: "Roboto"; font-weight: 900; src: url("../resources/fonts/Roboto-Black.ttf") format("truetype"); }
@font-face { font-family: "Roboto"; font-weight: 800; src: url("../resources/fonts/Roboto-Bold.ttf") format("truetype"); }
@font-face { font-family: "Roboto"; font-weight: 700; src: url("../resources/fonts/Roboto-Bold.ttf") format("truetype"); }
@font-face { font-family: "Roboto"; font-weight: 600; src: url("../resources/fonts/Roboto-Medium.ttf") format("truetype"); }
@font-face { font-family: "Roboto"; font-weight: 500; src: url("../resources/fonts/Roboto-Medium.ttf") format("truetype"); }
@font-face { font-family: "Roboto"; font-weight: 400; src: url("../resources/fonts/Roboto-Regular.ttf") format("truetype"); }
@font-face { font-family: "Roboto"; font-weight: 300; src: url("../resources/fonts/Roboto-Light.ttf") format("truetype"); }
@font-face { font-family: "Roboto"; font-weight: 200; src: url("../resources/fonts/Roboto-Light.ttf") format("truetype"); }
@font-face { font-family: "Roboto"; font-weight: 100; src: url("../resources/fonts/Roboto-Light.ttf") format("truetype"); }

* {
    box-sizing: inherit;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000 !important;
    font-family: 'Roboto', Arial, sans-serif !important;
    margin: 0;
    color: #fff !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: auto !important;
    min-height: 100%;
    position: relative;
    overflow-x: hidden;
}

main {
    background: #00000060;
}

::selection {
    background: #0060FF60;
    color: #fff;
}

/*Scroll Bar*/
::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #252525;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #505050;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #606060;
  }

/**/

.login-container {
    padding: 32px;
}

.background-image {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

/* TEXT ELEMENTS */
    h1 {
        font-size: 96px;
        font-weight: 600 !important;
        color: inherit !important;
        margin-bottom: 1.5rem !important;
    }

    h2 {
        font-size: 64px !important;
        font-weight: 200 !important;
        line-height: 64px !important;
        color: #0060FF !important;
        margin-bottom: 1.5rem !important;
    }

    h3 {
        font-size: 32px !important;
        font-weight: 200 !important;
        line-height: 32px !important;
        margin-bottom: 0.5rem !important;
    }

    h4 {
        font-size: 16px !important;
        font-weight: 200 !important;
        line-height: 32px !important;
        color: #BBB !important;
        margin-bottom: 0.5rem !important;
    }

    p {
        font-size: 20px !important;
        font-weight: 300 !important;
        color: inherit !important;
        margin-bottom: 0.5rem !important;
        max-width: 896px;
    }

    a {
        font-size: 20px !important;
        font-weight: 300 !important;
        color: #0060FF !important;
        text-decoration: none;
        transition: 0.2s all;
    }

    a:hover {
        color: #FF6000 !important;
        text-shadow: 0 0 8px #FF6000;
    }

    strong {
        font-weight: 700 !important;
        color: #0060FF !important;
        text-decoration: none;
        transition: 0.2s all;
    }

    strong:hover {
        color: #FF6000 !important;
        text-shadow: 0 0 8px #FF6000;
    }

    select {
        color: #0060FF !important;
        font-size: 16px !important;
        font-weight: 200 !important;
        text-transform: uppercase !important;
        border: none !important;
        outline: none !important;
        background-color: inherit !important;
        margin: 0 !important;
        transition: 0.5s all;
        transform: perspective(1px);
        transition-property: color;
        transition-duration: 0.5s;
        vertical-align: middle;
        cursor: pointer;
    }

    select:hover {
        color: #FF6000 !important;
        text-shadow: 0 0 8px #FF6000;
    }
/**/

/* SECTION ELEMENTS */
    section {
        box-sizing: border-box;
        position: relative;
        display: block;
        width: 100%;
        padding: 72px 0;
        opacity: 1;
        background-size: cover;
        overflow: hidden;
        z-index: 0;
    }

    .background_overlay {
		position: absolute;
		background: #000000AA;
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
		z-index: -1;
	}

    .section_container {
        max-width: 1400px;
        height: 100%;
        margin: auto;
        padding-inline: 40px;
        box-sizing: border-box;
    }

    .flex {
        display: flex;
    }

    .section_container.flex {
        flex-direction: column;
        grid-gap: 0;
    }
/**/

.navbar {
    position: fixed !important;
    top: 0;
    width: 100%;
    height: 64px;
    box-sizing: border-box;
    z-index: 30;
    transition: 700ms all;
    background-color: #00000060;
}

.hero {
    display: flex;
    position: relative;
    padding: 0 !important;
    height: 600px;
    overflow: visible;
    background: #00000060;
    align-items: center;
}

.hero.large-hero {
    height: 100vh;
}

.hero .content_row {
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    flex-direction: row;
}

.hero__flex_col.flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
}
    
.hero__content {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.row-width-full {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.hero__flex_col {
    position: relative;
}

.hero__flex_col.flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: 20px;
    margin: 0 20px;
    height: 100%;
}

.pageTop_content {
    position: relative;
    width: 100%;
    height: 100%;
}



.topnav {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 12;
    top: 0;
}

.topnav a {position: relative;height: 100%;display: block;padding: 5px 0px;text-align: center;text-decoration: none;opacity: 1;}

.topnav a:hover {
    color: #fff;
    text-decoration: none !important;
}

.topnav--navList {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0;
    padding: 0;
}


.topnav--navList li {
    display: flex;
    position: relative;
    margin: 0;
    width: fit-content;
    height: 100%;
    list-style-type: none;
    align-items: center;
}

.topnav--navList li ul {
       display: flex;
       align-items: center;
       width: 100%;
       height: 100%;
}

.li--topnav--navList--hamburger {
    padding: 10px 0;
}

.topnav--navList--hamburger {
    margin-left: auto;
    min-height: 3px;
    width: 50%;
    background: #fff;
    transition: 0.1s ease-in-out;
}

    .topnav--navList--hamburger:before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        min-height: 3px;
        width: 100%;
        background: #fff;
        transition: 0.1s ease-in-out;
        transform-origin: center;
    }

    .topnav--navList--hamburger:after {
        content: "";
        position: absolute;
        bottom: 3px;
        left: 0;
        min-height: 3px;
        width: 100%;
        background: #fff;
        transition: 0.1s ease-in-out;
        transform-origin: center;
    }

.topnav a.toggleMobileNav_button {
    padding: 10px 0 !important;
    height: 25px;
    width: 30px;
    position: relative;
    right: 0;
}

.topnav--navList .li--topnav--navList--hamburger {
display: flex;
align-items: center;
width: unset;
}

.topnav .toggleMobileNav_button {
    display: none;
}

.navBar_container {
    max-width: 1440px;
    height: 100%;
    padding: 0px 26px;
    margin: auto;
}

.logo_wrapper {
    display: flex;
    position: relative;
    height: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.logo {
    object-fit: contain;
    position: relative;
    max-height: 35px;
    box-sizing: border-box;
    transition: 700ms all;
}

li.dropdown_nav_item {
    list-style-type: none;
    margin: 0 26px;
    transition: 0.3s;
}

.dropdown_nav_item_a {
    color: #fff;
    font-size: 20px;
    font-weight: 200;
    text-transform: uppercase;
    border: none;
    outline: none;
    background-color: inherit;
    margin: 0;
    transition: 0.5s;
    transform: perspective(1px);
    transition-property: color;
    transition-duration: 0.5s;
    vertical-align: middle;
    cursor: pointer;
}

.flex a:hover {
    text-decoration: none;
}

/* FOOTER */
    .footer {
        display: block;
        width: 100%;
        height: auto;
        padding: 32px 0 !important;
        background: #101010;
        color: #fff;
        position: relative;
        float: left;
        margin: auto;
        z-index: 1;
    }

    .footer-col {
        display: flex;
        position: relative;
        height: 100%;
        padding: 0px;
        flex-direction: column;
        justify-content: flex-start;
        grid-gap: 8px;
    }

    /* FOOTER LINK */

    .footer_link_container {
        display: flex;
        float: left;
        width: 100%;
        margin: 2px 0px;
        flex-direction: row;
        justify-content: flex-start;
    }
/**/

.all_footer_cols.footercol_grid {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-between;
}

.footer-col-title {
    font-size: 28px !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 5px !important;
}

.footer_link {
    font-size: 18px;
    font-weight: 500;
    color: inherit;
    white-space: pre;
}

.external-link {
    width: 10px;
    margin-left: 10px;
    margin-top: -2px;
}

video {
    object-fit: cover !important;
}

.hero-video {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

nav.mobile_nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10;
    transition: 0.5s cubic-bezier(0.60, 0, 0.4, 1);
}

.mobile_nav__container.flex {
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 100%;
    padding: 20px 30px;
    flex-direction: column;
    justify-content: center;
}

.mobile_nav__link-container {}

.mobile_nav__link-wrapper {
    position: relative;
    padding: 10px 0;
}

a.mobile_nav__link {
    font-size: 34px;
    font-weight: 200;
    margin: 0;
    transition: 0.5s;
}

nav.mobile_nav.open {left: 0;}