* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #1E1F1F;
}
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: 'Eurostile-Medium';
    font-size: 7rem;
    line-height: 74px;
}
h2 {
    color: #1E1F1F;
    font-family: 'Eurostile-Medium';
    font-size: 4.8rem;
    line-height: normal;
}
h3 {
    color: #FFF;
    font-family: 'SansationBold';
    font-size: 4rem;
    line-height: 48px;
    letter-spacing: 1.6px;
}
h4 {
    color: #FFF;
    font-family: 'Eurostile-Bold';
    font-size: 2.4rem;
    line-height:  28.8px;
    letter-spacing: 0.24px;
}
h5 {
    color: #F5F5F5;
    font-family: 'LamaSans-Bold';
    font-size: 1.8rem;
    line-height: 22px;
}
p {
    color: #1E1F1F;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    margin-bottom: 24px;
}
ul {
    margin-bottom: 27px;
    padding-left: 0;
    list-style: none;
}
li {
    color: #1E1F1F;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    position: relative;
    padding-left: 30px;
}
li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    background-image: url(../images/li-icon.svg);
    height: 14px;
    width: 14px;
    background-size: 15px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 2px;
    background-color: #8B6743;
    overflow: hidden;
}
.common-btn {
    max-width: max-content;
    font-family: 'LamaSans-Medium';
    border: 1px solid #fff;
    padding: 11px 44px 11px 16px;
    color: #fff;
    font-size: 1.6rem;
    line-height: 24px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    display: inline-block;
    overflow: hidden;
    text-transform: none;
    position: relative;
    border-radius: 100px;
    background: transparent;
    z-index: 1;
}
.common-btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #8B6743;
    clip-path: inset(1.5rem 2rem 1.5rem calc(100% - 0rem) round 4.25rem);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    z-index: -1;
}
.common-btn:hover {
	color: #fff;
    border-color: #8B6743;
    /* background-color: #8B6743; */
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover::after {
    clip-path: inset(0 round 4.25rem);
}
.common-btn strong {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 9px;
    width: 24px;
    height: 24px;
    content: "";
    background-color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border: 1px solid #fff;
    border-radius: 100px;
    color: transparent;
}
.common-btn strong::before {
    content: "";
    height: 7px;
    width: 9px;
    background-image: url(../images/black-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 9px;
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 100px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    z-index: 1;
    opacity: 0;
}
.common-btn strong::after {
    content: "";
    height: 7px;
    width: 9px;
    background-image: url(../images/black-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 9px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 100px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover strong {
    background-color: #fff;
    border-color: #fff;
}
.common-btn:hover strong::before {
    left: 50%;
    opacity: 1;
}
.common-btn:hover strong::after {
    left: 83%;
    opacity: 0;
}
.border-btn {
    border-color: #1E1F1F;
    color: #1E1F1F;
}
.border-btn::after {
    background-color: #1E1F1F;
    /* z-index: 1; */
}
.border-btn:hover {
    color: #fff;
    border-color: #1E1F1F;
}
.border-btn strong {
    background-color: #1E1F1F;
    border: 1px solid #1E1F1F;
}
.border-btn strong::before {
    background-image: url(../images/white-arrow.svg);
}
.border-btn strong::after {
    background-image: url(../images/white-arrow.svg);
}
.border-btn:hover strong::before {
    background-image: url(../images/black-arrow.svg);
}
.arrow-reverse-btn {
    padding: 11px 16px 11px 44px;
}
.arrow-reverse-btn strong {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: auto;
    left: 9px;
    width: 24px;
    height: 24px;
    content: "";
    background-color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border: 1px solid #fff;
    border-radius: 100px;
    color: transparent;
}
.arrow-reverse-btn:hover {
    border-color: #fff;
}
.arrow-reverse-btn::after {
    clip-path: inset(3px 80% 3px 5px round 4.25rem);
    opacity: 0;
}
.arrow-reverse-btn:hover::after {
    clip-path: inset(0 round 4.25rem);
    opacity: 1;
}
.common-arrow {

}
.common-arrow svg {
	display: none;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.common-wrap {
    padding-left: 10px;
    padding-right: 10px;
}

.inner-wrap {
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
}
.show-spotlight {
    position: relative;
}
.spotlight {
    position: absolute;
    width: 284px;
    height: 284px;
    border-radius: 50%;
    background: rgba(159, 102, 60, 0.6);
    filter: blur(180px);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    z-index: 0;
}