/*	Default Layout
	92px columns, 24 px gutters, 72 px margins, 1234px total (extra space for scrollbars)
	-------------------------------------------------------------------------------
cols    1    2     3     4     5     6     7     8     9     10     11     12     13
px      68   160   252   344   436   528   620   712   804   896	988    1050   1142 */

.left {
	width: 29%;
	float: left;
	padding:10px 15px;
	box-sizing: border-box;
	margin: 0 10px 0 0;
}

.float-left {
    width: 25%;
    float: left;
    padding: 10px;
    margin-right: 10px;
}

.float-right {
    width: 25%;
    float: right;
    padding: 10px;
    margin-left: 10px;
}

.right-color {
    background-color:#B42C1D;
    color: white;
}
.left-color {
	background-color: #47869B;
	color: white;
}

.right {
	width: 69%;
	float: left;
	padding: 10px;
	 box-sizing: border-box;
}

.image{
	float: left;
	width: 100px;
	height: 90px;
	text-align: center;
}

.text {
	float: left;
	width: 645px;
	padding: 15px 10px;
	box-sizing: border-box;
}

.red-box {
	width: 100%;
	margin: 10px auto;
	padding: 10px;
	background-color:#B42C1D;
	color: #fff;
	box-sizing: border-box;
}

.super {
	font-size: 64px;
	line-height: 56px;
}

.red {
	color: #B42C1D;
}

.h1 {
	line-height: 42px;
}

.purple {
	border: none;
}

.white {
	color: #fff;
}

/*		10 Column Layout: 992px. 
		Gutters: 24px.
		Outer margins: 28px.
		Inherits styles from: Default Layout.
-------------------------------------------------------------------------------
cols    1     2      3      4      5      6      7      8      9      10
px      68    160    252    344    436    528    620    712    804    896    */

@media only screen and (min-width: 992px) and (max-width: 1221px) {
	
.image{
	width: 90px;
	height: 90px;
}

.text {
	width: 520px;
}

}



/*		Tablet Layout: 768px.
		Gutters: 24px.
		Outer margins: 28px.
		Inherits styles from: Default Layout.
-----------------------------------------------------------------
cols    1     2      3      4      5      6      7      8
px      68    160    252    344    436    528    620    712    */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	
.image{
	width: 80px;
	height: 80px;
}

.text {
	width: 400px;
}

}
	



/*		Mobile Layout: 320px.
		Gutters: 24px.
		Outer margins: 34px.
		Inherits styles from: Default Layout.
---------------------------------------------
cols    1     2      3
px      68    160    252    */

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

.left {
	width: 100%;
	float: none;
	padding:10px 15px;
	margin: 0;
}

.right {
	width: 100%;
	float: none;
}

.image{
	width: 50px;
	height: 50px;
}

.text {
	width: 220px;
	padding: 0 10px 10px;
}

.super {
	font-size: 34px;
	line-height: 46px;
}

}

/*		Wide Mobile Layout: 480px.
		Gutters: 24px.
		Outer margins: 22px.
		Inherits styles from: Default Layout, Mobile Layout.
------------------------------------------------------------
cols    1     2      3      4      5
px      68    160    252    344    436   */

@media only screen and (min-width: 480px) and (max-width: 767px) {
	
	.left {
	width: 100%;
	float: none;
	padding:10px 15px;
	margin: 0;
}

.right {
	width: 100%;
	float: none;
}

.image{
	width: 60px;
	height: 60px;
}

.text {
	width: 360px;
	padding: 0 10px 10px;
}

.super {
	font-size: 34px;
	line-height: 46px;
}


}