* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family: "Open Sans", sans-serif;
    background: #f8f9fa;
    color: #000;
    font-size: 1em;
    line-height: 1.6;
}

header {
    text-align: center;
    background-color: #000;
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
}

footer {
	background: #000;
	color:white;
	padding-top: 70px;
	padding-bottom: 70px;
	margin-top: 70px;
}

.footer-section {
	margin: auto;
	width: 85vw;
	max-width: 1100px;
	display: flex;
	flex-direction: row;
	gap: 1em;
}

.felement.left {
	width: 33%;
	flex-direction: column;
	display: flex;
	align-items: middle;
}

.felement.middle {
	width: 33%;
	display: flex;
	flex-direction: column;
	align-items: middle;
}

.felement.right {
	width: 33%;
	display: flex;
	flex-direction: column;
	align-items: middle;
}

.logo {
    max-width: 100px;
    margin-top: 20px;
    margin-bottom: 10px;
    height: auto;
}

.footer-logo {
	max-width: 234px;
	margin-bottom: 15px;
}

.footer-baseline {
	font-weight: 700;
	font-size: 1.1rem;
}

.footer-socials {
	display: flex;
	flex-direction: row;
	margin-top: 30px;
	align-items: center;
}

.social-element {
	margin-left : 50px;
}

.social-element:first-child {
	margin-left : 0
}

.social-icon {
	height: 30px;
	width: 30px;
}

.footer-links>a {
	color: white;
	text-decoration: none;
	line-height: 2;
}

.footer-links>a:hover {
	color: white;
	text-decoration: underline;
}

.footer-contacts {
	margin-top:30px;
}

.footer-contact-title {
	font-size: 1.2rem;
	font-weight: 700;
}

.footer-contact-element {
	margin-top: 30px;
}

.footer-contact-element>a {
	color: white;
	text-decoration: none;
}

.footer-contact-element>a:hover {
	color: white;
	text-decoration: underline;
}

.footer-contact-element>i {
	font-size: 18px;
	margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .footer-section {
        flex-direction: column;
    }

    .felement.middle, .felement.left, .felement.right {
    	width: 100%;
    	text-align: center;
    }

    .footer-logo {
    	margin: auto;
    }

    .footer-socials {
    	text-align: center;
    	margin: auto;
    	margin-top: 30px;
    }
}