/*
Color Scheme
Yellow : #FFBB00
White : #E8E8E8
Black : #000000
*/

body {
	background: #E8E8E8;
	font-family: "Patua One";
}

.navbar {
	background: #000;
	padding: 18px;
	border-radius: 0;
	text-align: center;
	/*border-bottom: 1px solid #DDD;*/
	/*border-bottom: 5px solid #F4D03F;*/
}

.navbar .logo > span {
	color: #F4D03F;
	/*font-family: "Fira Sans Condensed";*/
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 6px;
	text-transform: uppercase;
}

.navbar button {
	font-size: 25px;
	padding: 0;
	text-align: center;
	height: 40px;
	width: 40px;
	border-radius: 100%;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -20px;
	background: #D24D57;
	color: white;
}


.contact-btn {
	position: fixed;
	left: 0px;
	bottom: 5vh;
	padding: 2px 15px;
	z-index: 5;

	cursor: pointer;
	background: #F4D03F;

	border-radius: 0 20px 20px 0;

	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.contact-btn:hover {
	background: #DBBB38;
}
.contact-btn i {
	font-size: 25px;
	margin-right: 5px;
	margin-bottom: -2px;
	display: inline-block;
	vertical-align: middle;
}
.contact-btn span {
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	display: inline-block;
	vertical-align: middle;
}


.drop-zone button,
.image-gallery button
{
	margin-bottom: 5px;
	padding: 2px 15px;
	font-weight: 400;
	font-size: 12px;
}
.drop-zone form {
	padding: 0;
}
.drop-zone i {
	font-size: 50px;
	margin: 0;
}
.drop-zone h3 {
	margin: 0;
	font-weight: 300;
	font-size: 20px;
}
.drop-zone h4 {
	font-size: 14px;
	margin: 0;
}

.my-gallery {
	padding: 0 10px;
}

.image-gallery,
.drop-zone {
	width: 100%;
	margin: 15px auto;
	padding: 15px;
	background: #FFF;
	border: 1px solid #EEE;
}

.my-gallery .image-card {
	padding: 5px;
	position: relative;
}

.my-gallery .image-card img {
	height: 200px;
}

figure .figure-background {
	position: absolute;
	left: 10px;
	right: 10px;
	top: 0px;
	bottom: 0px;
	border-bottom: 3px solid #EEE;
	background: #FFF;
	z-index: -1;
}
figure:hover > .figure-overlay {
	opacity: 1;
}
figure .figure-overlay {
	position: absolute;
	left: 10px;
	right: 10px;
	top: 0px;
	bottom: 0px;
	z-index: 1;
	background: rgba(0,0,0,.2);
	opacity: 0;

	-webkit-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;

	pointer-events: none;
}
figure .figure-overlay button {
	color: #333;
	background: #FFF;

	font-size: 20px;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;

	display: block;
	width: 100%;
	max-width: 150px;

	position: absolute;
	left: 50%;
	top: 50%;

	margin-top: -22px;
	margin-left: -75px;
	padding: 8px;

	border: none;
}

.my-gallery figure img {
	width: 100%;
	z-index: 1!important;
}
.my-gallery figure figcaption {
	display: none;
}

.overlay {
	padding-right: 10px;
	position: absolute;
	background: rgba(0,0,0,.8);
	left: 5px;
	right: 5px;
	bottom: 5px;
	color: white;
	padding: 5px;
}
 .overlay > span {
 	cursor: pointer;
}
.overlay > i {
	float: right;
	cursor: pointer;
}
.overlay > i:hover, .overlay > span:hover {
	color: #AAA;
}

.pswp__caption__center {
	text-align: center;
}

.pswp__caption__center i {
	display: none;
}

.no-files i {
	font-size: 50px;
}
.no-files h3 {
	font-weight: 300;
	margin-top: 0;
}

.navbar {
	margin: 0;
}
.contact-info {
	background: #dbdedd;
	margin-bottom: 20px;
	padding: 24px 0;
	/*box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);*/
	color: #222;
	text-align: center;
}
.contact-info span {
	display: block;
	margin-bottom: 10px;
	font-size: 17px;
}
.contact-info h2 {
	margin: 0;
	font-size: 25px;
	font-weight: 500;
	color: #222;
}

.intro {
	padding: 50px 12px;
	padding-bottom: 35px;
} .intro h2 {
	font-size: 25px;
	font-weight: 200;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
} .intro h2 strong {
	font-weight: 400;
}

@media(max-width:750px){
	.navbar {
		padding-left: 0;
		padding-right: 0;	
	}
	.navbar .logo > span {
		font-size: 20px;
	}
	.contact-info h2 {
		font-size: 20px;
	}
}