#container_footer {
  display: block;
  width: 100%;
  margin-top: unset;
}
.footer {
  /* position: relative; */
  bottom: 0;
  width: 100%;
  display: flex;
  /* flex-direction: row; */
  /* align-items: center; */
  justify-content: space-between;
  padding: 10px 100px 10px 100px;
}
.cajaFooter {
  background-color: var(--main-color-03);
  width: 30vw;
  display: flex;
  flex-direction: column;
}
.cajaIz {
  height: 100%;
  width: auto;
}
#logoFooter {
  max-height: 80%;
  min-width: 300px;
  max-width: 400px;
  width: 100%;
  background-color: var(--main-color-01);
  padding: 5px;
}
.cajaDer {
  color: black;
  padding-top: 0;
  display: flex;
  align-items: flex-end;
}
.contact {
  font-weight: bold;
  transition: 0.4s;
  padding: 15px;
}
.txt {
  margin: 15px;
}
#tel{
  color: black;
  text-decoration: none;
  margin: 15px;
  margin-right: 0px;
}
#mail {
  margin: 15px;
  color: black;
  text-decoration: none;
  margin-right: 0px;

}
.contact:hover {
  color: rgb(0, 34, 97);
  box-shadow: 2px 2px 6px rgba(128, 128, 128, 0.459);
  transform: scale(1.1);
}

@media only screen and (max-width: 900px) {
  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .txt {
    padding-right: 0px;
    padding-left: 0px;
    text-align: center;
  }
  .cajaDer {
    color: black;
    padding: 15px;
    display: flex;
    align-items: center;
    min-width: 200px;
  }
  
}
