/* -------------------------------------------------------------------------- */
/* ------------------------ Import Fonts & Icons ---------------------------- */
/* -------------------------------------------------------------------------- */
@import url(https://fonts.googleapis.com/css2?family=Lato:300,400,700);
@font-face {
	font-family: "fontawesome";
	src:url("../fonts/fontawesome.eot?-e43dk9");
	src:url("../fonts/fontawesome.eot?#iefix-e43dk9") format("embedded-opentype"),
		url("../fonts/fontawesome.woff?-e43dk9") format("woff"),
		url("../fonts/fontawesome.ttf?-e43dk9") format("truetype"),
		url("../fonts/fontawesome.svg?-e43dk9#fontawesome") format("svg");
	font-weight: normal;
	font-style: normal;
}
/* -------------------------------------------------------------------------- */
/* ---------------------------- General Style ------------------------------- */
/* -------------------------------------------------------------------------- */
*, *:after, *:before {
	-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
}
html {
	overflow-y: scroll;
}
body, html {
	font-family: "Lato", Calibri, Arial, sans-serif;
	color: #3b3b3b;
	font-size: 100%;
	padding: 0;
	margin: 0;
}
a {
	color: #3b3b3b;
	text-decoration: none;
	outline: none;
}
a:hover {
	color: #bbbbbb;
	-webkit-transition: all 0.1s ease; /* Safari and Chrome */
	-moz-transition: all 0.1s ease; /* Firefox */
	-ms-transition: all 0.1s ease; /* IE 9 */
	-o-transition: all 0.1s ease; /* Opera */
	transition: all 0.1s ease;
}
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff; /* change if the mask should have another color then white */
	z-index: 999999; /* makes sure it stays on top */
}
#status {
	margin: 0;
	padding: 0;
	width: 80px;
	height: 80px;
	position: absolute;
	left: 50%; /* centers the loading animation horizontally one the screen */
	top: 50%; /* centers the loading animation vertically one the screen */
	background-image: url("../img/preloader/preloader.gif"); /* path to your loading animation */
	background-repeat: no-repeat;
	background-position: center bottom;
	text-align:center;
	margin: -40px 0 0 -40px; /* is width and height divided by two */
}
#status p {
	text-align: center;
}
/* -------------------------------------------------------------------------- */
/* ----------------------------- Header Style ------------------------------- */
/* -------------------------------------------------------------------------- */
hr {
  display: block;
	border: 0;
	width: 100%;
	margin: 2px 0;
	height: 1px;
	background-color: #3b3b3b;
}
.container > header {
	display: block;
	width: 80%;
	max-width: 640px;
	margin: auto;
	float: none;
	text-align: center;
	text-transform: uppercase;
}
.container > header h1 {
	font-size: 2.3em;
	margin: 70px 0 25px 0;
	padding: 0 0 6px 0;
	font-weight: 400;
	color: #3b3b3b;
}
.container > header h1:hover {
	color: #808080;
}
.container > header h4 {
	margin: 0 0 15px 0;
	font-weight: 550;
}
.nav-bar{
	width: 100%;
	margin: 0 0 5px 0;
	font-weight: 400;
}
/* -------------------------------------------------------------------------- */
/* ----------------------- Dynamic Masonry Grid Style ----------------------- */
/* -------------------------------------------------------------------------- */
/* Hide until images are loaded */
/*.grid-gallery {
	display: none;
}*/
.grid-gallery ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.grid-gallery figure {
	margin: 0;
	padding: 0;
}
.grid-gallery figure img {
	display: block;
	width: 100%;
}
/* Overall Grid Size/Style */
.grid-wrap {
	max-width: 1680px;
	margin: auto;
	padding: auto;
}
.grid {
	margin: auto;
}
.grid li {
	width: 20%;
	float: left;
	cursor: pointer;
}
/* Individual Style of each photo */
.grid figure {
	padding: 3px;
	-webkit-transition: opacity 0.25s; /* Safari and Chrome */
	-moz-transition: opacity 0.25s; /* Firefox */
	-ms-transition: opacity 0.25s; /* IE 9 */
	-o-transition: opacity 0.25s; /* Opera */
	transition: opacity 0.25s;
}
.grid li:hover figure {
	opacity: 0.4;
}
.grid li:hover h4 {
	display: block;
	-webkit-transition: all 0.25s ease; /* Safari and Chrome */
	-moz-transition: all 0.25s ease; /* Firefox */
	-ms-transition: all 0.25s ease; /* IE 9 */
	-o-transition: all 0.25s ease; /* Opera */
	transition: all 0.25s ease;
}
/* -------------------------------------------------------------------------- */
/* ---------------------- Individual Model Page Style ----------------------- */
/* -------------------------------------------------------------------------- */
.model-gallery {
	max-width: 800px;
	padding: auto;
	margin: auto;
}
.model-gallery figure {
	margin: 30px auto;
}
.polaroid figure {
	margin: auto;
}
.model-gallery h5 {
	text-align: center;
	display: block;
	margin: auto;
	padding: 25px 0;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.model-info {
	width: 100%;
	text-align: center;
	display: inline-block;
	margin: auto;
	padding-bottom: 40px;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.model-info h4 {
	display: inline-block;
	padding-right: 0px;
}
.model-info img {
	position: absolute;
	padding-top: 20px;
}
.model-info a:hover {
	opacity: 0.4;
	color: #3b3b3b
}
/* -------------------------------------------------------------------------- */
/* ------------------------- On Hover Image Captions ------------------------ */
/* -------------------------------------------------------------------------- */
.caption-outer {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 10;
	text-align: center;
	background: none;
	width: 100%;
	-webkit-transition: all 0.25s ease; /* Safari and Chrome */
  -moz-transition: all 0.25s ease; /* Firefox */
  -ms-transition: all 0.25s ease; /* IE 9 */
  -o-transition: all 0.25s ease; /* Opera */
  transition: all 0.25s ease;
}
.caption-inner {
	position: absolute;
  top: 51%;
	width: 100%;
  transform: translateY(-50%);
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	background: none;
}
.caption-inner h4 {
	display: none;
	margin: 5px auto;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 900;
	color: #3b3b3b;
	-webkit-transition: all 0.25s ease; /* Safari and Chrome */
	-moz-transition: all 0.25s ease; /* Firefox */
	-ms-transition: all 0.25s ease; /* IE 9 */
	-o-transition: all 0.25s ease; /* Opera */
	transition: all 0.25s ease;
}
/* -------------------------------------------------------------------------- */
/* --------------------------- Contact Page Style --------------------------- */
/* -------------------------------------------------------------------------- */
.contact-info {
	width: 80%;
	max-width: 640px;
	text-align: center;
	padding: auto;
	margin: auto;
}
.contact-info img:hover {
	opacity: 0.4;
	-webkit-transition: all 0.1s ease; /* Safari and Chrome */
	-moz-transition: all 0.1s ease; /* Firefox */
	-ms-transition: all 0.1s ease; /* IE 9 */
	-o-transition: all 0.1s ease; /* Opera */
	transition: all 0.1s ease;
}
.social-media {
	margin-top: 75px;
	margin-bottom: 20px;
}
/* -------------------------------------------------------------------------- */
/* ----------------------- Menu Style & Functionality ----------------------- */
/* ------------------------ (Nav Menu - Widescreen) ------------------------- */
/* -------------------------------------------------------------------------- */
#navMenu,
#navMenu ul,
#navMenu ul li,
#navMenu ul li a,
#navMenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#navMenu:after,
#navMenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 5;
  height: 0;
}
#navMenu #menu-button {
  display: none;
}
#navMenu {
  z-index: 999;
  display: inline-block;
  margin: 0 0;
}
#navMenu > ul > li {
  float: left;
}
#navMenu.align-center > ul {
  font-size: 0;
  text-align: center;
}
#navMenu.align-center > ul > li {
  display: inline-block;
  float: none;
}
#navMenu.align-center ul ul {
  text-align: left;
}
#navMenu.align-right > ul > li {
  float: right;
}
#navMenu > ul > li > a {
  padding: 17px;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #3b3b3b;
  font-weight: 700;
  text-transform: uppercase;
}
#navMenu > ul > li:hover > a {
  color: #999999;
}
#navMenu > ul > li.has-sub > a {
  padding-right: 30px;
}
#navMenu > ul > li.has-sub > a:after {
  position: absolute;
  top: 22px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #3b3b3b;
  content: '';
}
#navMenu > ul > li.has-sub > a:before {
  position: absolute;
  top: 19px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #3b3b3b;
  content: '';
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;*/
}
#navMenu > ul > li.has-sub:hover > a:before {
  top: 23px;
  height: 0;
}
#navMenu > ul > li.has-sub:hover > a:after,
#navMenu > ul > li.has-sub:hover > a:before{
	background: #999999;
}
#navMenu ul ul {
  position: absolute;
  left: -9999px;
}
#navMenu.align-right ul ul {
  text-align: right;
}
#navMenu ul ul li {
  height: 0;
  text-align: left;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
#navMenu li:hover > ul {
  left: auto;
}
#navMenu.align-right li:hover > ul {
  left: auto;
  right: 0;
}
#navMenu li:hover > ul > li {
  height: 35px;
}
#navMenu ul ul ul {
  margin-left: 100%;
  top: 0;
}
#navMenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}
#navMenu ul ul li a {
  border-bottom: 1px solid rgba(150, 150, 150, 0.15);
  padding: 11px 15px;
  width: 170px;
  font-size: 12px;
  text-decoration: none;
  color: #dddddd;
  font-weight: 400;
  background: #3B3B3B;
}
#navMenu ul ul li:last-child > a,
#navMenu ul ul li.last-item > a {
  border-bottom: 0;
}
#navMenu ul ul li:hover > a,
#navMenu ul ul li a:hover {
  color: #ffffff;
}
#navMenu ul ul li.has-sub > a:after {
  position: absolute;
  top: 16px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #dddddd;
  content: '';
}
#navMenu.align-right ul ul li.has-sub > a:after {
  right: auto;
  left: 11px;
}
#navMenu ul ul li.has-sub > a:before {
  position: absolute;
  top: 13px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #dddddd;
  content: '';
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
#navMenu.align-right ul ul li.has-sub > a:before {
  right: auto;
  left: 14px;
}
#navMenu ul ul > li.has-sub:hover > a:before {
  top: 17px;
  height: 0;
}
/* -------------------------------------------------------------------------- */
/* ----------------------- Menu Style & Functionality ----------------------- */
/* ------------------------- (Nav Menu - Collapsed) ------------------------- */
/* -------------------------------------------------------------------------- */
@media all and (max-width: 560px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 560px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 560px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 560px), only screen and (min-device-pixel-ratio: 2) and (max-width: 560px), only screen and (min-resolution: 192dpi) and (max-width: 560px), only screen and (min-resolution: 2dppx) and (max-width: 560px) {
  #navMenu {
	  width: 100%;
		background: #ffffff;
		margin: 0 0 50px;
		text-align: left;
  }
  #navMenu ul {
    width: 100%;
    display: none;
  }
  #navMenu > ul > li:hover > a {
    color: #bbbbbb;
  }
  #navMenu ul li {
    width: 100%;
    border-top: 1px solid rgba(120, 120, 120, 0.2);
		-webkit-transition: all .25s ease;
		-moz-transition: all .25s ease;
		-ms-transition: all .25s ease;
		-o-transition: all .25s ease;
		transition: all .25s ease;
  }
  #navMenu ul ul li,
  #navMenu li:hover > ul > li {
    height: auto;
		-webkit-transition: all .25s ease;
		-moz-transition: all .25s ease;
		-ms-transition: all .25s ease;
		-o-transition: all .25s ease;
		transition: all .25s ease;
  }
  #navMenu ul li a,
  #navMenu ul ul li a {
    width: 100%;
    border-bottom: 0;
    color: #3b3b3b;
  }
  #navMenu > ul > li {
    float: none;
  }
  #navMenu ul ul ul li a {
    padding-left: 35px;
  }
  #navMenu ul ul li a {
    background: #3b3b3b;
    padding-left: 25px;
  	text-align: right;
    color: #bbbbbb;
  }
  #navMenu ul ul li:hover > a,
  #navMenu ul ul li.active > a {
    color: #ffffff;
  }
  #navMenu ul ul,
  #navMenu ul ul ul,
  #navMenu.align-right ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
  }
  #navMenu > ul > li.has-sub > a:after,
  #navMenu > ul > li.has-sub > a:before,
  #navMenu ul ul > li.has-sub > a:after,
  #navMenu ul ul > li.has-sub > a:before {
    display: none;
  }
  #navMenu #menu-button {
    display: block;
    padding: 17px;
    color: #3b3b3b;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
  }
  #navMenu #menu-button:before {
    position: absolute;
    top: 20px;
    right: 16px;
		height: 2px;
		width: 15px;
    display: block;
    background: #3b3b3b;
    content: '';
  }
  #navMenu #menu-button:after {
    position: absolute;
    top: 24px;
    right: 16px;
		height: 2px;
		width: 15px;
    display: block;
    background: #3b3b3b;
    content: '';
  }
  #navMenu #menu-button.menu-opened:after {
    top: 22px;
		right: 16px;
		width: 15px;
		height: 2px;
		border: 0;
    background: #3b3b3b;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #navMenu #menu-button.menu-opened:before {
    top: 22px;
		right: 16px;
		width: 15px;
		height: 2px;
	  border: 0;
		background: #3b3b3b;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #navMenu .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgba(120, 120, 120, 0.2);
    height: 46px;
    width: 46px;
    cursor: pointer;
  }
  #navMenu .submenu-button.submenu-opened {
    background: #3b3b3b;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
  }
  #navMenu ul ul .submenu-button {
    height: 34px;
    width: 34px;
  }
  #navMenu .submenu-button:before {
    position: absolute;
    top: 19px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #3b3b3b;
    content: '';
  }
  #navMenu .submenu-button:after {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #3b3b3b;
    content: '';
  }
  #navMenu ul ul .submenu-button:after {
    top: 15px;
    right: 13px;
  }
  #navMenu .submenu-button.submenu-opened:after {
    background: #ffffff;
  }

  #navMenu ul ul .submenu-button:before {
    top: 12px;
    right: 16px;
  }
  #navMenu .submenu-button.submenu-opened:before {
    display: none;
  }
}
/* -------------------------------------------------------------------------- */
/* ----------------------------- Footer Style ------------------------------- */
/* -------------------------------------------------------------------------- */
#footerwrap {
	width: 80%;
	text-align: center;
	display: block;
	margin: auto;
	padding-top: 40px;
	padding-bottom: 40px;
  font-size: small;
}
#footerwrap a {
	color: #3b3b3b;
	text-decoration: none;
	outline: none;
}
#footerwrap a:hover {
	color: #bbbbbb;
}
/* -------------------------------------------------------------------------- */
/* ------------ Media queries to change Masonry column layout --------------- */
/* -------------------------------------------------------------------------- */
@media screen and (max-width: 1680px) {
	.grid li {
		width: 20%;
		/*** 5 Columns ***/
	}
}
@media screen and (max-width: 1440px) {
	.grid li {
		width: 25%;
		/*** 4 Columns ***/
	}
}
@media screen and (max-width: 1152px) {
	.grid li {
		width: 33.3%;
		/*** 3 Columns ***/
	}
}
@media screen and (max-width: 768px) {
	.grid li {
		width: 50%;
		/*** 2 Columns ***/
	}
	.form-container{
		width: 100%;
	}
	.contact-right {
		width: 100%;
		text-align: center;
	}
}
/* 1 column desired for all portrait smartphones - 414px iPhone6+ largest atm.*/
@media screen and (max-width: 560px) {
	.grid li {
		width: 100%;
		/*** 1 Column ***/
	}
}
