.split-box {
	width: 100%;
	display: table;

	.split-box-wrap {
		min-height: 60px;
		float: none;
		display: table-cell;
		padding: 6% 7%;
		vertical-align: middle;
		overflow: hidden;

		&:after {
			content: '';
			width: 100%;
			height: 100%;
			position: absolute;
			left: 0;
			top: 0;
			z-index: 2;
		}

		.content {
			position: relative;
			z-index: 3;
		}
	}
	
	h2 {
		margin-top: 0px;
		margin-bottom: 0px;
		font-size: 50px;
		letter-spacing: -0.05em;
	}

	.divider-solid {
		margin-top: 14px;
		margin-bottom: 13px;
	}

	.split-box-subtitle {
		font-size: 18px;
		line-height: 26px;
	}

	.split-box-space {
		width: 100%;
		display: inline-block;
		margin: 10px 0;
	}

	.split-box-blocks {
		.split-box-wrap-blocks {
			border-top: 1px dotted #ebebeb;
			overflow: hidden;
			
			&:first-child {
				border-top: none;
				.split-box-block {
					padding-top: 0;
				}
			}

			&:last-child {
				.split-box-block {
					padding-bottom: 0;
				}
			}
		}

		.split-box-block {
			width: 50%;
			padding: 9% 8%;
			border-left: 1px dotted #ebebeb;
			float: left;

			&:first-child {
				border-left: none;
				padding-left: 0;
			}

			&:last-child {
				padding-right: 0;
			}
		} 
	}

}

@media screen and (max-width: 768px) {
	.split-box .split-box-wrap {
		padding: 25px !important;
		display: block;
	}
	.split-box-hidden-left .split-box-wrap:first-child,
	.split-box-hidden-right .split-box-wrap:last-child {
	  display: none;
	}

	.split-box .split-box-wrap > .content {
		height: 100%;
	}
}