/* Mobile Menu */
#mobileheader-914930 .header-content-wrap >*:not(.nav-bar) {
    color: #ffffff !important;
}

.mobilemenu-main .m-menu {
    background-color: #464446 !important;
}

/* Home Page */
.homePageHeading {
    text-align: center;
}

.spnHideH1 {
    display: none;
}


/* Footer */
.footerWrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footerDetails {
    padding: 40px 0px;

    & a:hover {
        text-wrap: nowrap;
    }

    & h3 {
        color: var(--accent-color);
        font-weight: 600;
    }

    & .footerLogos {
        display: flex;
        gap: 10%;
    }

    & a.social-05 {
        width: 50px;
        height: 50px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin: 0px 3px 10px;
        color: #464446;
        border: 1px solid #464446;
        transition: all ease-in 300ms;
    }

    & a.social-05:hover,
    & a.social-05:visited,
    & a.social-05:link {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: #464446;
        border: 1px solid #464446;
        transition: all ease-in 300ms;
    }
}

.footerLinks {
    flex: 1;

    & p {
        margin: 0 0 8px;
    }

    & a:visited {
        color: var(--accent-color);
    }

    & a:visited:hover {
        color: var(--accent-color3);
    } 

    & .greyFooterLinks a:visited,
    & .greyFooterLinks a {
        color: #b0b0b0;
    }
}

.footerGdpr {
    padding-top: 15px !important;
    padding-bottom: 0 !important;

    & h4,
    & p {
        color: #ffffff;
    }

    & a {
        color: #ffffff;
        text-wrap: nowrap;
    }

    & a:hover {
        color: var(--accent-color3);
    }
}

@media only screen and (max-width: 991px){
    .footer .footerGdpr {
        padding-bottom: 15px !important;
    }
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: #fff;
}

th, td {
    padding: 10px 14px;
    border: 1px solid #dcdcdc;
    text-align: left;
}

thead th {
    background: #f5f5f5;
    font-weight: 600;
    font-size: 14px;
}

/* About Page */
.aboutUsage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    &  img {
        height: 120px;
    }
}




