body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;}
body, html {
	height: 100%;
	color: #777;
	line-height: 1.8;
	scroll-behavior: smooth;
}

/* Create a Parallax Effect */
.bgimg-1, .bgimg-2, .bgimg-3 {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.7;
}

/* First image (Logo. Full height) */
.bgimg-1 {
	background-image: url('../img/bg1.jpg');
	min-height: 100%;
}

/* Second image (Portfolio) */
.bgimg-2 {
	background-image: url("../img/bg2.jpg");
	min-height: 400px;
}

/* Third image (Contact) */
.bgimg-3 {
	background-image: url("../img/bg3.jpg");
	min-height: 400px;
}

.w3-wide {letter-spacing: 10px;}
.w3-hover-opacity {cursor: pointer;}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1600px) {
	.bgimg-1 {
		background-attachment: scroll;
		min-height: 100%;
	}

	.bgimg-2, .bgimg-3 {
		background-attachment: scroll;
		min-height: 400px;
	}
}

/* Accordion animations */
.w3-hide {
	display: block !important;
	visibility: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.5s ease, visibility 0.5s ease-in, opacity 0.5s ease-in;
	margin-bottom: 10px;
}

.w3-show {
	display: block !important;
	visibility: visible;
	max-height: 1000px;
	opacity: 1;
	transition: max-height 0.5s ease, visibility 0.5s ease-in, opacity 0.5s ease-in;
	margin-bottom: 10px;
}

/* Minor custom changes */
.w3-bar { /* navbar transparency */
	background-color: rgba(255,255,255,0.5);
}

.w3-bar-item {
	background-color: rgba(0,0,0,0);
}

.w3-bar-item:hover { /* navbar item hover background*/
	background: #333 !important;
	color: #fff !important;
}

.w3-animate-top { /* title animation */
	position: relative;
	animation: animatetop 1s ease-out;
}

@keyframes animatetop {
	from {top:-300px;opacity:0} to {top:0;opacity:1}
}

.w3-black { /* title background */
	background: #333 !important;
}

.portrait, .map { /* image opacity */
	opacity: 0.8;
}

.large { /* larger text font size */
	font-size: 18px !important;
}

.indent { /* indent address */
	padding-left: 50px !important;
}

