* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #D3AD6E;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
    font-family: 'SohoPro-Regular';
    font-size: 7.2rem;
    line-height: 80px; 
    letter-spacing: 1.44px;
}
h1 strong {
    font-weight: normal;
    color: #D3AD6E;
}
h2 {
    color: #fff;
    font-family: 'SohoPro-Regular';
    font-size: 5rem;
    line-height: 58px;
    letter-spacing: 1px;
}
h3 {
    color: #fff;
    font-family: 'SohoPro-Regular';
    font-size: 4rem;
    line-height: 58px; 
    letter-spacing: 0.8px;
}
h4 {
    color: #fff;
    font-family: 'SohoPro-Regular';
    font-size: 2.4rem;
    line-height: normal;
    letter-spacing: 0.48px;
}
h6 {
    color: #fff;
    font-family: 'SohoPro-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px; 
}
p {
    color: #fff;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    margin-bottom: 22px;
}
ul {
    margin-bottom: 22px;
}
li {
    color: #fff;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.32px;
}
.common-btn {
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    color: #1A1A1A;
    overflow: hidden;
    transition: 1s all ease;
    -webkit-transition: 1s all ease;
    position: relative;
    line-height: 24px; 
    letter-spacing: 0.32px;
    display: inline-block;
    border: 1px solid #D3AD6E;
    background-color: #D3AD6E;
    border-radius: 10px;
    padding: 12px 20px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.common-btn strong {
    font-weight: normal;
    position: relative;
    z-index: 1;
}
.common-btn::before {
    background-color: #fff;
    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: #1A1A1A;
    border-color: #fff;
}
.common-btn:hover::before{
    height: 500%;
    width: calc(100% + 50%);
}
.black-btn {
    background-color: #0F0F0F;
    border-color: #8A8A8A;
    color: #fff;
}
.black-btn::before {
    background-color: #D3AD6E;
}
.black-btn:hover {
    border-color: #D3AD6E;
}
.gray-btn {
    background-color: #1F1F1D;
    border-color: #8A8A8A;
    color: #fff;  
}
.gray-btn::before {
    background-color: #D3AD6E;
}
.gray-btn:hover {
    border-color: #D3AD6E;
}
.txt-btn {
    color: #D3AD6E;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
    letter-spacing: 0.32px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.txt-btn:hover {
    color: #fff;
}
.common-arrow {
    width: 62px;
    height: 62px;
    border-radius: 100%;
    background-color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #D3AD6E;
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 7px;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.common-wrap {
    padding: 0 4%;
}
.common-wrap .container {
    padding-left: 20px;
    padding-right: 20px;
}