﻿/* Footer style settings. */
.footer {
  text-align: center;
  padding: 8px;
  background-color: rgba(11, 70, 80, 0.75);
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(150px, auto);
  grid-gap: 10px;
  text-decoration: none;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.1);
}

.column {
  box-sizing: border-box;
  padding: 8px 8px;
  margin-bottom: 2rem;
}

.footer-column-header {
  font-size: 1.05rem;
}

.colmenu {
  justify-content: center;
  list-style-type: none;
  margin-right: 35px;
  align-items: center;
  line-height: 2;
}

.fc-item {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-weight: normal;
}

.fc-item a {
  text-decoration: none;
  color: white;
  font-weight: normal;
}

.item a:hover {
  color: rgb(80, 21, 11);
}

@media (max-width: 1050px) {
  .footer {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .footer {
    grid-template-columns: 1fr;
  }
}
