@font-face {
    font-family: "Roboto";
    src: url("../lib/roboto/Roboto-Regular.ttf");
}

html, * {
    font-family: 'Roboto', sans-serif;
}

html, body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

*, *:before, *:after {
    box-sizing: border-box;
}

img, iframe {
    max-width: 100%;
}

header {
    border-bottom: 5px solid #0ff;
    background-color: #333;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header > div#header_center img {
    margin: 5px 0;
    width: 120px;
    vertical-align: middle;
}

header > div#header_center a
{
    display: block;
    width: inherit;
    margin: 0 auto;
}

header a:active {
    color: black;
}

header > div#header_center, div#header_left, div#header_right {
    display: inline-block;
    flex-grow: 1;
    max-width: 33%;
}

header > div#header_center{
    max-width: 30%;
    text-align: left;
}

header ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

header > div#header_right > ul
{
    justify-content: flex-end;
}

header ul > li {
    border-left: 1px solid white;
    height: 100%;
    padding: 10px 0;
    min-width: 150px;
}

header ul > li:hover {
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

header ul > li:hover > a > span {
    text-decoration: underline;
}

header ul > li:hover > a > span, header ul > li:hover > a > i {
    color: #00ffff;
}

header ul > li:first-of-type {
    border-left: none;
}

header ul > li > a:link {
    text-decoration: none;
    outline: none;
    color: transparent;
}
header ul > li > a:visited {
    text-decoration: none;
    outline: none;
    color: transparent;
}
header ul > li > a:hover {
    text-decoration: none;
    outline: none;
    color: transparent;
}
header ul > li > a:active {
    text-decoration: none;
    outline: none;
    color: transparent;
}

header ul > li > a > i, header ul > li > a > span {
    font-size: 48px;
    display: block;
    color: white;
    margin: auto;
}

header > div#header_left > ul > li > a > i, header > div#header_right > ul > li > a > i
{
    font-size: 36px;
}

header ul > li > a {
    text-align: center;
    display: block;
}

header ul > li > a > span {
    font-size: 20px;
}

header > div#header_left > ul > li > a > img {
    width: 36px;
    margin: 0px;
}

header > div#header_center div
{
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    margin-left: 20px;
}

header > div#header_center a
{
    color: white;
    text-decoration: none;
}

header > div#header_center span
{
    display: block;
    width: 100%;
    font-size: 1.3em;
    text-align: left;
    color: white;
}

header > div#header_center span:first-of-type
{
    color: #00ffff;
    font-size: 2.5em;
}

header > div#menu_mobile
{
    display: none;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
}

header > div#menu_mobile:hover
{
    cursor: pointer;
    color: #00cccc;
}

header > div#menu_mobile > i
{
    font-size: 45px;
}

nav#mobile_navigation {
    display: none;
    background: #333;
    border-bottom: 5px solid #0ff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1002;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

nav#mobile_navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav#mobile_navigation ul li {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

nav#mobile_navigation ul li:first-of-type {
    border-top: none;
}

nav#mobile_navigation ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    color: white;
    text-decoration: none;
}

nav#mobile_navigation ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

nav#mobile_navigation ul li a i {
    font-size: 28px;
    color: white;
}

nav#mobile_navigation ul li a span {
    font-size: 1.15em;
    color: white;
}

nav#mobile_navigation ul li a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

main {
    text-align: center;
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
}

main > div#titleHolder > span {
    font-size: 2em;
}


main > div#page
{
    margin-top: 100px;
    z-index: 2;
    filter: none;
}

footer {
    border-top: 1px solid #111;
    background-color: #333;
    padding: 20px;
    color: #aaa;
}

footer > div#copyright {
    text-align: center;
}

footer a
{
    color: #00cccc;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #777;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #333;
}

body.mobile_view header > div#header_left
{
    display: none !important;
}

body.mobile_view header > div#header_left, body.mobile_view header > div#header_right
{
    display: none;
}

body.mobile_view header > div#menu_mobile
{
    display: block;
}
body.mobile_view  header > div#header_center{
    width: 100%;
}

div#contact_dialog, div#location_dialog {
    display: none;
}

div#contact_dialog > div#contact_dialog_background, div#location_dialog > div#location_dialog_background {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #333c;
}

div#contact_dialog > div, div#location_dialog > div {
    position: fixed;
    z-index: 1001;
    top: 10vh;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid #222;
    background: #fff;
    font-size: 1.2em;
    box-shadow: 0 0 10px 0 #fff;

}

div.dialog_header {
    padding: 30px;
    color: #00ffff;
    background: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

div.dialog_body {
    padding: 30px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

div.dialog_header > i {
    color: white;
    font-size: 36px;
}

div.dialog_header > i:hover {
    cursor: pointer;
    color: #00ffff;
}

div.dialog_header > h1 {
    display: inline-block;
    margin: 0;
}

div.dialog_body > div {
    padding: 10px 20px;
    width: 100%;
    text-align: center;
}

div.dialog_body > div > label {

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

div.dialog_body > div input, div.dialog_body > div textarea {
    padding: 5px 10px;
    font-size: 1.1em;
    width: 60%;
    min-width: 60%;
    margin-left: 20px;
}

div.dialog_body > div textarea {
    min-height: 100px;
}

div.dialog_body > div > button
{
    padding: 10px 40px;
    margin-top: 20px;
    background: #333333;
    color: white;
    border: 1px solid #111111;
    font-size: 1.1em;
}

div.dialog_body > div > button:hover {
    cursor: pointer;
    color: #00ffff;
}


@media screen and (max-width: 1250px) {
    header > div#header_center{
        width: 100%;
        max-width: 100%;
    }
    header > div#header_left, header > div#header_right
    {
        display: none;
    }

    header > div#menu_mobile
    {
        display: block;
    }

    nav#mobile_navigation {
        display: none;
    }

}

@media screen and (min-width: 1251px) {
    nav#mobile_navigation {
        display: none !important;
    }
}

@media screen and (max-width: 1000px) {
    header {
        padding: 10px 70px 10px 10px;
    }

    header > div#header_center div {
        margin-left: 10px;
    }

    header > div#header_center span:first-of-type {
        font-size: 2em;
    }

    header > div#header_center span {
        font-size: 1.1em;
    }

    main {
        padding-top: 20px;
    }

    main > div#page {
        margin-top: 40px;
    }

    div.dialog_header,
    div.dialog_body {
        padding: 20px;
    }

    div.dialog_body > div {
        padding: 10px 0;
    }

    div.dialog_body > div > label {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    div.dialog_body > div input,
    div.dialog_body > div textarea {
        width: 100%;
        min-width: 0;
        margin-left: 0;
        margin-top: 10px;
    }
}

@media screen and (max-width: 700px) {
    header {
        padding-right: 60px;
    }

    header > div#header_center img {
        width: 90px;
    }

    header > div#header_center span:first-of-type {
        font-size: 1.5em;
    }

    header > div#header_center span {
        font-size: 1em;
    }

    div#contact_dialog > div,
    div#location_dialog > div {
        top: 5vh;
        width: 94vw;
        max-height: 90vh;
    }

    div.dialog_header > h1 {
        font-size: 1.3em;
    }

    div.dialog_header > i {
        font-size: 30px;
    }
}