@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

* {
	font-family: 'Montserrat';
}
body {
	background: white;
	padding: 0;
	margin: 0;
}
h2 {
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 49px;
	text-transform: uppercase;
	color: #FFFFFF;
	display: block;
	display: flex;
    align-items: center;
}
h2 span {
	margin: 0px 25px;
}
h2.title_eng {
	margin-top: 50px;
}
.title:before {
	content: "";
	width: 51px;
	height: 51px;
	display: block;
	background: url(../images/cog.svg) no-repeat transparent;
	background-position: center;
}
.title:after {
	content: "";
	width: 51px;
	height: 51px;
	display: block;
	background: url(../images/cog.svg) no-repeat transparent;
	background-position: center;
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}
h3 {
	font-style: normal;
	font-weight: 500;
	font-size: 28px;
	line-height: 54px;
	text-align: center;
	color: #FFFFFF;
	display: block;
	margin: 0;
}
.content_container {
	background: url(../images/bg.jpg) no-repeat transparent;
    height: calc(100vh - 200px);
    overflow: hidden;
    background-size: cover;
    background-position: center;
	position: relative;
}
.content_container:after {
	content: "";
    width: 355px;
    height: 77px;
    display: block;
    background: url(../images/logo.png) no-repeat transparent;
    background-position: center bottom;
    background-size: contain;
    right: 0;
    bottom: 0;
    position: absolute;
}
.content {
	max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
	position: relative;
}
.footer {
	display: flex;
    justify-content: center;
    align-items: center;
}
.footer > div {
	padding: 40px;
	position: relative;
}
.footer > div:after {
	content: "";
    display: block;
    position: absolute;
    height: 75px;
    width: 1px;
    background: #484511;
    top: calc(50% - 35px);
    right: 0;
}
.footer > div:last-child:after {
	display: none;
}
.footer_title {
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	color: #484511;
}
.footer_address p {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #484511;
	margin: 7px;
}
.footer_company_info p {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #484511;
	margin: 7px;
}
.footer_contact {
	display: flex;
    flex-direction: column;
}
.footer_contact a {
	font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #484511;
    margin: 3.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.footer_contact a:before {
	content: "";
	width: 18px;
	height: 18px;
	display: block;
	margin-right: 10px;
}
.footer_tel:before {
	background: url(../images/tel.svg) no-repeat transparent;
	background-position: center;
}
.footer_mail:before {
	background: url(../images/mail.svg) no-repeat transparent;
	background-position: center;
}
.footer_facebook:before {
	background: url(../images/facebook.svg) no-repeat transparent;
	background-position: center;
}

@media (max-width: 991px) {
	.footer {
		flex-direction: column;
		text-align: center;
	}
	.content_container {
		padding: 50px 50px 100px 50px;
		height: initial;
	}
	.footer > div:after {
		display: none;
	}
	h2 {
		font-size: 30px;
		margin-bottom: 0;
	}
	h2.title_eng {
		margin-top: 50px;
		margin-bottom: 0;
	}
	h3 {
		font-size: 16px;
		line-height: 30px;
	}
	.footer > div {
		padding: 20px;
		position: relative;
	}
}