/* === FOOTER === */
footer.footer {
    background: #125ca6;
    width: 100%;
    color: #9e8d6e;
    font-size: 14px;
    margin-top: 40px;
}

.innerfoot {
    margin: 0 auto;
    width: 980px;
    padding: 30px 0 40px 0;
	display:flex;
}

.footleft,
.footcenter,
.footright {
    display: inline-block;
    vertical-align: top;
    color: white;
}

.footleft {
    width: 35%;
}

.footcenter {
    width: 35%;
    text-align: center;
}

.footright {
    width: 30%;
    text-align: right;
}

.footleft p,
.footright p {
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.footnav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footnav a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.footnav a:hover {
    text-decoration: underline;
}

.clear {
    clear: both;
}

/* Адаптив под узкие экраны */
@media only screen and (max-width: 719px) {
    .innerfoot {
        width: 100%;
        padding: 20px 15px 30px 15px;
        box-sizing: border-box;
    }

    .footleft,
    .footcenter,
    .footright {
        width: 100%;
        display: block;
        text-align: left;
        margin-bottom: 15px;
    }

    .footright {
        text-align: left;
    }

    .footnav {
        align-items: flex-start;
    }
}