* {
	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: #F4F4F4;
    font-family: 'COCOGOOSE-Regular';
    font-size: 7.2rem;
    line-height: 80px;
}
h2{
    color: #2B2B2B;
    font-family: 'COCOGOOSE-Regular';
    font-size: 4rem;
    line-height: 48px;
}
h3{
    color: #FFF;
    font-family: 'COCOGOOSE-Regular';
    font-size: 3.2rem;
    line-height: 48px;
}
h4{
    color: #A87F55;
    font-family: 'Inter-Regular';
    font-size: 2.4rem;
    line-height: 24px;
}
h4 strong{
    color: #A87F55;
    font-family: 'COCOGOOSE-Regular';
    font-size: 2.4rem;
    line-height: 32px;
    font-weight: normal;
}
h5{
    color: #2B2B2B;
    font-family: 'COCOGOOSE-Regular';
    font-size: 1.8rem;
    line-height: 26px;
}
h6{
    color: #A87F55;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
}
p{
    color: #2B2B2B;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
}
li{
    color: #2B2B2B;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
    padding-left: 14px;
}
li::after {
    position: absolute;
    content: "";
    background-color: #2B2B2B;
    left: 2px;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50px;
}
.common-btn {
    color: #F4F4F4;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    padding: 11px 40px;
    display: inline-block;
    border-radius: 5px;
    border: 1.5px solid #A87F55;
    background: #A87F55;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.common-btn::after{
    position: absolute;
    content: "";
    background: #FCFAF5;
    bottom: 0;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    transform: scaleY(0);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    width: 100%;
}
.common-btn:hover::after {
    transform: scaleY(1);
    z-index: -1;
}
.common-btn:hover {
	color: #2B2B2B;
    padding-left: 45px;
    padding-right: 45px;
    border-color: #FCFAF5;
}
.bg-dark-btn{
    background: #444;
    border-color: #444;
}
.bg-dark-btn::after{
    background: #A87F55;
}
.bg-dark-btn:hover{
    color: #F4F4F4;
    border-color: #A87F55;
}
.common-border-btn{
    border: 1.5px solid #2B2B2B;
    background-color: transparent;
    color: rgba(43, 43, 43, 0.80);
    font-family: 'Hamburg-Regular';
}
.common-border-btn::after{
    background: #444;
}
.common-border-btn:hover{
    border-color: #2B2B2B;
    color: #F4F4F4;
}
.common-arrow {
    background: #A87F55;
    width: 48px;
    height: 48px;
    border-radius: 50px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin: 0;
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 17px;
    height: 14px;
}
.common-arrow:hover{
    background: #E3D9D0;
}
.common-arrow:hover img{
    filter: brightness(0) saturate(100%) invert(17%) sepia(0%) saturate(1700%) hue-rotate(352deg) brightness(93%) contrast(97%);
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}