/*======================
   00.  fonts
========================*/
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap'); */

:root{
	--body-bg:#191919;
	--text-color:#ffffffab;
	--primary-color:#F32735;
	--black:#000;
	--black2:#ffffff0d; /*5%*/
	--black3:#ffffff14; /*8%*/
	--white:#fff;
	--white2:#ffffff1c;
}
/*======================
   02. Basic css
========================*/
html{
	font-size: 62.5%;
}
a, button, img{
	transition: 0.3s;
}

a:hover {
	opacity: 0.8;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}


body {
	color: var(--white);
	background-color: var(--body-bg);
	font-family: "Montserrat", sans-serif;
	line-height: 1.5;
	font-weight: 400;
	font-style: normal;
	font-size: 1.6rem;
}
a{
	color: var(--dark);
	text-decoration: none;
}
a:hover, button:hover{
	text-decoration: none;
	color: var(--dark);
}
p{
	color: var(--text-color);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.5;
}

ul {
	list-style: none;
}
img{
	max-width: 100%;
}
button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}
/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}
.loader3 {
	width: 6.0rem;
	height: 6.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 6.0rem;
	height: 6.0rem;
	border-radius: 100%;
	background: var(--primary-color);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}

/*======================
   03.  common
========================*/
.primary-btn{
	font-weight: 700;
	display: inline-block;
	background: rgb(243,39,53);
	padding: 1.1rem 2rem;
	border-radius: 5rem;
	background: linear-gradient(90deg, rgba(243,39,53,1) 0%, rgba(247,132,105,0.9892769607843137) 100%);
	opacity: 1;
	line-height: 110%;
        white-space: nowrap;
}

.primary-btn:hover{
	opacity: 0.8;
}

.primary-btn {

}
.card-design{
	border: .2rem solid var(--black3);
	border-radius: 3.8rem;
}
.form-control{
	border: none;
}
.form-control:focus{
	outline: none;
	box-shadow: none;
}
/*======================
    Header Css
========================*/
header{
	position: absolute;
	top: 0;
	left: 0;
	background-color: transparent;
	width: 100%;
}
.header-main{
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: .1rem solid var(--white2);
	padding-bottom: .8rem;
}
.header-logo img{
	width: 18rem;
}
.header-menu{
	display: flex;
	align-items: center;
	gap: 2.5rem;
}
.header-menu a{
	font-weight: 500;
	z-index: 5 ;
}
.header-cta.primary-btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	z-index: 5 ;
}

/*======================
    Banner Css
========================*/
.banner{
	height: 97rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
.banner-img img{
	position: absolute;
	top: 0;
	right: 0;
	width: 92rem;
}

.banner-content-ignite {
	font-family: Montserrat-Black;
	color: black; 
	-webkit-text-stroke: 2px var(--legal3-red) ; 
	text-stroke: 2px var(--legal3-red);
}

.banner-content-line1 {
	font-family: Montserrat-Black;
    line-height: 100% !important;
	font-size: 6rem !important;
	margin-top: 30rem !important;
}

.banner-content-line2 {
	display: inline-block;
	max-width: 500px;
	line-height: 130% !important;
	font-weight: bold;
}

.banner-content-line3 {
	font-size: 10rem !important;
	OFFheight: 20px !important;
}

.banner-content{
	position: relative;
	z-index: 3;
}

.banner-content h1{
	font-size: 6.6rem;
	line-height: 1.2;
	margin: 3rem 0;
}

.banner-content p {
	font-size: 2.8rem;
}

.banner-content p.with-design {
	padding-bottom: 20rem;
}

.banner-content p span{
	letter-spacing: .1rem;
	font-size: 1.3rem;
	background: linear-gradient(90deg, rgba(243,39,53,1) 0%, rgba(247,132,105,0.9892769607843137) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	border: .1rem solid rgb(243,39,53);
	display: inline-block;
	padding: .4rem .9rem;
	border-radius: 5rem;
	line-height: 2em;
}
/*======================
    feature Css
========================*/
.feature{
	position: relative;
}
.feature .circle-shape-5 {
    position: absolute;
    left: 0;
    top: -28rem;
    width: 75rem;
}
.feature-box{
	text-align: center;
	padding: 5rem 4rem;
	height: 100%;
	background-color: var(--black2);
}
.feature-box.box-2{
	padding: 5rem 2.2rem;
}
.feature-box img{
	height: 7.2rem;
}
.feature-box h3{
	margin-top: 3rem;
	margin-bottom: 1.4rem;
	font-size: 2.4rem;
	line-height: 3rem;
	font-weight: 600;
}
/*======================
    ready Css
========================*/
.ready{
	position: relative;
	padding-top: 18rem;
	padding-bottom: 35rem;
}
.ready .vector-shape-2 {
    position: absolute;
    right: -1.8rem;
    top: -18rem;
    z-index: 1;
	width: 99rem;
}
.ready .circle-shape-4 {
    position: absolute;
    left: 0;
    top: 0;
    width: 21.5rem;
}
.ready-box{
	border-radius: 3.8rem;
	padding: 5.5rem 5rem;
	background: rgb(145,153,185);
	background: linear-gradient(90deg, rgba(145,153,185,1) 0%, rgba(225,59,77,1) 100%);
}
.ready-box h2{
	font-size: 3.6rem;
	margin-bottom: 2.5rem;
}
.ready-box p{
	font-size: 1.8rem;
	line-height: 1.7;
}
.ready-video-box {
    position: absolute;
    top: 12rem;
    right: -2rem;
	z-index: 2;
}
.ready-video-thumbnail{
	position: relative;
	border-radius: 2rem;
	overflow: hidden;
	box-shadow: 1rem 1rem 3rem 0 rgba(243, 39, 53, 0.45);
}
.ready-video-thumbnail img{
	width: 52.5rem;
}
.ready-play-btn{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ready-play-btn img{
	width: 7.2rem;
}
#readyVideo .modal-dialog{
	max-width: 60rem;
}
#readyVideo .modal-dialog .modal-content{
	background-color: var(--body-bg);
}
#readyVideo video, #readyVideo iframe {
    width: 100%;
    height: 40rem;
}
/*======================
    why choose Css
========================*/
.why-choose{
	position: relative;
}
.why-choose .circle-shape-2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 55rem;
}
.why-choose .circle-shape-3 {
    position: absolute;
    right: 4rem;
    top: -40rem;
    width: 80rem;
    z-index: 0;
}
.why-choose h2{
	padding: 5rem;
	font-size: 4rem;
}
.why-choose .row>div{
	padding-left: 1rem;
	padding-right: 1rem;
}
.why-choose-box{
	padding: 4.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
	background-color: var(--black2);
	margin-bottom: 2rem;
}
.why-choose-img img{
	width: 7.2rem;
}
.why-choose-box h3{
	font-size: 2.4rem;
	font-weight: 600;
}
/*======================
    improve Css
========================*/
.improve{
	padding: 14rem 0;
	position: relative;
}
.improve .vector-shape-1 {
    position: absolute;
    left: -12rem;
    z-index: -1;
    width: 130rem;
    opacity: .8;
}
.improve-img img{
	width: 15.7rem;
}
.improve-content{
	position: relative;
}
.improve-content::after{
	content: "";
	width: 100%;
	height: 19rem;
	bottom: 0;
	left: 0;
	position: absolute;
	background: rgb(25,25,25);
	background: linear-gradient(180deg, rgba(25,25,25,0) 100%, rgba(25,25,25,1) 100%);
}
.improve-content h2{
	font-size: 3.2rem;
	margin-bottom: 2.5rem;
}
.improve-card{
	padding: 3rem 4.2rem;
	background-color: #2D2D2D;
	margin-bottom: 1rem;
}
.improve-card p{
	color: var(--white);
	font-weight: 600;
	line-height: 3rem;
}
/*======================
    mission Css
========================*/
.mission {
    position: relative;
    padding-top: 16rem;
    padding-bottom: 8rem;
}
.mission .circle-shape-1 {
    position: absolute;
    left: 0;
    top: -36rem;
}
.mission-box{
	background-color: var(--black2);
	padding: 5rem;
}
.mission-box h3{
	font-size: 3.6rem;
	margin-bottom: 1.4rem;
}
.mission-box p{
	font-size: 1.8rem;
	line-height: 1.6;
}
.mission-img img {
    position: absolute;
    width: 74.5rem;
    right: 0;
    top: 0;
}
/*======================
    contact Css
========================*/
.contact{
	padding-top: 17.5rem;
	padding-bottom: 10rem;
	position: relative;
}
.contact::after {
    content: "";
    width: 100%;
    height: 10rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgb(22 22 22 / 9%) 0%, rgb(26 26 26) 70%);
    z-index: 1;
}
.contact-content{
	padding-right: 6rem;
}
.contact-content .enelope-shape {
    position: absolute;
    left: 0;
    bottom: -4rem;
    width: 59rem;
	z-index: -2;
}
.contact-content .shape-1 {
    position: absolute;
    left: 0;
    bottom: -7rem;
	z-index: -1;
	opacity: .5;
	width: 108rem;
}
.contact-content h2{
	font-size: 3.6rem;
}
.contact-content p{
	color: var(--white);
	margin-top: 1.5rem;
	margin-bottom: 2rem;
}
.contact-content a{
	display: flex;
	align-items: center;
	gap: 1.7rem;
	padding: 1.8rem 3.4rem;
	z-index: 5;
}
.contact-content a img{
	width: 2.8rem;
}
.contact-form-wrap{
	padding: 2.7rem 3.8rem 3.8rem 3.8rem;
	background-color: var(--black2);
}
.contact-form-wrap h3{
	text-align: center;
	font-size: 3.2rem;
	margin-bottom: 1.7rem;
}
.contact-form-wrap form{
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	position: relative;
	z-index: 1;
}
.contact-form-wrap form label{
	margin-bottom: .4rem;
}
.contact-form-wrap form input, .contact-form-wrap form textarea{
	border-radius: 2.7rem;
	background-color: var(--body-bg);
	border: .1rem solid #313131;
	padding: 1.8rem 2rem;
	color: var(--white);
	font-size: 1.8rem;
}
.contact-form-wrap form input:focus, .contact-form-wrap form textarea:focus{
	background-color: var(--body-bg);
	border: .1rem solid #313131;
	color: var(--white);
}
.contact-form-wrap form input:active, .contact-form-wrap form textarea:active{
	background-color: var(--body-bg);
	border: .1rem solid #313131;
}
.contact-form-wrap form button{
	border: none;
	padding: 1.3rem 5rem;
	background: rgb(225,59,77);
	background: linear-gradient(270deg, rgba(225,59,77,1) 0%, rgba(145,153,185,1) 100%);
	color: var(--white);
	border-radius: 5rem;
	font-weight: 700;
}
input:-internal-autofill-selected {
    background-color:var(--body-bg) !important;
}
/*======================
    footer Css
========================*/
.footer-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4rem 0;
	border-top: .1rem solid var(--white2);
}
.footer-logo img{
	width: 18rem;
}
.footer-link{
	display: flex;
	align-items: center;
	gap: 3.6rem;
}
.footer-bottom{
	padding: 3rem 0;
	background-color: #ffffff0a;
}
.footer-bottom-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-social{
	display: flex;
	gap: 4rem;
}
.footer-social a{
	display: block;
}
.footer-social a img{
	width: 1.8rem;
}
/* Important css */
.container{
	padding-left: 15px;
	padding-right: 15px;
}
.row{
	margin-left: -1.5rem;
	margin-right: -1.5rem;
}
.row>div{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
