* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #9B896C;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
    font-family: 'InterTight-SemiBold';
    font-size: 6rem;
    line-height: 68px;
}
h2 {
    color: #fff;
    font-family: 'InterTight-SemiBold';
    font-size: 5rem;
    line-height: 58px; 
}
h3 {
    color: #fff;
    font-family: 'InterTight-SemiBold';
    font-size: 3.2rem;
    line-height: 32px; 
}
h4 {
    color: #fff;
    font-family: 'InterTight-Regular';
    font-size: 2.4rem;
    line-height: 24px; 
}
h6 {
    color: #fff;
    font-family: 'InterTight-Medium';
    font-size: 1.6rem;
    line-height: normal;
}
p {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'InterTight-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 15px;
}
ul {
    margin-bottom: 15px;
    padding-left: 22px;
}
.txt-btn {
    color: #fff;
    font-family: 'InterTight-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
    display: inline-block;
    padding-right: 25px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.txt-btn::after {
    content: '';
    height: 14px;
    width: 14px;
    position: absolute;
    right: 5px;
    top: 52%;
    transform: translateY(-50%);
    background-image: url(../images/text-btn-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 14px;
}
.txt-btn:hover {
    color: #9B896C;
}
.txt-btn:hover::after {
    filter: brightness(0) saturate(100%) invert(54%) sepia(42%) saturate(238%) hue-rotate(358deg) brightness(93%) contrast(86%);
}
.common-btn {
    color: #fff;
    font-family: 'InterTight-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    display: inline-block;
    padding: 12px 56px 12px 24px;
    background-color: #9B896C;
    overflow: hidden;
    align-items: center;
    border-radius: 8px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    border: 0;
}
.common-btn::before,
.common-btn::after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    background-color: #fff;
    border-radius: 6px;
    left: -50px;
    top: 4px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-image: url(../images/btn-arrow-black.svg);
    background-size: 16px;
    background-position: center center;
    background-repeat: no-repeat;
}
.common-btn::after {
    right: 4px;
    left: auto;
}
.common-btn:hover {
    color: #fff;
    padding-left: 56px;
    padding-right: 24px; 
}
.common-btn:hover::after {
    right: -50px;
}
.common-btn:hover::before {
    left: 4px;
}
.common-arrow {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.23);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.2px);
    border: 1px solid rgba(255, 255, 255, 0.38);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow img {
	width: 16px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #fff;
    border-color: #fff;
}
.common-arrow:hover img {
    filter: brightness(0);
}
.common-arrow:after {
	display: none;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

