* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #0A0B19;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #8C7862;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
    font-family: 'EurostileLTProUnicode-BoldOblique';
    font-size: 6.4rem;
    line-height: 72px; 
}
h2 {
    color: #0A0B19;
    font-family: 'EurostileLTProUnicode-BoldOblique';
    font-size: 4.8rem;
    line-height: 56px; 
}
h3 {
    color: #0A0B19;
    font-family: 'EurostileLTProUnicode';
    font-size: 3.2rem;
    line-height: 40px;
}
h4 {
    color: #0A0B19;
    font-family: 'EurostileLTProUnicode-Bold';
    font-size: 1.8rem;
    line-height: 24px; 
}
p {
    color: #0A0B19;
    font-family: 'EurostileLTProUnicode';
    font-size: 1.6rem;
    line-height: 24px; 
    margin-bottom: 14px;
}
ul {
    margin-bottom: 14px;
}
.common-arrow {
    height: 47px;
    width: 57px;
    border-radius: 5px;
    border: 1px solid #0A0B19;
    background-color: rgba(10, 11, 25, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #8C7862;
    border-color: #fff;
}
.common-arrow:hover img {
    filter: brightness(0) invert(1);
}
.white-arrow {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}
.white-arrow img {
    filter: brightness(0) invert(1);
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.common-btn {
    color: #0A0B19;
    font-family: 'EurostileLTProUnicode';
    font-size: 1.6rem;
    line-height: 24px; 
    display:inline-block;
    padding:11px 30px;
    border-radius: 5px;
    border: 1px solid #0A0B19;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    cursor: pointer;
}
.common-btn::after {
    content: "";
    height: 0;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #8C7862;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.common-btn:hover::after { 
    height: 100%;
}
.common-btn:hover {
    color: #0A0B19;
    border-color: #8C7862;
}
.common-btn strong {
    position:relative;
    display:inline-flex;
    overflow:hidden;
    font-weight: normal;
    z-index: 1;
}
.common-btn strong span {
    display:block;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.common-btn .clone {
    position:absolute;
    inset:0;
    transform:translateY(-100%);
    color: #fff;
}
.common-btn:hover .original { 
    transform:translateY(100%);
}
.common-btn:hover .clone { 
    transform:translateY(0); 
}
.white-btn {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: #fff;
}
.dark-btn {
    background-color: #0A0B19;
    border-color: #0A0B19;
    color: #fff;
}
.brown-btn {
    background-color: #8C7862;
    border-color: #8C7862;
    color: #fff;
}
.brown-btn::after {
    background-color: #fff;
}
.brown-btn:hover,
.brown-btn .clone {
    color: #0A0B19;
}
.with-icon {
    display: inline-flex;
    flex-direction: row-reverse;
}
.with-icon::before {
    content: "";
    height: 18px;
    width: 18px;
    display: block;
    background-image: url(../images/send.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 18px;
    margin-left: 16px;
    position: relative;
    top: 2px;
    z-index: 1;
}
.txt-btn {
    color: #0A0B19;
    font-family: 'EurostileLTProUnicode';
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.txt-btn:hover {
    color: #8C7862;
}