/* 
	браузер киоска не поддерживает новомодные фичи.
	- не удалять префиксы
	- не использовать флексы и гриды
	- не использовать прочие новомодные фичи
 */


/*------------------------------------*\
    #BASIC STYLES
\*------------------------------------*/

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

body {
	font: 400 24px/1.35 "Roboto", Helvetica, Arial, sans-serif;
	background: #1F2227;
	color: #fff;
}

a {
	color: inherit;
	text-decoration: none;
	outline: none;
}

a:hover,
a:focus {
	outline: none;
}

.button {
	display: block;
	font-size: 20px;
	text-align: center;
	background: #FF2800;
	padding: 8px 0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}

.hidden {
	display: none;
}

/*------------------------------------*\
    #GRID
\*------------------------------------*/

.container {
	min-width: 780px;
	overflow: hidden;
}

.row {
	width: 100%;
	margin-bottom: 1.6em;
	overflow: hidden;

}

.row:after {
	content: "";
	display: table;
	clear: both;
}

[class*='col-'] {
	float: left;
	overflow: hidden;
}

.col-1 {
	width: 8.3%;
}

.col-2 {
	width: 16.7%;
}

.col-3 {
	width: 25%;
}

.col-4 {
	width: 33.3%;
}

.col-5 {
	width: 41.7%;
}

.col-6 {
	width: 50%;
}

.col-7 {
	width: 58.3%;
}

.col-8 {
	width: 66.7%;
}

.col-9 {
	width: 75%;
}

.col-10 {
	width: 83.3%;
}

.col-11 {
	width: 91.7%;
}

.col-12 {
	width: 100%;
}

/* offset */
.col-1_offset {
	margin-left: 8.3%;
}

.col-2_offset {
	margin-left: 16.7%;
}

.col-3_offset {
	margin-left: 25%;
}

.col-4_offset {
	margin-left: 33.3%;
}

.col-5_offset {
	margin-left: 41.7%;
}

.col-6_offset {
	margin-left: 50%;
}

.col-7_offset {
	margin-left: 58.3%;
}

.col-8_offset {
	margin-left: 66.7%;
}

.col-9_offset {
	margin-left: 75%;
}

.col-10_offset {
	margin-left: 83.3%;
}

.col-11_offset {
	margin-left: 91.7%;
}

.col-12_offset {
	margin-left: 100%;
}

/*------------------------------------*\
    #MENU
\*------------------------------------*/

.menu {
	display: block;
	position: relative;
	height: 100%;
	padding: 1em 0.8em 1em 1em;
	background-color: #1F2227;
	z-index: 50;
	border-right: 1px solid #000;
}

.menu li {
	margin: 0 0 1.4em 0;
}

.menu a {
	display: block;
	font-size: 22px;
	color: #fff;
}

/* magic-line */
.magic-line {
	display: block;
	position: absolute;
	left: 0.8em;
	width: 3px;
	height: 20px;
	background-color: #B9171C;
}

/*------------------------------------*\
    #CONTENT
\*------------------------------------*/

.content {
	background-color: #01A8DF;
	padding: 45px;
}

.content .title,
.content .subtitle {
	font: 500 1.6em "Roboto", Verdana, Arial, sans-serif;
	margin: 0 0 0.5em 0;
	text-shadow: 3px 2px 4px rgba(0, 0, 0, 0.1);
}

.content .title {
	text-align: center;
}

.content .subtitle {
	font-size: 1.2em;
	margin-top: 0.8em;
}

/* --- Text --- */
.text_center {
	text-align: center;
}

.text p {
	padding-bottom: 0.5em;
}

.text a {
	text-decoration: underline;
}

.text a:hover,
.text a:focus {
	text-decoration: underline;
	color: #B50000;
}

.text small {
	font-size: 0.8em;
}

.text strong {
	font-weight: 500;
}

.text li {
	padding-bottom: 0.5em;
}

.text ol,
.text ul {
	padding: 0 0 1em 2em;
}

.text ol {
	list-style: decimal;
}

.text ul {
	list-style: disc;
}

/* img */
.gallery {
	text-align: center;
}

.gallery__item {
	width: 90%;
	height: auto;
	margin: 11px 0;
}

.gallery__item-large {
	width: 100%;
}

.gallery__item-turnstile {
	height: 50vh;
	width: auto;
}

/* classrooms */
.classrooms {
	font-size: 0.9em;
}

.text .button {
	display: inline-block;
	margin-top: 15px;
	padding: 10px 16px;
	font-size: 16px;
	text-decoration: none;
	text-transform: uppercase;
}

.text .button:hover,
.text .button:focus {
	text-decoration: none;
	background-color: #9a0000;
	color: inherit;
}