@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
*
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Roboto", sans-serif;
}
:root
{
	--main-color: #2774CD;
	--secondary-color: #0F2C4E;
	--gray-color: #76797D;
}
html
{
	scroll-behavior: smooth;
}
.main_container{
	width: 100%;
	position: relative;
}
.black_screen
{
	width: 100%;
	height: 100vh;
	position: fixed;
	left: -200%;
	top: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	transition: 0.2s all linear;
}
.header
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0px 5%;
	position: sticky;
	top: 0px;
	margin: 0px auto;
	background: white;
	z-index: 99;
}
.logo img
{
	width: 228px;
}
.menu_opener,.menu_closer,.side_menu_btn
{
	display: none;
}
.menu ul
{
	list-style: none;
}
.menu ul li
{
	display: inline-block;
	font-size: 18px;
}
.menu ul li a
{
	color: #1F5DA3;
	text-decoration: none;
	margin: 0px 25px;
	padding: 0px 0px 2px 0px;
	position: relative;
	width: fit-content;
}
.menu ul li a:before
{
	content: '';
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 0%;
	height: 2px;
	background: powderblue;
	transition: 0.2s linear;
}
.menu ul li a:hover:before
{
	width: 100%;
}
.header_btn a
{
	text-decoration: none;
	cursor: pointer;
	transition: 0.2s linear;
	border-radius: 30px;
	background: var(--main-color);
	display: block;
	width: fit-content;
}
.header_btn a button
{
	outline: none;
	border: none;
	color: white;
	background: transparent;
	font-size: 16px;
	height: 3rem;
	padding: 8px 12px;
	cursor: pointer;
}	
.header_btn i
{
	margin-right: 3px;
}
.header_btn a:hover
{
	box-shadow: 0px 8px 10px #a7a7a7;
}
.hero_section
{
	margin: 25px auto 0px auto;
	text-align: center;
	width: 90%;
}
.hero_section h1
{
	color: var(--secondary-color);
	font-size: 70px;
	font-weight: 500;
}
.hero_section h3
{
	margin-top: 10px;
	color: var(--main-color);
}
.hero_section p
{
	color: var(--gray-color);
	margin-top: 15px;
}
.statics_container
{
	width: 90%;
	margin: 30px auto 0px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 9;
}
.section_one p
{
	position: relative;
	top: -15px;
	font-size: 15px;
	color: #8F9296;
}
.section_one,.section_two
{
	width: 18rem;
}
.section_one svg,.section_two svg
{
	width: 100%;
}
.section_two p
{
	position: relative;
	top: -15px;
	text-align: right;
	font-size: 15px;
	color: #8F9296;
}
.statics_btn a
{
	display: block;
	text-decoration: none;
}
.statics_btn a button
{
	height: 2.5rem;
	background: var(--main-color);
	text-align: center;
	padding: 0px 15px;
	border: none;
	outline: none;
	border-radius: 30px;
	color: white;
	cursor: pointer;
}
.statics_dashboard_container
{
/* 	background-image: url('images/imggif.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover; */
	position: relative;
	overflow: hidden;
	padding: 15px 0px;
	height: 100vh;
	z-index: 9;
}
video
{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}
.statics_image_container
{
	margin: 60px auto 0px auto;
	text-align: center;
	position: relative;
	z-index: 9;
	width: 100%;
	/* height: 70vh;
	background: 
	url('images/hero_img_one.png') center center / cover no-repeat, 
	url('images/hero_img_two.png') left bottom / 200px 100% no-repeat, 
	url('images/hero_img_three.png') right bottom / 200px 100% no-repeat; */
}
.statics_image_container #img_one
{
	width: 60%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, 0%);
}
.statics_image_container #img_two {
	width: 30%;
	position: absolute;
	left: 0;
	/* top: 39%; */
	transform: translate(15%, 130%);
}
.statics_image_container #img_three {
	width: 30%;
	position: absolute;
	right: 0;
	/* top: 39%; */
	transform: translate(-8%, 115%);
}
.about_us_section
{
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--main-color);
}
.about_us_container
{
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	background: var(--main-color);
	width: 100%;
}
.about_us_container h2
{
	font-size: 45px;
	color: white;
	font-weight: 400;
}
.about_us_paragraph
{
	width: 60%;
}
.about_us_paragraph p
{
	word-wrap: break-word;
	font-size: 18px;
	color: white;
	font-weight: 300;
	line-height: 28px;
}
.about_us_btn button
{
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid white;
	outline: none;
	background: transparent;
	margin-top: 6%;
	cursor: pointer;
}
.about_us_btn a button
{
	text-decoration: none;
	color: white;
	font-size: 18px;
	font-weight: 300;
}
.about_us_btn i
{
	margin-left: 5px;
	transition: 0.2s linear;
}
.about_us_btn a:hover i
{
	margin-left: 15px;
}
.analytic_section
{
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.analytic_section_container
{
	width: 90%;
	border-radius: 48px;
	border: 1px solid var(--main-color);
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	padding: 100px 20px;
	height: 30rem;
}
.analytic_section_container .card
{
	width: 16rem;
}
.card_contianer
{
	width: 75%;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
}
.analytic_section_container h1
{
	font-size: 45px;
	color: var(--secondary-color);
	font-weight: 400;
	width: 16rem;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.card .card_img
{
	margin-bottom: 10px;
}
.card img
{
	width: 50px;
	height: 50px;
}
.card .card_heading p
{
	color: var(--secondary-color);
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 10px;
}
.card .card_paragraph p
{
	color: var(--gray-color);
	font-size: 16px;
	line-height: 24px;
}
.slider_section {
	width: 100%;
	height: auto;
	position: relative;
	padding: 10% 0px;
}
.slider_section h1
{
	margin-left: 5%;
	margin-bottom: 5%;
}
.slider
{
	width: 95%;
	margin: 0px 0px 0px auto;
}
.item
{
	padding: 30px 20px;
	width: 90%;
	border-radius: 20px !important;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	margin-right: 10px;
}
.item .left_part
{
	width: 30%;
}
.item .right_part
{
	width: 60%;
}
.left_part h2
{
	font-size: 50px;
	color: var(--main-color);
	font-weight: 400;
}
.left_part #item_heading
{
	font-weight: 500;
	color: var(--secondary-color);
	font-size: 24px;
	margin-bottom: 10px;
}
.left_part #item_paragraph
{
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	color: var(--gray-color);
	word-wrap: break-word;
}
.item .right_part img
{
	width: 100%;
}
.carousel-cell {
	width: 50%; /* half-width */
	height: 160px;
	margin-right: 10px;
}
/* .owl-theme .owl-nav {
	margin-top: 0px !important;
	width: 100%;
	position: absolute;
	top: -32%;
	right: 2%;
	display: flex !important;
	justify-content: flex-end;
	align-items: center;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
	background: 0 0;
	color: inherit;
	border: none;
	font: inherit;
	width: 65px;
	height: 65px;
	background-color: aliceblue;
	font-size: 40px;
	border-radius: 360px;
	transition: 0.2s all linear !important;
}
.owl-theme .owl-nav [class*=owl-]:hover {
	background: var(--main-color);
	color: #FFF;
	text-decoration: none;
} */
.flickity-prev-next-button {
	top: -20% !important;
}
.flickity-prev-next-button.previous {
	right: 70px !important;
	left: auto !important;
}
.flickity-button
{
	transition: 0.2s all linear;
	background: #f2f6fa;
}
.flickity-button:hover {
	background: var(--main-color);
	cursor: pointer;
	color: white;
}
.slider_section_btn a
{
	text-decoration: none;
}
.slider_section_btn a button
{
	height: 3rem;
	padding: 0px 20px;
	font-size: 17px;
	color: white;
	border-radius: 30px;
	cursor: pointer;
	border: none;
	outline: none;
	background: var(--main-color);
	margin-left: 5%;
	margin-top: 5%;
}
.faq_section
{
	width: 100%;
	margin: 0px auto 25px auto;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 1px solid var(--main-color);
	position: relative;
}
.faq_container
{
	display: flex;
	justify-content: space-between;
	width: 90%;
}
.faq_container h1
{
	font-size: 45px;
	font-weight: 400;
}
.faqs
{
	width: 60%;
}
.faq_container h1 a
{
	font-style: italic;
	font-weight: 500;
	font-size: 25px;
	margin-top: 25px;
	color: var(--secondary-color);
}
.accordion-item {
	border-bottom: 1px solid #C0CEDE;
	border-top: none;
	border-right: none;
	border-left: none;
	outline: none;
	margin-bottom: 2px;
}

.accordion-header {
	padding: 10px;
	color: var(--secondary-color);
	font-weight: 500;
	font-size: 18px;
	cursor: pointer;
	position: relative;
	word-wrap: break-word;
}

.arrow {
	position: absolute;
	right: 10px;
	transition: transform 0.3s ease;
}

.accordion-content {
	padding: 10px;
	display: none;
	color: var(--gray-color);
}
.contact_form
{
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: auto;
	width: 100%;
	margin: 20px 0px;
}
.form_container	
{
	width: 40%;
	height: 100%;
}
.form_container h1
{
	font-size: 36px;
	font-weight: 400;
	color: var(--secondary-color);
	margin-bottom: 10px;
}
.form_container p
{
	font-size: 16px;
	color: var(--gray-color);
	margin-bottom: 15px;
}
form
{
	width: 100%;
}
.inputfield
{
	width: 100%;
	height: 3rem;
	border-radius: 5px;
	outline: none;
	border: 1px solid #74797E;
	font-size: 16px;
	padding: 0px 10px;
	margin-bottom: 10px;
}
.inputfield::placeholder
{
	color: #74797E;
}
form textarea
{
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
	outline: none;
	border: 1px solid #74797E;
	font-size: 16px;
}
form button
{
	height: 2.8rem;
	background: var(--main-color);
	color: white;
	padding: 0px 25px;
	outline: none;
	border-radius: 30px;
	border: none;
	font-size: 16px;
	cursor: pointer;
}
.form_image_container
{
	width: 40%;
	height: 100vh;
	position: relative;
}
.form_image_container{
	border-radius: 56px;
	overflow: hidden;
}
.form_image_container img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.get_started
{
	width: 100%;
	height: 30vh;
	background: var(--main-color);
	margin-top: 5%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	overflow: hidden;
}
.get_started a
{
	width: 100%;
	text-decoration: none;
	text-align: center;
	color: white;
	display: inline-block;
	padding: 10px;
	
}
.get_started h1
{
	font-size: 75px;
	text-transform: uppercase;
	font-weight: 400;
}
footer
{
	height: 60vh;
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}
.footer_menu,.business_address,.email_phone,.social_link
{
	width: 13rem;
}
#footer_div_heading
{
	font-size: 20px;
	color: var(--secondary-color);
	font-weight: 600;
	margin-bottom: 10px;
}
.footer_logo
{
	text-align: center;
	width: 13rem;
}
.footer_logo img
{
	width: 100%;
}
.footer_menu ul
{
	list-style: none;
}
.footer_menu ul li
{
	display: block;
	margin-bottom: 8px;
}
.footer_menu ul li a
{
	text-decoration: none;
	color: var(--gray-color);
	
	font-size: 18px;
	font-weight: 400;
}
.business_address address
{
	line-height: 25px;
}
.business_address address,.email a,.phone #phone_number
{
	text-decoration: none;
	color: var(--gray-color);
	margin-bottom: 8px;
	font-size: 16px;
	font-weight: 400;
}
.email
{
	margin-bottom: 20px;
	width: 100%;
}
.phone
{
	width: 100%;
}
.social_link
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.social_link a
{
	text-decoration: none;
	color: black;
	background: #e4e7e9;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	border: none;
	border-radius: 50%;
}
