
/* ------------------------------------------------------------- *
 * Info boxes
/* ------------------------------------------------------------- */

.info-box {
	position: relative;
	overflow: hidden;
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.info-box a {
	color: #545A5F;
}
.info-box .info-box-icon {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	text-align: center;
	font-size: 48px;
	color: #545A5F;
	overflow: hidden;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
/* Hover animation (CSS Animation Generator: https://coveloping.com/tools/css-animation-generator) */
.info-box:hover .info-box-icon {
	-webkit-animation-name: shake; 
	animation-name: shake; 
	-webkit-animation-duration: 0.7s; 
	animation-duration: 0.7s; 
	-webkit-animation-fill-mode: both; 
	animation-fill-mode: both; 
	-webkit-animation-timing-function: ease-in-out; 
	animation-timing-function: ease-in-out; 
} 
@-webkit-keyframes shake { 
	0%, 100% {-webkit-transform: translateX(0);} 
	10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-2px);} 
	20%, 40%, 60%, 80% {-webkit-transform: translateX(2px);} 
} 
@keyframes shake { 
	0%, 100% {transform: translateX(0);} 
	10%, 30%, 50%, 70%, 90% {transform: translateX(-2px);} 
	20%, 40%, 60%, 80% {transform: translateX(2px);} 
}

.info-box-info {
}
.info-box-title {
	margin-top: 5px;
	margin-bottom: 20px;
	font-size: 18px;
}
.info-box-text { 
	color: #8E969C;
}

/* info-box-white (if backgrondi is dark use class "info-box-white") */
.info-box-white, .info-box-white a, .info-box-white .info-box-icon, .info-box-white .info-box-text {
	color: #FFF;
}

/* Info box-1 styles */
/* square-icon */
.info-box .square-icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	background-color: #545A5F;
	font-size: 24px;
	color: #FFF;
}
.info-box.info-box-white .square-icon { /* if backgrondi is dark use class "info-box-white" */
	background-color: #EEE;
	color: #545A5F;
}
.info-box .square-icon:before { 
	position: absolute;
	content: '';
	width: 50%;
	height: 100%;
	left: 0px;
	top: 0px;
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.11);
}
.info-box.info-box-white .square-icon:before {  /* if backgrondi is dark use class "info-box-white" */
	background-color: rgba(0, 0, 0, 0.04);
}

/* square-border-icon */
.info-box .square-border-icon {
	width: 60px;
	height: 60px;
	line-height: 54px;
	background-color: transparent;
	font-size: 24px;
	color: #545A5F;
	border: 3px solid #545A5F;
}
.info-box.info-box-white .square-border-icon {  /* if backgrondi is dark use class "info-box-white" */
	border-color: #EEE;
	color: #EEE;
}

/* half-square-icon */
.info-box .half-square-icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	background-color: #545A5F;
	font-size: 24px;
	color: #FFF;
	-webkit-border-radius: 3px 18px 3px 18px;
	-moz-border-radius: 3px 18px 3px 18px;
	border-radius: 3px 18px 3px 18px;
}
.info-box.info-box-white .half-square-icon { /* if backgrondi is dark use class "info-box-white" */
	background-color: #EEE;
	color: #545A5F;
}
.info-box .half-square-icon:before { 
	position: absolute;
	content: '';
	width: 50%;
	height: 100%;
	left: 0px;
	top: 0px;
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.11);
}
.info-box.info-box-white .half-square-icon:before {  /* if backgrondi is dark use class "info-box-white" */
	background-color: rgba(0, 0, 0, 0.04);
}

/* square-border-icon */
.info-box .half-square-border-icon {
	width: 60px;
	height: 60px;
	line-height: 54px;
	background-color: transparent;
	font-size: 24px;
	color: #545A5F;
	border: 3px solid #545A5F;
	-webkit-border-radius: 3px 18px 3px 18px;
	-moz-border-radius: 3px 18px 3px 18px;
	border-radius: 3px 18px 3px 18px;
}
.info-box.info-box-white .half-square-border-icon {  /* if backgrondi is dark use class "info-box-white" */
	border-color: #EEE;
	color: #EEE;
}

/* rounded-icon */
.info-box .rounded-icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	background-color: #545A5F;
	font-size: 24px;
	color: #FFF;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.info-box.info-box-white .rounded-icon {  /* if backgrondi is dark use class "info-box-white" */
	background-color: #EEE;
	color: #545A5F;
}
.info-box .rounded-icon:before {
	position: absolute;
	content: '';
	width: 50%;
	height: 100%;
	left: 0px;
	top: 0px;
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.1);
}
.info-box.info-box-white .rounded-icon:before {  /* if backgrondi is dark use class "info-box-white" */
	background-color: rgba(0, 0, 0, 0.04);
}

/* rounded-border-icon */
.info-box .rounded-border-icon {
	width: 60px;
	height: 60px;
	line-height: 54px;
	background-color: transparent;
	font-size: 24px;
	color: #545A5F;
	border: 3px solid #545A5F;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.info-box.info-box-white .rounded-border-icon {  /* if backgrondi is dark use class "info-box-white" */
	border-color: #EEE;
	color: #EEE;
}

/* info box types */
/* info box-1 */
.info-box-1 {
}

/* info box-2 */
.info-box-2 {
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 30px;
}

/* info box-3 */
.info-box-3 {
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 30px;
	border: 3px solid #545A5F;
}
.info-box-3.info-box-white {  /* if backgrondi is dark use class "info-box-white" */
	border-color: #EEE;
}

/* info box-4 */
.info-box-4 {
	padding-left: 3px;
	text-align: left;
}
.info-box-4 .info-box-icon {
	float: left;
	margin-right: 20px;
	margin-bottom: 0;
	font-size: 34px;
}
.info-box-4 .rounded-icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 20px;
}
.info-box-4 .rounded-border-icon {
	width: 55px;
	height: 55px;
	line-height: 49px;
	font-size: 20px;
}
.info-box-4 .square-icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
}
.info-box-4 .square-border-icon {
	width: 50px;
	height: 50px;
	line-height: 44px;
	font-size: 20px;
}
.info-box-4 .half-square-icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
	-webkit-border-radius: 2px 18px 2px 18px;
	-moz-border-radius: 2px 18px 2px 18px;
	border-radius: 2px 18px 2px 18px;
}
.info-box-4 .half-square-border-icon {
	width: 50px;
	height: 50px;
	line-height: 42px;
	font-size: 20px;
	-webkit-border-radius: 2px 18px 2px 18px;
	-moz-border-radius: 2px 18px 2px 18px;
	border-radius: 2px 18px 2px 18px;
}
.info-box-4 .info-box-title {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 20px;
	font-weight: 400;
}
.info-box-4 .info-box-info {
	display: table;
}

/* info box-5 */
.info-box-5 {
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 15px;
	text-align: left;
}
.info-box-5 .info-box-icon {
	float: left;
	margin-right: 20px;
	margin-bottom: 0;
	font-size: 34px;
}
.info-box-5 .rounded-icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
}
.info-box-5 .rounded-border-icon {
	width: 50px;
	height: 50px;
	line-height: 44px;
	font-size: 20px;
}
.info-box-5 .square-icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
}
.info-box-5 .square-border-icon {
	width: 50px;
	height: 50px;
	line-height: 43px;
	font-size: 22px;
}
.info-box-5 .half-square-icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
	-webkit-border-radius: 3px 10px 3px 10px;
	-moz-border-radius: 3px 10px 3px 10px;
	border-radius: 3px 10px 3px 10px;
}
.info-box-5 .half-square-border-icon {
	width: 50px;
	height: 50px;
	line-height: 43px;
	font-size: 22px;
	-webkit-border-radius: 3px 10px 3px 10px;
	-moz-border-radius: 3px 10px 3px 10px;
	border-radius: 3px 10px 3px 10px;
}
.info-box-5 .info-box-title {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 18px;
}
.info-box-5 .info-box-info {
	display: table;
}

/* info box-6 */
.info-box-6 {
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 15px;
	text-align: left;
	border: 3px solid #545A5F;
}
.info-box-6.info-box-white {  /* if backgrondi is dark use class "info-box-white" */
	border-color: #EEE;
}
.info-box-6 .info-box-icon {
	float: left;
	margin-right: 20px;
	margin-bottom: 0;
	font-size: 38px;
}
.info-box-6 .rounded-icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
}
.info-box-6 .rounded-border-icon {
	width: 50px;
	height: 50px;
	line-height: 43px;
	font-size: 22px;
}
.info-box-6 .square-icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
}
.info-box-6 .square-border-icon {
	width: 50px;
	height: 50px;
	line-height: 43px;
	font-size: 22px;
}
.info-box-6 .half-square-icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
	-webkit-border-radius: 3px 10px 3px 10px;
	-moz-border-radius: 3px 10px 3px 10px;
	border-radius: 3px 10px 3px 10px;
}
.info-box-6 .half-square-border-icon {
	width: 50px;
	height: 50px;
	line-height: 43px;
	font-size: 22px;
	-webkit-border-radius: 3px 10px 3px 10px;
	-moz-border-radius: 3px 10px 3px 10px;
	border-radius: 3px 10px 3px 10px;
}
.info-box-6 .info-box-title {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 18px;
}
.info-box-6 .info-box-info {
	display: table;
}


/* --------------------------------------------------- *
 * Isotope (more info: http://isotope.metafizzy.co/)
/* --------------------------------------------------- */

.isotope {
	overflow: hidden;
	margin-top: 80px;
}

/* isotope filter */
.isotope-filter {
	margin-bottom: 60px;
}
@media (max-width : 767px) {
	.filter-heading {
		display: none;
	}
}

/* isotope filter toggle button */
.isotope-filter .filter-toggle-btn {
	position: relative;
	width: 100%;
	background-color: #070F13 !important;
	margin: 0 0 5px 0;
	padding: 10px 30px;
	font-size: 14px;
	font-weight: 500;
	color: #FFF;
	border-radius: 4px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.isotope-filter .filter-toggle-btn > i {
	margin-left: 5px;
	font-size: 16px;
}
.isotope-filter .navbar-collapse {
	border-top: none !important;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/* isotope filter links */
.isotope-filter-links {
	font-size: 0;
}
.isotope-filter-links > a {
	position: relative;
	display: inline-block;
	padding: 6px 15px;
	text-decoration: none;
	font-size: 20px;
	font-weight: 500;
	color: #070F13;
	border: 2px solid rgba(132, 137, 138, 0.3);
	border-radius: 4px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.isotope-filter-links > a + a {
	margin: 0 0 0 8px;
}
.isotope-filter-links > a.active,
.isotope-filter-links > a:hover {
	background-color: #f7465b;
	color: #FFF;
	border-color: #f7465b !important;
}

/* isotope items wrap */
.isotope-items-wrap {
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

/* isotope item */
.isotope-item {
	float: left;
	width: 25%;
}

/* isotope gutter (add more space between isotope items) */
/* gutter-1 */
.isotope.gutter-1 .isotope-item { padding: 0 0 6px 6px; }
.isotope.gutter-1 { margin-left: -6px; }
.isotope.gutter-1 .isotope-filter { margin-left: 6px; }

/* gutter-2 */
.isotope.gutter-2 .isotope-item { padding: 0 0 25px 25px; }
.isotope.gutter-2 { margin-left: -25px; }
.isotope.gutter-2 .isotope-filter { margin-left: 25px; }

/* gutter-3 */
.isotope.gutter-3 .isotope-item { padding: 0 0 40px 40px; }
.isotope.gutter-3 { margin-left: -40px; }
.isotope.gutter-3 .isotope-filter { margin-left: 40px; }


/* isotope columns */
.isotope.col-1 .isotope-item {
	width: 100%;
}
.isotope.col-2 .isotope-item {
	width: 50%;
}
.isotope.col-3 .isotope-item {
	width: 33.33333333%;
}
.isotope.col-4 .isotope-item {
	width: 25%;
}
.isotope.col-5 .isotope-item {
	width: 20%;
}
.isotope.col-6 .isotope-item {
	width: 16.66666666666667%;
}

/* isotope grid sizer */
.grid-sizer {
	height: auto;
}
.isotope.col-1 .grid-sizer {
	width: 100%;
}
.isotope.col-2 .grid-sizer {
	width: 50%;
}
.isotope.col-3 .grid-sizer {
	width: 33.33333333%;
}
.isotope.col-4 .grid-sizer {
	width: 25%;
}
.isotope.col-5 .grid-sizer {
	width: 20%;
}
.isotope.col-6 .grid-sizer {
	width: 16.66666666666667%;
}

/* isotope width2 item (alternative width) */
.isotope.col-3 .width2 {
	width: 66.66666666%;
}
.isotope.col-4 .width2 {
	width: 50%;
}
.isotope.col-5 .width2 {
	width: 40%;
}
.isotope.col-6 .width2 {
	width: 33.33333333%;
}


/* isotope on smaller screens 
=============================== */
@media (max-width: 1600px) {
	.isotope.col-5 .isotope-item,
	.isotope.col-6 .isotope-item,

	.isotope.col-5 .grid-sizer,
	.isotope.col-6 .grid-sizer {
		width: 25%;
	}
	.isotope.col-5 .width2,
	.isotope.col-6 .width2 {
		width: 50%;
	}
}

@media (max-width: 1200px) {
	.isotope.gutter-2 .isotope-filter,
	.isotope.gutter-3 .isotope-filter {
		margin-left: 15px;
	}
	.isotope.gutter-2,
	.isotope.gutter-3 {
	   margin-left: -15px;
	}
	.isotope.gutter-2 .isotope-item,
	.isotope.gutter-3 .isotope-item {
	   padding: 0 0 15px 15px;
	}

	.isotope.col-4 .isotope-item,
	.isotope.col-5 .isotope-item,
	.isotope.col-6 .isotope-item,

	.isotope.col-4 .grid-sizer,
	.isotope.col-5 .grid-sizer,
	.isotope.col-6 .grid-sizer {
		width: 33.33333333%;
	}
	.isotope.col-4 .width2,
	.isotope.col-5 .width2,
	.isotope.col-6 .width2 {
		width: 66.66666666%;
	}
}

@media (max-width: 992px) {
	.isotope.col-3 .isotope-item,
	.isotope.col-4 .isotope-item,
	.isotope.col-5 .isotope-item,
	.isotope.col-6 .isotope-item,

	.isotope.col-3 .grid-sizer,
	.isotope.col-4 .grid-sizer,
	.isotope.col-5 .grid-sizer,
	.isotope.col-6 .grid-sizer,

	.isotope.col-3 .width2,
	.isotope.col-4 .width2,
	.isotope.col-5 .width2,
	.isotope.col-6 .width2 {
		width: 50%;
	}
}

@media (max-width: 768px) {
	.isotope-filter {
		background-color: transparent;
	}
	.isotope-filter-links {
		margin: 0 2px;
	}
	.isotope-filter-links > a {
		display: block;
		margin: 3px 0 !important;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.isotope.col-3 .isotope-item,
	.isotope.col-4 .isotope-item,
	.isotope.col-5 .isotope-item,
	.isotope.col-6 .isotope-item,

	.isotope.col-3 .grid-sizer,
	.isotope.col-4 .grid-sizer,
	.isotope.col-5 .grid-sizer,
	.isotope.col-6 .grid-sizer,

	.isotope.col-3 .width2,
	.isotope.col-4 .width2,
	.isotope.col-5 .width2,
	.isotope.col-6 .width2 {
		width: 100%;
	}
}


/* ------------------------------------------------------------- *
 * Portfolio
/* ------------------------------------------------------------- */

.portfolio-section {
}
.portfolio-section .heading {
	margin-bottom: 30px;
}

/* Portfolio item */
.portfolio-item {
	position: relative;
	background-color: #F2F2F2;
	overflow: hidden;
}
.portfolio-item .item-link {
	display: block;
}
.portfolio-item .cover {
	z-index: 1;
	opacity: 0;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);

	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.portfolio-item:hover .cover {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.portfolio-item .item-img {width: 100% !important;max-width: 100%;}
.portfolio-item:hover .item-img {
}

/* Portfolio item info */
.portfolio-item .item-info {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	padding: 0 15px;
	text-align: center;
	z-index: 2;
	opacity: 0;
	-webkit-transform: translate(-50%, -50%) scale(0.8);
	-moz-transform: translate(-50%, -50%) scale(0.8);
	-o-transform: translate(-50%, -50%) scale(0.8);
	-ms-transform: translate(-50%, -50%) scale(0.8);
	transform: translate(-50%, -50%) scale(0.8);

	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.portfolio-item:hover .item-info {
	opacity: 1;
	-webkit-transform: translate(-50%, -50%) scale(1);
	-moz-transform: translate(-50%, -50%) scale(1);
	-o-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}
.portfolio-item .item-info-title {
	margin: 0 0 5px 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
}
.portfolio-item .item-info-text {
	margin: 0;
	font-size: 14px;
}


/* ---------------------------------------------------------------- *
 *  Magnific Popup: http://dimsemenov.com/plugins/magnific-popup/
/* ---------------------------------------------------------------- */

.mfp-bg {
	background: #000;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 99999;
}
.mfp-wrap {
	z-index: 99999;
}
.mfp-container {
	padding: 0 15px;
}

.mfp-figure:after {
	top: 80px;
	bottom: 80px;
}
img.mfp-img {
	padding: 80px 0 80px;
}

.mfp-close, .mfp-close:focus, .mfp-close:active {
	top: 36px;
}
.mfp-bottom-bar {
	margin-top: -75px;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
}

/* left/right navigation buttons */
.mfp-custom-arrow {
	position: absolute;
	display: inline-block;
	top: 50%;
	width: 90px;
	height: 110px;
	background-color: rgba(0, 0, 0, 0);
	margin-top: -55px;
	padding: 0;
	z-index: 9999;
	border: none;

	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media (max-width: 1400px) {
	.mfp-custom-arrow {
		display: none;
	}
}
.mfp-custom-arrow:hover {
	opacity: .7;
}
.mfp-custom-arrow:focus {
	outline: none;
}

.mfp-custom-arrow-left {
	left: 0;
}
.mfp-custom-arrow-left:before {
	content: "\f053";
	font-size: 24px;
	color: #8E969C;
}

.mfp-custom-arrow-right {
	right: 0;
}
.mfp-custom-arrow-right:before {
	content: "\f054";
	font-size: 24px;
	color: #8E969C;
}

/* fade in navigation */
.mfp-fadein .mfp-figure { 
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;

	-webkit-animation-duration: 0.5s;
	-moz-animation-duration: 0.5s;
	-ms-animation-duration: 0.5s;
	-o-animation-duration: 0.5s;
	animation-duration: 0.5s;

  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0;}	
	100% {opacity: 1;}
}
@-moz-keyframes fadeIn {
	0% {opacity: 0;}	
	100% {opacity: 1;}
}
@-o-keyframes fadeIn {
	0% {opacity: 0;}	
	100% {opacity: 1;}
}
@keyframes fadeIn {
	0% {opacity: 0;}	
	100% {opacity: 1;}
}

/* on smaller devices */
@media (max-width: 768px) {
	.mfp-bottom-bar {
		padding: 0 10px;
	}
	.mfp-counter {
		right: 10px;
	}
	.mfp-close, .mfp-close:focus {
		right: 0;
	}
}

/* Inline popup (type inline) 
------------------------------- */
.inline-popup {
	position: relative;
	max-width: 1170px;
	height: auto;
	background-color: transparent;
	padding: 0px;
	margin: 70px auto;
}
.inline-popup-inner {
}

.inline-popup-image {
	width: 100%;
	height: auto;
	background-size: contain;
	padding-bottom: 50%;
}

/* Close button */
.inline-popup .inline-popup-close {
	position: absolute;
	top: -50px;
	right: 15px;
	text-decoration: none;
	font-size: 32px;
	color: #545A5F;
}
.inline-popup .mfp-close {
	display: none;
}

/* Fade-zoom animation for first dialog */
/* start state */
.mfp-fade-zoom .inline-popup {
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out; 
	-moz-transition: all 0.4s ease-in-out; 
	-o-transition: all 0.4s ease-in-out; 
	transition: all 0.4s ease-in-out; 

	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
}

/* animate in */
.mfp-fade-zoom.mfp-ready .inline-popup {
	opacity: 1;
	-webkit-transform: scale(1); 
	-moz-transform: scale(1); 
	-ms-transform: scale(1); 
	-o-transform: scale(1); 
	transform: scale(1); 
}

/* animate out */
.mfp-fade-zoom.mfp-removing .inline-popup {
	opacity: 0;
	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
}

/* Dark overlay, start state */
.mfp-fade-zoom.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out; 
	-moz-transition: opacity 0.3s ease-out; 
	-o-transition: opacity 0.3s ease-out; 
	transition: opacity 0.3s ease-out;
}
/* animate in */
.mfp-fade-zoom.mfp-ready.mfp-bg {
	background: #FFF;
	opacity: 0.99;
}
/* animate out */
.mfp-fade-zoom.mfp-removing.mfp-bg {
	opacity: 0;
}

