@font-face {
	font-family: 'NeoSansPro Medium'; 
	src: 	local('NeoSansPro Medium'),
				url(../fonts/NeoSansProCyr-Medium.woff2) format('woff2'); 
}

@font-face {
	font-family: 'NeoSansPro Regular'; 
	src: 	local('NeoSansPro Regular'),
				url('../fonts/NeoSansProCyr-Regular.woff2') format('woff2'); 
}

@font-face {
	font-family: 'NeoSansPro Light'; 
	src: 	local('NeoSansPro Light'),
				url('../fonts/NeoSansProCyr-Light.woff2') format('woff2'); 
}

body{
	background-color: black;
}

*{
	margin: 0;
	padding: 0;
	font-family: NeoSansPro Regular;
	box-sizing: border-box;
	font-weight: 400;
	font-size: 18px;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

}
/*Убираем полосу прокрутки*/
::-webkit-scrollbar {
  width: 0;
}



/* БЛОК ВИДЕO BACKGROUND*/
#bckVidDiv {
	top: 0; 
	bottom: 0; 
	left: 0; 
	right: 0;
	position: fixed;
	filter: brightness(0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: -1;
}
#bkgVideo {
	width: 100%;
	height: auto;
}

/*Header*/
header{
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	top: 0px;
	margin: auto;
	color: white;
}
#bar{
	padding-top: 100px;
	width: 85%;
	left: 0;
	right: 0;
	top: 0;
	margin: auto;
	height: 100vh;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#bar>#logo{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}
#bar>#logo>img{
	width: 150px;
	height: 150px;
}
#bar>#logo>a{
	margin-right: 50px;
	text-align: right;
}
#bar>#menu{
	position: relative;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	width: 150%;
	height: 150px;

}
#bar>#menu>div{
    position: relative;
    cursor: pointer;
    text-decoration: none; /* Убираем подчеркивание */
}

#bar>#menu>div:after {
	content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 0;
    height: 2px; /* Высота линии */
    background-color: white; /* Цвет подчеркивания при исчезании линии*/
    transition: width 0.5s; /* Время эффекта */
}

#bar>#menu>div:hover:after {
	content: "";
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px; /* Высота линии */
    background-color: red; /* Цвет подчеркивания при появлении линии*/
    transition: width 0.5s;  /* Время эффекта */
}
#bar>#menu>button{
  --width: 150px;
  width: 200px;
  height: 50px;
  color: #fff;
  font-size: 20px;
  border-radius: 5px;
  background: rgba(255, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  margin: 20px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: NeoSansPro Regular;
}
button, button * {
  box-sizing: border-box;
  transition: 200ms;
}
button:before {
  content: "";
  position: absolute;
  display: block;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(0px);
  transition: 600ms;
  transform: skewX(45deg) translateX(calc(var(--width) + 50%));
}
button:hover:before {
  transform: skewX(45deg) translateX(calc(var(--width) * -1 - 50%));
}
button > * {
  opacity: 0.8;
}

/*БЛОК ИНФОРМАЦИИ О КОМПАНИИ*/
#aboutus{
	padding-top: 100px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	background-color: #080808;
	clip-path: polygon(0% 5%, 100% 0%, 100% 95%, 0% 100%);
	
}
#aboutus>#blockname{
	width: 85%;
	left: 0;
	right: 0;
	margin: auto;

}
#aboutus>#blockname>h2{
	font-size: 50px;
	font-weight: 800;
	font-family: NeoSansPro Medium;
	margin-bottom: 100px;
}

#aboutus>#aboutusinformation{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	height: auto;
	width: 85%;
	padding-bottom: 100px;
}

#aboutus>#aboutusinformation>#description{
	width: 45%;
	display: flex;
	align-items: center;
}
#aboutus>#aboutusinformation>#description>p{
	font-size: 20px;
	text-align: justify;
}
#aboutus>#aboutusinformation>h3{
	transform: rotate(-90deg);
	font-family: NeoSansPro Light;
	width: 10%;
	height: 100%;
	font-size: 80px;
	display: flex;
	align-self: center;
	justify-content: center;
	color: rgba(255, 0, 0, 0.25);
}

#aboutus>#aboutusinformation>#backstagevideos{
	width: 45%;
	justify-content: space-between;
	align-items: center;
	display: grid;
	grid-template-columns: repeat(2, 350px);
	grid-template-rows: repeat(3, 175px);
	gap: 50px;
}

#aboutus>#aboutusinformation>#backstagevideos>div{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

#aboutus>#aboutusinformation>#backstagevideos>div img {
	width: 100%;
	background-repeat: no-repeat;
	opacity: 0.7;
	transition: opacity 0.5s ease;
}
#aboutus>#aboutusinformation>#backstagevideos>div:hover >img{
	content: '';
	opacity: 0.4;
}
#aboutus>#aboutusinformation>#backstagevideos>div> svg{
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	cursor: pointer;
	transition: width 0.5s cubic-bezier(0.42, 0, 0.45, 1.95);
}

#aboutus>#aboutusinformation>#backstagevideos>div:hover >svg{
	content: '';
	width: 50px;
	height: auto;
}


/*БЛОК ПРОЕКТОВ*/
#projects{
	padding: 100px 0 200px 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;

}
#projects>#blockname{
	width: 85%;
	left: 0;
	right: 0;
	margin: auto;
}
#projects>#blockname>h2{
	font-size: 50px;
	font-weight: 800;
	margin-bottom: 100px;
	font-family: NeoSansPro Medium;
}
#projects>#projectsinformation{
	width: 100%;
	justify-content: center;
	justify-items: center;
	display: grid;
	grid-template-columns: repeat(3, 500px);
	grid-template-rows: repeat(3, 250px);
	gap: 70px;
}
#projects>#projectsinformation>div{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

#projects>#projectsinformation>div img {
	width: 100%;
	background-repeat: no-repeat;
	/* opacity: 0.7; */
	transition: opacity 0.5s ease, transform  .5s ease;
}
#projects>#projectsinformation>div:hover >img{
	content: '';
	opacity: 0.4;
	transform: scale(1.02);
}
#projects>#projectsinformation>div>svg{
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	cursor: pointer;
	transition: width 0.5s cubic-bezier(0.42, 0, 0.45, 1.95);
}

#projects>#projectsinformation>div:hover >svg{
	content: '';
	width: 50px;
	height: auto;
}

/*БЛОК ФИЛЬМ*/
#film{
	padding: 100px 0 100px 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	background-color: #080808;
	clip-path: polygon(0% 5%, 100% 0%, 100% 95%, 0% 100%);

}
#film>#blockname>h2{
	font-size: 50px;
	font-weight: 800;
	margin-bottom: 50px;
	text-align: center;
	font-family: NeoSansPro Medium;
}
#film>#filminformation{
	width: 85%;
	justify-content: space-between;
	align-items: center;
	display: grid;
	grid-template-columns: repeat(4, 350px);
	grid-template-rows: repeat(3, 175px);
	gap: 50px;
}
#film>#filminformation>div{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

#film>#filminformation>div img {
	width: 100%;
	background-repeat: no-repeat;
	opacity: 0.7;
	transition: opacity 0.5s ease, transform  .5s ease;
}
#film>#filminformation>div:hover >img{
	content: '';
	opacity: 0.4;
	transform: scale(1.02);
}
#film>#filminformation>div>svg{
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	cursor: pointer;
	transition: width 0.5s cubic-bezier(0.42, 0, 0.45, 1.95);
}

#film>#filminformation>div:hover >svg{
	content: '';
	width: 50px;
	height: auto;
}


 
/*БЛОК КЛИЕНТЫ*/
#clients{
	padding-top: 100px;
	width: 85%;
	height: auto;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	align-items: flex-start;

}
#clients>#blockname>h2{
	font-size: 50px;
	font-weight: 800;
	margin-bottom: 50px;
	font-family: NeoSansPro Medium;
}
#clients>#clientsinformation{
	width: 100%;
	height: 300px;
}
#clients>#clientsinformation>.carousel>.carousel-item{
	width: 300px;
	height: 300px;
}






/*БЛОК КОНТАКТЫ*/
#contacts{
	padding-top: 100px;
	width: 85%;
	left: 0;
	right: 0;
	margin: auto;
	height: 100vh;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;

}
#contacts>#blockname{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 50px;
}

#contacts>#blockname>h2{
	font-size: 50px;
	font-weight: 800;
	font-family: NeoSansPro Medium;
}

#contacts>#blockname>img{
	width: 250px;
	height: 250px;
}
#contacts>#contactsinformation{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	margin-bottom: 50px;
	
}
#contacts>#contactsinformation>a{
	text-decoration: none;
	color: white;
	font-size: 40px;
	text-transform: uppercase;
	line-height: 1;
}
#contacts>#sociallinks{
	display: flex;
}
#contacts>#sociallinks>a{
	display: flex;
	justify-content: center;
	height: 50px;
	width: 50px;
	margin-right: 25px;
	color: white;
}
#contacts>#sociallinks>a>svg{
	height: 100%;
	width: 100%;
}

#contacts>p{
	text-transform: uppercase;
	font-size: 15px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-bottom: 20px;
	color: gray;
	font-family: NeoSansPro Light;
}

/*Кнопка возврата*/
#rtnBtn>svg{
	height: 100%;
	width: 100%;
}
.b-show{
	animation: showBlock 1s linear forwards;
}


@keyframes showBlock {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*Фрейм видео*/
#videopage{
	position: fixed;
	display: none;
	justify-content: center;
	align-items: center;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .9);
	z-index: 1;
}
#videopage>iframe{
	width: 1280px;
	height: 720px;
	border-radius: 10px;
}



@media only screen and (max-width: 1200px) {
	#bkgVideo {
		width: auto;
		height: 100vh;
	}
	#bar{
		height: 100vh;
		padding-top: 10px;
	}
	#bar>#logo{
		justify-content: space-between;
	}
	#bar>#menu{
		display: none;
	}
	#aboutus{
		clip-path: polygon(0% 2%, 100% 0%, 100% 98%, 0% 100%);
	}
	#aboutus>#aboutusinformation>#description>p{
		font-size: 16px;
	}
	#aboutus>#aboutusinformation>h3{
		font-size: 50px;
	}
	#aboutus>#aboutusinformation>#backstagevideos{
		grid-template-columns: repeat(1, 300px);
		grid-template-rows: repeat(4, 150px);
		padding-bottom: 50px;
	}
	#aboutus>#aboutusinformation>#backstagevideos>#backstagecontainer1{
		display: none;
	}
	#aboutus>#aboutusinformation>#backstagevideos>#backstagecontainer6{
		display: none;
	}
	#projects{
		clip-path: polygon(0% 2%, 100% 0%, 100% 98%, 0% 100%);
		padding: 50px 0 100px 0;
	}
	#projects>#projectsinformation{
		grid-template-columns: repeat(2, 300px);
		grid-template-rows: repeat(4, 150px);
	}
	
	#projects>#projectsinformation>#videocontainer7{
		display: none;
	}

	#film{
		clip-path: polygon(0% 2%, 100% 0%, 100% 98%, 0% 100%);
		padding: 50px 0 100px 0;
	}
	#film>#filminformation{
		grid-template-columns: repeat(2, 300px);
		grid-template-rows: repeat(4, 150px);
	}

	#clients>#clientsinformation{
		grid-template-columns: repeat(2, 0.5fr);
	}
	#clients{
		height: auto;
	}
	#contacts>#contactsinformation>a{
		font-size: 30px;
	}
	#contacts>p{
		height: 100%;
		justify-content: flex-end;
	}
	#contacts>#sociallinks{
		padding-bottom: 50px;
	}
	#videopage>iframe{
		width: 960px;
		height: 540px;
	}
}
@media only screen and (max-width: 992px) {
	
	#aboutus>#aboutusinformation>#description>p{
		font-size: 14px;
	}
	#videopage>iframe{
		width: 800px;
		height: 450px;
	}
}
@media only screen and (max-width: 768px) {
	#bar>#logo{
		justify-content: space-between;
	}
	#bar>#menu{
		display: none;
	}
	#aboutus{
		clip-path: polygon(0% 1%, 100% 0%, 100% 99%, 0% 100%);
	}
	#aboutus>#aboutusinformation{
		flex-direction: column;
	}
	#aboutus>#aboutusinformation>#description{
		width: 100%;
		justify-content: center;
	}
	#aboutus>#aboutusinformation>h3{
		font-size: 50px;
		transform: none;
	}
	#aboutus>#aboutusinformation>#backstagevideos{
		grid-template-columns: repeat(1, auto);
		width: 100%;
		grid-template-rows: repeat(6, 150px);
	}
	#aboutus>#aboutusinformation>#backstagevideos>#backstagecontainer1{
		display: block;
	}
	#aboutus>#aboutusinformation>#backstagevideos>#backstagecontainer6{
		display: block;
	}


	#projects{
		clip-path: polygon(0% 0%, 100% 0%, 100% 98%, 0% 100%);
	}
	#projects>#projectsinformation{
		width: 85%;
		align-self: center;
		grid-template-columns: repeat(1, auto);
		grid-template-rows: repeat(9, 150px);
	}
	#projects>#projectsinformation>#videocontainer7{
		display: block;
	}
	#clients>#clientsinformation{
		grid-template-columns: repeat(1, auto);
	}
	#videopage>iframe{
		width: 640px;
		height: 360px;
	}

	#film{
		clip-path: polygon(0% 1%, 100% 0%, 100% 99%, 0% 100%);
	}
	#film>#filminformation{
		width: 85%;
		align-self: center;
		grid-template-columns: repeat(1, auto);
		grid-template-rows: repeat(9, 150px);
	}
	#film>#filminformation>#videocontainer7{
		display: block;
	}
	#clients>#clientsinformation{
		grid-template-columns: repeat(1, auto);
	}
	#videopage>iframe{
		width: 640px;
		height: 360px;
	}

}
@media only screen and (max-width: 480px) {
	#aboutus>#blockname>h2{
		font-size: 40px;
	}
	#projects>#blockname>h2{
		font-size: 40px;
	}
	#film>#blockname>h2{
		font-size: 40px;
	}
	#clients>#blockname>h2{
		font-size: 40px;
	}
	#contacts>#blockname>h2{
		font-size: 40px;
	}
	#bar>#logo>img{
		width: 100px;
		height: 100px;
	}
	#videopage>iframe{
		width: 400px;
		height: 225px;
	}
}