
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800);
@import url(http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic);
@import url(http://fonts.googleapis.com/css?family=Raleway:400,300,700);

body {

	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
    line-height: 21px;
	font-weight: 300;
	color: #666;
}
.nopad{padding:0px;}
strong, b {
	font-weight: 600;
}

img {
	max-width: 100%;
	height: auto;
}

ul, ol {
	list-style: none;
}

ul {
    padding: 0;
    margin: 0;
}

a {
    transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
}

a:hover {
    color: #444;
}

a, a:hover {
    text-decoration: none;
}

i {
	font-size: 1.1em;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	margin: 0;
	color: #444;
}

h1 {
    font-size: 24px;
	line-height: 30px;
}

h2 {
    font-size: 22px;
	line-height: 28px;
}

h3 {
    font-size: 18px;
	line-height: 24px;
}

h4 {
    font-size: 16px;
	line-height: 22px;
}

h5 {
    font-size: 14px;
	line-height: 20px;
}

h6 {
    font-size: 12px;
	line-height: 18px;

}

p {
    color: #666;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    line-height: 22px;
    margin: 0;
}

p strong {
	font-weight: 600;
}

.accent-color-bg {
	color: #fff;
}

.fittext {
	font-size: 38px;
	font-weight: 300;
	line-height: 1.6em;
    margin-bottom: 35px;
	color: rgba(0,0,0, 0.8);
}

.fittext strong {
	font-weight: 700;
}

.page-content p {
	margin-bottom: 15px;
}

.wite-text {
	color: #fff;
}
.social-list li a{
	padding:10px 15px;
	}
.social-list li a:hover{
	background:#F00;
	}
.uppercase {
	text-transform: uppercase;
}

.image-text {
	margin-right: 10px;
}

a.main-button, input[type="submit"] {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

a.main-button:hover, input[type="submit"]:hover {
	background: #444;
	color: #fff;
}

a.main-button i {
	font-size: 1.2em;
}

input[type="submit"] {
	border: none;
}

.tooltip .tooltip-inner {
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
}

#content {
	padding: 0px 0;
}


.light-section {
	color: #fff;
}

.light-section .testimonials {
	color: #666;
}

.light-section .testimonials .testimonial-content p {
	color: #c4c4c4;
}

#container {
    background-color: #fff;
}

.boxed-page {
  position: relative;
  width: 1220px;
  margin: 0 auto;
  background-color: #fff;
  -webkit-box-shadow:0 0 10px rgba(0,0,0,0.3);
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.3);
  -o-box-shadow: 0 0 10px rgba(0,0,0,0.3);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.boxed-page header {
  width: 1220px;
}

#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999999999;
}

.spinner {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 50%;
	left: 50%;
	margin-left: -40px;
	margin-top: -40px;
	-webkit-animation: rotatee 2.0s infinite linear;
	animation: rotatee 2.0s infinite linear;
}

.dot1, .dot2 {
	width: 60%;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: 0;
	border-radius: 100%;
	-webkit-animation: bouncee 2.0s infinite ease-in-out;
	animation: bouncee 2.0s infinite ease-in-out;
}

.dot2 {
	top: auto;
	bottom: 0px;
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes rotatee { 100% { -webkit-transform: rotate(360deg) }}
@keyframes rotatee {
	100% {
		transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes bouncee {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes bouncee {
	0%, 100% {
		transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
      }
}






/*------------------------------------------*/
/*	     02 - Header & Navigation
/*------------------------------------------*/

header {
	
	top: 0;
    width: 100%;
	z-index: 9999999;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.fixed-header {
	opacity: 0.95;
	box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
  	-webkit-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
}

.top-bar {
	background-color: #0072ab;
	border-bottom: 1px solid #f2f2f2;
	color: white;
	line-height: 66px;
}

.top-bar.color-bar {
	border-bottom: 0;
}

.top-bar.color-bar a {
	color: rgba(255,255,255,.6);
}

.top-bar.color-bar a:hover {
	color: rgba(255,255,255,1) !important;
}

.top-bar.color-bar ul.social-list li a i {
	border-left: 1px solid rgba(255,255,255,.1);
}

.top-bar.color-bar ul.social-list li:last-child a i {
	border-right: 1px solid rgba(255,255,255,.1);
}

.top-bar.color-bar .contact-details li a:before {
	color: rgba(255,255,255,.2);
}

.top-bar.dark-bar {
	background-color: #444;
	border-bottom: 0;
}

.top-bar.dark-bar a {
	color: rgba(255,255,255,.4);
}

.top-bar.dark-bar a:hover {
	color: rgba(255,255,255,1) !important;
}

.top-bar.dark-bar ul.social-list li a i {
	border-left: 1px solid rgba(255,255,255,.08);
}

.top-bar.dark-bar ul.social-list li:last-child a i {
	border-right: 1px solid rgba(255,255,255,.08);
}

.top-bar.dark-bar .contact-details li a:before {
	color: rgba(255,255,255,.2);
}

.top-bar a {
	color: white;
}
.logo{margin-top:5px;margin-bottom:5px;}
.top-bar .contact-details li {
	display: inline-block;
}
.logo_ten{
font-size: 12px;
color: #2d108a;
font-weight: bold;
line-height: 30px;
white-space:nowrap;
margin-top: 15px;
}
.logo_slogan{
	text-align:center;
	font-size: 12px;
	font-style:italic;
	color: #red;
	font-weight: bold;
	line-height: 30px;
	white-space:nowrap;
}
.top-bar .contact-details li a:before {
	position: relative;
	content: "|";
	font-size: 13px;
	margin: 0 3px;
	top: -1px;
	color: #ddd;
}

.top-bar .contact-details li a:before {
	color: #666;
}

.top-bar .contact-details li:first-child a:before {
	display: none;
}

.top-bar .contact-details li a {
	font-size: 14px;
	display: block;
	line-height: 32px;
}



.navbar {
	margin-bottom: 0;
	background: #fff;
	border: none;
	border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    min-height: 95px;
}

.navbar-brand {
	position: relative;
	margin: 0!important;
	transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.logotit{margin-top:10px;
margin-bottom: 10px;
}
.navbar-default .navbar-nav {
	margin-right: 10px!important;
	position: relative;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.navbar-default .navbar-nav > li {
    margin-left: 6px;
}

.navbar-default .navbar-nav > li:first-child {
    margin-left: 0;
}

.navbar-default .navbar-nav > li > a {
	color: #000;
	display: block;
	font-family: Tahoma, Geneva, sans-serif;
    font-size: 14px;
	text-transform: uppercase;
	font-weight: 300;
    padding: 35px 12px 28px 12px;
	overflow: hidden;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    font-weight: 400;
	transition:0.2s;
}

.navbar-default .navbar-nav > li > a.active, .navbar-default .navbar-nav > li:hover > a {
	border-bottom: 2px solid;
	height: 95px;
	color:red;
}

.navbar-default .navbar-nav > li > a i {
	margin: 0 -2px 0 -5px;
}

.navbar-default .navbar-nav > li > a:after {
	position: absolute;
	bottom: 0;
	content: '';
	left: 50%;
	display: block;
	height: 5px;
	width: 5px;
	opacity: 0;
	margin: 0 0 -3px -2px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
}

.navbar-default .navbar-nav > li > a.active:after {
	opacity: 1;
}

.navbar-default .navbar-nav .dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: 200px;
	background-color: #fff;
    visibility: hidden;
    z-index: 2;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	-o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


.navbar-default .navbar-nav > li.drop:hover .dropdown {
    visibility: visible;
	opacity: 1;
}

.dropdown li, .sup-dropdown li {
	position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown li:first-child, .sup-dropdown li:first-child {
    border-top: none;
}

.dropdown h2 li a, .sup-dropdown h2 li a {
    display: block;
    color: #666;
	font-family: Tahoma, Geneva, sans-serif;
    font-size: 13px;
	text-transform: uppercase;
    padding: 11px 16px;
	font-weight:normal;
    text-decoration: none;
    transition: padding 0.2s ease-in-out;
    -moz-transition: padding 0.2s ease-in-out;
    -webkit-transition: padding 0.2s ease-in-out;
    -o-transition: padding 0.2s ease-in-out;
}


.dropdown > h2 li:hover > a, .sup-dropdown h2 li:hover > a {
	padding-left: 18px;
	color:#F00;
}

.dropdown li a i {
	margin: 0 0 0 -4px;
}

.navbar-default .navbar-nav .sup-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    width: 180px;
	background-color: #fff;
    margin-top: 10px;
    transition: margin-top 0.2s ease-in-out;
    -moz-transition: margin-top 0.2s ease-in-out;
    -webkit-transition: margin-top 0.2s ease-in-out;
    -o-transition: margin-top 0.2s ease-in-out;
    visibility: hidden;
    z-index: 3;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	-o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-default .navbar-nav li.drop .dropdown li:hover .sup-dropdown {
    visibility: visible;
    margin-top: 0;
}

.search-side {
	position: relative;
	float: right;
	top: 19px;
	right: -15px;
	transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.show-search {
	position: relative;
	display: block;
	float: right;
}

.show-search i {
	font-size: 1.2em !important;
	display: block;
	color: #666;
	width: 36px;
	height: 36px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
	line-height: 36px;
	text-align: center;
	background-color: #f2f2f2;
	transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.show-search:hover i {
	color: #666;
}

.navbar .search-form {
	position: absolute;
	right: 0;
	z-index: 20;
	float: right;
	display: none;
	top: 40px;
}

.navbar .search-form:before {
	background-color: #ccc;
	top: -2px;
	content: '';
	display: block;
	height: 4px;
	width: 4px;
	z-index: 20;
	right: 15px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
}

.navbar .search-form form input {
	border: 2px solid #ccc;
	border-radius: 3px;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
	padding: 5px 14px;
	z-index: 22;
	color: #9d9d9d;
	box-shadow: none;
	-o-box-shadow: none;
	-moz-box-shadow: none;
  	-webkit-box-shadow: none;
	outline: none;
	box-shadow: none;
}

.navbar .search-form form {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 20;
}





/*================================================== 
     Slideshow
 ================================================== */

/*-- Main slide --*/

#main-slide .item img{
	width: 100%;
}

#main-slide .item .slider-content {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}
#main-slide .item.active .slider-content {
  z-index: 0;
  opacity: 1;
  -webkit-transition: opacity 100ms;
  -moz-transition: opacity 100ms;
  -o-transition: opacity 100ms;
  transition: opacity 100ms;
}

#main-slide .slider-content{
	top: 50%;
	margin-top: -70px;
	left: 0;
	padding: 0;
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	color: #fff;
}

#main-slide .carousel-indicators {
	bottom: 30px;
}

.carousel-indicators li{
	width: 14px !important;
	height: 14px !important;
	border: 2px solid #fff !important;
	margin: 1px !important;
}


#main-slide .carousel-control.left,
#main-slide .carousel-control.right {
	opacity: 1;
	filter: alpha(opacity=100);
	background-image: none;
	background-repeat: no-repeat;
	text-shadow: none;
}

#main-slide .carousel-control.left span {
	padding: 15px;
}

#main-slide .carousel-control.right span {
	padding: 15px;
}

#main-slide .carousel-control .fa-angle-left, 
#main-slide .carousel-control .fa-angle-right{
	position: absolute;
	top: 40%;
	z-index: 5;
	display: inline-block;
}

#main-slide .carousel-control .fa-angle-left{
	left: 0;
}

#main-slide .carousel-control .fa-angle-right{
	right: 0;
}

#main-slide .carousel-control i{
	background: transparent;
	color: #fff;
	line-height: 36px;
	font-size: 32px;
	padding: 15px 20px;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}


#main-slide .slider-content h2{
	font-size: 76px;
	font-weight: 100;
	text-transform: uppercase;
    color: #555;
}

#main-slide .slider-content h2.white, #main-slide .slider-content h3.white {
    color: #fff;
}

#main-slide .slider-content h3{
	font-size: 36px;
	font-weight: 300;
	margin-top: 60px;
	text-transform: uppercase;
    text-align: center;
    color: #555;
}

.slider.btn{
	padding: 10px 40px;
	margin-top: 40px;
	font-size: 20px;
	border-radius: 2px;
	text-transform: uppercase;
	line-height: 28px;
	border: 0;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
		box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
  -o-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
  -moz-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
  -webkit-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
}

.slider.btn.btn-default{
	margin-left: 4px;
	background: #ECECEC
}

.slider.btn.btn-default:hover{
	background: #000;
	color: #fff;
}

.slider-content-left {
	position: relative;
	margin: 0 0 0 40px;
}

.slider-content-right{
	position: relative;
}









/*------------------------------------------*/
/*			 11 - Footer Styles
/*------------------------------------------*/

footer {
	background:url('../images/footer.jpg') center center;
    padding-top: 25px;
	color:#fff;
	
}
.footer{padding-top:20px;padding-bottom:20px;color:#fff;}
.footer h4{color:#fff;}
.footer p{color:#fff;}

.copyright-section {
    padding: 15px 0;
	font-size: 11px;
	letter-spacing: 0.5px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.copyright-section p {
	font-size: 11px;
	text-transform: uppercase;
}

ul.footer-nav {
    float: right;
}

ul.footer-nav li {
    display: inline-block;
    float: left;
    margin-left: 15px;
}

ul.footer-nav li:first-child {
    margin-left: 0;
}

ul.footer-nav li a {
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

ul.footer-nav li a:hover {
	color: #fff;
}

.back-to-top {
    display: none;
    position: fixed;
    bottom: 18px;
    right: 15px;
}

.back-to-top i {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    color: #fff;
    border-radius: 2px;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    text-align: center;
    background-color: #444;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}



.navbar-collapse {
	max-height: 340px;
	min-height: 90px;
}
.navbar-right{min-height: 90px}

/* .row.fixed-padding{
	margin-left: -8px; 
	margin-right: -8px;
	& > [class^="col-"],
	& > [class*=" col-"] {
    padding-right: 8px;
    padding-left: 8px;
  }
} */


/* phan trang */
.text_center{
	text-align:center;
	}
.phantrang{
	text-align: center;
	display:inline-block;
	margin:auto;
	height:30px;
	border-radius:5px;
	line-height:30px;
	}
.phantrang a{
	display:block;
	border: 1px solid #ccc;
	width: 30px;
	float: left;
	}
.phantrang span{
	display:block;
	background:#eee;
	height:31px;
	border: 1px solid #ccc;
	width: 30px;
	float: left;
	}
	
	input[type=checkbox] {
	position: absolute;
	top: -9999px;
	left: -9999px;
}



/* big screens */
nav[role="off-canvas"] {
	position: relative;
	width: 50em;
	margin: 0 auto;
	transition-duration: .3s, .5s;
	transition-timing-function: ease-in-out;
	transition-property: left, opacity, box-shadow;
}
nav[role="off-canvas"] a {
	color: #fff;
	text-decoration: none;
	font: 14px 'AVO', sans-serif;
	transition: color .3s ease-in-out;
	display: table-cell;
	vertical-align: middle;
}
nav[role="off-canvas"] ul {
	padding: 0;
	margin: 0 auto;
	width: 100%;
}
nav[role="off-canvas"] ul > li {
	float: left;
	padding: .55em .55em;
	width: 8em;
	height: 8em;
	margin: .5em;
	opacity: .8;
	text-transform: uppercase;
	display: table;
	background: rgba(0, 114, 171,1);
	cursor: pointer;
	text-align: center;
	transition-duration: .3s;
	transition-timing-function: ease-in-out;
	transition-property: box-shadow, color, opacity, padding-left;
	cursor: pointer;
}
nav[role="off-canvas"] ul > li:hover {
	color: #fff;
	opacity: 1;
	box-shadow: 0 0 0 0.5em rgba(255, 255, 255, 0.95);
}
nav[role="off-canvas"] ul > li:hover > a {
	color: #fff;
}
.content {
    overflow: hidden;
    transition: margin .3s ease-in-out;
}


.menu-mobile {
    position: absolute;
    right: 0px;
    top: 68px;
    display: none;
    width: 2em;
    height: 2.25em;
    padding: .35em;
    font-size: 1.1em;
    color: #0072ab;
    transition: color .3s ease-in-out;
    cursor: pointer;
    user-select: none;
    margin: 0;
    background: rgba(0, 0, 0, 0.4);
}
.off-canvas {
    display: none;
}

/****owl****/
.owl-controls .owl-dots{
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
  width: 100%;
}
.owl-controls .owl-dots .owl-dot{
  width: 14px;
  height: 14px;
  background: #adadad;
  display: inline-block;
  margin: 0 6px;
  border-radius: 90%;
}
.owl-controls .owl-dots .owl-dot.active{
  background: #e20e0e;
}

.owl-carousel .owl-item img {
	display:inline-block;
	width:initial;
	-webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
	border-radius: 50%;
}
.owl-nav .owl-prev {
    position: absolute;
    left: -54px;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.owl-nav .owl-next {
    position: absolute;
    right: -54px;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.block-testimonial{ text-align:center;}

.service{padding-top:30px ;padding-bottom:30px;}
.name-service{font-size:14px;margin-top:10px;text-transform:uppercase;font-weight:bold;}

.title-header{font-size:24px;text-align:center;text-transform:uppercase;font-weight:600;padding:20px 0;}
.sub-title-header{font-size:14px;color:#acacac;text-align:center;margin-bottom:30px;padding-bottom:20px;}

.title-span{border-bottom:1px solid #00adef;padding-bottom:20px;margin-bottom:30px;}
.header-div{padding-top:30px;}
.img-pd-home .img-responsive{display:inline-block;}
.img-pd-home{text-align:center;}
.content-product-home .name-pd-home {padding:10px 0px;text-align:center;height:60px;overflow:hidden;}
.content-product-home  a{font-size:14px;font-weight:600;text-transform:uppercase;color:#808284;font-family:"Open Sans";}
.content-product-home  a:hover{color:#0072ab;}

.recent-projects h4.title {
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid #eee;
	text-align:center;
}

.recent-projects h4.title span {
	padding-bottom: 8px;
	border-bottom: 1px solid #00adef;
}

.recent-projects h1.title {
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid #eee;
}

.recent-projects h1.title span {
	padding-bottom: 8px;
	border-bottom: 1px solid;
}

.projects-carousel {
	width: 1150px !important;
}

.projects-carousel .item {
	margin-right: 15px;
	margin-bottom: 0;
}
.itemnew{width: 48.5%; float: left; border-radius: 3px;  margin-left: 10px; padding: 3px;border: 1px solid #EEE; margin-bottom: 10px; }
.imgnews{width: 35%; float: left; margin-right: 10px}
portfolio-filter {
	margin-bottom: 30px;
}

.portfolio-filter li {
	display: inline-block;
	margin-right: 2px;
}

.portfolio-filter li a {
	color: #666;
	display: inline-block;
	padding: 5px 14px;
	border: 1px solid #eee;
	border-radius: 2px;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
	transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.portfolio-filter li a:hover {
	border-color: #ddd;
}

.portfolio-filter li a.selected, .portfolio-filter li a.selected:hover {
	color: #fff;
}

.portfolio-item {
	margin-bottom: 30px;transition:0.5s; position: relative;
}
.portfolio-item:hover img{opacity: 0.5; transition:0.5s;}
.portfolio-item:hover .chitiet{display: block;}
.portfolio-item:hover .portfolio-details h4{color: #031356 !important;}
.portfolio-details h4{font-size: 14px !important; font-weight: bold; height:40px; line-height:20px; overflow:hidden;}

.chitiet{display: none;position: absolute; bottom:80px;z-index: 99999; right: 13px; width: 100px; line-height: 30px; background:url(../images/arr.png)  80px no-repeat #031357; color: white; text-align: center; }
.portfolio-4 {
	margin-left: 5px;
}

.portfolio-4 .portfolio-item {
	width: 24.99%!important;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 22px;
}

.portfolio-item .portfolio-border {
	padding: 3px;
	border: 1px solid #eee;
	border-radius: 3px;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.portfolio-item:hover .portfolio-border {
	box-shadow: 0 1px 3px #f8f8f8;
	-o-box-shadow: 0 1px 3px #f8f8f8;
	-moz-box-shadow: 0 1px 3px #f8f8f8;
  	-webkit-box-shadow: 0 1px 3px #f8f8f8;
}

.portfolio-item .portfolio-thumb {
	position: relative;
	overflow: hidden;
}

.portfolio-item .portfolio-thumb .thumb-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0);
	transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.portfolio-item:hover .portfolio-thumb .thumb-overlay {
	background: rgba(255,255,255,0.5);
}

.portfolio-item .portfolio-thumb .thumb-overlay i {
	color: rgba(255,255,255,0);
	position: absolute;
	top: 42%;
	left: 50%;
	display: block;
	margin-left: -27px;
	margin-top: -19px;
	font-size: 3em;
	transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.portfolio-item:hover .portfolio-thumb .thumb-overlay i {
	top: 50%;
	color: #444;
}

.portfolio-item .portfolio-details {
	position: relative;
	padding: 9px 12px 6px 12px;
}

.portfolio-item .portfolio-details .like-link {
	position: absolute;
	right: 8px;
	top: 50%;
	margin-top: -9px;
}

.portfolio-item .portfolio-details .like-link i, .portfolio-item .portfolio-details .like-link span {
	color: #666;
	transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.portfolio-item .portfolio-details .like-link:hover i, .portfolio-item .portfolio-details .like-link:hover span {
	color: #F54B5C;
}
.portfolio-item .portfolio-details .like-link i {
	padding-right: 5px;
}

.portfolio-item .portfolio-details h4 {
	height:40px;
	line-height:20px;
	overflow:hidden;
	transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.portfolio-item .portfolio-details a span {
	color: #666;
}

.portfolio-item .portfolio-details span:after {
	content: ", ";
	margin-right: 2px;
}

.portfolio-item .portfolio-details span:last-child:after {
	content: "";
}
 .vmore{float: right; color:#0023b5; font-style: italic; font-size: 13px; margin-right: 10px; font-family: "Arial"}
  span.cmt{line-height: 20px; overflow:hidden; display: block; margin-top: 10px; color: #272727;height: 70px; }
  .promtion{padding:20px 0px 40px 0px}
/***breacrum****/
.breamcum-content{
	color: #fff;
	font-size: 11px;
	padding: 15px 0px;
	text-transform: uppercase;
	border-bottom: 1px solid #eae4e4;
}
.breamcum a{
	color:#fff;
	font-size:11px;
	padding:10px;
	font-family:Open Sans,Helvetica,sans-serif;
	text-decoration:none;
	text-transform: lowercase;
}
.breamcum a:hover{
	color:#039ddd;

}

.page-main{
	background: url(../images/title.jpg) center center;
}

.title-page {
	font-size: 18px;
	text-align: center;
	color: #00abd4;
	font-weight: bold;
	text-transform: uppercase;
	padding: 20px 0px;
}

.box-content{color:#000;}
.content-detail {
	padding: 10px 0px;
}
.product-name{font-size:20px;padding-bottom: 20px;}
.sam-product .box-heading{
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid #eee;
	font-weight: bold;
	padding-top: 20px;
}
.sam-product .box-heading span {
	padding-bottom: 8px;
	border-bottom: 1px solid #00adef;
}

.sam-product .name-pd-home {
	padding: 10px 0px;
	text-align: center;
	height: 60px;
	overflow: hidden;
}
.page{padding-top: 20px;}

/**** nav*****/
.menu-container a{
	text-decoration:none;

}
.subnav2 {

	display: none;
}
.navbar_content {
	border: 1px solid #ddd;
	padding: 0 10px;
}
.navbar_content > ul{



}
.navbar_content ul > li{

	border-bottom: 1px solid #EFEFEF;

	list-style:none;

}
.navbar_content ul > li:last-child{

}
.navbar_content li a{
	display:block;
	font-size:12px;
	color:#636363;

	text-transform:capitalize;
	padding: 10px;
	padding-left:0px;

}
.navbar_content li a:hover{

	color:#0072ab;


}
.subnav{
	/*display:none;*/
	padding-left:10px;
}
.navbar_content .subnav li{
	border:none;
	line-height: normal;

}
.navbar_content .subnav li a:first-child{
	padding-top:0px;

}
.navbar_content ul > li li:last-child{
	border-bottom:none;
}
.navbar_content .subnav li a{
	background:url(../images/arrow1.jpg) 10px 1px no-repeat;
	text-transform:capitalize;
	padding-left:20px;
}
.subnav li a:hover{
	color:#0072ab;
}
.fa-caret-right {
	color: #f00;
}
.menu-container #pull {
	display: block;
	background: #0072ab;
	width: 100%;
	position: relative;
	color: #fff;
	padding-left: 10px;
	text-align: center;
	line-height: 32px;
	font-weight: bold;
}
.promotion-nav{padding: 10px 0;}
.menu-container{margin-bottom: 10px;}
.title-page-pd{
	font-size: 18px;
	text-align: center;
	color: #00abd4;
	font-weight: bold;
	text-transform: uppercase;
	padding: 0px 0px 20px 0;
}
/** phan trang**/
#phantrang{text-align:center; clear:both;margin-top:20px;    margin-bottom: 20px;}
#phantrang span{
	font-weight: bold;
	display: inline-block;
	padding: 0px 2px;
	background:#97999a;
	color: #FFFFFF;
	width: 23px;
	height: 21px;
	line-height: 21px;
	margin:0px 3px;
}
#phantrang a{
	padding: 0px 2px;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	background: #0072ab;
	width: 23px;
	height: 21px;
	line-height: 21px;
	margin:0px 3px;
}
.contact-content{padding: 20px;}
.google-maps {
	position: relative;
	padding-bottom: 75%;
	height: 0;
	overflow: hidden;
}
.google-maps iframe,.google-maps embed  {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
.contructor{padding: 20px 0px;}
.contructor h4.title {
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid #eee;
	text-align: center;
}

.contructor h4.title span {
	padding-bottom: 8px;
	border-bottom: 1px solid #00adef;
}