/* ----------------------------------- MAIN ------------------------------------- */

@font-face {
    font-family: Alta;
    src: url("fonts/alta-regular.otf") format("opentype");
}

@font-face {
    font-family: Higuen;
    src: url("fonts/Higuen Serif.otf") format("opentype");
}

body {
	/* background-color: #121212; */
	width: 100%;
	box-sizing: border-box;
	background-color: white;
	scrollbar-width: none;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	
	align-items: center;
	justify-content: center;
	
	/* font-family: Goudy Old Style; */
	font-family: Raleway;
	/* font-family: 'Cardo',Georgia,"Times New Roman",serif; */
	/* font-family: cormorantgaramond-light; */
	/* font-family: Cormorant Garamond; */
	/* font-family: Calibri; */
	/* font-family: Cambria; */
	font-size: 15px;
	letter-spacing: .12rem;
	line-height: 1.6;
	/* font-style: italic; */
	/* font-weight: lighter; */
	/* color: rgb(70, 70, 70); */
	color: rgb(0, 0, 0);
	/* letter-spacing: 2px; */
  }
 
 a {
	text-decoration: none;
}

/* ----------------------------------- MENU NAV ------------------------------------- */

.banner {
	/* display: flex; */
	box-sizing: border-box;
	width: 100%;
	height: 100vh;
}

.homegallery {
	/* position: relative; */
    width: 100%;
    height: 100%;
}

.homegallery img {
	z-index: -900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	/* height: 100vh; */
	object-fit: cover;
    /* height: 100%; */
    object-fit: cover;
    opacity: 0;
    animation: fadeLoop 16s infinite;
    }

.homegallery img:nth-child(1) {
  animation-delay: 0s;
}

.homegallery img:nth-child(2) {
  animation-delay: 4s;
}

.homegallery img:nth-child(3) {
  animation-delay: 8s;
}

.homegallery img:nth-child(4) {
  animation-delay: 12s;
}


@keyframes fadeLoop {
  0%, 30%, 100% {
	opacity: 0;
  }
  5%, 25% {
	opacity: 1;
  }
}


.menu {
	
	position: absolute;
	top: 2%;
	left: 5%;
	display: flex;
	font-family: "Alta", Goudy Old Style;
	/* justify-content: center; */
	/* align-content: center; */
	/* align-items: stretch; */
	width: 90%;
	min-height: 180px;
	z-index: 9999;
	transition: ease all .5s;
	/* background-color: rgba(0, 0, 0, 0.4) */
}

.menu a {
	
	display: flex;
	flex-grow: 1;
	
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .25rem;
	color: white;
	font-weight: 500;
	font-size: max(1.05vw, 12px);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
	align-items: center;
	justify-content: center;
	padding: 25px;
	transition: 0.2s;
}
.menu a:hover {

	scale: 1.1;
}

.logo {
	
	padding: 20px 20px 20px 20px;
	margin-left: 60px;
	margin-right: 60px;
	transition: 0.2s;
	min-height: 80px;
	max-height: 120px;
	/* background-color: red; */
	
}
.logo:hover {
	
	scale: 1.1;
}

.logomobile {
	
	min-width: 350px;
	width: 70%;
	max-width: 460px;
	height: auto;
	/* background-color: red; */
	
}

@media (max-width: 1200px) {
	
	.banner {
		display: flex;
		box-sizing: border-box;
		width: 100%;
		height: 100vh;
	}
  
	.homegallery img {
    height: 100%;
	object-fit: cover;
    }
	
	.menu {
	
		display: flex;
		flex-direction: column;
		top: 15%;
		left: 10%;
	}
	
	.logo {
		
		display: none;
		/* flex-direction: column; */
	}
}

@media (min-width: 1200px) {
  
	.logomobile {
	
		display: none;
		/* flex-direction: column; */
	}
}

/* ----------------------------- ESTRUTURA PRINCIPAL TEXTO ------------------------------- */

h1, h2, h3 {
	
	color: rgb(60, 60, 60);
	width: 100%;
	font-family: "Alta","Italiana",'Cardo',Georgia,"Times New Roman",serif;
	/* font-family: 'higuen elegant serif','Cardo',Georgia,"Times New Roman",serif; */
	padding-bottom: 30px;
	/* text-transform: uppercase; */
	font-size: 36px;
	font-weight: 600;
	letter-spacing: .26rem;
	/* text-align: center; */
	text-align: justify;
	text-transform: uppercase;
	/* max-width: 500px; */
	/* background-color: red; */
	/* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

h1 {
	padding-left: 5rem;
}

h2 {
	font-family: Raleway,Georgia,"Times New Roman",serif;
	font-size: 17px;
	text-transform: none;
}

h3 {
	font-family: Raleway,Georgia,"Times New Roman",serif;
	letter-spacing: .20rem;
	font-size: 16px;
	text-transform: none;
	text-transform: none;
}

.sectioncolor1 {
	
	display: flex;
	flex-wrap: wrap;
	text-align: justify;
	align-items: center;
	
	background: white;
	width: 100%;
	/* max-width: 500px; */
	
	justify-content: center;
	padding: 125px;
	padding-left: 15%;
	padding-right: 15%;
	/* background-color: red; */
}

.sectioncolor2 {
	
	display: flex;
	flex-wrap: wrap;
	/* flex-grow: 1; */
	text-align: justify;
	align-items: center;
	
	border-style: solid;
	border-width: 1.5px;
	border-color: rgb(209, 204, 200);
	
	width: 100%;
	justify-content: center;
	padding: 125px;
	padding-left: 15%;
	padding-right: 15%;
	/* background-color: rgb(247, 242, 238); */
	background-color: rgb(240, 240, 240);
	/* background-color: red; */
}

@media (min-width: 1200px) {
	
	.sectioncolor1 {
		box-sizing: border-box;
	}

	.sectioncolor2 {
		box-sizing: border-box;
	}
  
	
}

.innercontainer {
	
	/* overflow: hidden; */
	display: flex;
	/* background-color: green; */
	width: 80%;
	min-width: 500px;
	text-align: justify;
	align-items: center;
	justify-content: center;
}

.spacer {
	
	display: flex;
	padding: 3%;
	/* background-color: red; */
}
.columntext {
	
	/* max-width: 580px; */
	width: min(65%, 660px);
	/* min-width: 400px; */
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.18);
	/* margin: 30px; */
}

.imagetext {
	
	width: clamp(250px, 50%, 700px);
	border-radius: 8px;
	height: auto;
	/* border-style: solid; */
	/* border-width: 5px; */
	/* border-color: rgb(255, 255, 255); */
	/* box-shadow: 20px 20px rgb(167, 162, 158); */
	/* margin: 30px; */
}

/* ----------------------------- Hidden Text ------------------------------- */

.fade-in {
	
	opacity: 0;
	transition: all 1.4s;
}

.fade-in.appear {
	
	opacity: 1;
}

@media (max-width: 1300px) {
  
	.innercontainer {
		
		display: inline;
	}
	
	.imagetext {
		
		max-width: 580px;
		width: 65%;
		min-width: 400px;
	}
}

.field {
	
	display: flex;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 100%;
	height: 15vh;
}

.imagegrid {
	
	display: grid;
	grid-auto-flow: dense;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto;
	grid-gap: 1.3rem;
	/* justify-content: center; */
	flex-wrap: wrap;
}

.imageelement {
	width: 100%;
	height: 25rem;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 0.20rem;
	transition: 0.25s;
	object-fit: cover; /* Image adjusts to size */
}

.imagegrid img:nth-child(4n) {
	grid-column: span 2;
  }



.imagegrid img:hover {
	/* position: absolute; */
	/* scale: 101%; */
	/* width: 18rem; */
	box-shadow: rgba(0, 0, 0, 0.4) 0 4px 12px;
	/* transform: translate(0px, 3px); */
}

@media (max-width: 1100px) {
  
	.imagegrid {
		display: inline;
	}
	
	.imageelement {
		width: 25rem;
		min-width: 250px;
		grid-column: span 1;
	}
}

.venuegrid {
	
	display: grid;
	grid-auto-flow: dense;
	justify-content: center;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 22px;
	flex-wrap: wrap;
}

.imagevenue {
	max-width: 100%;
	border-radius: 8px;
	transition: 0.1s;
}

.imagevenue:hover {
	scale: 102%;
	box-shadow: rgba(0, 0, 0, 0.4) 0 4px 12px;
	transform: translate(0px, 3px);
	
}

/* ----------------------------- Buttons ------------------------------- */

/* .a { */
	/* text-decoration: none; */
/* } */
	
.themebutton {
	
	display: flex;
	background-color: rgb(240, 240, 240);
	text-decoration: none;
	font-family: Raleway;
	text-transform: uppercase;
	letter-spacing: .16rem;
	width: 100%;
	padding: 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: .25rem;
	/* text-decoration: none; */
	/* text-transform: uppercase; */
	margin-top: 30px;
	font-weight: 500;
	color: white;
	align-content: center;
	justify-content: center;
	transition: 0.2s;
	background-color: rgb(155,140,125);
}

.themebutton:hover {
	
	scale: 1.02;
	box-shadow: rgba(0, 0, 0, 0.3) 0 4px 12px;
	background-color: rgb(195,180,165);
}

/* ----------------------------- Page Top/Bottom ------------------------------- */

.top {
	
	display: flex;
	position: sticky;
	top: 0px;
	font-family: Goudy Old Style;
	justify-content: center;
	align-content: center;
	align-items: stretch;
	width: 100%;
	height: 60px;
	background-color: white;
	z-index: 9999;
}

.top a {
	
	display: flex;
	flex-grow: 1;

	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: rgb(90,90,90);
	font-weight: 300;
	font-size: 12px;
	text-align: center;
	justify-content: center;
	align-items: center;
	padding: 30px;
	transition: 0.6s;
	/* height: 100px; */
	/* background-color: red; */
}
.top a:hover {

	scale: 5.1;
}

.bottom {
	
	display: flex;
	box-sizing: border-box;
	font-family: "Alta", Goudy Old Style;
	justify-content: center;
	align-content: center;
	align-items: stretch;
	width: 100%;
	height: 80px;
	z-index: 9999;
}

.bottom a {
	
	display: flex;
	flex-grow: 1;

	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: rgb(90,90,90);
	font-weight: 300;
	font-size: 14px;
	text-align: center;
	justify-content: center;
	align-items: center;
	padding: 30px;
	transition: 0.5s;
	/* height: 100px; */
	/* background-color: red; */
}
.bottom a:hover {

	scale: 1.15;
}

/* ---------------------------------- BODY ------------------------------------ */

.imagebox:active {
	/* position: fixed; */
	top: 65px;	right: 55px;
	transform: scale(1.55);
	filter: grayscale(100%);
}

.slide {
	max-width: 100%;
}

.foundersgallery {
	display: flex;
	/* width: 300px; */
}

.foundersimage {
	padding: 1rem;
	width: 170px;
	height: 45rem;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 0.20rem;
	transition: 0.25s;
	object-fit: cover;

}

.foundersimage:hover {
	width: 100%;
}

/* ----------------------------- Contact Form ------------------------------- */

.contactform {
	width: 100%;
	justify-content: center;
	text-align: justify;
	align-items: center;
}

.contactform input {
	font-size: 0.9rem;
	width: 97%;
	margin: .3rem;
	font-family: Raleway;
}

.contactform textarea {
	font-size: 0.9rem;
	width: 97%;
	margin: .3rem;
	font-family: Raleway;
}