@font-face {
  font-family: 'FontAwesome';
  font-style: light;
  font-weight: 300;
  src: url(/lib/fontawesome/webfonts/fa-light-300.woff2) format('woff2');
}
@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: 400;
  src: url(/lib/fontawesome/webfonts/fa-regular-400.woff2) format('woff2');
}
@font-face {
  font-family: 'FontAwesome';
  font-style: bold;
  font-weight: 900;
  src: url(/lib/fontawesome/webfonts/fa-solid-900.woff2) format('woff2');
}
@font-face {
  font-family: 'FontAwesomeBrands';
  font-style: normal;
  font-weight: 400;
  src: url(/lib/fontawesome/webfonts/fa-brands-400.woff2) format('woff2');
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 16px;
}
html,body{
	height:100%;
}
body {
	color: #000;
	font-family: 'Raleway', sans-serif;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	text-align: left;
	background:var(--background);
	overflow-y:auto;
}

input,textarea,button,select{
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
}
p {
	text-align: left;
	margin: 0px;
	padding: 10px;
}

article ul{
	list-style-type:none;
}

article ul.list>li{
	padding-bottom:10px;
	padding-left:20px;
}

article ul.list>li:before{
	content: "\f312";
    font-family: "FontAwesome";
    font-weight: lighter;
    color: var(--base);
    font-size: 14px;
    position: relative;
    top: 0;
	margin-left:-20px;
    margin-right: 5px;
}

.pad50{ padding:50px; }

a{
	color:var(--dark);
	text-decoration:none;
}
a:hover{
	text-decoration:underline;
}
h2 a{
	text-decoration:none !important;
	color:#000 !important;
}
#top-bar a{
	text-decoration:none !important;
	color:#fff !important;
}

#top-bar{
	list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
	background:var(--dark);
}
#top-bar>li{
	float:right;
	padding:5px 10px;
}
#top-bar>li>a>i{
	margin-right:5px;
}

#credits{
	background: rgba(255,255,255,0.6);
    display: flex;
	flex-wrap:wrap;
    justify-content: center;
	align-items:center;
}
#credits>img{
	margin: 35px;
}

button,a.button,input[type=submit]{
	color:#fff;
	background:var(--dark);
	border:none;
	padding:15px;
	margin:10px;
	outline:none;
	cursor:pointer;
}
button:hover,a.button:hover,input[type=submit]:hover{
	background:var(--hilight);
	text-decoration:none !important;
}

img.styled{
	width:calc(100% - 20px) !important;
	margin:10px;
	border-radius:10px;
}

h1 {
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-weight:bold;
	font-size: 34px;
	
	margin-bottom: 5px;
	text-align:center;
	clear:both;
}
h2 {
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-size:30px;
	font-weight:bold;
	margin-bottom: 5px;
	text-align:center;
	clear:both;
}
h3 {
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-size:26px;
	font-weight:normal;
	margin-bottom: 5px;
	text-align:left;
	padding-left:10px;
	clear:both;
}
h4 {
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-size:22px;
	font-weight:normal;
	margin-top:5px;
	margin-bottom: 0;
	text-align:left;
	padding-left:10px;
	clear:both;
}
h1.left,h2.left{
	text-align:left;
	padding-left:10px;
}
div{
	overflow:hidden;
	position:relative;
}
table{
	border-collapse:collapse;
}
th,td{
	vertical-align:baseline;
}
#login{
	width: 330px;
    margin: 0 auto;
}

span.input-wrapper{
	display:block;
	margin:15px 10px;
	position:relative;
}
input[type=text],input[type=password]{
	padding: 17px 10px 5px;
	background:none;
	border: none;
    border-bottom: 1px solid var(--base);
	width: 300px;
	max-width:100%;
	box-sizing: border-box;
	z-index:10;
}
select{
	padding: 5px;
    border: 1px solid var(--base);
	margin:0 5px;
}
label{
	cursor:text;
}
textarea{
	padding: 17px 10px 5px;
	background:none;
    border: 1px solid var(--base);
	width:100%;
	height:150px;
	box-sizing:border-box;
	resize:none;
	z-index:10;
}
input[type=text]:focus,input[type=password]:focus{
	border-bottom: 2px solid var(--hilight);
	margin-bottom:-1px;
	outline: none;
}
input[type=text].input-error{
	border-bottom: 2px solid red;
	margin-bottom:-1px;
}
input[type=text].input-valid{
	border-bottom: 2px solid green;
	margin-bottom:-1px;
}
textarea:focus{
	border: 2px solid var(--hilight);
	padding: 16px 9px 4px;
	outline: none;
}
textarea.input-error{
	border: 2px solid red;
	padding: 16px 9px 4px;
}
textarea.input-valid{
	border: 2px solid green;
	padding: 16px 9px 4px;
}
input + label, textarea + label{
	color:#000;
	position: absolute;
    left: 0;
    padding: 17px 10px 0;
	transition: padding-top 0.2s ease-out, font-size 0.2s ease-out, color 0.2s ease-out;
}
input:not(:placeholder-shown) + label, textarea:not(:placeholder-shown) + label{
	font-size: 13px;
    padding-top: 2px;
	transition: padding-top 0.2s ease-out, font-size 0.2s ease-out, color 0.2s ease-out;
}
input:not(:placeholder-shown) + label:after, textarea:not(:placeholder-shown) + label:after{
	content:":";
}
input[type=text]:focus + label{
	color:var(--hilight) !important;
}
.form-error{
	display:none;
	clear:both;
}

.page-width{
	position:relative;
	width:100%;
	max-width: 1100px;
	margin-left:auto;
	margin-right:auto;
}

.half-width{
	width:50%;
	float:left;
}
.third-width{
	width:33%;
	float:left;
	min-height:400px;
}
.twothird-width{
	width:67%;
	float:left;
	min-height:400px;
}
.min400h{
	min-height:400px;
}
.half-width img, .third-width img, .twothird-width img{
	width:100%;
}

.flex-row{
	display:flex;
	flex-direction:row;
	align-items:center;
}

.shaded-block{
	background:rgba(255,255,255,0.9);
	padding:15px;
	box-sizing:border-box;
}

a.big-link{
	display: block;
    width: calc(100% - 40px);
    height: 200px;
    background: rgba(255,255,255,0.6);
    position: relative;
    margin: 20px;
    border-radius: 10px;
    margin-top: 50px;
	color:#000 !important;
	text-decoration:none !important;
	transition: background 0.3s ease-in;
}
a.big-link:hover{
	background: rgba(255,255,255,0.9);
	transition: background 0.1s ease-out;
}
a.big-link>h3{
	position:absolute;
	top:70px;
	display:block;
	width:100%;
	padding:0;
	text-align:center;
	text-transform: uppercase;
    font-weight: bold;
    font-size: 25px;
	color:var(--dark) !important;
	transition:font-size 0.3s ease-in;
}
a.big-link:hover>h3{
	font-size:28px;
	transition:font-size 0.1s ease-out
}
a.big-link>p{
	display:block;
	width:calc(100% - 20px);
	text-align:center;
	position:absolute;
	bottom:10px;
}
a.big-link>i{
	display: flex;
	margin:0 auto;
    width: 100px;
    height: 80px;
    align-items: center;
    justify-content: center;
    font-size: 40px;
	color:var(--dark);
	transition:font-size 0.3s ease-in;
}
a.big-link:hover>i{
	font-size: 42px;
	transition:font-size 0.1s ease-out
}

header{
	display:block;
	width:100%;
	height:50px;
	position:fixed;
	top:0;
	left:0;
	z-index:1000;
	background:#fff;
	border-bottom:1px solid var(--lowlight);
	overflow:visible;
}

#social-links{
	position:absolute;
	list-style-type:none;
	margin:0;
	padding:0;
	top:0;
	left:0;
}
#social-links>li{
	display:block;
	float:left;
	font-size:26px;
}
#social-links a:hover{
	color:var(--dark) !important;
}
#social-links>li>a{
	display:flex;
	align-items:center;
	justify-content:center;
	text-decoration:none !important;
	width:36px;
	height:36px;
}
#call-link{
	padding:10px;
	text-align:right;
	width:100%;
}
#logo{
	height: 100px;
    float: left;
    background: #fff;
    border-bottom-right-radius: 50%;
    padding: 5px 15px 5px 5px;
}
#logo-text{
	height:50px;
	float:left;
	display: flex;
    align-items: center;
}
#logo-text>h1{
	text-transform:uppercase;
	padding:0;
	margin:0;
	font-weight:700;
}
#logo>img{
    margin: 0;
    display: block;
	height:100%;
	transform:rotate(0deg);
	transition: transform 0.3s ease-out
}
#logo>img.preload{
	transform:rotate(720deg)
}
#logo-mobile{
	display:none;
}
#tagline{
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	color:#444;
    padding-right: 20px;
	text-align: right;
    width: 100%;
}

article{
	min-height:calc(100vh - 100px);
	margin-top: 100px;
}

footer{
	background:var(--dark);
	color:#fff;
}
footer a{
	text-decoration:none !important;
	color:#fff !important;
}
.footer-list{
	list-style-type:none;
	margin:0 20px 20px;
	padding:0;
	font-size:14px;
	float:right;
	clear:both;
}
.footer-links{
	list-style-type:none;
	margin:20px;
	padding:0;
	font-size:13px;
	float:left;
	clear:both;
}
.contact-list{
	list-style-type:none;
	margin:20px;
	padding:0;
	font-size:16px;
}
.contact-list>li>i{
	color:var(--base);
}
.footer-list>li, .contact-list>li{
	position:relative;
	padding:5px 0 5px 20px;
	margin:0;
}
.footer-links>li{
	position:relative;
	padding:2px 0;
	margin:0;
}
footer .footer-links a:hover{
	text-decoration:underline !important;
}
.footer-list>li>i, .contact-list>li>i, .contact-list>li>span.social{
	position:absolute;
    left: 0px;
    top: 7px;
}
.contact-list>li>span.social{
	display: flex;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
	border-radius:2px;
}
.contact-list>li>span.social:before{
	font-family: "FontAwesomeBrands";
    color: #fff;
    font-size: 12px;
	font-weight:normal;
}
.contact-list>li>span.social.facebook{ background:#39579B }
.contact-list>li>span.social.facebook:before{ content:"\f39e" }

.contact-list>li>span.social.instagram{
	background: #d6249f;
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.contact-list>li>span.social.instagram:before{ content:"\f16d" }

.contact-list>li>span.social.linkedin{ background:#0077B5 }
.contact-list>li>span.social.linkedin:before{ content:"\f0e1" }

.contact-list>li>span.social.twitter{ background:#1DA1F2 }
.contact-list>li>span.social.twitter:before{ content:"\f099" }

.heading-block{
	padding: 50px 0 50px;
    background: rgba(255,255,255,0.5);
}
.heading-block>h1{
	font-size:40px;
	text-shadow: 0px 0px 40px rgba(255, 255, 255, 0.9);
	color:var(--dark);
}

.spacer{
	height:100px;
}

#footer-logo{
	height:50px;
	width:auto;
	float:right;
	margin:20px;
	margin-bottom:10px;
	clear:both;
}
#footer-title{
	color:#fff;
	font-size: 26px;
    text-align: right;
    margin: 0;
    padding: 0 20px 10px;
}
#footer-note{
	text-align:right;
	padding:5px 20px;
	float: right;
    clear: both;
	font-size:13px;
}
#menu-wrap{
	display:block;
	padding:0;
	float:right;
	width:calc(100% - 110px);
	height:50px;
}
#menu-key{
	display:none;
}

#menu{
	height:50px;
	list-style-type:none;
	margin:0;
	padding:0;
	float:right;
}
#menu>li{
	float:left;
	height:50px;
	padding:0;
	margin:0;
	box-sizing:border-box;
	border-left:1px solid transparent;
	border-right:1px solid transparent;
	transition: border-color 0.2s ease-in;
}
#menu>li>a,#menu>li>span,.submenu>li>a,.submenu>li>span{
	display:flex;
	align-items:center;
	justify-content:center;
	color:var(--dark) !important;
	text-decoration:none !important;
	padding:0 30px;
	font-size:16px;
	font-weight:bold;
	transition: color 0.2s ease-in;
	height:100%;
	cursor:pointer;
}
.submenu>li>a,.submenu>li>span,#menu>li.sub>a,#menu>li.sub>span{
	font-size:14px;
}
#menu>li.sub{ display:none }
#menu>li.active,.submenu>li.active{
	#border-color:var(--base) !important;
	#transition: border-color 0.2s ease-in;
}
#menu>li.active>a,#menu>li.active>span,.submenu>li.active>a,.submenu>li.active>span{
	color:var(--base) !important;
}

#menu>li:hover,.submenu>li:hover{
	border-color:var(--lowlight);
	transition: border-color 0.5s ease-in;
}
#menu>li:hover>a,#menu>li:hover>span,.submenu>li:hover>a{
	color:var(--base) !important;
	transition: color 0.5s;
}
#menu>li.expand>span:after{
	content:"\f0d7";
	font-family: "FontAwesome";
	font-weight:bold;
	margin-left: 0.3em;
}
#submenu{
	float: right;
    clear: both;
}
.submenu{
	list-style-type:none;
	display:none;
	margin:0;
	height:0;
	overflow:hidden;
}
.submenu.open{
	height:auto;
	display:block;
	padding:10px 0 0;
	transition: height 0.2s ease-out;
}
.submenu>li{
	float:left;
	height:50px;
	padding:0;
	margin:0;
	box-sizing:border-box;
	border-bottom:3px solid transparent;
	transition: border-bottom-color 0.2s ease-in;
}

.page-back{
	position: fixed;
	top:50px;
    width: 100%;
    height: 110vh;
	background-size: cover;
    background-position: center center;
	z-index:-1;
	opacity:0.2;
}

.bottom-image{
	margin-bottom:-5px;
	margin-top:50px;
	border-top-left-radius:10px;
	border-top-right-radius:10px;
	max-width:100%;
}

/*
#menu>li:hover>a{
	color:#333 !important;
	transition: color 0.2s;
}*/
.text-overlay{
	margin: 10px;
    background: rgba(255,255,255,0.8);
    padding: 20px 10px;
    border-radius: 5px;
}

.pad-top{ padding-top:50px }
.pad-bottom{ padding-bottom:50px }

.fixed-image{
	display:block;
	width:100%;
	margin:0;
}

.map{
	border:0;
	width:100%;
	height:500px;
}

.full-width-image{
	display:flex;
	align-items:center;
	background-repeat: no-repeat;
	background-size:cover;
	background-position:center center;
}
.full-width-image.big-text-block{
	padding-top:0 !important;
	justify-content:center;
	opacity:0.3;
}
.full-width-image.big-text-block.visible{
	opacity:1;
	transition: opacity 1.5s
}

.image-block{
	display:block;
	position:relative;
	width:100%;
	height:400px;
	background-repeat: no-repeat;
	background-size:cover;
	background-position:center center;
	box-sizing:border-box;
}
.image-block.nofade>div{
	background: rgba(50,50,50,0.3);
}
.image-block>div{
	color: #fff;
    width: 350px;
	height:100%;
    background: rgba(50,50,50,0.6);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
    float: left;
	padding:15px;
	transition: background-color 0.5s;
}
.image-block.right>div{
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 15% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 15% 100%);
    float: right;
}
.image-block:not(.nofade):hover>div{
	background: var(--base);
	transition: background-color 0.5s;
}
.image-block>div h3{
	text-align:left;
	color:#fff;
}
.image-block.right>div h3{
	text-align:right;
}
.image-block>div p{
	text-align:left;
	padding-right:40px;
}
.image-block.right>div p{
	text-align:right;
	padding-left:40px;
	padding-right:10px;
}


.full-width-image>div{
	box-sizing:border-box;
	padding:50px;
}
.full-width-image>div.visible{
	background-color:rgba(255,255,255,0.9);
	transition: background-color 1.5s ease-in;
}

.mini-feature{
	position: relative;
    top: 40px;
	padding-bottom:50px;
}
.mini-feature.visible{
	top:0;
	transition: top 1s ease-out;
}
a.mini-feature{
	display:block;
	text-decoration:none !important;
	color:#000 !important;
}
.feature-icon{
	width: 90%;
    margin: 0 auto 20px;
	font-size: 50px;
    border-bottom: 2px solid #ccc;
	border-radius:10px;
    text-align: center;
    overflow: visible;
}
.feature-icon>i{
    position: relative;
    bottom: -25px;
    background: #fff;
    padding: 0 20px;
}

.mini-feature p{
	padding:10px 45px;
}

.social-floating{
	list-style-type:none;
	padding:0;
	margin:0;
	position:fixed;
	bottom:0;
	left:0;
}
.social-floating>li{
	display:block;
	float:left;
	width:50px;
	height:50px;
	margin:0;
	padding:0;
	opacity:0.8;
	transition: opacity 0.2s;
}
.social-floating>li:hover{
	opacity:1;
	transition: opacity 0.2s;
}
.social-floating>li>a{
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height:100%;
}
.social-floating>li>a:before{
	font-family: "FontAwesomeBrands";
    color: #fff;
    font-size: 30px;
	font-weight:normal;
}
.social-floating>li.facebook{ background:#39579B }
.social-floating>li.facebook>a:before{ content:"\f39e" }

.social-floating>li.instagram{
	background: #d6249f;
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.social-floating>li.instagram>a:before{ content:"\f16d" }

.social-floating>li.linkedin{ background:#0077B5 }
.social-floating>li.linkedin>a:before{ content:"\f0e1" }

.social-floating>li.twitter{ background:#1DA1F2 }
.social-floating>li.twitter>a:before{ content:"\f099" }


.slideshow-images{
	position:relative;
	height:100%;
}
.slideshow-images>img{
	display:block;
	height:100%;
	margin: 0 auto;
}
.slideshow-image{
	position:absolute;
	top:100%;
	width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	filter:grayscale(100%) blur(5px);
}
.slideshow-image.selected{
	top:0;
	filter:none;
	transition: filter 1.5s
}
.slideshow-image.slide-out{
	z-index:10;
	top:100%;
	opacity:0.5;
	transition: filter 0.5s, top 0.5s, opacity 0.5s;
}
.slideshow-controls{
	list-style-type:none;
	position:absolute;
	bottom:0;
	right:5px;
	margin:0;
	padding:0;
}
.slideshow-controls>li{
	float:left;
	margin:0;
	padding:0;
	display:block;
	width:20px;
	height:30px;
	cursor:pointer;
}
.slideshow-controls>li:before{
	content:"\f111";
	font-family: "FontAwesome";
	font-weight:normal;
	font-size:10px;
	color:var(--base);
	transition: font-size 0.2s;
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height:100%;
}
.slideshow-controls>li:hover:before{
	font-size:12px;
	transition: font-size 0.2s
}
.slideshow-controls>li.selected:before{
	font-weight:bold;
	font-size:12px;
	transition: font-size 0.5s
}

.footer-block{
	float: left;
    overflow: hidden;
    clear: both;
    padding: 20px;
}
.footer-block p{
	padding:10px 0;
}

.block-label{
    padding: 2px;
    margin: 0 0 5px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    opacity: 0.6;
}
.flash-right{
	position:absolute;
	bottom:0;
	right:0;
	width:20%;
	height:80%;
	-webkit-clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%);
	background:var(--dark);
}

.quote p{
	padding: 50px;
    font-family: 'Architects Daughter', cursive;
	font-size: 22px;
}
.quote:before{
	position:absolute;
	top:20px;
	left:20px;
	content:"\f10d";
	font-family: "FontAwesome";
	font-weight:bold;
	font-size:22px;
	color:var(--dark);
}
.quote:after{
	position:absolute;
	bottom:20px;
	right:20px;
	content:"\f10e";
	font-family: "FontAwesome";
	font-weight:bold;
	font-size:22px;
	color:var(--dark);
}

@media screen and (max-height: 500px){
	.expanded .image-scroller{
	height:50px;
	}
	.expanded .image-scroller>div{
		height:100%;
	}
	.expanded .image-scroller img{
		margin:0 5px;
	}
	
	.image-expand-wrapper.expanded .image-main-wrapper{
		height:calc(100% - 60px);
	}
}
@media screen and (max-width: 1100px){
	.half-width, .third-width, .twothird-width{
		width:100%;
		min-height:0;
	}
	.min400h{ min-height:0 }
	
	.hide-900{ display:none }
	
	#logo{
		height:50px;
		padding-top:0;
		padding-bottom:0;
	}
	#footer-title{
		font-size: 16px;
	}
	#menu-wrap{
		width: calc(100% - 65px);
	}
	#menu>li>a,#menu>li>span{
		padding:0 20px;
	}
	
	.submenu>li{
		height:40px;
	}
	.submenu>li>a,.submenu>li>span{
		padding:0 15px;
	}
	
	article{
		margin-top: 50px;
		min-height:calc(100vh - 50px);
	}
	
	.footer-links>li{
		padding:5px 0;
	}
}
@media screen and (max-width: 930px){
	/*#logo{
		display:none;
	}
	#logo-mobile{
		display:block;
		width:150px;
		float:right;
		margin:5px 10px 0;
	}*/
	
	.hide-400{ display:none; }
	
	#menu-key{
		display:flex;
		background: var(--dark);
		position: absolute;
		top: 0;
		right: 0;
		width: 50px;
		height: 50px;
		align-items: center;
		justify-content: center;
		cursor:pointer;
	}
	#menu-key:active{
		background:var(--base);
	}
	#menu-key:before{
		font-size: 30px;
		content:"\f0c9";
		font-family:"FontAwesome";
		color:#fff;
	}
	#menu{
		display:none;
	}
	.open #menu-key:before{
		content:"\f00d";
	}
	#submenu{
		display:none;
	}
	#menu>li.sub.open{
		display:block;
	}
	
	#menu-wrap{
		overflow:visible;
		position:absolute;
		width:100%;
	}
	#menu{
		display:block;
		position:absolute;
		top:50px;
		right:0;
		z-index:1000;
		background:#fff;
		transition: width 0.2s ease-in;
		width:0;
		height:auto;
		z-index: -1;
		padding-top: 30px;
		padding-bottom:10px;
		overflow:hidden;
	}
	
	.open #menu{
		width:100%;
		right:0;
		transition: width 0.2s ease-out
	}
	
	#menu>li.active>a, #menu>li.active>span, .submenu>li.active>a, .submenu>li.active>span, #menu>li:hover>a, #menu>li:hover>span, .submenu>li:hover>a, .submenu>li:hover>span{
		color:var(--dark) !important;
	}
	
	#menu>li{
		display:block;
		clear:both;
		width:100%;
		min-width:10em;
		border-bottom:1px solid var(--lowlight) !important;
	}
	.full-width-image>div{
		padding:40px 15px;
	}
	.shaded-block{
		padding:15px 0;
	}
	
	.pad-top{
		padding-top:20px;
	}
	.pad-bottom{
		padding-bottom:20px;
	}
	
	header{
		position:fixed;
	}
	
	.social-floating>li{
		width:40px;
		height:40px;
	}
	
	.footer-links{
		width: calc(100% - 40px);
	}
	.footer-links>li{
		text-align:center;
		padding:8px 0;
	}
	
	.footer-block{
		width:calc(100% - 40px);
	}
	.footer-block img{
		display:block;
		margin:0 auto;
	}
	.footer-block p{
		text-align:center;
	}
}
@media screen and (max-width: 500px){
	a.big-link>h3{
		font-size: 26px;
	}
	a.big-link:hover>h3{
		font-size:28px;
	}
	a.big-link>i{
		font-size: 30px;
	}
	a.big-link:hover>i{
		font-size: 32px;
	}
}