header {
  padding: 10px 0;
  background-color: var(--primary-color);
}

header .container {
  padding: 0;
}

header .menu {
  cursor: pointer;
  transition: all 0.6s;
}

header a {
  color: #fff;
  text-decoration: none;
  padding: 16px;
}

header a:hover {
  color: #fff;
  text-decoration: underline;
}

header .menu .hamburguer:hover {
  transform: scale(1.1);
}

  header .menuMobile {
    display: none;
  }

/*  */

footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 100px 0 0;
}

footer .col-md-6 {
  width: 100%;
}

footer .row ~ :last-child {
  border-top: 1px solid #fff;
}

footer h4 {
  color: #fff;
  font-family: "Playfair Display SC";
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer .col-md-6 {
  padding-bottom: 30px;
}

footer .copy {
  padding: 30px 0 10px;
}

footer .copy a,
footer .copy p {
  color: #fff;
}

@media (max-width: 991px) {
  header .menuDesktop {
    display: none;
  }

  header .menuMobile {
    display: block;
  }

  footer * {
    text-align: center;
  }

  footer .col-md-3 {
    width: 100% !important;
    margin-bottom: 30px;
  }
}
