.vd-footer{
    background: linear-gradient(90deg,#263729 0,#41513a 74%,#5b6145 100%);
    min-height:250px;
    color:#fff;

    display:grid;
    grid-template-columns:1fr 340px;

    align-items:stretch;
    overflow:hidden;
}

.vd-footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:20px;
    padding:46px 5.5%;
}

.vd-footer-card{
    text-align:center;
}

.vd-footer-icon{
    font-size:42px;
    color:#c49a67;
    line-height:1;
}

.vd-footer-card h3{
    text-transform:uppercase;
    letter-spacing:.25em;
    color:#c49a67;
    font-size:13px;
    margin:14px 0;
}

.vd-footer-card p{
    font-size:13px;
    line-height:1.7;
    margin:0 auto;
    max-width:220px;
}

.vd-footer-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    background:#41513a;
}

/* TABLET */

@media(max-width:1100px){

    .vd-footer{
        grid-template-columns:1fr;
    }

    .vd-footer-image{
        display:none;
    }

    .vd-footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */

@media(max-width:700px){

    .vd-footer-grid{
        grid-template-columns:1fr;
        padding:38px 24px;
        gap:34px;
    }

    .vd-footer-card h3{
        font-size:12px;
    }

    .vd-footer-card p{
        font-size:12px;
    }
}