@charset "utf-8";
/*======================================

 [ -Main Stylesheet-
  Theme: Firenze - intro
  Version: 1.0
  Last change: 27/05/2016 ]
*/
 
/*-------------Import fonts ---------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*-------------General Style---------------------------------------*/
html{
	overflow-x:hidden !important;
	overflow-y:scroll !important;
	height:100%;
}
body{
	margin: 0;
	padding: 0;
	font-family:'Saira', sans-serif;
	font-weight: 400;
	font-size: 12px;
	color: #000;
	background:#000;
	height:100%;
	text-align:center;

}
@-o-viewport {width: device-width;}
@-ms-viewport {width: device-width;}
@viewport {width: device-width;}
/*--------------Typography--------------------------------------*/
h2 {
	font-size: 3.2em;
	font-weight: 300;
}
h3 {
	font-size: 1em;
}
/* ---------Page preload--------------------------------------*/
.loader-wrap {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	background: #000;
}
.loading-spinner {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 260px;
	height: 1px;
	z-index: 20;
	margin: 0 0 0 -130px;
}
.loading-spinner:before{
	content: '';
	position:absolute;
	left:0px;
	top:0;
	height:1px;
	width:100%;
	background:rgba(255,255,255, .2);
}
.movingBallG{
	background:#fff;
	position:absolute;
	top:0;
	left:0;
	width:50px;
	height:1px;
 	animation: bounce_movingBallG 1.3s ease-in-out infinite;
}
@keyframes bounce_movingBallG{
	0%{
		left:10px;
	}
	50%{
		left:200px;
	}
	100%{
		left:10px;
	}
}
 
/* ---------Content Styles--------------------------------------*/
#main{
	height:100%;
	width:100%;
	position: absolute;
	top:0;
	left:0;
	z-index:2;
	opacity:0;
	color: #000;
}
.body-bg_wrap {
	position:fixed;
	top:90px;
	left:90px;
	bottom: 90px;
	right: 90px;
	z-index:-1;
	overflow: hidden;
	background:#f4f4f4;
	border-radius: 30px;
}
.body-bg_wrap:before , .body-bg_wrap:after {
	position: absolute;
	content: '';
    width: 60px;
    height: 360px;
    top: 50%;
    left: 0;
    border-radius: 0 30px 30px 0;
    z-index: 5;
    margin-top: -180px;
	background: #000;
}
.dec-line {
	position:fixed;
	top:0;
	left:0;
	bottom:0;
	right: 0;
	z-index: -2;
}
.dec-line:before, .dec-line:after , .dec-line span {
    content: '';
    position: absolute;
    bottom: 0;
    top: 0;
    width: 1px;
    background:rgba(255,255,255,.3);
}
.dec-line:before {
	left: 180px;
}
.dec-line:after {
	right: 180px;
}
.dec-line span {
	left: 50%;
}
.body-bg_wrap:after {
    left: auto;
    right: 0;
    border-radius: 30px 0 0 30px;
}
.body-bg {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right: 0;
	opacity:0.1;
	background-image:url(../images/bg.jpg);
	background-size: cover;
	background-position: center  ;
	background-repeat:repeat;
	background-origin: content-box;
	z-index: 2;
}
.logo-holder {
	position: absolute;
	left: 0;
	right: 0;
	top:50%;
	transform: translateY(-50%);
}
.logo-holder img {
	width: auto;
	height: 70px;
}
.logo-inner {
	float:left;
	width:100%;
	padding-bottom:130px;
}
.logo-inner h3 {
	font-size: 3.0em;
    text-transform: uppercase;
    float: left;
    margin-top: 40px;
    text-align: center;
    width: 100%;
    color: #000;
    font-weight: 100;
}
.logo-inner h3 strong {
	font-weight:bold;
}
.logo-inner h4 {
	float:left;
	width:100%;
	margin:20px 0;
	font-size: 1.5em
} 
.box {
	float:left;
	width:100%;
	position:relative;
}
.box ul {
	margin: 50px auto 0;
	max-width: 900px;
}
.box ul li {
	float: left;
	width: 33.33333%;
	overflow: hidden;
}
.box ul li a {
	float: left;
	width: 100%;
	color:#000;
	font-size:1.2em;
	letter-spacing:4px;
	text-transform:uppercase;
	text-align:left;
	font-weight:600;
	height: 30px;
	line-height: 30px;
	text-align: center;
}
.buy_btn {
	position: absolute;
	left: 50%;
	bottom: 50px;
	width: 250px;
	height: 80px;
	line-height: 80px;
	background: #fff;
	color:#000;
	z-index: 20;
	margin-left: -125px;
	font-size: 1.2em; 
	font-weight: 600;
	text-transform: uppercase;
	box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}
.cs-canvas {
    position: absolute;
    right: 50%;
    width: 340px;
    height: 340px;
    text-align: center;
    bottom: 90px;
    margin: 0 -170px 0 0;
} 
.cs-canvas:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border:1px solid rgba(255,255,255,.4);
	border-left-color: transparent;
	border-right-color: transparent;
	border-radius: 50%;
}
.canvas_anim:before {
    animation: move 4s linear infinite;	
}
.cs-canvas canvas {
    animation: spin3 5s linear infinite;
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
} 
@keyframes spin3{
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes move {
  20%, 100% {
    transform: rotateZ(360deg);
  }
}
@media only screen and  (max-width: 1364px) {
 .body-bg_wrap {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	border-radius: 0;
}
.body-bg_wrap:before , .body-bg_wrap:after {
    display:none;
}
.buy_btn {
    bottom: 20px;
    background: #000;
    color: #fff;
    font-size: 1.0em;
}	
.logo-holder img {
    height: 50px;
}
} 
@media only screen and  (max-width: 1064px) {
 
.logo-inner h3 {
	font-size: 2.0em;
}	
.box ul li {
	width:100%;
	margin-bottom: 10px;
}	
.box ul li a {
	font-size:1.2em;
}	
 		
} 