.horizontal {
	position: relative;
	max-width: 800px;
    margin: 0 auto;
    display: block;
    margin-bottom: 22px;
    width:100%;

}
.horizontal .horizontal-item{
	margin:0;
	display: flex;
}
.horizontal .img-cont, .horizontal .content{
	box-sizing: border-box;
	flex-shrink: 0;
}
.horizontal .content{
    background: #121820;
    padding-left: 12px;
    width:62.5%;
}

.horizontal > ul {
	margin-left: 0;
	margin-right: 0;
}

.horizontal .caption-cont {
	width: 50%;
	float: right;
	padding-top: 0;
	margin-bottom: 90px;
	display: flex;
	flex-direction: column;
	margin-top: 50px;
	overflow: hidden;
}
.horizontal .caption-cont h2 {
	width: 55%;
	font-size: 40px;
}

/*text colors*/
.horizontal.white .caption-cont h2,
.horizontal.white .horizontal-item .title {
	color: white;
}
.horizontal.white .caption-cont p,
.horizontal.white .horizontal-item p {
	color: #d0d1d2;
}
.horizontal.black .caption-cont h2,
.horizontal.black .horizontal-item .title {
	color: #000;
}
.horizontal.black .caption-cont p,
.horizontal.black .horizontal-item p {
	color: #000;
}
/*accent colors*/
.horizontal-item .img-cont::before {
	background-color: #cd9700;
}
.horizontal.green .horizontal-item .img-cont::before {
	background-color: #24ce7b;
}

.horizontal .horizontal-item .title {
	font-size: 22px;
	color:#fff;
	margin: 4px 0;
}
.horizontal .caption-cont .left-side {
	width: 30%;
	float: left;
}
.horizontal .caption-cont .left-side::before {
	content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background: url(/includes/client_public/assets/images/dotted-line-gold.png);
    background-repeat: repeat-x;
    background-position: bottom left;
    padding-top: 12px;
}
.horizontal .caption-cont .right-side {
	width: 62%;
	float: left;
	padding-right: 75px;
	padding-left: 10px;
}

.horizontal [class*="column"]+[class*="column"]:last-child {
	float: left;
}

.horizontal .horizontal-item {
	/*margin-bottom: 75px;*/
	position: relative;
	min-height: 100px;
}
.horizontal .horizontal-item .featured {
	position: absolute;
    top: -10px;
    right: -10px;
    z-index: 10;
    background-color: #cd9700;
    color: #fff;
    padding: 2px 5px;
}
.horizontal .caption-cont p,
.horizontal .horizontal-item p {
	font-size: 16px;
    font-family: "merriweather", Arial, Helvetica,sans-serif;
    color:#8b8a8f;
    line-height: 20px;
    margin-bottom: 4px;
    padding-right: 4px;
}

.horizontal .horizontal-item .img-cont {
	position: relative;
	width:37.5%;
}

.horizontal .horizontal-item .img-cont a {
	display: inline-block;
	height: 100%;
	width: 100%;
}

.horizontal .horizontal-item .img-cont img {
	display: block;
	width: 100%;
}

.horizontal .horizontal-item .img-cont .item-image {
	display: inline-block;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.horizontal .horizontal-item .img-cont::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 10px;
}

.horizontal .horizontal-item .caption .left-side {
	width: 20%;
	float: left;
}

.horizontal .horizontal-item .caption .right-side {
	width: 80%;
	float: right;
	padding-left: 15px;
	padding-bottom: 5px;
}

.horizontal .horizontal-item .caption .left-side::after {
	content: "";
	display: inline-block;
	width: 100%;
	height: 2px;
	background: url(/includes/client_public/assets/images/dotted-line-gold.png);
	background-repeat: no-repeat;
	background-position: bottom left;
	padding-top: 12px;
}
@media (max-width: 1024px) {
	.horizontal .caption-cont {
		width: 100%;
		margin-bottom: 40px;
	}
	.horizontal .caption-cont h2 {
		width: 100%
	}
	.horizontal .horizontal-item .title {
		font-size: 20px;
	}
	.horizontal .horizontal-item p {
		font-size: 14px;
	}
}
@media (max-width: 640px) {
	.horizontal .caption-cont {
		width: 100%;
		margin-bottom: 40px;
	}
	.horizontal .horizontal-item {
		margin: 0 auto 25px;
	}
	.horizontal .caption-cont .left-side {
		width: 100%;
	}
	.horizontal .caption-cont .left-side::before {
		background-repeat: no-repeat;
		margin-bottom: 20px;
	}
	.horizontal .caption-cont .right-side {
		padding-right: 0;
		padding-left: 75px;
		width: 100%;
	}
	.horizontal .horizontal-item .right-side > p {
		display: none;
	}

}
