/* CSS Document */
/* ---------- FOOTER ---------- */
.footer {
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 40px 20px;
  box-sizing: border-box;
}

.footer-left {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-left a {
  color: #fff;
  text-decoration: none;
}

.footer-right {
  margin-left: 150px;
  flex: 1;
}

.suite-title {
  font-size: 11px;
  font-weight: 300;
  margin-bottom: 10px;
}

.suite-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.suite-logos img {
  width: 120px;
  
  object-fit: contain;
}

/* responsive */
@media (max-width: 768px) {
 .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    margin-left: 0;
    margin-top: 20px;
  }

  .suite-logos {
    justify-content: flex-start;
  }   
    
}
