/* Color Theme Swatches in Hex */
/*.top-view-blue-devices-photo-portfolio-1-hex { color: #6D8BA6; }*/
/*.top-view-blue-devices-photo-portfolio-2-hex { color: #A0C3D9; }*/
/*.top-view-blue-devices-photo-portfolio-3-hex { color: #8BBF1B; }*/
/*.top-view-blue-devices-photo-portfolio-4-hex { color: #87A644; }*/
/*.top-view-blue-devices-photo-portfolio-5-hex { color: #F25922; }*/

/* Color Theme Swatches in RGBA */
/*.top-view-blue-devices-photo-portfolio-1-rgba { color: rgba(109, 139, 165, 1); }*/
/*.top-view-blue-devices-photo-portfolio-2-rgba { color: rgba(160, 195, 216, 1); }*/
/*.top-view-blue-devices-photo-portfolio-3-rgba { color: rgba(139, 191, 26, 1); }*/
/*.top-view-blue-devices-photo-portfolio-4-rgba { color: rgba(134, 165, 67, 1); }*/
/*.top-view-blue-devices-photo-portfolio-5-rgba { color: rgba(242, 89, 33, 1); }*/

/*https://color.adobe.com*/

* {
	text-decoration: none;
}

html, body {
	height: 100%;
}

/* start body */
body {
	font-family: Roboto, sans-serif;
	font-size: 16px;
	/*background: #f4f7fb;*/
	padding: 0;
	margin: 0;
	height: 100%;
	background: url("../img/bg/blue_abstract_background.jpg") no-repeat;
	background-size: cover;
	background-attachment: fixed;

}
/* end body*/

/* start header */
header {
	background: #fff;
	font-size: 2em; /* 2em от стандартного фона указанного в body x2 */
	border-bottom: 1px solid #e1e1e1;
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0.5em 0;
	align-items: center;
	justify-content: center;
}

header img {
	height: 60px;
	margin-right: 0.5em;
}

header a {
	color: #555;
	font-family: Poppins, sans-serif;
	letter-spacing: 0.1cm;
}
/* end header */


/* start navbar */
.navbar {
	display: flex; /* flex container */
	/*height: 80px;*/
	background: #fff;
	justify-content: center; /* разместить содержимое в центре по горизонтали */
	align-items: center; /* вертикальное выравнивание элементов в центре */
	margin: 0;
	padding: 0;
	width: 100%;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.15);
}

.navbar ul {
	display: flex; /* flex container */
	flex-direction: row;
	justify-content: space-between; /* разместить содержимое с одинковыми отступами между элементами */
	align-items: center; /* вертикальное выравнивание элементов в центре */
	/*height: 100px;*/
	margin: 0;
	padding: 1em 0;
	list-style: none;
	/*transform: skew(-25deg);*/
}

.navbar ul li {
	background: #fff;
	/*border-right: 1px solid #eee;*/
	border-bottom: 3px solid;
	border-bottom-color: transparent;
	border-radius: 7px;
	text-transform: uppercase;
	color: #555;
	font-weight: bolder;
	transition: all 0.3s linear; /* linear: specifies a transition effect with the same speed from start to end*/

}

.navbar ul li:first-child {
	border-left: none;
	/*border-radius: 7px 0 0 7px; !* скругление левой стороны меню *!*/
}

.navbar ul li:last-child {
	border-right: none;
	/*border-radius: 0 7px 7px 0; !* скругление правой стороны меню *!*/
}

.navbar ul li:hover, .navbar ul li.active-item {
/*.navbar ul li:hover{*/
	/*background: #eee;*/
	background: #f7f7f7;
	border-bottom-color: #0088CC;
	transition: all 1s linear;
	border-radius: 7px;
}

.navbar li a {
	display: block;
	padding: 1em 2em; /* переход на пункт меню будет не только при нажатии на текст */
	color: #555; /* наследовать параметры шрифта от родителя */
	/*transform: skew(25deg); !* вернуть трансформацию текста к нормальному состоянию *!*/
}

.navbar ul li a:hover, .navbar ul li.active-item a{
/*.navbar ul li a:hover{*/
	/*color: #00a124;*/
	color: #87A644;
}
/* end navbar */


/* start main */
main {
	width: 100%;
	padding: 20px 0;
	text-align: center;
}
/* end main */


/* start section*/
section.row{
	max-width: 1200px;
	padding: 0 15px;
	margin: 20px auto;
	display: flex;
	justify-content: center;
}

section.row:first-child{
	margin-top: 0;
}

section.row:last-child{
	margin-bottom: 0;
}

section.row div {
	border: 2px solid #0360a0;
	border-radius: 25px;
	text-align: center;
	width: 600px;
	/*padding: 2em 1em;*/
	padding-bottom: 1em;
	background-color: #f4f7fb;
}

section.row div ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

section.row div ul li{
	display: block;
	padding: 0.3em 0;
}

section.row div ul a{
	color: #0088CC;
}

section.row div h2.title {
	font-weight: bolder;
	margin-top: 1em;
	text-transform: uppercase;
	background: url("../img/bg/1.png") repeat;
	background-size: 1%;
	padding: 5px 0;
}
/* end section*/


/* start footer */
footer {
	padding: 1em 0;
	background-color: #fff;
	width: 100%;
	margin: 0;
	border-top: 1px solid #ededed;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	background: url("../img/bg/coffee.png") no-repeat #fff;
	background-size: 2.7%;
	background-position: 98% 50%;
}
/* end footer */