.footer {
  background-color: #9D9D9C;
  color: #29235C;
  padding: 40px 20px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 1);
  margin-top: 40px;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-logo {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-bottom: 10px;
}

.slogan {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 10px;
  max-width: 100%;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.menu,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu__item,
.contact-list li {
  margin-bottom: 5px;
}

.menu__link,
.contact-list a {
  text-decoration: none;
  color: #29235C;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.3s;
}

.menu__link:hover,
.contact-list a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer .copyright {
  width: 100%;
  text-align: center;
  padding: 20px 0 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 400;
  color: #29235C;
}

/* Responsive */

@media (min-width: 1441px) and (max-width: 2560px) {


  .footer-logo {

    position: relative;
    right: 150px;

  }

  .slogan {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    right: 150px;
    text-align: center;
  }


}

@media (max-width: 1280px) and (min-width: 1025px) {

  .slogan {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    right: 0px;
    text-align: center;
  }

}

@media (min-width: 991px) and (max-width: 1024px) and (orientation: landscape) {
  .footer {

    margin-top: 200px;
    position: relative;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {


  .footer-container {
    flex-direction: row;
    align-items: initial;
  }

  .footer-col {
    text-align: initial;
  }




  .footer-left,
  .footer-center,
  .footer-right {
    text-align: initial;
  }

  .footer-logo {

    position: relative;
    right: 60px;

  }

  .slogan {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    right: 60px;
    text-align: center
  }

}

@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    text-align: center;
  }




  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }

  .footer-logo {

    position: relative;
    right: 0px;

  }

  .slogan {
    margin: 0 auto;
    max-width: 90%;
    position: relative;
    left: 220px;
  }

}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
    margin-bottom: -50px;
  }

  .footer-logo {
    max-width: 400px;
  }

  .slogan {
    margin-bottom: 20px;
    max-width: 90%;
    text-align: center;
    position: static;
  }

  .footer .copyright {
    padding-top: 10px;
    font-size: 0.8rem;

  }

  .footer {
    margin-top: 150px;
  }
}