.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 0px 0px 0px 20px;
  color: #2f2f2f;
  font-family:'Cairo';
  /*background-color: #FFFFFF;*/
}
.footerM {
    border-top: 2px solid #999;
}

.footer > * {
  flex:  1 100%;
}

.footer__addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
  text-align: center;
}

.footer__logo {
  font-family: 'Cairo';
  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-size: 15px;
  background-color: rgb(33, 33, 33, 0.07);
  border-radius: 100px;
  text-align: center;
  box-shadow: 2px 2px 0px 0px #ccc;
}

.footer address {
  font-style: normal;
  color: #999;
}

.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 auto;
  font-size: 1rem;
  padding: 0 1.3em;
}

.footer ul {
  list-style: none;
  padding-right: 0;
  text-align: center;
}

.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;
  font-size: 15px;
}
.nav__ul a:hover {
    margin: 0 10px 0 0 ;
}
.nav__ul--extra {
  column-count: 2;
  column-gap: 1.25em;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  color: #999;
  font-size: 14px;
}
  
.legal__links {
  display: flex;
  align-items: center;
}

.heart {
  color: #FF0000;
  font-size: 23px;
}

@media screen and (min-width: 24.375em) {
  .legal .legal__links {
    margin-right: auto;
  }
}

@media screen and (min-width: 40.375em) {
  .footer__nav > * {
    flex: 1;
  }
  
  .nav__item--extra {
    flex-grow: 2;
  }
  
  .footer__addr {
    flex: 1 0px;
  }
  
  .footer__nav {
    flex: 2 0px;
  }
}

ul.actions {
    list-style: none;
    padding-left: 0;
}
    .button2 {
    -webkit-appearance: none;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    border-radius: 5px;
    background: green;
    color: #fff !important;
    font-weight: 700;
    font-family: 'Cairo';
    outline: 0;
    font-size: 0.8em;
    padding: 0.65em 1.5em 0.65em 1.5em;
    text-align: center;
    margin: 0 0 0 0;
    animation: shake 1s;
    animation-iteration-count: infinite;
    box-shadow: 2px 2px #CCC;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}