/* CSS file for design for the website */
/* BASE */

/* HTML */

html {
    min-height: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    bottom: 0;
    overflow-x: hidden;
}

/* #### */
/* BODY */

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    bottom: 0;
    text-align: left;
    font-family: Roboto, sans-serif;
    font-size: 0.8em;
    font-style: normal;
    background: #EFEFEF;
    word-wrap: break-word;
}

/* #### */
/* * */

* {
    outline: none !important;
}

/* #### */
/* CONTAINER */

#container {
    position: relative;
    min-height: 100%;
    text-align: left;
}

/* #### */
/* CONTENT */

#content {
    min-height: 100vh;
    display: -ms-flexbox;
    -ms-flex-direction: column;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

/* #### */
/* H1 */

h1 {
    font-family: Roboto, sans-serif;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 0;
}

/* #### */
/* H2 */

h2 {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 24px;
}

/* #### */
/* H3 */

h3 {
    font-family: Roboto, sans-serif;
    font-size: 22px;
    font-weight: bold;
}

/* #### */
/* HR */

hr {
    border: 1px solid #FF0000;
    margin-bottom: 25px;
}

/* #### */
/* P */

p {
    text-align: left;
    text-indent: 0px;
    line-height: 25px;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
}

/* #### */
/* A */

a {
    color: #0000FF;
    text-decoration: none;
}

a:hover {
    color: #FF0000;
    text-decoration: none;
}

/* #### */
/* IN-PROGRESS */

/*.in-progress
{
    background-color: #0000FF;
}*/

/* #### */
/* NO_SELECTION */

/*.no_selection
{
	-khtml-user-select : none;
	-webkit-user-select : none;
	-moz-user-select : -moz-none;
	-ms-user-select : none;
	user-select : none;
}*/

/* #### */
/* IMG */

img {
    max-width: 100%;
    height: auto;
}

/* #### */
/* ELEMENTS-CENTERING */

.elements-centering {
    text-align: center;
}

/* #### */
/* BODY-CONTENT */

#body-content {
    padding-top: 66px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 66px;
    margin: 0 auto;
    max-width: 1600px;
    height: 100%;
    min-height: 100%;
}

/* #### */
/* CONTACT FORM */

::-ms-clear {
    display: none;
}

/* #### */
/* TEXTCOLORPRIMARY */

.textcolorprimary {
    font-family: Helvetica, Roboto, sans-serif;
    font-weight: 700;
    font-size: 1.6em;
    color: white;
    height: 66px;
    line-height: 64px;
    padding: 0 15px;
    margin: 0;
    float: left;
}

.textcolorprimary:hover {
    color: #FFFFFF;
}

@media only screen and (max-width: 319px) {
    .textcolorprimary {
        display: none;
    }
}

@media only screen and (min-width: 1160px) {
    .textcolorprimary {
        display: none;
    }
}

/* #### */
/* WARNING */

.warning {
    color: #FF0000;
}

/* #### */
/* SPACER */

.spacer {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

/* #### */
/* FOOTER */

footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #FF0000;
    text-decoration: none;
    text-align: right;
    color: white;
    font-family: Helvetica, Roboto, sans-serif;
    font-size: 1.4em;
    font-weight: bold;
    padding-left: 14px;
    padding-right: 14px;
    position: relative;
    height: 100px;
    bottom: 0;
    right: 0;
    left: 0;
}

footer a:hover {
    color: #FFFF00;
}

/* #### */
/* MOBILE-MENU A */

.mobile-menu a {
    height: 66px;
    margin: 0;
    padding: 0 22.5px;
    line-height: 66px;
    border-left: 4px solid #FFFFFF;
    text-decoration: none;
    color: white;
    font-family: Helvetica, Roboto, sans-serif;
    font-size: 1.4em;
    font-weight: bold;
    display: inline-block;
    margin: 0 0px;
    transition: all .2s;
    transition-timing-function: linear;
}

/* #### */
/* HEADER */

.header {
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
    height: 66px;
    color: #FFFFFF;
    background-color: #FF0000;
    box-shadow: 0 0 8px 5px #424242;
    position: fixed;
    z-index: 2;
}

/* #### */
/* MOBILE-MENU */

.mobile-menu {
    float: right;
}

.mobile-menu-active {
    background-color: #0000FF;
}

.mobile-menu-focus {
    background-color: #0000FF;
}

.mobile-menu a:hover {
    background-color: #0000FF;
}

/* #### */
/* RESPONSIVE */

/* SITE-PUSHER */

@media only screen and (max-width: 1159px) {
    .site-pusher {
        min-height: 100vh;
    }
    .site-pusher {
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -ms-transform: translateX(0px);
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
	
    /* #### */
    /* HEADER */
	
    .header {
        position: static;
    }
	
    /* #### */
    /* HEADER-ICON */
	
    .header-icon {
        position: relative;
        border-right-width: 0px;
        padding-right: 54px;
        display: block;
        float: left;
        height: 66px;
        cursor: pointer;
    }
    .header-icon:after {
        content: '';
        position: absolute;
        display: block;
        width: 1rem;
        height: 0;
        top: 16px;
        left: 15px;
        box-shadow: 0 10px 0 1px #FFFFFF, 0 16px 0 1px #FFFFFF, 0 22px 0 1px #FFFFFF;
    }
	
    /* #### */
    /* MOBILE-MENU */
	
    .mobile-menu {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        background-color: #FF0000;
        width: 250px;
        min-height: 100vh;
        -ms-transform: translateX(-250px);
        -webkit-transform: translateX(-250px);
        transform: translateX(-250px);
    }
    .mobile-menu a {
        display: block;
        height: 44px;
        text-align: center;
        line-height: 44px;
        border-bottom: 4px solid #FFFFFF;
        border-left: none;
    }
    .mobile-menu-active {
        background-color: transparent;
    }
    .mobile-menu-focus {
        background-color: transparent;
    }
    .mobile-menu a:active {
        background-color: #0000FF !important;
    }
    .mobile-menu a:hover {
        background-color: inherit;
    }
	
    /* #### */
    /* WITH-SIDEBAR */
	
    .with-sidebar {
        overflow: hidden;
        position: fixed;
    }
    .with-sidebar .site-pusher {
        -ms-transform: translateX(250px);
        -webkit-transform: translateX(250px);
        transform: translateX(250px);
    }
    .with-sidebar .site-cache {
        cursor: pointer;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6);
    }
	
    /* #### */
    /* BODY-CONTENT */
	
    #body-content {
        padding-top: 50px;
		padding-bottom: 50px;
		margin: 0;
    }
    
	/* #### */
}

/* #### */
/* MEDIA QUERIES */

/* HEADER */

@media screen and (max-width: 319px) {
    .header-icon {
        display: none;
    }
}

/* #### */
/* BODY */

@media screen and (max-width: 319px) {
    body {
        display: none;
    }
}

/* #### */
/* FOOTER */

@media screen and (max-width: 319px) {
    .footer-text {
        display: none;
    }
}

/* #### */

/* #### */
/* #### */