
*{
	margin:0;
	padding:0;
}
body{
	background:#FFFFFF;
}
:root{
	--baseColor: #004081;
	--secondaryColor: #FF0000;
	--lightColor: #FFFFFF;
	--grayColor: #F7F7F7;
	--darkColor: #212529;

	--baseFont: "Poppins", sans-serif;
	--secondaryFont: "IBM Plex Sans", sans-serif;
}


/* ===== CSS For "Common Cases" Starts Here ===== */
a{
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
a:hover{
	text-decoration: none;
}
img{
	max-width: 100%;
}

/* ======================== */

.grid_item{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
	align-content: center;
}

/* ======================== */

.cta_btn_wrap{
	margin-top: 20px;
}
.cta_btn{
	color: var(--lightColor);
	background: var(--secondaryColor);
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 18px;
	border: none;
	border-radius: 5px;
	min-width: 200px;
	text-align: center;
	display: inline-block;
	padding: 11.5px 25px;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;	
}
.cta_btn:hover{
	color: var(--lightColor);
	text-decoration: none;
	background: #EC4747;
}
.cta_btn i{
	margin-left: 5px;
}

/* ======================== */

.heading{
	margin-bottom: 30px;
}
.heading h3{
	color: var(--baseColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 32px;
	margin-bottom: 0px;
}
.heading h4{
	color: var(--baseColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 27px;
	margin-bottom: 0px;
}

/* ======================== */

.sub_heading{
	margin-bottom: 10px;
}
.sub_heading h4{
	color: var(--baseColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 0px;
}

/* ======================== */

.bold_italic_txts{
	font-weight: 700;
	font-style: italic;
}

/* ======================== */

.para_texts p{
	color: var(--darkColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 10px;
}
.para_texts p:last-child{
	margin-bottom: 0px;
}
.para_texts p .bold_texts{
	font-weight: 600;
}
/* ===== CSS For "Common Cases" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== Humberger Menu Icon ===== */
.humbergur_icon{
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}
.humbergur_icon span{
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	border-radius: 10px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.humbergur_icon span {
	background: var(--lightColor);
}
.humbergur_icon span:nth-child(1) {
	top: 0px;
}
.humbergur_icon span:nth-child(2),
.humbergur_icon span:nth-child(3) {
	top: 10px;
}
.humbergur_icon span:nth-child(4) {
	top: 20px;
}
.humbergur_icon.open span:nth-child(1) {
	top: 11px;
	width: 0%;
	left: 50%;
}
.humbergur_icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.humbergur_icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.humbergur_icon.open span:nth-child(4) {
	top: 11px;
	width: 0%;
	left: 50%;
}
/* ===== Humberger Menu Icon ===== */

.navbar-toggler{
	padding: 0px;
}
.navbar{
	background: -o-linear-gradient(125deg,rgb(19,0,162) 0%,rgb(0,0,0) 100%);
	background: linear-gradient(125deg,rgb(19,0,162) 0%,rgb(0,0,0) 100%);
	padding: 10px 0px;
	z-index: 999999;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.navbar.active{
	padding: 5px 0px;
}
.navbar .navbar-brand{
	text-decoration: none;
	padding: 0px;
	line-height: 1;
}
.navbar .navbar-brand img{
	max-width: 100px;
}
.navbar .navbar-nav .nav-item{
	margin-right: 20px;
}
.navbar .navbar-nav .nav-item:last-child{
	margin-right: 0px;
}
.navbar .navbar-nav .nav-item .nav-link{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 16px;
	text-transform: capitalize;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.navbar .navbar-nav .nav-item .nav-link:hover{
	color: var(--secondaryColor);
}

.navbar .navbar-nav .nav-item .nav-link.active{
	color: var(--secondaryColor);
}

.navbar .navbar-nav .nav-item .cta_btn {
	min-width: 130px;
	padding: 7.5px 10px;
	font-weight: 600;
	border-radius: 4px;
}
.navbar .navbar-nav .nav-item .cta_btn:hover{
	color: var(--lightColor);
}
.navbar .navbar-nav .nav-item .cta_btn.active{
	color: var(--lightColor);
	background: #EC4747;
}
/* ===== CSS For "Navbar" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Hero Banner" Starts Here ===== */
.hero_banner{
	background: -o-linear-gradient(125deg,rgb(19,0,162) 0%,rgb(0,0,0) 100%);
	background: linear-gradient(125deg,rgb(19,0,162) 0%,rgb(0,0,0) 100%);

	/* background: url('images/Hero_Banner_Bg.jpg') no-repeat;
	background-position: top -50px center;
	background-size: cover; */
}

.hero_banner .slide_image img{
	width: 100%;
}

.hero_banner .overlay{
	background: rgba(0,0,0, 0.5);
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	height: 0px;
	width: 100%;
	height: 100%;

}
.hero_banner .overlay .outer_wrap{
	position: absolute;
	left: 0px;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);	
}
.hero_banner .contents{
	max-width: 580px;
}
.hero_banner .contents .banner_title{
	margin-bottom: 15px;
}
.hero_banner .contents .banner_title h3{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3;
	margin-bottom: 0px;
}
.hero_banner .contents .banner_title h3 .color_texts{
	color: var(--secondaryColor);
}
.hero_banner .contents .banner_title h3 .break{
	display: block;
}

.hero_banner .contents .para_texts p{
	color: var(--lightColor);
	font-weight: 500;
	text-transform: capitalize;
}
.hero_banner .contents .para_texts p .break{
	display: block;
}

.hero_banner .carousel-item{
	position: relative;
}

/* ===== CSS For "Hero Banner" Ends Here ===== */


/* ============================== */
/* ============================== */


.carousel-control-prev{
	opacity: 1;
	width: 40px;
	height: 60px;
	position: absolute;
	left: 5%;
	top: 50%;
	background: rgba(255,255,255, 0.3);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 9999;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.carousel-control-prev:hover{
	background: var(--lightColor);
}
.carousel-control-prev-icon {
	background: url(images/left_arrow_red.png) no-repeat;
	background-position: center center;
	background-size: 40px 40px;
	width: 40px;
	height: 40px;
}
.carousel-control-next{
	opacity:1;
	width: 40px;
	height: 60px;
	position: absolute;
	right: 5%;
	top: 50%;
	background: rgba(255,255,255, 0.3);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 9999;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.carousel-control-next:hover{
	background: var(--lightColor);
}
.carousel-control-next-icon {
	background: url(images/right_arrow_red.png) no-repeat;
	background-position: center center;
	background-size: 40px 40px;
	width: 40px;
	height: 40px;
}

.carousel-inner .carousel-item {
	transition: -webkit-transform 2s ease;
	transition: transform 2s ease;
	transition: transform 2s ease, -webkit-transform 2s ease;
}

/* ============================== */
/* ============================== */


/* ===== CSS For "Trusted By" Starts Here ===== */
.trusted_by_wrap{
	background: #F3F3F3;
	padding: 50px 0px;
	padding-bottom: 40px;
}
.trusted_by_wrap .heading{
	margin-bottom: 15px;
	text-align: center;
}
.trusted_by_wrap .para_texts{
	text-align: center;
}
.trusted_by {
	margin-top: 15px;
}
.trusted_by ul{
	margin-bottom: 0px;
	font-size: 0px;
	text-align: center;
}
.trusted_by ul li{
	list-style: none;
	margin: 15px;
	display: inline-block;
}
.trusted_by ul li img{
	max-height: 90px;
}
/* ===== CSS For "Trusted By" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Highlighted Facts" Starts Here ===== */
.highlighted_facts_wrap{
	background-image: -o-linear-gradient(125deg,rgb(19,0,162) 0%,rgb(0,0,0) 100%);
	background-image: linear-gradient(125deg,rgb(19,0,162) 0%,rgb(0,0,0) 100%);
}
.highlighted_facts_wrap .container{
	position: relative;
	overflow: hidden;
}
.highlighted_facts_wrap .circular_shape{
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
}

.highlighted_facts{
	position: relative;
	z-index: 99;

    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 300px 50px 1fr;
    grid-template-columns: 300px 1fr;
    grid-auto-rows: auto;
    gap: 50px;
}
.highlighted_facts ul{
	margin-bottom: 0px;
}
.highlighted_facts ul li{
	list-style: none;
	margin-bottom: 45px;

	padding-left: 45px;
	background: url('images/Right_Arrow_Yellow.png') no-repeat;
	background-position: left center;
	background-size: 32px 23px;
}

.highlighted_facts .bullet_points{
	background: linear-gradient(to right,  rgba(255,255,255,0.3) 0%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0) 75%,rgba(255,255,255,0) 100%);
	padding: 25px 15px;
	border-radius: 5px;
}
.highlighted_facts .bullet_points .single_point{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 80px 10px 1fr;
    grid-template-columns: 80px 1fr;
    grid-auto-rows: auto;
    gap: 10px;
	margin-bottom: 40px;
}
.highlighted_facts .bullet_points .single_point:last-child{
	margin-bottom: 0px;
}
.highlighted_facts .bullet_points .single_point p{
	color: var(--lightColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 0px;
}
.highlighted_facts .bullet_points .single_point .icon img{
	border-radius: 5px;
}
/* ===== CSS For "Highlighted Facts" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Services" Starts Here ===== */
.services_wrap{
	background: var(--lightColor);
	padding: 50px 0px;
}
.services_wrap .heading{
	text-align: center;
	margin-bottom: 40px;
}
.services_wrap .sub_heading{
	text-align: center;
	margin-bottom: 40px;
}

.services{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 50px;
	max-width: 860px;
	margin: 0px auto;
}
.services .single_service{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 80px 15px 1fr;
    grid-template-columns: 80px 1fr;
    grid-auto-rows: auto;
    gap: 15px;
}
.services .single_service .texts p{
	color: var(--darkColor);
	font-family: var(--secondaryFont);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.25;
	margin-bottom: 0px;
}
/* ===== CSS For "Services" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Intro Carousel" Starts Here ===== */
.intro_carousel_wrap{
	background: var(--lightColor);
	padding: 40px 0px;
	padding-bottom: 50px;
}

.intro_carousel_wrap .container{
	max-width: 1180px;
}

.intro_slide_contents{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.intro_slide_contents .carousel_left{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 230px;
    flex: 0 0 230px;
	max-width: 230px;
	margin-right: 10px;
	padding: 25px 55px;
}

.intro_slide_contents .carousel_right{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 230px;
    flex: 0 0 230px;
	max-width: 230px;
	margin-left: 10px;	
}

.intro_slide_contents .intro_slide{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 480px);
    flex: 0 0 calc(100% - 480px);
	max-width: calc(100% - 480px);
}



.intro_carousel .slide_box .box_title{

	padding: 10px 0px;
	text-align: center;
}
.intro_carousel .slide_box .box_title h4{
	color: var(--baseColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	margin-bottom: 0px;
}
/* ===== CSS For "Intro Carousel" Ends Here ===== */


/* ============================== */
/* ============================== */

.owl_controls_outer .owl-carousel .owl-prev,
.owl_controls_outer .owl-carousel .owl-next {
	width: 36px;
	height: 36px;
	background: url(images/right_arrow.png) no-repeat !important;
	background-position: center center;
	background-size: 36px 36px !important;
	font-size: 0px !important;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.owl_controls_outer .owl-carousel .owl-prev {
	left: -40px;
	background: url(images/left_arrow.png) no-repeat !important;
	background-position: center center;
	background-size: 36px 36px !important;
}
.owl_controls_outer .owl-carousel .owl-next {
	right: -40px;
	background: url(images/right_arrow.png) no-repeat !important;
	background-position: center center;
	background-size: 36px 36px !important;
}

.owl-carousel .owl-dots {
	width: 100%;
	margin-top: 15px;
	text-align: center;
}
.owl-carousel .owl-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: none !important;
	margin: 5px;
	border: 2px solid #333333 !important;
	background: transparent !important;
}
.owl-carousel .owl-dot.active {
	width: 12px;
	height: 12px;
	border: 2px solid #333333 !important;
	background: #333333 !important;
}

/* ============================== */
/* ============================== */


/* ===== CSS For "Why Works" Starts Here ===== */
.why_work_wrap{
	background: #F3F3F3;
	padding: 40px 0px;
	padding-bottom: 20px;
}

.why_work {
	max-width: 600px;
	margin: 0px auto;
}

.why_work .heading{
	margin-bottom: 20px;
	text-align: center;
}
.why_work .bullet_points ul{
	margin-bottom: 10px;
	text-align: center;
}
.why_work .bullet_points ul li{
	list-style: none;
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.3;
	display: inline-block;
	margin-bottom: 12.5px;
	position: relative;
	padding-left: 25px;
}
.why_work .bullet_points ul li:before{
	content: "\f058";
	color: var(--baseColor);
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: 18px;
	position: absolute;
	left: 0px;
	top: -2px;
}

.why_work_wrap .image{
	max-width: 900px;
	margin: 0px auto;
	text-align: center;
}

/* ===== CSS For "Why Works" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Footer" Starts Here ===== */
.footer{
	background: -o-linear-gradient(125deg,rgb(19,0,162) 0%,rgb(0,0,0) 100%);
	background: linear-gradient(125deg,rgb(19,0,162) 0%,rgb(0,0,0) 100%);
	padding: 25px 0px;
	text-align: center;
}

.footer .info_texts p{
	color: #999999;
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 0px;
}


.footer .legal_links{
	margin: 20px 0px;
}
.footer .legal_links ul{
	margin-bottom: 0px;
	font-size: 0px;
}
.footer .legal_links ul li{
	list-style: none;
	display: inline-block;
}
.footer .legal_links ul li a{
	color: #999999;
	font-family: var(--secondaryFont);
	font-weight: 500;
	font-size: 14px;
	padding-right: 10px;
	border-right: 1px solid #999999;
	margin-right: 10px;
	line-height: 1;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.footer .legal_links ul li:last-child a{
	border-right: none;
	margin-right: 0px;
	padding-right: 0px;
}
.footer .legal_links ul li a:hover{
	color: var(--lightColor);
}

.footer .copyright p{
	color: #999999;
	font-family: var(--secondaryFont);
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	margin-bottom: 0px;
}
/* ===== CSS For "Footer" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Legal Pages" Starts Here ===== */
.legal_page{
	padding: 40px 0px;
	min-height: calc(100vh - 262px);
}

.legal_page .single_part{
	margin-bottom: 30px;
}
.legal_page .single_part:last-child{
	margin-bottom: 0px;
}

.legal_page .page_title{
	margin-bottom: 15px;
}
.legal_page .page_title h3{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 30px;
	margin-bottom: 0px;
}

.legal_page .para_texts p{
	font-size: 18px;
}

.legal_page .legal_heading{
	margin-bottom: 15px;
}
.legal_page .legal_heading h4{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 0px;
}

.legal_page .legal_sub_heading{
	margin-bottom: 10px;
}
.legal_page .legal_sub_heading h6{
	color: var(--darkColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 0px;
}

.legal_page .numbered_points ol{
	margin-bottom: 0px;
	padding-left: 20px;
}
.legal_page .numbered_points ol li{
	color: var(--darkColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 7.5px;
}
.legal_page .numbered_points ol li:last-child{
	margin-bottom: 0px;
}

.legal_page .bullet_points ul{
	margin-bottom: 0px;
	padding-left: 20px;
}
.legal_page .bullet_points ul li{
	list-style: disc;
	color: var(--darkColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 7.5px;
}
.legal_page .bullet_points ul li:last-child{
	margin-bottom: 0px;
}
.legal_page .bullet_square ul li{
	list-style: square;
}

/* ===== CSS For "Legal Pages" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "About Banner" Starts Here ===== */
.about_banner{
	position: relative;
}
.about_banner .about_contents{
	background: rgba(0,0,0, 0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
}
.about_banner .container{
	min-height: 100%;
}
.about_banner h2{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 48px;
	line-height: 1.3;
	margin-bottom: 0px;
}
.about_banner .about_image img{
	width: 100%;
}

/* ============================== */

.about_banner .faq_banner{
	max-width: 760px;
}
.about_banner .faq_banner .para_texts{
	margin-top: 20px;
}
.about_banner .faq_banner .para_texts p{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 18px;
}

/* ===== CSS For "About Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "About Page" Starts Here ===== */
.about_page{
	padding: 50px 0px;
}
.about_page .heading{
	margin-bottom: 10px;
}

.about_page .welcome_to{
	margin-bottom: 30px;
}

.about_page .our_mission{
	margin-bottom: 30px;
}

.what_we_offer .heading{
	margin-bottom: 20px;
}
.what_we_offer .single_offer{
	display: -ms-grid;
	display: grid;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-grid-columns: 80px 15px 1fr;
	grid-template-columns: 80px 1fr;
	grid-auto-rows: auto;
	gap: 15px;
	margin-bottom: 25px;
}
.what_we_offer .single_offer:last-child{
	margin-bottom: 0px;
}
.what_we_offer .para_texts p{
	font-size: 18px;
}
/* ===== CSS For "About Page" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Why Choose" Starts Here ===== */
.why_choose_us_wrap {
	background: #F3F3F3;
}

.why_choose_us{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 30px;
}
.why_choose_us .image{
	padding-top: 40px;
}
.why_choose_us .heading{
	margin-bottom: 15px;
}

/* ===== CSS For "Why Choose" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Why Stands Out" Starts Here ===== */
.why_stands_out{
	padding: 50px 0px;
}
.why_stands_out .heading{
	margin-bottom: 20px;
}
.why_stands_out .single_part{
	display: -ms-grid;
	display: grid;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-grid-columns: 80px 15px 1fr;
	grid-template-columns: 80px 1fr;
	grid-auto-rows: auto;
	gap: 15px;
	margin-bottom: 25px;
}
.why_stands_out .single_part:last-child{
	margin-bottom: 0px;
}
.why_stands_out .para_texts p{
	font-size: 18px;
}
/* ===== CSS For "Why Stands Out" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Get Started" Starts Here ===== */
.get_started{
	padding-bottom: 50px;
}
.get_started .heading{
	margin-bottom: 10px;
}

.get_started .founder_info{
	margin-top: 15px;
}
.get_started .founder_info h6{
	color: var(--darkColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 20px;
	font-style: italic;
	line-height: 1.5;
	margin-bottom: 0px;
}
.get_started .founder_info h6 .break{
	display: block;
}
.get_started .founder_info .bold_texts{
	font-weight: 600;
}

/* ===== CSS For "Get Started" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "FAQ Page" Starts Here ===== */
.faq_page{
	padding: 40px 0px;
}

.faq_page .faq_icons{
	margin-bottom: 25px;
}
.faq_page .faq_icons ul{
	margin-bottom: 0px;
	text-align: center;
	font-size: 0px;
}
.faq_page .faq_icons ul li{
	list-style: none;
	margin-right: 15px;
	display: inline-block;
}
.faq_page .faq_icons ul li:last-child{
	margin-right: 0px;
}
.faq_page .faq_icons ul li img{
	max-width: 100px;
}

/* .faqs .single_faq{
	margin-bottom: 25px;
}
.faqs .single_faq:last-child{
	margin-bottom: 0px;
}
.faqs .single_faq .faq_question{
	margin-bottom: 5px;
}
.faqs .single_faq .faq_question h5{
	color: var(--baseColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 0px;
}
.faqs .single_faq .para_texts p{
	font-size: 18px;
} */

.faqs .accordion{
	max-width: 960px;
	margin: 0px auto;
}
.faqs .single_item {
	background: var(--lightColor);
	margin-bottom: 15px;
	border-radius: 5px;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06);
}
.faqs .single_item:last-child{
	margin-bottom: 0px;
}
.faqs .single_item .click_item a{
	color: var(--baseColor);
	background: var(--grayColor);
	border-radius: 5px;
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 18px;
	display: block;
	text-decoration:none;
	text-transform: capitalize;
	padding: 20px 15px;
	padding-right: 40px;
	position: relative;
}
.faqs .single_item .click_item a:after{
	content:"\f067";
	font-family: "Font Awesome 5 Free";
	font-size: 16px;
	font-weight: 700;
	color: #70818B;
	position:absolute;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	-ms-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.faqs .single_item .click_item a.collapsed:after{
	content:"\f067";
	font-family: "Font Awesome 5 Free";
	font-size: 16px;
	font-weight: 700;
	color: #70818B;
	position:absolute;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(0deg);
	-ms-transform: translateY(-50%) rotate(0deg);
	transform: translateY(-50%) rotate(0deg);
}
.faqs .contents{
	padding: 15px;
	position: relative;
}
.faqs .contents p{
	color: var(--darkColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 10px;
}
.faqs .contents p span{
	font-weight: 700;
}
.faqs .contents p:last-child{
	margin-bottom: 0px;
}

/* ===== CSS For "FAQ Page" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Resources" Starts Here ===== */
.resources_page{
	padding: 50px 0px;
}
.resources_page .heading{
	margin-bottom: 30px;
	text-align: center;
}

.resources_list .resource_box{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0px 2fr;
    grid-template-columns: 1fr 2fr;
    grid-auto-rows: auto;
    gap: 0px;
	margin-bottom: 30px;
	border: 1px solid #999999;
}
.resources_list .resource_box:last-child{
	margin-bottom: 0px;
}
.resources_list .resource_box .box_left{
	border-right: 1px solid #999999;
	padding: 20px;
	text-align: center;
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
}
.resources_list .resource_box .box_left h3{
	color: var(--secondaryColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 10px;
}
.resources_list .resource_box .box_image{
	padding: 0px 15px;
}

.resources_list .resource_box .box_right{
	padding: 20px;
	background: #F3F3F3;
	text-align: center;
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
}
.resources_list .resource_box .box_heading{
	margin-bottom: 10px;
}
.resources_list .resource_box .box_heading h5{
	color: var(--baseColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 0px;
}
.resources_list .resource_box .para_texts p{
	font-size: 16px;
	line-height: 1.4;
}
.resources_list .resource_box .cta_btn_wrap{
	margin-top: 15px;
}

/* ===== CSS For "Resources" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Contact Us" Starts Here ===== */
.contact_page{
	padding: 40px 0px;
	background: #F3F3F3;
}
.contact_page .contact_box{
	max-width: 580px;
	margin: 0px auto;
	background: var(--lightColor);

	padding: 25px;
	text-align: center;
	border-radius: 5px;
	box-shadow: 0px 0px 15px 0px rgba(0,0,0, 0.2);
}
.contact_page .contact_box .image{
	max-width: 200px;
	margin: 0px auto;
	margin-bottom: 20px;
}
.contact_page .contact_box .box_contents{
	text-align: center;
}
.contact_page .contact_box .box_contents h4{
	color: var(--baseColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 10px;
}
.contact_page .contact_box .box_contents h5{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 0px;
}
/* ===== CSS For "Contact Us" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Traffic" Starts Here ===== */
.traffic_page .top_heading{
	max-width: 760px;
	margin: 0px auto;
	margin-bottom: 30px;
}

.traffic_page .resources_list .resource_box .follow_process{
	margin-top: 15px;
}
.traffic_page .resources_list .resource_box .follow_process h6{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 5px;
}
.traffic_page .resources_list .resource_box .follow_process ol{
	list-style: none;
	margin-bottom: 0px;
}
.traffic_page .resources_list .resource_box .follow_process ol li{
	color: var(--darkColor);
	font-family: var(--secondaryFont);
	font-weight: 500;
	font-size: 15px;
	margin-bottom: 3px;
}
.traffic_page .resources_list .resource_box .follow_process ol li:last-child{
	margin-bottom: 0px;
}

/* ============================== */
/* ============================== */

.traffic_page .traffic_contents{
	margin: 50px 0px;
}
.traffic_page .traffic_contents .heading h4 .break{
	display: block;
}
.traffic_page .traffic_contents .heading h4 .thin_texts{
	font-weight: 400;
}

.traffic_page .traffic_boxes{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 25px;
}
.traffic_page .traffic_boxes .single_tr_box{
	border: 1px solid #999999;
}
.traffic_page .traffic_boxes .tr_logo{
	background: #F3F3F3;
	border-bottom: 1px solid #999999;
	padding: 15px;
	text-align: center;
}
.traffic_page .traffic_boxes .tr_logo img{
	max-height: 55px;
}

.traffic_page .traffic_boxes .box_body{
	padding: 15px;
	text-align: center;
}
.traffic_page .traffic_boxes .box_title{
	margin-bottom: 15px;
}
.traffic_page .traffic_boxes .box_title span{
	color: #A3A3A3;
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	display: inline-block;
}
.traffic_page .traffic_boxes .box_title h6{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 0px;
}
.traffic_page .traffic_boxes .para_texts p{
	font-size: 16px;
	line-height: 1.4;
}

.traffic_page .tr_bottom_part .heading{
	margin-bottom: 30px;
}
.traffic_page .tr_bottom_part .heading h4 .break{
	display: block;
}
.traffic_page .tr_bottom_part .heading h4 .thin_texts{
	font-weight: 400;
	font-size: 24px;
}
.traffic_page .tr_bottom_part .box_heading h6{
	color: var(--darkColor);
	font-family: var(--secondaryFont);
	font-weight: 600;
	font-size: 16px;
	margin-top: 10px;
	margin-bottom: 0px;
}
.traffic_page .tr_bottom_part .resource_box .box_image{
	padding: 0px;
}
/* ===== CSS For "Traffic" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Overview" Starts Here ===== */
.overview_page .heading h3{
	font-size: 28px;
}
.overview_page .main_yt_video iframe{
	border: 1px solid #999999;
	vertical-align: middle;
	border-bottom: none;
}

.overview_page .resources_list{
	margin-bottom: 40px;
}
.overview_page .resources_list:last-child{
	margin-bottom: 0px;
}

/* ===== CSS For "Overview" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "" Starts Here ===== */
/* ===== CSS For "" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */