@import url('https://fonts.googleapis.com/css?family=Open+Sans');

* {
	padding: 0;
	margin:0;
	box-sizing: border-box;
}
html{
	height: 100%;
}

body{
	background-color: white;
	height: 100%;
	font-family: 'Futura', sans-serif;
	font-size: 18px;
	overflow: hidden;
	display: flex;
  justify-content: center;
  align-items: center;
}
a{color: black;}
a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:hover {text-decoration: none;}
a:active {text-decoration: none;}
/* MOBILE */
.desktop{
	display: none;
}
.mobile{
	display: block;
}
/* GOZBLAU */
.cabecalho{
	width: 100%;
	height: 100%;
}
.cabecalho .stairs{
	width: 80%;
    margin: 10% auto;
}
.conteudo{
	position: relative;
    background-color: white;
    width: 100%;
    height: 70px;
}
.conteudo .logo{
	float: left;
	display: inline-block;
	max-width: 45%;
	margin-left: 10%;
}
.conteudo ul{
	width: 80%;
	margin-left: 10%;
	list-style: none;
	float: left;
	margin-top: 10px;
}
.conteudo ul li{
	display: inline-block;
	text-align: left;
	width:10%;
	margin-left: 4%;
}
.conteudo ul li img{
	width: 70%;
}
.wrapper{
	overflow: none;
}
.big_wrapper{
	overflow: hidden;
	max-width: 1280px;
	margin:auto;
}

/* TABLET */
@media all and (min-width: 501px) {
body{
	font-size: 20px;
}
.mobile{
	display: none;
}
.desktop{
	display: block;
}

.cabecalho .desert{
	margin: 15px auto 0;
	width: 60%;
	height: auto;
}
.conteudo{
	height: 50px;
}
.wrapper{
	overflow: hidden;
	max-width: 860px;
	margin:0 auto;
}
.conteudo .logo{
	max-width: 40%;
}
.conteudo ul{
	width: 40%;
	margin-left: 20px;
}
.conteudo ul li{
	width:12%;
	margin-left: 0;
	line-height: 50px;
}
.conteudo ul li img{
	float: right;
    width: 40%;
    margin-top: 18px;
}
.swiper-container {
    width: 100%;
    height: calc(100% - 50px);
}
.swiper-pagination-bullet-active {
	background: #000;
}
.swiper-button-next{
	background-image: url('right 2.svg');
}
.swiper-button-prev{
	background-image: url('left 2.svg');
}
}
/* DESKTOP */
@media all and (min-width: 801px) {
.conteudo .logo{
	max-width: 30%;
}
.cabecalho .desert{
	margin: 20px auto 0;
	max-height: 630px;
	width: auto;
}
.conteudo ul{
	float: right;
	width: 40%;
}
.conteudo ul li img{
	margin-top: 12px;
}
}
