
*{
	margin:0;
	padding:0;
}
body{
	background:#FFFFFF;
}
:root{
	--baseColor: #16ba2f;
	--secondaryColor: #fa8d29;
	--lightColor: #FFFFFF;
	--grayColor: #fff4ee;
	--darkColor: #363636;
	--blackColor: #272727;
	--yellowColor: #fee408;

	--baseFont: Sailec;
}

/* ========== 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(--baseFont);
	font-weight: 700;
	font-size: 20px;
	border-radius: 6px;
	min-width: 200px;
	text-align: center;
	display: inline-block;
	padding: 15px 30px;
	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);
	background: #2BCA7E;
	text-decoration: none;
}

/* ======================== */

.heading{
	text-align: center;
	margin-bottom: 30px;
}
.heading h3{
	color: #191919;
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 42px;
	margin-bottom: 0px;
}
.heading h3 .color_texts{
	color: var(--secondaryColor);
}
.heading .head_line{
	margin: 20px 0px;
}
.heading .head_line img{
	max-width: 420px;
}
.heading p{
	color: #545454;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 19px;
	max-width: 1020px;
	margin: 0px auto;
}
.heading p .bold_texts{
	color: #191919;
	font-weight: 500;
}

.sub_heading{
	text-align: center;
	margin-bottom: 10px;
}
.sub_heading h4{
	color: #191919;
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 22px;
	margin-bottom: 0px;
}
.sub_heading h5{
	color: #191919;
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 0px;
}
.sub_heading h6{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 0px;
}

/* ======================== */

.para_texts p{
	color: #494949;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 10px;
}
.para_texts p:last-child{
	margin-bottom: 0px;
}
/* ===== CSS For "Common Cases" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Header" Starts Here ===== */
.header{
	background: #524f51;
	padding: 5px 0px;
	text-align: center;
}
.header p{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 0px;
}
.header p .color_texts{
	color: var(--yellowColor);
}
/* ===== CSS For "Header" 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: 3px;
	width: 100%;
	border-radius: 9px;
	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: #53626F;
}
.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: var(--lightColor);
	padding: 5px 10px;
	box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	-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-brand{
	text-decoration: none;
	padding: 0px;
	line-height: 1;
}
.navbar .navbar-brand img{
	max-width: 170px;
}
.navbar .navbar-nav .nav-item {
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
	margin-right: 20px;
}
.navbar .navbar-nav .nav-item:last-child{
	margin-right: 0px;
}
.navbar .navbar-nav .nav-item .nav-link{
	color: #000000;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 16px;
	padding: 0px 0px;
	padding-right: 20px;
	border-right: 1px solid #DDDDDD;
	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.last_before .nav-link{
	border-right: none;
	padding-right: 0px;
}
.navbar .navbar-nav .nav-item .nav-link:hover{
	color: var(--baseColor);
}
.navbar .navbar-nav .nav-item .nav-link.active{
	color: var(--baseColor);
}
.navbar .navbar-nav .nav-item .cta_btn {
	min-width: 145px;
	padding: 8.5px 15px;
	font-size: 18px;
	color: var(--lightColor);
	font-weight: 700;
	border-radius: 6px;
}
.navbar .navbar-nav .nav-item .cta_btn:hover{
	color: var(--lightColor);
}
/* ===== CSS For "Navbar" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Hero Banner 1" Starts Here ===== */
.hero_banner_1{
	background: url('images/Banner_Bg_1.png') no-repeat;
	background-position: center center;
	background-size: cover;
	padding-top: 45px;
	padding-bottom: 30px;
	overflow: hidden;
}
.hero_banner_1 .banner_contents{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0px 350px;
    grid-template-columns: 1fr 350px;
    grid-auto-rows: auto;
    gap: 0px;
	max-width: 1050px;
}
.hero_banner_1 .banner_contents h2{
	color: var(--blackColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 46px;
	line-height: 1.3;
	margin-bottom: 30px;
	margin-top: 20px;
}
.hero_banner_1 .banner_contents h2 .color_texts{
	color: var(--secondaryColor);
}
.hero_banner_1 .banner_contents p{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 25px;
}
.hero_banner_1 .banner_contents p:last-child{
	margin-bottom: 0px;
}
.hero_banner_1 .banner_contents p .bold_texts{
	font-weight: 700;
}
.hero_banner_1 .banner_contents .cta_btn_wrap{
	margin-top: 40px;
}

.hero_banner_1 .banner_contents .product_image img{
	position: relative;
	left: -50px;
}
/* ===== CSS For "Hero Banner 1" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Product Effectivity" Starts Here ===== */
.product_effectivity_wrap{
	padding-top: 30px;
}
.product_effectivity_wrap .sub_heading{
	margin-bottom: 25px;
}
.product_effectivity_wrap .sub_heading h6{
	background: url('images/line1.png') no-repeat;
	background-position: center center;
}
.product_effectivity{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0px 1fr 0px 1fr 0px 1fr 0px 1fr 0px 1fr;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    gap: 0px;
	border-bottom: 2px solid #C8C8C8;
	padding-bottom: 30px;
}
.product_effectivity .single_part{
	text-align: center;
	border-right: 1px solid #E0E0E0;
}
.product_effectivity .single_part:last-child{
	border-right: none;
}
.product_effectivity .single_part .image{
	margin-bottom: 10px;
}
.product_effectivity .single_part .image img{
	max-width: 62px;
}
.product_effectivity .single_part .texts h5{
	color: var(--blackColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 0px;
}
/* ===== CSS For "Product Effectivity" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Features" Starts Here ===== */
.features_and_infos{
	padding: 65px 0px;
	overflow: hidden;
}
.features_and_infos .heading h3 .break{
	display: block;
}

.features_and_infos .the_video{
	max-width: 770px;
	margin: 45px auto;
	text-align: center;
}
.features_and_infos .the_video video{
	vertical-align: middle;
	max-width: 100%;
}

.features{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 30px;
}
.features .single_feature{
	text-align: center;
	background: var(--lightColor);
	border-radius: 10px;
	padding: 15px;
	padding-top: 30px;
	box-shadow: 0 0 9px 1px rgba(0,0,0,0.1);
}
.features .single_feature .icon{
	margin-bottom: 15px;
}
.features .single_feature .icon img{
	height: 31px;
}
.features .single_feature .sub_heading{
	margin-bottom: 15px;
}

.features_and_infos .info_texts{
	max-width: 1000px;
	margin: 40px auto;
	text-align: center;
}
.features_and_infos .info_texts .sub_heading{
	margin-bottom: 0px;
}
.features_and_infos .info_texts .sub_heading h4{
	font-weight: 700;
	line-height: 1.5;
}

.features_and_infos .cta_btn_wrap{
	text-align: center;
	margin-bottom: 0px;
}
/* ===== CSS For "Features" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Advantages" Starts Here ===== */
.advantages_wrap{
	background: var(--grayColor);
	padding: 65px 0px;
	overflow: hidden;
}
.advantages_wrap .heading{
	margin-bottom: 40px;
}
.advantages_wrap .heading h3 .break{
	display: block;
}

.advantages{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 10px;
}
.advantages .single_advantage{
	background: url('images/s2-listbg1.jpg') no-repeat;
	background-position: center top;
	background-size: cover;
	padding: 50px 15px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 0 9px 1px rgba(0,0,0,0.1);
}
.advantages .single_advantage:nth-child(1){
	background: url('images/s2-listbg1.jpg') no-repeat;
	background-position: center top;
	background-size: cover;	
}
.advantages .single_advantage:nth-child(2){
	background: url('images/s2-listbg2.jpg') no-repeat;
	background-position: center top;
	background-size: cover;	
}
.advantages .single_advantage:nth-child(3){
	background: url('images/s2-listbg3.jpg') no-repeat;
	background-position: center top;
	background-size: cover;	
}
.advantages .single_advantage:nth-child(4){
	background: url('images/s2-listbg4.jpg') no-repeat;
	background-position: center top;
	background-size: cover;	
}
.advantages .single_advantage .icon{
	margin-bottom: 20px;
}
.advantages .sub_heading{
	margin-bottom: 15px;
}
.advantages .sub_heading h4{
	color: var(--lightColor);
}
.advantages .para_texts p{
	color: var(--lightColor);
}

.advantages_wrap .cta_btn_wrap{
	margin-top: 50px;
	text-align: center;
}
/* ===== CSS For "Advantages" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Why Choose" Starts Here ===== */
.why_choose_wrap{
	padding: 65px 0px;
}
.why_choose_wrap .heading{
	margin-bottom: 50px;
}

.why_choose_wrap .indoor_outdoor{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 45px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 45px;
	max-width: 850px;
	margin: 0px auto;
	margin-bottom: 65px;
}
.why_choose_wrap .indoor_outdoor .sub_heading{
	margin-bottom: 15px;
}
.why_choose_wrap .indoor_outdoor .sub_heading h4{
	font-weight: 700;
	text-transform: uppercase;
}

.why_choose{
	max-width: 770px;
	margin: 0px auto;
	text-align: center;
}
.why_choose .single_part{
	margin-bottom: 35px;
}
.why_choose .single_part:last-child{
	margin-bottom: 0px;
}
.why_choose .single_part .sub_heading{
	margin-bottom: 15px;
}
.why_choose .single_part .sub_heading h4{
	font-weight: 700;
}
.why_choose .single_part .icon{
	margin-bottom: 15px;
}
.why_choose .single_part .icon img{
	height: 52px;
}
/* ===== CSS For "Why Choose" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "How Works" Starts Here ===== */
.how_works_wrap{
	background: var(--grayColor);
	padding: 65px 0px;
}
.how_works_wrap .heading {
	margin-bottom: 50px;
}
.how_works_wrap .heading h3 .break{
	display: block;
}

.how_works{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 55px 1fr 55px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 55px;
}
.how_works .single_part{
	text-align: center;
	background: var(--lightColor);
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0 0 9px 1px rgba(0,0,0,0.1);
}
.how_works .single_part .inner{
	border: 1px solid #FF8B1C;
	border-radius: 10px;
	min-height: 100%;
}
.how_works .single_part .icon{
	margin: 20px 0px;
}
.how_works .single_part .icon img{
	max-width: 65px;
}
.how_works .single_part .sub_heading{
	margin-bottom: 15px;
}

.how_works .single_part .color_title{
	background: rgb(255,60,5);
	background: -moz-linear-gradient(90deg, rgba(255,60,5,1) 0%, rgba(255,109,19,1) 50%, rgba(255,139,28,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(255,60,5,1) 0%, rgba(255,109,19,1) 50%, rgba(255,139,28,1) 100%);
	background: linear-gradient(90deg, rgba(255,60,5,1) 0%, rgba(255,109,19,1) 50%, rgba(255,139,28,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff3c05",endColorstr="#ff8b1c",GradientType=1);
	padding: 7px 10px;
}
.how_works .single_part .color_title h4{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 0px;
}
.how_works .single_part .para_texts{
	padding: 15px 10px;
}
.how_works .single_part .para_texts p{
	color: #1c1c1c;
}

.how_works_wrap .cta_btn_wrap {
	margin-top: 50px;
	text-align: center;
}
/* ===== CSS For "How Works" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Hero Banner 2" Starts Here ===== */
.hero_banner_2{
	background: url('images/Banner_Bg_2.webp') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 65px 0px;
	overflow: hidden;
}
.hero_banner_2 .banner_contents{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0px 410px;
    grid-template-columns: 1fr 410px;
    grid-auto-rows: auto;
    gap: 0px;
}
.hero_banner_2 .heading{
	text-align: left;
	margin-bottom: 40px;
}
.hero_banner_2 .heading h3{
	color: var(--lightColor);
}
.hero_banner_2 .heading h3 .break{
	display: block;
}
.hero_banner_2 .heading p{
	color: var(--lightColor);
}

.hero_banner_2 .single_point{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 56px 20px 1fr;
    grid-template-columns: 56px 1fr;
    grid-auto-rows: auto;
    gap: 20px;
	margin-bottom: 25px;
}
.hero_banner_2 .single_point:last-child{
	margin-bottom: 0px;
}
.hero_banner_2 .single_point h5{
	color: var(--secondaryColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 22px;
	margin-bottom: 0px;
}
.hero_banner_2 .single_point p{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 17px;
	margin-bottom: 0px;
}
.hero_banner_2 .cta_btn_wrap{
	margin-top: 40px;
}
.hero_banner_2 .product_image{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: end;
    align-content: end;
}
/* ===== CSS For "Hero Banner 2" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Reviews" Starts Here ===== */
.customer_reviews{
	padding: 65px 0px;
}
.customer_reviews .heading{
	margin-bottom: 40px;
}
.customer_reviews .heading h3 .break{
	display: block;
}
.ratings{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 150px 20px 1fr 20px 150px;
    grid-template-columns: 150px 1fr 150px;
    grid-auto-rows: auto;
    gap: 20px;
	max-width: 800px;
	margin: 0px auto;
	margin-bottom: 45px;
	box-shadow: 0 0 8px 2px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 8px 2px rgba(0,0,0,0.1);
	border-radius: 10px;
	padding: 25px;
}
.ratings .summary{
	text-align: center;
}
.ratings .summary h1{
	color: #000000;
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 50px;
	margin-bottom: 0px;	
}
.ratings .summary .five_stars i{
	color: #FAB73C;
	font-size: 16px;
}
.ratings .summary h6{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 0px;		
}
.ratings .single_bar{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 160px;
    grid-template-columns: 1fr 160px;
    grid-auto-rows: auto;
    gap: 15px;
	margin-bottom: 5px;
}
.ratings .single_bar:last-child{
	margin-bottom: 0px;
}

.ratings .happy_customers{
	text-align: center;
}
.ratings .happy_customers h2{
	color: #000000;
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 36px;
	margin-bottom: 5px;
}
.ratings .happy_customers p{
	color: #656565;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 15px;
	margin-bottom: 0px;
}

.the_progress .progress_bar{
	background: #F5F5F5;
	height: 9px;
	border-radius: 15px;
	position: relative;
	bottom: -7px;
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.21);
}
.the_progress .progress_bar .filled{
	background: #FAB73C;
	height: 9px;
	border-radius: 15px 0px 0px 15px;
}
.the_progress .progress_bar .filled.eighty_nine{
	max-width: 89%;
}
.the_progress .progress_bar .filled.eleven{
	max-width: 11%;
}
.the_progress .progress_bar .filled.zero{
	max-width: 0%;
}
.the_progress .info{
	text-align: right;
}
.the_progress .info i{
	color: #FAB73C;
	font-size: 16px;	
}
.the_progress .info span{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 16px;
	margin-left: 5px;
}

.reviews{
	max-width: 1030px;
	margin: 0px auto;
}
.reviews .single_review{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 46px 20px 1fr;
    grid-template-columns: 46px 1fr;
    grid-auto-rows: auto;
    gap: 20px;
	margin-bottom: 30px;
	border-bottom: 1px dashed #b0b0b0;
	padding-bottom: 30px;
}
.reviews .single_review:last-child{
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}
.reviews .single_review .icon h4{
	color: var(--lightColor);
	background: #D9BEB6;
	width: 46px;
	height: 46px;
	line-height: 46px;
	border-radius: 50%;
	text-align: center;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 22px;
	margin-bottom: 0px;
	display: inline-block;
}
.reviews .single_review h4{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 0px;
	margin-top: 0px;	
}
.reviews .single_review h4 span{
	color: #5f5f5f;
	font-weight: 400;
}
.reviews .single_review .star_ratings{
	margin-bottom: 5px;
}
.reviews .single_review .star_ratings i{
	color: #FAB73C;
	font-size: 14px;	
}
.reviews .single_review p{
	color: #191919;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 10px;
}

.customer_reviews .cta_btn_wrap {
	margin-top: 50px;
	text-align: center;
}
/* ===== CSS For "Reviews" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Footer" Starts Here ===== */
.footer{
	border-top: 1px solid #EEEEEE;
	padding: 40px 0px;
	text-align: center;
}
.footer .footer_logo img{
	max-width: 170px;
}

.footer .site_links{
	margin: 25px 0px;
	margin-top: 30px;
}
.footer .site_links ul{
	margin-bottom: 0px;
	font-size: 0px;
}
.footer .site_links ul li{
	list-style: none;
	display: inline-block;
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid #6A546A;
	line-height: 1;
}
.footer .site_links ul li:last-child{
	margin-right: 0px;
	padding-right: 0px;
	border-right: none;
}
.footer .site_links ul li a{
	color: #545454;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 16px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.footer .site_links ul li a:hover{
	text-decoration: underline;
	color: var(--baseColor);
}

.footer .copyright p{
	color: #545454;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 0px;	
}
/* ===== CSS For "Footer" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */