html {
    box-sizing: border-box;
    height: 100%;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    font-family: opensans-regular, Arial,Helvetica,sans-serif;
    color: #000000;
    font-size: 18px;
    line-height: 1.5em;
}

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;
}

.p1 {
    font-size: 1.666em;
    line-height: 1.5em;
}

.flex-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.bullet {
    position: absolute;
    z-index: 10000;
    top: 0;
	left: 50%;
}

.w3-top {
    position: fixed;
    width: 100%;
	height:180px;
    background: #666666;
    z-index: 9999;
    top: 0;
}

.top-container{height:100%; -webkit-align-items:center; align-items:center; -webkit-justify-content:center; justify-content:center}

.top-container2{-webkit-justify-content:space-between; justify-content:space-between}

.content-container {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
	margin-top:180px;
}

.content {
	height:100%;
    background: url(images/bg.png) center;
	background-size: cover;
}

.footer {
    -webkit-flex-shrink: 0;
	flex-shrink: 0;
    font-size: 0.666em;
    color: #7d7d7d;
}

.footer-container{-webkit-align-items:center; align-items:center; -webkit-justify-content:space-between; justify-content:space-between; -webkit-flex-wrap:wrap; flex-wrap:wrap;}

.button {
    width: 170px;
    height: 40px;
    background: #f7931e;
    border: none;
    color: #ffffff;
    font-size: 1.222em;
    cursor: pointer;
    border-radius: 10px;
}

.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%;
}

@media (max-width:600px) {
    body {
        font-size: 16px !important;
        line-height: 1.5em !important;
    }
	
	.logo {
		height: 85px;
	}

	.content-container {
		margin-top:140px !important;
	}
	
	.content {
		background: #f7931e !important;
	}
	
	.footer-container{-webkit-flex-direction:column; flex-direction:column}

	.button {
		width: 120px !important;
	}

    .w3-hide-x-small {
        display: none !important;
    }

    .w3-top {
        height:140px !important;
		padding: 0px 20px;
    }

    .w3-padding {
        padding: 30px 20px;
    }

    .w3-padding-footer {
        padding: 20px !important;
    }
}

@media (min-width:601px) and (max-width:992px) {
    .w3-hide-small {
        display: none !important;
    }

    .w3-top {
        padding: 0px 20px;
    }

    .w3-padding {
        padding: 30px 20px;
    }

    .w3-padding-footer {
        padding: 20px !important;
    }
}

@media (min-width:993px) and (max-width:1440px) {
    .w3-top {
        padding: 0px 60px;
    }

    .w3-padding {
        padding: 60px;
    }

    .w3-padding-footer {
        padding: 20px 60px !important;
    }
}

@media (min-width:1441px) {
    .w3-top {
        padding: 0px 16.66%;
    }

    .w3-padding {
        padding: 60px 16.66%;
    }

    .w3-padding-footer {
        padding: 20px 16.66% !important;
    }
}

@font-face {
    font-family: 'opensans-regular';
    src: url('font/opensans-regular-webfont.eot');
    src: url('font/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('font/opensans-regular-webfont.woff2') format('woff2'),
         url('font/opensans-regular-webfont.woff') format('woff'),
         url('font/opensans-regular-webfont.ttf') format('truetype'),
         url('font/opensans-regular-webfont.svg#opensans-regular') 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);
    }
