* {
	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: 'Montserrat-Bold';
    font-size: 6rem;
    line-height: 78px;
}
h2 {
    color: #141414;
    font-family: 'Montserrat-Bold';
    font-size: 4rem;
    line-height: 54.4px;
}
h2 strong {
    font-weight: normal;
    background-color: #FF5400;
    color: #fff;
    padding: 0 7px;
    border-radius: 5px;
    overflow: hidden;
}
h2 em {
    font-size: 4.8rem;
    font-style: normal;
    line-height: 65px;
}
h3 {
    color: #141414;
    font-family: 'SuprapowerSE-Heavy';
    font-size: 2rem;
    line-height: 27.2px;
}
h4 {
    color: #141414;
    font-family: 'LamaSans-SemiBold';
    font-size: 2rem;
    line-height: 27.2px;
}
h5 {
    color: #F5F5F5;
    font-family: 'LamaSans-SemiBold';
    font-size: 1.8rem;
    line-height: 28px; 
    letter-spacing: 0.9px;
}
p {
    color: #141414;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 22px;
    margin-bottom: 24px;
}
li {
    color: #141414;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 22px;
    position: relative;
    padding-left: 22px;
    margin-bottom: 15px;
}
li::after {
    background-image: url(../images/li-icon.svg);
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    height: 13px;
    width: 12px;
}
.common-btn {
    position: relative;
    padding: 9px 19px;
    border: 1px solid #FF5400;
    background: #FF5400;
    color: #fff;
    font-size: 1.6rem;
    overflow: hidden;
    z-index: 1;
    border-radius: 5px;
    display: inline-block;
    font-family: 'LamaSans-Medium';
    transition: all 0.5s;
    overflow: hidden;
}
.common-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0%;
    width: 100%;
    height: 100px;
    background: #141414;
    border-radius: 50%;
    transform: translate(-50%, 80%) scale(0.2);
    transition: all .8s cubic-bezier(.165, .84, .44, 1);
    z-index: -1;
}
.common-btn:hover::before {
    width: 100%;
    height: 100px;
    transform: translateX(-50%) scale(1.4);
    transition: all .8s cubic-bezier(.165, .84, .44, 1);
}
.common-btn:hover {
    color: #fff;
    border: 1px solid #141414;
    transition: all 0.6s;
}
.common-arrow {
    border-radius: 69px;
    border: 1px solid #141414;
    overflow: hidden;
    height: 69px;
    width: 69px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #FF5400;
    border-color: #FF5400;
}
.common-arrow:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(97%) saturate(0%) hue-rotate(289deg) brightness(114%) contrast(101%);
}
.common-arrow img {
    width: 14px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(95%) saturate(6077%) hue-rotate(47deg) brightness(105%) contrast(81%);
}
.common-arrow svg {
	display: none;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
/*****bg-lines******/
.line {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
	width: 100%;
    display: grid;
    grid-template-columns: repeat(var(--repeat-count), 1fr);
	--repeat-count: 30;
	pointer-events: none;
    z-index: 0;
}
.each-line {
	background: linear-gradient(180deg, rgba(16, 24, 36, 0.1) 0%, rgba(16, 24, 36, 0.00) 100%);
	display: block;
	height: 100%;
	width: 1px;
	justify-self: center;
}
/*****circle-border-fill******/
.cta-btn {
	color: #fff;
	font-family: 'LamaSans-SemiBold';
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	--circle-size: 106px;
	--circle-stroke: 1;
	--circle-progress-stroke: 1;
	--circle-color-base: #fff;
	--circle-color-progress: #FF5400;
	--circle-arc-default: 75;
	--circle-speed: 0.8s;
    letter-spacing: 0.9px;
    font-size: 1.8rem;
}
.cta-btn .cta-circle-svg {
	display: block;
	overflow: visible;
	transform: rotate(-90deg);
	pointer-events: none;
	flex-shrink: 0;
	width: var(--circle-size);
	height: var(--circle-size);
}
.cta-circle-base {
	fill: transparent;
	stroke: var(--circle-color-base);
	stroke-width: var(--circle-stroke);
}
.cta-circle-progress {
	fill: transparent;
	stroke: var(--circle-color-progress);
	stroke-width: var(--circle-progress-stroke);
	stroke-dashoffset: 0;
	transition: stroke-dasharray var(--circle-speed) cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-btn strong {
	position: relative;
	font-weight: normal;
	background-image: url(../images/banner-dot.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 18px;
}
.cta-btn em {
	font-style: normal;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	height: calc(100% - 20px);
	width: calc(100% - 20px);
	background-color: #fff;
	border-radius: 100%;
	transition: all 0.6s ease;
	background-image: url(../images/banner-dot-black.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 25px;
}
.cta-btn:hover em {
	transform: translate(-50%, -50%) scale(1);
}
.cta-btn:hover {
	color: #fff;
}