/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */


html {
  scroll-behavior: smooth;
}

body {
	margin: 0;
}

.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.lenovo{
	overflow: hidden;
	position: relative;
}

section.lenovo img{
	height: auto;
	width: 100%;
	display: block;
}

section.lenovo img:not(:nth-of-type(1)){
	position: absolute !important;
	top: 0 ;
	left: 0;
}


@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;
}

}