@charset "utf-8";
/* CSS Document */

/*Embed Fonts*/
@font-face {
    font-family: 'font_1';
    src: url('font_1.woff2') format('woff2');
}

/*Parallax Styles*/
.parallax-viewport {
	position: relative;
	width: 100%;
	height: 503px;
	background-color: #000000;
    overflow: hidden;
}
.parallax-layer {
    position: absolute;
}

/*Scene Loading Screen*/
.scene_preloader {
	position: absolute;
	width: 100%;
	height: 503px;
	background: rgba(0,0,0,1);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 998;
}

/*Message Controller*/
#message_holder{
	background-image:url(../system_images/load_bg.png);
	width: 100vw;
    height: 100vh;
	position:fixed;
	z-index:99999;
	overflow: hidden;
}
#error_holder{
	background-image:url(../system_images/load_bg.png);
	width: 100vw;
    height: 100vh;
	position:fixed;
	z-index:100000;
	overflow: hidden;
}
#message_line{
	margin: auto;
	position: absolute;
	top: 50%;
	width:100%;
	height:75px;
	text-transform:uppercase;
	font-family:calibri,sans-serif;
	background-color:rgba(0,0,0,0.6);
	color:red;
	-moz-box-shadow: 0px 0px 1px white;
    -webkit-box-shadow: 0px 0px 1px white;
    box-shadow: 0px 0px 1px white;
	text-align:center;
}
.hero_notice{
	position:absolute;
	margin-top:-151px;
	margin-left:180px;
}
.button:link{
    display:inline-block;
    text-align:center;
    width:150px;
    padding:10px;
    font-size:12px;
	transition-duration: 0.5s;
	background-color:black;
    color:white;
    text-decoration:none;
    box-shadow: 0px 0px 1px white;
	border-radius: 5px;
}
.button:visited{
    background-color:black;
    color:white;
    text-decoration:none;
}
.button:hover{
    background-color:white;
    color:black;
	text-decoration:none;
    box-shadow: 0px 0px 5px #888;
	border-radius: 5px;
}
.button:active{
    background-color:black;
    color:white;
    text-decoration:none;
}
/*Message Fade Out*/
.fade-out {
    -webkit-transition: opacity 2s ease-in-out;
    -moz-transition: opacity 2s ease-in-out;
    -ms-transition: opacity 2s ease-in-out;
    -o-transition: opacity 2s ease-in-out;
     opacity: 0;
}
/*End Message Controller*/

/**Menu Area**/
#main_menu_bar{
	position: fixed;
	width: 100%;
	height: 34px;
	background-image: url("../system_images/menu.png");
	background-repeat: no-repeat;
	background-position: top center;
	z-index: 1000;
}
#menu_items_holder{
	position: absolute;
	width: 880px;
	height: 21px;
	top: 5px;
	left: 50%;
	transform: translate(-50%);
}
/*Volume Icons*/
#volume{
	position: fixed;
	top: 0px;
	right: 3px;
	cursor: url("../system_images/hover.cur"), default;
	width: 36px;
	height: 21px;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}
/*Menu Items Seperator*/
.menu_line_breaker{
	display: inline-block;
	position: fixed;
	width: 2px;
	height: 21px;
	background-image: url("../system_images/menu_line_breaker.png");
}
.menu_links{
	display: inline-block;
	position: fixed;
	height: 21px;
	font-family: "tahoma";
	text-transform: uppercase;
	font-size: 12px;
	text-align: center;
	line-height: 160%;
	font-weight: bold;
	color: #333333;
	text-decoration: none;
}
.menu_links:hover{
	color: #8e0009;
	text-decoration: none;
	background-image: url("../system_images/menu_hover.png");
}
.menu_first{
	display: inline-block;
	position: fixed;
	height: 21px;
	font-family: "tahoma";
	text-transform: uppercase;
	font-size: 12px;
	text-align: center;
	line-height: 160%;
	font-weight: bold;
	color: #333333;
	text-decoration: none;
}
.menu_first:hover{
	color: #8e0009;
	text-decoration: none;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
	background-image: url("../system_images/menu_hover.png");
}
/**End Menu Area**/

/*Footer Section*/
#footer{
	width:100%;
	height:364px;
	background-image:url(../system_images/bottom.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
	text-align:center;
	z-index: 10;
}
/*End Footer Section*/

/**Scene Selector**/
#scene_selector_area{
	position:absolute;
	top:470px;
	left:10px;
	width:auto;
	height:auto;
	z-index:997;
}
#scene_selector_area img{
	width:55px;
	height:26px;
	border:none;
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.icon {
	position: relative;
	overflow: hidden;
	width: 55px;
	height: 26px;
	display: inline-block;
	margin-right:10px;
}
.icon:after {
	content: "";
	position: absolute;
	top: -110%;
	left: -210%;
	width: 200%;
	height: 200%;
	opacity: 0;
	transform: rotate(30deg);
	background: rgba(255, 255, 255, 0.13);
	background: linear-gradient(
	to right, 
	rgba(255, 255, 255, 0.13) 0%,
	rgba(255, 255, 255, 0.13) 77%,
	rgba(255, 255, 255, 0.5) 92%,
	rgba(255, 255, 255, 0.0) 100%
	);
}
.icon:hover:after {
	opacity: 1;
	top: -30%;
	left: -30%;
	transition-property: left, top, opacity;
	transition-duration: 0.4s, 0.4s, 0.14s;
	transition-timing-function: ease;
}
.icon:active:after {
	opacity: 0;
}
/**End Scene Selector**/

/*Popup Holder*/
/*Main Popup Background*/
.popup_holder{
	display: block;
	position:fixed;
	width: 100vw;
    height: 100vh;
	background-image:url(../system_images/load_bg.png);
	overflow: hidden;
	z-index:999;
}
/*Main Div to Hold the Content*/
#popup_container{
	display: block;
	position: fixed;
	width: 840px;
	height: 438px;
	background-color: #000000;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	top: 50px;
	left: 50%;
	transform: translate(-50%);
	border-radius: 5px;
}
/*Frame Holding Div*/
#popup_frame{
	display: block;
	position: fixed;
	width: 840px;
	height: 438px;
	background-image: url("../system_images/frame.png");
	background-repeat: no-repeat;
	background-size: cover;
}
/*Popup Close Button*/
.popup_close{
	display: block;
	position: absolute;
	width: 17px;
	height: 17px;
	top: 11px;
	right: 11px;
	opacity: 1;
}
.popup_close:hover{
	display: block;
	position: absolute;
	width: 17px;
	height: 17px;
	top: 11px;
	right: 11px;
	opacity: 0.8;
	cursor: url("../system_images/hover.cur"), default;
}
#popup_line{
	position: absolute;
	top: 260px;
	right: 25px;
	width:560px;
	padding-left: 230px;
	height:auto;
	text-transform:uppercase;
	font-family:calibri,sans-serif;
	background-color:rgba(0,0,0,0.5);
	color: rgba(255,0,4,1);
	border-top: solid 1px rgba(255,255,255,0.5);
	border-bottom: solid 1px rgba(255,255,255,0.5);
	text-align:center;
	z-index: 2;
}
#popup_line .text{
	display: block;
	width: 500px;
	margin-left: 50px;
	margin-bottom: 10px;
	color: rgba(255,255,255,0.8);
	font-size:13px;
	line-height:150%;
}
.download_button:link{
    display:inline-block;
	position: relative;
	top: 366px;
	left: 205px;
    width:150px;
	height: 10px;
    padding:10px 0px 10px 20px;
    font-size:12px;
	text-align:center;
	background-color:black;
	background-repeat: no-repeat;
	background-position: 0px 3px;
	font-family:calibri,sans-serif;
    color:white;
    text-decoration:none;
    box-shadow: 0px 0px 1px white;
	border-radius: 5px;
	line-height: 100%;
	transition-duration: 0.5s;
	z-index: 11;
}
.download_button:visited{
    background-color:black;
    color:white;
    text-decoration:none;
}
.download_button:hover{
    background-color:white;
    color:black;
	text-decoration:none;
    box-shadow: 0px 0px 5px #888;
	border-radius: 5px;
}
.download_button:active{
    background-color:black;
    color:white;
    text-decoration:none;
}
/*Moving World Map on Download Tab*/
.world-container {
	position: absolute;
	top: 25px;
	left: 25px;
	width: 790px;
	height: 388px;
	overflow: hidden;
}
.world-track {
	display: flex;
	position: absolute;
	white-space: nowrap;
	will-change: transform;
}
.world-track img {
	height: 388px;
	flex-shrink: 0;
}
/*Shield HQ*/
/*Flight Deck Main Background*/
.flight_deck_bg{
	display: block;
	position: absolute;
	width: 790px;
	height: 388px;
	top: 25px;
	left: 25px;
	overflow: hidden;
	background-image: url("../system_images/flight_deck_bg.jpg");
}
/*Moving Clouds*/
.clouds-container {
	width: 790px;
	height: 388px;
	top: 25px;
	left: 25px;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
}
.clouds-content {
	display: flex;
	width: 200%;
	animation: marquee 25s linear infinite;
}
.clouds-content img {
	width: 50%; /* Adjust based on image size */
}

@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
/*Lightnings*/
.lightning-container {
	position: absolute;
	width:790px;
	height:388px;
	top: 25px;
	left: 25px;
	background-image:url(../system_images/flight_deck_lightning.png);
	background-size: cover;
}
.lightning-effect {
	animation: lightning normal 4s infinite ease-in-out;
}

@keyframes lightning {
	0% {opacity:0;}
	2% {opacity:0;}
    4% {opacity:1;}
	6% {opacity:0;}
    8% {opacity:0;}
	10% {opacity:0;}
    12% {opacity:0;}
	14% {opacity:0;}
	16% {opacity:0;}
	18% {opacity:0;}
	20% {opacity:1;}
	22% {opacity:0;}
	24% {opacity:1;}
	26% {opacity:0;}
	28% {opacity:0;}
	30% {opacity:0;}
	32% {opacity:0;}
	34% {opacity:0;}
	36% {opacity:0;}
	38% {opacity:0;}
	40% {opacity:0;}
	42% {opacity:0;}
	44% {opacity:1;}
	46% {opacity:0;}
	48% {opacity:1;}
	50% {opacity:0;}
	52% {opacity:0;}
	54% {opacity:0;}
	56% {opacity:0;}
	58% {opacity:0;}
	60% {opacity:1;}
	62% {opacity:0;}
	64% {opacity:1;}
	66% {opacity:1;}
	68% {opacity:1;}
	70% {opacity:0;}
	72% {opacity:0;}
	74% {opacity:0;}
	76% {opacity:0;}
	78% {opacity:0;}
	80% {opacity:0;}
	82% {opacity:1;}
	84% {opacity:0;}
	86% {opacity:0;}
	88% {opacity:0;}
	90% {opacity:0;}
	92% {opacity:0;}
	94% {opacity:1;}
	96% {opacity:0;}
	98% {opacity:1;}
	100% {opacity:0;}
}
/*Flight Deck*/
#deck-container{
	display: block;
	position: absolute;
	width: 970px;
	height: 388px;
	top: 25px;
	left: 25px;
	background-repeat: no-repeat;
}
/*Flight Deck Jets*/
.flight_1, .flight_2, .flight_3, .flight_4, .flight_5, .flight_6, .flight_7, .flight_8, .spec, .daily{
	display: block;
	position: absolute;
	width: 51px;
	height: 46px;
	background-repeat: no-repeat;
	overflow: hidden;
}
.flight_1{
	top: 230px;
	left: 442px;
	z-index: 8;
}
.flight_2{
	top: 215px;
	left: 415px;
	z-index: 7;
}
.flight_3{
	top: 200px;
	left: 390px;
	z-index: 6;
}
.flight_4{
	top: 185px;
	left: 362px;
	z-index: 5;
}
.flight_5{
	top: 170px;
	left: 335px;
	z-index: 4;
}
.flight_6{
	top: 155px;
	left: 310px;
	z-index: 3;
}
.flight_7{
	top: 138px;
	left: 284px;
	z-index: 2;
}
.flight_8{
	top: 122px;
	left: 258px;
	z-index: 1;
}
.spec{
	top: 120px;
	left: 455px;
	z-index: 9;
}
.daily{
	top: 160px;
	left: 540px;
	z-index: 9;
}
/*Tool Tip*/
.tooltip {
	width: 50px;
	font-size: 10px;
	color: #ffffff;
	font-family:calibri,sans-serif;
	text-transform: uppercase;
	overflow: visible;
}
.tooltip .tooltiptext {
	position: absolute;
	background-color: rgba(0,0,0,0.6);
	border: solid 1px rgba(255,255,255,0.6);
	color: #fff;
	text-align: center;
	width: 90px;
	border-radius: 3px;
	padding: 2px 10px;
	z-index: 1;
	bottom: 30px;
	left: -30px;
	opacity: 0;
	transition: opacity 1s;
}
.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: rgba(0,0,0,0.5) transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
	opacity: 1;
}
/*End Popup Holder*/

/*Hero Roster*/
.hero_preloader {
	position: absolute;
	top: 25px;
	left: 25px;
	width: 790px;
	height: 388px;
	background: rgba(0,0,0,1);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 998;
}
.hero_holder {
	position: relative;
	top: 25px;
	left: 25px;
	width: 790px;
	height: 388px;
	overflow: hidden;
}
.hero_holder_layer {
	display: block;
	position: absolute;
	padding: 100px;
	width:795px;
	height:auto; /*Height of Characters Popup*/
	z-index:1;
	overflow: hidden;
	transition: transform 5s ease-out;
	transform: translate(-105px, -105px); /* Set initial position before page renders */
}
#hero_container{
	display: inline-block;
	width: 154px;
	height: 106px;
	vertical-align: top;
	float: left;
	margin: 5px 0px 0px 5px;
}
#hero_holder{
	display: block;
	width: 150px;
	height: 80px;
	float: left;
	padding: 2px;
	background-color: rgba(255,255,255,0.5);
	background-image: url("../system_images/bg_1.jpg");
	background-repeat: no-repeat;
	background-size: 150px 80px;
	background-position: 2px 2px;
}
#hero_name{
	display: block;
	width: 150px;
	height: auto;
	float: left;
	padding: 2px;
	font-size: 11px;
	text-transform: uppercase;
	text-align: center;
	font-family:calibri,sans-serif;
	font-weight: bold;
	color: rgba(0,0,0,0.8);
	background-color: rgba(255,255,255,0.5);
	margin: 5px 0px 0px 0px;
}
.hero_holder_bg{
	display: block;
	width: 150px;
	height: 80px;
	background-repeat: no-repeat;
	background-size: 150px 80px;
	background-position: 2px 2px;
}
.video-container {
	width: 150px;
	height: 80px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: url("../system_images/hover.cur"), default;
	overflow: visible; /* Allow video to expand */
}
.video-container video {
	width: 150px;
	height: 80px;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1); /* Keep slight zoom */
	opacity: 0;
	transition: opacity 0.5s ease-in-out; /* Smooth fade effect */
	box-shadow: 1 1px 1px rgba(0, 0, 0, 0.3);
	z-index: 10;
}
.video-container:hover video {
	opacity: 1;
}
.hero_bg{
	width: 150px;
	height: 80px;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1); /* Keep slight zoom */
	opacity: 0;
	transition: opacity 0.5s ease-in-out; /* Smooth fade effect */
	z-index: 9;
}
.video-hero_bg:hover img {
	opacity: 1;
}
/*End Hero Roster*/

/*Hero Info*/
.info_preloader {
	position: absolute;
    top: 0px;
    left: 0px;
    width: 790px;
    height: 388px;
    background: rgba(0,0,0,1);
    display: flex; /* Keep it visible but invisible */
    align-items: center;
    justify-content: center;
    z-index: 998;
}
#info_holder {
	top: 25px;
	left: 25px;
	width: 790px;
	height: 388px;
	position: relative;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.1);
}
#info_holder_layer {
	width: 1100px;
	height: 750px;
	position: absolute;
	background-image: url("../system_images/info_bg.jpg");
	transition: transform 1s ease-out;
}
#flash_light {
	position: absolute;
	width: 2200px;
	height: 1500px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, rgba(0, 0, 0, 0.95) 40%);
	pointer-events: none;
	transform: translate(-50%, -50%);
	mix-blend-mode: multiply;
}
#alien_content{
	width: 1100px;
	height: 750px;
	position: absolute;
}
/*Picture of the hero*/
.info_picture{
	display: block;
	position: absolute;
	top: 69px;
	left: 88px;
	z-index: 1;
}
.info_home_icon{
	display: block;
	position: absolute;
	top: 130px;
	left: 855px;
	opacity: 1;
	z-index: 2;
}
.info_home_icon:hover{
	opacity: 0.8;
	background-color: rgba(255,255,255,0.2);
	cursor: url("../system_images/hover.cur"), default;
}
.info_bio{
	display: block;
	position: absolute;
	top: 200px;
	left: 600px;
	width: 325px;
	height: auto;
	line-height: 150%;
	font-size: 12px;
	font-family:calibri,sans-serif;
	text-align: justify;
	font-style: oblique;
	opacity: 0.8;
}
.info_bio_name{
	display: block;
	margin-bottom: 5px;
	color: darkred;
	font-weight: bold;
	font-style: normal;
	opacity: 0.8;
	text-transform: uppercase;
}
.picture_stack{
	display: block;
	position: absolute;
	top: 400px;
	left: 100px;
	width: 450px;
	height: 250px;
	transform: rotate(-5deg);
	z-index: 1;
}
.picture_stack img{
	position: absolute;
	width: 130px;
	height: auto;
	padding: 5px;
	background-color: rgba(255,255,255,1);
	box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.3);
	border-radius: 5px;
}
.info_reel{
	display: block;
	position: absolute;
	top: 550px;
	left: 95px;
	width: 450px;
	height: 100px;
	transform: rotate(-2deg);
	z-index: 2;
}
.info_hero_label{
	display: block;
	position: absolute;
	top: 250px;
	left: 540px;
	width: 34px;
	height: 116px;
	cursor: url("../system_images/hover.cur"), default;
	z-index: 2;
}
.info_stamp_seal{
	display: block;
	position: absolute;
	padding: 5px;
	top: 290px;
	left: 370px;
	width: 150px;
	height: auto;
	text-align: center;
	font-size: 18px;
	letter-spacing: 2px;
	font-weight: bold;
	text-shadow: 1px 1px 2px rgba(0,0,0,1);
	color: rgba(200,10,10,0.8);
	transform: rotate(-35deg);
	font-family: 'font_1', sans-serif;
	border: solid 3px rgba(200,10,10,0.8);
	border-radius: 5px;
	box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 1);
	z-index: 10;
}
.info_stamp{
	display: block;
	position: absolute;
	width: 35px;
	height: auto;
	padding: 3px;
	border-radius: 2px;
	background-color: rgba(255,255,255,0.8);
	box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.2);
	cursor: url("../system_images/hover.cur"), default;
}
.stamp_1{
	top: 370px;
	left: 120px;
	transform: rotate(-5deg);
	z-index: 6;
}
.stamp_2{
	top: 365px;
	left: 170px;
	transform: rotate(-5deg);
	z-index: 4;
}
.stamp_3{
	top: 360px;
	left: 220px;
	transform: rotate(-5deg);
	z-index: 5;
}
.stamp_4{
	top: 355px;
	left: 270px;
	transform: rotate(-5deg);
	z-index: 6;
}
.stamp_5{
	top: 350px;
	left: 320px;
	transform: rotate(-5deg);
	z-index: 5;
}
.stamp_6{
	top: 345px;
	left: 370px;
	transform: rotate(-5deg);
	z-index: 5;
}
/*Link to full bio site*/
.info_link{
	font-size: 12px;
	color: #000000;
	font-family:calibri,sans-serif;
	text-decoration: none;
	opacity: 0.8;
}
.info_link:hover{
	font-size: 12px;
	font-family:calibri,sans-serif;
	text-decoration: underline;
	opacity: 0.8;
}
.info_link:visited, .info_link:active{
	color: #000000;
}
#info_next{
	position: absolute;
	top: 202px;
	left: 834px;
	width: 21px;
	height: 38px;
	background-image: url("../system_images/next.png");
	background-position: center center;
	background-repeat: repeat;
	background-size: cover;
	cursor: url("../system_images/hover.cur"), default;
}
#info_back{
	position: absolute;
	top: 202px;
	left: -15px;
	width: 21px;
	height: 38px;
	background-image: url("../system_images/back.png");
	background-position: center center;
	background-repeat: repeat;
	background-size: cover;
	cursor: url("../system_images/hover.cur"), default;
}
/*Hero Model Viewer*/
#hero_model{
	position: absolute;
	top: 25px;
	left: 25px;
	width: 790px;
	height: 388px;
	background-color: rgba(0,0,0,0.5);
	background-image: url("../system_images/load_bg.png");
	z-index: 25;
}
.hero_icon_holder{
	position: absolute;
	bottom: -70px;
	width:790px;
	height:30px;
	text-align:center;
}
.hero_icons{
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 2px;
	margin-right: 10px;
	padding: 2px;
	background-color: rgba(255,255,255,1);
	cursor: url("../system_images/hover.cur"), default;
}
.hero_screen{
	display: block;
	position: absolute;
	width: 790px;
	height: 388px;
}
.hero_screen_splash{
	display: block;
	position: absolute;
	top: 310px;
	width: 780px;
	height: auto;
	padding: 5px 10px 5px 0px;
	font-size: 16px;
	letter-spacing: 2px;
	text-align: right;
	font-family: 'font_1', sans-serif;
	color: rgba(255,255,255,1);
	background: rgb(2,0,36);
	background: linear-gradient(90deg, rgba(2,0,36,0) 0%, rgba(9,9,121,0) 25%, rgba(0,0,0,1) 100%);
	z-index: -1;
}
.hero_screen_splash_sub{
	font-size: 11px;
	letter-spacing: 1px;
	font-family: sans-serif;
	text-transform: uppercase;
	margin-right: 1px;
	color: rgba(255,255,255,0.5);
}
.video_exit_icon{
	display: block;
	position: absolute;
	background-color: rgba(255,255,255,0.1);
	top: 5px;
	right: 5px;
	padding: 3px 10px;
	border-radius: 2px;
	font-family: sans-serif;
	font-size: 10px;
	font-weight: bold;
	opacity: 1;
	z-index: 2;
	transition: 1s;
}
.video_exit_icon:hover{
	transition: 0.5s;
	color: #ffffff;
	background-color: rgba(0,0,0,1);
	cursor: url("../system_images/hover.cur"), default;
}
/*End Hero Info*/


/*Game Info*/
.game_info{
	display: block;
	position: absolute;
	top: 50px;
	left: 50px;
	width: 350px;
	height: auto;
	color: rgba(255,255,255,0.6);
	background-color: rgba(0,0,0,0.4);
	border-radius: 2px;
	font-family:calibri,sans-serif;
	text-align: justify;
	padding: 10px;
	font-size: 13px;
	line-height: 150%;
	border: solid 1px rgba(255,255,255,0.1);
}
/*End Game Info*/

/*Social Media Icons*/
.social_info{
	display: block;
	position: absolute;
	top: 250px;
	left: 50px;
	width: 350px;
	height: 35px;
	color: rgba(255,255,255,0.6);
	background-color: rgba(0,0,0,0.4);
	border-radius: 2px;
	font-family:calibri,sans-serif;
	text-align: justify;
	padding: 10px;
	font-size: 13px;
	line-height: 150%;
	border: solid 1px rgba(255,255,255,0.1);
}
.social_icons{
	display: inline-block;
	width: 35px;
	height: auto;
	margin-right: 10px;
	opacity: 1;
	transition: 0.5s;
}
.social_icons:hover{
	opacity: 0.5;
	transition: 0s;
}
/*End Social Media Icons*/

/*Developer Tab*/
.developer{
	display: block;
	position: relative;
	top: 40px;
	left: 40px;
	width: 300px;
	height: auto;
	margin-bottom: 10px;
	color: rgba(0,0,0,1);
	background-color: rgba(255,255,255,1);
	border-radius: 2px;
	font-family:calibri,sans-serif;
	text-align: justify;
	padding: 10px;
	font-size: 13px;
	line-height: 150%;
	border: solid 1px rgba(255,255,255,0.1);
}
.dev_form{
	width: 280px;
	font-size: 12px;
	padding: 10px;
	border-radius: 5px;
	border: solid 1px rgba(0,0,0,0.2);
	margin: 5px 0px 5px 0px;
}
.dev_form_button{
	display: block;
	margin: 0 auto;
	text-decoration: none;
	color: rgba(0,0,0,0.8);
	font-weight: 600;
	border: solid 1px rgba(0,0,0,0.2);
	border-radius: 5px;
	padding: 10px 0px;
	text-align: center;
	background-color: #fff;
	text-transform: uppercase;
	margin-top: 10px;
	width: 200px;
}
.dev_form_button:hover{
	color: rgba(255,255,255,1);
	background-color: #000;
	cursor: url("../system_images/hover.cur"), default;
}
.er_text{
	color: red;
	font-size: 12px;
	padding: 5px 10px;
	text-align: center;
}
/*End Developer Tab*/

/*New Hero Notification*/
#new_hero{
	position: absolute;
	display: block;
	top: 420px;
	right: 10px;
	width: 250px;
	height: 60px;
	padding: 5px;
	font-family:calibri,sans-serif;
	color: rgba(255,255,255,1);
	font-size: 11px;
	border: solid 1px rgba(0,0,0,0.3);
	background-color: rgba(0,0,0,0.2);
	backdrop-filter: blur( 3px );
	-webkit-backdrop-filter: blur( 3px );
	border-radius: 5px;
	transition: 0.5s;
	z-index: 900;
}
#new_hero:hover{
	background-color: rgba(0,0,0,0.6);
}
#new_hero .close_button{
	display: block;
	position: absolute;
	width: 8px;
	height: 8px;
	top: 5px;
	right: 5px;
	padding: 5px;
	border-radius: 5px;
	background-color: rgba(255,255,255,0.2);
	cursor: url("../system_images/hover.cur"), default;
	z-index: 12;
}
#new_hero .close_button:hover{
	background-color: rgba(255,255,255,0.5);
}
.new_hero_video{
	display: block;
	position: absolute;
	width: 100px;
	height: 60px;
	background-color: rgba(0,0,0,0.2);
	border-radius: 5px;
	overflow: hidden;
	cursor: url("../system_images/hover.cur"), default;
}
.new_hero_text{
	display: block;
	position: absolute;
	width: 145px;
	height: 60px;
	left: 110px;
	overflow: hidden;
}
/*End New Hero Notification*/

/*Start Villain Tab*/
.villain_holder {
	position: relative;
	top: 25px;
	left: 25px;
	width: 790px;
	height: 388px;
	overflow: hidden;
}
.villain_container{
	display: inline-block;
	width: 185px;
	height: auto;
	margin: 5px 5px;
	float: left;
}

/*Villain front page styles*/
.page {
	height:388px;
	display:grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(4, 1fr);
	gap:0px;
	padding:5px;
	box-sizing:border-box;
}
.v_name {
	font-size:12px;
	color:#ccc;
	text-align:center;
	font-family: "tahoma";
}
.dots {
	display: block;
	position: absolute;
	top: 380px;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	height: auto;
	z-index: 999;
}
.dot {
	display:inline-block;
	width:10px;
	height:10px;
	margin:5px;
	background:#666;
	border-radius:50%;
	transition: all 0.3s ease;
	cursor: url("../system_images/hover.cur"), default;
}
.dot.active {
	width:10px;
	height:10px;
	background:#fff;
}
.villain_img{
	width: 180px;
	border: solid 2px rgba(255,255,255,0.4);
	border-radius: 5px;
	transition-duration: 2s;
	cursor: url("../system_images/hover.cur"), default;
}
.villain_img:hover{
	border: solid 2px rgba(255,255,255,1);
	transition-duration: 0.3s;
}
.villain_image_gray{
	width: 180px;
	border: solid 2px rgba(255,255,255,0.4);
	border-radius: 5px;
	opacity: 0.5;
	filter: grayscale(100%);
}
	.villain_image_gray:hover{
	filter: grayscale(100%);
}

/*Villain inside page styles*/
#villain_holder{
	position: absolute;
	width: 790px;
	height: 388px;
	background-image: url("../system_images/background_5.jpg");
	overflow: hidden;
}
.villain_img{
	border: solid 2px rgba(255,255,255,1);
	border-radius: 5px;
	transition-duration: 2s;
}
.villain_img:hover{
	border: solid 2px rgba(0,0,0,1);
	transition-duration: 0.3s;
}
.villain_img_frame{
	position: absolute;
	top: 20px;
	left: 440px;
	width: 326px;
	border: solid 2px rgba(255,255,255,1);
	border-radius: 5px;
}
.villain_bio{
	display: block;
	position: absolute;
	top: 150px;
	left: 440px;
	padding: 15px;
	width: 300px;
	height: auto;
	color: rgba(255,255,255,0.8);
	text-align: justify;
	font-family: sans-serif;
	font-size: 12px;
	line-height: 160%;
	background-color: rgba(0,0,0,0.5);
	border-radius: 5px;
	border: solid 1px rgba(255,255,255,0.4);
	z-index: 5;
}
.villain_bio strong{
	display: block;
	padding: 0px 0px 5px 0px;
	font-weight: 14px;
	color: #ffffff;
	text-transform: uppercase;
}
#v_video{
	position: absolute;
	top: 0;
	left: 0;
}

/*from scroll*/
.container {
	width: 300px;
	height: 388px;
	position: absolute;
	top: 0px;
	left: -300px;
	transition: all 0.5s ease;
	overflow: visible;
	font-family: "tahoma";
	z-index: 20;
}
.fade-box {
	width: 790px;
	height: 388px;
	background: rgba(0,0,0,0.9);
	position: fixed;
	top: 25px;
	left: 25px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 10;
}
.container:hover{
	left: 50px;
}
.container:hover .fade-box {
	opacity: 1;
	visibility: visible;
}
.list {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.item {
	width: 300px;
	height: auto;
	margin: 6px 0;
	background: rgba(0,0,0,1);
	color: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	opacity: 0;
	position: absolute;
	left: 50%;
	transform-origin: center;
	transition: all 0.4s ease;
}
.item img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
	cursor: url("../system_images/hover.cur"), default;
}
.item span {
	display: block;
	padding: 5px;
	font-size: 11px;
	text-align: center;
	text-transform: capitalize;
	color: #fff;
}

.visible { opacity: 1; }
.pos1 { transform: translate(-50%, -150px) scale(0.65); opacity: 0.8; z-index: 60; }
.pos2 { transform: translate(-50%, -75px) scale(0.75); opacity: 1; z-index: 80; }
.pos3 { transform: translate(-50%, 0px) scale(1); opacity: 1; background: rgba(0,0,0,1); border: solid 2px rgba(255,255,255,1); font-size: 16px; z-index: 100; }
.pos4 { transform: translate(-50%, 75px) scale(0.75); opacity: 1; z-index: 80;}
.pos5 { transform: translate(-50%, 150px) scale(0.65); opacity: 0.8; z-index: 60; }

.villain_links:link{
	color: rgba(255,255,255,0.8);
	text-decoration: none;
}
.villain_links:visited{
	color: rgba(255,255,255,0.8);
	text-decoration: none;
}
.villain_links:hover{
	color: rgba(255,255,255,1);
	text-decoration: underline;
}
.villain_links:active{
	color: rgba(255,255,255,0.8);
	text-decoration: none;
}
.villain_close{
	display: block;
	position: absolute;
	width: auto;
	height: auto;
	right: 20px;
	bottom: 20px;
	padding: 10px 25px;
	border-radius: 5px;
	font-family: "tahoma";
	font-size: 11px;
	color: rgba(255,255,255,0.8);
	background-color: rgba(0,0,0,0.8);
	transition: all 0.4s ease;
	cursor: url("../system_images/hover.cur"), default;
}
.villain_close:hover{
	color: rgba(255,255,255,1);
	background-color: rgba(0,0,0,1);
}
/*end from scroll*/

#villain_infos {
	opacity: 1;
	transition: opacity 1s ease;
}
#villain_infos.hidden {
	opacity: 0;
}

/*End Villain Tab

/*Torn Hero Tab*/
.torn_image{
	display: block;
	position: absolute;
	top: 470px;
	left: 730px;
	width: 210px;
	height: 110px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	z-index: 20;
}
.torn_image_bg{
	display: block;
	position: absolute;
	width: 210px;
	height: 110px;
	cursor: url("../system_images/hover.cur"), default;
	overflow: hidden;
	background-image: url("../system_images/torn.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	z-index: 10;
}
#torn_video_holder{
	display: block;
	position: fixed;
	width: 790px;
	height: 388px;
	top: 25px;
	left: 25px;
	overflow: hidden;
	z-index: 998;
}
#torn_video{
	width: 790px;
}
/*End Torn Hero Tab*/