@font-face {
    font-family: Impact;
    src: url("data/fonts/impact.ttf");
}

@font-face {
    font-family: myriadPro;
    src: url("data/fonts/MyriadPro-Regular.otf");
}

@font-face {
    font-family: myriadPro;
    src: url("data/fonts/MyriadPro-Bold.otf");
    font-weight: bold;
}
@font-face {
    font-family: chalkduster;
    src: url("data/fonts/Chalkduster.ttf");
}

h1 {
    color: rgba(0, 0, 0, 1);
    font-family: Impact;
    margin: 0px;
    transform: scale(1, 0.73);
    line-height: 82%;
    letter-spacing: -0.08vw;
    text-transform: uppercase;
}

h2 {
    color: rgba(0, 0, 0, 1);
    font-family: Impact;
    margin: 0px;
    transform: scale(1, 0.73);
    line-height: 90%;
    letter-spacing: -0.04vw;
}

p {
    color: rgba(0, 0, 0, 1);
    font-family: myriadPro;
    margin: 0px;
    line-height: 100%;
    letter-spacing: -0.02vw;
}

a {
    color: rgba(0, 0, 0, 1);
    font-family: myriadPro;
    margin: 0px;
    line-height: 100%;
    letter-spacing: -0.02vw;
}

body {
    min-width: 300px;
    max-width: 2560px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    overflow-x: hidden;
}

/* Top Nav Bar */
#top_nav_bar {
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0px;
    box-shadow: none;
    height: 6vw;
    z-index: 4;
}

#top_nav_bar .nav-wrapper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#top_nav_bar .nav-wrapper a:first-child img {
    width: 5vw;
}

#top_nav_bar .nav-wrapper ul:nth-child(2) li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.4vw;
    padding-left: 1vw;
    padding-right: 1vw;
    line-height: 6vw;
}

#top_nav_bar .nav-wrapper ul:nth-child(2) li a:hover,
#top_nav_bar .nav-wrapper ul:nth-child(2) li a.active {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 0, 0, 0);
}

#top_nav_bar .nav-wrapper ul:nth-child(2) li img {
    opacity: 0.75;
    width: 1.4vw;
    margin-left: 1.8vw;
    margin-right: 1.8vw;
}

#top_nav_bar .nav-wrapper ul:nth-child(2) li img:first-child {
    transform: translateY(0.1vw);
}

#top_nav_bar .nav-wrapper ul:nth-child(2) li img:nth-child(4) {
    transform: translateY(0.2vw);
}

#top_nav_bar .nav-wrapper ul:nth-child(2) li img:hover,
#top_nav_bar .nav-wrapper ul:nth-child(2) li img.active {
    opacity: 1;
}

@media screen and (max-width: 600px) {
    #top_nav_bar .nav-wrapper {
        width: 94%;
    }

    #top_nav_bar .nav-wrapper a:first-child img {
        width: 10vw;
    }

    #top_nav_bar .nav-wrapper ul:nth-child(2) li a {
        font-size: 3vw;
        padding-left: 1.8vw;
        padding-right: 1.8vw;
        line-height: 12vw;
    }

    #top_nav_bar .nav-wrapper ul:nth-child(2) li img {
        width: 3vw;
        margin-left: 1.8vw;
        margin-right: 1.8vw;
    }
}

/* Top Splash Screen */
.splash_image_wrapper {
    background-color: rgb(20, 20, 20);
    min-height: 400px;
    max-height: 800px;
}

.splash_image_wrapper img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: -1;
}

#splash_image .splash_image_wrapper img {

}

#splash_image_s600 .splash_image_wrapper img {

}

/* Main Tabs */
#main_nav_bar {
    position: absolute;
    width: 100%;
    bottom: 0px;
    z-index: 1;

    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

#main_nav_bar div:first-child {
    background-color: rgba(140, 140, 140, 0.75);
    height: 1px;
    width: 100%;
}

#main_nav_bar div:nth-child(2) {
    background-color: rgba(40, 40, 40, 0.75);
    width: 16%;

    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

#main_nav_bar div:nth-child(2) p {
    display: inline-block;
    color: rgba(255, 255, 255, 0.75);
    font-family: myriadPro;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    padding-left: 6vw;
    padding-right: auto;
    margin-top: 7px;
}

.main_tabs {
    position: relative;
    background-color: rgba(40, 40, 40, 0.75);
    width: 84%;
    margin-top: 0px;
    margin-bottom: 0px;
    z-index: 2;

    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;

    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.main_tabs .tab {
    height: 47px;

    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.tab_spacer {
    position: absolute;
    display: inline-block;
    z-index: 10;
}

.main_tabs li p {
    color: rgba(255, 255, 255, 0.75);
    font-family: myriadPro;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    transform: scale(1, 1.6);
}

.main_tabs .tab a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 12px;
    text-align: left;
    margin-top: 12px;

    margin-left: 6px;
    margin-right: 6px;
}

.main_tabs .tab a span {
    font-size: 12px;
}

.main_tabs .tab a:hover,
.main_tabs .tab a.active {
    color: rgba(255, 255, 255, 1);
}

@media screen and (max-width: 600px) {
    #main_nav_bar div:nth-child(2) {
        width: 18%;
    }

    #main_nav_bar div:nth-child(2) p {
        font-size: 12px;
        margin-top: 4px;
        padding-left: 2vw;
    }

    .main_tabs {
        width: 82%;
    }

    .main_tabs .tab {
        height: 36px;
    }

    .main_tabs li p {
        font-size: 14px;
        margin-top: 6px;
    }

    .main_tabs .tab a {
        font-size: 12px;
        margin-top: 7px;
    }

    .main_tabs .tab a span {
        font-size: 10px;
    }
}

/* Tab Indexs */
#tab_index {
    position: relative;
    width: 100%;

    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

#tab_marker {
    background-image: url("data/images/tab_indicator.png");
    width: 20px;
    height: 20px;
    position: absolute;
    display: none;
    z-index: 10;
}

#tab_index div:nth-child(2) {
    background-color: rgb(106, 117, 125);
    height: 1px;
    width: 100%
}

#tab_index div:nth-child(3) {
    background-color: rgb(5, 50, 80);
    width: 16%;

    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

#tab_index div:nth-child(3) p {
    display: inline-block;
    color: rgba(255, 255, 255, 0.75);
    font-family: myriadPro;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    padding-left: 6vw;
    padding-right: auto;
    margin-top: 14px;
}

#tab_index_items {
    position: relative;
    background-color: rgb(5, 50, 80);
    width: 84%;
    margin-top: 0px;
    margin-bottom: 0px;

    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;

    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

#tab_index_items .tab_spacer {
    z-index: 5;
}

#tab_index_items .index {
      height: 47px;
      z-index: 0;

      -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
}

#tab_index_items li p {
    color: rgba(255, 255, 255, 0.75);
    font-family: myriadPro;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    transform: scale(1, 1.6);
}

#tab_index_items .index a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    text-align: left;
    margin-top: 14px;

    margin-left: 6px;
    margin-right: 6px;
}

#tab_index_items .index a:hover,
#tab_index_items .index a.active {
    color: rgba(255, 255, 255, 1);
}

@media screen and (max-width: 600px) {
    #tab_index div:nth-child(3) {
        width: 18%;
    }

    #tab_index div:nth-child(3) p {
        font-size: 12px;
        margin-top: 9px;
        padding-left: 2vw;
    }

    #tab_index_items {
        width: 82%;
    }

    #tab_index_items .index {
          height: 35px;
    }

    #tab_index_items li p {
        font-size: 14px;
        margin-top: 6px;
    }

    #tab_index_items .index a {
        font-size: 12px;
        margin-top: 9px;
    }
}

/* Footer */
.page-footer {
    background-color: rgb(5, 50, 80);
    padding-top: 5vw;
    padding-bottom: 6vw;
    z-index: 1;
}

.page-footer div {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.page-footer div div:first-child {

}

.page-footer div div:first-child ul {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 0px;

    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.page-footer div div:first-child ul li {
    font-family: myriadPro;
    font-weight: bold;
    transform: scale(1, 0.9);
    text-align: center;
    font-size: 1.3vw;
    color: rgba(255, 255, 255, 0.7);

    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.page-footer div div:first-child ul li a {
    font-family: myriadPro;
    font-weight: bold;
    font-size: 1.3vw;
    color: rgba(255, 255, 255, 0.7);
    transform: scale(1, 0.9);
}

.page-footer div div:first-child ul li a:hover,
.page-footer div div:first-child ul li a.active {
    color: rgba(255, 255, 255, 1);
}

.page-footer div div:nth-child(2) {

}

.page-footer div div:nth-child(2) p {
    font-family: myriadPro;
    font-weight: bold;
    font-size: 1.3vw;
    color: rgba(255, 255, 255, 0.7);
    transform: scale(1, 0.9);
}

@media screen and (max-width: 600px) {
    .page-footer {
        padding-top: 16vw;
        padding-bottom: 0.1vw;
    }

    .page-footer div {
        width: 96%;
        margin-left: auto;
        margin-right: auto;
    }

    .page-footer div div:first-child ul {
        display: inline;
    }

    .page-footer div div:first-child ul li {
        text-align: center;
        font-size: 2.4vw;
        display: inline;
        margin-left: 1vw;
        margin-right: 1vw;
    }

    .page-footer div div:first-child ul li a {
        font-size: 2.4vw;
    }

    .page-footer div div:nth-child(2) p {
        font-size: 2.4vw;
    }
}
