* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #FFF;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #C81E30;
}
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: 'Tondo-Regular';
    font-size: 6.4rem;
    line-height: 68px;
    letter-spacing: 0.64px;
}
h1 strong{
    color: #C81E30;
}
h2{
    color: #FFF;
    font-family: 'Tondo-Regular';
    font-size: 4.8rem;
    line-height: 52px;
    letter-spacing: 0.48px
}
h2 strong{
    color: #C81E30;
}
h3{
    color: #FFF;
    font-family: 'Tondo-Regular';
    font-size: 3.4rem;
    line-height: 52px; 
    letter-spacing: 0.34px;
}
h3 strong{
    color: #C81E30;
}
h4{
    color: #FFF;
    font-family: 'LamaSans-SemiBold';
    font-size: 2.2rem;
    line-height: 26px;
    letter-spacing: 0.22px;
}
h5{
    color: #FFF;
    font-family: 'LamaSans-Medium';
    font-size: 2rem;
    line-height: normal;
}
h6{
    color: #FFF;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;;
}
p{
    color: #FFF;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
}
li {
    color: #FFF;
    font-family: 'LamaSans-Regular';
    font-size: 1.4rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    position: relative;
    padding-left: 18px;
}
li::after {
    position: absolute;
    content: "";
    background: #C81E30;
    width: 9px;
    height: 9px;
    left: 0;
    top: 7px;
}
.common-btn {
    color: #FFF;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    padding: 11px 20px;
    display: inline-block;
    border: 1px solid #FFF;
	border-radius: 0px;
    background: transparent;
    cursor: pointer;
    text-align: center;
    transition: 1s all ease;
    -webkit-transition: 1s all ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.common-btn strong {
    font-weight: normal;
    position: relative;
    z-index: 1;
}
.common-btn::before{
    background-color: #C81E30;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 0%;
    transform: translate(-50%,-50%) rotate(45deg);
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.common-btn:hover {
    color: #fFFFff;
    border-color: #C81E30;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.common-btn:hover::before{
    height: 500%;
    width: calc(100% + 50%);
}
.fill-btn{
    background: #C81E30;
    border-color: #C81E30;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.fill-btn::before{
    background-color: #f72136;
}
.fill-btn:hover{
    background: #f72136;
    border-color: #f72136;
}
.common-arrow {
    background-color: transparent;
    border: 1px solid #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin: 0;
}
.common-arrow:hover{
    background-color: #C81E30;
    border-color: #C81E30;
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 14px;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}