@charset "utf-8";
/* CSS Document */

body{
	background: #000;
}
*
{
	font-family:Tahoma, Geneva, sans-serif;
}
.container
{
	width:95%;
	margin:0 auto;
}
a
{
	text-decoration:none;
}
.homecss
{
	float:left;
	width:94%;
	position: fixed;
	right: 50px;
	bottom: 8%;
}
.homeleft
{
	color:#ff6b07;
	width: 30%;
	line-height: 6;
	float: left;
	font-size: 13px;
}
.homeright
{
	float:right;
	width: 40%;
}
.chanhome
{
	color:#FFF;
	float: right;
	font-family:Arial, Helvetica, sans-serif;
}
.en_vi
{
	float:right;
	margin:0px;
	padding-bottom: 10px;
}
.homeright p
{
	display:-webkit-inline-box;
	line-height:1px;
	font-size:19px;
	font-weight:600;
	color:#ff6f02;
	color: #ff6f02;
	font-family: Tahoma;
	font-weight: normal;
}
#viet p
{
	color:#ff6f02;
	font-family: Tahoma;
	font-weight: normal;
}
.homeright ul li
{
	float:left;
	list-style:none;	
}
.homeright ul li a img
{
	padding:0px 10px;
}
#enl
{
	margin-top:2px;
}
#enl1
{
	float:left;
}
.homelogo{
	text-align:center;
	padding-bottom: 10%;
}
html, body {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.view {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-perspective: 400;
  perspective: 400;
  /* margin-left: -611px; */
  /* margin-top: -197px; */
  width: 261px;
  height: 183px;
  margin-left: 205px;
}

.plane {
  width: 120px;
  height: 120px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.plane.main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotateX(60deg) rotateZ(-30deg);
          transform: rotateX(60deg) rotateZ(-30deg);
  -webkit-animation: rotate 20s infinite linear;
          animation: rotate 20s infinite linear;
}
.plane.main .circle {
  width: 120px;
  height: 120px;
  position: absolute;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  border-radius: 100%;
  box-sizing: border-box;
  box-shadow: 0 0 60px #ed1414, inset 0 0 60px #ed1414;
}
.plane.main .circle::before, .plane.main .circle::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10%;
  height: 10%;
  border-radius: 100%;
  background: crimson;
  box-sizing: border-box;
  box-shadow: 0 0 60px 2px crimson;
}
.plane.main .circle::before {
  -webkit-transform: translateZ(-90px);
          transform: translateZ(-90px);
}
.plane.main .circle::after {
  -webkit-transform: translateZ(90px);
          transform: translateZ(90px);
}
.plane.main .circle:nth-child(1) {
  -webkit-transform: rotateZ(72deg) rotateX(63.435deg);
          transform: rotateZ(72deg) rotateX(63.435deg);
}
.plane.main .circle:nth-child(2) {
  -webkit-transform: rotateZ(144deg) rotateX(63.435deg);
          transform: rotateZ(144deg) rotateX(63.435deg);
}
.plane.main .circle:nth-child(3) {
  -webkit-transform: rotateZ(216deg) rotateX(63.435deg);
          transform: rotateZ(216deg) rotateX(63.435deg);
}
.plane.main .circle:nth-child(4) {
  -webkit-transform: rotateZ(288deg) rotateX(63.435deg);
          transform: rotateZ(288deg) rotateX(63.435deg);
}
.plane.main .circle:nth-child(5) {
  -webkit-transform: rotateZ(360deg) rotateX(63.435deg);
          transform: rotateZ(360deg) rotateX(63.435deg);
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
            transform: rotateX(0) rotateY(0) rotateZ(0);
  }
  100% {
    -webkit-transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
            transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
            transform: rotateX(0) rotateY(0) rotateZ(0);
  }
  100% {
    -webkit-transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
            transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}
/* normal button style */
.myButton {
    /* background-color:#0099cc; */
    text-align: center;
    color: #0099cc;
    position: relative;
    /* line-height: 170px; */
    /* height: 117px; */
}
/* button hover style if required */
.myButton:hover {
    
}
/* generated element for shine effect.
 * normal state is semi-transparent
 * white but with zero width. Set no
 * transition here for no mouse-leave
 * animations. Otherwise the effect
 * will play in reverse when your mouse
 * leaves the element
 */
.myButton:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    height: 100%;
    background-color: rgba(255,255,255,0.4);
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
    
}
/* on hover we animate the width to
 * 100% and opacity to 0 so the element
 * grows and fades out 
 */
.myButton:hover:after {
    width: 120%;
    background-color: rgba(255,255,255,0);
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -ms-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
}

@media only screen and (max-width: 768px) {
	.homelogo img{
		width: 90%;
	}
	.homecss{
		bottom:0px;
		top: 20%;
		width: 100%;
		right: 0px;
	}
	.homeright{
		width: 100%;
	}
	.container{
		width: 100%;
	}
	.en_vi{
		text-align: center;
		float: left;
	}
	.chanhome{
		padding-left: 5px;
	}
	.view{
		    margin-left: -298px;
		    margin-top: -509px;
	}
	
}

