/** 
 * CSS Style: Theme footer
 * 
 * @since 1.0
 */
.theme-footer {
    font-size: 13px;
    padding: 70px 0;
    background-color: var( --theme-color-background );
}

.theme-footer img, .theme-footer svg {
    display: block;
}

.theme-footer, .theme-footer a {
    color: var( --theme-color );
}

.theme-footer .theme-grid {
    margin: 0 auto;
}

.theme-footer .theme-grid > .theme-grid-row {
    align-items: center;
    /*justify-content: space-between;*/
}

.theme-footer .theme-grid > .theme-grid-row:not(:last-child) {
    margin-bottom: var( --theme-margin );
}

.theme-footer .theme-grid > .theme-grid-row > .theme-grid-col:not(:first-child) {
    margin-left: var( --theme-margin );
}

@media only screen and (max-width: 1000px) {
    .theme-footer {
        padding: calc( var( --theme-padding ) * 2 )  0;
    }

    .theme-footer .theme-grid > .theme-grid-row {
        flex-direction: column;
    }

    .theme-footer .theme-grid > .theme-grid-row > .theme-grid-col {
        margin-left: 0 !important;
        text-align: center;
    }

    .theme-footer .theme-grid>.theme-grid-row>.theme-grid-col:not(:first-child) {
        margin-top: var( --theme-margin );
    }

}

/** 
 * Footer logo
 * 
 * @since 1.0
 */
.theme-footer-logo {
    font-size: 28px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: calc( var( --theme-margin ) / 2 );
}

.theme-footer-logo a {
    display: block;
    color: #ffffff;
}

.theme-footer-logo svg {
    display: block;
    width: auto;
    height: 30px;
    transition: .3s linear;
}

@media only screen and (max-width: 768px) {

    .theme-logo-penbelarus {
        width: 40px;
        height: auto;
    }

    .theme-footer-logo svg {
        width: 280px;
        height: auto;
    }
}