/************* GENERAL *************/
html, body {
	width:100%;
	height:100%;
}

html, div, p, body, h1, h2, h3 {
	margin:0px;
	padding:0px;
	text-align:center;
}

table, img {
	margin:auto;
}

body, table, ul, li, p, div {
	font-family:Montserrat,Verdana;
}

body {
	/* background-color:rgba(100,100,100,0.1); */
}

h1, h2, h3 {
	text-transform:uppercase;
	width:100%;
	text-align:center;
	color:#CC0000;
}

h1{font-size:1.5em}
h2{font-size:1.3em}
h3{font-size:1.1em}

ul, ol {
	text-align:left;
	margin:0.2em;
}

li {
	margin:3px;
}

/************* PLACEMENT *************/
div.main {
	display:flex;
	flex-direction:column;
	justify-content:flex-start;

}

div.bottom {
	display:flex;
	flex-direction:row;	
	background-color:#cc0000;
	justify-content:space-around;
	align-items:center;
	height:7vh;
	color:white;
}

div.bottom a {
	color:white;
}
/************* MENU *************/
a {
	text-decoration:none;
	color:#cc0000;
}

/************* FLEX *************/
div.flexrow {
	display:flex;
	flex-direction:row;
	justify-content:space-around;
	flex-wrap: wrap;
}

div.flexrow div {
	display:flex;
	flex-direction:column;
	margin:auto;
}

div.height1 {
	min-height:33vh;
}

div.height2 {
	min-height:50vh;
}

div.height3 {
	min-height:75vh;
}

div.height4 {
	min-height:100vh;
}

div.onethird-block {
	width:32%;
}

div.block {}

div.block1 {
	width:23%;
}

div.block2 {
	width:50%;
}

div.block3 {
	width:73%;
}

div.block4 {
	width:100%;
}

.bgcolor1 {
}

.bgcolor2 {
}

.bold {
	font-weight:bold;
}

p.text {
	margin:0.4em 1.5em;
	text-align:justify;
}

p.icon{
	padding:1em;
	text-align:center;
	color:#cc0000;
}

/******************************** HOME ***************************/
div.home {
	display:flex;
	flex-direction:row;
	height:100vh;
	width:100%;
	justify-content:space-around;
	flex-wrap: wrap;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	background-image:url('../images/main.jpg');
}

div.home div {
	margin:auto;
}

img.title {
	max-height:90vh;
	max-width:100vw;
}

div.bg-image {
	background-size:cover;
	background-position:center center;
	width:50%;
	min-height:100vh;
}

div.titlecenter {
	color:white;
	text-align:center;
	margin:auto;
	padding:1.5em;
	width:50%;
	border:1px solid white;
	background:rgba(0,0,0,0.5);
}

div.main-menu {
	width:80%;
	display:flex;
	flex-wrap:wrap;
	flex-direction:row;
	justify-content:flex-end;
	align-items:bottom;
}

div.main-title {
	width:20%;
	display:flex;
	flex-direction:row;
	align-items:center;
}

/******************************** SERVICES ***************************/
div.title {
	display:flex;
	flex-direction:column;
	width:100%;
	height:50vh;
	background-size:cover;	
	background-position:center center;
	background-attachment:fixed;
}

img.album {
	box-shadow: 2px 2px 5px 1px #555555; 
	border:3px solid white;
	transition: all 0.2s ease;
	margin-bottom:5px;
}

img.album:hover {
	transform:rotate(2deg);
}

/**************************************************************/
@media screen and (max-width : 800px) {
	body {
		font-size:0.9em;
	}
	
	div.bg-image {
		display:none;
		width:auto;
		height:auto;
	}
	
	div.main-title, div.main-menu {
		width:100%;
		justify-content:center;
	}
	
	div.block1, div.block2, div.block3, div.block4, div.onethird-block, div.block{
		width:100%;
	}
	
	ul {
		width:90%;
	}
	
	img.clicicon {
		height:1.2em;
		margin:1em;
	}
	
	div.main-content {		
		top: 0;
	}
	
	div.home {
		height:auto;
		background-attachment: scroll;
	}
	
	img.title{
		max-height:50vh;
		max-width:100vw;
	}
	
}
