* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
   	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #1c1c1c;
}
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: 'ArlonSemiBold';
    font-size: 6.4rem;
    line-height: 72px;
    letter-spacing: 3.2px;
}
h2 {
    color: #010101;
    font-family: 'ArlonSemiBold';
    font-size: 4.8rem;
    line-height: 56px;
    letter-spacing: 2.4px;
}
h3 {
    color: #FFF;
    font-family: 'Inter-Bold';
    font-size: 3.2rem;
    line-height: 40px;
}
h4 {
    color: #010101;
    font-family: 'Inter-Bold';
    font-size: 2.4rem;
    line-height: 32px;
}
h6 {
    color: rgba(1, 1, 1, 0.50);
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
}
.font-bg {
    border-radius: 4px;
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 83, 0, 0.20);
}
.font-bg h6{
    color: #010101;
    font-family: 'Inter-Bold';
}
p {
    color: #010101;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
}
li {
    color: #FFF;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px;
}
li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/li-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 19px;
    height: 19px;
    width: 19px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;   
}
.common-gap{
    padding: 0px 16px;
}
.common-container{
    padding: 0 16px;  
}
.common-btn {
    color: #fff;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    padding: 12px 52px 12px 42px;
    border-radius: 100px;
    border: 1px solid #FF5300;
    background-color: #FF5300;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    display: inline-block;
    position: relative;
    transition: all 0.4s;
    -webkit-transition: all 0.5s;
    overflow: clip;
}
.btn-name{
    position: relative;
    z-index: 9;
}
.accent-bg-circle {
    z-index: 0;
    background-color: #010101;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    position: absolute;
    inset: 50% 0% 0% 50%;
    transform: translate(-50%, -50%);
}
.default-bg-circle {
    z-index: 1;
    background-color: #FF5300;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    position: absolute;
    inset: 50% 0% 0% 50%;
    transform: translate(-50%, -50%);
}
.common-btn:hover{
    color: #FFF;
    border-color: #010101
}
.common-btn::after {
    content: '';
    position: absolute;
    background-image: url(../images/btn-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    width: 8px;
    background-size: 8px;
    z-index: 1;
}
.border-btn{
    border-color: #626262;
    background-color: transparent;
    color: #626262;
}
.border-btn .accent-bg-circle{
    background-color: #FF5300;
}
.border-btn .default-bg-circle{
    background-color: #FFF;
}
.border-btn:hover{
    border-color: #FF5300;
}
.border-btn:hover::after{
    filter: brightness(0) invert(1);
}
.border-btn::after{
    background-image: url(../images/btn-icon1.svg);   
}
.common-wrap {
    padding-left: 15px;
    padding-right: 15px;
}
.common-arrow {
   border: 1px solid #010101;
   height: 53px;
   width: 53px;
   border-radius: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin: 0;
}
.common-arrow:hover {
    background-color: #FF5300;
    border-color: #FF5300;
}
.common-arrow img{
	width: 10px;
    filter: brightness(1) invert(0);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover img {
    filter: brightness(0) invert(1);
}
.common-arrow:after{
	display: none;
}
.common-bg{
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}