@charset "utf-8";

/* Шрифты */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,500i,700,700i&subset=cyrillic');
/* Общие стили */
body {
	font-family: 'Roboto', sans-serif;
	margin-top: 3.5rem;
	background: url(images/bg.jpg) repeat 50% 0;
}
/* Шапка */
header {
	height: 3.5rem;
}
/* Главное меню */
.navbar-dark {
	background: #0e0e0e;
}
.navbar-dark .navbar-brand {
	display: flex;
	flex-direction: row;
}
.navbar-dark .navbar-brand .brand-img {
	width: 2rem;
	height: 2rem;
	margin: -.25rem .25rem auto 0;
}
.navbar-dark .navbar-brand .brand-text {
	font-size: 1.875rem;
	line-height: 1.875rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: auto 0;
}
.navbar-dark .navbar-brand .brand-dot {
	width: .75rem;
	height: .75rem;
	background-color: #00a0ff;
	border-radius: 50%;
	margin: auto 0 .25rem -.125rem;
}
/* Контент */
.main-content {
	min-height: 100%;
}
/* Сайд-бар */
.left-sidebar {
	background-color: #0db6ff;
	font-size: 1rem;
}
.left-sidebar a, .contacts a {
	color: rgba(255, 255, 255, 0.9);
}
.left-sidebar a:hover, .left-sidebar a:focus, .contacts a:hover, .contacts a:focus {
	color: rgba(255, 255, 255, 0.75);
}
.contacts {
	background-color: #0db6ff;
	color: rgba(255, 255, 255, 0.9);
}
.contacts .fa-map-marker {
	margin-top: .125rem;
	margin-left: .125rem;
}
.left-menu {
	padding: 1rem 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.left-sidebar .feedback {
	color: rgba(255, 255, 255, 0.9);
}
/* Подвал */
.footer {
	background: #0e0e0e;
}
/* Media */
@media (max-width: 991px) and (min-width: 768px) {
	.left-sidebar {
		font-size: .875rem;
	}
}
@media (max-width: 767px) {
	.main-content {
		font-size: .875rem;
	}
	.left-menu {
		border-top: none;
	}
}
@media (max-width: 350px) {
	.navbar-dark .navbar-brand .brand-text, .navbar-dark .navbar-brand .brand-dot {
		display: none;
	}
}