*, *:before, *:after {
  box-sizing: border-box;
}

.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 4% 10% 2% 20%;
  color: #2f2f2f;
  /* background-color: #231818; */
  background: radial-gradient(1000px 500px at 10% 0%,
              rgba(107, 107, 114, 0.25), transparent 30%),
              radial-gradient(900px 400px at 90% 10%,
              rgba(67, 87, 112, 0.25), transparent 85%),
              #252628;
  font-size: 18px;
  font-family: 'Epilogue', 'Roboto', sans-serif;
  position: relative;
  z-index: 4;
}

.footer > * {
  flex:  1 100%;
}

.footer__addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer__logo {
  font-family: 'Pacifico';
  font-weight: 400;
  text-transform: lowercase;
  font-size: 1.5rem;
}

.footer__addr h2 {
  margin-top: 1.3em;
  font-size: 15px;
  font-weight: 400;
}

.nav__title {
  font-weight: 400;
  font-size: 20px;
  color: white;
  font-weight: bold;
}

.footer address {
  font-style: normal;
  color: #999;
  font-size: 16px;
  margin-right: 10%;
}

.footer-image{
    max-width: 300px;
    margin: -6% 0% 4% 0%;
    display: block;
    z-index: 3
}

.footer-image:hover{
  background-color: rgba(86, 80, 72, 0.144);
    transition-delay: 0.15s;
    /* padding-left: 5px;
    padding-right: 5px; */
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: max-content;
  background-color: rgb(33, 33, 33, 0.07);
  border-radius: 100px;
  color: #2f2f2f;
  line-height: 0;
  margin: 0.6em 0;
  font-size: 1rem;
  padding: 0 1.3em;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2em;
}

.footer a {
  text-decoration: none;
}

.footer__nav {
  display: flex;
	flex-flow: row wrap;
}

.footer__nav > * {
  flex: 1 50%;
  margin-right: 1.25em;
}

.nav__ul a {
  color: #999;
}

.nav__ul--extra {
  column-count: 2;
  column-gap: 1.25em;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  color: #999;
}
  
.legal__links {
  display: flex;
  align-items: center;
}

@media screen {
  .print-footer{
  visibility: hidden;
  display: none;
}
}

@media screen and (min-width: 40.375em) {
  footer{
    padding-top: 4%;
  }
  .footer__nav > * {
    flex: 1;
  }
  
  .nav__item--extra {
    flex-grow: 2;
  }
  
  .footer__addr {
    flex: 1 0px;
  }
  
  .footer__nav {
    flex: 2 0px;
  }
}