html {
	font-size: 15px;
}

body {
	margin: 0;

	background-color: #DEE1E5;

	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	line-height: 1.6;
}

*,
*:before,
*:after {
box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

p {
	padding-top: 10px;
	margin: 0;
}

.container {
	
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}



/*Header
======================*/

.header {
	
	padding: 1rem 0;
	background-color: #303B44;
	
}

.header-container {
	display: flex;
	justify-content: space-between;
}

.header-inner {
	display: flex;
	justify-content:flex-start;
		

}

.header-logo {
	padding-left: 50px;
	
}	

.header-logo img {
	height: 100px;
}

.header-brand {
	font-size: 2.0rem;
	color: #fff;
	font-weight: 700;
	padding-left: 20px;

	width: 313px;

	position: relative;
	top: 47px;

}

.header-brand a {
	color: #fff;
	text-decoration: none;
}

.stripe {
	height: 5px;
	background-color: #fff;

	position: relative;
	top: 0;

}


/*Nav
======================*/

.header-nav {
	display: flex;
	align-items: flex-end;
	

	color: #fff;
	font-size: 1rem;
	
}

.header-nav-link {
	text-decoration: none;
	padding-right: 50px;
	color: #fff;

	position: relative;
}

.header-nav-link img{
	height: 62%;

	position: absolute;
	left: -18px;
	bottom: 4px;
}

.header-nav-link:hover {
	
	text-decoration: underline;
}




/*Sidebar
======================*/

.sidebar {
	width: 25%;
	background-color: #4F5A6E;
	padding-top: 10px;
	
	display: flex;
	flex-direction: column;
	align-items: center;

}

.sidebar-brt {
	margin: 15px 15px 0 15px;
	

	width: 200px;
	height: 60px;
	border: 1px solid #383838;
	background-color: #	fff;

	
}

.sidebar-brt img {
	width: 100%;
	height: 100%;
	border: 8px solid #fff;
}

.sidebar-brt img:hover  {
	border: 1px solid #fff;
}

.sidebar-brt img:active  {
	border: 5px solid #fff;
}

.sidebar-brt:last-child {
	margin-bottom: 1rem;
}

/*Button
======================*/

.brt-zhkh {
	margin: 20px 0 0 20px;

	width: 300px;
	height: 75px;
}


.brt-zhkh img{
	width: 100%;
	height: 100%;
	
}

.brt-zhkh img:hover  {
	
	border: 2px solid rgba(100%, 50%, 0%, 0.1);
	position: relative;

	width: 320px;
	height: 80px;
	left: -10px;
	top: -2px;

	t
	
}

.brt-zhkh img:active  {
	border: 5px solid rgba(100%, 50%, 0%, 0.1);
}

.brt-zhkh:last-child {
	margin-bottom: 1rem;
}





/*Page
======================*/

.main-nav {
	display: flex;
}

.content {
	margin-top: 1.4rem;
	

	background-color: #fff;
    width: 75%
}

.title {
	color: #2E4553;
	font-size: 2em;
	font-weight: 700;

	padding-left: 2rem;
	padding-top: 1rem;
}

.text {
	font-weight: 500;
	line-height: 1.6;
	padding-top: 1rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;

}

.text-bold {
	font-weight: bold;
}

.flex {
	display: flex;
	padding-bottom: 20px;
}

.flex-row {

	width: 50%;
	padding-top: 1rem;
	padding-left: 2rem;

}

.region {

	list-style:none;
	padding-bottom: 5px;
	font-weight: 700;
}

.region a {
	text-decoration: none;
	color: #375E97;

}

.region a:hover {
	text-decoration: underline;
	color: #113468;

}


/*Всплывающее окно
======================*/

/* скрываем чекбоксы и блоки с содержанием */
.hide {
    display: none; 
}
.hide + label ~ .okno{
    display: none;
}
/* оформляем текст label */
.hide + label {
    
    padding: 0;
    color: #375E97;
    cursor: pointer;
    display: inline-block; 
}

.hide + label:hover {
	text-decoration: underline;
}
/* вид текста label при активном переключателе */
.hide:checked + label {
    font-size: 1.3rem;
    color: #2c4b79;
    border-bottom: 0;
    text-decoration: underline;
}
/* когда чекбокс активен показываем блоки с содержанием  */
.hide:checked + label + .okno {
    display: block; 
    background: #efefef;

    padding: 10px; 
}

/* всплывающее окно */
.okno {
	font-weight: 500;
	
	position: relative;
	width: 720px;
	margin: 10px auto;

	

}

.okno-flex {
	display: flex;
	flex-wrap: wrap;


}




/*Footer
======================*/

.foter:after {
	padding: 1rem 0;
	background-color: #303B44;

	
}












/*Media
======================*/
@media (max-width: 960px) {
	.content {
		font-size: 1.1rem;
	}

	.header-container {
		flex-direction: column;
	}

	.header-logo img {
	height: 70px;
	}

	.header-brand {
		position: relative;
		top: 16px;
		width: 296px;
	}

	.header-inner {
		justify-content: flex-start;
	}

	.header-nav {
		justify-content: flex-end;
	}

	.sidebar {
		display: none;
	}

	.content {
		margin: 0 auto;
		width: 100%;
		
	}
}


@media (max-width: 768px) {
	.content {
		font-size: 0.7rem;
		padding-left: 7px;
		padding-bottom: 15px;
		min-height: auto;
	}

	.header-logo img {
	height: 50px;
	}

	.header-brand {
		position: relative;
		top: 14px;

		font-size: 1.2rem;

		width: 195px;
	}


	.header-nav {
		font-size: 0.8rem;
		
	}

	.header-nav-link  {
		padding-right: 37px;
	}

	.okno {
		width: 300px;
	}

	.brt-zhkh {
		width: 200px;
		height: 50px;
	}
		

}



	


