* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #E02B20;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
	font-family: 'FunnelSans-Medium';
	font-size: 6.4rem;
	line-height: 74px; 
	letter-spacing: 1.92px;
}
h2 {
	color: #fff;
	font-family: 'FunnelSans-Medium';
	font-size: 4.8rem;
	line-height: 56px;
	letter-spacing: 1.44px;
}
h3 {
	color: #fff;
    font-family: 'FunnelSans-Bold';
	font-size: 3rem;
	line-height: 40px; 
	letter-spacing: 0.3px;
}
h4 {
	color: #fff;
	font-family: 'FunnelSans-Medium';
	font-size: 2.6rem;
	line-height: 34px;
	letter-spacing: 0.78px;
}
h5 {
	color: #fff;
	font-family: 'FunnelSans-Medium';
	font-size: 2.2rem;
	line-height: 28px;
	letter-spacing: 0.66px;
}
h6 {
	color: #fff;
	font-family: 'LamaSans-Regular';
	font-size: 1.8rem;
	line-height: 27px;
}
p {
	color: #fff;
    font-family: 'LamaSans-Regular';
	font-size: 1.8rem;
	line-height: 27px; 
	margin-bottom: 22px;
}
ul {
	padding: 0;
	list-style-type: none;
	margin-bottom: 22px;
}
li {
	position: relative;
	padding-left: 17px;
}
li::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	height: 14px;
	width: 7px;
	background-image: url(../images/list-mark.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 7px;
}
/******common-btn******/
.common-btn {
	--btn-font-family: 'LamaSans-Medium';
	--btn-font-size: 1.6rem;
	--line-height: 24px;
	padding: 10px 18px;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	border-radius: 5px;
	box-sizing: border-box;
	transition: border-color 0.4s ease, background-color 0.4s ease;
	background-color: #E02B20;
	border: 1px solid #E02B20;
}
.common-btn .mas,
.common-btn .mas-text,
.common-btn .btn-mask-text {
	font-family: var(--btn-font-family);
	font-size: var(--btn-font-size);
	line-height: var(--line-height);
	box-sizing: border-box;
}
.common-btn .mas {
	visibility: hidden;
}
.common-btn .mas strong,
.common-btn .mas-text strong,
.common-btn .btn-mask-text strong {
	font-weight: normal;
}
.common-btn .mas-text {
	position: absolute;
	top: 0;
	/* width: 100%; */
	height: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	z-index: 1;
	left: 50%;
	transform: translateX(-50%);
}
.common-btn .btn-mask-text {
	position: absolute;
	top: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	/* left: 50%;
	transform: translateX(-50%); */
	height: 100%;
	cursor: pointer;
	z-index: 2;
	-webkit-mask: url("../images/btn-mask.png");
	mask: url("../images/btn-mask.png");
	-webkit-mask-size: 3000% 100%;
	mask-size: 3000% 100%;
	background-color: #090a0c;
	color: #fff;
	-webkit-mask-position: 100% 0;
	mask-position: 100% 0;
	-webkit-animation: play-reverse 0.7s steps(29) forwards;
	animation: play-reverse 0.7s steps(29) forwards;
}
.common-btn:hover {
	border-color: #E02B20;
}
.common-btn:hover .btn-mask-text {
	-webkit-animation: play-forward 0.7s steps(29) forwards;
	animation: play-forward 0.7s steps(29) forwards;
}
@-webkit-keyframes play-forward {
	from {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}
	to {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
	}
}
@keyframes play-forward {
	from {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}
	to {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
	}
}
@-webkit-keyframes play-reverse {
	from {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
	}
	to {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}
}
@keyframes play-reverse {
	from {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
	}
	to {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}
}
.common-btn.border-btn {
	background-color: transparent;
	border-color: #fff;
}
.common-btn.border-btn .mas-text {
	color: #fff;
}
.common-btn.border-btn .btn-mask-text {
	background-color: #E02B20;
}
.common-btn.border-btn:hover {
	border-color: #E02B20;
}
.txt-btn {
	color: #F6F8FA;
    font-family: 'LamaSans-Medium';
	font-size: 1.6rem;
	line-height: 24px;
	display: block;
	padding-top: 23px;
	padding-right: 50px;
	border-top: 1px solid #fff;
	position: relative;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.txt-btn::after {
	content: "";
	height: 20px;
	width: 34px;
	position: absolute;
	right: 0;
	bottom: 0;
	background-image: url(../images/txt-btn-arrow.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 34px;
	filter: brightness(0) invert(1);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.txt-btn:hover::after {
	filter: brightness(1) invert(0);
}
.txt-btn:hover {
	color: #E02B20;
}
.common-arrow {
	width: 44px;
	height: 44px;
	border: 1px solid #fff;
	border-radius: 5px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.common-arrow:hover {
	background-color: #E02B20;
	border-color: #E02B20;
}
.common-arrow img {
    width: 15px;
}
.common-arrow svg {
	display: none;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.common-wrap {
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.inner-wrap {
	border-radius: 20px;
	overflow: hidden;
	background-color: #141517;
}
.common-scrollbar {
	background-color: rgba(255, 255, 255, 0.20);
	height: 2px !important;
	border-radius: 26px;
	position: initial !important;
}
.common-scrollbar .swiper-scrollbar-drag {
    background-color: #E02B20;
    border-radius: 26px;
	cursor: grab;
}