html, body {
  height: 100%;
  margin: 0;
}

main.flex-grow-1 {
  flex: 1 0 auto;
}

footer {
    background-color: var(--primary-blue-dark);
    color: var(--white);
}

footer a {
    color: var(--white);
    text-decoration: none;
}

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

.connect-with-us a {
    text-decoration: none;
}

.connect-with-us a:hover {
    text-decoration: none;
}

footer h6 {
    font-weight: bold;
}

footer .row > div {
    margin-bottom: 1rem;
}

.footer-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.footer-icon:hover {
    transform: scale(1.1);
    opacity: 0.85;
}
