* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #000;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #004992;
}
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: 'LamaSans-Black';
    font-size: 6.8rem;
    font-style: italic;
    line-height: 78px;
    letter-spacing: 3.4px;
}
h2{
    color: #0F0F0F;
    font-family: 'LamaSans-Black';
    font-size: 4.8rem;
    font-style: italic;
    line-height: 58px;
    letter-spacing: 2.4px;
}
h2 strong{
    color: #004992;
    font-weight: normal;
}
h3{
    color: #0F0F0F;
    font-family: 'LamaSans-Black';
    font-size: 3rem;
    font-style: italic;
    line-height: normal;
    letter-spacing: 0.3px;
}
h4{
    color: #0F0F0F;
    font-family: 'LamaSans-Black';
    font-size: 2.4rem;
    line-height: normal;  
    font-style: italic;
    letter-spacing: 0.24px;
}
p{
    color: #0F0F0F;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
    margin-bottom: 20px;
}
li {
    color: #FFF;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
    padding-left: 22px;
}
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: #0F0F0F;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    padding: 9px 18px;
    display: inline-block;
    border: 1px solid #FFF;
    border-radius: 5px;
    background: #FFF;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.common-btn:hover {
    color: #FFF;
    border-radius: 100px;
    background: #004992;
    border-color: #004992;
}
.white-btn{
    background-color: transparent;
    color: #FFF;
}
.white-btn:hover{
    background-color: #FFF;
    border-color: #FFF;
    color: #0F0F0F;
}
.black-btn{
    background-color: transparent;
    border-color: #0F0F0F;
    color: #0F0F0F;  
}
.black-btn:hover{
    background-color: #0F0F0F;
    border-color: #0F0F0F;
}
.common-arrow {
    background-color: transparent;
    border: 1px solid #0F0F0F;
    width: 48px;
    height: 48px;
    border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin: 0;
}
.common-arrow:hover{
    background-color: #004992;
    border-color: #004992;
    border-radius: 24px;
}
.common-arrow:hover img{
    filter: brightness(0) invert(1);
}
.common-arrow svg{
	display: none;
}
.common-arrow img {
	width: 17px;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}