*{
    padding: 0;
    margin: 0;
    font-family: Poppins, sans-serif;
}
nav{

    background-color: rgb(255, 255, 255);
}
#bosch{
  float: left;
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
}
#header{
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 96%;
    align-items: center;
}
ul{
  display: flex;
  list-style: none;
  justify-content: space-around;
  min-width: 125px;
  align-items: center;
}
ul li a{
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-style: 25px;
  padding: 0 10px;
}
#burguer > div{
    width: 30px;
    height: 2px;
    background-color: rgb(0, 0, 0);
    transition: 0.5s;
}
#burguer {
    width: 100px;
    height: 25px;
    opacity: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
    z-index: 999;
}
#burguer > div:nth-child(3){
    width: 30px;
}
#burguer > div:nth-child(2){
    width: 30px;
}
#burguer:hover div {
    width: 40px;
    opacity: 0.50;
}
#burguer.active > div:nth-child(3){
    opacity: 0;
}
#burguer.active > div:nth-child(1){
    transform: rotate(45deg) translateY(12px);
    width: 27px;
}
#burguer.active > div:nth-child(2){
    transform: rotate(135deg) translateY(9px);
    width: 30px;
}
#menuMobile ul{
    margin-top: 320px;
    display: flex;
    flex-direction: column;
    color: black;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: flex-start;
}
#menuMobile ul li{
    padding: 20px 0;
    width: 100%;
}
#menuMobile{
    position: absolute;
    background-color: black;
    transform: translateY(-100%);
    transition: all linear .5s;
    z-index: 99;
}
#menuMobile.active{
    transform: translateY(0);
} 
a{
    text-decoration: none;
}
#logo{
    width: 100px;
    height: 100px;
    background-color: white;
    margin: 10px 6px;
}
*
{
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
}

.header {
  text-align: center;
  padding: 32px;
}
.row {
  display: -ms-flexbox; 
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 4px;
}
.column {
  -ms-flex: 25%; 
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}
#figura{
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 100px;
}
  footer {
    font-family: sans-serif;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 99;
    background-color: rgb(0, 0, 0);
    color: white;
    text-align: center;
}
footer p{
    font-size: 10px;
    margin: 11px auto;
}