* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #F0E8E0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #323238;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
    font-family: 'CanelaText-Regular';
    font-size: 6rem;
    line-height: 75px;
}
h2 {
    color: #fff;
    font-family: 'CanelaText-Regular';
    font-size: 4.8rem;
    line-height: 63px;
}
h3 {
    color: #1C1C1F;
    font-family: 'CormorantGaramond-Bold';
    font-size: 3.2rem;
    line-height: 47px;
}
h4 {
    color: #fff;
    font-family: 'CanelaText-Medium';
    font-size: 2.2rem;
    line-height: 26px;
    letter-spacing: 0.22px;
}
h5 {
    color: #fff;
    font-family: 'CanelaText-Regular';
    font-size: 2rem;
    line-height: normal;
}
h6 {
    color: #F0E8E0;
    font-family: 'LamaSans-Regular';
    font-size: 1.4rem;
    line-height: 22px;
    letter-spacing: 0.28px;
}
p {
    color: #fff;
    font-family: 'LamaSans-Regular';
    font-size: 1.4rem;
    line-height: 22px; 
    letter-spacing: 0.28px;
    margin-bottom: 20px;
}
ul {
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
}
li {
    position: relative;
    padding-left: 20px;
}
li::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #F0E8E0;
    position: absolute;
    left: 0;
    top: 5px;
    border-radius: 100%;
}
.common-btn {
	color: #fff;
    font-family: 'LamaSans-Regular';
	font-size: 1.4rem;
	line-height: 24px;
	letter-spacing: 0.7px;
	position: relative;
	padding: 12px 19px;
	border: 0;
	border-bottom: 1px solid #fff;
	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,#F0E8E0 0px,#F0E8E0 20px,transparent 20px,transparent 40px);
}
.common-btn::after {
	background-color: #F0E8E0;
}
.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: #1C1C1F;
}
.black-btn {
    border-color: #1C1C1F;
    color: #1C1C1F;
}
.black-btn::before {
	background: repeating-linear-gradient(
		to right,
		#1C1C1F 0px,
		#1C1C1F 20px,
		transparent 20px,
		transparent 40px
	);
}
.black-btn::after {
	background-color: #1C1C1F;
}
.black-btn:hover {
	color: #fff;
}
.arrow-btn {
    color: #fff;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: inline-flex;
    cursor: pointer;
    border: 0;
    background-color: transparent;
    align-items: center;
    transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.arrow-btn::before {
    content: "";
    height: 14px;
    width: 14px;
    background-image: url(../images/arrow-btn.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 14px;
    display: block;
    margin-right: 6px;
    margin-top: -1px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.arrow-btn:hover {
    color: #fff;
    opacity: 0.6;
}
.common-arrow {
    height: 85px;
    width: 85px;
    opacity: 0.5;
    transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.common-arrow:hover {
    opacity: 1;
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 100%;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

