/* Header background */
.container-header {
    background: #000000;
    background-image: none;
}
/* Make banner position full width */
.banner {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove container restriction */
.banner .container,
.banner .container-fluid {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Banner image */
.hws-banner-image,
.banner img {
    display: block;
    width: 100% !important;
    height: auto;
}
.banner img {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    display: block;
}
/* Footer layout */
.container-footer {
    background: #000;
    background-image: none;
    color: #fff;
}

.container-footer .grid-child {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.container-footer a {
    color: #fff;
}

/* Copyright module under all footer columns */
.container-footer .grid-child > div:last-child {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    justify-self: stretch !important;
    text-align: center !important;
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 1rem;
    margin-top: 1rem;
}

.container-footer .grid-child > div:last-child * {
    text-align: center !important;
}

/* Mobile footer */
@media (max-width: 768px) {
    .container-footer .grid-child {
        grid-template-columns: 1fr;
    }
}

