@import 'common.css';


/* ****************************header section start*********************************************  */

.MainHeader {
	position: sticky;
	background: rgba(var(--white-color), 1);
	top: 0;
	z-index: 999;
	width: 100%;
}


.TopHeader {
	padding: 8px 0px;
}

.rating-main-box {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.ratingbox {
	align-items: center;
}

.rating {
	display: flex;
	height: 100%;
	align-items: center;
	gap: 6px;
	justify-content: flex-start;
}

.rating a.style-2 {
	font-size: 18px !important;
	font-weight: 400 !important;
	margin-bottom: 0 !important;
	display: block !important;
	color: rgba(var(--third-color), 1) !important;
	text-decoration: underline;
}

.rating a {
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 0;
	display: block;
	color: rgba(var(--third-color), 1);
	text-decoration: underline;
}

.rating h3 {
	font-size: 30px !important;
	font-weight: 700 !important;
	margin-bottom: 0 !important;
	color: rgba(var(--fourth-color), 1);
}

ul.ratingstarlist {
	display: flex;
	align-items: self-start;
	gap: 5px;
}

/* .ratingstarlist li {
	height: 30px;
} */

ul.ratingstarlist li i {
	font-size: 24px;
	color: rgba(var(--fourth-color), 1);
}

.ratingbottomsec p {
	font-size: 20px;
	font-weight: bold;
	color: rgba(var(--second-color), 1);
	margin-bottom: 0.4rem;
	line-height: normal;
	width: 65%;
}

.middlelogosection {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.middlelogosection img {
	height: 80px;
	object-fit: contain;
	margin: 0 auto;
}

.middlelogosection span {
	font-style: italic;
	font-weight: bold;
	color: rgba(var(--second-color), 1);
	font-size: 13px;
	text-align: justify;
}

.leftsidecallbtn {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 30px;
}

.leftsidecallbtn a.btn.common-btn {
	width: 70%;
	padding: 12px 50px;
}

.callbtn {
	font-size: 20px;
	font-weight: bold;
	color: rgba(var(--second-color), 1);
}

.callbtn:hover {
	color: rgba(var(--black-color), 1);
}



/* menu nav css */

.menunav {
	background-color: rgba(var(--second-color), 1);
	padding: 5px 0px;
}

@media all and (min-width: 992px) {
	.dropdown-menu {
		width: 13rem;
	}

	.mega-submenu {
		left: 100%;
		top: 0;
		min-width: 25rem;
	}

	.ktm-mega-menu {
		position: static;
	}

	.mega-menu {
		left: 0;
		right: 0;
		width: 100%;
	}

	.dropdown-menu li {
		position: relative;
	}

	.dropdown-menu .submenu {
		display: none;
		left: 100%;
		top: 0;
	}

	.dropdown-menu>li:hover>.submenu,
	.dropdown:hover>.dropdown-menu {
		display: block;
	}
}

a.nav-link.dropdown-toggle,
.nav-item .nav-link {
	color: rgba(var(--white-color), 1);
	font-size: 16px;
	font-weight: bold;
}

.nav-item {
	position: relative;
}

.nav-item::after {
	content: '';
	background-color: #5f5f5f;
	width: 2px;
	height: 15px;
	position: absolute;
	top: 16px;
	border-radius: 4px;
}

.nav-item:first-child::after {
	display: none;
}

.navbar-expand-lg .navbar-nav .nav-link {
	padding-left: 20px;
	padding-right: 20px;
}

.dropdown-menu {
	width: 100%;
	width: 100%;
	box-shadow: rgba(0, 0, 0, .25) 0 3px 11px 0 !important;
	border-radius: 0;
	padding: 0;
}

.dropdown-toggle::after {
	content: '\f107';
	font-family: FontAwesome !important;
	font-weight: 200;
	font-style: normal;
	text-decoration: none;
	display: inline-block;
	cursor: default;
	speak: none;
	margin-left: auto;
	vertical-align: auto;
	border-top: none;
	border-right: none;
	border-bottom: 0;
	border-left: none;
	font-size: 10px;
	color: rgba(var(--white-color), 1);
	transition: transform .3s ease-out;
}

a.nav-link.dropdown-toggle {
	display: flex;
	align-items: baseline;
	gap: 7px;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
	transform: rotate(180deg);
	transition: transform .3s ease-out;
}

.nav-item .nav-link {
	position: relative;
}

.nav-item .nav-link::before {
	content: '';
	width: calc(100% - 30px);
	height: 2px;
	background-color: rgba(var(--second-color), 1);
	display: block;
	border: none !important;
	margin-top: 0;
	position: absolute;
	bottom: 6px;
	left: 18px;
	transform: scaleX(0);
	transform-origin: left;
	opacity: 1;
	transition: transform .2s ease-out, opacity .2s ease-out;

}

.nav-item:hover .nav-link::before {
	content: '';
	background-color: rgba(var(--main-color), 1);
	transform: scaleX(1);
	transform-origin: left;
	opacity: 1;
	transition: transform .2s ease-out, opacity .2s ease-out;
}

.nav-item.active .nav-link::before {
	content: '';
	background-color: rgba(var(--main-color), 1);
	transform: scaleX(1);
	transform-origin: left;
	opacity: 1;
	transition: transform .2s ease-out, opacity .2s ease-out;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover,
.dropdown-item:focus {
	color: rgba(var(--white-color), 1);
	background-color: rgba(var(--main-color), 1);
}

.dropdown-item {
	background-color: rgba(var(--second-color), 1);
	color: rgba(var(--white-color), 1) !important;
	font-weight: bold;
	font-size: 15px;
}

.dropdown-menu li:hover .float-end i {
	transform: rotate(180deg);
	transition: transform .3s ease-out;
}

.dropdown-menu li:focus .subdropmenu,
.dropdown-menu li:active .subdropmenu,
.dropdown-menu li:hover .subdropmenu {
	color: rgba(var(--white-color), 1);
	background-color: rgba(var(--main-color), 1);
}

/* hibu asst banner section */

.hibu-asst-banner {
	background-position: 50% 50%;
	background-repeat: repeat;
	background-size: auto;
	background-color: rgba(var(--main-color), 1);
	position: relative;
	width: 100%;
	text-align: center;
	padding: 16px 10px 16px;
}

.asst-banner-text {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	line-height: 24px;
	margin: 0 !important;
	padding: 0 !important;
}

.asst-banner-text o {
	font-size: 20px;
	color: #ffffff;
	font-weight: bold;
}

.asst-banner-subtext {
	font-size: 10px;
	color: #eee;
	line-height: 12px;
	margin-top: 5px !important;
	margin-bottom: 0 !important;
	padding: 0 !important;
}




/* Banner section */
section.banner-section {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: auto;
	display: flex;
	align-items: center;
	clip-path: polygon(0 0, 100% 0%, 100% 85%, 50% 100%, 0 85%);
	position: relative;
}

section.banner-section::after {
	content: '';
	position: absolute;
	inset: 0px;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(var(--black-color), 0.4);
}

.bannercontainer {
	padding-top: 60px;
	padding-bottom: 130px;
	position: relative;
	z-index: 9;
}



/* banner form css */

.form-container {
	position: relative;
	z-index: 9;
	padding: 2rem;
	background-color: rgba(255, 255, 255, .1) !important;
	box-shadow: rgba(0, 0, 0, .25) 0 0 11px 0 !important;
	-moz-box-shadow: rgba(0, 0, 0, .25) 0 0 11px 0 !important;
	-webkit-box-shadow: rgba(0, 0, 0, .25) 0 0 11px 0 !important;
	border-radius: 5px 5px 5px 5px !important;
	border-style: solid !important;
	border-width: 1px !important;
	border-color: rgba(255, 255, 255, .1) !important;
}

.form-container span {
	color: rgb(255, 255, 255);
	font-weight: bold;
	font-size: 22px;
	text-align: center;
	display: block;
	margin-bottom: 1.5rem;
}

.form-container .form-group {
	margin-bottom: 1rem;
	position: relative;
}

.form-container input,
.form-container select {
	width: 100%;
	padding: 0px 10px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 5px;
	font-size: 15px;
	background: rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
	height: 40px;
	color: rgba(var(--second-color), 1);
}

.form-container input:focus,
.form-container input:hover,
.form-container select:focus {
	outline: none;
	border-color: #000000;
	box-shadow: none;
}

.form-container label {
	font-size: 0.9rem;
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 0.5rem;
	display: block;
}

.required::after {
	content: '*';
	color: #ffffff;
	margin-left: 4px;
}

.captcha-text {
	font-size: 13px;
	color: #ffffff;
	margin: 0.5rem 0;
	text-align: left;
	font-weight: 800;
}

.form-container input::placeholder {
	color: rgba(var(--black-color), 0.8);
	font-weight: bold;
	font-size: 15px;
	text-transform: capitalize;
}


/* inner banner section */
section.innerbanner-section {
	height: 60vh;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	position: relative;
}

section.innerbanner-section::after {
	content: '';
	position: absolute;
	inset: 0px;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(var(--black-color), 0.5);
}

.innerbanner-mainbox {
	z-index: 99;
	position: relative;
}

.inner-banner-title {
	font-size: 40px;
	color: rgba(var(--white-color), 1);
	font-weight: bold;
	text-align: left;
	margin-bottom: 1rem;
}

.innerbanner-mainbox .common-para p {
	width: 40%;
	color: rgba(var(--white-color), 1);
	font-size: 16px;
	text-align: left;
	margin-bottom: 0;
}

.wpcf7-form-control-wrap select {
	display: block;
	width: 100%;
	padding: 0 10px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
	border: 1px solid #ced4da;
	border-radius: 0;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* Mobile Responsive */
@media (max-width: 480px) {
	.form-container {
		padding: 1.5rem;
	}

	.form-container input,
	.form-container select,
	.submit-btn {
		padding: 0 10px;
		font-size: 0.95rem;
	}

	.form-group {
		margin-bottom: 1rem;
	}
}

/* Tablet Responsive */
@media (min-width: 481px) and (max-width: 768px) {
	.form-container {
		max-width: 90%;
	}
}

.banner-mainbox {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.banner-title {
	color: rgba(var(--white-color), 1);
	font-weight: 800;
	font-style: normal;
	font-size: 40px;
	margin-bottom: 0.5rem;
}

.bannercontentlist {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	align-items: center;
}

.bannercontentlist li {
	color: rgba(var(--white-color), 1);
	font-size: 20px;
	font-weight: 700;
}

.bannercallbtn {
	font-size: 30px;
	font-weight: bold;
	color: rgba(var(--white-color), 1);
}

.bannercallbtn:hover,
.bannercallbtn:focus {
	color: rgba(var(--white-color), 1);
}



.sticky-icon {
	z-index: 9;
	position: fixed;
	top: 40%;
	right: 0%;
	width: 200px;
	display: flex;
	flex-direction: column;
}

.sticky-icon a {
	transform: translate(160px, 0px);
	border-radius: 0;
	text-align: left;
	margin: 0.5px 0px;
	text-decoration: none;
	text-transform: capitalize;
	/* padding: 5px; */
	font-size: 15px;
	transition: all 0.8s;
	background-color: rgba(var(--white-color), 1);
	color: #000000;
}

.sticky-icon a:hover {
	color: rgba(var(--second-color), 1);
	transform: translate(0px, 0px);
	background-color: rgba(var(--white-color), 1);
}



/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/

.sticky-icon a i {
	width: 40px;
	color: #ffffff;
	text-align: center;
	line-height: normal;
	border-radius: 50%;
	margin-right: 20px;
	transition: all 0.5s;
	font-size: 20px;
	height: 40px;
	background: rgba(var(--main-color), 1);
	border-radius: 0;
	display: flex;
	align-items: center;
	padding: 5px;
	justify-content: center;
}

.sticky-icon a {
	display: flex;
	align-items: center;
}

.common-title {
	font-size: 26px;
	font-weight: bold;
	color: rgba(var(--third-color), 1);
	margin-bottom: 3rem;
	position: relative;
}

.common-para p a {
	text-decoration: underline;
	color: rgba(var(--main-color), 1);
	text-transform: capitalize;
}

.common-title::after {
	content: '';
	border-bottom: 1.6px dotted #bbb;
	bottom: -80%;
	width: 15%;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
}

@media(max-width: 1399px) {

	.common-title::after {
		content: '';
		bottom: -20%;
	}
}

/* Choose-section */

.Choose-section {
	background-color: rgba(var(--back-color), 1);
}

.choose-box .common-para p {
	text-align: right;
}

.rightsidecontent {
	display: flex;
	align-items: start;
	flex-direction: column;
	gap: 10px;
	padding-left: 1rem;
}

.rightsidecontent li img {
	width: 30px;
	height: 30px;
	object-fit: contain;
	opacity: 0.7;
}

.rightsidecontent li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	color: rgba(var(--third-color), 1);
	text-transform: capitalize;
}

.choose-box .common-btn {
	padding: 12px 90px;
}

.contentsectionapp {
	padding: 45px;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, .25) 3px 3px 11px 0;
	margin: 0px 50px 0px -50px;
	position: relative;
	z-index: 2;
}

.contentsectionapp .common-para p {
	text-align: left;
	width: 70%;
	margin-bottom: 1.3rem;
}

.plumbtitle {
	font-size: 26px;
	font-weight: bold;
	color: rgba(var(--second-color), 1);
	margin-bottom: 1rem;
}

.contentsectionapp.nextboxsec {
	margin: 0px -50px 0px 50px;
}

.reviews-section {
	background-color: rgba(var(--second-color), 1);
}

.messagebox-sec i {
	font-size: 70px;
	color: rgba(var(--white-color), 1);
}

.messagetext h3 {
	font-size: 26px;
	font-weight: bold;
	color: rgba(var(--white-color), 1);
	width: 40%;
	margin-bottom: 2rem;
}

.messagebox-sec {
	padding: 20px 40px 40px 40px;
}

.messagebox-sec .common-para p {
	text-align: left;
	color: rgba(var(--white-color), 1);
}

.reviewlist {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.reviewlist li {
	font-size: 16px;
	color: rgba(var(--white-color), 1);
}

.reviewlist li.reviewname {
	font-size: 20px;
	font-weight: bold;
	text-transform: capitalize;
}

.starlist i {
	color: rgba(var(--fourth-color), 1);
}

.reviewlist-box {
	padding: 0px 40px 0px 0px;
}

.reviewlist-box hr {
	color: rgba(var(--white-color), 1);
	border-top: 1px solid;
	opacity: 1;
	margin: 1rem 0;
}

.Introducing-video {
	display: block;
	--ehw-ivm: 270px;
	height: var(--ehw-ivm);
	overflow: hidden;
	border-radius: 8px;
	position: relative;
}

.Introducing-video i {
	font-size: 90px;
}

.Introducing-video .play-btn {
	position: absolute;
	inset: 0px;
	margin: auto;
	width: max-content;
	height: max-content;
	font-size: 100px;
	color: rgba(var(--white-color), 1);
}

.plumberbox span {
	font-size: 18px;
	font-weight: bold;
	color: rgba(var(--third-color), 1);
	display: block;
	margin-bottom: 0.1rem;
}

.plumberbox h3 {
	font-size: 35px;
	font-weight: 800;
	color: rgba(var(--second-color), 1);
	margin-bottom: 1rem;
	text-transform: capitalize;
}

.plumberbox .common-para p {
	text-align: left;
	margin-bottom: 1rem;
}

.subnew-para {
	display: flex;
	align-items: self-start;
	gap: 15px;
	flex-direction: column;
}

.calltobtn,
.calltobtn:hover,
.calltobtn:focus {
	color: #fff;
	font-size: 16px;
	font-weight: 800;
}

.conbox span {
	font-weight: 800;
	font-size: 23px;
	color: rgba(var(--white-color), 1);
	text-transform: uppercase;
	display: block;
	margin-bottom: 1.2rem;
	position: relative;
}

.conbox span::before {
	content: '';
	background-color: rgba(var(--main-color), 1);
	width: 8%;
	position: absolute;
	left: 0;
	height: 4px;
	bottom: -20%;
}

.subnew-para i {
	font-size: 20px;
	color: rgba(var(--white-color), 1);
}

.subnew-para p {
	font-size: 16px;
	color: rgba(var(--white-color), 1);
	font-weight: 400;
	margin-bottom: 0;
}

.footer-section {
	padding: 30px 0px;
}

.copy-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #666;
	font-size: 13px;
	margin-bottom: 0.3rem;
}

.copy-text a,
.copypara p {
	font-size: 13px;
	color: #666;
	text-align: center;
	margin-bottom: 0;
}

.copy-text a:hover {
	text-decoration: underline;
}

.my-modal .modal-header a {
	cursor: pointer;
}

.my-modal .modal-header a i {
	font-size: 25px;
	color: #fff6;
}

.my-modal .modal-body video {
	height: auto;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.my-modal .modal-dialog {
	max-width: 650px;
}

.my-modal .modal-content {
	background-color: rgba(var(--black-color), 1);
}

.my-modal .modal-header {
	justify-content: end;
	border: none;
	padding-bottom: 0;
}

.my-modal .modal-footer {
	display: flex;
	justify-content: center;
	gap: 5px;
	border: none;
	margin-bottom: 1.5rem;
	padding-top: 0;
}

.my-modal .modal-body .common-para p {
	color: rgba(var(--white-color), 1);
	margin-top: 1.3rem;
	margin-bottom: 1.3rem;
}

.innerapplisec img {
	height: 510px;
	object-fit: cover;
	object-position: center;
}

.my-modal a.btn.common-btn:visited {
	color: rgba(var(--white-color), 1);
}



/* inner pages design css */
section.common-section.hibu-asst-banner {
	padding: 70px 0px;
}

.contentimg img {
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.common-box.reviewcs-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.reviewcs-box .common-para p {
	width: 560px;
	text-align: center;
	color: rgba(var(--white-color), 1);
	font-size: 16px;
	margin-bottom: 0px;
	font-style: italic;
	padding-left: 21px;
	padding-right: 21px;
}

.authorname h3 {
	font-size: 14px;
	color: #fff;
	font-style: italic;
	margin-top: 1rem;
}

.inner-box {
	padding-right: 95px;
}

.inner-box h3 {
	font-size: 26px;
	font-weight: 800;
	color: rgba(var(--second-color), 1);
	line-height: 1.2;
	text-align: left;
	margin-bottom: 1.5rem;
}

.inner-box p {
	text-align: left;
	font-size: 16px;
	color: rgba(var(--third-color), 1);
}

.inner-box p a,
.reviewlist li a {
	color: rgba(var(--main-color), 1);
	text-decoration: underline;
	display: inline;
}

.inner-box ul {
	padding: 0 15px 0 8px !important;
	list-style: disc;
	margin-bottom: 6px;
}

.inner-box ul li {
	text-align: left;
	font-size: 16px;
	color: rgba(var(--third-color), 1);
}

.right-sidebox {
	background: rgba(var(--back-color), 1);
	padding: 15px;
	border-radius: 8px;
}

.conbox.reviewboxinner span {
	color: rgba(var(--second-color), 1);
	font-size: 26px;
	text-transform: capitalize;
}

.conbox.reviewboxinner .reviewlist {
	gap: 5px;
}

.conbox.reviewboxinner .reviewlist li {
	color: rgba(var(--third-color), 1);
}

.conbox.reviewboxinner .starlist i {
	font-size: 22px;
}

.conbox.reviewboxinner li.reviewdate {
	font-size: 13px;
}

.right-sidebox hr {
	color: #d3caca;
}

.calloutWrapper {
	background-color: rgba(var(--second-color), 1);
	border-radius: 5px;
	background-repeat: repeat;
	background-size: auto;
	background-position: 50% 50%;
	position: relative;
	margin: 0;
	padding: 30px;

}

.calloutTitle {
	color: rgba(var(--white-color), 1);
	font-size: 25px;
	font-weight: bold;
	line-height: 33px;
	text-align: center;
	margin-bottom: 0;
}

.calloutSubhead {
	color: rgba(var(--white-color), 1);
	font-size: 16px;
	font-weight: bold;
	line-height: 25px;
	text-align: center;
	margin-bottom: 0;
}

.calloutIcon img {
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.CTAdesktop {
	font-size: 25px;
	font-weight: bold;
	color: rgba(var(--main-color), 1);
	text-align: center;
}

.CTAdesktop:hover {
	font-size: 25px;
	font-weight: bold;
	color: rgba(var(--main-color), 1);
}

.calloutWrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

/* innerpage inner content coupon box */
.coupon-box {
	outline-style: dashed;
	outline-width: 2px;
	outline-offset: -10px;
	padding: 30px;
	outline-color: rgba(var(--main-color), 1);
	background-color: rgba(var(--back-color), 1);
	display: flex;
	flex-direction: column;
	gap: 15px;
	justify-content: center;
	align-items: center;
	border-radius: 12px;
	height: 100%;
}

.coupon-icon img {
	--elcwidth: 80px;
	width: var(--elcwidth);
	height: var(--elcwidth);
	object-fit: contain;
}

.cuponprice {
	font-size: 26px;
	font-weight: bold;
	color: rgba(var(--main-color), 1);
	margin-bottom: 0;
	text-align: center;
}

.couponname {
	font-size: 22px;
	font-weight: bold;
	color: rgba(var(--main-color), 1);
	margin-bottom: 0;
	text-align: center;
	min-height: 60px;
}

.cuponpara {
	font-size: 14px;
	color: rgba(47, 47, 47, 1);
	text-align: center;
	margin-bottom: 0.5rem;
}

.callpara {
	font-size: 18px;
	font-weight: bold;
	color: rgba(var(--main-color), 1);
	margin-bottom: 0;
	text-align: center;
}

/* // Contact Us */
.contact-title {
	font-size: 32px;
	font-weight: bold;
	color: rgba(var(--black-color), 1);
	margin-bottom: 2.5rem;
	padding: 0;
	text-transform: capitalize;
}

form.rd-mailform .row {
	gap: 10px;
}

.rd-mailform {
	padding-right: 4rem;
}

.rd-mailform .form-label {
	font-size: 16px;
	color: #313131;
	text-transform: capitalize;
	margin-bottom: 0.5rem;
	font-weight: 400;
}

.rd-mailform .form-group {
	margin-bottom: 10px;
}

.rd-mailform .form-group .form-control {
	border-radius: 0;
	min-height: 30px;
	border: none;
	border-bottom: 1px solid #adadad !important;
	padding: 0;
}

.rd-mailform .form-group textarea.form-control {
	border-radius: 0;
	height: 60px;
}

.contact-box img {
	height: 500px;
}


/* blog page css */

.Head-CaForm {
	border: 1px solid #000000;
	border-radius: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 35px;
	padding: 0px 12px;
	background: #f2f2f2;
}

.Head-CaForm .form-control,
.Head-CaForm .form-control:hover,
.Head-CaForm .form-control:focus {
	border: none;
	min-height: 100%;
	padding: 4px;
	font-weight: 500;
	font-size: 15px;
	width: 100%;
}

.HeadCa-FormBtn {
	padding: 0px;
	width: 20px;
	border: none;
}


/* blog card css */
.blog-card {
	max-width: 100%;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.2s ease;
	height: 100%;
}

.blog-card:hover {
	transform: scaleX(-10px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.blog-card__image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
	transform: scale(1.05);
}

/* Card Content */
.blog-card__content {
	padding: 1rem;
}

.blog-card__title {
	/* font-size: 18px; */
	color: rgba(var(--second-color), 1);
	margin: 0 0 15px 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5em;
	/* min-height: 54px; */
}

.blog-card__description {
	font-size: 15px;
	text-align: left;
	max-height: 5.5em;
	color: #747474;
	line-height: 1.4em;
	margin: 0 0 15px 0;
	/* min-height: 63px; */
	word-break: break-word;
}

.blog-card__link {
	display: inline-block;
	color: #5f5f5f;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	transition: color 0.2s ease;
}

.blog-card__link:hover {
	color: #5f5f5f;
}

/* Responsive Design */
@media (max-width: 480px) {
	.blog-card {
		margin: 0rem 0;
	}

	.blog-card__content {
		padding: 1rem;
	}

	.blog-card__title {
		font-size: 1.1rem;
	}

	.blog-card__description {
		font-size: 0.9rem;
	}
}

.subbanner-maintext {
	font-size: 40px;
	text-align: left;
	color: rgba(var(--white-color), 1);
	font-weight: 800;
	margin-bottom: 0.3rem;
}

.subbannertext {
	font-size: 24px;
	color: rgba(var(--white-color), 1);
	text-align: left;
	font-weight: bold;
	margin-bottom: 0;
}

.requform .row {
	gap: 15px 0px;
}

.freequetform {
	box-shadow: rgba(57, 58, 58, 0.2) 0px 3px 11px 0px;
	padding: 50px;
	border-radius: 9px;
}

.freequetform p {
	font-size: 16px;
	color: rgba(var(--third-color), 1);
	margin-bottom: 0.5rem;
}

.plumber-form-submit {
	background-color: #95c11f !important;
	border-color: #95c11f !important;
}

.plumber-form-submit:hover {
	background-color: #86ae1b !important;
	border-color: #86ae1b !important;
}

.requform .form-control,
.requform .form-select {
	background-color: #f5f5f5 !important;
}

.formparanew {
	font-size: 16px;
	color: rgba(var(--third-color), 1);
	margin-bottom: 0.5rem;
}

.requform .form-control:hover,
.requform .form-control:focus {
	border: 2px solid #000;
	border-radius: 4px;
}

.requform .form-control {
	min-height: 40px;
	padding: 0 10px;
	border: 1px solid #393a3a1a;
	background-color: rgba(var(--back-color), 1);
}

.requform .form-select {
	padding: 0 10px;
	min-height: 40px;
	border-radius: 0;
}

.requform textarea.form-control {
	height: 88px;
}

.bottomrecode {
	font-size: 13px;
	font-weight: bold;
	color: rgba(var(--third-color), 1);
	margin-bottom: 1rem;
}

.requform .form-label {
	font-size: 16px;
	font-weight: bold;
	color: rgba(var(--third-color), 1);
}

.mobhead {
	display: none;
}

.navbar-toggler {
	padding: 10px;
	border: none;
	background: rgba(var(--main-color), 1);
	border-radius: 0px;
}

.navbar-toggler .navbar-toggler-icon {
	background: rgba(var(--white-color), 1);
	width: 1.1em;
	height: 2px;
	position: relative;
	display: block;
}

.navbar-toggler-icon.bar-1 {
	width: 0.6em;
}

.navbar-toggler-icon.bar-2 {
	width: 0.9em;
}

.navbar-toggler-icon.bar-2 {
	margin: 4px 0px;
}

/* new css overwroite */

.form-container span.wpcf7-not-valid-tip {
	color: rgb(255, 0, 0);
	font-size: 13px;
	margin-bottom: 0;
	text-align: left;
	font-weight: 400;
}

.wpcf7 form .wpcf7-response-output {
	margin: 0 !important;
	color: rgba(var(--white-color), 1) !important;
	font-size: 13px !important;
}

span.wpcf7-form-control-wrap {
	margin-bottom: 0 !important;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.common-btn {
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: rgba(var(--main-color), 1);
	border-radius: 5px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 12px 60px;
	text-align: center;
	text-transform: capitalize;
	border: none !important;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.common-btn:hover,
input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.common-btn:focus,
input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.common-btn:visited {
	background: #393a3a;
	border: none !important;
	outline: none !important
}

.dropdown-menu .nav-item::after {
	display: none;
}

.dropdown-menu li>.dropdown-menu {
	left: 100%;
	top: 0;
}

.coupon-icon svg {
	fill: #96ba2a;
}

.coupon-icon svg path {
	fill: #96ba2a;
}

/* responsive css start */
@media (max-width:1440px) {
	.messagetext h3 {
		width: 100%;
	}

	.contentsectionapp .common-para p {
		width: 90%;
	}

	ul.ratingstarlist li i {
		font-size: 24px;
	}
}

@media (max-width:1024px) {
	.common-title::after {
		bottom: 0%;
	}

	.banner-mainbox {
		align-items: self-start;
	}

	.bannercontentlist {
		align-items: self-start;
	}

	.middlelogosection img {
		height: 66px;
	}

	ul.ratingstarlist li i {
		font-size: 18px;
	}

	.rating h3 {
		font-size: 24px;
	}

	.leftsidecallbtn a.btn.common-btn {
		width: 100%;
	}

	nav.navbar.navbar-expand-lg.navbar-dark {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.sticky-icon {
		display: none;
	}

	.couponname {
		font-size: 19px;
	}

	.subbanner-maintext {
		font-size: 36px;
	}

	.freequetform {
		padding: 30px;
	}

	.ratingbottomsec p {
		width: 100%;
	}
}

@media (max-width:992px) {
	.innerapplisec img {
		height: 395px;
	}

	.mobhead {
		display: block;
	}

	.deskhead {
		display: none;
	}

	.leftsidecallbtn {
		flex-direction: row;
		padding: 10px;
		gap: 10px;
		justify-content: space-around;
	}

	.leftsidecallbtn a.btn.common-btn {
		width: 32%;
	}

	.rating-main-box {
		background: rgba(var(--second-color), 1);
	}

	.nopadding {
		padding: 0;
	}

	.TopHeader {
		padding: 0px 0px 10px 0px;
	}

	.rating {
		justify-content: center;
		padding: 5px 0px;
	}

	.rating a {
		color: rgba(var(--white-color), 1);
	}

	.innerlogoboxmain {
		display: flex;
		justify-content: space-between;
		padding: 10px;
		align-items: center;
	}

	.my-offcanvas {
		background: rgba(var(--second-color), 1);
	}

	.offcanvas-body .dropdown-menu {
		position: relative !important;
		background: transparent !important;
		box-shadow: rgba(0, 0, 0, 0) 0 3px 11px 0 !important;
		border: 0;
		padding-left: 5px;
		padding-top: 10px;
	}

}

.nav-item::after {
	display: none;
}

.nav-item .nav-link::before {
	left: 0;
}

.my-offcanvas li.list-group-item,
.list-item {
	background: transparent;
	border: none;
	color: #ffff;
	font-size: 16px;
	padding: 0;
	font-weight: 700;
}

.my-offcanvas .dropdown-item:hover,
.my-offcanvas .dropdown-item:focus {
	color: rgba(var(--white-color), 1);
	background-color: rgba(var(--main-color), 1);
}

.my-offcanvas .dropdown-toggle::after {
	margin-left: 0;
}

.my-offcanvas a.dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 19px;
	padding: 0;
	font-size: 15px;
}

.my-offcanvas .dropdown-item {
	background-color: rgba(var(--second-color), 0);
	color: rgba(var(--white-color), 1) !important;
	padding: 5px;
}

.nav-item .nav-link::before {
	width: 100%;
	bottom: -2px;
}

.nav-item .nav-link {
	display: inline-block;
}

ul.list-group {
	display: flex;
	align-items: self-start;
	gap: 30px;
	flex-direction: column;
}

.list-unstyled {
	display: flex;
	align-items: self-start;
	gap: 5px;
	flex-direction: column;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	width: 100%;
}

.list-group-item:hover a.dropdown-toggle:after {
	transform: rotate(180deg);
	transition: transform .3s ease-out;
}

a.dropdown-toggle.maintog {
	padding: 0;
	font-size: 16px;
}

.list-group-item:hover a.dropdown-toggle.maintog.collapsed-class:before {
	left: 0px;
	width: 100%;
	top: 31px;
	content: '';
	background-color: rgba(var(--main-color), 1);
	transform: scaleX(1);
	transform-origin: left;
	opacity: 1;
	transition: transform .2s ease-out, opacity .2s ease-out;
}

a.dropdown-toggle.maintog.collapsed-class::before {
	content: '';
	width: calc(100% - 30px);
	height: 2px;
	background-color: rgba(var(--second-color), 1);
	display: block;
	border: none !important;
	margin-top: 0;
	position: absolute;
	bottom: 6px;
	left: 18px;
	transform: scaleX(0);
	transform-origin: left;
	opacity: 1;
	transition: transform .2s ease-out, opacity .2s ease-out;
}

.list-unstyled li {
	width: 100%;
	display: block;
}

a.navbar-brand.mob-logo {
	height: 35px;
}

.my-offcanvas .offcanvas-header a i {
	font-size: 25px;
	color: #fff6;
	cursor: pointer;
}

ul.wp-block-list {
	padding-left: 2rem !important;
}

.banner_mobile_button {
	display: none;
}

.hide-desktop {
	display: none;
}
@media (max-width:991px) {
	.contentsectionapp {
		margin: auto;
	}

	.contentsectionapp.nextboxsec {
		margin: auto;
	}

	section.application-sec.Choose-section .row {
		flex-direction: column-reverse;
	}

	.Introducing-video .play-btn {
		font-size: 70px;
	}

	.banner-title {
		font-size: 30px;
	}

	.bannercontentlist li {
		font-size: 17px;
	}

	.bannercallbtn {
		font-size: 25px;
	}

	.common-title {
		font-size: 24px;
		margin-bottom: 1.3rem;
	}

	.bannercontainer {
		padding-top: 36px;
		padding-bottom: 80px;
	}

	section.banner-section {
		clip-path: polygon(0 0, 100% 0%, 100% 94%, 50% 100%, 0 94%);
	}
}

@media (max-width:768px) {
	.leftsidecallbtn a.btn.common-btn {
		width: 50%;
	}

	.messagetext h3 {
		font-size: 24px;
		margin-bottom: 1rem;
	}

	.conbox span {
		font-size: 20px;
	}

	.mobrowclass {
		margin-bottom: 1rem !important;
	}

	section.innerbanner-section {
		height: 30vh;
	}

	.contact-title {
		font-size: 26px;
		margin-bottom: 1.5rem;
	}

	.rd-mailform {
		padding-right: 0;
	}
}

@media (max-width:767px) {

	.hide-mobile,
	.hide-mobile1 {
		display: none;
	}

	.hide-desktop {
		display: block;
	}

	.banner_mobile_button {
		margin-top: 10px;
		display: block;
	}

	.banner_mobile_button .common-btn {
		border: 1px solid #fff;
	}

	ul.wp-block-list {
		padding-left: 2rem !important;
	}

	.common-title::after {
		display: none !important;
	}

	.banner-title {
		text-align: center;
	}

	.banner-mainbox {
		align-items: center;
	}

	.bannercontentlist {
		align-items: center;
	}

	.choose-box .common-para p {
		text-align: center;
	}

	.rightsidecontent li {
		font-size: 17px;
	}

	.rightsidecontent li img {
		width: 22px;
		height: 22px;
	}

	.reviewlist-box {
		padding: 20px;
	}

	.messagebox-sec {
		padding: 20px;
	}

	.inner-box h3 {
		font-size: 22px;
		margin-bottom: 0.8rem;
	}

	.calloutTitle {
		font-size: 22px;
	}

	.inner-box {
		padding-right: 0px;
	}

	.reviewcs-box .common-para p {
		width: 100%;
	}

	.innerbanner-mainbox .common-para p {
		width: 100%;
	}

	.inner-banner-title {
		font-size: 30px;
		text-align: center;
	}

	.innerbanner-mainbox .common-para p {
		width: 100%;
		text-align: center;
		line-height: 25px;
	}

	.contact-box img {
		height: 350px;
	}

	.subbanner-maintext {
		font-size: 25px;
	}

	.freequetform {
		padding: 13px;
	}

	.copy-text {
		text-align: center;
	}

	a.btn.common-btn.play-btn {
		display: block;
	}
}

@media (max-width:580px) {
	.conbox span {
		font-size: 16px;
	}

	.requform .form-label {
		font-size: 13px;
	}

	.inner-box p {
		font-size: 15px;
	}

	.banner-section .row,
	.common-section .row,
	.footer-section .row,
	.quote-box .row,
	.modalPopup .row {
		gap: 15px 0px;
	}

	.asst-banner-text {
		font-size: 16px;
	}

	.asst-banner-text o {
		font-size: 16px;
	}

	.hibu-asst-banner {
		padding: 13px 30px;
	}

	.middlelogosection img {
		height: 55px;
	}

	.form-container {
		max-width: 100%;
	}

	.leftsidecallbtn {
		flex-direction: row;
	}

	.leftsidecallbtn a.btn.common-btn {
		padding: 12px 0px;
	}

	.leftsidecallbtn a.btn.common-btn {
		width: 100%;
	}

	.rating h3 {
		font-size: 22px !important;
	}
}

@media (max-width:480px) {
	/* .leftsidecallbtn {
		flex-direction: column;
		justify-content: center;
	} */

	.leftsidecallbtn a.btn.common-btn {
		width: 100%;
	}
}



/* new css for coupons modal */
.my-modalnew .modal-dialog {
	--bs-modal-width: 357px;
	max-width: var(--bs-modal-width);
}

.my-modalnew .modal-header {
	border: none !important;
}

.my-modalnew .modal-header i {
	cursor: pointer;
	font-size: 20px;
}

.my-modalnew .modal-body {
	padding: 30px;
	padding-top: 0;
}

.couponsmodal {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;

}

.couponsmodal p {
	margin-bottom: 0;
	font-size: 16px;
	text-align: center;
	font-weight: 500;
	color: rgba(var(--third-color), 1);
}

.couponsmodal h4 {
	margin-bottom: 0;
	font-size: 18px;
	text-align: center;
	font-weight: 700;
	color: rgba(var(--third-color), 1);
}

.couponsmodal .bannercallbtn {
	margin-bottom: 0;
	text-align: center;
	color: rgba(var(--third-color), 1);
	font-size: 30px;
}


button.btn.HeadCa-FormBtn,
button.btn.HeadCa-FormBtn:hover {
	background: transparent !important;
	color: #000 !important;
}

button.navbar-toggler,
button.navbar-toggler:hover,
button.navbar-toggler:focus,
button.navbar-toggler:visited,
button.navbar-toggler:active,
button.navbar-toggler:not(:hover):not(:active):not(.has-background) {
	background-color: #96ba2a !important;
}

@media (max-width:767px) {
	.couponsmodal .bannercallbtn {
		font-size: 20px;
	}
}

.drain_service .dropdown-item {
	display: flex;
}

.dropdown-item[aria-current="page"] {
	background: #96ba2a;
}

.drain_service .dropdown-item:after {
	content: '\f107';
	font-family: FontAwesome !important;
	font-weight: 200;
	font-style: normal;
	text-decoration: none;
	display: inline-block;
	cursor: default;
	speak: none;
	margin-left: auto;
	vertical-align: auto;
	border-top: none;
	border-right: none;
	border-bottom: 0;
	border-left: none;
	font-size: 10px;
	transform: rotate(270deg);
	color: rgba(var(--white-color), 1);
	transition: transform .3s ease-out;
}

.drain_service:hover .dropdown-item::after {
	transform: rotate(90deg);
	transition: transform .3s ease-out;
}

.sub_drain_services .dropdown-item:after {
	display: none;
}

/* financing styel css */


.common-section.financ_bottom {
	padding-top: 0;
}

.financ_bottom h3 {
	font-weight: 800;
	color: #393a3a;
	font-size: 26px;
	margin-bottom: 10px;
}

.financ_bottom p {
	font-weight: 400;
	color: #5f5f5f;
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 1.5;
}

.financ_form p {
	margin-bottom: 0;
}

.financ_form .form-control,
.financ_form .form-select {
	background-color: #66666626 !important;
}

.formparanew {
	font-size: 16px;
	color: rgba(var(--third-color), 1);
}

.financ_form .form-control:hover,
.financ_form .form-control:focus {
	border: 0;
	border-radius: 4px;
}

.financ_form .form-control {
	min-height: 40px;
	padding: 0 10px;
	border: 0;
	background-color: #66666626;
}

.financ_form .form-select {
	padding: 0 10px;
	min-height: 40px;
	border-radius: 0;
}

.financ_section .financ_top_heading {
	font-weight: bold;
	color: #5f5f5f;
	font-size: 24px;
	margin-bottom: 50px;
}

.financ_row {
	margin-bottom: 50px;
}

.financ_box {
	margin-left: 80px;
}

.financ_image {
	margin-right: 80px;
}

.financ_box.style2 {
	margin-right: 80px;
	margin-left: 0;
}

.financ_image.style2 {
	margin-left: 80px;
	margin-right: 0;
}

.financ_box h3 {
	font-weight: 400;
	color: #000;
	font-size: 40px;
	margin-bottom: 25px;
}

.financ_box p {
	font-weight: 400;
	color: #000;
	font-size: 18px;
	margin-bottom: 30px;
	line-height: 1.5;
}

.financ_box .common-btn {
	padding: 18px 15px;
}

@media(max-width: 991px) {
	.financ_box {
		margin-left: 0;
	}

	.financ_image {
		margin-right: 0;
	}

	.financ_box.style2 {
		margin-right: 0;
		margin-left: 0;
	}

	.financ_image.style2 {
		margin-left: 0;
		margin-right: 0;
	}
}

/* Review style css */

.single-review {
	display: flex;
	flex-direction: row;
}

.single-review .hr-review-icon {
	flex-shrink: 0;
}

.single-review .hr-review-icon>img {
	width: 4rem;
	height: 4rem;

}

.single-review .review:nth-child(2) {
	margin-left: 1.5rem;
}

.single-review .review {
	width: 100%;
}

.review {
	color: #404040;
	margin-bottom: 1em;
	padding-bottom: 1.2em;
	text-align: left;
	border-bottom: 1px solid #eeeeee;
}

.review .name {
	font-weight: 800;
	font-size: 20px;
	margin-bottom: 0.2em;
	color: #5f5f5f;
}

.review_list {
	list-style: none !important;
	padding-left: 0 !important;
}

span.time {
	font-size: 14px;
	color: #5f5f5f;
}

.filter-bar {
	margin: 0 0 1rem;
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
	padding: 1em 0;
	flex-direction: row;
}

.filter-bar button {
	cursor: pointer !important;
	background-color: #f5f5f5 !important;
	border: 1px solid #a5a5a5 !important;
	padding: 0.4rem 1.3rem;
	border-radius: 1.5rem;
	color: #555555 !important;
	font-size: 16px;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

.filter-bar button i {
	margin: 0 5px;
	color: rgba(var(--fourth-color), 1);
}

.filter-bar button img {
	width: 20px;
	height: 20px;
	object-fit: cover;
	margin-right: 8px;
}

.filter-bar button.active,
.filter-bar button:hover {
	cursor: pointer;
	background: #f5f5f5;
	border: 1px solid #a5a5a5;
}

.fdn-star-on-png {
	color: #ffc834;
}

.fdn-star-on-png,
.fdn-star-off-png {
	font-family: "Ionicons";
	text-transform: none;
	overflow: hidden;
	display: block;
}

.filter-bar .separator {
	margin: 0 3px;
}

.filter-bar .review-noun {
	margin-left: 5px;
}

/* contact us page css */

.contact_section h3 {
	color: #393a3a;
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 20px;
}

.contact_section .contact_list .contact_item {
	margin-bottom: 8px;
}

.contact_section .contact_list .contact_item:last-child {
	margin-bottom: 0;
}

.contact_section .social_list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 25px;
}

.contact_section .social_item {
	margin-right: 10px;
}

.contact_section .social_item:last-child {
	margin-right: 0;
}

.contact_section .social_item .social_link {
	background: #393a3a;
	width: 32px;
	height: 32px;
	border-radius: 5px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact_icons {
	background: #f2f2f2;
}

.contact_icons img {
	width: auto;
	height: 120px;
	object-fit: cover;
	margin: 0 auto;
	display: block;
}



.couponsmodal p.merchant-name {
	text-align: left;
	font-size: 20px;
	font-weight: 800;
	color: #000;
	margin-bottom: 10px;
}

.couponsmodal p.explain {
	font-size: 16px;
	text-align: left;
	line-height: 1.5;
	font-weight: 400;
	margin-bottom: 20px;
}

.review_modal .modal-dialog {
	max-width: 650px;
}

.review_modal .modal-body {
	padding: 20px 40px;
}

.couponsmodal label {
	display: block;
	text-align: left;
}

.couponsmodal input,
.couponsmodal select,
.couponsmodal textarea {
	background-color: #66666626 !important;
	min-height: 40px !important;
	color: #000 !important;
	text-align: left !important;
	border: 0 !important;
	padding: 14px !important;
	width: 100%;
	margin-bottom: 10px;
}

.terms {
	font-size: 15px;
	margin: 20px 0;
}

.couponsmodal form button.common-btn {
	background-color: rgb(150 186 42) !important;
}

.terms a {
	color: rgb(150 186 42);
}

.couponsmodal form p {
	text-align: left;
}

.grecaptcha-badge {
	z-index: 999;
}



.custom-spinner {
	width: 25px;
	height: 25px;
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-top-color: #393a3a;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 10px auto;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}


.rate {
	float: left;
	height: 46px;
	padding: 0 10px;
}

.rate:not(:checked)>input {
	position: absolute;
	top: -9999px;
}

.rate:not(:checked)>label {
	float: right;
	width: 1em;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	font-size: 30px;
	color: #ccc;
}

.rate:not(:checked)>label:before {
	content: '★ ';
}

.rate>input:checked~label {
	color: #ffc700;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
	color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
	color: #c59b08;
}

.bcMPWx {
	position: relative;
	padding: 20px;
	margin: 20px 0px;
	background: rgb(236, 236, 236);
	border-radius: 0px 12px 12px;
}

.bJCmFu {
	position: relative;
	margin-top: 5px;
}

.bcMPWx p {
	padding: 5px 0px;
	margin-top: 5px;
	margin-bottom: -5px;
}

.bcMPWx span {
	font-size: 12px;
	font-weight: 300;
}

.single-review .recommended {
	color: #235c9e;
	font-weight: bold;
}

.recommended span,
i {
	font-size: 16px;
}

p:empty {
	display: none
}

.cttopbtn {
	display: none;
	cursor: pointer;
	position: fixed;
	bottom: 80px;
	right: 0px;
	z-index: 99;
	width: 44px !important;
	height: 44px;
	border-radius: 0%;
	color: white;
	border: none;
	align-items: center;
	justify-content: center;
	padding: 0;
	background-color: #393a3a !important;
}

.cttopbtn:hover {
	display: none;
	cursor: pointer;
	position: fixed;
	bottom: 80px;
	right: 0px;
	z-index: 99;
	width: 44px !important;
	height: 44px;
	border-radius: 0%;
	color: white;
	border: none;
	align-items: center;
	justify-content: center;
	padding: 0;
	background-color: #393a3a !important;
}

/* social share modal icon */

.social_share i{
	font-size: 24px;
}
.share_title{
	font-size: 22px;
}







/* New css add for mobile menu */


.offcanvas-body .accordion {
	width: 100%;
	max-width: 100%;
	margin: 0;
	background: #ffffff00;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 0;
}

.offcanvas-body .accordion .link,
.offcanvas-body .accordion .linknew {
	cursor: pointer;
	display: block;
	padding: 18px 0px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	border-bottom: 1px solid #a9cd35;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.offcanvas-body .accordion li:last-child .link {
	border-bottom: 0;
}

.offcanvas-body .accordion li i {
	position: absolute;
	top: 20px;
	left: 12px;
	font-size: 18px;
	color: #ffffff;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.offcanvas-body .accordion li i.fa-chevron-down {
	right: 12px;
	left: auto;
	font-size: 14px;
}

.offcanvas-body .accordion li.open .link {
	color: rgba(var(--main-color), 1);
}

.offcanvas-body .accordion li.open i {
	color: rgba(var(--white-color), 1);
}

.offcanvas-body .accordion li.open i.fa-chevron-down {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.offcanvas-body .accordion .linknew {
	padding: 12px 20px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
}

/**
   * Submenu
   -----------------------------*/


.offcanvas-body .submenu,
.offcanvas-body .submenu1 {
	display: none;
	background: #ffffff00;
	font-size: 14px;
}

.offcanvas-body .submenu li,
.offcanvas-body .submenu1 li {
	border-bottom: 1px solid #4b4a5e;
}

.offcanvas-body .submenu a,
.offcanvas-body .submenu1 a {
	display: block;
	text-decoration: none;
	color: #d9d9d9;
	padding: 12px;
	padding-left: 20px;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.offcanvas-body .submenu a:hover,
.offcanvas-body .submenu1 a:hover {
	background: rgba(var(--main-color), 1);
	color: #FFF;
}