
/* MAIN STYLES
---------------------------------- */

body, html {
	height: 100% !important;
}
body {
	overflow-x: hidden;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	letter-spacing: .02em;
	font-size: 15px;
	line-height: 26px;
	color: #000;
	position: relative;
	background: #fff;
}
::selection {
	background: #000;
	color: #fff;
}
::-moz-selection {
	background: #000;
	color: #fff;
}
* {
	margin: 0;
	padding: 0;
	outline: 0;
}

:focus {
	outline: 0
}

a, a:hover, a:focus {
	color: #000;
	outline: 0;
	text-decoration: none;
}
a {
	text-decoration: underline;
}
.text-light a {
	color: #fff;
}

img {
	max-width: 100%;
	height: auto;
	display: inline-block;
	border: none;
}


/* TYPOGRAPHY
---------------------------*/
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}
h1 {
	font-size: 48px;
	line-height: 54px;
}

h2 {
	font-size: 36px;
	line-height: 48px;
}

h3 {
	font-size: 30px;
	line-height: 36px;
}

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

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

h6 {
	font-size: 14px;
	line-height: 18px;
}
mark {
  color: #fff;
  background: #000;
  background-color: rgb(0, 0, 0);
}
.mark2 {
  color: #000;
  background: #d1ffd1;
}
.mark3 {
  color: #000;
  background: #bde0fe;
}
.mark4 {
  color: #000;
  background: #c1daf3;
}
.mark5 {
  color: #000;
  background: #f9d5d5;
}
ul li {list-style-position: inside;}

/* Responsive TYPOGRAPHY
---------------------------*/

@media (max-width: 768px) {
	body { font-size: 14px; line-height: 23px}
	h1   { font-size: 34px; line-height: 40px}
	h2   { font-size: 30px; line-height: 35px}
	h3   { font-size: 26px; line-height: 29px}
	h4   { font-size: 22px; line-height: 24px}
	h5   { font-size: 17px; line-height: 22px}
	h6   { font-size: 13px; line-height: 15px}
}

.bottom-line{
	position: relative;
	margin-bottom: 30px;
}
.bottom-line:after{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background: #111;
	bottom: -13px;
}
.text-light .bottom-line:after{
	background: #fff;
}

.font-alt{
	font-family: 'Raleway';
	font-weight: 300;
}
.monospace {
	font-family: 'Source Code Pro';
	color: #494949;
}
.text-light .monospace {
	color: #D0D0D0;
}

.title {
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child
{
	margin-top: 0
}

.bigtext {
	font-size: 160px;
	line-height: 1
}
@media (max-width: 992px) {
	.bigtext{font-size: 130px;}
}
@media (max-width: 768px) {
	.bigtext{font-size: 70px;}
}	

.text-light {
	color: #fff
}
.text-dark {
	color: #000
}
.text-center {
	text-align: center
}
.text-left {
	text-align: left
}
.text-right {
	text-align: right
}
.uppercase {
	text-transform: uppercase
}
.capitalize {
	text-transform: capitalize
}
.bold {
	font-weight: bold
}
.bolder {
	font-weight: bolder
}
.italic {
	font-style: italic
}

/*helper classes*/
.fullwidth {
	width: 100%
}
.fullheight {
	height: 100%
}
.grey {
	background-color: #F7F7F7
}
.black {
	background-color: #000
}
.white {
	background-color: #fff
}

.vCenter {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.centered {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	     -o-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}



/* Spacers & Separators
---------------------------*/
.spacer-mini, .spacer-small, .spacer-medium, .spacer-big {
	width: 100%;
	display: inline-block;
	position: relative;
	margin: 0;
}
.spacer-mini {
	height: 14px
}
.spacer-small {
	height: 40px
}
.spacer-medium {
	height: 80px
}
.spacer-big {
	height: 120px
}
@media (max-width: 992px) {
	.spacer-big {
		height: 100px
	}
}
@media (max-width: 768px) {
	.spacer-mini {
		height: 10px
	}
	.spacer-small {
		height: 30px
	}
	.spacer-medium {
		height: 50px
	}
	.spacer-big {
		height: 80px
	}
}
.separator, .separator-left, .separator-right {
	width: 100%;
	display: inline-block;
	position: relative;
}
.separator:after, .separator-left:after, .separator-right:after {
	content: '';
	width: 40px;
	height: 2px;
	background-color: #000;
	position: absolute;
	top: 50%;
	margin-top: -1px;
}
.separator:after {
	left: 50%;
	margin-left: -20px;
}
.separator-left:after {
	left: 0;
	margin-left: 0;
}
.separator-right:after {
	right: 0;
	margin-left: 0;
	left: auto;
}
.text-light [class*="separator"]:after {
	background-color: #fff
}
.darkbg [class*="separator"]:after {
	background-color: #fff
}

[class*="spacer-"] {
	font-size: 4em
}
[class*="spacer-"]:before {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	     -o-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}




/* BUTTONS
---------------------------*/

.button {
	font-family: 'Montserrat', sans-serif;
	font-size: 17px;
	padding: 5px 24px;
	display: inline-block;
	background: #000;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: background .2s, color .2s, border-color .2s;
	   -moz-transition: background .2s, color .2s, border-color .2s;
	    -ms-transition: background .2s, color .2s, border-color .2s;
	     -o-transition: background .2s, color .2s, border-color .2s;
	        transition: background .2s, color .2s, border-color .2s;
}
.button:hover {
	text-decoration: none;
	background: #333;
	color: #fff;
}
.button.light {
	background: #fff;
	color: #000;
}
.button.light:hover {
	background: #f4f4f4;
}
.button.outline {
	background: none;
	color: #000;
	border: 2px solid;
	padding: 3px 22px;
}
.button.outline.light {
	color: #fff;
}
.button.outline:hover {
	background: #000;
	border-color: #000;
	color: #fff;
}
.button.outline.light:hover {
	background: #fff;
	border-color: #fff;
	color: #000;
}
@media (max-width: 768px) {
	.button{
		font-size: 14px;
		padding: 3px 17px;
	}
	.button.outline{
		padding: 1px 15px;
	}
}	


/* OVERLAYS
---------------------------*/
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.overlay-light {
	background-color: rgba(255, 255, 255, 0.25)
}
.overlay-light-2x {
	background-color: rgba(255, 255, 255, 0.5)
}
.overlay-light-3x {
	background-color: rgba(255, 255, 255, 0.75)
}
.overlay-light-4x {
	background-color: rgba(255, 255, 255, 0.9)
}

.overlay-dark {
	background-color: rgba(0, 0, 0, 0.25)
}
.overlay-dark-2x {
	background-color: rgba(0, 0, 0, 0.5)
}
.overlay-dark-3x {
	background-color: rgba(0, 0, 0, 0.75)
}
.overlay-dark-4x {
	background-color: rgba(0, 0, 0, 0.9)
}

[class*="overlay-dark"] ~ *,
[class*="overlay-light"] ~ *
{
	position: relative
}




/* PARALLAX IMAGES
---------------------------*/
[data-stellar-background-ratio] {
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
}
@media (max-width: 1024px) {
	[data-stellar-background-ratio] {
		background-attachment: scroll;
		background-position-y: center !important;
	}
}



/* BS COLUMNS
---------------------------*/
.container, section, section > * {
	position: relative;
}
.col-center {
	float: none;
	margin: 0 auto;
}
.col-right {
	float: right;
}

@media (max-width: 991px) {
	[class*="col-md"] {
		margin-bottom: 40px;
	}
}
@media (max-width: 767px) {
	[class*="col-sm"] {
		margin-bottom: 40px;
	}
}






/* HEADER
---------------------------*/

header {
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	z-index: 999;
}
header .container {
	height: 100%;
}
header.whitebg {
	background: #fff;
	border-bottom: 1px solid #EFEFEF;
}

.logo {
	display: block;
	float: left;
	font-size: 33px;
	font-weight: 400;
	color: #333;
	padding-top: 26px;
	text-decoration: none;
}

.whitebg .logo img{
	max-height: 60px;
}
.whitebg .logo {
	padding-top: 10px;
}
.logo img{
	max-height: 100px;
}


/* MENU
---------------------------*/
.menu-wrapper {
	float: right;
	padding-top: 30px;
	position: relative;
}
.menu-icon {
	display: block;
	width: 31px;
	height: 20px;
	position: relative;
}
.menu-icon span {
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	background-color: #333;
	-webkit-transition: transform .2s;
	   -moz-transition: transform .2s;
	    -ms-transition: transform .2s;
	     -o-transition: transform .2s;
	        transition: transform .2s;
}
.menu-icon span:first-child {
	-webkit-transform: translateY(-7px);
	   -moz-transform: translateY(-7px);
	    -ms-transform: translateY(-7px);
	     -o-transform: translateY(-7px);
	        transform: translateY(-7px);
}
.menu-icon span:last-child {
	-webkit-transform: translateY(7px);
	   -moz-transform: translateY(7px);
	    -ms-transform: translateY(7px);
	     -o-transform: translateY(7px);
	        transform: translateY(7px);
}

.menu-icon:hover span:first-child {
	-webkit-transform: translateY(-9px);
	   -moz-transform: translateY(-9px);
	    -ms-transform: translateY(-9px);
	     -o-transform: translateY(-9px);
	        transform: translateY(-9px);
}
.menu-icon:hover span:last-child {
	-webkit-transform: translateY(9px);
	   -moz-transform: translateY(9px);
	    -ms-transform: translateY(9px);
	     -o-transform: translateY(9px);
	        transform: translateY(9px);
}

.menu-icon.active span:first-child {
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.menu-icon.active span:last-child {
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	     -o-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
.menu-icon.active span:nth-child(2) {
	opacity: 0;
}


.main-menu {
	background-color: #f9f8f7;
	list-style: none;
	text-align: right;
	font-family: 'Montserrat', sans-serif;
	min-width: 190px;
	padding: 15px;
	position: absolute;
	right: 14px;
	top: 70px;
	/*visually hidden (out of the viewport)*/
	right: -9999px;
	/* show/hide */
	opacity: 0;
	-webkit-transform: translateY(-15px);
	   -moz-transform: translateY(-15px);
	    -ms-transform: translateY(-15px);
	     -o-transform: translateY(-15px);
	        transform: translateY(-15px);
	-webkit-transition: transform .3s, opacity .3s;
	   -moz-transition: transform .3s, opacity .3s;
	    -ms-transition: transform .3s, opacity .3s;
	     -o-transition: transform .3s, opacity .3s;
	        transition: transform .3s, opacity .3s;
}
.main-menu.visible {
	right: 14px
}
.main-menu.active {
	opacity: 1;
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	     -o-transform: translateY(0);
	        transform: translateY(0);
}
.main-menu:after, .fixed-filter ul:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: -10px;
	right: 0;
	border: 10px solid;
	border-color: transparent;
	border-right-color: #f9f8f7;
}
.main-menu > li {
}
.main-menu a {
	text-decoration: none
}
.main-menu > li > a {
	display: block;
	font-size: 15px;
	color: #333;
	text-transform: uppercase;
	letter-spacing: .1em;
	-webkit-transition: opacity .2s;
	   -moz-transition: opacity .2s;
	    -ms-transition: opacity .2s;
	     -o-transition: opacity .2s;
	        transition: opacity .2s;
}
.main-menu > li > a:hover {
	text-decoration: none;
	opacity: .7;
}
.main-menu > li > a.dropdown:after {
	content: '+';
	font-family: 'Raleway';
}
.main-menu > li > a.dropdown.opened:after {
	content: '-';
}
.main-menu ul {
	list-style: none;
	padding: 5px 13px 5px 0;
	display: none;
}
.main-menu ul li a {
	display: block;
	font-size: 13px;
	line-height: 1.5;
	font-family: 'Source Code Pro';
	color: #898989;
	text-transform: capitalize;
}
.main-menu ul li a:hover {
	color: #222;
}

/* overlay menu */
.menu-wrapper.menu-overlay nav {
	position: fixed;
	background-color: rgba(0, 0, 0, .9);
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: none;
}
.menu-wrapper.menu-overlay .menu-icon {
	z-index: 99
}
.menu-wrapper.menu-overlay .menu-icon.active span {
	background-color: #fff !important
}

.menu-wrapper.menu-overlay .main-menu {
	background: none;
	text-align: center;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) !important;
	   -moz-transform: translate(-50%, -50%) !important;
	    -ms-transform: translate(-50%, -50%) !important;
	     -o-transform: translate(-50%, -50%) !important;
	        transform: translate(-50%, -50%) !important;
}
.menu-wrapper.menu-overlay .main-menu > li > a {
	color: #fff;
	font-size: 20px;
}
.menu-wrapper.menu-overlay .main-menu ul li a {
	color: #CACACA;
}
.menu-wrapper.menu-overlay .main-menu ul li a:hover {
	color: #fff;
}

.menu-wrapper.menu-overlay .main-menu:after {
	display: none
}




/* HERO
---------------------------*/
#hero {
	position: relative;
	width: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 0;
}
#hero.fullscreen {
	height: 100%;
}
#hero[data-stellar-background-ratio]{
	background-position: center top;
}
#hero.hero-fixed, #hero.hero-parallax {
	position: fixed;
	top: 0
}

#hero .hero-title .button {
	margin-top: 20px;
}
.page-title h1 {
	font-family: 'montserrat' !important;
}

#hero .container {
	display: table;
	height: 100%;
}
#hero .hero-title {
	width: 100%;
	display: table-cell;
	vertical-align: middle;
	padding: 100px 0 50px;
}
#hero.fullscreen .hero-title {
	padding: 100px 0;
}
#hero .hero-title.vtop {
	vertical-align: top;
}
#hero .hero-title.vbottom {
	vertical-align: bottom;
}
#hero.darkbg {
	color: #fff;
}


.play-btn {
	display: inline-block;
	font-size: 90px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	color: #efefef;
	line-height: 80px;
	text-align: center;
}
.play-btn:hover {
	color: #efefef;
}




/* HERO SLIDER
---------------------------*/
.flex-viewport {
	height: 100%;
}
.hero-slider{
	position: relative;
	overflow: hidden;
}
.hero-slider .slides {
	height: 100%;
	margin: 0
}
.hero-slider .slides > li {
	height: 100%;
	margin: 0
}
.hero-slider .slidebg{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	-webkit-background-size: auto;
	background-size: auto;
}
.hero-slider .hero-title {
	opacity: 0;
	-webkit-transform: translateY(-30px);
	   -moz-transform: translateY(-30px);
	    -ms-transform: translateY(-30px);
	     -o-transform: translateY(-30px);
	        transform: translateY(-30px);
	-webkit-transition: all 1.9s ease .7s;
	   -moz-transition: all 1.9s ease .7s;
	    -ms-transition: all 1.9s ease .7s;
	     -o-transition: all 1.9s ease .7s;
	        transition: all 1.9s ease .7s;
}
.hero-slider .flex-active-slide .hero-title {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
	    -ms-transform: translateY(0px);
	     -o-transform: translateY(0px);
	        transform: translateY(0px);
}

.slidebg{
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
}
.hero-slider > .slides > li .slidebg{
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	     -o-transform: scale(1);
	        transform: scale(1);
	-webkit-transition: transform 10s ease;
	   -moz-transition: transform 10s ease;
	    -ms-transition: transform 10s ease;
	     -o-transition: transform 10s ease;
	        transition: transform 10s ease;
}
.hero-slider > .slides > li.flex-active-slide .slidebg{
	-webkit-transform: scale(1.05);
	   -moz-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	     -o-transform: scale(1.05);
	        transform: scale(1.05);
}


.hero-slider .flex-direction-nav {
	list-style: none;
}
.hero-slider .flex-direction-nav li a {
	position: absolute;
	width: 50%;
	height: 100%;
	top: 0;
	bottom: 0;
	z-index: 2;
}
.hero-slider .flex-prev{
	left: 0;
	cursor: url(../img/cur/prev.png), e-resize;
}
.hero-slider.light-arrows .flex-prev{
	cursor: url(../img/cur/prev-light.png), e-resize;
}
.hero-slider .flex-next{
	right: 0;
	cursor: url(../img/cur/next.png), e-resize;
}
.hero-slider.light-arrows .flex-next{
	cursor: url(../img/cur/next-light.png), e-resize;
}



/* PAGE BODY
------------------------- */

.page-body {
	position: relative;
	padding-top: 120px;
	z-index: 1;
	background-color: #fff;
}




/* PORTFOLIO FILTERS
---------------------------------- */
/* fixed filter */
.fixed-filter {
	position: absolute;
	right: 68px;
	top: 28px;
	display: none;
	font-family: montserrat;
}
.fixed-filter a {
	font-size: 15px;
	display: block;
	text-decoration: none;
	width: 100%;
	text-align: right;
	opacity: .7;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.fixed-filter a.active,
.fixed-filter a:hover {
	opacity: 1
}

.fixed-filter ul {
	list-style: none;
	text-align: right;
	background: #f9f8f7;
	padding: 8px 15px 8px 20px;
	min-width: 150px;
	position: absolute;
	right: 13px;
	top: 42px;
	/*visually hidden (out of the viewport)*/
	right: -9999px;
	/* show/hide */
	opacity: 0;
	-webkit-transform: translateY(-15px);
	   -moz-transform: translateY(-15px);
	    -ms-transform: translateY(-15px);
	     -o-transform: translateY(-15px);
	        transform: translateY(-15px);
	-webkit-transition: transform .3s, opacity .3s;
	   -moz-transition: transform .3s, opacity .3s;
	    -ms-transition: transform .3s, opacity .3s;
	     -o-transition: transform .3s, opacity .3s;
	        transition: transform .3s, opacity .3s;
}
.fixed-filter ul.visible {
	right: 13px
}
.fixed-filter ul.active {
	opacity: 1;
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	     -o-transform: translateY(0);
	        transform: translateY(0);
}
.fixed-filter ul li {
	line-height: 1.5;
	text-transform: capitalize;
	cursor: pointer;
}
.fixed-filter ul li.active {
	text-decoration: underline;
}

/*inline filter*/
.inline-filter {
	text-align: center;
}
.inline-filter ul {
}
.inline-filter ul li {
	display: inline-block;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin: 0 10px;
	opacity: .7;
	cursor: pointer;
	-webkit-transition: all .4s ease;
	   -moz-transition: all .4s ease;
	    -ms-transition: all .4s ease;
	     -o-transition: all .4s ease;
	        transition: all .4s ease;
}
.inline-filter ul li:hover,
.inline-filter ul li.active {
	opacity: 1;
}




/* PORTFOLIO
---------------------------------- */
.portfolio {
	max-width: 100%;
	margin: auto;
}
.portfolio:after {
	content: "";
	display: table;
	clear: both;
}
.portfolio.fullwidth {
	width: 100%
}
.portfolio .item {
	padding: 0;
	margin: 0;
}
.portfolio .item .item-content {
	position: relative;
}


/* SPACE BETWEEN ITEMS */
.portfolio.spaced .item .item-content {
	margin: 30px
}

@media (min-width: 768px) {
	.portfolio {
		width: 720px
	}
	.portfolio.spaced {
		width: 780px
	}
}
@media (min-width: 992px) {
	.portfolio {
		width: 940px
	}
	.portfolio.spaced {
		width: 1000px
	}
}
@media (min-width: 1200px) {
	.portfolio {
		width: 1140px
	}
	.portfolio.spaced {
		width: 1200px
	}
}

@media (max-width: 768px) {
	.portfolio.spaced .item .item-content {
		margin: 15px
	}
}

/* classic grid */
.classic-grid .item-content:before {
	content: "";
	display: block;
	/*aspect ratio*/
	padding-top: 75%;
}
.classic-grid .item-img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
}
/* /classic grid */


/*item fade animation*/
.item-fade .item {
	opacity: 0 !important;
	-webkit-transition: opacity 1.5s ease .3s !important;
	   -moz-transition: opacity 1.5s ease .3s !important;
	    -ms-transition: opacity 1.5s ease .3s !important;
	     -o-transition: opacity 1.5s ease .3s !important;
	        transition: opacity 1.5s ease .3s !important;
}
.item-fade .item.visible {
	opacity: 1 !important;
}



@media (max-width: 991px) {
/*	.portfolio .item {
		width: 100%
	}*/
}

.portfolio .item .item-overlay {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: -1px;
	background: rgba(255, 255, 255, 0.8);
	opacity: 0;
	-webkit-transition: all .4s ease;
	   -moz-transition: all .4s ease;
	    -ms-transition: all .4s ease;
	     -o-transition: all .4s ease;
	        transition: all .4s ease;
}
.portfolio .item .item-overlay.overlay-dark {
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
}
.portfolio .item .item-overlay.overlay-dark .item-info {
	color: #E5E5E5
}
.portfolio .item .item-overlay:hover {
	opacity: 1
}

.portfolio .item .item-details {
	position: absolute;
	width: 100%;
	text-align: center;
	padding: 0 5px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.portfolio .item .item-title {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	
	opacity: 0;
	-webkit-transform: translateY(-20px);
	   -moz-transform: translateY(-20px);
	    -ms-transform: translateY(-20px);
	     -o-transform: translateY(-20px);
	        transform: translateY(-20px);
	-webkit-transition: all .4s ease;
	   -moz-transition: all .4s ease;
	    -ms-transition: all .4s ease;
	     -o-transition: all .4s ease;
	        transition: all .4s ease;
}
.portfolio .item .item-info {
	font-family: 'Source Code Pro';
	letter-spacing: 0.1em;
	color: #444;
	
	opacity: 0;
	-webkit-transform: translateY(20px);
	   -moz-transform: translateY(20px);
	    -ms-transform: translateY(20px);
	     -o-transform: translateY(20px);
	        transform: translateY(20px);
	-webkit-transition: all .4s ease;
	   -moz-transition: all .4s ease;
	    -ms-transition: all .4s ease;
	     -o-transition: all .4s ease;
	        transition: all .4s ease;
}
.portfolio .item .item-details .separator:after {
	height: 1px;
	background: #7d7d7d;
	opacity: 0;
	-webkit-transition: all .4s ease;
	   -moz-transition: all .4s ease;
	    -ms-transition: all .4s ease;
	     -o-transition: all .4s ease;
	        transition: all .4s ease;
}
.portfolio .item .item-content {
	position: relative;
	overflow: hidden;
}
.portfolio .item img, .classic-grid .item-img {
	-webkit-transition: all 5s ease;
	   -moz-transition: all 5s ease;
	    -ms-transition: all 5s ease;
	     -o-transition: all 5s ease;
	        transition: all 5s ease;
}
.portfolio .item .item-content:hover img, .item-content:hover .item-img {
	-webkit-transform: scale(1.15);
	   -moz-transform: scale(1.15);
	    -ms-transform: scale(1.15);
	     -o-transform: scale(1.15);
	        transform: scale(1.15);
}
.portfolio .item .item-overlay:hover .item-title,
.portfolio .item .item-overlay:hover .item-info {
	opacity: 1;
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	     -o-transform: translateY(0);
	        transform: translateY(0);
}
.portfolio .item .item-overlay:hover .item-details .separator:after {
	opacity: 1;
}



/* BLOG POST
---------------------*/
.post {
	margin-bottom: 30px;
}
.post a {
	text-decoration: none
}
.post-content {
}
.post-img {
	position: relative;
	overflow: hidden;
}
.post img {
	-webkit-transition: all 5s ease;
	   -moz-transition: all 5s ease;
	    -ms-transition: all 5s ease;
	     -o-transition: all 5s ease;
	        transition: all 5s ease;
}
.post-info {
	background: #f9f8f7;
	padding: 20px;
}
.post h4 {
	text-transform: capitalize;
	margin-bottom: 10px;
}
.post h6 {
	text-transform: capitalize;
}
.post-content:hover .post-img img {
	-webkit-transform: scale(1.15);
	   -moz-transform: scale(1.15);
	    -ms-transform: scale(1.15);
	     -o-transform: scale(1.15);
	        transform: scale(1.15);
}





/* TEAM
---------------------*/
.team-member {
}
.team-member > p {
	font-family: 'Source Code Pro';
	color: #666;
}
.team-member .overlay {
	background: rgba(255, 255, 255, 0.9);
	opacity: 0;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.team-member:hover .overlay {
	opacity: 1;
}
.team-member .overlay p {
	padding: 0 30px;
}
.team-member .social-links a {
	font-size: 18px;
	margin: 5px;
}




/* SKILLS
---------------------*/
.skills {
	width: 100%;
	padding-top: 9px;
}
.skill {
	width: 100%;
	height: 42px;
	position: relative;
	margin-bottom: 15px;
}
.skill-title, .skill-bar {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.7em;
	white-space: nowrap;
	padding: 4px 0px;
	text-indent: 22px;
	font-family: montserrat
}
.skill-title {
	color: #000;
}
.skill-bar {
	background: #000;
	color: #fff;
	width: 0;
	overflow: hidden;
	-webkit-transition: all 1s ease-out;
	   -moz-transition: all 1s ease-out;
	    -ms-transition: all 1s ease-out;
	     -o-transition: all 1s ease-out;
	        transition: all 1s ease-out;
}
@media (max-width: 768px) {
	.skill-title, .skill-bar{
		font-size: 12px;
		letter-spacing: 0.6em;
		text-indent: 13px;
	}
}	



/* TABS
---------------------*/
.tabs {
	width: 100%;
	max-width: 100%;
	position: relative;
}
.tab-nav {
	list-style: none;
}
.tab-nav > li {
	display: inline-block;
	cursor: pointer;
	margin-right: 10px;
	font-size: 17px;
}
.tab-nav > li:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #444;
	opacity: 0;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
	-webkit-transform: translateY(3px);
	   -moz-transform: translateY(3px);
	    -ms-transform: translateY(3px);
	     -o-transform: translateY(3px);
	        transform: translateY(3px);
}
.tab-nav > li.active:after {
	opacity: 1;
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	     -o-transform: translateY(0);
	        transform: translateY(0);
}
.tab-panels {
}
.tab-panels > div {
	display: none;
}
.tab-panels > div.active {
	display: block;
}


/* TOGGLES
---------------------*/
.toggle {
	margin-bottom: 10px;
}
.toggle-title {
	font-size: 17px;
	text-decoration: none;
}
.toggle-title:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #444;
	opacity: 0;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
	-webkit-transform: translateY(3px);
	   -moz-transform: translateY(3px);
	    -ms-transform: translateY(3px);
	     -o-transform: translateY(3px);
	        transform: translateY(3px);
}
.toggle.active .toggle-title:after {
	opacity: 1;
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	     -o-transform: translateY(0);
	        transform: translateY(0);
}
.toggle-content {
	display: none;
	margin-top: 8px;
	opacity: 0;
	-webkit-transition: opacity .3s ease;
	   -moz-transition: opacity .3s ease;
	    -ms-transition: opacity .3s ease;
	     -o-transition: opacity .3s ease;
	        transition: opacity .3s ease;
}
.toggle.active .toggle-content {
	display: block;
	opacity: 1;
}


/* COUNTERS
---------------------*/
.counter-item {
	text-align: center;
}
.counter-num {
	font-size: 60px;
	line-height: 1;
}
.counter-title {
	font-size: 20px;
	font-family: 'montserrat';
	text-transform: uppercase;
	letter-spacing: 0.1em
}





/* SCROLL TO TOP
---------------------*/
.to-top {
	display: none;
	width: 50px;
	height: 50px;
	font-size: 50px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #f7f7f7;
	cursor: pointer;
	opacity: 0.7;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.to-top:hover {
	opacity: 1;
}



/* BLOCKQUOTE
---------------------*/
blockquote {
	border-left: 2px solid #636363;
	font-family: 'georgia';
	font-style: italic;
	text-align: left;
}
blockquote cite {
	font-family: 'Source Code Pro';
}
@media (max-width: 768px) {
	blockquote{ 
		font-size: 16px; 
		padding: 10px 12px; 
	}
}




/* HIGHLIGHT
---------------------*/
.highlight {
	background-color: #000;
	color: #fff;
}




/* IMAGE SLIDER
---------------------*/
.img-slider {
	position: relative;
}
.img-slider li img {
	width: 100%;
}
.img-slider .flex-direction-nav {
	list-style: none;
	position: absolute;
	right: 10px;
	bottom: 10px;
	margin: 0;
	opacity: 0.5;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.img-slider:hover .flex-direction-nav {
	opacity: 1
}
.img-slider .flex-direction-nav li {
	float: left;
}
.img-slider .flex-direction-nav li a {
	background: #fff;
	color: #333;
	display: block;
	font-size: 40px;
}



/* ICON BOX
---------------------*/
.icon-box {
	margin-bottom: 60px;
}
.icon-box i {
	float: left;
	font-size: 60px;
}
.box-info {
	margin-left: 70px
}
.box-info h4 {
	text-transform: capitalize;
}
.box-info p {
	font-size: 14px;
}



/* VIDEO CONTAINER
---------------------*/
.video-container iframe {
	border: 0;
}




/* PAGINATION
---------------------*/
.pagination {
	width: 100%;
	text-align: center;
	margin: 50px 0;
}
.pagination a {
	font-family: 'montserrat';
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	opacity: .7;
}
.pagination a:hover {
	opacity: 1;
}
.pagination i {
	font-size: 30px;
	vertical-align: middle;
	margin-top: -3px;
}
.pagination .all {
	margin: 0 20px;
}




/* CONTACT FORM
---------------------*/
#contact {
	width: 860px;
	max-width: 100%;
	margin: auto;
	padding: 0 30px;
}
#name, #email, #message {
	width: 100%;
	border: none;
	border-bottom: 1px solid #bababa;
	padding: 25px 0 5px;
	-webkit-transition: border-bottom-color .5s ease, border-bottom-width .3s ease;
	   -moz-transition: border-bottom-color .5s ease, border-bottom-width .3s ease;
	    -ms-transition: border-bottom-color .5s ease, border-bottom-width .3s ease;
	     -o-transition: border-bottom-color .5s ease, border-bottom-width .3s ease;
	        transition: border-bottom-color .5s ease, border-bottom-width .3s ease;
}
#name {
	text-transform: capitalize;
}
#message {
	resize: none;
}
#name:focus, #email:focus, #message:focus {
	border-bottom-color: #333;
	border-bottom-width: 4px;
}

#contact ::-webkit-input-placeholder {
	color: inherit
}
#contact :-moz-placeholder {
	color: inherit
}
#contact ::-moz-placeholder {
	color: inherit
}
#contact :-ms-input-placeholder {
	color: inherit
}

#submit {
	background: none;
	text-transform: uppercase;
	border: 1px solid #bababa;
	padding: 8px 50px;
	margin-top: 20px;
	-webkit-transition: border-color .3s ease;
	   -moz-transition: border-color .3s ease;
	    -ms-transition: border-color .3s ease;
	     -o-transition: border-color .3s ease;
	        transition: border-color .3s ease;
}
#submit:hover {
	border-color: #333;
}
.contact-message {
	font-size: 22px;
	text-align: center;
	text-transform: capitalize;
}
.error {
	color: red;
}



/* CONTACT INFO
---------------------*/
.contact-info {
	border-top: 1px solid #f5f4f4;
	padding: 50px 0;
	text-align: center;
}
.contact-info a {
	font-size: 18px;
	text-decoration: none;
}
.contact-info i {
	font-size: 30px;
	display: block;
	margin-bottom: 15px;
}




/* FOOTER
---------------------*/
#footer {
	border-top: 1px solid #EAEAEA;
}
#footer .social {
}
#footer .social ul {
}
#footer .social ul li {
	display: inline-block;
}
#footer .social ul li a {
	padding: 0 10px;
	display: block;
	float: left;
	color: #4F4F4F;
	font-size: 17px;
	text-decoration: none;
}
#footer .social ul li a:after {
	content: "";
	display: block;
	left: 0;
	right: 0;
	height: 1px;
	background: #4F4F4F;
	opacity: 0;
	-webkit-transform: translateY(5px);
	   -moz-transform: translateY(5px);
	    -ms-transform: translateY(5px);
	     -o-transform: translateY(5px);
	        transform: translateY(5px);
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
#footer .social ul li a:hover:after {
	opacity: 1;
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	     -o-transform: translateY(0);
	        transform: translateY(0);
}
#footer .copyright {
	color: #ABABAB;
	font-size: 14px;
}




/* PAGE LOADER
---------------------

.page-loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 1984;
	-webkit-transition: 1s;
	   -moz-transition: 1s;
	    -ms-transition: 1s;
	     -o-transition: 1s;
	        transition: 1s;
}
.logo-img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
	margin-top: -70px;
}
.logo-img img {
	max-height: 30px;
	-webkit-transition: 1s;
	   -moz-transition: 1s;
	    -ms-transition: 1s;
	     -o-transition: 1s;
	        transition: 1s;
}
.pace-done .page-loader .logo-img img {
	-webkit-transform: translateY(-30px);
	   -moz-transform: translateY(-30px);
	    -ms-transform: translateY(-30px);
	     -o-transform: translateY(-30px);
	        transform: translateY(-30px);
	opacity: 0;
}
.pace-done .page-loader {
	opacity: 0;
}
.page-loader.done {
	display: none;
}

.pace {
	-webkit-pointer-events: none;
	        pointer-events: none;
	
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	
	z-index: 2000;
	position: fixed;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 5px;
	width: 200px;
	background: #fff;
	border: 1px solid #000;
	
	overflow: hidden;
}
.pace .pace-progress {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	     -o-box-sizing: border-box;
	        box-sizing: border-box;
	
	-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);
	
	max-width: 200px;
	position: fixed;
	z-index: 2000;
	display: block;
	position: absolute;
	top: 0;
	right: 100%;
	height: 100%;
	width: 100%;
	background: #000;
}
.pace.pace-inactive {
	display: none;
}
*/


