footer {
  padding: 40px 20px 40px 20px;
  background-color: var(--color-2);
  color: #fff;
}
.footer_container {
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  text-align: left;
  gap: 60px;
}
.footer_container img {
  max-width: 200px;
  max-height: 100px;
  padding: 10px;
  border-radius: 8px;
  background-color: #fff;
  object-fit: contain;
}
.footer_container_infos {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer_container_menus {
  display: flex;
  gap: 10px;
}
.footer_container_foot {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer_divisor {
  width: 100%;
  border: none;
  border-top: 1px solid #fff;
  opacity: 0.1;
  margin: 20px 0;
}
.menu {
  width: 250px;
}
.footer_icon {
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
.footer_icon:hover {
  opacity: 0.5;
}
.footer_social_icons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.footer_icon i {
  font-size: 28px;
}
.footer_container_foot {
  width: 95%;
  margin: auto;
  color: #fff;
  opacity: 0.6;
}
.footer_container_foot p {
  font-weight: lighter;
  font-size: 14px;
}
.footer_container_foot p span {
  font-weight: 400;
}
.footer_container_foot p a {
  color: #fff;
  text-decoration: none;
}
.footer_container_foot p a:hover {
  text-decoration: underline;
}
.menu > h2 {
  font-size: 16px;
  padding-bottom: 10px;
}
.menu > ul {
  list-style: none;
  display: flex;
  gap: 4px;
  flex-direction: column;
}
.menu > ul > li > a {
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu > ul > li > a:hover {
  opacity: 0.5;
}
@media (width < 750px) {
  .footer_container{
    justify-content: center;
  }
  .footer_container_menus {
    display: none;
  }
  .footer_container_infos {
    align-items: center;
    text-align: center;
  }
  .footer_container_foot {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    width: 100%;
  }
}
