/* CSS Document */
/**
 * ----------------------------------------
 * Colors
 * ----------------------------------------
*/
.accent-color {color: rgba(0,0,0,1.00)}
.accent-color-B {background-color: rgba(0,0,0,1.00)}

.shite-green    {background-color: #bcd200 ;}
.green          {background-color: #00ac30 ;}
.light-blue     {background-color: #01c9ff ;}
.deep-blue      {background-color: #1900ad ;}
.purple         {background-color: #6f32ff ;}
.pink           {background-color: #ff3cae ;}
.yellow         {background-color: #ffdf09 ;}
.soft-orange    {background-color: #ff9f01 ;}
.light-orange   {background-color: #ff9f01 ;}
.orange         {background-color: #ff5d00 ;}
.red            {background-color: #ff2e01 ;}
.heavy-red      {background-color: #fb0000 ;}

.shite-green-c    {color: #bcd200 ;}
.green-c          {color: #00ac30 ;}
.light-blue-c     {color: #01c9ff ;}
.deep-blue-c      {color: #1900ad ;}
.purple-c         {color: #6f32ff ;}
.pink-c           {color: #ff3cae ;}
.yellow-c         {color: #ffdf09 ;}
.soft-orange-c    {color: #ff9f01 ;}
.light-orange-c   {color: #ff9f01 ;}
.orange-c         {color: #ff5d00 ;}
.red-c            {color: #ff2e01 ;}
.heavy-red-c      {color: #fb0000 ;}

.multiply       {mix-blend-mode: multiply;}
.grayscale      {filter: grayscale(100);}

.background_color {background-color: #191919;}
/* .background_color {background-color: #000000;} */


.white {color: #ffffff;}
.grey-c {color: #cccccc;}
.grey-9 {color: #999999;}
.grey-6 {color: #666666;}
.grey-3 {color: #999999;}
.black {color: #000000;}
/* */

/**
 * ----------------------------------------
 * animations
 * ----------------------------------------
*/
.flicker {
	-webkit-animation: blink-1 2s infinite both;
	        animation: blink-1 2s infinite both;
    transition: 1s ease;
}

.mailus {
	color: #fff;
	z-index: 9999;
	position: fixed;
	bottom: 30%;
	width: 100%;
	text-align: center;
}

@keyframes blink-1 {
  0% {
    opacity: 0;
  }
  40%, 60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes blink-1{
  0% {
    opacity: 0;
  }
  40%, 60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* */
/* Video */
.forlayer {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: rgba(0,0,0,0.9)
}
videoX { 
  height: 100vh; 
  min-height: 100vh; 
background-size: 100% 100%;
background-color: black; /* in case the video doesn't fit the whole page*/
/* background-image: /* our video */
background-position: center center;
background-size: contain;
 object-fit: cover; /*cover video background */
  z-index: 1;

}
#videobox {
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 0;
  opacity: 0.5;
  transition: 0.5s ease ;
}
#myVideo{
position: absolute;
	display: block;
right: 0;
bottom: 0;
top:0;
right:0;
width: 100vw;
height: 100vh;
background-size: 100% 100%;
background-color: orange; /* in case the video doesn't fit the whole page*/
/* background-image: /* our video */
background-position: center center;
background-size: contain;
 object-fit: cover; /*cover video background */
 z-index:3;
  filter: grayscale(100);
}

*::-webkit-media-controls-panel {

display: none!important;

-webkit-appearance: none;

}

*::--webkit-media-controls-play-button {

display: none!important;

-webkit-appearance: none;

}

*::-webkit-media-controls-start-playback-button {

display: none!important;

-webkit-appearance: none;

}
/* /Video */
/**
 * ----------------------------------------
 * Stuff
 * ----------------------------------------
*/
.title {
    margin-top: 20px;
    margin-left: 20px;
}
.rightside {
    position: relative;
    float: right;
    margin-left: auto;
    margin-top: 20px;
    margin-right: 20px;
    width: 30vw;
    min-width: 480px;
    z-index: 1000;
}
.leftside {
    position: fixed;
    float: left;
    right: auto;
    top: 20px;
    left: 20px;
    width: 320px;
    z-index: 1000;
}
.imagery-A{
    background-image: url(https://media.giphy.com/media/hVNyDw0ijSD94e384b/giphy.gif);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: block;
    
    z-index: 1;
}
.imagery-B{
    background-image: url(../img/site-root/Z709.png);
    background-position: center bottom;
    background-size: auto 90%;
    background-repeat: no-repeat;
    
    width: 100vw;
    height: 100vh;
    position: relative;
    display: block;
    
    z-index: 1;
}


@media only screen and (max-width: 768px) {
    
    
    .rightside {
        float: left;
        margin-top: 60px;
        margin-left: 20px;
        width: calc(100% - 40px);
        min-width: auto;
    }
}
.theVideo {
	display: block;
	position: relative;
	margin: auto;
	float: left;
	clear: left;
	width: 100vw;
	height: auto!important;
	top: 0;
	left: 0;
}
.theContainer {
	position: relative;
	float: left;
	margin: auto;
	display: block;
	clear: left;
	width: auto;
	height: auto;
	overflow: hidden;
}

.theContainer-B {
	height: auto;
	background-color: #000000;
	float: left;
	clear: left;
	margin: auto;
}

.theType {
	padding-left: 10vw;
	padding-right: 10vw;
}

.Bim {
	position: fixed;
	top: 50%;
	width: 240px;
	height: auto;
	left: calc(50% - 120px);
	z-index: 99999;
}

.iFrame {
	display: none!important;
}

#play_button {
	position: absolute;
	top: 30px;
	z-index: 99999;
	display: block;
	left: auto;
	right: 20px;
	transformX: translateX(-50%);
	
	

	font-family: 'head';
	font-weight: normal;
	font-size: 16px;
	line-height: auto;
    letter-spacing: 0px;
	
    text-align: left;
    text-decoration: none;
	
	margin: 0;
	
	color: #ffffff;
	
	background-color: transparent;
	border: solid #fff 1px;
	
}

.containering {
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: #000000;
}
