

.footer-container{
  background-color: rgb(120, 120, 120);
  color: white;
  margin-top: 0;
  padding: 72px 10vw;
  display: flex;
  flex-direction: row;
  min-height: fit-content;
  flex-wrap: wrap;
}

.footer-logo {
  width: 60%;
  max-width: 180px;
}

.footer-left-section,
.footer-right-section {
  width: 100%;
  padding: 0;
}

.footer-left-section {
  flex: 1;
  padding-right: 20px;

}

.footer-left-section div {
  margin-bottom: 5px;
}

.footer-right-section {
  padding-top: 10px;
  margin: 0 0 10px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}

.footer-right-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.footer-link {
  color: white;
  text-decoration: none;
  margin: 10px 0px;
  transition: color 0.3s ease, opacity 0.3s ease;
  /* smooth transition */
}

.footer-block {
  margin: 20px 0px;
}

.footer-link:hover {
  color: goldenrod;
}

.navigation {
  padding: 12px;
}

.footnote {
  background-color: rgb(100, 100, 100);
  font-weight: 700;
  color: white;
  font-size: small;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.footnote p {
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    padding: 40px 5vw;
    gap: 32px;
  }
}