footer {
	font-family: 'Arial', 'Verdana', sans-serif;
	background: #003054;
}
footer * {
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    /* padding: 112px 0 166px; */
    padding: 112px 0 31px;
}
.footer-logo {
	display: flex;
	gap: 61px;
}
.footer-logo img {
    max-width: 180px;
}
.footer-logo .logo {
    padding: 0 0 4px 8px;
    border-bottom: 2px solid #fefefe;
    margin-right: 8px;
}
.footer-contacts {
	color: #fefefe;
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	text-align: center;
	/* margin-top: 20px; */
	margin-top: 38px;
}
.footer-contacts span { text-transform: uppercase }
.footer-contacts a {
    display: block;
	color: #fefefe;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 22px;
	margin-top: 10px;
}

.footer-menus {
    display: flex;
    justify-content: space-between;
    width: 650px;
}
.footer-menus .h2 {
	color: #fefefe;
	font-weight: 400;
	font-size: 22px;
	line-height: 22px;
	text-transform: uppercase;
	padding: 0 0 6px;
	margin-bottom: 21px;
	border-bottom: 1px solid #fefefe;
}

.footer-copyright {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	padding: 16px 0 25px;
	gap: 20px;
}
.footer-copyright div {
	flex-grow: 1;
}
.footer-copyright a {
	color: #fefefe;
	font-weight: 400;
	font-size: 20px;
	line-height: 20px;
}

@media screen and (max-width: 1232px) {
	.footer-content {
		padding: 112px 16px 0;
	}
}
@media screen and (max-width: 1200px) {
	.footer-content {
		flex-wrap: wrap;
		gap: 30px 0;
	}
}
@media screen and (max-width: 1095px) and (min-width: 980px) {
	.footer-novotech-logo { order: 3 }
}
@media screen and (min-width: 980px) {
	.footer-logo {
		flex-direction: column;
		margin-top: -41px;
	}
}
@media screen and (max-width: 979px) {
	.footer-content {
		gap: 30px 0;
	}
	.footer-menus { width: 100% }
}
@media screen and (max-width: 650px) {
	.footer-content {
        text-align: center;
        flex-direction: column;
    }
	.footer-logo {
		flex-direction: column;
		align-items: center;
	}
    .footer-menus {
        flex-direction: column;
        text-align: center;
    }
}