/* Theme Name: Lakes
	Description: Responsive coming soon template
	Author: Margo
	Author URI: https://themeforest.net/user/margo_89
	Version: 1.0

This file defines default appearance of this site.
For custom styles please use css/custom-style.css 


TABLE OF CONTENTS

1. Import Google Font
2. Basic styles
	2.1. Control styles
3. Home page
	3.1. Logo and branding details
	3.2. Subscribe newsletter form
	3.3. Fade-zoom animation for subscribe dialog
4. About icons
5. Portfolio section
6. Map section
7. Contact section.
8. Footer section
	8.1. Social menu
9. Responsive queries section

*/

/* =========================== 1. Import Google Font =============================*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700|Jura:400,600);

/* =========================== 2. Basic styles ===================================*/
.show_me{
	opacity:1;
}
.hide_me{
	opacity:0.1;
}
.no-padding{
	padding:0px;
}
body{
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 16px !important;
	line-height: 25px !important;
	color: #969DA1;
	background-color: #ffffff;
}
h1, h2, h3, h4 {
	font-family: 'Jura', sans-serif;
}
h2{
	color: #3B3E40;
	margin-bottom: 20px;
}
#about, #portfolio, #contact, .copyright{
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 14px;
    line-height: 25px;
}
/* === 2.1 Control styles =================*/
.btn{
	outline: none;
	font-size: 16px;
	background-color: transparent;
	border-color: #eeeeee;
	padding: 10px 20px;
	margin: 10px 0px;
	margin-right: 10px;
	border-width: 2px;
	text-transform: capitalize;
	color: #ffffff;
    letter-spacing: 1px;
	
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.btn:active:focus, .btn:focus{
	outline: none;
	color: #93CEBC;
}
.btn:active{
	box-shadow: none;
	color: #ffffff;
}
.btn:hover{
	border-color: #93CEBC;
	color: #ffffff;
}
.btn.blue{
	background-color: #93CEBC;
	border-color: transparent;
	text-transform: uppercase;
}
.btn.blue:hover{
	background-color: #7FB3A4;
}
.form-control{
	-webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 2px;
}
.form-control:focus{
	-webkit-box-shadow: none;
    box-shadow: none;
    border-color: #20A2B3;
}
/* =========================== Basic styles end ===============================*/

/* =========================== 3. Home page ======================================*/
#home {
	display: table;
	color: #ffffff;
	background: url("../images/draye-advocaten_achtergrond.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 25px;

}
#home .table-cell{
	display: table-cell;
	vertical-align: middle;
}
#home h1{
	text-transform: uppercase;
	letter-spacing: 3px;
	text-align: left;
	font-size: 50px;
}
#home .lead{
	line-height: 30px;
	margin-top: 25px;
}

/* === 3.1 Logo and branding details =================*/

#logo{
	display: inline-block;
}
.branding-name{
	display: inline-block;
	vertical-align: middle;
	margin: 0px;
	margin-left: 10px;
	color: #ffffff;
}
.branding-details{
	position: absolute;
    left: 8%;
    top: 5%;
    padding-left: 15px;
}

/* === 3.2 Subscribe newsletter form ========================*/

.dialog{
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	color: #969DA1;
}
.dialog-content{
	padding: 50px;
	background-color: rgba(255, 255, 255, 0.9);
}
.dialog h2{
	margin: 20px 0px;
	text-transform: uppercase;
}
.dialog p{
	font-size: 16px;
	line-height: 25px;
	margin-bottom: 25px;
}
.dialog .btn{
	font-size: 14px;
	width: 100%;
}
.mfp-inline-holder .mfp-content{
	width: 70%;
}
.subscribe-image{
	background-color:#fff;
}
.alert-success, .alert-warning{
	position: relative;
	background: transparent;
	border-color:transparent;
	padding: 0px 10px;
	padding-top: 10px;
	font-family: 'Jura';
	text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	display: none;
}
.alert-success{
	color: #2E773D;
}
.alert-warning{
	color: #072529;
}

/* === 3.3 Fade-zoom animation for subscribe dialog ==============*/
.mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out; 
	-moz-transition: all 0.2s ease-in-out; 
	-o-transition: all 0.2s ease-in-out; 
	transition: all 0.2s ease-in-out; 

	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
}
.mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;

	-webkit-transform: scale(1); 
	-moz-transform: scale(1); 
	-ms-transform: scale(1); 
	-o-transform: scale(1); 
	transform: scale(1); 
}
.mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 

	opacity: 0;
}
.mfp-zoom-in.mfp-bg {
	opacity: 0;

	-webkit-transition: opacity 0.3s ease-out; 
	-moz-transition: opacity 0.3s ease-out; 
	-o-transition: opacity 0.3s ease-out; 
	transition: opacity 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}
/* =========================== Home page end =====================================*/

/* ========================= 4. About section ====================================*/
.about-description{
	position: absolute;
    top: 0px;
    right: 0px;
    width: 40%;
    padding: 50px;
    padding-top: 70px;
    line-height: 25px;
    background: #20A2B3;
    color: #ffffff;
}
.services{
	padding: 50px 0px;
	height: 600px;
	overflow: hidden;
}
.services .row{
	margin: 0px;
}
.service{
	padding: 20px;
	padding-bottom: 0px;
}
.service h3{
	font-size: 20px;
	font-weight: 600;
	color: #3B3E40;
}
.service p{
	font-size: 14px;
	line-height: 25px;
	color: #969DA1;
}
.service-icon, .portfolio-icon{
	display: inline-block;
	font-size: 4rem;
	color: #20A2B3;
}
#slideshow{
	height: 600px;
}
.vegas-timer-progress{
	background-color: #FFE521;
	opacity: 0.5;
}
/* =========================== About section end =================================*/

/* ========================= 5. Portfolio section ================================*/
.portfolio-information{
	padding-top: 100px;
	padding-bottom: 50px;
	padding-left:8%;
	padding-right: 8%;
}
#portfolio .figcaption{
	display: none;
}
.portfolio-icon{
	font-size: 1rem;
	margin-right: 5px;
	margin-bottom: 10px;
}
.portfolio-item{
	padding: 0;
	margin: 0;
}
.portfolio-item a.item{
	overflow: hidden;
	position: relative;
	display: block;
}
.portfolio-item img{
	-webkit-transition: linear;
	-moz-transition: all .6s ease-out;
	-ms-transition: all .6s ease-out;
	-o-transition: all .6s ease-out;
	transition: all .6s ease-out;
}
.portfolio-item a.item img{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.portfolio-item a.item:hover img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.preview-description, .preview-description-right{
	position: absolute;
	top: 0;
	left: 0;
	padding: 10px;
	padding-top: 20px;
	background-color: #20A2B3;
	color: #ffffff;
	cursor: pointer;
}
.preview-description-right{
	right: 0px;
	left: auto;
}
.preview-description p{
	padding: 0px;
}
.preview-description, .preview-description-right h4{
	text-transform: uppercase;
}
/* =========================== Portfolio section end =============================*/

/* ========================= 6. Map section ======================================*/
#map{
	height: 300px;
}
/* =========================== Map section end ===================================*/

/* ========================= 7. Contact section ==================================*/
#contact{
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	text-align: center;
	padding: 50px 100px;
	height: 600px;
	overflow: hidden;
}
#contact .btn{
	font-size: 14px;
	width: 100%;
}
#contact_form_result{
	display: block;
	text-align: center;
}
.well{
	background: transparent;
	border:none;
	box-shadow: none;
	-webkit-box-shadow:none;
	text-align: center;
	font-family: 'Jura', sans-serif;
	margin-bottom: 0px;
}
.marker{
	color: #1A818F;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
.result{
	padding: 0px 10px;
	padding-top: 10px;
	font-family: 'Jura';
	text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	color: #072529;
}
.ban{
	color: #DE2D6B;
	margin-right: 10px;
	font-size: 2rem;
	vertical-align: center;
}
/* =========================== Contact section end ===============================*/

/* ========================== 8. Footer section ==================================*/
footer{
	padding: 30px;
	text-align: center;
	background-color: #072529;
	color: #fff;
}
.copyright{
	color: #969DA1;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* === 8.1 Social menu ===*/
.social-menu a{
	display: inline-block;
	width: 50px;
	height: 50px;
	text-align: center;
	font-size: 16px;
	line-height: 45px;
	color: #fff;
	outline: none;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;

	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.facebook-btn:hover{
	background:#3B5998;
	color: #fff;
}
.twitter-btn:hover{
	background:#55ACEE;
	color: #fff;
}
.linkedin-btn:hover{
	background:#0077b5;
	color: #fff;
}
.google-plus-btn:hover{
	background:#db514f;
	color: #fff;
}
.youtube-btn:hover{
	background:#cc181e;
	color: #fff;
}
.github-btn:hover{
	background:#2b2e30;
	color: #fff;
}
.a:hover{
	background:#3498db;
	color: #fff;
}
/* ========================== Footer section end =================================*/

/* ====================== 9. Responsive queries section ==========================*/

/*For very small mobile devices*/
@media screen and (max-width: 320px){
	#logo{
		height: 30px;
	}
	.branding-name{
		font-size: 20px;
		margin-left: 5px;
	}
	.branding-details{
		top: 3%;
		left: 5%;
	}
	#home .lead{
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 0px;
	}
}

/*For extra small mobile devices and tablets*/
@media screen and (max-width: 480px){
	#home h1{
		font-size: 30px;
		margin-top: 20%;
	}
	#home .lead{
		line-height: 25px;
		margin-top: 25px;
	}
	.button-box{
		text-align: center;
	}
}
@media screen and (max-width: 667px){
	#slideshow{
		height: 350px;
	}
}

/*For small screens*/
@media screen and (max-width: 768px){
	#home h1, #home .lead, .button-box, .services{
		text-align: center;
	}
	.about-description{
	    top: 10%;
	    left: 10%;
	    width: 90%;
	}
	.about-description, .service p, .portfolio-information{
		font-size: 16px;
	}
	.services{
		height: auto;
	}
}

/*For medium screens*/
@media screen and (max-width: 992px){
	.portfolio-information{
		padding-top:0px;
		text-align: center;
	}
	#contact{
		padding: 50px 0px;
		height: auto;
	}
}

/*For large screens*/
@media (min-width: 1200px){
	.mfp-inline-holder .mfp-content{
		width: 50%;
		max-width: 800px;
	}
	#map{
		height: 600px;
	}
}
@media (min-width: 768px){
	.lead{
		font-size: 16px;
	}
}
/* ======================= Responsive queries section end ========================*/