* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #F9F8F6;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #BD9B80;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
    font-family: 'CopperplateGothic-Bold';
    font-size: 6.6rem;
    line-height: 54px;
}
h2 {
    color: #fff;
    font-family: 'CopperplateGothic-Light';
    font-size: 4.8rem;
    line-height: 56px;
}
h3 {
    color: #fff;
    font-family: 'Montserrat-SemiBold';
    font-size: 3rem;
    line-height: normal; 
}
h4 {
    color: #fff;
    font-family: 'Montserrat-Medium';
    font-size: 2.4rem;
    line-height: normal;
}
h5 {
    color: #fff;
    font-family: 'CormorantSC-Regular';
    font-size: 2rem;
    line-height: 22px;
}
h6 {
    color: #fff;
    font-family: 'Montserrat-Medium';
    font-size: 1.6rem;
    line-height: normal;
    position: relative;
}
h6 strong {
    font-weight: normal;
    padding-left: 12px;
}
h6 strong::after {
    content: "";
    height: 4px;
    width: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #BD9B80;
    border-radius: 100%;
}
p {
    color: #F9F8F6;
    font-family: 'Montserrat-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
    letter-spacing: 0.32px;
    margin-bottom: 24px;
}
ul {
    margin-bottom: 24px;
    padding-left: 0;
    list-style: none;
}
li {
    position: relative;
    color: #F9F8F6;
    font-family: 'Montserrat-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    padding-left: 26px;
}
li::after {
    content: "";
    height: 16px;
    width: 16px;
    background-size: 16px;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/list-icon.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 3px;
}
.common-btn {
	color: #fff;
    font-family: 'Montserrat-Medium';
	font-size: 1.6rem;
	line-height: 24px;
	letter-spacing: 0.8px;
	position: relative;
	padding: 12px 19px;
	border: 0;
	border-bottom: 1px solid #fff;
    background-color: transparent;
	overflow: hidden;
	cursor: pointer;
	display: inline-block;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.common-btn strong {
	position: relative;
	font-weight: normal;
	z-index: 1;
}
.common-btn::before,
.common-btn::after {
	content: "";
	position: absolute;
	inset: 0;
	transform: translateX(-101%);
	transition: transform 0.5s ease;
}
.common-btn::before {
	background: repeating-linear-gradient(to right,#BD9B80 0px,#BD9B80 20px,transparent 20px,transparent 40px);
}
.common-btn::after {
	background-color: #BD9B80;
}
.common-btn:hover::before {
	transform: translateX(101%);
}
.common-btn:hover::after {
	transform: translateX(0);
	transition-delay: 0.12s;
}
.common-btn:not(:hover)::after {
	transition-delay: 0s;
}
.common-btn:hover {
	color: #0C0C0C;
    border-color: #BD9B80;
}
.txt-btn {
    color: #fff;
    font-family: 'Montserrat-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
    display: inline-block;
    padding-right: 24px;
    text-decoration: underline;
    text-underline-position: under;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.txt-btn::after {
    content: '';
    height: 14px;
    width: 14px;
    position: absolute;
    right: 5px;
    top: 58%;
    transform: translateY(-50%);
    background-image: url(../images/txt-btn-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 14px;
    filter: brightness(0) invert(1);
}
.txt-btn:hover {
    color: #BD9B80;
    text-decoration: underline;
}
.txt-btn:hover::after {
    filter: brightness(1) invert(0);
}
.common-arrow {
    height: 72px;
    width: 72px;
    background-color: #20313B;
    border-radius: 100%;
    border: 1px solid #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #BD9B80;
    border-color: #BD9B80;
}
.common-arrow img {
    width: 22px;
}
.common-arrow svg {
	display: none;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

