* {
	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: #F2F0EF;
    font-family: 'MonaSansExpanded-Bold';
    font-size: 8rem;
    line-height: 88px;
    letter-spacing: 8px;
    text-transform: uppercase;
}
h2 {
    color: #F2F0EF;
    font-family: 'MonaSansExpanded-Regular';
    font-size: 3.5rem;
    line-height: 56px;
}
h2 strong {
    color: #0C0A00;
    font-weight: normal;
}
h3 {
    color: #FFF;
    font-family: 'MonaSansExpanded-Medium';
    font-size: 2.4rem;
    line-height: 32px;
}
h6 {
    color: #F2F0EF;
    font-family: 'MonaSansExpanded-Bold';
    font-size: 1.6rem;
    line-height: 24px;
}
p {
    color: rgba(255, 255, 255, 0.70);
    font-family: 'MonaSansExpanded-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 24px;
}
li {
    color: #FFF;
    font-family: 'MonaSansExpanded-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
    padding-left: 15px;
}
li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    background-image: url(../images/bullet.svg);
    height: 6px;
    width: 6px;
    background-size: 6px;
}
.pattern {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}
.common-btn {
    color: #0C0A00;
    font-family: 'MonaSansExpanded-Regular';
    font-size: 1.6rem;
    padding: 15px 25px;
    background-color: #FAD6A5;
    border: 1px solid #F2F0EF;
    border-radius: 2px;
    display: inline-flex;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: all 0.01s;
    -webkit-transition: all 0.01s;
    position: relative;
}
.common-btn em {
    display: block;
    font-style: normal;
    overflow: hidden;
    height: 24px;
    line-height: 24px;
    position: relative;
}
.common-btn strong {
    display: block;
    margin: 0;
    transform: translateY(0);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    white-space: nowrap;
    text-align: center;
    position: relative;
    font-weight: normal;
    z-index: 1;
}
.common-btn::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    clip-path: inset(100% 0 0 0);
    background-color: #F2F0EF;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}
.common-btn:hover strong {
    transform: translateY(-25px);
}
.common-btn:hover {
    color: #0C0A00;
}
.common-btn:hover::after {
    clip-path: inset(0 0 0 0);
}
.border-btn {
    border-color: #F2F0EF;
    background-color: transparent;
    color: #F2F0EF;
}
.border-btn::after {
    background-color: #FAD6A5;
}
.common-arrow {
   height: 56px;
   width: 56px;
   background-color: #F2F0EF;
   border: 1px solid #F2F0EF;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 2px;
   overflow: hidden;
   transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow img{
	width: 17px;
}
.common-arrow:hover {
    background-color: #FAD6A5;
    border-color: #FAD6A5;
}
.common-arrow:after{
	display: none;
}
.common-bg{
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

