@charset "UTF-8";
/* CSS Document */

html,
html * {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
font-family: "transat-text", sans-serif;}

header {
	padding: 30px;
}

.style-logo {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 200px;
}

.style-nav ul {
	list-style-type: none;
}

.style-nav ul li a {
	text-decoration: none;
	color: #000000;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 5px;
}

/* Tablet View */

@media (min-width: 768px){
	
	.style-nav ul li {
		display: inline-block;
	}
	.style-nav ul {
		text-align: center;
	}
}

/* desktop View */

@media (min-width: 1024px){
	
	.style-logo {
		float: left;
	}
	
	.style-nav {
		float: right;
	}
	
	.title {
		margin-top: 90px;
	}
}

h1 {
	font-size: 30px;
	margin: 10px 0px 0px 40px;
	font-family: "hoss-round", sans-serif;
	font-weight: 700;
font-style: italic;
}

h2 {
	font-size: 20px;
	text-align: left;
	margin: 30px 0px 0px 40px;
	font-family: "hoss-round", sans-serif;
	font-weight: 700;
font-style: italic;
}

p {
	font-size: 16px;
	margin: 10px 0px 0px 50px;
	font-family: "transat-text", sans-serif;
}

/* image gallery */

.style-grid {
	margin: 10px 25px;
}

div.gallery {
  
}

div.gallery img {
  width: 100%;
  height: auto;
	padding: 10px;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 25%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.style-nav li .active {
color: #D96941;
}