/*      Footer        */
.full-footer-box,
.full-footer {
    float: left;
    width: 100%;
    background: #415201;
}

#footer-box {
    display: flex;
    margin: 0 -10px;
    flex-wrap: wrap;
    padding: 10px 0px;
}

.footer-box>div {
    width: calc(100%/4 - 20px);
    margin: 0px 10px;
}

.footer-box h3 {
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
    margin: 20px 0px;
}

.menu-info-footer li {
    display: flex;
    width: 100%;
    line-height: normal;
    color: #fff;
    margin-bottom: 10px;
    align-items: center;
}

.menu-info-footer i {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border: 1px solid #fff;
}

#menu-footer li {
    display: inline-block;
    width: 100%;
}

#menu-footer a {
    display: block;
    width: 100%;
    color: #fff;
    padding: 5px 0px;
}

.mxh-footer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.mxh-footer a {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: #415201;
    background: #E3F8B1;
    margin-right: 20px;
    border-radius: 50%;
    font-size: 20px;
    transition: .3s;
    margin-bottom: 20px;
}

.mxh-footer a:hover {
    transform: translateY(-5px);
    box-shadow: 0px 2px 3px #000;
}

#footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	color: #ccc;
	border-top: 1px solid #999;
	padding: 10px 0px;
}

#footer a {
    color: #95A94D;
    transition: .3s;
}

/**** Responsive settings ******/
@media only screen and (max-width: 768px) {
.footer-box > div {
    width: calc(100%/2 - 20px);
}
}

@media only screen and (max-width: 480px) {
.footer-box > div {
    width: 100%;
    margin: 10px;
}
.footer-box h3 {
    margin: 0px 0px 10px;
}
}