body{
	font-family: 'Open Sans n n';
	font-size: 12pt;
	color: #2c3e50;
}

.content-wrap{
	max-width: 1280px;
	margin: 0 auto;
}

.head-bar{
	background-color: var(--cam3);
	padding: 15px;
}

.head-bar .content-wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.head-caption{
	text-align: center;
}

.head-caption h1{
	color: var(--cam1);
	font-weight: 900;
	text-transform: uppercase;
}

.head-contacts{
	text-align: right;
}

.menu-bar{
	background-color: var(--cam1);
	box-shadow: 0 6px 5px var(--cam0);
	margin-bottom: 10px;
}

.menu-bar ul.menu{
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-bar ul.menu > li{
	padding: 7px 10px 5px 10px;
}

.menu-bar ul.menu li:hover{
	background-color: var(--cam2)
}

.menu-bar ul.menu li.active{
	background-color: var(--cam3);
}

.menu-bar ul.menu li.active a{
	color: var(--cam0);
}

.menu-bar li a{
	color: white;
}

.workersWrap{
	display: flex;
	justify-content: center;
}

.workerItem{
	width: 200px;
	height: 250px;
	background-color: white;
	border: 1px solid var(--cam0);
	padding: 3px;
	margin: 15px;
	cursor: pointer;
	position: relative;
	top: 0;
	left: 0;
}

.workerItem:hover{
	box-shadow: 2px 2px 3px gray;
	top: -2px;
	left: -2px;
}

.workerItem img{
	max-height: 100%;
	max-width: 100%;
}

.workerItem h4{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: silver;
	font-weight: bold;
	padding: 5px 0;
}

.workerItem:hover h4{
	background-color: var(--cam3);
}

.mainWrap{
	background-color: white;
	padding: 20px;
}