* {
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1280px;
  width: 80%;
  margin: auto;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  width: 70px;
  padding: 10px 0px;
}

.space {
  color: #fff;
}

.nav-menu {
  padding: 20px 10px;
}

.nav-button {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  background-color: #fff;
  color: #444;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 3px;
}

.nav-button.active {
  color: #fff;
  background-color: #444;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 50px 0px;
  border-top: 0.5px solid #444;
}

.footer__title {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.footer__contact img {
  margin-right: 10px;
  width: 20px;
}

.footer__contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.footer__contact-info a {
  color: #444;
  text-align: center;
}

@media (max-width: 1028px) {
  footer {
    flex-wrap: wrap;
    text-align: center;
  }

  .footer-section {
    width: 50%;
  }

  .footer__title {
    width: 100%;
  }

  .footer__contact {
    width: 100%;
    margin: 20px 0px;
  }
  
  .footer__contact-info {
    justify-content: center;
  }
}

.btn-menu {
  display: none;
}

.btn-close {
  display: none;
}

@media (max-width: 764px) {

  .btn-menu {
    display: block;
  }

  .btn-menu img { 
    height: 20px;
    width: 20px;
  }

  .nav-menu {
    position: absolute;
    top: 0;
    left: -115%;
    right: 200%;
    display: flex;
    flex-wrap: wrap;
    transition: all .3s ease;
    background-color: #fff;
  }

  .nav-menu.active {
    left: 0;
    right: 0;
  }

  .nav-menu a {
    width: 100%;
  }

  .btn-close {
    display: inline-block;
    margin-bottom: 20px;
    margin-left: 20px;
    font-size: 24px;
  }

  .footer-section {
    width: 100%;
    margin: 10px 0px;
  }
}