* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #E42313;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
    font-family: 'MyriadPro-Semibold';
    font-size: 7.2rem;
    line-height: 80px;
}
h1 strong, h2 strong {
    font-family: 'MyriadPro-SemiboldIt';
    color: #E42313;
}
h2 {
    color: #202020;
    font-family: 'MyriadPro-Semibold';
    font-size: 5.6rem;
    line-height: 48px;
}
h3 {
    color: #fff;
    font-family: 'MyriadPro-Semibold';
    font-size: 3.2rem;
    line-height: 40px;
}
h4 {
    color: #202020;
    font-family: 'MyriadPro-Semibold';
    font-size: 2.4rem;
    line-height: 32px;
}
h6 {
    color: rgba(241, 244, 247, 0.40);
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 22px;
    letter-spacing: 0.16px;
}
p {
    color: #fff;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 22px;
}
ul {
    margin-bottom: 22px;
}
.common-btn {
    color: #fff;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
    border-radius: 100px;
    border: 1px solid rgba(32, 32, 32, 0.7);
    background-color: #202020;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn::before {
    content: "";
    height: 10px;
    width: 10px;
    background-size: 10px;
    display: block;
    background-image: url(../images/btn-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px;
    margin-right: 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover {
    background-color: #E42313;
    border-color: #E42313;
    color: #fff;
}
.common-btn:hover::before {
    transform: rotate(45deg);
}
.red-btn {
    border: 1px solid rgba(255, 255, 255, 0.50);
    background-color: #E42313;
    color: #fff;
}
.red-btn:hover {
    border: 1px solid rgba(32, 32, 32, 0.7);
    background-color: #202020;
    color: #fff;
}
.border-btn {
    background-color: transparent;
    color: #202020;
}
.border-btn::before {
    filter: brightness(0);
}
.border-btn:hover::before {
    filter: brightness(1) grayscale(0);
}
.txt-btn {
    display: inline-flex;
    align-items: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    color: #202020;
    position: relative;
}
.txt-btn::before {
    content: "";
    height: 12px;
    width: 12px;
    background-size: 12px;
    display: block;
    background-image: url(../images/txt-btn-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 10px;
    filter: grayscale(1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.txt-btn:hover::before {
    filter: grayscale(0);
}
.txt-btn:hover:hover {
    color: #E42313;
}
.common-arrow {
    width: 56px;
    height: 56px;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, 0.50);
    background-color: #202020;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:after {
	display: none;
}
.common-arrow:hover {
    background-color: #E42313;
    border-color: #E42313;
}
.common-arrow img {
	width: 15px;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.common-wrap {
	padding-left: 16px;
    padding-right: 16px;
}
