* {
	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: #FFF;
    font-family: 'MerriweatherSans-Regular';
    font-size: 6.8rem;
    line-height: 85px;
}
h1 strong {
    color: #E9E3D7;
    font-weight: normal;
}
h2 {
    color: #121212;
    font-family: 'MerriweatherSans-Regular';
    font-size: 4.8rem;
    line-height: 56px;
}
h2 strong {
    font-weight: normal;
    font-family: 'PlaywriteUSTrad-Regular';
}
h3 {
    color: #121212;
    font-family: 'MerriweatherSans-Regular';
    font-size: 2.4rem;
    letter-spacing: 0.48px;
    line-height: 24px;
}
h4 {
    color: #FFF;
    font-family: 'MerriweatherSans-Regular';
    font-size: 2rem;
    line-height: 28px;
    letter-spacing: 0.4px;
}
h6 {
    color: #FFF;
    font-family: 'MerriweatherSans-Regular';
    font-size: 1.6rem;
    line-height: 17.6px;
}
p {
    color: #121212;
    font-family: 'MerriweatherSans-Light';
    font-size: 1.8rem;
    line-height: 24px;
    letter-spacing: 0.36px;
    margin-bottom: 24px;
}
li {
    color: #121212;
    font-family: 'MerriweatherSans-Light';
    font-size: 1.8rem;
    line-height: 24px;
    letter-spacing: 0.36px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 15px;
}
li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    background-image: url(../images/li-icon.svg);
    background-size: 10px;
    height: 13px;
    width: 10px;
    background-repeat: no-repeat;
    background-position: center;
}
.common-btn {
    font-family: 'MerriweatherSans-Light';
    font-size: 1.6rem;
    color: #121212;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    line-height: 24px; 
    display: inline-block;
    border: 1px solid #121212;
    padding: 10px 18px;
    border-radius: 51px;
    overflow: hidden;
}
.common-btn strong {
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.common-btn::before {
    background-color: #121212;
    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: #fff;
    border-color: #121212;
}
.common-btn:hover::before{
    height: 500%;
    width: calc(100% + 50%);
}
.white-btn {
    border-color: #fff;
    color: #fff;
}
.white-btn:hover {
    background-color: #E9E3D7;
    border-color: #E9E3D7;
    color: #121212;
}
.white-btn::before {
    background-color: #fff;
}
.common-arrow {
    background-color: transparent;
    border: 1px solid #121212;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin: 0;
}
.common-arrow:hover {
    background-color: #E9E3D7;
    border-color: #E9E3D7;
}
.common-arrow img {
    width: 23px;
}
.common-arrow svg {
	display: none;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}