.ez-footer {
    border-top: 2px solid var(--ez-cyan);
}

.ez-footer .top {
    background: var(--ez-teal);
    padding: 40px 0px 30px 0px;
    overflow: hidden;
}

.ez-footer .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.ez-footer .inner p {
    font-size:14px;  
    padding-top:10px;
}

.ez-footer .inner ul{
    color: var(--ez-white);
    font-size:14px;  
}

.ez-footer .col-1 {
    width: 500px;
}

.ez-footer .col-2 {
    width: 250px;
    display: flex;
    flex-direction:column;
    justify-content: flex-end;
}

.ez-footer .col-2 > .col-2-content {
    text-align: left;
}

.ez-footer h4 {
    margin: 0 0 0 0;
}

.ez-footer p {
    margin: 0;
}

.ez-footer .bottom {
    background: var(--ez-dark);
    padding: 10px 0;
    overflow: hidden;
    padding-bottom:15px;
    padding-top:15px;
}

.ez-footer .bottom p, .ez-footer .bottom span , .ez-footer .bottom a{
    font-size:12px;
    margin-top:0px;
    padding-top:0px;
    line-height: 1.5em;
}

@media only screen and (max-width : 1024px) {
    .ez-footer .bottom .inner {
        flex-direction:column;
    }
    .ez-footer .bottom p, .ez-footer .bottom span , .ez-footer .bottom a{
        text-align:center;
    }
}


@media only screen and (max-width : 768px) {
    
    
    .ez-footer .inner {
        flex-direction:column;
        gap:20px;
    
    }

    .ez-footer .col-1 {
        width: 100%;
    }
    
    .ez-footer .col-2 {
        width: 100%;
    }


}