@charset "utf-8";
/* CSS Document */
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700|Raleway:400,300,700);
/*------------------------------------*\

    MAIN

\*------------------------------------*/



/* global box-sizing */

*, *:after, *:before {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
/* html element 62.5% font-size for REM use */

html {
	font-size: 62.5%;
	margin: 0;
	padding: 0;
	height: 100%
}
body {
	font-family: 'Raleway', sans-serif;
	font-weight: 200;
	font-size: 11px;
	color: #3a373a;
	margin: 0;
	padding: 0;
	min-height: 100%;
	height: 100%;
}
#for_mobile {
	display: none;
}
/* clear */

.clear:before, .clear:after {
	content: ' ';
	display: table;
}
.clear:after {
	clear: both;
}
.clear {
 *zoom:1;
}
img {
	vertical-align: bottom;
}
a {
	color: #3a373a;
	text-decoration: none;
}
a:hover {
	color: #3a373a;
}
a:focus {
	outline: 0;
}
a:hover, a:active {
	outline: 0;
}
input:focus {
	outline: 0;
}
.underline {
	padding: 0 0 1px;
}
.underline::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #f01776;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
	transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}
.underline:hover::after, .underline:focus::after, .underline.selected::after {
	height: 3px;
}
/*------------------------------------*\

    STRUCTURE

\*------------------------------------*/



/* wrapper */

.wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	height: auto !important;
	min-height: 100%;
	margin: 0 auto -73px; /* the bottom margin is the negative value of the footer's height */
}
.rental_below {
	width: 78%;
	margin-left: 13%;
	margin-top: 7%;
}
.wrapper.no-bookmarks {
	background: url('img/content-pattern.png') left top repeat;
}
/* header */

header {
	/*height: 100px;
	border-bottom: 1px solid #ddd;*/
	display: inline-block;
	width: 100%;
	background-color: #fff;
	float: left;
	position: relative;
	z-index: 5000;
}
/* logo */

.logo-link {
	display: inline-block;
	float: left;
	height: 65px;
	width: 20%;
}
.logo {
	background-image: url("../img/logo.png");
	background-position: 50% 47%;
	background-repeat: no-repeat;
	background-size: 200px auto;
	display: inline-block;
	float: left;
	height: 100%;
	width: 100%;
}
.logo-img {
}
/* nav */


.nav {
	float: right;
	width: 80%;
	text-align: right;
	overflow: hidden;
	height: 65px;
	z-index: 5000;
}
.nav .menu > li {
	width: 25%;
	height: 65px;
	display: inline-block;
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	float: left;
	border-left: solid 1px #ddd;
}

.menu, ol, ul {
    padding: 0;
}

/*------------------------------------*\

PACE STYLE

\*------------------------------------*/

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  -webkit-transform: translate3d(0, -50px, 0);
  -ms-transform: translate3d(0, -50px, 0);
  transform: translate3d(0, -50px, 0);

  -webkit-transition: -webkit-transform .5s ease-out;
  -ms-transition: -webkit-transform .5s ease-out;
  transition: transform .5s ease-out;
}

.pace.pace-active {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pace .pace-progress {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 10px;
  background: #ff0000;

  pointer-events: none;
}