/*-----------------------
  General 
-----------------------*/
/* Define status bar size */
/* Bottom settings sections */
/* Define general spaces */
/*@media screen and (min-width: 576px) { 
	$screeny-padding: 5px;
}
@media screen and (min-width: 768px) { 
	$screeny-padding: 10px;
}
@media screen and (min-width: 992px) { 
	$screeny-padding: 15px;
}
@media screen and (min-width: 1200px) { 
	$screeny-padding: 20px;
}*/
/* Define global radius */
/* Define size of arrows */
/* Define general transition time */
/* Define general border size */
/* Define background image blur */
#page-background {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000d17;
}

#background:before,
#background.gradient:before,
#background.color:before,
#background.dark-gradient-color:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  opacity: 1;
}

#background.color:before {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(0, 125, 227, 0.9), rgba(178, 0, 227, 0.9));
}

#background.dark-gradient-color:before {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(0, 13, 23, 0.9), rgba(18, 0, 23, 0.9));
}

#background.gradient:before {
  background-image: linear-gradient(45deg, black, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  opacity: 1;
}

#background {
  min-width: 100%;
  min-height: 100vh;
  transform: scale(1);
}

#background video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

#background img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*#background img {
	position:absolute;
	right:50%;
	top:50%;
	transform:translate(50%,-50%); 
	//right:0;
	bottom:auto;
	min-width:100%;
	min-height:100%;
	//object-fit:cover;
}*/
#background video {
  -webkit-filter: none;
  -moz-filter: none;
  -o-filter: none;
  -ms-filter: none;
  filter: none;
}

#background img {
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
  filter: blur(0px);
}
