@charset "utf-8";

/* Шрифты */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,700&subset=cyrillic');
/* Общие стили */
body {
	font-family: 'Roboto', sans-serif;
	padding-top: 5.25rem;
	background: #e4e4ca url(images/bg.jpg) 50% 0 no-repeat;
	background-size: contain;
}
/* Шапка */
.header {
	background-color: rgba(95, 122, 153, 0.5);
	line-height: 1.2;
}
.header .phone, .header .email {
	font-size: 2.5rem;
	font-weight: 500;
	color: #fff;
}
.header .email a, .footer .email a {
	color: #fff;
}
.header .email a:hover, .header .email a:focus, .footer .email a:hover, .footer .email a:focus {
	color: #70d9ff;
}
.header .address, .header .time {
	font-size: 1.5rem;
	color: #fff;
}
/* Главное меню */
.navbar-dark {
	background-color: #1d2f43;
}
.navbar-dark .navbar-brand {
	font-size: 1.75rem;
	text-transform: uppercase;
	font-weight: 700;
}
.navbar-dark .bid-link {
	color: #fff;
	padding: .5rem 0 .5rem .5rem;
}

.navbar-dark .bid-link:hover, .navbar-dark .bid-link:focus {
	color: #70d9ff;
	text-decoration: none;
}
/* Контент */
#bidform {
	font-size: .875rem;
}
.main-content a {
	text-decoration: underline;
}
/* Отзывы */
.feedbacks .feedback {
	color: #fff;
	background-color: rgba(95, 122, 153, 0.5);
	padding: 1rem;
	min-height: 100%;
}
/* Подвал */
.footer {
	background-color: #1d2f43;
	padding: 1rem 0;
	color: #fff;
}
.footer .logo {
	width: 10rem;
	height: 10rem;
	margin-left: auto;
}
/* Media */
@media (max-width: 575px) {
	body {
		padding-top: 4.625rem;
	}
	.navbar-dark .navbar-brand {
		white-space: normal;
		margin: 0 .5rem;
		font-size: 1rem;
		max-width: 6rem;
		text-align: center;
		line-height: 1rem;
	}
	.header .phone, .header .email {
		font-size: 1.5rem;
	}
	.header .address, .header .time {
		font-size: .875rem;
	}
	.footer {
		font-size: .875rem;
	}
	.footer .logo {
		width: 5rem;
		height: 5rem;
	}
}