body {
    font-family: system-ui;
    background: #f4f6f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer-main {
    background-image: url('/assets/images/docmo/bannerfooter1.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.footer-main::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.logo {
    height: 100px;
}

.footer-title {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
}

/*********************************************************************/
/************************ FOOTER CROSSMILLE **************************/
/*********************************************************************/

.footer-section{
    padding: 0px 20px 20px 20px;
    background-image: url('/assets/images/crossmille/index/bannerHero.png');
    background-size: cover;
    background-position: center 90%;
}

.footer-section .footer-box{
    position: relative;
    overflow: hidden;
    background: #05005f;
    border-radius: 35px;
    padding: 50px 50px;
    min-height: 200px;
}

.footer-section .footer-grid{
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: .9;
}

.footer-section .footer-box::after{
    content: "";
    position: absolute;
    left: 80px;
    right: 80px;
    top: 170px;
    height: 1px;
    background: rgba(255,255,255,.12);
}

.footer-section .footer-logo{
    max-width: 260px;
    width: 100%;
}

.footer-section .footer-title{
    color: #fff;
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-section .footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section .footer-links li{
    margin-bottom: 14px;
}

.footer-section .footer-links a{
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: var(--text-base);
    transition: .3s;
}

.footer-section .footer-links a:hover{
    color: #fff;
}

.footer-grid{
    animation: gridMove 20s linear infinite;
}

@media (max-width: 991px){

    .footer-section .footer-box{
        padding: 50px 30px;
        min-height: auto;
    }

    .footer-section .footer-box::after{
        display: none;
    }

    .footer-section .footer-logo{
        margin-bottom: 30px;
        max-width: 220px;
    }

    .footer-section .footer-title{
        margin-top: 10px;
    }
}