.site-footer {
  background-color: #002b4b;
  color: white;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  max-width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: nowrap;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-title-link {
  color: white;
  text-decoration: none;
}

.footer-title-link:hover {
  text-decoration: underline;
}

.footer-column ul {
  flex-wrap: nowrap;
  white-space: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 6px;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.footer-column a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-column a.sub-link {
  font-size: 12px;
  color: #cccccc;
}

.footer-contact {
  white-space: nowrap;
  padding-left: 40px;
  border-left: 1px solid white;
  color: white;
  margin-top: 20px;
  margin-left: 40px;
}

.footer-contact p {
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-icons{
  flex-wrap: nowrap;
}

.footer-icons a {
  margin-right: 12px;
  display: inline-block;
}

.footer-icons img {
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 1080px) {
 .footer-column{
    display: none;
}

 .footer-contact{
    margin-left: 0px;
    border-left: 0px;
}
}

