/************************************************
Theme Name: zmags - One Page Template
Author: Akronyms
Author URI: http://www.akronyms.net
Version: 1.0
************************************************ */

/* --------------------------------------------------
  Table of Contents
-----------------------------------------------------
:: General
:: Typography
:: Buttons
:: Icon With Text/Blurb
:: Sections Common Css
:: Call To Action
:: Menu
::
:: -------------------
:: Homepage
:: -------------------
:: -- Home Slider
:: -- Features Section
:: -- Team Section
:: -- Skills Section
:: -- Featured Works Section
:: -- Counter Section
:: -- Offer Section
:: -- Portfolio Section
:: -- Custom Section
:: -- Testimonial Section
:: -- Pricing Section
:: -- Clients Logo Section
:: -- Process Section
:: -- Blog Section
:: -- Contact Section
::
:: -----------------------------
:: Portfolio Page
:: -----------------------------
:: -- Portfolio Page Settings
::
:: -----------------------------
:: Portfolio Single Page
:: -----------------------------
:: -- Single Portfolio Details Section
:: -- Related Works Section
::
:: -------------------
:: Masonry Blog Page
:: --------------------
:: -- Masonry Blog page settings
:: -- Pagination
::
:: -------------------
::Blog Single Page
::--------------------
:: -- Single Post Contents
:: ----- Block Quote
:: ----- Blog Post Comments
:: ----- Comment Form
::
:: -- Sidebar Area
:: ----- Search Bar
:: ----- Category
:: ----- Recent Posts
:: ----- Flickr Widget
:: ----- Tag Widget
::
:: Preloader
:: Scroll To Top
:: Owl Slider Pagination
:: Footer
::
:: Parallx Sections
:: -- Features Section
:: -- Counter Section
:: -- Contact Section
:: -- Portfolio Single Page
:: -- Blog Single Page
*/

/********************************************************
*														*
*						General 						*
*														*
*********************************************************/
body {
  position: relative;
}

html{
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}

textarea:focus,
input:focus{
  outline: none;
}

img{
  max-width: 100%;
}

ul{
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}

header.zmags-page-header{
	-webkit-background-size: cover;
	height: 330px;
	background-size: cover;
	position: relative;
}

.zmags-page-title{
	position: relative;
	z-index: 1;
}

.error {
  background-color: #df3030;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  padding: 15px 15px 15px 50px;
  position: relative;
}

.error:before{
	content: "\e08b";
	font-family: 'Simple-Line-Icons';
	color: #ffffff;
	position: absolute;
	font-size: 16px;
	top: 14px;
	left: 25px;
}

.success{
  background-color: #19bd9b;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  padding: 15px 15px 15px 50px;
  position: relative;
}

.success:before{
	content: "\e080";
	font-family: 'Simple-Line-Icons';
	color: #ffffff;
	position: absolute;
	font-size: 16px;
	top: 14px;
	left: 25px;
}

/************************* End ***************************/


/********************************************************
*														*
*						Typography 						*
*														*
*********************************************************/
h1,h2,h3,h4,h5,h6{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}

h1{
	font-size: 36px;
}

h2{
	font-size: 30px;
}

h3{
	font-size: 24px;
}

h4{
	font-size: 18px;
}

h5{
	font-size: 16px;
}

h6{
	font-size: 14px;
}

a,p,li,input,textarea{
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #818181;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}

a{
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}

a:hover,
a:focus,
a:active{
	outline: 0;
	text-decoration: none;
  	border: 0;
}

.zmags-page-title h1{
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	padding: 70px 0 0;
	text-align: center;
}
/************************* End **************************/


/********************************************************
*														*
*						Buttons 						*
*														*
*********************************************************/
/* solid Btn*/
.zmags-button-solid{
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	padding: 15px 30px;
	display: inline-block;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

.zmags-button-solid:hover{
	color: #ffffff;
}

/* outline btn*/
.zmags-button-outline{
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	padding: 15px 30px;
	display: inline-block;
	background-color: transparent;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

.zmags-button-outline-round{
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	padding: 15px 30px;
	display: inline-block;
	background-color: transparent;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	     -o-border-radius: 5px;
	        border-radius: 5px;
	-webkit-transition: all .35s;
	   -moz-transition: all .35s;
	    -ms-transition: all .35s;
	     -o-transition: all .35s;
	        transition: all .35s;
}

/*Light btn*/
.zmags-button-outline-light{
	border: 1px solid #ffffff;
}

.zmags-button-outline-light:hover{
	color: #ffffff;
	border: 1px solid transparent;
}

.zmags-button-outline-round-light{
	border: 1px solid #ffffff;
}

.zmags-button-outline-round-light:hover{
	color: #ffffff;
	border: 1px solid transparent;
}

/*Dark btn*/
.zmags-button-outline-dark{
	color: #28292e;
	border: 1px solid #28292e;
}

.zmags-button-outline-dark:hover{
	color: #ffffff;
	border: 1px solid transparent;
}

.zmags-button-outline-round-dark{
	color: #28292e;
	border: 1px solid #28292e;
}

.zmags-button-outline-round-dark:hover{
	color: #ffffff;
	border: 1px solid transparent;
}

/* round btn*/
.zmags-btn-round{
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 700;
	padding: 15px 30px;
	color: #ffffff;
	text-align: center;
	display: inline-block;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
		 -o-border-radius: 5px;
		 	border-radius: 5px;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

.zmags-btn-round:hover{
	color: #ffffff;
}
/************************* End **************************/


/********************************************************
*														*
*					Icon With Text/Blurb			    *
*														*
*********************************************************/

/* Single Icon with text */
.zmags-blurb-icon-only{
	margin-bottom: 50px;
}

.zmags-blurb-icon-only i{
	font-size: 30px;
}

.zmags-blurb-icon-only h3{
	font-size: 16px;
	margin-top: 25px;
	margin-bottom: 15px;
}

.zmags-blurb-icon-only p{
	margin-bottom: 0;
}


/* Round Icon with text */
.zmags-blurb-round-icon .zmags-icon{
	width: 100px;
	height: 100px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 30px;
	border: 1px solid #dadada;
	-webkit-border-radius: 50%;
		moz-border-radius: 50%;
		 -o-border-radius: 50%;
		 	border-radius: 50%;
}

.zmags-blurb-round-icon .zmags-icon i{
	line-height: 100px;
	font-size: 36px;
	color: #dadada;
}

.zmags-blurb-round-icon .zmags-icon{
	-webkit-transition: all .4s ease;
	   -moz-transition: all .4s ease;
	    -ms-transition: all .4s ease;
	     -o-transition: all .4s ease;
	        transition: all .4s ease;
}

.zmags-blurb-round-icon:hover .zmags-icon{
	border: 1px solid rgba(0,0,0,0);
}

.zmags-blurb-round-icon:hover .zmags-icon i{
	color: #ffffff;
}

.zmags-blurb-round-icon h3{
	text-align: center;
	font-size: 18px;
	color: #616161;
	margin-top: 0;
	margin-bottom: 15px;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}

.zmags-blurb-round-icon p{
	margin-bottom: 0;
	text-align: center;
}

/* icon Square */
.zmags-blurb-icon-left-square{
	overflow: visible;
	margin-bottom: 50px;
}



/*Default/Light*/
.zmags-blurb-icon-left-square .zmags-icon{
	width: 70px;
	height: 70px;
	margin: 0 auto;
	text-align: center;
	float: left;
	margin-right: 30px;
	background-color: rgba(255,255,255,0.25);
}

/*Dark*/
.zmags-blurb-icon-left-square.zmags-square-dark .zmags-icon{
	background-color: rgba(0,0,0,0.25);
}

.zmags-blurb-icon-left-square .zmags-icon i{
	line-height: 70px;
	color: #ffffff;
	font-size: 36px;
}

.zmags-blurb-icon-left-square .zmags-blurb-text{
	float: left;
	width: 260px;
}

.zmags-blurb-icon-left-square .zmags-blurb-text h3{
	font-size: 16px;
	color: #ffffff;
	margin-top: 0;
	margin-bottom: 15px;
	padding-bottom: 15px;
	position: relative;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}

.zmags-blurb-icon-left-square .zmags-blurb-text h3:after{
	content: '';
	width: 30px;
	height: 2px;
	background-color: #ffffff;
	position: absolute;
	bottom: 0;
	left: 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;
}

.zmags-blurb-icon-left-square .zmags-blurb-text p{
	color: #ffffff;
}
/************************* End **************************/


/********************************************************
*														*
*					Sections Common Css 			    *
*														*
*********************************************************/
.zmags-section-wrapper{
	padding: 80px 0;
	overflow: hidden;
}

.zmags-section-header{
	text-align: center;
	margin-bottom: 80px;
}

.zmags-section-header h1{
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 30px;
	color: #313131;
}

.zmags-section-header h2{
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 30px;
	color: #313131;
}

.zmags-section-header h1 span{
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 30px;
}

.zmags-section-header .zmags-section-divider{
	width: 100px;
	height: 4px;
	margin: 20px auto;
	border-top: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
}

.zmags-section-header p{
	font-family: 'Raleway', sans-serif;
}

/* Parallax Section*/
.zmags-parallax-overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(40,41,46,0.65);
}

.zmags-section-header-parallax h1{
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 30px;
	color: #ffffff;
}

.zmags-section-header-parallax h1 span{
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 30px;
}

.zmags-section-header-parallax .zmags-section-divider{
	width: 100px;
	height: 4px;
	margin: 20px auto;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}

.zmags-section-header-parallax p{
	font-family: 'Raleway', sans-serif;
	color: #ffffff
}
/************************* End **************************/


/********************************************************
*														*
*					  Call To Action 	 			    *
*														*
*********************************************************/
/* Call To Action Style 1 */
.zmags-cta-1{
	background-color: #28292e;
	padding: 60px 0;
}

.zmags-cta-1 h2{
	color: #ffffff;
	margin-top: 0;
	margin-bottom: 15px;
}

.zmags-cta-1 p{
	color: #ffffff;
	margin-bottom: 0;
}

.zmags-cta-1 .zmags-cta-btn a{
	float: right;
	margin-top: 15px;
	color: #ffffff;
}

/* Call To Action Style 2*/
.zmags-cta-2{
	background-color: #28292e;
	text-align: center;
}

.zmags-cta-2-wrapper{
	overflow: hidden;
	padding: 60px 0;
}

.zmags-cta-2 h1{
	font-size: 24px;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 30px;
	color: #ffffff;
}
/************************* End **************************/


/********************************************************
*														*
*					         Menu 	 	 			    *
*														*
*********************************************************/
.zmags-main-menu{
    background-color: #28292e;
    background-color: transparent;
    border: 0 none;
    border-radius: 0;
    position: fixed;
    width: 100%;
    padding: 15px 0;
    margin-bottom: 0;
    z-index: 10;
    -webkit-transition: all .4s;
       -moz-transition: all .4s;
        -ms-transition: all .4s;
         -o-transition: all .4s;
            transition: all .4s;
    -webkit-backface-visibility: hidden;
}

header.zmags-page-header .zmags-main-menu{
	position: relative;
}

.navbar-brand {
    margin-top: 27px;
}

.navbar-brand img {
    width: 172px;
    height: 50px;
}
.zmags-main-menu .navbar-nav{
    float: right;
    padding: 20px 0;
}

.zmags-main-menu .navbar-nav li a{
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-transition: all .3s;
       -moz-transition: all .3s;
        -ms-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;
}

.zmags-main-menu .navbar-nav li a:hover,
.zmags-main-menu .navbar-nav li.active a{
    background-color: transparent;
}

.zmags-main-menu .navbar-nav li a:focus{
	background-color: transparent;
}

.zmags-main-menu .zmags-menu-wrapper-meta {
    padding-top:10px;
    padding-bottom: 0;
}
.zmags-main-menu .zmags-menu-wrapper-meta li a {
    font-size: 10px;
    font-weight: normal;
}

/* Minified Menu */
.zmags-main-menu.minified{
	background-color: #28292e;
	padding: 0;
	position: fixed;
}

header.zmags-page-header .zmags-main-menu.minified{
	position: fixed;
}

/* nav style updates */
.nav > li.social-icon-nav-item {
    display: inline-block;
}

.zmags-main-menu .navbar-nav li.active a.client-login {
    color: #fff;
}

li.watch-video,
.zmags-main-menu .navbar-nav li.watch-video.active {
    padding-left: 10px;
}

.zmags-main-menu .navbar-nav li.watch-video > a,
.zmags-main-menu .navbar-nav li.watch-video.active > a {
    display: inline-block;
    color: #fff;
    background: #35b9d8;
    /*background: #f4471a;*/
    border-radius: 4px;
    padding:2px 10px 2px 10px;
    font-weight:bold;
}
/*
.zmags-main-menu .navbar-nav li.watch-video > a:hover,
.zmags-main-menu .navbar-nav li.watch-video.active > a:hover {
    color: #000;
}*/

li.free-trial,
.zmags-main-menu .navbar-nav li.free-trial.active {
    padding-left: 10px;
}

.zmags-main-menu .navbar-nav li.free-trial > a,
.zmags-main-menu .navbar-nav li.free-trial.active > a {
    display: inline-block;
    color: #fff;
    background: #35b9d8;
    border-radius: 4px;
    padding:2px 10px 2px 10px;
    font-weight:bold;
}

@media only screen and (max-width: 950px) {
    .nav > li.separator-nav-item {
        display: none;
    }
    .navbar-collapse.in {
        overflow-y: visible; 
    }
}

/************************* End **************************/



/********************************************************
*														*
*						Home Page						*
*														*
*********************************************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
						Home Slider
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-slider{
	overflow: hidden;
	background-color: #28292e;
}

.zmags-main-slides a:first-child {
    display: block;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.zmags-main-slides .zmags-img-overlay{
	position: absolute;
	background-color: rgba(40,41,46,0.25);
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.zmags-main-slides h1.zmags-slider-text-big{
	font-size: 48px;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 25px;
    margin-left:0;
    margin-right:0;
    text-align: center;
    width: 100%;
}

.zmags-main-slides .zmags-slider-text h1 span{
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}

.zmags-main-slides p{
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 30px !important;
	color: #ffffff;
	margin-bottom: 0;
    margin-left:0;
    margin-right:0;
    text-align: center;
    width: 100%;
}

/* Slider Navigation & Pagination Styling */
.sp-arrow {
	width: 10px;
}

.zmags-slider .sp-buttons {
  padding-top: 10px;
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 20px;
}

.zmags-slider .sp-button {
  border: 4px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  height: 16px;
  margin: 4px;
  width: 16px;
}
/************************* End **************************/

.embedded-vimeo {
    width: 500px;
    margin: 0 auto 1em auto;
}

.embedded-vimeo  iframe{
    width: 500px;
    height: 281px;
}

@media only screen and (max-width: 530px) {
    .embedded-vimeo {
        width: auto;
    }
    .embedded-vimeo  iframe {
        width: 100%;
        height: 240px;
    }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
						Features Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-features-section .container {
	position: relative;
	z-index: 1;
}

.chart-ps img:first-child {
    display: block;
    margin: auto;
}

.chart-ps .zmags-blurb-text h3 {
    text-align: center;
}

.chart-ps .zmags-blurb-text p {
    text-align: center;
}

/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
						Team Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-team-section{
	overflow: hidden;
}

/*Team Member img*/
.zmags-team-slides .zmags-member-img-wrapper{
	width: 160px;
	height: 160px;
	float: left;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	margin-right: 30px;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	  	 -o-border-radius: 50%;
	  	    border-radius: 50%;
}

.zmags-team-slides .zmags-member-img-wrapper img{
	border: 10px solid #f5f5f5;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	  	 -o-border-radius: 50%;
	  	    border-radius: 50%;
}

/*Team Member Details*/
.zmags-member-details{
	width: 340px;
	float: left;
	display: inline-block;
}

.zmags-member-details h3{
	font-size: 18px;
	margin-bottom: 5px;
}

.zmags-member-details span.zmags-member-desg{
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	color: #4a4a4a;
	margin-bottom: 15px;
	display: inline-block;
}

.zmags-member-details p{
	margin-bottom: 20px;
}

/*Social Infos*/
.zmags-member-details ul li{
	float: left;
	margin-right: 5px;
}

.zmags-member-details ul li a{
	width: 25px;
	height: 25px;
	display: block;
	text-align: center;
	background-color: #f1f1f1;
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}

.zmags-member-details ul li a i{
	color: #bebebe;
	line-height: 25px;
}

.zmags-member-details ul li a:hover i{
	color: #ffffff;
}

.zmags-member-details ul li.social-facebook a:hover{
	background-color: #3b5998;
}

.zmags-member-details ul li.social-twitter a:hover{
	background-color: #00aced;
}

.zmags-member-details ul li.social-gplus a:hover{
	background-color: #dd4b39;
}

.zmags-member-details ul li.social-linkedin a:hover{
	background-color: #007bb6;
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
						Skills Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-our-skills{
	background-color: #f5f5f5;
}

.zmags-our-skills .chart{
	position: relative;
	text-align: center;
	width: 200px;
	height: 200px;
	margin: 0 auto 15px;

}

.zmags-our-skills span.percent{
	font-family: 'Montserrat', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #3a3a3a;
	display: inline-block;
	z-index: 3;
	margin-top: 60px;
}

.zmags-our-skills span.percent:after{
	content: '%';
	font-size: 36px;
}

.zmags-our-skills .chart h3{
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #3a3a3a;
	display: block;
	z-index: 3;
	margin-top: 0px;
	margin-bottom: 0;
}

.zmags-our-skills .chart canvas{
	position: absolute;
	top: 0;
	left: 0;
}

.zmags-our-skills .zmags-skills-wrapper p{
	text-align: center;
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
					Featured Works Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-portfolio-work-item{
	height: 280px;
	position: relative;
}

/*Portfolio img*/
.zmags-portfolio-work-item img{
	height: 100%;
}

.zmags-portfolio-work-item .zmags-port-work-details{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*zoom & link btn*/
.zmags-portfolio-work-item .zmags-work-meta{
	position: absolute;
	top: 0;
	left: 0px;
}

.zmags-portfolio-work-item .zmags-work-meta li{
	width: 35px;
	height: 35px;
	margin-bottom: 1px;
	text-align: center;
	background-color: rgba(40,41,46,0.8);
	opacity: 0;
	-webkit-transform: scale(0);
	   -moz-transform: scale(0);
	    -ms-transform: scale(0);
	     -o-transform: scale(0);
	        transform: scale(0);
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

.zmags-portfolio-work-item:hover .zmags-port-work-details .zmags-work-meta li{
	opacity: 1;
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	     -o-transform: scale(1);
	        transform: scale(1);
}

.zmags-port-work-details .zmags-work-meta li a{
	display: block;
}

.zmags-port-work-details .zmags-work-meta li a i{
	font-size: 16px;
	color: #ffffff;
	line-height: 35px;
}

/*Portolio Name & category*/
.zmags-port-work-details .zmags-port-work-desc{
	width: 100%;
	position: absolute;
	bottom: 0;
	padding: 15px 0;
	background-color: rgba(40,41,46,0.8);
	opacity: 0;
	-webkit-transform: translateY(100%);
	   -moz-transform: translateY(100%);
	    -ms-transform: translateY(100%);
	     -o-transform: translateY(100%);
	        transform: translateY(100%);
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
	    -ms-transition: all .5s;
	     -o-transition: all .5s;
	        transition: all .5s;

}

.zmags-portfolio-work-item:hover .zmags-port-work-desc{
	opacity: 1;
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	     -o-transform: translateY(0);
	        transform: translateY(0);
}

.zmags-port-work-details .zmags-port-work-desc h3{
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 5px;
}

.zmags-port-work-details .zmags-port-work-desc p a{
	font-size: 14px;
	color: #ffffff;
	margin-top: 0;
	margin-bottom: 0;
}

/*Like count*/
.zmags-port-work-details .zmags-port-work-desc .zmags-like-btn {
	text-align: center;
	padding: 10px 15px;
}

.zmags-port-work-details .zmags-port-work-desc .zmags-like-btn a{
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
}

.zmags-port-work-details .zmags-port-work-desc .zmags-like-btn a i{
	font-size: 21px;
	color: #ffffff;
	margin-right: 5px;
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
					Counter Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-counter-item{
	text-align: center;
}

.zmags-counter-item span{
	font-family: 'Montserrat', sans-serif;
	font-size: 60px;
	color: #37bad8;
	margin-bottom: 10px;
}

.zmags-counter-item h3{
	font-family: 'Raleway', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 10px;
	position: relative;
}

.zmags-counter-item h3:after{
	content: '';
	width: 120px;
	height: 1px;
	background-color: #ffffff;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
					Offer Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-offer-section{
	padding-bottom: 30px;
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
					Portfolio Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-portfolio-section{
	background-color: #f5f5f5;
	padding-bottom: 50px;
}

/*Filter btn*/
.zmags-portfolio-filter-btn-group{
	margin-bottom: 40px;
	text-align: center;
	overflow: hidden;
}

.zmags-portfolio-filter-btn-group ul{
	display: inline-block;
}

.zmags-portfolio-filter-btn-group ul li{
	float: left;
}

.zmags-portfolio-filter-btn-group ul li a{
	font-weight: 600;
	padding: 10px 20px;
	display: inline-block;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
		 -o-border-radius: 5px;
		 	border-radius: 5px;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

.zmags-portfolio-filter-btn-group ul li a:hover{
	color: #818181;
}

.zmags-portfolio-filter-btn-group ul li a.selected{
	color: #ffffff;
}

/*Portfolio Items*/
.zmags-portfolio-items{
	overflow: hidden;
}

.zmags-portfolio-items .zmags-portfolio-item{
	width: 25%;
	height: 280px;
	position: relative;
	overflow: hidden;
}

.zmags-portfolio-items .zmags-portfolio-item img{
	height: 100%;
}

.zmags-portfolio-items .zmags-portfolio-item .zmags-portfolio-details-wrapper{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(40,41,46,0.8);
	display: table;
	opacity: 0;
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}

.zmags-portfolio-item:hover .zmags-portfolio-details-wrapper{
	opacity: 1;
}

.zmags-portfolio-item .zmags-portfolio-details{
	display: table-cell;
	padding: 50px 0;
	vertical-align: middle;
}

.zmags-portfolio-item .zmags-portfolio-details .zmags-portfolio-meta-btn{
	margin-bottom: 20px;
	text-align: center;
}

.zmags-portfolio-details .zmags-portfolio-meta-btn ul{
	display: inline-block;
}

.zmags-portfolio-details .zmags-portfolio-meta-btn ul li{
	width: 35px;
	height: 35px;
	background-color: rgba(255,255,255,0.3);
	float: left;
	margin-right: 10px;
	opacity: 0;
	-webkit-transition: all .55s;
	   -moz-transition: all .55s;
	    -ms-transition: all .55s;
	     -o-transition: all .55s;
	        transition: all .55s;
}

.zmags-portfolio-details .zmags-portfolio-meta-btn ul li.zmags-portfolio-single-link{
	-webkit-transform: translateX(400%);
	   -moz-transform: translateX(400%);
	    -ms-transform: translateX(400%);
	     -o-transform: translateX(400%);
	        transform: translateX(400%);
}

.zmags-portfolio-details .zmags-portfolio-meta-btn ul li.zmags-lighbox{
	-webkit-transform: translateX(-400%);
	   -moz-transform: translateX(-400%);
	    -ms-transform: translateX(-400%);
	     -o-transform: translateX(-400%);
	        transform: translateX(-400%);
}

.zmags-portfolio-item:hover .zmags-portfolio-details .zmags-portfolio-meta-btn ul li{
	opacity: 1;
	-webkit-transform: translateX(0);
	   -moz-transform: translateX(0);
	    -ms-transform: translateX(0);
	     -o-transform: translateX(0);
	        transform: translateX(0);
}

.zmags-portfolio-details .zmags-portfolio-meta-btn ul li a{
	display: block;
	text-align: center;
}
.zmags-portfolio-details .zmags-portfolio-meta-btn ul li a i{
	font-size: 16px;
	color: #ffffff;
	line-height: 35px;
}

.zmags-portfolio-item .zmags-portfolio-details h3{
	text-align: center;
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 5px;
}

.zmags-portfolio-item .zmags-portfolio-details p{
	text-align: center;
}

.zmags-portfolio-item .zmags-portfolio-details p a{
	font-size: 13px;
	text-align: center;
	color: #ffffff;
	font-style: italic;
}

/* * * * * * * * Portfolio Page Btn * * * * * * * * */
.zmags-portfolio-btn-wrapper{
	text-align: center;
	overflow: hidden;
	margin-top: 50px;
}

.zmags-portfolio-btn-wrapper a.zmags-portfolio-btn{
	font-family: 'Montserrat',sans-serif;
	font-weight: 400;
	color: #616161;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	overflow: hidden;
	border: 2px solid #dadada;
	padding: 15px 40px;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	     -o-border-radius: 5px;
	        border-radius: 5px;
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
					Custom Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-custom-sec-text p{
	margin-bottom: 20px;
}

.zmags-custom-sec-text h3{
	font-size: 18px;
	color: #616161;
	margin-top: 0px;
	margin-bottom: 20px;
}

.zmags-custom-sec-text ul{
	margin-left: 30px;
}

.zmags-custom-sec-text ul li{
	margin-bottom: 10px;
}

.zmags-custom-sec-text ul li:last-child{
	margin-bottom: 0;
}

.zmags-custom-sec-text ul li i{
	font-size: 14px;
	margin-right: 10px;
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
					Testimonial Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-testimonial-section{
	position: relative;
	padding: 80px 0;
	overflow: hidden;
	max-height: 400px;
}

.zmags-bg-video-wrapper{
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	max-height: 100%;
	background: url(../images/video-bg-placeholder.jpg);  /* Comment or disable this line if you use a video as bg */
	background-position: center;    	  /* Comment or disable this line if you use a video as bg */
	-webkit-background-size: cover;       /* Comment or disable this line if you use a video as bg */
			background-size: cover;		  /* Comment or disable this line if you use a video as bg */
}

.zmags-bg-video-wrapper video{
	width: 100%;
	position: absolute;
	top: 50%;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.zmags-testimonial-wrapper{
	text-align: center;
	position: relative;
	z-index: 5;
}

.zmags-testimonial-wrapper .comment-icon{
	font-size: 24px;
	color: #ffffff;
	text-align: center;
}

.zmags-testimonial{
	margin-top: 50px;
	overflow: hidden;
}

.zmags-testimonial p{
	font-size: 16px;
	color: #ffffff;
	margin-bottom: 20px;
}

.zmags-testimonial p.zmags-client-info{
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 0
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
					Pricing Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-pricing-section{
	padding: 80px 0;
}

.zmags-pricing-plans{
	text-align: center;
	padding: 30px 15px;
}

/*Recommended*/
.zmags-recommended-pricing{
	background-color: #f5f5f5;
}

/*Pricing Plan Header*/
.zmags-pricing-plans .zmags-pricing-titles{
	margin-bottom: 40px;
	text-align: center;
}

.zmags-pricing-plans .zmags-pricing-titles h2{
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 5px;
}

.zmags-pricing-plans .zmags-pricing-titles p{
	font-size: 16px;
}

.zmags-pricing-plans .zmags-pricing-titles p span{
	font-size: 30px;
	font-weight: 300;
}

/*Pricing Plan Details*/
.zmags-pricing-plans .zmags-pricing-service-name{
	margin-bottom: 20px;
}

.zmags-pricing-plans ul li{
	text-align: center;
	padding: 10px 0;
	border-bottom: 1px solid #dadada;
}

.zmags-pricing-plans ul li:last-child{
	border-bottom: 0px solid;
}

/*Signup Btn*/
.zmags-pricing-plans a.zmags-signup-btn{
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	padding: 15px 30px;
	text-align: center;
	display: inline-block;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
		 -o-border-radius: 5px;
		 	border-radius: 5px;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

.zmags-pricing-plans a.zmags-signup-btn:hover{
	color: #ffffff;
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
				Clients Logo Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-client-logo-carosal{
	background-color: #28292e;
	padding: 60px 0;
}

.zmags-client-logo-carosal h3:first-child {
    text-align: center;
    color: #FFFFFF;
}

.zmags-client-logo-carosal .zmags-client-logos{
	text-align: center;
}

.zmags-client-logo-carosal .zmags-client-logos img{
	max-height: 60px;
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
				Partners Logo Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-partners-logo-carosal{
	background-color: #28292e;
	padding: 60px 0;
}

.zmags-partners-logo-carosal h3:first-child {
    text-align: center;
    color: #FFFFFF;
}

.zmags-partners-logo-carosal .zmags-partners-logos{
	text-align: center;
}

.zmags-partners-logo-carosal .zmags-partners-logos img{
	max-height: 60px;
}
/************************* End **************************/



/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
				Process Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-process-item{
	text-align: center;
}

.zmags-process-item h3{
	font-size: 18px;
	color: #616161;
	text-align: center;
	margin-top: 25px;
	margin-bottom: 10px;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}

.zmags-process-item p{
	margin-bottom: 0;
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
						Blog Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-blog-section{
	background-color: #f5f5f5;
}

.zmags-blog-section .zmags-blog-carousal{
	margin-bottom: 50px;
}

.zmags-blog-items{
	padding: 0 15px;
    width: 455px;
    height: 434px;
    overflow: hidden;
}

/*Blog Img*/
.zmags-blog-items .zmags-blog-img{
	position: relative;
    width: 455px;
    height: 280px;
    overflow: hidden;
}

.zmags-blog-items .zmags-blog-img img{
	width: 100%;
}

/*Publish Date*/
.zmags-blog-items .zmags-blog-img span.blog-publish-date{
	position: absolute;
	top: 15px;
	left: 15px;
	background-color: rgba(40,41,46,0.7);
	color: #ffffff;
	font-size: 13px;
	font-style: italic;
	padding: 5px 10px;
	font-weight: 700;
}

/*Post Excerpt*/
.zmags-blog-post-content{
	background-color: #ffffff;
	padding: 15px 20px;
}

.zmags-blog-post-content p{
	margin-bottom: 25px;
    max-height: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-overflow: "[…]";
}

/*Read More btn*/
.zmags-blog-post-content a{
	font-size: 14px;
	font-weight: 700;
	color: #616161;
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}

.zmags-blog-post-content a i{
	margin-right: 5px;
}

/* * * * * * * * * * * * * * * * * * * *
		   Blog POST
* * * * * * * * * * * * * * * * * * * */
.zmags-blog-items .blog-publish-date{
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	     -o-transform: scale(1);
	        transform: scale(1);
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
	    -ms-transition: all .5s;
	     -o-transition: all .5s;
	        transition: all .5s;
}

.zmags-blog-items:hover .blog-publish-date{
	opacity: 0;
	-webkit-transform: scale(0);
	   -moz-transform: scale(0);
	    -ms-transform: scale(0);
	     -o-transform: scale(0);
	        transform: scale(0);
}

/* Blog Post Heading */
.zmags-blog-items .zmags-blog-post-header-wrapper{
	padding: 15px 20px 0;
	overflow: hidden;
	position: relative;
}

.zmags-blog-items .zmags-blog-post-header-wrapper h2{
	margin-top: 0px;
	margin-bottom: 5px;
}

.zmags-blog-items .zmags-blog-post-header-wrapper h2,
.zmags-blog-items .zmags-blog-post-header-wrapper h2 a{
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #616161;
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}

.zmags-blog-items .zmags-blog-post-header-wrapper h2 a i{
	margin-right: 10px;
	font-size: 18px;
	text-align: right;
	color: #616161;
	-webkit-transition: all .35s;
	   -moz-transition: all .35s;
	    -ms-transition: all .35s;
	     -o-transition: all .35s;
	        transition: all .35s;
}

.zmags-blog-items .zmags-blog-post-header-wrapper p.zmags-blog-post-meta{
	font-size: 13px;
	margin-bottom: 0;
}

.zmags-blog-items .zmags-blog-post-header-wrapper p a{
	font-weight: 700;
	font-size: 13px;
}

.zmags-blog-items .zmags-blog-post-content a.zmags-read-more{
	float: left;
}

.zmags-blog-items .zmags-blog-post-content .zmags-blog-post-comment-cat{
	float: right;
}

/* * * * * * * * * * * * * * * * * * * *
		   Standard POST
* * * * * * * * * * * * * * * * * * * */
.zmags-standard-post .zmags-blog-img{
	text-align: center;
}

.zmags-standard-post .zmags-blog-img span.blog-publish-date{
	position: relative;
	color: #ffffff;
	top: auto;
	left: auto;
	display: block;
	overflow: hidden;
	background-color: transparent;
	font-size: 13px;
	font-weight: 700;
	padding: 20px 0;
	text-align: center;
}

.zmags-standard-post:hover span.blog-publish-date{
	opacity: 1;
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	     -o-transform: scale(1);
	        transform: scale(1);
}

/* * * * * * * * * * * * * * * * * * * *
			IMAGE POST
* * * * * * * * * * * * * * * * * * * */
/*Post Header*/
.zmags-gallery-post .zmags-blog-img .zmags-blog-post-header-wrapper,
.zmags-image-post .zmags-blog-img .zmags-blog-post-header-wrapper{
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px 0;
	background-color: rgba(40,41,46,0.7);
	color: #ffffff;
	width: 100%;
	overflow: hidden;
}

.zmags-gallery-post .zmags-blog-img .zmags-blog-post-header h2,
.zmags-image-post .zmags-blog-img .zmags-blog-post-header h2{
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	color: #ffffff;
	margin-bottom: 5px;
	margin-top: 0;
}

.zmags-gallery-post .zmags-blog-img .zmags-blog-post-header h2 a,
.zmags-image-post .zmags-blog-img .zmags-blog-post-header h2 a{
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	color: #ffffff;
	margin-bottom: 10px;
	margin-top: 0;
}

.zmags-gallery-post .zmags-blog-img .zmags-blog-post-header h2 a i,
.zmags-image-post .zmags-blog-img .zmags-blog-post-header h2 a i{
	color: #ffffff;
	margin-right: 10px;
	text-align: right;
}

/*Post meta*/
.zmags-gallery-post .zmags-blog-img .zmags-blog-post-header p,
.zmags-image-post .zmags-blog-img .zmags-blog-post-header p{
	color: #ffffff;
	font-size: 13px;
	margin-bottom: 0;
}

.zmags-gallery-post .zmags-blog-img .zmags-blog-post-header p a,
.zmags-image-post .zmags-blog-img .zmags-blog-post-header p a{
	color: #eaeaea;
	font-weight: 700;
}

.zmags-gallery-post .zmags-blog-img .zmags-blog-post-header p a:hover,
.zmags-image-post .zmags-blog-img .zmags-blog-post-header p a:hover{
	color: #ffffff;
}

/*Comment Count*/
.zmags-image-post .zmags-blog-post-header-wrapper a.zmags-blog-post-comments,
.zmags-gallery-post .zmags-blog-post-header-wrapper a.zmags-blog-post-comments{
	font-size: 18px;
	color: #ffffff;
	padding: 15px;
	margin-bottom: 0;
}

.zmags-image-post .zmags-blog-post-header-wrapper a.zmags-blog-post-comments i,
.zmags-gallery-post .zmags-blog-post-header-wrapper a.zmags-blog-post-comments i{
	margin-right: 5px;
}

/* * * * * * * * * * * * * * * * * * * *
			GALLERY POST
* * * * * * * * * * * * * * * * * * * */
.zmags-gallery-post .zmags-gallery-carousal .owl-controls{
	margin-top: 0;
}

.zmags-gallery-post .zmags-gallery-carousal .owl-controls .owl-buttons div{
	position: absolute;
	top: 50%;
	color: #FFF;
	text-align: center;
	width: 40px;
	height: 40px;
	display: inline-block;
	zoom: 1;
	margin: 0px;
	padding: 0px;
	font-size: 12px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	background: #29292e;
	background: rgba(40, 41, 46, 0.7);
	filter: Alpha(Opacity=100);
	opacity: 1;
	z-index: 99;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.zmags-gallery-post .zmags-gallery-carousal .owl-controls .owl-buttons div.owl-prev{
	left: 0;
	-webkit-border-radius: 0px 3px 3px 0px;
	   -moz-border-radius: 0px 3px 3px 0px;
	     -o-border-radius: 0px 3px 3px 0px;
	        border-radius: 0px 3px 3px 0px;
}

.zmags-gallery-post .zmags-gallery-carousal .owl-controls .owl-buttons div.owl-next{
	right: 0;
	-webkit-border-radius: 3px 0px 0px 3px;
	   -moz-border-radius: 3px 0px 0px 3px;
	     -o-border-radius: 3px 0px 0px 3px;
	        border-radius: 3px 0px 0px 3px;
}

.zmags-gallery-post .zmags-gallery-carousal .owl-controls .owl-buttons div.owl-prev:after{
	content: '\f053';
	font-family: 'FontAwesome';
	font-size: 14px;
	color: #ffffff;
	line-height: 40px;
}

.zmags-gallery-post .zmags-gallery-carousal .owl-controls .owl-buttons div.owl-next:after{
	content: '\f054';
	font-family: 'FontAwesome';
	font-size: 14px;
	color: #ffffff;
	line-height: 40px;
}

/* * * * * * * * * * * * * * * * * * * *
		   Quote POST
* * * * * * * * * * * * * * * * * * * */

.zmags-blockquote-post .zmags-blockquote-wrapper{
	padding: 60px 30px 30px 60px;
}

.zmags-blockquote-post .zmags-blockquote-wrapper h4{
	color: #ffffff;
}

.zmags-blockquote-post .zmags-blockquote-wrapper i{
	position: absolute;
	color: #ffffff;
	font-size: 18px;
}

.zmags-blockquote-post .zmags-blockquote-wrapper i.fa-quote-left{
	top: 60px;
	left: 20px;
}

.zmags-blockquote-post .zmags-blockquote-wrapper i.fa-quote-right{
	bottom: 30px;
	right: 15px;
}

.zmags-blockquote-post .zmags-blockquote-wrapper span{
	padding-right: 30px;
	color: #fff;
	font-weight: 700;
	display: block;
	text-align: right;
}

/* * * * * * * * * * * * * * * * * * * *
		   Link POST
* * * * * * * * * * * * * * * * * * * */
.zmags-link-post .zmags-link-wrapper a{
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	display: block;
	text-align: center;
	*display: inline;
	*zoom: 1;
	padding: 60px 0;
	background-color: #28292e;
}

.zmags-link-post .zmags-link-wrapper i{
	position: absolute;
	color: #ffffff;
	font-size: 18px;
}


/* * * * * * * * View More Blog Post * * * * * * * * */
.zmags-more-post-wrapper{
	text-align: center;
	display: block;
}

.zmags-more-post-wrapper a.zmags-more-blog-post{
	font-family: 'Montserrat',sans-serif;
	font-weight: 400;
	color: #616161;
	display: inline-block;
	overflow: hidden;
	border: 2px solid #dadada;
	padding: 15px 20px;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	     -o-border-radius: 5px;
	        border-radius: 5px;
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
					Contact Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
/*Address Side*/
.zmags-contact-section .zmags-contact-address p{
	color: #ffffff;
	margin-bottom: 25px;
}

.zmags-contact-section .zmags-contact-address ul li{
	padding-left: 40px;
	margin-bottom: 25px;
	color: #ffffff;
	font-size: 14px;
	position: relative;
}

.zmags-contact-section .zmags-contact-address ul li:last-child{
	margin-bottom: 0;
}

.zmags-contact-section .zmags-contact-address ul li i{
	color: #ffffff;
	position: absolute;
	font-size: 18px;
	left: 0;
	top: 3px;
}

/*Contact Form*/
.zmags-contact-section .zmags-contact-form .zmags-input-fields{
	margin-bottom: 20px;
}

.zmags-contact-section .zmags-contact-form .zmags-input-fields label{
	display: block;
	font-size: 14px;
	font-family: 'Raleway',sans-serif;
	font-weight: 400;
	color: #ffffff;
	margin-bottom: 10px;
}

.zmags-contact-section .zmags-contact-form .zmags-input-fields input{
	width: 100%;
	height: 40px;
	background-color: transparent;
	border: 1px solid #ffffff;
	padding-left: 15px;
	padding-right: 15px;
	color: #ffffff;
}

.zmags-contact-section .zmags-contact-form .zmags-input-fields textarea{
	width: 100%;
	background-color: transparent;
	border: 1px solid #ffffff;
	padding: 15px;
	color: #ffffff;
}

.zmags-contact-section .zmags-contact-form input[type='submit']{
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	padding: 15px 30px;
	text-align: center;
	display: inline-block;
	outline: 0;
	border: 0px solid;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
		 -o-border-radius: 5px;
		 	border-radius: 5px;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}


.zmags-contact-section .zmags-contact-form input[type='submit']:hover{
	color: #ffffff;
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
					Google Maps Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-find-us-btn{
	padding: 50px;
	background-color: #28292e;
	overflow: hidden;
}

.zmags-find-us-btn h3{
	font-size: 24px;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
}

#map img {
	max-width: none;
}

.zmags-on-google-maps #map{
    width: 100%;
    height: 500px;
    background-color: #CCC;
}
/************************* End **************************/



/********************************************************
*														*
*        			Portfolio Page						*
*														*
*********************************************************/
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
				Portfolio Page Settings
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-portfolio-page-section{
	padding-bottom: 100px;
}

.zmags-portfolio-page-section .zmags-portfolio-page-text{
	margin-bottom: 50px;
	text-align: center;
	overflow: hidden;
}

.zmags-portfolio-page-section .zmags-portfolio-page-text h3{
	color: #616161;
	margin-bottom: 20px;
	margin-top: 0;
}
/************************* End **************************/


/********************************************************
*														*
*        			Portfolio Single Page				*
*														*
*********************************************************/
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
			Single Portfolio Details Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-portfolio-information{
	overflow: hidden;
}

.zmags-portfolio-information h2.zmags-portfolio-title{
	font-size: 18px;
	color: #333;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	display: block;
	border-bottom: 1px solid #dadada;
}

.zmags-portfolio-information p.zmags-portfolio-details{
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #dadada;
}

.zmags-portfolio-information .zmags-single-portfolio-meta{
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #dadada;
}

/*Portfolio Meta*/
.zmags-portfolio-information .zmags-single-portfolio-meta ul li{
	margin-bottom: 10px;
}

.zmags-portfolio-information .zmags-single-portfolio-meta ul li span{
	font-weight: 700;
	color: #676767;
}

.zmags-portfolio-information .zmags-single-portfolio-meta ul li a{
	color: #676767;
	-webkit-transition: all .35s;
	   -moz-transition: all .35s;
	    -ms-transition: all .35s;
	     -o-transition: all .35s;
	        transition: all .35s;
}

.zmags-portfolio-information .zmags-single-portfolio-meta .zmags-view-project-btn{
	margin-top: 20px;
	padding: 10px 20px
}

/*Share btn's*/
.zmags-portfolio-information .zmags-share-project{
	padding-left: 0;
}

.zmags-portfolio-information .zmags-share-project .zmags-social-share p{
	font-weight: 700;
	color: #676767;
	margin-bottom: 15px;
}

.zmags-portfolio-information .zmags-share-project ul li{
	float: left;
	margin-right: 15px;
}

.zmags-portfolio-information .zmags-share-project ul li:last-child{
	margin-right: 0;
}

.zmags-portfolio-information .zmags-share-project ul li a{
	font-size: 19px;
}

.zmags-portfolio-information .zmags-share-project ul li a i{
	font-size: 19px;
	color: #818181;
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}

.zmags-portfolio-information .zmags-share-project ul li a:hover i{
}

.zmags-portfolio-information .zmags-share-project .zmags-project-likes p a{
	color: #818181;
	float: right;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

/*Likes Btn*/
.zmags-portfolio-information .zmags-share-project .zmags-project-likes p a:hover{
}

.zmags-portfolio-information .zmags-share-project .zmags-project-likes p a i{
	font-size: 16px;
	margin-right: 5px
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
				Related Works Section
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-related-works{
	background-color: #f5f5f5;
}
/************************* End **************************/



/********************************************************
*														*
*          			Masonry Blog Page					*
*														*
*********************************************************/
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
			Masonry Blog page settings
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-masonry-blog-section{
	background-color: #f5f5f5;
}

.zmags-masonry-blog-content-wrapper{
	overflow: hidden;
	position: relative;
}

.zmags-masonry-blog-content-wrapper .zmags-blog-items{
	width: 33.3333%;
	padding: 0 15px;
	float: left;
	margin-bottom: 30px;
}

.zmags-blog-items-wrapper{
	overflow: hidden;
	position: relative;
	background-color: #ffffff;
}

.zmags-blog-items-wrapper .zmags-blog-post-content{
	display: block;
	position: relative;
	overflow: hidden;
	background-color: transparent;
	padding-bottom: 30px;
}


/* * * * * *  Pagination  * * * * * */
.zmags-blog-pagination-wrapper{
	overflow: hidden;
	margin-top: 50px;
	text-align: center;
}

.zmags-blog-pagination-wrapper ul{
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

.zmags-blog-pagination-wrapper ul li{
	float: left;
	margin-right: 10px;
}

.zmags-blog-pagination-wrapper ul li:last-child{
	margin-right: 0;
}

.zmags-blog-pagination-wrapper ul li a{
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #616161;
	display: block;
	padding: 10px 15px;
	border: 2px solid #dadada;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	     -o-border-radius: 5px;
	        border-radius: 5px;
}

/************************* End **************************/



/********************************************************
*														*
*        			   Blog Single Page 				*
*														*
*********************************************************/
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
				Single Post COntents
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-single-post-wrapper{
	overflow: hidden;
}

/*Blog Post img*/
.zmags-single-post-wrapper .zmags-single-post-img-wrapper{
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}

.zmags-single-post-wrapper .zmags-single-post-img-wrapper img{
	width: 100%;
}

/*Post publish Date*/
.zmags-single-post-wrapper .zmags-single-post-img-wrapper span.blog-publish-date{
	position: absolute;
	top: 15px;
	left: 15px;
	background-color: rgba(40,41,46,0.5);
	color: #ffffff;
	font-size: 13px;
	font-style: italic;
	padding: 5px 10px 
}

/*Single Full Post*/
.zmags-single-post-details{
	overflow: hidden;
	margin-bottom: 50px;
}
/*Post Title*/
.zmags-single-post-details h2.blog-post-title{
	font-size: 24px;
	color: #333;
	margin-top: 0;
	margin-bottom: 5px;
}

/*Post author meta*/
.zmags-single-post-details p.zmags-blog-post-meta{
	font-size: 12px;
	margin-bottom: 0;
}

.zmags-single-post-details p.zmags-blog-post-meta a{
	font-weight: 600;
	font-style: italic;
	color: #818181;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

/*Post Details*/

.zmags-single-post-details .zmags-single-post-text{
	overflow: hidden;
	margin-top: 30px;
}

.zmags-single-post-details .zmags-single-post-text p{
	margin-bottom: 30px;
}

.zmags-single-post-details .zmags-single-post-text p:last-child{
	margin-bottom: 0
}

/* lists */
.zmags-single-post-details ul 
{
    display: block;
    list-style:disc;
    margin-bottom: 30px;
}

.zmags-single-post-details ul li
{
    display: list-item;
    margin-left: 1.25em;
}

.zmags-single-post-details ul ul
{
    list-style: circle;
}

/* centering */
.zmags-single-post-details p.center-block
{
    text-align: center;
}

/* links */
.zmags-single-post-details a
{
    color: #36B9D7;
}

/* blog content color */
.zmags-single-post-text p {
	color:#000;
	}
	
.zmags-single-post-text li {
	color:#000;
	}	

/* ------------------------------------
			Block Quote
------------------------------------ */
.zmags-single-post-details .zmags-single-post-text blockquote{
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	color: #676767;
	margin: 0 30px 30px 30px;
	border: 0px solid;
	position: relative;
	padding: 0 30px;
}

.zmags-single-post-details .zmags-single-post-text blockquote:before{
	content: '\f10d';
	font-family:'FontAwesome';
	font-size: 18px;
	color: #dadada;
	position: absolute;
	top: 0;
	left: 0;
}

.zmags-single-post-details .zmags-single-post-text blockquote:after{
	content: '\f10e';
	font-family:'FontAwesome';
	font-size: 18px;
	color: #dadada;
	position: absolute;
	bottom: 20px;
	right: 0;
}

.zmags-single-post-details .zmags-single-post-text blockquote span.zmags-bquote-person{
	display: block;
	font-size: 14px;
	font-family: 'Raleway', sans-serif;
	margin-top: 10px;
	font-weight: 600;
}
/************************* End **************************/


/*-------------- Blog Post Meta --------------*/
.zmags-single-post-wrapper .zmags-single-blog-post-meta{
	padding: 30px 15px;
	border-top: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
	overflow: hidden;
	margin-bottom: 50px;
}

/*Share Post*/
.zmags-single-blog-post-meta .zmags-post-tag-share {
	padding-left: 0;
}

.zmags-single-blog-post-meta .zmags-post-tag-share p.arviv-single-post-tags span{
	font-size: 14px;
	font-weight: 700;
	color: #676767;
}

.zmags-single-blog-post-meta .zmags-post-tag-share p.arviv-single-post-tags a{
	color: #818181;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

.zmags-single-blog-post-meta .zmags-post-tag-share p.arviv-single-post-tags a:hover{
}

.zmags-single-blog-post-meta .zmags-post-tag-share .zmags-social-share p{
	font-weight: 700;
	color: #676767;
	margin-bottom: 15px;
}

.zmags-single-blog-post-meta .zmags-post-tag-share .zmags-social-share ul li{
	float: left;
	margin-right: 15px;
}

.zmags-single-blog-post-meta .zmags-post-tag-share .zmags-social-share ul li:last-child{
	margin-right: 0;
}

.zmags-single-blog-post-meta .zmags-post-tag-share .zmags-social-share ul li a{
	font-size: 16px;
}

.zmags-single-blog-post-meta .zmags-post-tag-share .zmags-social-share ul li a i{
	font-size: 16px;
	color: #818181;
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}

/*Comment Number*/
.zmags-single-blog-post-meta .zmags-post-comment-count{
	overflow: hidden;
}

.zmags-single-blog-post-meta .zmags-post-comment-count a{
	color: #818181;
	float: right;
	font-weight: 700;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

.zmags-single-blog-post-meta .zmags-post-comment-count a i{
	color: #818181;
	font-size: 16px;
	margin-right: 5px;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}


/* ------------------------------------
			Blog Post Comments
------------------------------------ */
.zmags-single-post-wrapper .zmags-single-post-comments{
	overflow: hidden;
	border-bottom: 1px solid #eaeaea;
}

.zmags-single-post-wrapper .zmags-single-post-comments h3{
	font-size: 18px;
	color: #818181;
	margin-top: 0;
	margin-bottom: 30px;
}

/*Comment item wrapper*/
.zmags-single-post-wrapper .zmags-single-post-comments .zmags-post-comments-wrapper{
	overflow: hidden;
}

.zmags-post-comments-wrapper .zmags-post-comments{
	margin-bottom: 40px;
	overflow: hidden;
}

/*Comment item reply*/
.zmags-post-comments-wrapper .zmags-post-comments.zmags-commnet-reply{
	margin-left: 35px;
}

/*Comment item reply of reply*/
.zmags-post-comments-wrapper .zmags-post-comments.zmags-commnet-reply-reply{
	margin-left: 70px;
}

/*Comment user img*/
.zmags-post-comments-wrapper .zmags-post-comments .zmags-comment-author-img{
	text-align: center;
	height: 70px;
	overflow: hidden;
}

/*Comment user text*/
.zmags-post-comments-wrapper .zmags-post-comments .zmags-comment-text{
	padding-right: 0;
}

.zmags-post-comments-wrapper .zmags-post-comments .zmags-comment-text .zmags-comment-meta{
	margin-bottom: 15px;
	overflow: hidden;
}

.zmags-post-comments-wrapper .zmags-post-comments .zmags-comment-text .zmags-comment-meta h3.comment-user-name{
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 600;
	width: 45%;
	display: inline-block;
	float: left;
	margin-top: 0;
	margin-bottom: 0;
}


.zmags-post-comments-wrapper .zmags-post-comments .zmags-comment-text .zmags-comment-meta p.commnet-post-date{
	font-family: 'Raleway', sans-serif;
	font-size: 12px;
	display: inline-block;
	float: left;
	margin-bottom: 0;
	text-align: right;
	width: 40%;
}

/*Comment reply btn*/
.zmags-post-comments-wrapper .zmags-post-comments .zmags-comment-text .zmags-comment-meta a.comment-reply-btn{
	font-size: 12px;
	color: #818181;
	float: left;
	display: inline-block;
	text-align: right;
	width: 15%;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

.zmags-post-comments-wrapper .zmags-post-comments .zmags-comment-text .zmags-comment-meta a.comment-reply-btn i{
	font-size: 14px;
	color: #818181;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

/* ------------------------------------
			Comment Form
------------------------------------ */
.zmags-single-post-wrapper .zmags-post-comment-form{
	overflow: hidden;
}

.zmags-single-post-wrapper .zmags-post-comment-form h3{
	font-size: 18px;
	color: #818181;
	margin-bottom: 30px;
	margin-top: 50px;
}

.zmags-post-comment-form .zmags-comment-form .zmags-input-fields{
	margin-bottom: 20px;
}

.zmags-post-comment-form .zmags-comment-form .zmags-input-fields label{
	display: block;
	font-size: 14px;
	font-family: 'Raleway',sans-serif;
	font-weight: 400;
	color: #818181;
	margin-bottom: 10px;
}

.zmags-post-comment-form .zmags-comment-form .zmags-input-fields input{
	width: 100%;
	height: 40px;
	background-color: transparent;
	border: 1px solid #dadada;
	padding-left: 15px;
	padding-right: 15px;
	color: #818181;
}

.zmags-post-comment-form .zmags-comment-form .zmags-input-fields textarea{
	width: 100%;
	background-color: transparent;
	border: 1px solid #dadada;
	padding: 15px;
	color: #818181;
}

.zmags-post-comment-form .zmags-comment-form input[type='submit']{
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	padding: 15px 30px;
	text-align: center;
	display: inline-block;
	outline: 0;
	border: 0px solid;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
		 -o-border-radius: 5px;
		 	border-radius: 5px;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}


.zmags-post-comment-form .zmags-comment-form .zmags-input-fields input[type='submit']:hover{
	color: #ffffff;
	background-color: #ff653d;
}
/************************* End **************************/


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
					Sidebar Area
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.zmags-sidebar-widget-wrapper{
	overflow: hidden;
}

.zmags-sidebar-widget-wrapper .zmags-sidebar-single-widget{
	overflow: hidden;
	margin-bottom: 50px;
}

.zmags-sidebar-widget-wrapper .zmags-sidebar-single-widget:last-child{
	margin-bottom: 0;
}

.zmags-sidebar-widget-wrapper .zmags-sidebar-single-widget h3.zmags-widget-title{
	font-size: 18px;
	color: #333333;
	margin-top: 0;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.zmags-sidebar-widget-wrapper .zmags-sidebar-single-widget h3.zmags-widget-title:after{
	content: '';
	width: 30px;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
}

/* ------------------------------------
			Search Bar widget
------------------------------------ */
.zmags-sidebar-widget-wrapper .zmags-searchbar form{
	width: 100%;
	height: 40px;
	background-color: transparent;
	border: 1px solid #dadada;
}

.zmags-sidebar-widget-wrapper .zmags-searchbar form input[type='text']{
	width: 80%;
	height: 40px;
	display: inline-block;
	padding: 0 15px;
	outline: 0;
	border: 0;
	background-color: transparent;
	color: #818181;
	float: left;
}

.zmags-sidebar-widget-wrapper .zmags-searchbar form input[type='submit']{
	width: 15%;
	float: right;
	height: 40px;
	display: inline-block;
	outline: 0;
	border: 0;
	background-color: transparent;
	background: url(../images/controls/search.png) no-repeat;
	background-position: 20px center;
}

/* ------------------------------------
			Category
------------------------------------ */
.zmags-sidebar-widget-wrapper .zmags-category-widget li{
	padding: 10px 0;
	border-bottom: 1px solid #dadada;
}

.zmags-sidebar-widget-wrapper .zmags-category-widget li:last-child{
	border-bottom: 0px solid;
}

.zmags-sidebar-widget-wrapper .zmags-category-widget li a{
	color: #818181;
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}

/* ------------------------------------
			Recent Posts
------------------------------------ */
.zmags-recent-post-widget .zmags-recent-post-wrapper{
	overflow: hidden;
}

.zmags-recent-post-widget .zmags-recent-post-wrapper ul li{
	padding: 20px 0;
	border-bottom: 1px solid #dadada;
	overflow: hidden;
}

.zmags-recent-post-widget .zmags-recent-post-wrapper ul li:last-child{
	border-bottom: 0px solid;
}

.zmags-recent-post-widget .zmags-recent-post-wrapper ul li .zmags-recent-posts{
	width: 80%;
	float: left;
}

.zmags-recent-post-widget .zmags-recent-post-wrapper ul li .zmags-recent-posts h3{
	font-size: 16px;
	margin-top: 0;
	margin-bottom: 5px;
}

.zmags-recent-post-widget .zmags-recent-post-wrapper ul li .zmags-recent-posts h3 a{
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
}

.zmags-recent-post-widget .zmags-recent-post-wrapper ul li .zmags-recent-posts p{
	font-size: 12px;
	color: #818181;
	margin-top: 0;
	margin-bottom: 0px;
}

.zmags-recent-post-widget .zmags-recent-post-wrapper ul li a.zmags-recent-posts-comment-count{
	width: 20%;
	float: left;
	font-size: 16px;
	color: #818181;
	font-weight: 700;
	text-align: right;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

.zmags-recent-post-widget .zmags-recent-post-wrapper ul li a.zmags-recent-posts-comment-count i{
	font-size: 18px;
	color: #818181;
	margin-right: 5px;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

.zmags-recent-posts .careers p {
	font-size:12px;
	color:#818181;}

.zmags-recent-post-widget .zmags-recent-post-wrapper .careers ul li{
	padding: 10px 0;
	border-bottom: none;
	font-size:12px;
	color:#818181;
	list-style:disc;
	list-style-type:disc;
	overflow:auto;
}

/* ------------------------------------
			Flickr Widget
------------------------------------ */
.zmags-flickr-photo-widget #flickr-gallery{
	overflow: hidden;
}

.zmags-flickr-photo-widget #flickr-gallery li{
	width: 70px;
	height: 70px;
	margin: 0 10px 20px;
	float: left;
	list-style: none;
}

.zmags-flickr-photo-widget #flickr-gallery li img{
	width: 100%;
}

/* ------------------------------------
			Tag Widget
------------------------------------ */
.zmags-tags-widget .zmags-tag-cloud{
	overflow: hidden;
}

.zmags-tags-widget .zmags-tag-cloud a{
	color: #818181;
	font-size: 13px;
	font-style: italic;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}
/************************* End ***************************/



/********************************************************
*														*
*					       Preloader  					*
*														*
*********************************************************/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fefefe;
    z-index: 99999;
    height: 100%;
    width: 100%;
    overflow: hidden !important;
}

.status {
    width: 128px;
    height: 128px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../images/controls/preloader.gif);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
            background-size: cover;
    margin: -70px 0 0 -70px;
}
/************************* End ***************************/


/********************************************************
*														*
*				       Scroll To Top 					*
*														*
*********************************************************/
#scrollUp {
    bottom: 242px;    /* Change this number to fit to attach with footer section */
    right: 50%;
    height: 35px;  /* Height of image */
    width: 35px; /* Width of image */
    position: absolute !important;
    background: url(../images/controls/top.png) no-repeat;
    -webkit-transform: translateX(50%);
       -moz-transform: translateX(50%);
        -ms-transform: translateX(50%);
         -o-transform: translateX(50%);
            transform: translateX(50%);
}
/************************* End ***************************/


/********************************************************
*														*
*			       Owl Slider Pagination 				*
*														*
*********************************************************/
.owl-theme .owl-controls {
  margin-top: 30px;
  text-align: center;
}

.owl-theme .owl-controls .owl-page span {
  background-color: transparent;
  border-radius: 0px;
  display: block;
  height: 10px;
  margin: 5px 5px;
  opacity: 1;
  width: 10px;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}

.owl-theme .owl-controls .owl-page.active span {
  border: 1px solid rgba(0,0,0,0);

}
/************************* End ***************************/



/********************************************************
*														*
*					       Footer  						*
*														*
*********************************************************/
footer{
	background-color: #28292e;
	padding: 60px;
	overflow: hidden;
}

footer .zmags-footer-content{
	text-align: center;
}

footer .zmags-footer-logo{
	text-align: center;
	margin-bottom: 20px;
}

footer p{
	text-align: center;
	color: #818181;
	font-size: 11px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

footer ul {
	display: inline-block;
}

footer ul li{
	float: left;
	margin-right: 15px;
}

footer ul li:last-child{
	margin-right: 0;
}

footer ul li a{
	font-size: 21px;
}

footer ul li a i{
	font-size: 21px;
	color: #818181;
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}
/************************* End ***************************/

/* Login lightbox */
.loginBox{
	padding: 40px 11% 80px 11%;
	min-height:340px;

	background: #ffffff;
	border-top: 14px solid #9ec002;
	-moz-box-shadow: 0px 0 40px -12px #ccc;
	-webkit-box-shadow: 0px 0 40px -12px #ccc;
	box-shadow: 0px 0 40px -12px #ccc;
	text-align: center;
	overflow:hidden;
}

.loginBox .zmags-btn-round {
	display: block;
	margin-top:20px;
	bottom: -20px;
	position: relative;
}

.pubLoginArea img, .creatorLoginArea img{
	margin: 20px auto 0;
}

.creatorLoginArea .loginBox{
	border-color:#37bad8;
}

.loginBox h2{
	font-size:24px;
	text-transform:uppercase;
	margin-top:32px;
	font-weight: 600;
	font-family: "proxima-nova-n6", "proxima-nova", sans-serif;
}
.loginBox p.fLeft {
	margin-top:13px;
	text-align: left;
	margin-left: 9%;
	text-transform: uppercase;
	line-height: 1.2;
}
.loginBox p.fLeft a{
	font-weight:600;
	font-family: "proxima-nova-n6", "proxima-nova", sans-serif;
	text-decoration:underline;
}


/* Customer Support Lightboxes */
.lightbox-zenbox-iframe-container {
    position: relative;
    margin:auto;
    width:615px; 
}

.lightbox-zenbox-iframe {
    display:block; 
    margin:auto;
    width:615px; 
    height:515px; 
}

.lightbox-training-iframe-container {
    position: relative;
    margin:auto;
    width:700px; 
    background-color: #fff;
}

.lightbox-training-iframe {
    display:block; 
    margin:auto;
    width:700px; 
    height:420px; 
}

/********************************************************
*														*
*					Parallx Sections 					*
*														*
*********************************************************/
/*Features Section*/
.zmags-features-section{
	background: url(../images/placeholder-img.jpg) no-repeat;
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	padding-bottom: 30px;
	overflow: hidden;
}

/*Counter Section*/
.zmags-counter-section{
	background: url(../images/placeholder-img.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 60px 0;
	overflow: hidden;
}

/*Contact Section*/
.zmags-contact-section{
	background: url(../images/contact_bg.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

.zmags-contact-section-single-page{
	background: url(../images/contact_bg_single.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/*Portfolio Page*/
header.zmags-portfolio-page{
	background: url(../images/placeholder-img.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/*Portfolio Single Page*/
header.zmags-portfolio-single-page{
	background: url(../images/placeholder-img.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/*Blog Page*/
header.zmags-masonry-blog-page{
	background: url(../images/placeholder-img.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/*Blog Single Page*/
header.zmags-blog-single-page{
	background: url(../images/placeholder-img.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/*News Page*/
header.zmags-masonry-news-page{
	background: url(../images/placeholder-img.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/*News Single Page*/
header.zmags-news-single-page{
	background: url(../images/placeholder-img.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/*Careers Single Page*/
header.zmags-careers-single-page{
	background: url(../images/careers_header.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/*KB Single Page*/
header.zmags-kb-single-page{
	background: url(../images/knowledge_base_header.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.kb-creator {
    display:inline-block; 
    width: 46%; 
    margin-right: 5%; 
    min-width: 320px;
}

.kb-publicator {
    display:inline-block; 
    width: 48%; 
    min-width: 320px;
}

/*Customer Success*/
header.zmags-customer-success-single-page{
	background: url(../images/customer_success_header.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/*Customer Success*/
header.zmags-etail-east-single-page{
	background: url(../images/etail_east_header.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/*Creator 30 Day Free Trial*/
header.zmags-creator-30-day-free-trial-single-page{
	background: url(../images/creator-30-day-free-trial-header.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/*Resources Page*/
header.zmags-resources-single-page{
	background: url(../images/resources_header.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/************************* End **************************/
/* webinar popup */
.white-popup {
    position: relative;
    background: #FFF;
    padding: 20px;
    width:auto;
    max-width: 500px;
    margin: 20px auto;
    text-align: center;
}
.white-popup img {
    display: block;
    margin: 20px auto;
}