/* ОСНОВНОЙ СТИЛЬ СТРАНИЦЫ */

/* ФОН */
body {
	background: #000;
	background:
		linear-gradient(rgba(0, 0, 0, 0.7), rgba(255, 0, 0, 0.1)),
		url(../media/bgi.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: top;
}

/* ОБОЛОЧКА СТРАНИЦЫ */
.wrapper {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 100%;
	padding: 10px;
}

/* БЛОК КОНТЕЙНЕР */
.container {
	max-width: 1920px;
	width: 100%;
	flex: 1 1 auto;
	padding: 10px;
	margin: 0px auto;
}

/* БЛОК КОНТЕНТ */
.content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px;
}

/* БЛОК HEADER */
.header {
	animation: in 1s ease-in 0s 1 forwards;
	opacity: 0%;
	margin: 0 auto;
}

/* БЛОК ОСНОВАНИЯ */
.middle {
	animation: in 1.5s ease-in 0s 1 forwards;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0%;
	width: 100%;
	margin: 0 auto 0;
}

/* ПОДВАЛ */
footer {
	animation: in 2s ease-in 0s 1 forwards;
	display: flex;
	opacity: 0%;
	padding: 25px 0;
	margin: 0 auto;
}

/* ПЛАШКА ВЕРСИИ */
#plashka_version {
	position: absolute;
	margin: 10px 0 0 20px;
}

#plashka_version p {
	font-family: Roboto, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 100;
	text-shadow: 0 0 3px rgba(255, 0, 0, .7);
	color: rgba(255, 0, 0 , .3);
	margin-top: 10px;
}

/* ЛОГОТИП */
#logotype_container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(255, 0, 0, .7);
	background: rgba(0, 0, 0, 1);
	border-radius: 100px;
	width: 135px;
	height: 135px;
	margin: 20px auto 50px;
}

#logotype {
	transition: fill .5s ease-out 0s;
	transform: rotate(7deg);
	fill: #00FFFA;
	height: 100px;
	margin: 0 50%;
}

#logotype:hover {
	fill: #FF1100;
}

/* СКРОЛЛБАР */
::-webkit-scrollbar {
	width: 5px;
}

/* ТРЕКЕР СКРОЛЛБАРА */
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	border-radius: 10px;
}
::-webkit-scrollbar-thumb {
	background: rgba(255,0,0,0.9);
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .5);
	border-radius: 0px;
}
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-track-piece {
	background-color: rgba(0, 0, 0, .3);
}

/* РАЗДЕЛИТЕЛЬ */
hr {
	display: block;
	border-bottom: 2px solid #fff;
	width: 750px;
	margin: 50px auto;
}

.vertical_line {
	border: none;
	background-color: #FF1100;
	height: 50px;
	width: 1px;
	margin: 0 15px 0 10px;
}

/* ТЕКСТ */
#studio_name {
	font-family: Jost, Arial, "Times New Roman", sans-serif;
	font-size: 120px;
	font-weight: 700;
	font-style: normal;
	text-align: center;
	color: rgba(255, 0, 0, 1);
	width: 100%;
	letter-spacing: 35px; /* letter-spacing и padding-left связаны везде напрямую, где стоят рядом */
	padding-left: 35px;
	margin: 0 auto 25px;
}

#studio_name span {
	animation: morgalka 5s ease-in-out 0s infinite forwards;
	transition: text-shadow 1s ease-in-out 1s;
	text-shadow: red 0px 0px 10px;
}

#studio_subname {
	font-family: Jost, Arial, "Times New Roman", sans-serif;
	font-size: 24px;
	font-weight: 200;
	font-style: normal;
	text-align: center;
	color: #fff;
	letter-spacing: 15px;
	padding-left: 15px;
	margin: 0 auto 15px;
}

#studio_subname_podpis {
	font-family: Roboto, Arial, "Times New Roman", sans-serif;
	font-size: 20px;
	font-weight: 100;
	font-style: normal;
	text-align: center;
	color: #fff;
	letter-spacing: 5px;
	padding-left: 5px;
	margin: 0 auto;
}

#block_description {
	width: 750px;
	font-family: Roboto, Arial, "Times New Roman", sans-serif;
	font-size: 20px;
	font-weight: 100;
	font-style: normal;
	text-wrap: stable;
	line-height: 24px;
	border: 1px solid #00FFFA;
	background-color: #000;
	color: #fff;
	padding: 25px;
	margin: 0 auto;
}

#block_description p {
	margin-bottom: 25px;
}

.text_caption {
	font-family: Jost, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 24px;
	font-weight: 300;
	font-style: normal;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	width: max-content;
	border: 1px solid rgba(255, 0, 0, .7);
	background-color: #000;
	color: #fff;
	padding: 20px;
	margin: 0 auto 20px;
}

#text_footer {
	font-family: Jost, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 200;
	font-style: normal;
	color: #fff;
	margin: 0px auto;
}

/* ЛИНКИ */
.block_links {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.item {
	transition: box-shadow 1s, text-shadow .5s ease-out 0s;
	display: flex;
	align-items: center;
	border: 1px solid #00FFFA;
	background-color: #000;
	width: 512px;
	padding: 5px;
	margin: 20px 0;
}

.item:hover {
	box-shadow: 0px 0px 15px #00FFFA;
	text-shadow: 0 0 10px #fff;
}

.item span {
	font-family: Jost, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 24px;
	font-weight: 300;
	text-transform: uppercase;
	font-style: normal;
	color: #fff;
	letter-spacing: 3px;
	padding-left: 3px;
	margin: 0 auto;
}

/* ИЗОБРАЖЕНИЯ */
.item_image {
	transition: width 1s, border-radius .5s ease-out 0s;
	border: 2px solid rgba(255, 255, 255, .3);
	border-radius: 5px;
	width: 50px;
	margin: 15px;
}

.item_image:hover {
	border-radius: 50px;
	width: 100px;
}

#block_first_image {
	margin: 0 auto 30px;
}

#first_image {
	width: 500px;
	height: 500px;
	border-radius: 5px;
}