/**********************************************************************/
/**********************************************************************/
.footer__content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 1160px;
}

/**********************************************************************/
.footer__map iframe {
	width: 100% !important;
	height: 440px !important;
}

/**********************************************************************/
.footer__body {
	padding: 40px 0 70px;
}

/**********************************************************************/
.footer__body .footer-menu {
	max-width: 220px;
}
.footer__body .footer-menu__title {
	margin-bottom: 15px;
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	color: #C2C2C2;
	text-transform: uppercase;
}
body.dark .footer__body .footer-menu__title {
	color: #FFFFFF;
}
.footer__body .footer-menu__title_sm {
	max-width: 150px;
}
.footer__body .footer-menu .menu__list {
	display: flex;
	flex-direction: column;
	padding: 0;
	list-style: none;
}
.footer__body .footer-menu .menu__item {
	display: flex;
	flex-direction: column;
	margin-right: auto;
	margin-bottom: 20px;
}
.footer__body .footer-menu .menu__item:last-child {
	margin-bottom: 0;
}
.footer__body .footer-menu .menu__link {
	font-size: 14px;
	line-height: 20px;
	color: #000000;
	transition: color 0.3s;
}
body.dark .footer__body .footer-menu .menu__link {
	color: rgba(255, 255, 255, 0.8);
}
.footer__body .footer-menu .menu__link:hover,
.footer__body .footer-menu .menu__item.active .menu__link {
	color: rgb(0, 126, 255) !important;
}

/**********************************************************************/
.footer__body .switcher {
	height: 60px;
	margin-bottom: 15px;
}
.footer__body .switcher__content {
	margin-right: auto;
}

/**********************************************************************/
.footer__body .footer-contacts {
	display: flex;
	flex-direction: column;
}
.footer__body .contacts-block {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}
.footer__body .contacts-block:last-child {
	margin-bottom: 0;
}
.footer__body .contacts-block__title {
	font-size: 12px;
	line-height: 18px;
	color: #C2C2C2;
}
.footer__body .footer-contacts__address .contacts-block__title {
	font-weight: 700;
	font-size: 14px;
	color: #000000;
	text-transform: uppercase;
}
body.dark .footer__body .footer-contacts__address .contacts-block__title {
	color: #FFFFFF;
}
.footer__body .contacts-block__subtitle {
	margin-right: auto;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	color: #444444;
}
body.dark .footer__body .contacts-block__subtitle {
	color: #FFFFFF;
}
.footer__body .footer-contacts__address .contacts-block__subtitle {
	font-weight: 400;
	color: #000000;
}
body.dark .footer__body .footer-contacts__address .contacts-block__subtitle {
	color: #FFFFFF;
}
.footer__body .footer-contacts__tel .contacts-block__subtitle {
	font-size: 18px;
	line-height: 24px;
	color: #111111;
	transition: color 0.3s;
}
body.dark .footer__body .footer-contacts__tel .contacts-block__subtitle {
	color: #FFFFFF;
}
.footer__body .footer-contacts__tel .contacts-block__subtitle:hover {
	color: #007EFF !important;
}
.footer__body .footer-contacts__email .contacts-block__subtitle {
	font-weight: 400;
	color: #007EFF !important;
	text-decoration: underline;
	transition: opacity 0.3s;
}
.footer__body .footer-contacts__email .contacts-block__subtitle:hover {
	opacity: 0.6;
}

/**********************************************************************/
.footer__body .footer-company {
	display: flex;
	flex-direction: column;
	width: 200px;
	box-sizing: content-box;
}
.footer__body .footer-company__logo {
	width: 165px;
	margin: 10px auto;
}
body:not(.dark) .footer__body .footer-company__logo.dark,
body.dark .footer__body .footer-company__logo.light {
	display: none;
}
.footer__body .footer-company__txt {
	margin-bottom: 35px;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
}
body.dark .footer__body .footer-company__txt {
	color: rgba(255, 255, 255, 0.8);
}
.footer__body .footer-company__socials {
	display: flex;
	justify-content: center;
}
.footer__body .footer-company__socials a {
	margin: auto 10px;
	transition: opacity 0.3s;
}
.footer__body .footer-company__socials a:hover {
	opacity: 0.6;
}
.footer__body .footer-company__socials a img {
	width: 30px;
}

/**********************************************************************/
.footer .btmbar {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	min-height: 40px;
}
.footer .btmbar:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	background-color: #FAFAFA;
	z-index: -1;
}
body.dark .footer .btmbar:before {
	background-color: #000000;
}
.footer .btmbar__links {
	display: flex;
	justify-content: space-between;
	flex-grow: 1;
	margin: auto 0;
}
.footer .btmbar__links a {
	margin: auto 0;
	font-size: 12px;
	line-height: 18px;
	color: #4A4A4A;
	transition: color 0.3s;
}
body.dark .footer .btmbar__links a {
	color: #FFFFFF;
}
.footer .btmbar__links a:hover {
	color: rgb(0, 126, 255) !important;
}
.footer .btmbar__cpr {
	margin: auto 0 auto 40px;
	font-size: 12px;
	line-height: 18px;
	color: #4A4A4A;
}
body.dark .footer .btmbar__cpr {
	color: #FFFFFF;
}




/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 1024px) {
	/******************************************************************/
	/******************************************************************/
	.footer__body .footer-menu {
		width: 33.33333%;
		max-width: 100%;
	}
	.footer__body .footer-menu__title {
		max-width: 100%;
	}

	/******************************************************************/
	.footer__body .footer-contacts {
		width: 50%;
		margin-top: 40px;
	}

	/******************************************************************/
	.footer__body .footer-company {
		width: 50%;
		margin-top: 40px;
		box-sizing: border-box;
	}

	/******************************************************************/
	.footer .btmbar__cpr {
		margin-left: 20px;
	}
}


@media screen and (max-width: 782px) {
	/******************************************************************/
	/******************************************************************/
	body.admin-bar .contact-nav {
		top: 51px;
	}
}


@media screen and (max-width: 767px) {
	/******************************************************************/
	/******************************************************************/
	.footer__body {
		padding: 25px 0 40px;
	}

	/******************************************************************/
	.footer__body .footer-menu {
		width: 100%;
		margin-bottom: 30px;
	}
	.footer__body .footer-menu:nth-child(1) {
		order: 3;
	}
	.footer__body .footer-menu:nth-child(2) {
		order: 4;
	}
	.footer__body .footer-menu:nth-child(3) {
		order: 2;
	}
	.footer__body .footer-menu__title {
		max-width: 200px;
		margin: 0 auto 20px;
		text-align: center;
	}
	.footer__body .footer-menu .menu__item {
		margin-left: auto;
	}
	.footer__body .footer-menu .menu__link {
		font-size: 16px;
	}

	/******************************************************************/
	.footer__body .switcher {
		height: initial;
		margin-bottom: 40px;
	}

	/******************************************************************/
	.footer__body .footer-contacts {
		width: 100%;
		margin-top: 0;
		margin-bottom: 45px;
		order: 1;
	}
	.footer__body .contacts-block__title {
		text-align: center;
	}
	.footer__body .contacts-block__subtitle {
		margin-left: auto;
		text-align: center;
	}

	/******************************************************************/
	.footer__body .footer-company {
		width: 100%;
		margin-top: 15px;
		order: 5;
	}
	.footer__body .footer-company__logo {
		margin-top: 40px;
		order: 2;
	}
	.footer__body .footer-company__txt {
		max-width: 220px;
		margin: 0 auto;
		order: 3;
	}
	.footer__body .footer-company__socials a img {
		width: 25px;
	}

	/******************************************************************/
	.footer .btmbar {
		flex-direction: column;
		padding: 20px 0;
	}
	.footer .btmbar__links {
		flex-direction: column;
	}
	.footer .btmbar__links a {
		margin: 0 auto 20px;
		text-align: center;
	}
	.footer .btmbar__cpr {
		margin: 0 auto;
		text-align: center;
	}
}