/* PROMO BOXES */

/**
 * Reset Link Styles
 */
.vc-promo-box:hover,
.vc-promo-box:focus {
	opacity: 1;
	text-decoration: none;
}

/**
 * Global Promo Styles
 */
.vc-promo-box,
.vc-promo-box__background,
.vc-promo-box__content,
.vc-promo-box__header,
.vc-promo-box__text {
	backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
}
.vc-promo-box {
	position: relative;
	display: block;
	/* max-height: 450px; */
	text-align: center;
	background-size: cover;
	background-position: center;
	background-color: rgba(128, 128, 128, 0.3); /* Transparency for IE9 */
	-webkit-transition: background ease .5s;
    -o-transition: background ease .5s;
    transition: background ease .5s;
	opacity: 1;
	overflow: hidden;
}
.vc-promo-box:before {
	display: block;
    content: "";
    width: 100%;
    padding-top: 100%;
	-webkit-transition: background ease .5s;
    -o-transition: background ease .5s;
	transition: background .5s ease;
}

/* Aspect ratios */
.vc-promo-box.promo-ratio-3-2:before {
	padding-top: 66.6667%;
}
.vc-promo-box.promo-ratio-2-3:before {
	padding-top: 150%;
}
.vc-promo-box.promo-ratio-4-3:before {
	padding-top: 75%;
}
.vc-promo-box.promo-ratio-3-4:before {
	padding-top: 133.3333%;
}
.vc-promo-box.promo-ratio-16-9:before {
	padding-top: 56.25%;
}
.vc-promo-box.promo-ratio-9-16:before {
	padding-top: 177.7778%;
}

.vc-promo-box__background {
   position: absolute;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   background-size: cover;
   background-position: center;
   z-index: -1;
}
.vc-promo-box__content {
	position: absolute;
    left: 0;
    right: 0;
	width: 100%; /* Fixes IE bug */
    bottom: 50%;
	max-width: 450px;
    padding: 15px;
	margin-left: auto;
	margin-right: auto;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
    transition-property: opacity, transform;
    z-index: 1;
}
.vc-promo-box__content :last-child {
	margin-bottom: 0;
}

.vc-promo-box__icon {
	width: 36%;
	max-width: 115px;
	height: auto;
	margin-bottom: 10%;
}


/**
 * Text Animations
 */

/**
 * Background Animations
 *
 */
.vc-promo-box__background {
	-webkit-transition: transform ease .5s;
    -o-transition: transform ease .5s;
    transition: transform ease .5s;
}


/**
 * Print
 */
@media print {
	.vc-promo-box:before {
		display: none;
	}
	.vc-promo-box .content,
	.vc-promo-box:hover .content {
		position: relative;
		transform: translateY(0) !important;
		opacity: 1;
	}
}

/* END PROMO BOXES */

/* IMAGE CAPTION */

.vc-img-credit,
.vc-img-credit img {
    max-width: 100%;
    height: auto;
}
.vc-img-credit {
	display: block;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}
.vc-img-credit .img-wrapper {
	position: relative;
	margin-bottom: 15px;
}
.vc-img-credit img {
	width: 100%;
	margin: 0;
}
.vc-img-credit .photo-credit {
	position: absolute;
	bottom: 0;
	right: 0;
	margin-bottom: 5px;
	margin-right: 5px;
	color: #fff;
	font-size: 10px;
}

/* END IMAGE CAPTION */


/* NUMBER COUNTERS */

.vc-number-counter {
	text-align: center;
}


/* END NUMBER COUNTERS */

/* CALLOUT BOX */
.vc-callout-box {
	background: #f2f2f2;
	margin-top: 8px;
	margin-bottom: 35px;
}

	.vc-callout-box	.vc-callout-box__image {
	    height: 100%;
	    flex: 45%;
	    align-self: center;
	}	

		.vc-callout-box	.vc-callout-box__image img {
			width: 100%;
			max-width: 100%;
		}    

	.vc-callout-box .vc-callout-box__content {
	    padding: 20px 30px;
	    font-size: 80%;
	    line-height: 150%;
	    flex: 55%;
	    -ms-flex:0 1 auto;
	    align-self: center;
	}

	.vc-callout-box .vc-callout-box__content > * {
		margin-bottom: 15px;
	}

@media (min-width: 768px) {
	.vc-callout-box.horizontal {
		display: flex;
	}

	.vc-callout-box.horizontal.img_right {
		flex-direction: row-reverse;
	}	
}	

/* END CALLOUT BOX */

/* AUTHOR BLOCKQUOTE */

.vc-author-blockquote {
    text-align: center;
}

.vc-author-blockquote__author-image img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
    width: 145px;
    height: 145px;
}

.vc-author-blockquote__quote {
    margin-bottom: 20px;
    padding: 0;
}

.vc-author-blockquote__author {
    text-align: center;
}

