/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */


html {
  scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: arial, sans-serif;
	background: #000;
	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{
	position: relative;
}

#header img,
#bloco-1 img,
#bloco-2 img,
#bloco-3 img,
#bloco-4 img,
#bloco-5 img,
#bloco-6 img,
#bloco-7 img,
#bloco-8 img,
#bloco-9 img,
#bloco-10 img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: block;
}

#header img:nth-of-type(1),
#bloco-1 img:nth-of-type(1),
#bloco-2 img:nth-of-type(1),
#bloco-3 img:nth-of-type(1),
#bloco-4 img:nth-of-type(1),
#bloco-5 img:nth-of-type(1),
#bloco-6 img:nth-of-type(1),
#bloco-7 img:nth-of-type(1),
#bloco-8 img:nth-of-type(1),
#bloco-9 img:nth-of-type(1),
#bloco-10 img:nth-of-type(1) {
	position: initial;
}

#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;
}

}
