.content-text{
	line-height: 1.5;
	font-size: 16px;
	color:#30333B;
}
.content-text:after{
	content: '';
	display: table;
	clear: both;
}
.content-text p{
	padding: 15px 0;
}
.content-text strong{
	font-weight: bold;
}
.content-text em{
	font-style: italic;
}
.content-text h1,
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5,
.content-text h6,
.h1,.h2,.h3,.h4,.h5,.h6{
	text-transform: uppercase;
    font-family: 'Intro-Bold'
}
.content-text h1, .h1{
	font-size: 50px;
    line-height: 54px;
}
.content-text h2, .h2{
	font-size: 42px;
    line-height: 44px;
}
.content-text h3, .h3{
	font-size: 28px;
}
.content-text h4, .h4{
	font-size: 22px;
}
.content-text h5, .h5{
	font-size: 18px;
}
.content-text h6, .h6{
	font-size: 14px;
}
.content-text ul, .content-text ol{
	list-style: none;
}
.content-text a{
	text-decoration: underline;
}
.content-text ol{
    list-style:none;
    counter-reset: num;
}
.content-text ol>li{
	position: relative;
    padding: 15px 0 15px 20px;
}
.content-text ol>li::before{
	content: counter(num)'.';
    counter-increment: num;
    color:#BB1D26;
    position: absolute;
    text-align: center;
    display: inline-block;
    top: 15px;
    left: 0;
    font-weight: bold;
}
.content-text ul li{
	position: relative;
    padding: 10px 0 10px 15px;
}
.content-text ul li:before{
    content: "";
    background: #BB1D26;
    position: absolute;
    left: 0;
    top: 19px;
    height: 7px;
    width: 7px;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    border-radius: 0;
}
.content-text table{
	background: #FFFFFF;
	box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	margin: 15px 0;
}
.content-text th{
	color:#000;
	background: #F1F1F1;
	font-weight: bold;
}
.content-text th,
.content-text td{
	padding: 15px;
}
.content-text tr{
	border: 1px solid #D8D8D8;
}
.content-text tr:last-child{
	border-bottom: 0;
}
.content-text img{
	max-width:100%;
	height:auto;
	box-sizing: border-box;
	margin-bottom:15px;
}
.content-text hr{
	border:none;
	border-top:1px solid #C4C4C4;
}
.content-text blockquote{
	border: 1px solid #FFA02D;
	border-radius: 8px;
	box-sizing: border-box;
	padding: 50px 40px;
	margin: 30px 0 15px;
	position: relative;
}
.content-text blockquote:before{
	content:'!';
	position: absolute;
	width: 36px;
	height: 36px;
	display: inline-block;
	left:25px;
	top:-18px;
	background: #FFA02D;
	color:#fff;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	line-height: 35px;
	border-radius: 50%;
}
.content-text img[style*="left"],
.content-text p[style*="left"]{
    margin-right:15px;
}
.content-text img[style*="right"],
.content-text p[style*="right"]{
    margin-left:15px;
}
.content-text .column2{
	column-count: 2;
}