* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #000;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #E73C3A;
}
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-family: 'ClashDisplay-Semibold';
    font-size: 7.2rem;
    line-height: normal;
}
h2{
    color: #FFF;
    font-family: 'ClashDisplay-Semibold';
    font-size: 4.8rem;
    line-height: normal;
}
h4{
    color: #FFF;
    font-family: 'ClashDisplay-Semibold';
    font-size: 2.4rem;
    line-height: normal;  
}
h5{
    color: #FFF;
    font-family: 'ClashDisplay-Medium';
    font-size: 2rem;
    line-height: normal;
}
h6{
    color: #FFF;
    font-family: 'ClashDisplay-Medium';
    font-size: 1.6rem;
    line-height: normal;
}
p{
    color: #FFF;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 150%; 
}
li {
    color: #FFF;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 150%;
    position: relative;
    padding-left: 21px;
}
li::after {
    position: absolute;
    content: "";
    background-image: url(../images/li-check.svg);
    background-repeat: no-repeat;
    background-size: 12px;
    width: 12px;
    height: 12px;
    left: 0;
    top: 6px;
}
.common-btn {
    color: #F6F8FA;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    padding: 9px 18px;
    display: inline-block;
    border: 1px solid #E73C3A;
	border-radius: 5px;
    background: #E73C3A;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover {
    color: #F6F8FA;
    background: #e90b08;
    border-color: #e90b08;
}
.common-border-btn{
    border: 1px solid #F6F8FA;
    background-color: transparent;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.common-border-btn:hover{
    border: 1px solid #E73C3A;
    background: #E73C3A; 
}
.common-arrow {
    background-color: #FFFFFF;
    width: 44.614px;
    height: 44.614px;
    border-radius: 50%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin: 0;
}
.common-arrow:hover{
    background-color: #E73C3A;
}
.common-arrow:hover img{
    filter: brightness(0) invert(1);
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 12px;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}