@charset "UTF-8";

/*Footer*/

#footer > hr {
  width: 100vw;
  position: relative;
  left:-25vw;
}

.row {
  display: table;
  border-collapse: collapse;
  width: 100%;
}
.item {
  display: table-cell;
  vertical-align: bottom;
}
.item img {
  display: block;
  width: 95%;
  height: 40px;
  padding: 0 5px 0 5px;
}

#footer {
  height: 100px;
  width: 50vw;
  position: relative;
  left: 25vw;
  margin-top: 20vh;
  margin-bottom: 30px;
}

#footer-background {
  background-color: white;
  position: absolute;
  bottom: -100px;
  left: -25vw;
  width: 100vw;
  height: 170px;
  border-top: var(--border-thick);
  box-shadow: var(--outer-shadow-top);
}

#footer-logos {
  width: 50vw;
  position: relative;
  margin-top: 3vw;
}

#footer-menu {
  position: relative;
  width: 50vw;
  text-align: center;
  padding: 2vw 0 1vw 0;
}

#footer-menu li {
  list-style: none;
  width: 25%;
  float: left;
}

#footer-menu a {
  font-size: clamp(13px, 1.5vw, 16px);
}

@media (max-width: 950px) {
  #footer-background {
    left: 0vw;
  }
  #footer {
    width: 100vw;
    left:0;
  }
  #footer-logos {
    margin-top: 7vw;
  }
  #footer hr {
    left:0;
  }
  #footer-logos, #footer-menu {
    width: 80vw;
    left: 10vw;
  }
}

@media (max-width: 450px) {
  #footer {
    width: 100vw;
    left: 0;
  }
  #footer-logos, #footer-menu {
    width: 90vw;
    left: 5vw;
  }
}
