/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */


html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: arial, sans-serif;
	background: #fff;
	color: #fff;
	font-size: 18px;
	line-height: 1.5em;
}

.container {
	margin: auto;
}

#menu {
	overflow: hidden;
	padding: 50px 0;
	background-color: #000;
}

#menu img {
	max-width: 100%;
	max-height: 150px;
	opacity: .7;
	transition: all .5s ease-in-out 0s;
}

#menu img:hover {
	opacity: 1;
}

.menu {
	display: grid;
	justify-content: stretch;
	align-content: center;
	justify-items: center;
	grid-template-columns: repeat(auto-fit, minmax(100px, auto));
}

section {
	overflow: hidden;
}

/******* novo ******************/
#header,
#bloco-1,
#bloco-2,
#bloco-3,
#bloco-4,
#bloco-5,
#bloco-6,
#bloco-7,
#bloco-8,
#bloco-9,
#bloco-10,
#bloco-11,
#bloco-12 {
	position: relative;
	background-color: #000;
}

#header img,
#bloco-1 img,
#bloco-2 img,
#bloco-3 img,
#bloco-7 img,
#bloco-8 img,
#bloco-9 img,
#bloco-10 img,
#bloco-11 img,
#bloco-12 img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: block;
}


#header {
	height: 0;
	padding-bottom: 55.6%;
	position: relative;
}

#bloco-1 {
	background-size: cover;
	height: 0;
	padding-bottom: 55.5%;
	position: relative;
}

#bloco-2 {
	background-size: cover;
	height: 0;
	padding-bottom: 55.5%;
	position: relative;
}

#bloco-3 {
	background-size: cover;
	height: 0;
	padding-bottom: 56.2%;
	position: relative;
}

#bloco-4 img{
	width: 100%;
	display: block;
}

#bloco-5 img{
	width: 100%;
	display: block;
}

#bloco-6 img{
	width: 100%;
	display: block;
}


[data-aos=opacity-alternative].aos-animate {
	animation: opacity-alternative 1s ease-in-out infinite alternate;
}

@keyframes opacity-alternative {

	0%,
	25% {
		opacity: 0;
	}

	75%,
	100% {
		opacity: 1;
	}
}

#rodape img {
	display: block;
	width: 100%;
}

/* responsivo */
@media only screen and (max-width: 1025px) {
	#menu img {
		max-height: 100px;
		opacity: .7;
	}
}

@media only screen and (max-width: 768px) {

	body {
		font-size: 14px;
	}

	#menu {
		padding: 25px 0;
	}

	.menu {
		grid-template-columns: 1fr 1fr;
		grid-auto-columns: 100px;
		grid-template-rows: 1fr 1fr;
		grid-auto-rows: 100px;
		row-gap: 20px;
		align-items: center
	}

	#menu img {
		max-height: 75px;
	}

}