footer .contact-info p,
footer .contact-info a {
    color: #ffffff;
    font-size: var(--defaultFontSize);
    font-family: var(--defaultFontFamily);
    font-weight: var(--defaultFontWeigh);
    line-height: var(--defaultLineHeight);
    letter-spacing: var(--defaultLetterSpacing);
    margin: 0 !important;
}

footer .contact-info a{
    text-decoration: underline;
}

footer .contact-info {
    margin-top: 30px;
}

footer .footer__left__logo {
    margin-left: -10px;
}

footer .footer-social-wrap {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

footer .footer-copy-right {
    margin-top: 50px;
    font-size: var(--defaultFontSize);
    font-family: var(--defaultFontFamily);
    font-weight: var(--defaultFontWeigh);
    line-height: var(--defaultLineHeight);
    letter-spacing: var(--defaultLetterSpacing);
}

footer .footer__right__top {
    border: none !important;
    padding-bottom: 0;
    margin-bottom: 20px;
    justify-content: flex-start;
}

footer .footer__right__bottom li {
    margin-bottom: 0 !important;
}

footer .footer__right__bottom ul {
    gap: 10px;
}

footer {
    padding-bottom: 0px !important;
}

/* =============== */
.footer {
    position: relative !important;
    overflow: hidden;
    /* hide any video overflow */
}

.footer.footer--has-video .hac-new-hero-section-section-video-wrapper {
    position: absolute;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0; */
    z-index: 0;
}

.footer.footer--has-video .hac-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* crop to fill */
    pointer-events: none;
    /* ensure links on top remain clickable */
}

/* put actual footer content above the video */
.footer > .wrapper,
.footer .footer__left,
.footer .footer__right {
    position: relative;
    z-index: 1;
}

/* optional: add a subtle dark overlay for readability */
.footer.footer--has-video::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    /* sits over video, under content */
}

.footer.footer--has-video::after {
    content: "";
    position: absolute;
    inset: 0;
    /* shorthand for top:0; right:0; bottom:0; left:0 */
    background: #182843B2;
    pointer-events: none;
    /* keep video controls clickable if needed */
}

.hac-footer-menu-right-wrap {
    display: flex;
}

.hac-footer-menu-right-item-wrap{
    margin-bottom: 40px;
}

.hac-footer-menu-right-item-wrap ul {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.hac-footer-menu-right-item-wrap ul a {
    font-size: 1rem;
    font-family: var(--defaultFontFamily);
    font-weight: var(--defaultFontWeigh);
    line-height: var(--defaultLineHeight);
    letter-spacing: var(--defaultLetterSpacing);
}

.hac-footer-menu-right-item-wrap {
    min-width: 300px;
}

.hac-footer-menu-right-item-wrap .footer-menu-title {
    font-size: 1.3625rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 1%;
    margin-bottom: 30px;
}

footer .hac-footer-login {
    display: flex;
    align-items: center;
    font-size: var(--buttonTextFontSize);
    font-family: var(--buttonTextFontFamily);
    font-weight: var(--buttonTextFontWeight);
    line-height: var(--buttonTextLineHeight);
    letter-spacing: var(--buttonTextLetterSpacing);
    border-top: 1px solid var(--colourLightGreen);
    padding-top: 15px;
    margin-top: 15px;
    transition: 350ms;
}

footer .hac-footer-login:hover {
    color: var(--colourLightGreen) !important;
}

footer .hac-footer-login svg {
    margin-right: 10px;
}

footer .hac-footer-login-wrap {
    display: flex;
}

@media only screen and (min-width: 930px) {
    .hac-footer-menu-right-wrap {
        margin-top: -25px;
        margin-left: 40px;
    }
    .hac-footer-menu-right-wrap .hac-footer-menu-right-item-wrap:first-of-type{
        border-left: 1px solid var(--colourLightGreen);
        padding-left: 40px;
    }
}

@media only screen and (max-width: 931px) {
    .hac-footer-menu-right-wrap {
        flex-direction: column;
    }

    
}