/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
body {
	line-height: 1;
  background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
	
	font-weight: normal;
}
ol, ul {
	list-style: none;
}
blockquote {
	quotes: none;
}
blockquote:before, blockquote:after {
	content: '';
	content: none;
}
del {
	text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a img {
	border: none;
}

.no-margin{
  margin-left: 0;
  margin-right: 0;
}
.no-padding{
  padding-left: 0;
  padding-right: 0;
}

/* custom*/

.wrapper{
  overflow: hidden;
}

.logos{
  position: relative;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  border: 10px solid #7D393C;
}
.logos img{
  max-width: 70%;
  max-height: 60px;
}

.titulo{
  background-color: #7D393C;
  padding: 25px 0 25px 25px;
}
.titulo h1{
  text-transform: uppercase;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #EAD8BC;
  font-size: 40px;
  line-height: 40px;
  padding: 0 0 10px;
  margin: 0 0 15px;
  border-bottom: 1px solid #BCC6CE;
}
.titulo h2{
  text-transform: uppercase;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 30px;
  line-height: 30px;
  margin: 0;
}

div.banner{
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  height: 450px;
  position: relative;
}
div.banner ul{
  position: absolute;
  bottom: 0;
  left: 25px;
}
div.banner ul li{
  display: inline-block;
  vertical-align: top;
  background-color: #fff;
  padding: 0 15px;
  font-family: Arial, Helvetica, sans-serif;
  color: #7D393C;
  font-size: 20px;
  line-height: 40px;
  opacity: .7;
}
div.banner ul li:hover{
  cursor: pointer;
}
div.banner ul li.o{
  opacity: 1;
  border-radius: 4px 4px 0 0;
}

div.footer{
  background-color: #7D393C;
  border-top: 1px solid #ABAEBD;
  padding: 25px 15px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}

div.footer p{
  color: #fff;
}

div.footer a {
  color: #EAD8BC
}

.content{
  display: none;
}
.content.o{
  display: block;
}
.content .h{
  padding: 15px 25px;
  background-color: #7D393C;;
  font-family: sans-serif;
  color: #fff;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 1px;
}

.content .c{
  padding: 25px;
  background-color: #EAD8BC;
  font-family: sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
}
.content .c p, .content .c a{
  font-family: sans-serif;
  color: #7D393C;
  font-size: 16px;
  line-height: 24px;
}
.content .c table tr{
  border-bottom: 1px dotted #fff;
}
.content .c table tr:last-child{
  border-bottom: none;
}
.content .c table td{
  padding: 15px;
}
.content .c table i.fa{
  font-size: 30px;
}