@charset "utf-8";
/* CSS Document */

body, html{
  height: 100%;
}

.bg {
  background: rgba(76, 175, 80, 0.3) /* Green background with 30% opacity */
}
.logo-contain {
  height:80vh;
}
.monte {
  margin-top:-47px;
}
.icones-verdes {
  width:35px;
  height:35px;
  background:#004826;
}
.dados {
  background:#b3882d;
}

@media (max-width: 480px) {
/* Mobile devices */
.logo-contain {
  height:40vh;
}
.dados {
  height:60vh;
}
.monte {
  margin-top:50px;
}
}
@media (min-width: 481px) and (max-width: 768px) { 
/* iPads, Tablets */
.logo-contain {
  height:80vh;
}
.dados {
  height:20vh;
}
}
@media (min-width: 769px) and (max-width: 1024px) { 
/* Small screens, laptops */
.logo-contain {
  height:60vh;
}
}
@media (min-width: 1025px) and (max-width: 1200px) { 
/* Desktops, large screens */
.logo-contain {
  height:80vh;
}
.dados {
  height:20vh;
}
}
@media (min-width: 1201px) { 
/*  Extra large screens, TV */
.logo-contain {
  height:80vh;
}
.dados {
  height:20vh;
}
}