@charset "utf-8";
/* CSS Document */

#BGvideo {
  position:fixed;
  min-width: 100vw;
  min-height: 100vh;
  width:auto;
  height:auto;
}

.cartstyle{
	position:relative;
	font-size: 38px;
	color: rgba(255,255,255,0.21);
	font-weight: 400;
	font-family: Neutra2Display;
	display: inline-block;
	margin-left: 2px;
	bottom:9px;

}
/* TEXT FORMATING */

.title{
	text-align: center;
	color: #C3C3C3;
	font: Neutra2Text;
	font-size: 70px;
	font-weight: 400;
}
.subtitle{
	text-align: center;
	color: #929292;
	font: Neutra2Text;
	font-size: 30px;
	font-weight: 200;
	line-height: 20px;
}
.description{
	text-align: center;
	color: #C3C3C3;
	font: Neutra2Text;
	font-size: 23px;
	font-weight: 200;
}





/* items style */

.ShopItems{
	max-width: 1600px;
	margin-left: 7vw;
	margin-right: 7vw;
}
.ShopItems:after {
  content: "";
  display:table;
  clear: both;
}


.itemwraper{
	display:block;
	margin:5px;
}

.shortMovieTemp{
	margin:auto;
	background-color:beige;
	width:52%;
}

.item{
	position: relative;
	background-color: rgba(96,237,255,0.00);
	float:left;
	width:25%;
}
.item img{
	width:100%;
	object-position: center;
	vertical-align: middle;
}


/* items mouse over change */
	
.overlay {
	position:absolute;
	top: 5px;
	width:calc(100% - 10px);
	height:calc(100% - 10px);
	opacity:0.0;
	background-color:rgba(0,0,0,0.70);
}
.overlay:hover{
	opacity:1;
}

.itemText {
  min-width: 70%;
  position:absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align:left;
}

.itemTextTitle{
	color: #D3D3D3;
	font-size: 39px;
	font-weight: 400
}
.itemTextSubTitle{
	color: #D3D3D3;
	font-size: 20px;
	font-weight: 200
}
.itemTextSubTitleNr{
	font-size: 135%;
	font-family: Neutra2Display;
}

.itemTextPrice{
	color: #D3D3D3;
	font-size: 34px;
	font-weight: 200;
	line-height: 28px;
}
.itemTextCents{
	position:absolute;
	color: #D3D3D3;
	font-size: 22px;
	font-weight: 200;
	line-height: 24px;
}

a.itemlink:hover{
	color:inherit;
  	text-decoration: none;
}



/* screen resolution changes */


@media screen and (max-width: 1550px) {
 .item {
    width: 33%;
}
.shortMovieTemp{
	width:72%;
}
}
@media screen and (max-width: 1100px) {
  .item {
    width: 50%;
  }
.shortMovieTemp{
	width:100%;
}
}
@media screen and (max-width: 740px) {
	.title{
		font-size: 53px;
	}
	.description{
	font-size: 21px;
}
	.itemTextTitle{
		font-size: 28px;
	}
}