html, body, input {
	font-family: 'Montserrat';
	color: rgb(79,79,79);
}

html, body, form {
	margin: 0;
	border: 0;
	padding: 0;
}

p {
	margin: 0;
	padding: 0;
}

ul {
	padding: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

body * {
	transition: color 0.1s;
}

body:not(#admin).loading * {
	color: transparent;
}

body#admin div#menu {
	display: none;
}

div#menu {
	position: fixed;
	color: white;
	font-size: 40px;
	font-weight: 900;
	top: 0px;
	z-index: 10;
	text-align: right;
	background: rgb(79,79,79);
	width: 50%;
	max-width: 100%;
	left: 100%;
	transition: left 1s;
	outline: none;
	height: 100%;
	/*font-size: 0px;*/
	text-align: left;
	overflow-y: auto;
}

div#menu.open {
	left: 50%;
}

@media only screen and (max-width: 1200px) {
	div#menu {
		width: 600px;
	}

	div#menu.open {
		left: calc(100% - 600px);
	}
	
	div#menu.open.down-scrollable:after, div#menu.open.up-scrollable:before {
		right: 490px!important;
	}
}

@media only screen and (max-width: 600px) {
	div#menu {
		width: 100%;
	}

	div#menu.open {
		left: 0px;
	}
	
	div#menu.open.down-scrollable:after, div#menu.open.up-scrollable:before {
		right: calc(100% - 30px)!important;
	}
}

div#menu-button {
	cursor: pointer;
	width: 60px;
	height: 60px;
	/*background: url('menu.png') no-repeat center;
	background-size: 65%;*/
	transition: filter 0.5s;
	margin: 20px 40px;
	position: fixed;
	right: 0px;
	z-index: 1;
}

div#menu-button-circle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	overflow: hidden;
	transition: width 0.4s, height 0.4s;
}

div#menu-button-circle:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	box-sizing: border-box;
	border: 2px solid white;
	border-radius: 50%;
	transition: border-color 0.2s;
}

body:not(.mobile) div#menu-button:hover div#menu-button-circle {
	width: 100%;
	height: 100%;
}

div#menu-ham {
	position: absolute;
	/*top: 15px;
	left: 12px;
	width: 36px;
	height: 30px;*/
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width: 60%;
	height: 40%;
	box-sizing: border-box;
	border-bottom: 4px solid white;
	transition: transform 1s;
}

div#menu-ham:before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border-top: 4px solid white;
	transition: transform 1s;
}

div#menu-ham:after {
	content: "";
	position: absolute;
	top: calc(50% + 2px);
	transform: translateY(-50%);
	left: 0px;
	width: 100%;
	box-sizing: border-box;
	height: 4px;
	background-color: white;
	transition: background-color 0.2s;
	transition-delay: 0.5s;
}

div#menu.open div#menu-ham:after {
	transition-delay: 0s;
}

div#menu.open div#menu-ham:after {
	background-color: transparent;
}

div#menu.open div#menu-ham {
	transform: rotate(45deg) translateX(-20px) translateY(-5px);
}

div#menu.open div#menu-ham:before {
	transform: rotate(-90deg) translateX(-12px) translateY(8px);
}

div#menu:not(.open) div#menu-button.dark {
	filter: brightness(0.3);
}

div#menu ul.menu-content {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	max-width: 100%;
}

div#menu ul.menu-content+ul.menu-content {
	margin-left: 12px;
	vertical-align: top;
}

div#menu ul.menu-content+ul.menu-content:before {
	content: "";
	position: absolute;
	left: -12px;
	top: 25px;
	width: 2px;
	height: calc(100% - 50px);
	background-color: white;
}

div#menu div#strawberries {
	border-radius: 40px;
	overflow: hidden;
	background: url('strawberries.jpg') no-repeat center;
	background-size: 200%;
	background-position: 0% 100%;
}

/*div#menu div#strawberries:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: linear-gradient(rgba(0,0,0,0.9), rgba(221,28,54,0.2) 40%, rgba(221,28,54,0.7));
	background-size: 400%;
	background-position: center;
	animation-name: strawberries;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}*/

div#menu div#strawberries:after {
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(221,28,54,0.6);
}

div#menu ul#menu-entries {
	text-align: left;
	/*padding: min(100px, 15vh) min(100px, 15%);*/
	text-align: left;
}

div#menu::-webkit-scrollbar {
	display: none;
}

div#menu.open.down-scrollable:after, div#menu.open.up-scrollable:before {
	position: fixed;
	right: calc(50% - 110px);
	animation-name: menu-scroll;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
}

@keyframes menu-scroll {
	from {transform: translateY(-10px);}
	to {transform: none;}
}

div#menu.open.down-scrollable:after {
	content: "↓";
	bottom: 0px;
}
div#menu.open.up-scrollable:before {
	content: "↑";
	top: 0px;
}

@media only screen and (max-width: 549px) {
	div#menu ul#menu-entries {
		padding-left: 20px;
	}
}

@media only screen and (min-width: 550px) {
	div#menu ul#menu-entries {
		padding-left: 100px;
	}
}

@media only screen and (max-height: 799px) {
	div#menu ul#menu-entries {
		padding-top: 20px;
	}
}

@media only screen and (min-height: 800px) {
	div#menu ul#menu-entries {
		padding-top: 100px;
	}
}

div#menu li.menu-entry {
	display: inline-block;
	margin-top: 30px;
	position: relative;
	transition: font-size 0.2s;
	font-size: 40px;
	padding: 0px 20px;
	/*transition: left 0.2s, top 0.2s;
	transition-timing-function: ease-out;*/
}

div#menu li.menu-entry a {
	cursor: default;
}

div#menu li.menu-entry.hovered {
	font-size: 45px;
}

div#menu li.menu-entry.hovered a {
	cursor: pointer;
}

div#menu li.deeper, div#menu ul.sub-menu {
	overflow: hidden;
}

div#menu ul.sub-menu {
	max-height: 0;
	transition: max-height 0.5s;
}

div#menu ul.sub-menu li.menu-entry.hovered {
	font-size: 35px;
}

div#menu ul.sub-menu li.menu-entry {
	font-size: 30px;
}

body:not(.mobile) div#menu li:hover ul.sub-menu, body.mobile div#menu li.open ul.sub-menu {
	max-height: 500px;
	padding-bottom: 30px;
}

body#home div#banner {
	color: white;
	position: relative;
	max-height: 90vh;
	overflow-y: hidden;
	transition: max-height 0.1s;
}

body#home div#banner > * {
	/*position: relative;*/
	z-index: 2;
}

body#home div#banner-background {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-image: url('strawberrys.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	z-index: 0;
}

body#home div#banner:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	/*background: rgba(221,28,54,0.5);*/
	/*background: rgba(100,100,100,0.5);*/
	background: linear-gradient(-60deg, rgba(0,0,0,0.5), rgba(50,50,50,0.3) 40%, rgba(0,0,0,0.8));
	z-index: 1;
}

body#home video#banner {
	width: 100%;
	z-index: 0;
}

body#home img#logo {
	width: 250px;
	position: absolute;
	top: 10px;
	left: 10px;
}

body#home div#banner p#message {
	position: absolute;
	top: 120px;
	left: 5px;
	max-width: 200px;
	font-size: 12px;
}

body#home div#banner p.sub-title {
	margin-top: 10px;
}

p#banner-cats {
	margin-top: 5px;
}

p#banner-cats span {
	white-space: nowrap;
	display: inline-block;
}

p#banner-cats span+span:before {
	content: "|";
	padding: 0px 20px;
}

.title-banner {
	font-size: 70px;
	font-weight: 900;
}

.title {
	font-size: 60px;
	font-weight: 900;
}

.sub-title {
	font-size: 24px;
}

.sub-sub-title {
	font-size: 18px;
}

.descr {
	font-size: 12px;
	font-weight: 600;
	line-height: 20px;
}

.upper {
	text-transform: uppercase;
}

div#banner-text {
	position: absolute;
	bottom: 30%;
	right: 0px;
	text-align: right;
	margin-right: min(250px, 10%);
}

@media only screen and (max-width: 1400px) {
	body#project div#project-description p.sub-title {
		width: 100%;
		left: 0px;
	}
}
@media only screen and (max-width: 1255px) {
	body#project div.project-banner div#banner div#center-block {
		padding-left: 0px;
	}
	
	body#home div#projects-menu {
		margin: auto;
	}
}

@media only screen and (max-width: 960px) {
	body#home img#logo {
		width: 150px;
	}
	
	div#banner-text {
		margin-right: 12%;
		max-width: 88%;
		bottom: 50px;
	}
	
	div#categories-descr div.category-descr {
		width: 120px;
		height: 120px;
		max-width: calc(100% - 250px);
	}
	
	div#categories-descr.columns-1 div.category-descr:not(:first-child) {
		margin-top: 0px;
	}
	
	body#home ul#categories-menu li {
		display: block;
		height: 30px;
	}
	
	body#home ul#categories-menu li:first-child:before {
		content: "/";
		margin: auto;
	}
	
	body#project div.project-banner div#banner {
		padding: 20px;
	}
	
	body#project div#banner.small-fixed div#center-block > div {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	body#project div#banner.small-fixed div#center-block{
		min-height: 75px;
	}
	
	body div#footer {
		padding: 50px;
	}
	
	div#footer div#contacts {
		background-size: 50px;
		padding-left: 70px;
	}
	
	body div#footer div#indice img {
		max-width: 250px;
	}
	
	.title-banner {
		font-size: 36px;
	}
	
	.title {
		font-size: 32px;
	}
	
	.sub-title {
		font-size: 28px;
	}
	
	p.sub-sub-title {
		font-size: 12px;
	}
}

@media only screen and (max-width: 700px) {
	body div#footer div#indice {
		float: none;
		text-align: center;
		margin-top: 50px;
	}
	
	body div#footer > div {
		display: block;
		margin: auto;
	}
}

@media only screen and (max-width: 425px) {
	body div#menu-button {
		margin: 10px 20px;
	}
	
	body#home img#logo {
		width: 100px;
	}
	
	div#banner-text {
		bottom: 20px;
	}
	
	p#banner-cats span+span:before {
		padding: 0px 5px;
	}
	
	p#banner-cats span {
		white-space: nowrap;
		display: inline-block;
	}
	
	div#banner p#scroll-down {
		right: -35px;
	}
	
	body#home div#intro, body#home div#projects p.title {
		padding-top: 50px;
	}
	
	div#categories-descr div.category-descr {
		width: 80px;
		height: 80px;
		margin-left: 10px;
	}
	
	div#categories-descr div.category-descr div.category-text {
		left: calc(100% + 5px);
	}
	
	body#home div#projects-menu {
		margin-top: 0px;
		justify-content: space-around;
	}
	
	body#project div.project-banner div#banner {
		padding: 10px;
	}
	
	body#project div#banner.small-fixed div#center-block{
		min-height: 65px;
	}
	
	body#project div#project-description {
		margin: 10px auto;
	}
	
	body#project div.project-deliverable {
		margin-top: 0px;
	}
	
	.title-banner {
		font-size: 18px;
	}
	
	.title {
		font-size: 16px;
	}
	
	.sub-title {
		font-size: 14px;
	}
	
	p.sub-sub-title {
		font-size: 10px;
	}
}

@media only screen and (max-width: 375px) {
	div#projects-menu div.project-menu-item {
		max-width: 100%;
		margin: 20px auto;
	}
	div#footer div#contacts {
		padding-left: 0px;
		padding-top: 100px;
		background-position: center -10px;
	}
}

body#home div#banner > p+p:not(:last-child) {
	margin-top: 10px;
}

p#scroll-down {
	display: inline-block;
	transform: rotate(-90deg) translateX(60%);
	position: absolute;
	right: -10;
	bottom: 10;
	font-size: 14px;
	font-weight: 400;
}

p#scroll-down:before {
	content: "⟵";
	right: 10px;
	font-size: 20px;
	position: relative;
	bottom: -2px;
	animation-name: scroll-down;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

@keyframes scroll-down {
	from {right: 10px;}
	to {right: 20px;}
}

div#intro {
	max-width: 950px;
	padding: 0px 10px;
	padding-top: 200px;
	margin: auto;
}

div#categories-descr {
	padding: 0px calc(50% - 630px);
	position: relative;
	font-size: 0px;
	color: white;
	background-color: rgb(221,28,54);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin: auto;
	margin-top: 100px;
	background-origin: border-box;
	text-align: center;
}

div#categories-descr.columns-3 {
	border-bottom: 200px solid transparent;
}

div#categories-descr.columns-2 {
	border-bottom: 100px solid transparent;
}

/*div#categories-descr:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(221,28,54,0.6);
}*/

div.category-descr {
	position: relative;
	display: inline-block;
	z-index: 2;
	text-align: center;
	width: 170px;
	height: 170px;
	vertical-align: top;
	box-sizing: border-box;
	margin: 50px;
	margin-right: 200px;
	cursor: pointer;
	transition: transform 0.2s, left 2s, opacity 1s!important;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

body:not(.mobile) div.category-descr:hover {
	transform: scale(1.1);
}

div.category-descr.level-2 {
	top: 100px;
}

div.category-descr.level-3 {
	top: 200px;
}

/*div.category-descr.first-line {
	margin-top: 0px;
}

div.category-descr.first-in-line {
	margin-left: 0px;
}*/

div.category-text {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: calc(100% - 10px);
	text-align: left;
}

div.category-descr p.sub-title {
	font-weight: 600;
	max-width: 100px;
	font-size: 20px;
}

div.category-descr p.descr {
	width: 200px;
	font-size: 12px;
	margin-top: 10px;
}

:not(.img).hidable {
	left: 0;
	position: relative;
	transition: left 2s, opacity 1s;
}

.img.hidable {
	top: 0;
	position: relative;
	transition: top 2s, opacity 1s, background-size 1s;
}

body:not(.mobile) .img.hidable:hover {
	background-size: 110%;
}

:not(.img).hidable.hidden {
	left: -100px!important;
	opacity: 0;
}

.img.hidable.hidden {
	top: 100px!important;
	opacity: 0;
}

.blurrable {
	/*filter: blur(10px);
	opacity: 0;*/
	transition: filter 1s, opacity 0.5s;
}

.blurrable.blurred {
	filter: blur(10px);
	opacity: 0;
}

div.img {
	display: inline-block;
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	user-select: none;
	text-align: center;
	vertical-align: top;
	margin: 2% auto;
}

div.img img, div.img video {
	max-width: 100%;
	max-height: 100%;
}

div.img img {
	opacity: 0;
}

div.img video {
	
}

div#projects p.title {
	padding-top: 200px;
}

div#intro p.descr {
	padding-top: 50px;
}

div#projects {
	max-width: 1200px;
	padding: 0px 10px;
	margin: auto;
}

ul#categories-menu {
	display: inline-block;
	margin: 0;
	margin-left: -10px;
	padding: 30px 10px;
}

ul#categories-menu li {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	transition: font-size 0.1s;
}

ul#categories-menu:not(:hover) li.selected {
	font-size: 20px;
}

ul#categories-menu:not(:hover) li.selected, ul#categories-menu li:hover {
	font-weight: 700;
}

ul#categories-menu div {
	position: relative;
	cursor: pointer;
	line-height: 40px;
	vertical-align: top;
	display: inline-block;
}

ul#categories-menu li:first-child div {
	margin-left: 0px!important;
}

/*ul#categories-menu li:not(.just-selected) div:hover:before, ul#categories-menu div:hover:after {
	opacity: 1;
	animation-name: menu-hover;
	animation-duration: .2s;
	animation-iteration-count: 3;
}

@keyframes menu-hover {
	from {opacity: 0;}
	to {opacity: 1;}
}

@keyframes menu-just-selected {
	from {transform: scale(1);}
	to {transform: scale(1.5);}
}

ul#categories-menu div:before, ul#categories-menu div:after {
	position: absolute;
	padding: 0px 5px;
	opacity: 0;
	top: 0;
	line-height: 40px;
}

ul#categories-menu div:before {
	content: "🡒";
	right: 100%;
}

ul#categories-menu div:after {
	content: "🡐";
	left: 100%;
}

ul#categories-menu li.just-selected div:after {
	content: "✔";
	animation-name: menu-just-selected;
	animation-duration: .2s;
	animation-iteration-count: 1;
}*/

ul#categories-menu li:before {
	content: "/";
	padding: 0px 25px;
	font-size: 20px;
	font-weight: 500;
	line-height: 40px;
}

ul#categories-menu li:first-child:before {
	content: "";
	margin-left: -40px;
}

div#projects-menu {
	margin: auto -20px;
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
}

div#projects-menu > a {
	margin: 20px;
	display: inline-table;
	position: relative;
}

div.project-menu-item.menu-item-pad {
	margin: 20px;
}

div.project-menu-item {
	position: relative;
	display: inline-block;
	background-repeat: no-repeat;
	background-size: 120%;
	background-position: center;
	width: 300px;
	height: 350px;
	/*width: 260px;
	height: 300px;*/
	color: white;
	position: relative;
	cursor: pointer;
	vertical-align: top;
	overflow: hidden;
	max-width: 520px;
	max-height: 607px;
	/*max-width: 560px;
	max-height: 650px;*/
	transition: max-width 0.2s, max-height 0.2s, left 2s, opacity 1s;
}

div.project-menu-item.menu-item-pad {
	cursor: default;
}

div.project-menu-item.menu-item-pad.disabled {
	display: none;
}

div.project-menu-item div.background {
	position: absolute;
	top: 0;
	left: -10%;
	width: 120%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media only screen and (min-width: 1255px) {
	div.project-menu-item.big {
		width: 520px;
		height: 607px;
	}
	div.project-menu-item.menu-item-pad.big {
		height: inherit;
	}
	div.project-menu-item.big p.project-title {
		font-size: 40px;
	}
	body:not(.mobile) div.project-menu-item.big:hover p.project-title {
		font-size: 50px!important;
	}
}

div.project-menu-item.filtered {
	opacity: 0;
	margin: 0!important;
	max-width: 0px;
	max-height: 0px;
	transition-property: max-width, max-height;
	transition-duration: 0.2s;
}

div#projects-menu a.filtered {
	position: absolute;
}

body:not(.mobile) div.project-menu-item:hover p.project-title {
	font-size: 42px!important;
}

body:not(.mobile) div.project-menu-item:hover div.filter {
	left: 0%;
}

div.project-menu-item div.filter {
	content: "";
	position: absolute;
	top: 0;
	left: -200%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, rgba(0,0,0,0.9), rgba(221,28,54,0.6) 40%, rgba(221,28,54,0.2));
	transition: 0.6s;
}

div.project-menu-item div.filter:not(:hover) {
	transition-delay: 0.1s;
}

div.project-menu-item div.filter:before, div.project-menu-item div.filter:after {
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

div.project-menu-item div.filter:before {
	left: 200%;
	background: linear-gradient(-60deg, rgba(0,0,0,0.2), rgba(50,50,50,0.1) 40%, rgba(0,0,0,0.8));
}

div.project-menu-item div.filter:after {
	left: 100%;
	background: linear-gradient(-60deg, rgba(0,0,0,0.4), rgba(221,28,54,0.3) 40%, rgba(221,28,54,0.1));
}

div.project-menu-item:hover div.filter:after {
	width: 100%;
}

p.project-type {
	position: absolute;
	font-size: 20px;
	font-weight: 600;
	top: 20px;
	left: 20px;
	line-height: 150%;
	text-align: left;
}

p.project-title {
	transition: font-size .5s;
	position: absolute;
	font-size: 36px;
	font-weight: 800;
	bottom: 20px;
	left: 20px;
	text-align: left;
}

div#top-bar {
	background: rgb(79,79,79);
	padding: 20px;
}

div#top-bar img#logo {
	width: 100px;
}

body#project div#banner {
	color: white;
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	padding: 100px;
	padding-top: 50px;
	text-align: center;
	box-sizing: border-box;
	transition: padding 0.5s, width 0.5s, height 0.5s;
	z-index: 2;
}

body#project div#banner.small-fixed {
	position: fixed;
	padding: 5px 100px;
	width: 100%;
	height: auto;
}

body#project div#banner.small-fixed p.title-banner {
	font-size: 40px;
}

body#project div#banner.small-fixed p.sub-sub-title{
	top: 50%;
	transform: translateY(-50%);
	transition-duration: 0.2s;
	transition-delay: 0.3s;
}

body#project div#banner.small-fixed div#center-block {
	padding: 10px 0px;
	margin: 0px auto;
	text-align: center!important;
	position: relative;
}

body#project div#banner.small-fixed div#center-block p.title-banner {
	/*margin-left: 20px;*/
	vertical-align: middle;
	padding-top: 0px;
	width: auto;
	word-spacing: inherit;
	white-space: nowrap;
	max-width: 55vw;
}

body#project div#banner.small-fixed div#center-block p.sub-title {
	margin-left: 20px;
	vertical-align: middle;
	padding-top: 0px;
	display: none;
}

body#project div#banner div#center-block p.banner-deliverable-type {
	max-height: 0px;
	overflow: hidden;
	transition: max-height 0.5s, filter 0.2s, opacity 0.2s;
	font-size: 20px;
	opacity: 1;
	font-size: 16px;
}

body#project div#banner.small-fixed div#center-block p.banner-deliverable-type.visible {
	max-height: 50px;
}

body#project div#banner:not(.small-fixed) div#center-block p.banner-deliverable-type {
	display: none;
}

body#project div#banner div#center-block p.banner-deliverable-type.changing {
	filter: blur(5px);
	opacity: 0;
}

body#project div#banner.small-fixed div#center-block p.descr {
	display: none;
}

div.project-banner {
	position: relative;
	width: 100%;
	height: 600px;
	max-height: 100vw;
	background-color: black;
	background-origin: content-box;
	overflow: hidden;
}

div.project-banner-background {
	position: absolute;
	top: -20%;
	left: 0;
	/*transform: translateX(-50%);*/
	max-width: 100%;
	min-height: 140%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: top 0.1s;
	transition-timing-function: linear;
	overflow: hidden;
}

video.project-video-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body#project div#banner p.sub-sub-title {
	position: absolute;
	text-align: left;
	top: 50px;
	transition-duration: 0.1s;
}

body#project div#banner div#center-block {
	margin: 50px auto;
	transition: margin 0.5s;
	text-align: left;
	padding-left: 80px;
}

body#project div#banner div#center-block p {
	display: inline-block;
	text-align: left;
}

body#project div#banner p.title-banner {
	vertical-align: bottom;
	margin: 0px;
	transition: margin 0.5s, padding 0.5s, width 0.5s;
	padding-top: 10px;
	width: 100%;
}

body#project div#banner p.sub-title {
	vertical-align: bottom;
	position: relative;
	font-weight: 600;
	margin: 0px;
	padding-top: 20px;
	transition: margin 0.5s, padding 0.5s;
}

body#project div#banner div#center-block p.descr {
	padding-top: 20px;
}

div#project-description {
	max-width: 1200px;
	padding: 0px 10px;
	margin: 100px auto;
}

div#project-description p.sub-title {
	width: calc(100% + 100px);
	left: -50px;
	text-align: center;
	border-bottom: 1px solid;
	margin: 50px auto;
	padding-bottom: 20px;
	font-size: 32px;
}

div#intro-main {
	max-width: 950px;
	padding: 0px 10px;
	margin: auto;
	margin-top: 70px;
}

div#intro-main p.descr {
	margin-top: 50px;
}

div.project-deliverable {
	margin-top: 150px;
	font-size: 0px;
	position: relative;
}

div.play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 14px;
	font-weight: 600;
	border: 4px solid white;
	border-radius: 50%;
	padding: 30px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	transition: opacity 0.2s, background 0.2s, color 0.2s, z-index 0s;
	letter-spacing: 1px;
	opacity: 1;
	z-index: 1;
}

div.play:hover {
	mix-blend-mode: lighten;
}

div.img > div.full-screen {
	position: absolute;
	cursor: pointer;
	top: 20px;
	left: 20px;
	width: 40px;
	height: 40px;
	background-image: url('fullsceen.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.5s;
}

body:not(.mobile) div.img > div.full-screen:hover {
	animation-name: video-full-screen;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
}

@keyframes video-full-screen {
	0% {transform: scale(1);}
	50% {transform: scale(1.1);}
	100% {transform: scale(1);}
}

div.img video {
	transition: filter 0.5s;
	object-fit: cover;
	background-image: url('strawberries.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 200px;
	outline: none;
}

div.img.full-screen video {
	height: 100%;
}

div.img.full-screen:not(.hovered) {
	cursor: none;
}

div.img div.play:hover, div.pause:hover, div.img:not(.playing) div.pause {
	background: white;
	color: black;
}

div.img.loading div.play:after {
	content: "";
	position: absolute;
	top: 120%;
	left: 50%;
	width: 150%;
	height: 4px;
	transform: translateX(-50%);
	background-image: linear-gradient(90deg, transparent, white, transparent);
	background-size: 80%;
	background-repeat: no-repeat;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-name: video-loading;
	/*animation-timing-function: linear;*/
}

@keyframes video-loading {
	/*0% {word-spacing: -10px; margin-left: 0px;}
	50% {word-spacing: 10px; margin-left: 20px;}
	100% {word-spacing: -10px; margin-left: 0px;}*/
	0% {background-position: -500%;}
	100% {background-position: 500%;}
}

div.img.playing div.play {
	transition: opacity 0.2s, background 0.2s, color 0.2s, z-index 0s 0.2s;
	opacity: 0;
	z-index: -1;
}

div.img:not(.playing) video, div.img.hovered video {
	filter: brightness(0.8);
}

div.progressBar {
	position: absolute;
	top: 20px;
	right: 20px;
	height: calc(100% - 40px);
	width: 50px;
	transition: opacity 0.5s;
	opacity: 0;
}

div.img.hovered div.full-screen, div.img.hovered div.progressBar, div.img:not(.playing) div.full-screen, div.img:not(.playing) div.progressBar {
	opacity: 1;
	transition: opacity 0.5s 0s;
}

div.pause {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: white;
	font-size: 25px;
	font-weight: 600;
	border: 3px solid white;
	border-radius: 50%;
	height: 50px;
	line-height: 42px;
	cursor: pointer;
	box-sizing: border-box;
	transition: 0.2s;
	text-align: center;
	mix-blend-mode: lighten;
}

div.totalProgress {
	position: absolute;
	top: 50px;
	left: 15px;
	width: 20px;
	height: calc(100% - 125px);
	cursor: pointer;
}

div.totalProgress:after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: white;
	transform: translateX(-50%);
}

div.currentProgress {
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	height: 0%;
	background: white;
}

div.hoverMarker {
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 3px;
	background: white;
	opacity: 0;
	transition: opacity 0.2s;
}

div.totalProgress:hover div.hoverMarker {
	opacity: 1;
}

div.duration {
	position: absolute;
	top: calc(100% - 60px);
	left: 50%;
	transform: translateX(-50%) rotate(90deg);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1px;
	color: white;
}

div.sound {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 20px;
	cursor: pointer;
}

div.sound-icon {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 20px;
	border-right: 4px solid white;
	border-left: 4px solid white;
	transition: height 0.2s;
}

div.sound-icon:before, div.sound-icon:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: height 0.2s;
}

div.sound-icon:before {
	width: 8px;
	border-right: 4px solid white;
	border-left: 4px solid white;	
	height: 30px;
}

div.sound-icon:after {
	width: 4px;
	background: white;
	height: 25px;
}

div.sound.muted div.sound-icon, div.sound.muted div.sound-icon:before, div.sound.muted div.sound-icon:after {
	height: 2px;
}

div.sound.muted div.sound-icon {
	animation-name: sound-down-1;
	animation-duration: 0.2s;
	animation-iteration-count: 1;
}

@keyframes sound-down-1 {
	0% {height: 30px;}
	100% {height: 4px;}
}

div.sound.muted div.sound-icon:before {
	animation-name: sound-down-2;
	animation-duration: 0.2s;
	animation-iteration-count: 1;
}

@keyframes sound-down-2 {
	0% {height: 25px;}
	100% {height: 4px;}
}

div.sound.muted div.sound-icon:after {
	animation-name: sound-down-3;
	animation-duration: 0.2s;
	animation-iteration-count: 1;
}

@keyframes sound-down-3 {
	0% {height: 20px;}
	100% {height: 4px;}
}

body:not(.mobile) div.sound:not(.muted) div.sound-icon:hover {
	animation-name: sound-1;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
}

@keyframes sound-1 {
	0% {height: 20px;}
	50% {height: 30px;}
	100% {height: 20px;}
}

body:not(.mobile) div.sound:not(.muted) div.sound-icon:hover:before {
	animation-name: sound-2;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
}

@keyframes sound-2 {
	0% {height: 30px;}
	50% {height: 20px;}
	100% {height: 30px;}
}

body:not(.mobile) div.sound:not(.muted) div.sound-icon:hover:after {
	animation-name: sound-3;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
}

@keyframes sound-3 {
	0% {height: 25px;}
	25% {height: 30px;}
	50% {height: 25px;}
	75% {height: 20px;}
	100% {height: 25px;}
}

div.img.left-most {
	margin-left: 0px!important;
}

div.img.full-width {
	max-width: 100%;
}

div.img.almost-full-width {
	max-width: 900px;
}

div.img.shadowed {
	box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}

div.img.side-by-side {
	max-width: 48%;
}

div.img.side-by-side-small-1 {
	max-width: 40.9%;
}

div.img.side-by-side-big-1 {
	max-width: 55.1%;
}

div.img.side-by-side-small-2 {
	max-width: 33.6%;
}

div.img.side-by-side-big-2 {
	max-width: 62.4%;
}

div.img.side-by-side {
	margin-left: 4%;
}

div#footer {
	background: rgb(221,28,54);
	color: white;
	padding: 80px;
	position: relative;
}

div#footer > div {
	display: inline-block;
	vertical-align: top;
}

div#footer div#indice {
	position: relative;
	text-align: right;
	float: right;
}

div#footer div#indice img {
	max-width: 300px;
}

div#footer div#indice p {
	font-size: 16px;
	text-align: center;
}

div#contacts {
	background-image: url('heart.png');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 100px;
	padding-left: 200px;
	overflow: visible;
	max-width: 260px;
}

div#contacts > p {
	background-repeat: no-repeat;
	background-position: top left;
	padding-left: 30px;
	padding-top: 5px;
	margin-bottom: 10px;
	background-size: 20px;
	overflow: visible;
}

p#tel {
	background-image: url('tel.png');
}

p#email {
	background-image: url('email.png');
}

p#www {
	background-image: url('www.png');
}

p#address {
	background-image: url('address.png');
}