// _content.scss

.content {

	.inner-content {
		border-bottom: 40px solid rgba(249,249,249,0.8);
		padding: 0 40px;
		position: relative;
		z-index: 1;

		&::before {
			background: rgba(249,249,249,0.8);
			bottom: 0;
			content: '';
			display: block;
			left: 0;
			position: absolute;
			right: 0px;
			top: 0;
		}

		.main {
			background: #fff;
			padding: 30px;
			position: relative;
		}

	}

}

.inner-content,
.main {
		min-height: calc(100vh - 185px);
}
