/*
	========================================
	LUCKY ONE PAGE BUSINESS THEME
	========================================

	@author			: @avriqq
	@version		: v1.0
	@date-create	: 01/09/2014
	@last-update	: 02/09/2014
	@file-name		: style

*/

/*
	========================================
	TABLE OF CONTENT
	========================================

	[1. GLOBAL STYLE]
	[2. BUTTON]
	[3. TYPHOGRAPHY]
	[4. PAGINATION]
	[5. TAGS]
	[6. TABLE]
	[7. PROGRESS BAR]
	[8. ALERT]
	[9. NAVBAR]
	[10. HEADER]
	[11. SERVICE]
	[12. ABOUT]
	[13. PORTFOLIO]
	[14. PROMO]
	[15. COMPONENT]
	[16. CONTACT]
	[17. SOCIAL]
	[18. FOOTER]
	[19. COPYRIGHT]

*/


/*
	==================
	[1. GLOBAL STYLE]
	==================
*/
body{
	margin: 0;
	padding:0;
	font-family: 'Roboto', sans-serif;
	font-weight:400;
	font-size: 15px;
	line-height: 26px;
	color: #6b6e80;
    background: #f8f8f8;
    overflow-x: hidden;
}

::-moz-selection {
	color: #fff;
	text-shadow: none;
	background: #005894;
}

::-webkit-selection {
	color: #fff;
	text-shadow: none;
	background: #005894;
}

::selection {
	color: #fff;
	text-shadow: none;
	background: #005894;
}

a{
	color: #005894;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		 -o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
}

a:hover{
	color: #282828;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		 -o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
}


/*
	==================
	[2. BUTTON]
	==================
*/
.btn{
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
		-ms-border-radius: 2px;
		 -o-border-radius: 2px;
			border-radius: 2px;
}

.btn-xl {
  padding: 20px 26px;
  font-size: 16px;
  line-height: 30px;
  border-radius: 2px;
}

.btn-lucky,
.btn-lucky-primary,
.btn-lucky-secondary{
	font-weight: 400;
	text-transform: uppercase;
}

.btn-lucky.btn-lg,
.btn-lucky-primary.btn-lg,
.btn-lucky-secondary.btn-lg{
	font-size: 13px;
	line-height: 26px;
}

.btn-lucky.btn-md,
.btn-lucky-primary.btn-md,
.btn-lucky-secondary.btn-md{
	font-size: 12px;
	line-height: 24px;
}

.btn-lucky.btn-sm,
.btn-lucky-primary.btn-sm,
.btn-lucky-secondary.btn-sm{
	font-size: 11px;
	line-height: 19px;
}

.btn-lucky.btn-xs,
.btn-lucky-primary.btn-xs,
.btn-lucky-secondary.btn-xs{
	padding: 3px 7px;
	font-size: 10px;
	line-height: 16px;
}

.btn.btn-lucky{
	background-color: #005894;
	border-color: #005894;
	color: #fff;
}

.btn.btn-lucky:hover,
.btn.btn-lucky:focus,
.btn.btn-lucky:active,
.btn.btn-lucky.active{
	background-color: #282828;
	border-color: #282828;
	color: #fff;
}

.btn.btn-lucky-primary{
	background-color: #28282d;
	border-color: #28282d;
	color: #fff;
}

.btn.btn-lucky-primary:hover,
.btn.btn-lucky-primary:focus,
.btn.btn-lucky-primary:active,
.btn.btn-lucky-primary.active{
	background-color: #005894;
	border-color: #005894;
	color: #fff;
}

.btn.btn-lucky-secondary{
	background-color: #28282d;
	border-color: #28282d;
	color: #fff;
}

.btn.btn-lucky-secondary:hover,
.btn.btn-lucky-secondary:focus,
.btn.btn-lucky-secondary:active,
.btn.btn-lucky-secondary.active{
	background-color: #fff;
	border-color: #fff;
	color: #28282d;
}


/*
	==================
	[3. TYPHOGRAPHY]
	==================
*/
strong{
	font-weight: 700;
}

.font-kaushan{
	font-family: 'Kaushan Script', cursive;
}

.text-red{
	color: #005894;
}

.text-black{
	color: #282828;
}

.text-xbold{
	font-weight: 700;
}

.text-bold{
	font-weight: 600;
}

.text-light{
	font-weight: 400;
}

.text-xlight{
	font-weight: 300;
}

.padd30-top-btm{
	display: block;
	padding: 30px 0;
}

.marg30-top-btm{
	display: block;
	margin: 30px 0;
}

.marg20-btm{
	margin-bottom: 20px;
}

.marg30-btm{
	margin-bottom: 30px;
}

.page-title{
	display: block;
	padding: 20px 0;
	margin-bottom: 60px;
}

.page-title h2{
	position: relative;
	font-size: 40px;
	line-height: 44px;
	font-weight: 300;
	text-align: center;
	color: #28282d;
}

.page-title h2 small{
	display: block;
	text-align: center;
	font-size: 22px;
	line-height: 26px;
	margin-top: 5px;
}

.page-title h2::after{
	content: '';
	position: absolute;
	left: 50%;
	bottom: -20px;
	margin-left: -25px;
	width: 65px;
	height: 2px;
	background-color: #005894;
}

.heading-title{
	display: block;
	margin-bottom: 20px;
}

.heading-title h3,
.heading-title h2,
.heading-title h1,
.heading-title h4,
.heading-title h5,
.heading-title h6{
	color: #282828;
}


/*
	==================
	[4. PAGINATION]
	==================
*/
.pagination > li > a,
.pagination > li > span {
	color: #fff;
	background-color: #282828;
	border-color: #282828;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
	color: #fff;
	background-color: #005894;
	border-color: #005894;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
	background-color: #005894;
	border-color: #005894;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}


/*
	==================
	[5. TAGS]
	==================
*/
.tags{
	margin-left: 0;
	padding-left: 0;
}

.tags > li{
	display: inline-block;
}

.tags > li > a{
	position: relative;
	display: block;
	background-color: #282828;
	padding: 2px 12px 2px 10px;
	font-size: 11px;
	margin-right: 20px;
	color: #fff;
	-webkit-border-radius: 2px 0 0 2px;
	   -moz-border-radius: 2px 0 0 2px;
		-ms-border-radius: 2px 0 0 2px;
		 -o-border-radius: 2px 0 0 2px;
			border-radius: 2px 0 0 2px;
	margin-bottom: 10px;
}

.tags > li > a::before{
	content: '';
	position: absolute;
	z-index: 3;
	right: -3px;
	top: 12px;
	width: 5px;
	height: 5px;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
		-ms-border-radius: 5px;
		 -o-border-radius: 5px;
			border-radius: 5px;
	background-color: #fff;
}

.tags > li > a::after{
	content: '';
	position: absolute;
	z-index: 2;
	right: -15px;
	top: 0;
	border-top: 15px solid transparent;
	border-right: 0 solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #282828;
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		 -o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
}

.tags > li > a:hover{
	background-color: #005894;
}

.tags > li > a:hover::after{
	content: '';
	border-left-color: #005894;
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		 -o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
}


/*
	==================
	[6. TABLE]
	==================
*/
table {
	width: 100%;
	border-radius: 0;
	border: 0;
	border-collapse: collapse;
}

th {
	padding: 15px 20px !important;
	border-radius: 0 !important;
	border: 1px solid #282828 !important;
	border-right: 1px solid #282828 !important;
	font-weight: 600 !important;
	color: #fff;
	background: #282828;
}

.table-bordered thead:first-child tr:first-child>th:last-child,
.table-bordered tbody:first-child tr:first-child>td:last-child,
.table-bordered tbody:first-child tr:first-child>th:last-child{
	border-right: 1px solid #282828 !important;
}

td {
	padding: 15px 20px !important;
	color: #6b6e80;
	background: #fff;
	border-radius: 0 !important;
	border: 1px solid #ddd !important;
}

.table-red th{
	border: 1px solid #005894 !important;
	border-right: 1px solid #ddd !important;
	background: #005894;
}

.table-red.table-bordered thead:first-child tr:first-child>th:last-child,
.table-red.table-bordered tbody:first-child tr:first-child>td:last-child,
.table-red.table-bordered tbody:first-child tr:first-child>th:last-child{
	border-right: 1px solid #005894 !important;
}


/*
	==================
	[7. PROGRESS BAR]
	==================
*/
.progress{
	height: 32px;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
		-ms-border-radius: 2px;
		 -o-border-radius: 2px;
			border-radius: 2px;
}

.progress-bar-text{
	display: block;
	text-align: left;
	padding: 6px 15px;
}


/*
	==================
	[8. ALERT]
	==================
*/
.alert{
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
		-ms-border-radius: 2px;
		 -o-border-radius: 2px;
			border-radius: 2px;
	padding: 20px;
}

.alert-danger {
	color: #93544c;
	background: #ff92b0;
	border-color: #ff92a1;
}

.alert-info {
	border-color: #d9ede8;
}

.alert-warning{
	background-color: #faebcc;
	border-color: #faebbb;
}

.alert-success {
	color: #598157;
	background: #99dea4;
	border-color: #99de95;
}


/*
	==================
	[9. NAVBAR]
	==================
*/
.navbar-default .navbar-brand{
	font-family: 'Kaushan Script', cursive;
	font-size: 42px;
}
.navbar-brand{
	padding:0px !important;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus{
	color: #005894;
}

.navbar-default.navbar-scroll{
	padding: 15px 0;
	background-color: #fff;
	border-color: #fff;
}

.navbar-default.navbar-scroll .navbar-brand{
	font-size: 28px;
	color: #005894;
}

.navbar-default.navbar-scroll .navbar-brand:hover{
	color: #282828;
}

.navbar-default .navbar-nav > li > a{
	color: #fff;
	font-weight: 700;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover{
	position: relative;
	background-color: transparent;
	color: #fff;
}

.navbar-default .navbar-nav > li > a:hover::after,
.navbar-default .navbar-nav > li > a:focus::after,
.navbar-default .navbar-nav > .active > a::after,
.navbar-default .navbar-nav > .active > a:hover::after{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -17px;
	width: 35px;
	height: 2px;
	background-color: #005894;
}

.navbar-default.navbar-scroll .navbar-nav > li > a{
	color: #6b6e80;
}

.navbar-default.navbar-scroll .navbar-nav > li > a:hover,
.navbar-default.navbar-scroll .navbar-nav > li > a:focus,
.navbar-default.navbar-scroll .navbar-nav > .active > a,
.navbar-default.navbar-scroll .navbar-nav > .active > a:hover{
	position: relative;
	background-color: transparent;
	color: #005894;
}

.navbar-default .navbar-nav > li.dropdown.open > a::after,
.navbar-default .navbar-nav > li.dropdown.open > a:hover::after,
.navbar-default .navbar-nav > li.dropdown.open > a:focus::after{
	content: '';
	display: none;
}

/* dropdown menu */
.navbar-default .navbar-nav li.dropdown.open > a,
.navbar-default .navbar-nav li.dropdown.open > a:hover{
	color: #fff;
	background-color: #282828;
}

.dropdown-menu {
	background-color: #282828;
	border: none;
	padding-top: 0;
	padding-bottom: 0;
	-webkit-border-radius: 1px;
	   -moz-border-radius: 1px;
		 -o-border-radius: 1px;
			border-radius: 1px;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
		 -o-box-shadow: none;
			box-shadow: none;
}

.dropdown-menu > li > a{
	position: relative;
	font-size: 13px;
	color: #7a828f;
	padding-top: 12px;
	padding-bottom: 12px;
}

.dropdown-menu .divider{
	background-color: #7a828f;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus{
	color: #fff;
	background-color: #005894;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus{
	color: #fff;
	background-color: #282828;
}

.dropdown-menu > .active > a::after,
.dropdown-menu > .active > a:hover::after,
.dropdown-menu > .active > a:focus::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 5px;
	height: 100%;
	background-color: #005894;
}

/* dropdown open scroll */
.navbar-default.navbar-scroll .navbar-nav li.dropdown.open > a,
.navbar-default.navbar-scroll .navbar-nav li.dropdown.open > a:hover{
	color: #fff;
	background-color: #005894;
}


/*
	==================
	[10. HEADER]
	==================
*/
#header{
	position: relative;
	width: 100%;
	min-height: 670px;
	height: auto;
}

/*#header::after{
	content: '';
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.65);
}*/

#header.carousel-fade .carousel-inner > .item {
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition-property: opacity;
	   -moz-transition-property: opacity;
	    -ms-transition-property: opacity;
		 -o-transition-property: opacity;
			transition-property: opacity;
}

#header.carousel-fade .carousel-inner .active {
	opacity: 1;
	filter: alpha(opacity=100);
}

#header.carousel-fade .carousel-inner .active.left,
#header.carousel-fade .carousel-inner .active.right {
	left: 0;
	opacity: 0;
	filter: alpha(opacity=0);
	z-index: 1;
}

#header.carousel-fade .carousel-inner .next.left,
#header.carousel-fade .carousel-inner .prev.right {
	opacity: 1;
	filter: alpha(opacity=100);
}

#header .carousel-inner > .item{
	width: 100%;
	min-height: 670px;
	height: auto;
	padding-top: 140px;
	padding-bottom: 60px;
	-webkit-background-size: cover !important;
	   -moz-background-size: cover !important;
		-ms-background-size: cover !important;
		 -o-background-size: cover !important;
			background-size: cover !important;
	background-position: top center;
	background-repeat: no-repeat;
	overflow: hidden;
}

#header .carousel-inner > .item .slider-caption{
	position: relative;
	z-index: 2;
	padding: 60px 30px 0;
	text-align: center;
	color: #fff;
}

#header .carousel-inner > .item .slider-caption h2{
	font-size: 65px;
	line-height: 98px;
	font-weight: 300;
}

#header .carousel-inner > .item .slider-caption p{
	font-size: 20px;
	line-height: 28px;
	padding-left: 26%;
	padding-right: 26%;
}

#header .carousel-control .fa-angle-right,
#header .carousel-control .fa-angle-left{
	position: absolute;
	top: 50%;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	margin-left: -15px;
	font-size: 30px;
}

#header .carousel-control{
	z-index: 10;
	text-shadow: none;
	background-image: none;
}


/*
	==================
	[11. SERVICE]
	==================
*/
#service{
	width: 100%;
	padding: 120px 0 100px;
	background-color: #ececec;
}

.service-content{
	position: relative;
	padding-left: 80px;
	margin-bottom: 30px;
}

.service-content-alt{
	position: relative;
	margin-bottom: 30px;
	text-align: center;
}

.service-content h3{
	font-weight:400;
	margin-bottom: 20px;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}
.service-content-alt p{
	font-weight:300;
}
.service-content .service-icon{
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	background-color: transparent;
	-webkit-box-shadow: 0 0 0 2px #bbb;
	   -moz-box-shadow: 0 0 0 2px #bbb;
		-ms-box-shadow: 0 0 0 2px #bbb;
		 -o-box-shadow: 0 0 0 2px #bbb;
			box-shadow: 0 0 0 2px #bbb;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

.service-content-alt .service-icon{
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	margin-left: auto;
	margin-right: auto;
	-webkit-box-shadow: 0 0 0 2px #bbb;
	   -moz-box-shadow: 0 0 0 2px #bbb;
		-ms-box-shadow: 0 0 0 2px #bbb;
		 -o-box-shadow: 0 0 0 2px #bbb;
			box-shadow: 0 0 0 2px #bbb;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

.service-content .service-icon .glyphicon,
.service-content .service-icon .fa,
.service-content-alt .service-icon .glyphicon,
.service-content-alt .service-icon .fa{
	position: absolute;
	left: 0;
	top: 16px;
	width: 60px;
	height: 60px;
	vertical-align: middle;
	text-align: center;
	font-size: 32px;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

.service-content:hover > .service-icon .glyphicon,
.service-content:hover > .service-icon .fa,
.service-content-alt:hover > .service-icon .glyphicon,
.service-content-alt:hover > .service-icon .fa{
	color: #005894;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

.service-content:hover > .service-icon,
.service-content-alt:hover > .service-icon{      
  -webkit-transform: rotateY(360deg);
     -moz-transform: rotateY(360deg);
      -ms-transform: rotateY(360deg); 
       -o-transform: rotateY(360deg);
	-webkit-box-shadow: 0 0 0 2px #282828;
	   -moz-box-shadow: 0 0 0 2px #282828;
		-ms-box-shadow: 0 0 0 2px #282828;
		 -o-box-shadow: 0 0 0 2px #282828;
			box-shadow: 0 0 0 2px #282828;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

.service-content:hover > h3,
.service-content-alt:hover > h3{
	color: #282828;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


/*
	==================
	[12. ABOUT]
	==================
*/
#about{
	width: 100%;
	padding: 120px 0 100px;
	background-color: #fff;
}

.team-container{
	width: auto;
	margin-bottom: 20px;
	overflow: hidden;
}

.team-container img{
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
		-ms-border-radius: 4px;
		 -o-border-radius: 4px;
			border-radius: 4px;
}

.team-desc{
	text-align: center;
}

.team-desc h4{
	font-weight: 700;
	margin-bottom: 20px;
}

.team-desc h4 small{
	display: block;
	margin-top: 5px;
	font-size: 13px;
	line-height: 15px;
	color: #999;
}


/*
	==================
	[13. PORTFOLIO]
	==================
*/
#portfolio{
	width: 100%;
	padding: 120px 0 100px;
	background-color: #ececec;
}

.portfolio-container{
	width: 100%;
	padding: 0;
	margin: 0;
}

.portfolio-item{
	position: relative;
	display: block;
	float: left;
	width: 33.333%;
	background: #333946;
	overflow: hidden;
}

.portfolio-item > .item-link{
	position: relative;
	display: block;
}

.portfolio-item:hover > .item-link::after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(40,40,40,.85);
}

.portfolio-item > .item-link > .item-desc{
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 20px 25px;
	text-align: center;
	color: #fff;
}

.portfolio-item > .item-link > .item-desc h3{
	position: relative;
	margin-top: 40px;
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 28px;
	font-weight: 700;
	text-transform: uppercase;
    -webkit-transform: translate3d(0,-20px,0);
       -moz-transform: translate3d(0,-20px,0);
    	-ms-transform: translate3d(0,-20px,0);
    	 -o-transform: translate3d(0,-20px,0);
    		transform: translate3d(0,-20px,0);
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

.portfolio-item > .item-link > .item-desc h3::after{
	content: '';
	position: absolute;
	left: 50%;
	bottom: -15px;
	margin-left: -20px;
	width: 40px;
	height: 2px;
	background-color: #005894;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

.portfolio-item:hover > .item-link > .item-desc h3::after{
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;
	margin-left: -20px;
	width: 40px;
	height: 2px;
	background-color: #fff;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

.portfolio-item > .item-link > .item-desc p{
    -webkit-transform: translate3d(0,-20px,0);
       -moz-transform: translate3d(0,-20px,0);
    	-ms-transform: translate3d(0,-20px,0);
    	 -o-transform: translate3d(0,-20px,0);
    		transform: translate3d(0,-20px,0);
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

.portfolio-item:hover > .item-link > .item-desc p{
    -webkit-transform: translate3d(0,0,0);
       -moz-transform: translate3d(0,0,0);
    	-ms-transform: translate3d(0,0,0);
    	 -o-transform: translate3d(0,0,0);
    		transform: translate3d(0,0,0);
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

.portfolio-item:hover > .item-link > .item-desc h3{
	color: #005894;
    -webkit-transform: translate3d(0,0,0);
       -moz-transform: translate3d(0,0,0);
    	-ms-transform: translate3d(0,0,0);
    	 -o-transform: translate3d(0,0,0);
    		transform: translate3d(0,0,0);
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

.portfolio-item > .item-link > img{

}

.portfolio-item:hover > .item-link >  img{
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
	-webkit-transform: scale(1,1);
	   -moz-transform: scale(1,1);
		-ms-transform: scale(1,1);
		 -o-transform: scale(1,1);
			transform: scale(1,1);
}

/* modal */
.modal-portfolio .modal-content {
    padding: 20px 0;
    min-height: 100%;
    border: none;
    -webkit-border-radius: 0;
	   -moz-border-radius: 0;
    	-ms-border-radius: 0;
    	 -o-border-radius: 0;
    		border-radius: 0;
    text-align: center;
    
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
    	-ms-box-shadow: none;
    	 -o-box-shadow: none;
    		box-shadow: none;
}

.modal-portfolio .modal-content .page-title{
	margin-bottom: 30px;
}

.modal-portfolio .modal-content .project-detail{
	margin-top: 20px;
	margin-bottom: 20px;
}

.modal-portfolio .modal-content img{
	margin-left: auto;
	margin-right: auto;
    margin-bottom: 30px;
}

.modal-portfolio .modal-content .item-details{
    margin: 30px 0;
}

.modal-portfolio .modal-close{
	position: absolute;
	z-index: 999;
	top: 25px;
	right: 25px;
	width: 80px;
	height: 80px;
	cursor: pointer;
	-webkit-transition: background-color 0.3s ease-in-out;
	   -moz-transition: background-color 0.3s ease-in-out;
		-ms-transition: background-color 0.3s ease-in-out;
		 -o-transition: background-color 0.3s ease-in-out;
			transition: background-color 0.3s ease-in-out;
}

.modal-portfolio .modal-close::before{
	content: '';
	position: absolute;
	left: 40px;
	top: -15px;
	width: 1px;
	height: 110px;
	background-color: #aaa;
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		 -o-transform: rotate(-45deg);
			transform: rotate(-45deg);
}

.modal-portfolio .modal-close::after{
	content: '';
	position: absolute;
	right: 40px;
	top: -15px;
	width: 1px;
	height: 110px;
	background-color: #aaa;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		 -o-transform: rotate(45deg);
			transform: rotate(45deg);
}

.modal-portfolio .modal-close:hover::before,
.modal-portfolio .modal-close:hover::after,
.modal-portfolio .modal-close:focus::before,
.modal-portfolio .modal-close:focus::after{
	content: '';
	background-color: #005894;
	-webkit-transition: background-color 0.3s ease-in-out;
	   -moz-transition: background-color 0.3s ease-in-out;
		-ms-transition: background-color 0.3s ease-in-out;
		 -o-transition: background-color 0.3s ease-in-out;
			transition: background-color 0.3s ease-in-out;
}


/*
	==================
	[14. PROMO]
	==================
*/
.promo,
.promo-alt,
.promo-02,
.promo-03,
.promo-04{
	position: relative;
	width: 100%;
	min-height: 300px;
	padding: 60px 0;
	-webkit-background-size: cover !important;
	   -moz-background-size: cover !important;
		-ms-background-size: cover !important;
		 -o-background-size: cover !important;
			background-size: cover !important;
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-transition: all 0.1s ease-in-out;
	   -moz-transition: all 0.1s ease-in-out;
		-ms-transition: all 0.1s ease-in-out;
		 -o-transition: all 0.1s ease-in-out;
			transition: all 0.1s ease-in-out;
}

.promo::before,
.promo-alt::before,
.promo-02::before,
.promo-03::before,
.promo-04::before{
	content: '';
	display: table;
	clear: both;
}

.promo::after,
.promo-alt::after,
.promo-02::after,
.promo-03::after,
.promo-04::after{
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(40,40,40,.65);
}

.promo .promo-text,
.promo-alt .promo-text,
.promo-02 .promo-text,
.promo-03 .promo-text,
.promo-04 .promo-text{
	position: relative;
	z-index: 3;
	text-align: center;
}

.promo-text .page-title{
	margin-bottom: 30px;
}

.promo-text h1,
.promo-text h2,
.promo-text h3,
.promo-text h4,
.promo-text h5,
.promo-text h6,
.promo-text small,
.promo-text p,
.promo-text a,
.promo-text strong{
	color: #fff;
}
.promo-text a{
	text-decoration:underline;
}
.promo-text a:hover{
	text-decoration:none;
}
/*
	==================
	[15. COMPONENT]
	==================
*/
#component{
	width: 100%;
	padding: 120px 0 100px;
	background-color: #fff;
}

.testimonial{
	position: relative;
	padding-bottom: 80px;
	margin-bottom: 20px;
}

.testimonial-content{
	position: relative;
	padding: 12px 18px;
	background-color: #fff;
	border: 1px solid #ddd;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
		-ms-border-radius: 2px;
		 -o-border-radius: 2px;
			border-radius: 2px;
}

.testimonial-content::before{
	content: '';
	position: absolute;
	left: 5px;
	bottom: -22px;
	border-top: 22px solid #ddd;
	border-right: 0 solid transparent;
	border-bottom: 0 solid transparent;
	border-left: 22px solid transparent;
}

.testimonial-content::after{
	content: '';
	position: absolute;
	left: 6px;
	bottom: -20px;
	border-top: 20px solid #fff;
	border-right: 0 solid transparent;
	border-bottom: 0 solid transparent;
	border-left: 20px solid transparent;
}

.testimonial-author{
	position: absolute;
	bottom: 0;
	left: 0;
}

.testimonial-author-img{
	position: absolute;
	left: 10px;
	bottom: -10px;
	border-radius: 100%;
	overflow: hidden;
	width: 60px;
	height: 60px;
}

.testimonial-author-name{
	padding-left: 80px;
}

.testimonial-author-name h4{
	font-size: 14px;
	font-style: italic;
}


/*
	==================
	[16. CONTACT]
	==================
*/
#contact{
	width: 100%;
	padding: 120px 0 100px;
	background-color: #ececec;
}

#map{
	width: 100%;
	height: auto;
	min-height: 320px;
}

#map::before,
#map::after{
	content: '';
	display: table;
	clear: both;
}

#map img{
	max-width: none;
}

.contact-form .form-group{
	position: relative;
}

.contact-form .form-focus-icon{
	position: absolute;
	right: 10px;
	top: 8px;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		 -o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
}

.contact-form .form-control:focus + .form-focus-icon{
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		 -o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
}

.contact-form .focus-icon-name::after{
	font-family: 'FontAwesome';
	content: '\f007';
	position: absolute;
	right: 0;
	top: 0;
	width: 26px;
	height: 26px;
	font-size: 26px;
	color: #aaa;
}

.contact-form .focus-icon-mail::after{
	font-family: 'FontAwesome';
	content: '\f0e0';
	position: absolute;
	right: 0;
	top: 0;
	width: 26px;
	height: 26px;
	font-size: 26px;
	color: #aaa;
}

.contact-form .focus-icon-phone::after{
	font-family: 'FontAwesome';
	content: '\f095';
	position: absolute;
	right: 0;
	top: 0;
	width: 26px;
	height: 26px;
	font-size: 26px;
	color: #aaa;
}

.contact-form .focus-icon-message::after{
	font-family: 'FontAwesome';
	content: '\f075';
	position: absolute;
	right: 0;
	top: 0;
	width: 26px;
	height: 26px;
	font-size: 26px;
	color: #aaa;
}

.contact-form .form-control{
	padding-right: 50px;
	border: none;
	color: #888;
	font-weight: 700;
	font-size: 18px;
	background-color: transparent;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
		-ms-box-shadow: none;
		 -o-box-shadow: none;
			box-shadow: none;
	border-bottom: 1px solid #ddd;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
		-ms-border-radius: 0;
		 -o-border-radius: 0;
			border-radius: 0;
}

.contact-form .form-control:focus{
	border: none;
	color: #005894;
	font-weight: 700;
	background-color: transparent;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
		-ms-box-shadow: none;
		 -o-box-shadow: none;
			box-shadow: none;
	border-bottom: 1px solid #ddd;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
		-ms-border-radius: 0;
		 -o-border-radius: 0;
			border-radius: 0;
}

.contact-form textarea{
	resize: none;
}


/*
	==================
	[17. SOCIAL]
	==================
*/
#social{
	width: 100%;
	height: auto;
	padding: 30px 0 15px;
	background-color: #005894;
	text-align: center;
}

.social-icon > li > a{
	display: block;
	width: 34px;
	height: 34px;
	margin-right: 20px;
	margin-bottom: 10px;
	text-align: center;
	vertical-align: center;
	font-size: 34px;
	line-height: 34px;
	color: #fff;
}

.social-icon > li:last-child > a{
	margin-right: 0;
}

.social-icon > li > a:hover{
	color: #282828;
}


/*
	==================
	[18. FOOTER]
	==================
*/
.footer{
	width: 100%;
	padding: 80px 0 60px;
	height: auto;
	background-color: #282828;
}

.footer .footer-widget{
	position: relative;
	margin-bottom: 40px;
	width: auto;
	padding-left: 30px;
}

.footer .footer-widget::before,
.footer .footer-widget::after{
	content: '';
	display: table;
	clear: both;
}

.footer .footer-widget .widget-header{
	position: relative;
	margin-bottom: 20px;
}

.footer .footer-widget .widget-header::before{
	font-family: 'FontAwesome';
	content: '\f013';
	position: absolute;
	left: -30px;
	top: -4px;
	color: #005894;
	font-size: 16px;
}

.footer .footer-widget .widget-header::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: -15px;
	width: 25px;
	height: 1px;
	background-color: #005894;
}

.footer .footer-widget .widget-header h3{
	display: block;
	margin-bottom: 30px;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
}

.footer .footer-widget ul > li > a{
	color: #6b6e80;
	font-size: 14px;
}

.footer .footer-widget ul > li > a:hover,
.footer .footer-widget ul > li > a:focus{
	color: #005894;
}

.footer .footer-widget-logo{
	margin-bottom: 40px;
	height: auto;
}

.footer .footer-widget-logo h2{
	margin-bottom: 20px;
	font-size: 40px;
	line-height: 48px;
	font-family: 'Kaushan Script', cursive;
	color: #005894;
}

.footer .footer-widget-logo small{
	font-size: 16px;
	line-height: 18px;
	font-style: italic;
}


/*
	==================
	[19. COPYRIGHT]
	==================
*/
#copyright{
	width: 100%;
	height: auto;
	padding: 20px 0;
	background-color: #282828;
	border-top: 1px solid #444;
}

#copyright .btn-totop{
	display: table;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.flight{
	font-weight:300;
}