@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700&display=swap');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

body{
	margin:0;
	padding:0;
	overflow-x: hidden;
}

*{
	box-sizing: border-box;
	margin:0;
	padding:0;
	font-family: 'Oswald', sans-serif;
}

/*Header*/

header{
	position:fixed;
	left: 0px;
	top:0px;
	width: 100%;
	z-index: 10;
	background-color: #000000;
	padding:15px 15px;
}



header .logo a{
	font-size: 30px;
	text-decoration: none;
	color:#ffffff;
	font-weight: 700;
}
header .logo a span{
	color:#c11325;
}
header .nav{
	position: fixed;
	background-color: #c11325;
	width: 280px;
	top:0;
	right:0;
	height: 100%;
	z-index: 99;
	padding:100px 0px 15px; 
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: transform .5s ease;
    transition: transform .5s ease;
}
header .nav.open{
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
header .nav ul{
	list-style: none;
	margin:0;
	padding:0px;
}
header .nav ul li{
display: block;
}
header .nav ul li a{
	text-decoration: none;
	font-size: 30px;
	font-weight: 400;
    color:#ffffff;
    display: block;
    position: relative;
    padding:10px 30px;
}
header .nav ul li a.active::before{
	content: '';
	position: absolute;
	left:0px;
	top:0px;
	height: 100%;
	width:100%;
	background-color:#000000;
	opacity:.2;
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
	z-index: -1;
}
header .nav ul li a::before{
	content: '';
	position: absolute;
	left:0px;
	top:0px;
	height: 100%;
	width:0px;
	background-color:#000000;
	opacity:.2;
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
	z-index: -1;
}
header .nav ul li a:hover::before{
	width: 100%;
}
header .ham-burger{
	display: inline-block;
	position: relative;
	z-index: 100;
}
header .ham-burger span{
	height: 3px;
	margin-bottom:8px;
	display: block;
	background-color:#ffffff;
	width:30px;
	-webkit-transition: transform .5s ease;
	transition: transform .5s ease;
}
header .ham-burger span:nth-child(1){
	transform-origin: left top;
}
header .ham-burger span:nth-child(2){
	transform-origin: left bottom;
}

header .ham-burger.active span:nth-child(1){
	-webkit-transform: rotate(45deg) translateY(-6px);
	transform: rotate(45deg) translateY(-6px);
}
header .ham-burger.active span:nth-child(2){
	-webkit-transform: rotate(-45deg) translateY(6px);
	transform: rotate(-45deg) translateY(6px)
}



/*Home section*/
.home{
	height: 500px;
	background-image: url('Image/home.jpg');
	background-size: cover;
	padding:15px;
	-webkit-display: flex;
	display: flex;
	position: relative;
	background-size: 100% 100%;
}
.homegt{
	height: 500px;
	background-image: url('../Image/gioithieu.jpg');
	background-size: cover;
	padding:15px;
	-webkit-display: flex;
	display: flex;
	position: relative;
	background-size: 100% 100%;
}

.homegt .container{
	-webkit-display: flex;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
  }
  
  .homegt h1{
	  color:RED;
	  font-size: 50px;
	  font-weight: 700;
	  text-transform: uppercase;
	  margin:0;
	  margin-left: 50px;
	  text-align: left;
  }
  
  .homegt h1 span{
	  color:#f1bc3c;
	  margin-left: 0px;
	  text-align: left;
  }
  .homedv{
	height: 500px;
	background-image: url('../Image/dichvu.jpg');
	background-size: cover;
	padding:15px;
	-webkit-display: flex;
	display: flex;
	position: relative;
	background-size: 100% 100%;
}

.homedv .container{
	-webkit-display: flex;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
  }
  
  .homedv h1{
	  color:RED;
	  font-size: 50px;
	  font-weight: 700;
	  text-transform: uppercase;
	  margin:0;
	  margin-left: 50px;
	  text-align: left;
  }
  
  .homedv h1 span{
	  color:#f1bc3c;
	  margin-left: 0px;
	  text-align: left;
  }
.home h1{
	color:#ffffff;
	font-size: 60px;
	font-weight: 700;
	text-transform: uppercase;
	margin:0;
}

.home h1 span{
	color:#c11325;;

}
.homekm{
	height: 500px;
	background-image: url('../Image/khuyenmai.jpg');
	background-size: cover;
	padding:15px;
	-webkit-display: flex;
	display: flex;
	position: relative;
	background-size: 100% 100%;
}
.homehv{
	height: 500px;
	background-image: url('../Image/hv.jpg');
	background-size: cover;
	padding:15px;
	-webkit-display: flex;
	display: flex;
	position: relative;
	background-size: 100% 100%;
}
.homelt{
	height: 500px;
	background-image: url('../Image/lich.jpg');
	background-size: cover;
	padding:15px;
	-webkit-display: flex;
	display: flex;
	position: relative;
	background-size: 100% 100%;
}
@-webkit-keyframes goDown{
	0%{transform: translateY(0);opacity:.5}
	100%{transform: translateY(10px);}
}
@keyframes goDown{
	0%{transform: translateY(0);opacity:.5}
	100%{transform: translateY(10px);}
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

/*About section*/

.about{
	padding:80px 0px;
	background-color:#ffffff;
}

.about .content{ 
 -webkit-display: flex;
 display: flex;
}
.about .content .box{
	flex:0 0 33.33%;
	max-width: 33.33%;
	padding:15px;
}
.about .content .box .inner{
	background-color:#222222;
}
.about .content .box:nth-child(2) .inner{
	background-color: #c11325;
}
.about .content .box .inner .img img{
	width: 100%;
}
.about .content .box .inner .text{
	padding:30px;
}

.about .content .box .inner .text h4{
  font-size: 20px;
  margin:0;
  padding: 0px 0px 15px;
  font-weight: 500;
  color:#ffffff;
 text-transform: capitalize;
  text-align: center;
}
.about .content .box .inner .text p{
	font-size: 15px;
	line-height:20px;
	color:#ffffff;
	text-align: center;
	margin:0;
	font-family: 'Open Sans', sans-serif;
}



/*Contact Section*/

.contacthh{
	padding:50px 0px;
	background-color: #222222;
}

.contacthh .content{
	-webkit-display: flex;
	display: flex;
	background-color: #222222;
}

.contacthh .content .box{
	flex:0 0 50%;
	max-width: 50%;
	padding: 15px;
	background-color: #222222;
}


.contacthh .content .text h2{
	font-size: 25px;
    font-weight: 500;
    color:#f1bc3c;
    padding: 0px 0px 20px;
}
.contacthh .content .text p{
    font-size: 12px;
    line-height: 20px;
    color: #ffffff;
    margin: 0;
    padding: 0px 0px 30px;
    font-family: 'Open-sans', sans-serif;
}

.contacthh .content .text .info ul{
	list-style: none;
	padding:0;
	margin:0;
}

.contacthh .content .text .info li{
	display: block;
	margin-bottom: 15px;
	color:#ffffff;
	font-size: 12px;
	letter-spacing: 1px;
	position: relative;
	padding-left: 40px;
	font-family: 'Open-Sans',sans-serif;
	text-align: left;
}
.contacthh .content .text .info li span{
	display: inline-block;
	position: absolute;
	left:0px;
	top:0px;
	font-size: 15px;
	color:#c11325;
}
.contacthh.content .text .social {
	padding-top: 30px;
}
.contacthh .content .text .social a{
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	background-color: #c11325;
    text-decoration: none;	
    display: inline-block;
    margin-right: 10px;
    transition: all .5s ease;
    border:1px solid transparent;
} 

.contacthh .content .text .social a:hover{
	background-color: transparent;
    border-color: #ffffff;
}

.contacthh .content .text .social a span{
	color:#ffffff;
	font-size: 20px;
}

.contacthh .content .text .copy{
	border-top:1px solid #333333;
	margin-top: 30px;
	padding-top: 20px;
	color:#c5c5c5;
	font-size: 15px;
}

.float-contact {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 99999;
	}
	.chat-zalo {
	background: #8eb22b;
	border-radius: 20px;
	padding: 0 18px;
	color: white;
	display: block;
	margin-bottom: 6px;
	}
	.chat-face {
	background: #125c9e;
	border-radius: 20px;
	padding: 0 18px;
	color: white;
	display: block;
	margin-bottom: 6px;
	}
	.float-contact .hotline {
	background: #d11a59!important;
	border-radius: 20px;
	padding: 0 18px;
	color: white;
	display: block;
	margin-bottom: 6px;
	}
	.chat-zalo a, .chat-face a, .hotline a {
	font-size: 15px;
	color: white;
	font-weight: 400;
	text-transform: none;
	line-height: 0;
	}
	@media (max-width: 549px){
	.float-contact{
	display:none
	}}
	.btnhh{
		padding: 13px 50px;
		background: linear-gradient(to right, #fc00ff, #00dbde);
		color: #ffffff;
		text-decoration: none;
		display: inline-block;
		border: none;
		cursor: pointer;
		-webkit-transition: all .5s ease;
		transition: all .5s ease;
		font-weight: bold;
		border-radius: 10px;
	}
	