* {
	outline: none !important;
}
a {
	text-decoration: none;
    color: #1E1C1C;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
    color: #EB752D;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
	font-family: 'Montserrat-SemiBold';
    font-size: 6rem;
    line-height: normal;
}
h2 {
    color: #1E1C1C;
    font-family: 'iCielGotham-Medium';
    font-size: 4.6rem;
    line-height: normal;
}
h3 {
    color: #1E1C1C;
    font-family: 'iCielGotham-Medium';
    font-size: 3.8rem;
    line-height: normal;
}
h1 strong, h2 strong, h3 strong {
	font-weight: normal;
	position: relative;
}
h1 strong {
	font-family: 'Montserrat-SemiBold';
}
h1 em, h2 em, h3 em {
	font-style: normal;
	position: relative;
	z-index: 1;
}
h1 strong::after,
h2 strong::after,
h3 strong::after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url(../images/text-line.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
}
h4 {
    color: #1E1C1C;
    font-family: 'iCielGotham-Medium';
    font-size: 2.4rem;
    line-height: normal;
}
h5 {
    color: #1E1C1C;
    font-family: 'iCielGotham-Medium';
    font-size: 2rem;
    line-height: normal;
}
h6 {
    color: #1E1C1C;
    font-family: 'Inter-Regular';
    font-size: 1.8rem;
    line-height: 30px;
    letter-spacing: 0.18px;
}
p {
    color: #1E1C1C;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
    letter-spacing: 0.32px;
    margin-bottom: 24px;
}
ul {
    margin-bottom: 24px;
}
.common-btn {
    font-family: 'Inter-Regular';
	position: relative;
	font-size: 1.6rem;
	display: inline-block;
	border: 0;
	border-radius: 0 100px 100px 0;
	background-color: #1E1C1C;
    color: #fff;
	padding: 14px 18px;
	padding-left: 0;
	max-width: max-content;
	line-height: normal;
	cursor: pointer;
	text-align: center;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	position: relative;
	margin-left: 48px;
}
.common-btn::after {
	position: absolute;
	left: -30%;
	top: 0;
	content: "";
	background-color: transparent;
	height: 100%;
	border-radius: 100px;
	width: 100%;
}
.common-btn strong {
	height: 100%;
	width: 48px;
	background-color: #1E1C1C;
	background-image: url(../images/btn-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 14px;
	top: 0;
	left: -48px;
	position: absolute;
	border-radius: 100px 0 0 100px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.common-btn:hover {
	padding-right: 18px;
	padding-left: 18px;
	color: #fff;
	border-radius: 100px;
}
.common-btn:hover strong {
	border-radius: 100px;
	animation: movearrow 0.5s;
}
@keyframes movearrow {
	10% {
		background-position-x: -50px;
	}
	20% {
		background-position-x: 150px;
	}
	100% {
		background-position-x: center;
	}
}
.highlight-btn {
	background-color: #EB752D;
	color: #FFF;
}
.highlight-btn strong {
	background-color: #EB752D;
	/* background-image: url(../images/btn-arrow-black.svg); */
}
.highlight-btn:hover {
	color: #fff;
}
.white-btn {
	background-color: #fff;
	color: #1E1C1C;
}
.white-btn strong {
	background-color: #fff;
	background-image: url(../images/btn-arrow-black.svg);
}
.white-btn:hover {
	color: #1E1C1C;
}
.txt-btn {
	color: #fff;
    font-family: 'Inter-Regular';
	font-size: 1.6rem;
	line-height: 24px;
	position: relative;
	padding-right: 21px;
	display: inline-block;
	cursor: pointer;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.txt-btn::after {
	content: "";
	height: 13px;
	width: 13px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	filter: brightness(0) invert(1);
	background-image: url(../images/txt-btn-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 13px;
}
.txt-btn:hover {
	color: #EB752D;
}
.txt-btn:hover::after {
	filter: brightness(1) invert(0);
}
.common-arrow {
	height: 38px;
	width: 38px;
	background-color: #F5F5F5;
	border-radius: 100%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.common-arrow:hover {
	background-color: #EB752D;
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 15px;
}
.common-arrow:hover img{
	filter: brightness(0) invert(1);
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.common-arrow svg{
	display: none;
}

