﻿/* COMMON STYLES */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Roboto', sans-serif;
    position: relative;
    height: 100%;
    width: 100%;
    color: #ffffff;
}

@media (min-width: 1024px) {
    body {
        font-size: 18px;
    }
}

@media screen and (max-width: 1023px) {
    body {
        font-size: 16px;
    }

    .page-content {
        top: 10%;
        left: 0;
    }
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.page-content {
    position: relative;
}

.page-content .main {
    position: relative;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 2em;
    padding-bottom: 2em;
}

.page-content p {
    line-height: 1.5em;
}

/* HEADER STYLES */

.header {
    background-color: #00011f;
}

ul.menu {
    display: inline-block;
}

@media (min-width: 1024px) {

    ul.menu {
        list-style-type: none;
    }

    ul.menu li {
        vertical-align: middle;
        display: inline-block;
        color: rgba(255, 255, 255, 0.5);
    }

    ul.menu li.menu-logo {
        padding-left: 1em;
    }

    ul.menu li.menu-elem {
        padding: 2em 1em;
    }

    ul.menu li.menu-elem:hover {
        color: #ffffff;
        cursor: pointer;
    }
}

@media screen and (max-width: 1023px) {

    .header  {
        display: none;
    }
}

/* FOOTER STYLES */

.footer {
    position: relative;
    padding: 1em;
    border-top: 1px solid #FFFFFF;
}

.footer .footer-contact {
    width: 45%;
}

.footer .footer-contact h4 {
    padding: 0 0 1em 0;
}

.footer .footer-contact p {
    padding: 0;
}

.footer .footer-contact p {
    font-size: 0.8em;
    margin: 0;
}

.footer .footer-menu {
    position: absolute;
    top: 0;
    right: 5%;
    padding-right: 1em;
    text-align: right;
}

.footer .footer-menu ul {
    list-style-type: none;
    margin-top: 1em;
}

.footer .footer-menu ul li {
    font-size: 0.8em;
}

.copyright {
    margin-top: 1em;
    font-size: 0.6em;
    text-align: center;
}

.footer .copyright p {
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 1023px) {
    .footer {
        text-align: center;
    }

    .footer .footer-menu {
        position: static;
    }

    .footer .footer-contact {
        width: 100%;
    }
}

/* WHITE PAGES STYLES */

.white-page-container {
    position: relative;
    background-color: #ffffff;
    padding-left: 5%;
    padding-right: 5%;
    color: #000000;
    padding-bottom: 1em;
}

.white-page-container p, .white-page-container li {
    color: rgba(0, 1, 31, 0.8);
}

/* COMMON FONT STYLES */

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, li {
    font-family: 'Fira Sans', sans-serif;
}

h1 {
    font-size: 2em;
}

h1.large {
    font-size: 2.4em;
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1.2em;
}

h4 {
    font-size: 1em;
}

/* COMMON BUTTON STYLES */

.button {
    font-family: 'Fira Sans', sans-serif;
    font-size: 0.9em;
    padding: 1em 3em 1em 3em;
    display: inline-block;
}

.button:hover {
    cursor: pointer;
}

.button-clear-black {
    border: 1px solid #00011f;
    color: #00011f;
}

.button-clear-black:hover {
    background-color: #00011f;
    color: #FFFFFF;
}

.button-black {
    background-color: #00011f;
    border: 1px solid #00011f;
    color: #FFFFFF;
}

.button-black:hover {
    background-color: #FFFFFF;
    color: #00011f;
}

.button-clear-white {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

.button-clear-white:hover {
    border: 1px solid #FFFFFF;
    background-color: #FFFFFF;
    color: #00011f;
}

.button-white {
    background-color: #FFFFFF;
    color: #00011f;
    border: 1px solid #FFFFFF;
}

.button-white:hover {
    background-color: #00011f;
    color: #FFFFFF;
}