* {
    box-sizing: border-box;
}

.col-container {
    display: table;
    width: 100%;
}
.col {
    display: table-cell;
    padding: 16px;
    width: 50%;
}

h1 {
	font-weight: 700;
	color: #c91617;
}
.col h2 {
	text-align: left;
	color: #c91617;
	font-size: 36px;
	font-weight: 700;
	line-height: 45px;
	text-transform: none;
}
.col p {
	font-size: 24px;
	font-weight: 400;
	line-height: 40px;
	margin-bottom: 30px;
}
.col.text {
	padding: 100px;
}
.col.image {
	background-size: cover;
	background-position: center center;
 	background-image: url('/structure/images/RedPlane.png');
}
.redbox {
	background-color: #c91617;
	color: white;
	padding: 30px;
	text-align: center;
	font-size: 30px !important;
	font-weight: 700;
}

@media only screen and (max-width: 930px) {
    .col { 
        display: block;
        width: 100%;
    }

	.col.image {
		height: 469px;
	}
	.col.text {
		text-align: center;	
	}
	.redbox {
			margin-top: 221px;

	}

}

@media only screen and (min-width: 930px) {
	.redbox {
		display: none;
	}
	.col-container {
		 margin-top: 0px;
	}

}