.sidebar {
  display: none;
  position: fixed;
  top: 400px;
  right: 0;
  z-index: 151;
}
@media screen and (min-width: 1400px) {
  .sidebar {
    display: block;
  }
}
.sidebar a {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #996533;
  background-size: 50% 50%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-bottom: 15px;
  border: none;
  transition: all 300ms ease;
}
.sidebar a:last-child {
  margin-bottom: 0;
}
.sidebar a:hover {
  background-color: #F4BD56;
}
.sidebar .phone {
  background-image: url('images/icon-phone.svg');
}
.sidebar .picture {
  background-image: url('images/picture.svg');
  background-size: 60% 60%;
}
.sidebar .mail {
  background-image: url('images/icon-mail.svg');
}
.sidebar .faq {
  background-image: url('images/icon-faq.svg');
}
