html, body {
	position: relative;
	padding: 0;
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	color: #2D2D2C;
}

.visible {
	display: block !important;
}
.pull-left {
	float: left;
}
.pull-right {
	float: right;
}
.container {
	position: relative;
	width: 1200px;
	margin: 0 auto;
}
.em {
	font-weight: 600;
	margin: 0 2px;
}
.em-c {
	color: #3498db;
	margin: 0 2px;
}

.preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	background: white;
	background: rgba(255, 255, 255, 0.95);
	z-index: 10;
}
.preloader .text {
	position: absolute;
	width: 300px;
	height: 90px;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	font-size: 15px;
	text-align: center;
	color: #34495e;
}
.preloader img {
	position: relative;
	display: block;
	width: 64px;
	height: 64px;
	margin: 15px auto;
}

nav {
	position: fixed;
	height: 40px;
	background: white;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 1;
	border-bottom: 1px solid whitesmoke;
}
nav .item {
	line-height: 40px;
	padding: 0 15px;
	font-size: 15px;
	text-decoration: none;
	color: black;
	cursor: pointer;
}
nav .item:hover {
	background: whitesmoke;
}
nav .item:hover .sub {
	display: block;
}
nav .item.h-weddings:hover {
	background: #3498db;
	color: white;
}
nav .item.h-action:hover {
	background: #f39c12;
	color: white;
}
nav .item.h-travel:hover {
	background: #2ecc71;
	color: white;
}

nav .sub {
	position: absolute;
	width: 100%;
	/*height: 225px;*/
	height: auto;
        top: 40px;
	left: -10px;
	border-bottom: 10px solid white;
	border-left: 10px solid white;
	border-right: 10px solid white;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
	display: none;
}
nav .sub .sub-item {
	position: relative;
	width: 400px;
	height: 100%;
	float: left;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
        overflow: hidden;
}
nav .sub .sub-item:hover .overlay {
	opacity: 0.8;
}
nav .sub .sub-item:hover p {
	color: black;
	opacity: 1;
}
nav .sub .sub-item img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
nav .sub .sub-item p {
	position: relative;
	margin: auto;
	line-height: 225px;
	font-size: 60px;
	color: white;
	font-weight: 600;
	opacity: 0.8;
}
nav .sub .sub-item .overlay {
	position: absolute;
	width: 50%;
	height: auto;
	top: 0;
	left: 0;
	background: white;
	opacity: 0;
}
nav .sub .sub-item.fw {
    width: 100%;
}
nav .sub .sub-item.hw {
    width: 50%;
}
header {
	position: relative;
	padding-top: 40px;
}
header .info {
	position: relative;
	height: 121px;
	margin: 50px auto 130px auto;
	text-align: center;
}
header .info p {
	position: relative;
	width: 260px;
	margin: 0 0 0 15px;
	font-size: 50px;
	text-align: left;
	top: -3px;
}
header .info .logo, header .info p {
	display: inline-block;
}

section {
	position: relative;
}

section.grid {
	overflow: auto;
}
.grid article {
	position: relative;
	float: left;
	margin: 0.25%;
	background: whitesmoke;
	cursor: pointer;
	overflow: hidden;
	opacity: 0;
}
.grid article.grid-size-1 {
	width: 99.5%;
	height: 650px;
}
.grid article.grid-size-2 {
	width: 49.5%;
	height: 400px;
}
.grid article.grid-size-3 {
	width: 32.83%;
	height: 300px;
}
.grid article.grid-size-4 {
	width: 24.5%;
	height: 250px;
}
.grid article.grid-size-5 {
	width: 19.5%;
	height: 200px;
}
.grid article .overlay, .carousel article .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: white;
	opacity: 0.6;
}
.grid article .info, .carousel article .info {
	position: absolute;
	height: 90px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto 60px;
	padding-bottom: 10px;
	background: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	text-align: center;
	box-shadow: 0px 0px 10px -5px black;
}
.grid article .info p, .carousel article .info p {
	padding: 0 10px;
}
.grid article .info p.author, .carousel article .info p.author {
	font-size: 11px;
	color: #3498db;
}
.grid article.grid-size-4 .info {
	margin: auto 35px;
}
.grid .modal-overlay {
	display: none;
}
.grid .photo {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
}
.grid article .photo:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	border: 0px solid transparent;
	-webkit-transition: all 250ms ease-out;
    -moz-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}
.grid article:hover .photo:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	border: 20px solid rgba(255, 255, 255, 0.6);
	-webkit-transition: all 250ms ease-out;
    -moz-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}
.grid article.first {
	clear: left;
}

/* carousel */
.carousel {
	position: fixed;
	z-index: 1;
	top: 0;
	bottom: 0;
	/*height: 500px;*/
	height: 95vh;
	overflow: hidden;
	margin: auto;
	display: none;
}
.carousel .modal-overlay {
	position: fixed;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0.98;
}
.carousel article {
	position: relative;
	float: left;
	height: 100%;
	/*max-width: 90vw;*/
	margin: 0 4px;
	cursor: pointer;
}
.carousel article img {
	position: relative;
	height: 100%;
}

footer {
	position: relative;
	width: 100%;
	height: 45px;
	background: rgb(40, 40, 40);
	color: white;
	margin-top: 60px;
}
footer .item {
	position: relative;
	padding: 0 15px;
	line-height: 45px;
	font-size: 15px;
}
footer .item a {
	text-decoration: none;
	color: white;
}

section.txt .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 60px;
}
section.txt h1, section.txt h2, section.txt p {
	padding: 0 50px;
}
section.txt p {
	line-height: 24px;
}
section .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: white;
	background: rgba(255, 255, 255, 0.8);
}
section.about {
	background: url('../imgs/weddings/21.JPG');
	background-position: 50% 50%;
	background-size: cover;
	color: black;
}
section.about .overlay {
	background: white;
	background: rgba(255, 255, 255, 0.8);
}
section.clients {
	background: url('../imgs/action/icsAction (28).jpg');
	background-position: 50% 18%;
	background-size: cover;
	color: white;
}
section.clients .overlay {
	background: black;
	background: rgba(0, 0, 0, 0.6);
}
section.planning {
	background: url('../imgs/weddings/45.JPG');
	background-position: 50% 50%;
	background-size: cover;
	color: black;
}
section.planning .overlay {
	background: white;
	background: rgba(255, 255, 255, 0.8);
}
section.albums {
	background: url('../imgs/weddings/36.JPG');
	background-position: 50% 18%;
	background-size: cover;
	color: white;
}
section.albums .overlay {
	background: black;
	background: rgba(0, 0, 0, 0.6);
}


i {
	position: absolute;
	width: 24px;
	height: 24px;
	left: 10px;
}
i.mail {
	background: url('../imgs/mail.png');
}
i.phone {
	background: url('../imgs/phone.png');
}

section#slideshow {
        position: relative;
        width: 100%;
        height: 100%;
        top: 41px;
background: black no-repeat center center fixed;
background-size: contain;
}