/* Items per Row */
.ctas .cta-item.items-per-row-one {
	flex: 0 0 calc(100%);
}

.ctas .cta-item.items-per-row-two {
	flex: 0 0 calc(50% - 15px);
}
@media only screen and (max-width : 991px) {
	.ctas .cta-item.items-per-row-two {
		flex: 0 0 100%;
	}
}

.ctas .cta-item.items-per-row-three {
	flex: 0 0 calc(33.333% - 20px);
}
@media only screen and (max-width : 1400px) {
	.ctas .cta-item.items-per-row-three {
		flex: 0 0 calc(50% - 15px);
	}
}
@media only screen and (max-width : 991px) {
	.ctas .cta-item.items-per-row-three {
		flex: 0 0 100%;
	}
}

.ctas .cta-item.items-per-row-four {
	flex: 0 0 calc(25% - 23px);
}
@media only screen and (max-width : 1400px) {
	.ctas .cta-item.items-per-row-four {
		flex: 0 0 calc(50% - 15px);
	}
}
@media only screen and (max-width : 991px) {
	.ctas .cta-item.items-per-row-four {
		flex: 0 0 100%;
	}
}

/* END Items per Row */

.ctas .ctas-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: 30px;
}

.ctas .ctas-padding {
	padding-left: 30px;
	padding-right: 30px;
}

.ctas .cta-item {
	position: relative;
	padding: 15px
}

.ctas .cta {
	display: block;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
	text-decoration: none;
	color: #fff!important;
	text-align: center;
	margin-bottom: 50px;
}

.ctas .cta-item:hover {
	opacity: .85;
}

.ctas .cta .cta-image {
  padding-bottom: 70%;
  background-size: cover;
  background-position: 50% 50%;
  margin-bottom: 15px;
}

.ctas .cta .cta-content {
	background-color: transparent;
	transition: 1s;
}

.ctas .cta-text {
	margin-bottom: 5px;
	transition: 1s;
}

.ctas .cta .title {
	margin-bottom: 15px;
}

.ctas .cta .cta-bottom-bar {
	bottom: 0;
	width: 100%;
	height: 50px;
}

.cta .cta-content .cta-btn {
	padding: 7px 12px;
	font-weight: bold;
	position: absolute;
	bottom: 15px;
	left: 15px;
	width: calc(100% - 30px);
}


@media screen and (max-width: 1399px) {
	.ctas .cta h3.title {
		font-size: 1.8em;
	}
	.ctas .cta-item:hover {
		opacity: unset;
	}
}

@media screen and (max-width: 1199px) {
	.ctas .cta h3.title {
		font-size: 1.35em;
	}
	.ctas .cta p {
		display: none!important;
	}
}

@media screen and (max-width: 991px) {
	.ctas .cta h3.title {
		font-size: 2em;
	}
	.ctas .cta p {
		display: block!important;
	}
}

@media screen and (max-width: 767px) {

	.ctas .cta h3.title {
		font-size: 1.2em;
	}
	.ctas .cta p {
		display: none!important;
	}
	.ctas .cta .cta-content .more {
		display: none;
	}
}