* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #1c1c1c;
}
ul {
	padding: 0;
	list-style-type: none;
	margin: 0px;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #FFF;
    font-size: 7.2rem;
    font-family: 'OpenSans-BoldItalic';
    line-height: 80px;
    letter-spacing: 14.4px;
}
h1 strong {
    font-weight: normal;
    color: #C7342C;
}
h2 {
    color: #231F20;
    font-size: 5.6rem;
    font-family: 'OpenSans-BoldItalic';
    line-height: 64px;
    letter-spacing: 11.2px;
}
h2 strong {
    font-weight: normal;
    color: #D2232A;
}
h3 {
    color: #231F20;
    font-size: 2.4rem;
    font-family: 'OpenSans-Bold';
    line-height: 32px;
}
p {
    color: #231F20;
    font-family: 'OpenSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 24px;
}
li {
    color: #231F20;
    font-family: 'OpenSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    padding-left: 20px;
    margin-bottom: 15px;
    position: relative;
}
li::after {
    position: absolute;
    content: '';
    left: 0;
    top: 8px;
    height: 9px;
    width: 9px;
    background-size: 9px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/li-icon.svg);
}
ol li{
    list-style: none;
    padding-left: 28px;
}
ol {
    padding-left: 0;
}
ol li::after {
    position: absolute;
    content: '';
    left: 0;
    top: 5px;
    height: 20px;
    width: 20px;
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/tick-icon.png);
}
.sec-mark {
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
}
.common-btn {
    color: #F8F8F8;
    font-family: 'OpenSans-Bold';
    font-size: 1.6rem;
    line-height: 24px; 
    padding: 13px 40px;
    letter-spacing: normal;
    border-radius: 4px;
    background: linear-gradient(180deg, #D2232A 0%, #B31017 100%);
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
}
.common-btn:hover {
    background: linear-gradient(180deg, #FFF 0%, #F8F8F8 100%);
    color: #231F20;
}
.white-btn {
    background: linear-gradient(180deg, #FFF 0%, #F8F8F8 100%);
    color: #231F20;
}
.white-btn:hover {
    background: linear-gradient(180deg, #D2232A 0%, #B31017 100%);
    color: #F8F8F8;
}
.border-btn {
    border: 1px solid #F8F8F8;
    background: none;
}
.border-btn:hover {
    background: linear-gradient(180deg, #D2232A 0%, #B31017 100%);
    color: #F8F8F8;
    border-color: transparent;
}
.common-arrow {
    border-radius: 4px;
    border: 1px solid #231F20;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow img {
    width: 10px;
}
.common-arrow:hover {
    background: linear-gradient(180deg, #D2232A 0%, #B31017 100%);
    border-color: transparent;
}
.common-arrow:hover img {
    filter: brightness(0) invert(1);
}
.common-arrow:after {
	display: none;
}
.common-arrow svg {
	display: none;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

