﻿html {
    box-sizing: border-box;
    height: 100%;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    height: 100%;
    background: #149c74;
    font-family: Sinkin500,Arial,Helvetica,sans-serif;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5em;
}

form {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

a:link.w3-text {
    color: inherit;
}

a:active.w3-text {
    color: inherit;
}

a:visited.w3-text {
    color: inherit;
}

a:hover.w3-text {
    text-decoration: none;
}

h1 {
    font-family: 'antonio-bold',Arial,Helvetica,sans-serif;
    font-size: 1.5em;
    line-height: 1.5em;
}

h2 {
    font-size: 1.333em;
    line-height: 1.5em;
}

h3 {
    font-size: 1em;
}

.bold {
    font-weight: bold;
}

.yellow {
    color: #ffff00;
}

.highlight {
    background: #ffff00;
}

.flex-container{display:-webkit-box; display:-webkit-flex; display:flex}
.directionV{-webkit-flex-direction:column; flex-direction:column}
.wrap{-webkit-flex-wrap:wrap; flex-wrap:wrap}

.content-center {-webkit-align-items:center; align-items:center; -webkit-justify-content:center; justify-content:center;}

.w3-top {
    position: fixed;
    width: 100%;
    background: #149c74;
    color: #ffffff;
    z-index: 9999;
    top: 0;
}

.content-container {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
}

.link-item {
    padding: 0px 20px;
}

.form {
    margin: 0px auto;
    max-width: 450px;
}

    .form label {
        display: inline-block;
    }

    .form .input {
        display: block;
        border: none;
		background: #ffffff;
        width: 100%;
        height: 40px;
        margin: 5px 0px;
        font-family: inherit;
        font-size: inherit;
    }

    .form .inputPhoto {
        border: 1px solid #ffffff!important;
		background: none!important;
    }
	
	.form .textarea {
		display: block;
		border: none; 
		background: #ffffff;
		width: 100%; 
        height: 4.5em;
        margin: 5px 0px;
        font-family: inherit;
        font-size: inherit;
    }

.grid-container {
    display: inline-grid;
    border: 1px solid #000000;
}

.grid-item {
    border: 1px solid #000000;
    padding: 5px 10px;
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
	-webkit-align-items:center; align-items:center;
	-webkit-flex-wrap:wrap; flex-wrap:wrap;
}

.grid-container2 {
    display: grid;
    border: 1px solid #000000;
}

.grid-container3 {
    display: inline-grid;
}

.grid-item2 {
    padding: 5px;
}

.grid-2 {
    grid-template-columns: auto auto;
}

.grid-3 {
    grid-template-columns: auto auto auto;
}

.grid-4 {
    grid-template-columns: auto auto auto auto;
}

.grid-5 {
    grid-template-columns: auto auto auto auto auto;
}

.criteria-container {
    display: inline-grid;
    grid-template-columns: auto auto;
}

.criteria-item {
    padding: 0px 5px;
}

.footer {
    -webkit-flex-shrink: 0;
	flex-shrink: 0;
	background: #000000;
    font-size: 0.666em; line-height: 1.5em;
    color: #ffffff;
}

.button {
    padding: 15px 60px;
    margin: 10px;
    background: #000000;
    border: none;
	border-radius: 10px;
    color: #ffffff;
    font-size: inherit;
    cursor: pointer;
}

.button2 {
    padding: 10px 30px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

.w3-padding, .w3-row-padding:after, .w3-row-padding:before, .w3-clear:after, .w3-clear:before, .w3-bar:before, .w3-bar:after {
    content: "";
    display: table;
    clear: both;
}

.w3-left {
    float: left !important;
}

.w3-right {
    float: right !important;
}

.w3-left-align {
    text-align: left !important;
}

.w3-right-align {
    text-align: right !important;
}

.w3-justify {
    text-align: justify !important;
}

.w3-center {
    text-align: center !important;
}

.w3-hide {
    display: none !important;
}

.w3-show-block, .w3-show {
    display: block !important;
}

.w3-show-inline-block {
    display: inline-block !important;
}

.w3-col, .w3-half, .w3-third, .w3-twothird, .w3-threequarter, .w3-quarter {
    float: left;
    width: 100%;
}

.w3-quarter {
    width: 24.99999%;
}

.w3-third {
    width: 33.33333%;
}

.w3-half {
    width: 49.99999%;
}

.w3-twothird {
	width:66.66666%;
}

.w3-whole {
	width:99.99999%;
}

.w3-padding-10 {
    padding: 10px;
}

@media (max-width:600px) {
    body {
        font-size: 16px !important;
        line-height: 1.5em !important;
    }

    h1 {
        font-size: 1.25em !important;
        line-height: 1.5em !important;
    }

    h2 {
        font-size: 1.125em !important;
        line-height: 1.5em !important;
    }

    .w3-top {
        padding: 20px !important;
    }

    .content-container {
        padding: 20px;
    }

    .grid-item {
        padding: 5px !important;
    }

    .w3-hide-x-small {
        display: none !important;
    }

    .w3-margin {
        margin: 70px 20px 30px 20px;
    }

    .w3-padding-footer {
        padding: 10px 20px !important;
    }

    .w3-col.xs6 {
        width: 49.99999%;
    }
}

@media (min-width:601px) and (max-width:992px) {
    .w3-top {
        padding: 20px !important;
    }

    .content-container {
        padding: 20px;
    }

    .w3-margin {
        margin: 85px 20px 30px 20px;
    }

    .w3-padding-footer {
        padding: 10px 20px !important;
    }

    .w3-col.s3 {
        width: 24.99999%;
    }

	.w3-col.s4 {
		width:33.33333%;
	}

    .w3-col.s6 {
        width: 49.99999%;
    }
}

@media (min-width:993px) and (max-width:1440px) {
    .w3-top {
        padding: 30px 60px !important;
    }

    .content-container {
        padding: 30px;
    }

    .w3-margin {
        margin: 105px 60px 60px 60px;
    }

    .w3-padding-footer {
        padding: 10px 60px !important;
    }

    .w3-col.l3 {
        width: 24.99999%;
    }

    .w3-col.l6 {
        width: 49.99999%;
    }
}

@media (min-width:1441px) {
    .w3-top {
        padding: 30px 16.66% !important;
    }

    .content-container {
        padding: 30px;
    }

    .w3-margin {
        margin: 105px 16.66% 60px 16.66%;
    }

    .w3-margin2 {
        margin: 105px 60px 0px 60px !important;
    }

    .w3-padding-footer {
        padding: 10px 16.66% !important;
    }

    .w3-col.xl2 {
        width: 16.66666%;
    }

    .w3-col.xl3 {
        width: 24.99999%;
    }

    .w3-col.xl6 {
        width: 49.99999%;
    }
}

@font-face
{
font-family: Sinkin500;
src: url('fonts/sinkinsans-500medium-webfont.eot');
src: url('fonts/sinkinsans-500medium-webfont.eot?#iefix') format('embedded-opentype'),
	 url('fonts/sinkinsans-500medium-webfont.woff') format('woff'),
	 url('fonts/sinkinsans-500medium-webfont.ttf') format('truetype'),
	 url('fonts/sinkinsans-500medium-webfont.svg#sinkinsans-500medium-webfont')format('svg');
}

@font-face {
    font-family: 'antonio-bold';
    src: url('fonts/antonio-bold-webfont.eot');
    src: url('fonts/antonio-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/antonio-bold-webfont.woff') format('woff'),
         url('fonts/antonio-bold-webfont.ttf') format('truetype'),
         url('fonts/antonio-bold-webfont.svg#antonio-bold-webfont') format('svg');
    font-weight: normal;
    font-style: normal;
}

#elevator_item {
    width: 63px;
    height: 63px;
    position: fixed;
    right: 0px;
    bottom: 0px;
    -webkit-transition: opacity .4s ease-in-out;
    -moz-transition: opacity .4s ease-in-out;
    -o-transition: opacity .4s ease-in-out;
    opacity: 1;
    z-index: 100020;
    display: none;
}

    #elevator_item.off {
        opacity: 0;
        visibility: hidden;
    }

#elevator {
    display: block;
    width: 63px;
    height: 63px;
    background: url(images/iconTop.png) center center no-repeat;
    background-color: #000000;
    background-color: rgba(0,0,0,.6);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
    cursor: pointer;
    margin-bottom: 10px;
}

    #elevator:hover {
        background-color: rgba(0,0,0,.7);
    }

    #elevator:active {
        background-color: rgba(0,0,0,.75);
    }
