
*{
	margin:0;
	padding:0;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 75px;
}
body{
	background:#FFFFFF;
}
:root{
	--baseColor: #EA3648;
	--secondaryColor: #0F376C;
	--lightColor: #FFFFFF;
	--grayColor: #F7F7F7;
	--darkColor: #232323;
	--blackColor: #000000;
	--redColor: #FF001F;

	--baseFont: 'Roboto', sans-serif;
	--secondaryFont: 'Mulish', sans-serif;
}




/* ========== Custom CSS Starts ========== */

/* ===== CSS For "Common Cases" Starts Here ===== */
.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(--baseColor);
	font-family: var(--secondaryFont);
	font-weight: 800;
	font-size: 16px;
	border: 2px solid var(--baseColor);
	border-radius: 4px;
	min-width: 200px;
	text-align: center;
	display: inline-block;
	padding: 9px 15px;
	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);
	border: 2px solid var(--secondaryColor);
	background: var(--secondaryColor);
	text-decoration: none;
}
.cta_btn_bdr{
	color: var(--blackColor);
	background: transparent;
	border: 2px solid var(--baseColor);
}
.cta_btn_bdr:hover{
	color: var(--lightColor);
	border: 2px solid var(--baseColor);
	background: var(--baseColor);
}
/* ======================== */
.heading{
	text-align: center;
	margin-bottom: 30px;
}
.heading h3{
	color: var(--blackColor);
	font-family: var(--baseFont);
	font-weight: 900;
	font-size: 40px;
	margin-bottom: 0px;
}
.heading h3 .break{
	display: block;
}
.heading h3 .color_texts{
	color: var(--secondaryColor);
}
.heading p{
	color: var(--blackColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 0px;
	margin-top: 10px;
}
/* ======================== */
.para_texts p{
	color: var(--blackColor);
	font-family: var(--baseFont);
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 10px;
}
.para_texts p:last-child{
	margin-bottom: 0px;
}
/* ===== CSS For "Common Cases" Ends Here ===== */


/* ============================== */
/* ============================== */

.need_motion{
	opacity: 0;
	-webkit-transform: translate3d(0, 100%, 0) scale(0.5);
	transform: translate3d(0, 100%, 0) scale(0.5);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	transition: all 1s ease;
}
.image_motion{
	position: relative;
	bottom: -100px;
	transform: scale(0.75);
}
.motion_fadeInUp {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0) scale(1);
	transform: translate3d(0, 0, 0) scale(1);
}
.image_motion.motion_fadeInUp{
	bottom: 0px;
	transform: scale(1);
}

/* ============================== */
/* ============================== */


/* ===== CSS For "Fixed Banner" Starts Here ===== */
.fixed_banner{
	background: var(--secondaryColor);
	padding: 8px 0px;
	text-align: center;
	box-shadow: 0px 0px 30px 15px rgba(93,93,93,0.1);
}
.fixed_banner h5{
	color: var(--lightColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 0px;
}
.fixed_banner h5 .need{
	font-weight: 800;
	font-size: 24px;
}
.fixed_banner h5 img {
	max-width: 23px;
	display: inline-block;
	margin: 0px 5px;
	position: relative;
	top: -4px;
}
.fixed_banner h5 .bold_texts{
	font-weight: 800;
}
.fixed_banner h5 a{
	color: var(--lightColor);
	font-weight: 800;
	text-decoration: underline;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.fixed_banner h5 a:hover{
	color: var(--baseColor);
}
/* ===== CSS For "Fixed Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Header" Starts Here ===== */
.header_wrap{
	background: var(--lightColor);
	padding: 15px 0px;
}
.header{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 250px;
    grid-template-columns: 1fr 250px;
    grid-auto-rows: auto;
    gap: 10px;
}
.header .logo_info{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 210px 30px 1fr;
    grid-template-columns: 210px 1fr;
    grid-auto-rows: auto;
    gap: 30px;
}
.header .logo_info .short_info p{
	color: var(--blackColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 14px;
	max-width: 240px;
	text-align: left;
	margin-bottom: 0px;
}
.header .logo_info .short_info p .bold_texts{
	font-weight: 700;
}

.header .cta_btn_wrap{
	margin-top: 0px;
}
.header .cta_btn{
	display: block;
}
/* ===== CSS For "Header" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Hero Banner" Starts Here ===== */
.hero_banenr{
	background: url('images/Hero_Banner_Bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}
.hero_banenr .overlay{
	padding-top: 100px;
}
.hero_banenr .contents{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 400px;
    grid-template-columns: 1fr 400px;
    grid-auto-rows: auto;
    gap: 40px;
	position: relative;
	margin-bottom: -210px;
}

/* ============================== */

.hero_banenr .contents .left_contents{
	position: relative;
}
.hero_banenr .contents .top_texts .page_title h2{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 900;
	font-size: 40px;
	line-height: 1.4;
	margin-bottom: 0px;
}

.hero_banenr .contents .top_texts .divider{
	width: 100%;
	height: 5px;
	line-height: 1;
	margin: 30px 0px;
	border-bottom: 5px dotted var(--baseColor);
}

.hero_banenr .contents .top_texts .checked_points ul{
	margin-bottom: 0px;
}
.hero_banenr .contents .top_texts .checked_points ul li{
	list-style: none;
	color: var(--lightColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 10px;
	position: relative;
	padding-left: 34px;
}
.hero_banenr .contents .top_texts .checked_points ul li:last-child{
	margin-bottom: 0px;
}
.hero_banenr .contents .top_texts .checked_points ul li:before{
	content: "\f058";
	color: var(--lightColor);
	font-family: "Font Awesome 5 Free";
	font-weight: 500;
	font-size: 24px;
	position: absolute;
	left: 0px;
	top: -4px;
}
.hero_banenr .contents .top_texts .checked_points ul li .bold_texts{
	font-weight: 700;
}

/* ============================== */

.hero_banenr .contents .company_logos{
	position: absolute;
	bottom: 80px;
	left: 0px;
	right: 0px;
	width: 100%;
}
.hero_banenr .contents .company_logos ul{
	margin-bottom: 0px;
	font-size: 0px;
	text-align: center;
}
.hero_banenr .contents .company_logos ul li{
	list-style: none;
	display: inline-block;
	margin-right: 15px;
}
.hero_banenr .contents .company_logos ul li:last-child{
	margin-right: 0px;
}
.hero_banenr .contents .company_logos ul li .directori_logo{
	max-width: 130px;
}
.hero_banenr .contents .company_logos ul li .home_advisor_logo{
	max-width: 75px;
}
.hero_banenr .contents .company_logos ul li .bbb_logo{
	max-width: 65px;
}
.hero_banenr .contents .company_logos ul li .emerald_logo{
	max-width: 75px;
}
.hero_banenr .contents .company_logos ul li .haag_certified_logo{
	max-width: 90px;
}

/* ============================== */

.hero_banenr .form_box{
	background: var(--lightColor);
	padding: 30px 0px 0px 0px;
	position: relative;
	-webkit-box-shadow: rgba(93,93,93,0.15) 2px 5px 25px 0;
	box-shadow: rgba(93,93,93,0.15) 2px 5px 25px 0;
}
.hero_banenr .form_box:before{
	content: "";
	width: 90px;
	height: 90px;
	background: url('images/Triangle_Right.png') no-repeat;
	background-position: center center;
	background-size: 90px 90px;
	position: absolute;
	right: -10px;
	top: -10px;
}
.hero_banenr .form_box .top_texts{
	text-align: center;
	max-width: 280px;
	margin: 0px auto;
	margin-bottom: 25px;
}
.hero_banenr .form_box .top_texts h6{
	color: var(--secondaryColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 10px;
}
.hero_banenr .form_box .top_texts h4{
	color: var(--baseColor);
	font-family: var(--baseFont);
	font-weight: 900;
	font-size: 25px;
	margin-bottom: 10px;
}
.hero_banenr .form_box .top_texts h4 .underline_texts{
	text-decoration: underline;
}
.hero_banenr .form_box .top_texts h5{
	color: var(--secondaryColor);
	font-family: var(--baseFont);
	font-weight: 900;
	font-size: 18px;
	margin-bottom: 0px;
}
.hero_banenr .form_box .top_texts h5 .underline_texts{
	text-decoration: underline;
}

.hero_banenr .form_box .form-group{
	margin-bottom: 15px;
}
.hero_banenr .form_box .form-control{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 15px;
	border: 1px solid #DDDDDD;
	border-radius: 3px;
	height: inherit;
	padding: 9.25px 10px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.hero_banenr .form_box .form-control:active,
.hero_banenr .form_box .form-control:focus{
	box-shadow: none;
	border: 1px solid var(--baseColor);
}

.hero_banenr .form_box .cta_btn{
	display: block;
	width: 100%;
	text-transform: uppercase;
	padding: 11px 15px;
	border-radius: 3px;
}
.hero_banenr .form_box .btn.active,
.hero_banenr .form_box .btn.focus{
	box-shadow: none;
}
.hero_banenr .form_box .cta_btn_wrap{
	margin-top: 10px;
}
.hero_banenr .form_box .cta_btn_wrap .cta_btn{
	background: var(--darkColor);
}
.hero_banenr .form_box .cta_btn_wrap .cta_btn:hover{
	background: var(--blackColor);
}

.hero_banenr .form_box .select_field{
	position: relative;
}
.hero_banenr .form_box .select_field select{
    -webkit-appearance: none;
    -moz-appearance: none;
	appearance: none;
    text-indent: 1px;
    text-overflow: '';
	padding-right: 30px;
	cursor: pointer;
}
.hero_banenr .form_box .select_field select::-ms-expand{
	display: none;
}
.hero_banenr .form_box .select_field:after{
	content: "\f0d7";
	color: var(--darkColor);
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: 20px;
	position: absolute;
	right: 10px;
	top: 50%;
	pointer-events: none;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
/* ===== CSS For "Hero Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Services" Starts Here ===== */
.services_wrap{
	background: var(--lightColor);
	padding-top: 300px;
	padding-bottom: 75px;
}
.services_wrap .heading{
	margin-bottom: 50px;
}
.services{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 50px;
	position: relative;
}
.services:after{
	content: "";
	width: 75%;
	height: 5px;
	border-top: 5px dotted #F1F4F6;
	line-height: 1;
	position: absolute;
	top: 75px;
	left: 50%;
	z-index: 0;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.services .single_service{
	text-align: center;
	position: relative;
	z-index: 99;
}
.services .single_service .image{
	margin-bottom: 30px;
	position: relative;
}
.services .single_service .image img{
	width: 150px;
	height: 150px;
	border: 5px solid var(--lightColor);
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-box-shadow: rgba(93,93,93,0.1) 0 0 20px 10px;
	box-shadow: rgba(93,93,93,0.1) 0 0 20px 10px;
}
.services .single_service .number_count{
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
	background: var(--secondaryColor);
	border-radius: 50%;
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 900;
	font-size: 20px;
	position: absolute;
	bottom: -15px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.services .single_service .texts h4{
	color: var(--secondaryColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 10px;
}
.services .single_service .texts p{
	color: var(--blackColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 17px;
	margin-bottom: 0px;
}
/* ===== CSS For "Services" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Colored Banner" Starts Here ===== */
.colored_banner{
	background: var(--baseColor);
	padding: 25px 0px;
}
.colored_banner .contents{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 280px;
    grid-template-columns: 1fr 280px;
    grid-auto-rows: auto;
    gap: 15px;
}
.colored_banner .contents h3{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 32px;
	margin-bottom: 5px;
}
.colored_banner .contents h4{
	color: var(--lightColor);
	font-family: var(--secondaryFont);
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 0px;
}
.colored_banner .contents .cta_btn_wrap{
	margin-top: 0px;
}
.colored_banner .contents .cta_btn{
	color: var(--secondaryColor);
	background: var(--lightColor);
	padding: 13.5px 15px;
	display: block;
	font-size: 18px;
}
.colored_banner .contents .cta_btn:hover{
	color: var(--lightColor);
	background: var(--secondaryColor);
}
/* ===== CSS For "Colored Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Customer Reviews" Starts Here ===== */
.customer_reviews .team_banner{
	background: url('images/Team_Banner_Bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	padding-top: 90px;
	padding-bottom: 180px;
}
.customer_reviews .team_banner .contents{
	max-width: 580px;
	margin: 0px auto;
	text-align: center;
}
.customer_reviews .team_banner .contents .logo_icon{
	margin-bottom: 20px;
}
.customer_reviews .team_banner .contents .logo_icon img{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
}
.customer_reviews .team_banner .contents .heading{
	margin-bottom: 15px;
}
.customer_reviews .team_banner .contents .heading h3{
	color: var(--lightColor);
}
.customer_reviews .team_banner .contents .ratings img{
	max-width: 185px;
}

/* ============================== */
/* ============================== */

.customer_reviews .all_reviews{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 40px;
	max-width: 840px;
	margin: 0px auto;
	margin-top: -50px;
}
.customer_reviews .all_reviews .single_review{
	text-align: center;
	background: var(--lightColor);
	padding: 40px;
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: justify;
    align-content: space-between;
	position: relative;
	-webkit-box-shadow: rgba(93,93,93,0.1) 0 0 30px 20px;
	box-shadow: rgba(93,93,93,0.1) 0 0 30px 20px;
}
.customer_reviews .all_reviews .single_review:before{
	content: "";
	width: 65px;
	height: 65px;
	background: url('images/Triangle_Left.png') no-repeat;
	background-position: center center;
	background-size: 65px 65px;
	position: absolute;
	left: -7px;
	top: -7px;
}
.customer_reviews .all_reviews .single_review .google_icon{
	margin-bottom: 15px;
}
.customer_reviews .all_reviews .single_review .google_icon img{
	max-width: 67px;
}
.customer_reviews .all_reviews .single_review .reviews h4{
	color: var(--blackColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 10px;
}
.customer_reviews .all_reviews .single_review .reviews p{
	color: var(--blackColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 17px;
	margin-bottom: 0px;
}
.customer_reviews .all_reviews .single_review .ratings{
	margin-top: 20px;
}
.customer_reviews .all_reviews .single_review .ratings img{
	max-width: 140px;
}
/* ===== CSS For "Customer Reviews" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Services Details" Starts Here ===== */
.services_details{
	padding: 75px 0px;
}

.services_details .bullet_points{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 50px;
}
.services_details .bullet_points ul{
	margin-bottom: 0px;
	font-size: 0px;
}
.services_details .bullet_points ul li{
	list-style: none;
	color: var(--blackColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 17px;
	margin-bottom: 15px;
	position: relative;
	padding-left: 25px;
}
.services_details .bullet_points ul li:last-child{
	margin-bottom: 0px;
}
.services_details .bullet_points ul li:before{
	content: "\f058";
	color: var(--secondaryColor);
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: 18px;
	position: absolute;
	left: 0px;
	top: -1px;
}
.services_details .bullet_points ul li .bold_texts{
	font-weight: 700;
}

/* ============================== */
/* ============================== */

.services_details .plus_icon{
	margin: 30px 0px;
	margin-top: 40px;
	text-align: center;
}
.services_details .plus_icon i{
	color: var(--secondaryColor);
	font-size: 28px;
}

/* ============================== */
/* ============================== */

.services_details .flexible_financing .heading{
	margin-bottom: 25px;
}
.services_details .flexible_financing .sunlight_financial_logo{
	max-width: 275px;
	margin: 0px auto;
}

/* ============================== */

.services_details .flexible_financing .request_call_btns{
	margin-top: 50px;
}

/* ============================== */

.request_call_btns ul{
	margin-bottom: 0px;
	font-size: 0px;
	text-align: center;
}
.request_call_btns ul li{
	list-style: none;
	display: inline-block;
	margin: 0px 10px;
	color: var(--blackColor);
	font-family: var(--secondaryFont);
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
}
.request_call_btns ul li .cta_btn{
	min-width: 280px;
	padding: 15px 15px;
}

/* ============================== */
/* ============================== */

.services_details .completed_projects{
	border-top: 1px solid #999999;
	margin-top: 50px;
	padding-top: 50px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 535px 20px 1fr;
    grid-template-columns: 535px 1fr;
    grid-auto-rows: auto;
    gap: 20px;
}
.services_details .completed_projects .single_project{
	margin-bottom: 20px;
}
.services_details .completed_projects .single_project:last-child{
	margin-bottom: 0px;
}
.services_details .completed_projects .single_project img{
	width: 100%;
}

/* ============================== */
/* ============================== */

.services_details .company_logos{
	max-width: 660px;
	margin: 0px auto;
	margin-top: 60px;
}
.services_details .company_logos ul{
	margin-bottom: 0px;
	font-size: 0px;
	text-align: center;
}
.services_details .company_logos ul li{
	list-style: none;
	display: inline-block;
	margin: 5px 10px;
}
.services_details .company_logos ul li .emerald_logo{
	max-width: 105px;
}
.services_details .company_logos ul li .gaaf_logo{
	max-width: 100px;
}
.services_details .company_logos ul li .haag_certified_logo{
	max-width: 120px;
}
.services_details .company_logos ul li .home_advisor_logo_shield{
	max-width: 115px;
}
.services_details .company_logos ul li .home_advisor_logo{
	max-width: 100px;
}
.services_details .company_logos ul li .directori_logo{
	max-width: 150px;
	margin-top: 15px;
}
.services_details .company_logos ul li .preferred_logo{
	max-width: 240px;
}
.services_details .company_logos ul li .nrca_logo{
	max-width: 160px;
	margin-top: 25px;
}
/* ===== CSS For "Services Details" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Company Services" Starts Here ===== */
.company_services{
	background: url('images/Company_Services_Bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	padding: 75px 0px;
}
.company_services .ar_logo{
	margin-bottom: 30px;
	text-align: center;
}
.company_services .ar_logo img{
	max-width: 210px;
}
.company_services .heading{
	max-width: 740px;
	margin: 0px auto;
	margin-bottom: 75px;
}
.company_services .heading h3{
	color: var(--lightColor);
}

.company_services .all_services{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    gap: 40px;
	margin-bottom: 75px;
}
.company_services .all_services .single_service{
	text-align: center;
}
.company_services .all_services .single_service .icon{
	width: 60px;
	height: 60px;
	line-height: 55px;
	background: #3B3B51;
	text-align: center;
	border-radius: 6px;
	display: inline-block;
	margin-bottom: 25px;
	position: relative;
}
.company_services .all_services .single_service .icon img{
	max-width: 39px;
}
.company_services .all_services .single_service .icon:after{
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: 12px;
	color: var(--lightColor);
	background: var(--baseColor);
	position: absolute;
	bottom: -10px;
	left: 50%;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	text-align: center;
	line-height: 20px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.company_services .all_services .single_service .title h5{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 0px;
}
.company_services .request_call_btns li{
	color: var(--lightColor);
}
.company_services .request_call_btns .cta_btn_bdr{
	color: var(--lightColor);
}
/* ===== CSS For "Company Services" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Footer" Starts Here ===== */
.footer{
	background: var(--blackColor);
}
.footer .copyright{
	padding: 20px 0px;
	text-align: center;
	border-bottom: 1px solid #666666;
}
.footer .copyright p{
	color: var(--lightColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 15px;
	margin-bottom: 0px;
}

.footer .bottom{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 190px 40px 1fr 40px 190px;
    grid-template-columns: 190px 1fr 190px;
    grid-auto-rows: auto;
    gap: 40px;
	padding: 20px 0px;
}
.footer .bottom .offer_texts p{
	color: var(--lightColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 15px;
	font-style: italic;
	margin-bottom: 0px;
	text-align: center;
}
.footer .bottom .cta_btn_wrap{
	margin-top: 0px;
}
.footer .bottom .cta_btn{
	color: var(--blackColor);
	background: var(--lightColor);
	border: 2px solid var(--lightColor);
	min-width: inherit;
	display: block;
}
.footer .bottom .cta_btn:hover{
	color: var(--lightColor);
	background: var(--secondaryColor);
	border: 2px solid var(--secondaryColor);
}
/* ===== CSS For "Footer" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */