
/*+++++++++++++++++++++++++++++++++++++++++++++++
Fonts
++++++++++++++++++++++++++++++++++++++++++++++++*/

/* @import url('https://fonts.googleapis.com/css2?family=Marcellus&amp;family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&amp;display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&family=Mulish:wght@300;400;500&display=swap');
/*+++++++++++++++++++++++++++++++++++++++++++++++
Moz Selection
++++++++++++++++++++++++++++++++++++++++++++++++*/

:root {
	--primary-color: #4ea006;
	--dark-color: #0a1d35;
	--secondary-color: #878c97;
	--grey-color: #faf6f3;
	--white-color: #ffffff;
	--title-fonts: 'Josefin Sans', sans-serif;
	--body-fonts: 'Mulish', sans-serif;
}

::-moz-selection {
	text-shadow: none;
	background: var(--primary-color);
	color: var(--white-color);
}

::-moz-selection {
	text-shadow: none;
	background: var(--primary-color);
	color: var(--white-color);
}

::selection {
	text-shadow: none;
	background: var(--primary-color);
	color: var(--white-color);
}


/*+++++++++++++++++++++++++++++++++++++++++++++++
General
++++++++++++++++++++++++++++++++++++++++++++++++*/
body {
	background: var(--white-color);
	font-family: var(--body-fonts);
	font-size: 1rem;
	font-style: normal;
	font-weight: normal;
	line-height: 2;
	color: var(--secondary-color);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--title-fonts);
	color: var(--dark-color);
	font-style: normal;
	text-transform: capitalize;
	font-weight: 600;
	margin: 0;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	letter-spacing: 1px;

}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

h1 {
	font-size: 40px;
	font-style: normal;
	line-height: 48px;
}

h2 {
	font-size: 36px;
	font-style: normal;
	line-height: 44px;
}

h3 {
	font-size: 32px;
	font-style: normal;
	line-height: 40px;
}

h4 {
	font-size: 28px;
	font-style: normal;
	line-height: 36px;
}

h5 {
	font-size: 24px;
	font-style: normal;
	line-height: 32px;
}

h6 {
	font-size: 20px;
	font-style: normal;
	line-height: 28px;
}

/*++++++++++++++++ HTML Tags +++++++++++*/
a,
.button {
	color: var(--primary-color);
	outline: none !important;
	text-decoration: none;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

a:focus,
a:hover {
	color: var(--primary-color);
	outline: none;
	text-decoration: none !important;
}

p {
	margin-bottom: 30px;
}

img {
	max-width: 100%;
	height: auto;
}

pre {
	background: var(--white-color);
	padding: 15px;
	border: 1px solid var(--grey-color);
}

hr {
	margin: 0;
	padding: 0px;
	border-bottom: 1px solid #e0e0e0;
	border-top: 0px;
}

b,
strong {
	font-weight: 600;
}

/*+++++++++++++ Lists (Nested) ++++++++++++++*/
ol,
ul {
	padding-left: 25px;
	margin-bottom: 1em;
}

ol li {
	list-style: decimal;
}

ol ol {
	padding-left: 25px;
}

ul li {
	list-style: none;
}

/*+++++++++++Definition Lists ++++++++++*/
dl dd {
	margin-bottom: 15px;
}

dl dd:last-child {
	margin-bottom: 0px;
}

/*+++++++++++++ Table ++++++++++++++*/
table {
	border: 1px solid var(--grey-color);
	width: 100%;
	margin-bottom: 20px;
}

table td,
table th {
	border: 1px solid var(--grey-color);
	padding: 8px;
	text-align: center;
}

/*++++++++++Input Textarea +++++++++++++*/
input,
input.form-control {
	background: var(--grey-color);
	border: 1px solid var(--grey-color);
	color: var(--dark-color);
	width: 100%;
	float: none;
	font-size: 16px;
	padding: 0 15px;
	height: 54px;
	line-height: 54px;
	outline: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	border-radius: 5px;
}

select:focus,
select:hover,
input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: none;
	background-color: var(--grey-color);
}

input[type="radio"],
input[type="checkbox"] {
	width: auto;
	height: auto;
	float: none;
	margin-right: 5px;
}

textarea {
	background: var(--grey-color);
	border: 1px solid var(--grey-color);
	color: var(--dark-color);
	width: 100%;
	float: none;
	padding: 10px 15px;
	outline: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	border-radius: 5px;
}

/*+++++++++++++ Select +++++++++++++++*/
select,
select.form-control {
	border: 1px solid var(--grey-color);
	color: var(--secondary-color);
	width: 100%;
	float: none;
	padding: 0 30px 0 15px;
	height: 54px;
	margin-bottom: 20px;
	line-height: 54px;
	outline: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23999999\' height=\'24\' viewBox=\'0 0 24 24\' width=\'24\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M7 10l5 5 5-5z\'/><path d=\'M0 0h24v24H0z\' fill=\'none\'/></svg>');
	background-color: var(--white-color);
	background-repeat: no-repeat;
	background-position: right 10px bottom 50%;
	background-size: 20px 20px;
	border-radius: 5px;
}

select:focus,
select.form-control:focus {
	background-color: var(--grey-color);
	border-color: var(--primary-color);
}


/*++++++++++++++++ Container +++++++++++*/
.container {
	max-width: 1400px;
	position: relative;
}

section {
	padding: 40px 0;
	position: relative;
}

.pq-bg-dark {
	background-color: var(--white-color)
}

.pq-bg-grey {
	background-color: var(--grey-color);
}

.pq-bg-primary {
	background-color: var(--primary-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Loading
++++++++++++++++++++++++++++++++++++++++++++++++*/
#pq-loading {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	display: flex;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: var(--white-color);
}

#pq-loading img {
	height: 60px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Back to Top
++++++++++++++++++++++++++++++++++++++++++++++++*/
#back-to-top .top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	margin: 0px;
	color: var(--white-color);
	background: var(--primary-color);
	z-index: 999;
	font-size: 26px;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	animation: backtotop 2s infinite;
	border-radius: 5px;
}

#back-to-top .top:hover {
	background: var(--dark-color);
	color: var(--white-color);
}

#back-to-top.active .top {
	transform: scale(1);
}

@keyframes backtotop {
	0% {
		bottom: 45px;
	}

	50% {
		bottom: 30px;
	}

	100% {
		bottom: 45px;
	}
}


/*+++++++++++++++++++++++++++++++++++++++++++++++
WordPress Core
++++++++++++++++++++++++++++++++++++++++++++++++*/

/*++++++++++++++++ Text meant only for screen readers +++++++++++*/
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	white-space: nowrap;
	height: 0px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: var(--grey-color);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 600;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}


/*+++++++++++++++++++++++++++++++++++++
Button Core
++++++++++++++++++++++++++++++++++++++++*/
[type="button"],
[type="reset"],
[type="submit"] {
	font-family: var(--title-fonts);
	overflow: inherit;
	position: relative;
	width: auto;
	background: var(--dark-color);
	color: var(--white-color);
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 1px;
	padding: 10px;
	font-weight: 400;
	line-height: 2;
	vertical-align: middle;
	border: none;
	display: inline-block;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	height: auto;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
	color: var(--white-color);
	background: var(--primary-color);

}

.pq-button {
	font-family: var(--title-fonts);
	font-weight: 400;
	/* text-transform: uppercase; */
	letter-spacing: 1px;
	line-height: 2;
	font-size: 16px;
	padding: 4px 6px;
	position: relative;
	width: auto;
	background: var(--dark-color);
	color: var(--white-color);
	vertical-align: middle;
	display: inline-block;
	overflow: hidden;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
	fill: var(--white-color);
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.pq-button .pq-button-block {
	display: flex;
	align-items: center;
	position: relative;
}


.pq-button:hover,
.pq-button:focus {
	background: var(--primary-color);
	color: var(--white-color);
}

/*===== Button link =====*/
.pq-button.pq-button-link {
	padding: 0;
	background: transparent;
	color: var(--dark-color);
	transition: all 0.5s ease;
}


.pq-button.pq-button-link i {
	margin-left: 5px;
	transition: all 0.5s ease;
	margin-top: 5px;
}

.pq-button.pq-button-link:hover {
	color: var(--primary-color);
}

.pq-button.pq-button-link:hover i {
	margin-left: 10px;
}

/*===== Button icon =====*/
.pq-button.pq-button-icon {
	padding: 0;
	background: transparent;
	color: var(--dark-color);
	transition: all 0.5s ease;
}

.pq-button.pq-button-icon span {
	margin-right: 0px;
	text-indent: -130px;
	opacity: 0;
	visibility: hidden;
	transition: visibility 0.5s ease, margin-right 0.5s ease-out, text-indent 0.5s ease-out, opacity 0.5s ease;
}

.pq-button.pq-button-icon:hover span {
	text-indent: 0;
	opacity: 1;
	margin-right: 5px;
	visibility: visible;
	transition: visibility 0.5s ease, margin-right 0.5s ease-out, text-indent 0.5s ease-out, opacity 0.5s ease;
}

.pq-button.pq-button-icon:hover {
	color: var(--primary-color);
}

.pq-button.pq-button-icon i {
	color: var(--dark-color);
	margin-top: 5px;
}

.pq-button.pq-button-icon:hover i {
	color: var(--primary-color);
}


/*===== Button outline =====*/
.pq-button.pq-btn-outline {
	background: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
}

.pq-button.pq-btn-outline:hover {
	background: transparent;
	border: 1px solid var(--dark-color);
	color: var(--dark-color);
}

.pq-button.pq-btn-outline i {
	fill: var(--primary-color);
}

.pq-button.pq-btn-outline:hover i {
	fill: var(--dark-color);
}

/*++++++++++++++++++++++++++++++++++++++++++++++
Blog
++++++++++++++++++++++++++++++++++++++++++++++++++*/

.owl-carousel .pq-blog-post .pq-blog-contain .pq-blog-title {
	font-size: 26px;
	line-height: 34px;
	margin-bottom: 15px;
}

.owl-carousel .pq-blog-post .pq-blog-contain {
	padding: 20px 20px 0 0;
}

.owl-carousel .pq-blog-post .pq-blog-contain .pq-post-category {
	margin-top: 0;
	margin-bottom: 10px;
}

.owl-carousel .pq-blog-post .pq-blog-contain .pq-post-category a {
	background: transparent;
	padding: 0;
	color: var(--primary-color);
}

.owl-carousel .pq-blog-post .pq-post-meta ul {
	margin: 0;
}

.owl-carousel .pq-blog-post {
	margin-bottom: 0;
	background-color: transparent;
}

.pq-blog-post {
	margin-bottom: 45px;
	background: var(--grey-color);
	display: inline-block;
	width: 100%;
	border-radius: 5px;
}

.pq-blog-post .pq-post-media {
	overflow: hidden;
	position: relative;
	border-radius: 5px;
}

.pq-blog-post .pq-post-media img {
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.pq-blog-post:hover .pq-post-media img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.pq-blog-post .pq-blog-contain {
	padding: 30px;
	display: inline-block;
	position: relative;
	width: 100%;
}

.pq-blog-post .pq-blog-contain p:last-child {
	margin-bottom: 0;
}

.pq-blog-post .pq-blog-contain .pq-post-meta+p a,
.pq-blog-post .pq-blog-contain ul li a,
.pq-blog-post .pq-blog-contain ol li a {
	color: var(--secondary-color);
}

.pq-blog-post .pq-blog-contain .pq-post-meta+p a:hover,
.pq-blog-post .pq-blog-contain ul li a:hover,
.pq-blog-post .pq-blog-contain ol li a:hover {
	color: var(--primary-color);
}

.pq-blog-post .pq-blog-contain .wp-block-archives-list li a {
	color: var(--secondary-color);
}

.pq-blog-col-3 .pq-blog-post .pq-blog-contain .pq-blog-title {
	font-size: 22px;
	line-height: 30px;
}

.pq-blog-post .pq-blog-contain .pq-post-category {
	margin-bottom: 30px;
	margin-top: -45px;
}

.pq-blog-post .pq-blog-contain .pq-post-category a {
	display: inline-block;
	background: var(--dark-color);
	color: var(--white-color);
	padding: 2px 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	font-family: var(--title-fonts);
}

.pq-blog-post .pq-blog-contain .pq-post-category a+a {
	margin-bottom: 5px;
}

.pq-blog-post .pq-blog-contain .pq-blog-title {
	font-size: 28px;
	line-height: 36px;
	margin-top: 0;
}

.pq-blog-post .pq-blog-contain .pq-blog-title+.pq-btn-container {
	margin-top: 15px;
}

.pq-blog-post .pq-blog-contain a.pq-button.pq-button-link .pq-button-text {
	transition: all 0.5s ease;
}

.pq-blog-post .pq-post-meta ul {
	margin: 0 0 15px;
	padding: 0;
	width: 100%;
	display: -ms-flexbox !important;
	display: flex !important;
}

.pq-blog-post .pq-post-meta ul li {
	list-style: none;
	float: left;
	display: inline-block;
	margin-right: 15px;
	align-self: center !important;
	font-size: 14px;
	line-height: 30px;
	font-weight: 400;
	text-transform: capitalize;
}

.pq-blog-post .pq-post-meta ul li {
	position: relative;
}

.pq-blog-post .pq-post-meta ul li+li {
	padding-left: 15px;
}

.pq-blog-post .pq-post-meta ul li+li:before {
	content: "";
	position: absolute;
	left: -2px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	background: var(--secondary-color);
	border-radius: 100%;
}

.pq-blog-post .pq-post-meta ul li:last-child {
	margin-right: 0;
}

.pq-blog-post .pq-post-meta ul li a {
	color: var(--secondary-color);
}

.pq-blog-post .pq-post-meta ul li a:hover {
	color: var(--primary-color);
}

.pq-blog-post .pq-post-meta ul li i {
	margin-right: 5px;
	color: var(--primary-color);
}

.pq-blog-post .pq-post-media .pq-post-date {
	background: var(--primary-color);
	padding: 15px;
	text-transform: uppercase;
	color: #fff;
	width: 75px;
	text-align: center;
	line-height: 1.3;
	position: absolute;
	left: 15px;
	bottom: 15px;
}

.pq-blog-post .pq-post-media .pq-post-date a {
	color: var(--white-color);
	font-weight: 400;
	letter-spacing: 1px;
}

.pq-blog-post .pq-post-media .pq-post-date span {
	display: inline-block;
	width: 100%;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++
Blog Single Post
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-single-post-bottom-holder {
	margin: 0;
	padding: 45px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	align-content: center;
	border-bottom: 1px solid var(--grey-color);
}

.pq-single-post-bottom-holder .pq-single-post-tags {
	display: flex;
	align-items: center;
}

.pq-single-post-bottom-holder .pq-single-post-tags-title {
	font-size: 18px;
	line-height: 26px;
	font-family: var(--title-fonts);
	color: var(--dark-color);
	text-transform: capitalize;
	font-weight: 600;
	display: inline-block;
	letter-spacing: 1px;
}

.pq-single-post-bottom-holder ul.pq-single-post-tags-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-block;
}

.pq-single-post-bottom-holder ul.pq-single-post-tags-list li {
	margin: 0 0 0 8px;
	padding: 0;
	list-style: none;
	display: inline-block;
	vertical-align: middle;
}

.pq-single-post-bottom-holder ul.pq-single-post-tags-list li a {
	font-size: 14px;
	text-transform: capitalize;
	background: var(--white-color);
	margin: 0;
	display: inline-block;
	float: left;
	color: var(--dark-color);
	padding: 4px 16px;
	border: 1px solid var(--white-color);
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	border-radius: 5px;
}

.pq-single-post-bottom-holder ul.pq-single-post-tags-list li a:hover {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: var(--white-color);
}

/*++++++++++*/
.pq-single-post-bottom-holder .pq-single-post-social-title {
	font-size: 18px;
	line-height: 26px;
	font-family: var(--title-fonts);
	color: var(--dark-color);
	text-transform: capitalize;
	font-weight: 600;
	display: inline-block;
	letter-spacing: 1px;
}

.pq-single-post-bottom-holder ul.pq-single-post-shortcode-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-flex;
}

.pq-single-post-bottom-holder ul.pq-single-post-shortcode-list li {
	margin: 0 0 0 8px;
	padding: 0;
	list-style: none;
}

.pq-single-post-bottom-holder ul.pq-single-post-shortcode-list li a {
	width: 50px;
	height: 50px;
	background: var(--white-color);
	color: var(--dark-color);
	display: inline-block;
	text-align: center;
	line-height: 50px;
	border-radius: 5px;
}

.pq-single-post-bottom-holder ul.pq-single-post-shortcode-list li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.pq-single-post-usernav {
	padding: 0 30px 30px;
}

.pq-single-post-usernav .pq-user {
	background: var(--white-color);
	padding: 30px;
	display: flex;
	align-items: center;
	border-radius: 5px;
}

.pq-single-post-usernav .pq-user .pq-user-media {
	margin-right: 30px;
}

.pq-single-post-usernav .pq-user .pq-user-media img {
	width: 250px;
	border-radius: 5px;
}

.pq-single-post-usernav .pq-user-info .pq-user-title {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 5px;
}

.pq-single-post-usernav .pq-user-info .pq-user-sub-title {
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	font-family: var(--title-fonts);
	color: var(--primary-color);
}

.pq-single-post-usernav .pq-user-description {
	margin-bottom: 0;
	margin-top: 15px;
}

.pq-blog.pq-single-post {
	padding: 0 30px 45px;
}

.pq-blog.pq-single-post h2 {
	margin-bottom: 30px;
	font-size: 28px;
	line-height: 36px;
}

.single-post .owl-carousel .pq-blog-post .pq-blog-contain .pq-blog-title {
	font-size: 22px;
	line-height: 30px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Pagination
++++++++++++++++++++++++++++++++++++++++++++++++*/
.pq-pagination {
	margin-top: 15px;
}

.pq-pagination .page-numbers {
	display: -ms-flexbox;
	display: flex;
	padding-left: 0;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pq-pagination .page-numbers li:first-child .page-numbers {
	margin-left: 0;
}

.pq-pagination .page-numbers li .page-numbers {
	position: relative;
	display: block;
	padding: 0px 15px;
	height: 45px;
	width: 45px;
	text-align: center;
	line-height: 45px;
	margin: 0 5px;
	color: var(--dark-color);
	background-color: var(--grey-color);
	border-radius: 5px;
}

.pq-pagination .page-numbers li .page-numbers:hover {
	color: var(--white-color);
	text-decoration: none;
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	z-index: 2;
}

.pq-pagination .page-numbers li .page-numbers:focus {
	box-shadow: none;
	outline: 0;
	z-index: 2;
}

.pq-pagination .page-numbers li .page-numbers:not(:disabled):not(.disabled) {
	cursor: pointer
}

.pq-pagination .page-numbers li .page-numbers.current {
	color: var(--white-color);
	background: var(--primary-color);
	border-color: var(--primary-color);
	z-index: 1;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
}

.pq-pagination .page-numbers li .next.page-numbers,
.pq-pagination .page-numbers li .prev.page-numbers {
	width: auto;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Error
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-error-block {
	text-align: center;
}

.pq-error-block .pq-error-text {
	font-size: 420px;
	font-family: var(--title-fonts);
	color: var(--primary-color);
	line-height: 0.8;
	margin-bottom: 30px;
	font-style: normal;
	text-transform: uppercase;
	font-weight: 600;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Dummy Data
++++++++++++++++++++++++++++++++++++++++++++++++*/
.widget {
	margin-bottom: 30px;
	position: relative;
	padding: 30px;
	background: var(--grey-color);
	border-radius: 5px;
}

.widget:last-child {
	margin-bottom: 0;
}

/*===== Widget Title =====*/
.widget .widget-title,
.widget .widget-title,
.widget.widget_block h2 {
	margin-bottom: 15px;
	font-size: 24px;
	line-height: 32px;
}


/*===== Widget List =====*/
.widget ul {
	padding: 0;
	margin: 0;
}

.widget ul li {
	list-style: none;
	margin: 0 0 10px 0;
}

.widget ul li:last-child {
	margin-bottom: 0;
}

.widget ul ul.children {
	padding-left: 25px;
}

.widget ul li a {
	color: var(--secondary-color);
	position: relative;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	padding: 0 0 0 15px;
	text-transform: capitalize;
}

.widget ul li a:hover {
	color: var(--primary-color);
	text-decoration: none;
}


/*===== SideBar - Search =====*/
.widget.widget_search .widget-title {
	display: none;
}

.search-form {
	position: relative;
}

.search-form label {
	display: block;
}

.widget.widget_search .search-form .search-field,
.widget.widget_search .wp-block-search__input,
.wp-block-search__input {
	background: var(--white-color);
	border-color: var(--white-color);
	padding: 0 15px;
}


.wp-block-search__input:hover,
.wp-block-search__input:focus {
	background: var(--white-color);
}


.widget.widget_search .search-form .search-field:hover,
.widget.widget_search .wp-block-search__input:hover,
.widget.widget_search .search-form .search-field:focus,
.widget.widget_search .wp-block-search__input:focus {
	border-color: var(--primary-color);
}

.search-submit {
	background: transparent;
	border: none;
	padding: 0;
	font-size: 20px;
	position: absolute;
	text-align: center;
	color: var(--secondary-color);
	line-height: 54px;
	height: 54px;
	width: 54px;
	top: 0;
	right: 0;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.search-submit:before {
	content: "\e610";
	font-family: 'themify';
	font-weight: 500;
}

.search-submit:hover {
	background: transparent;
	color: var(--primary-color);
}

/*===== Search common =====*/
.wp-block-search {
	position: relative;
}

.wp-block-search label {
	display: none;
}

.wp-block-search .wp-block-search__button {
	background: transparent;
	border: none;
	padding: 0;
	position: absolute;
	text-align: center;
	color: var(--secondary-color);
	font-size: 0px;
	line-height: 54px;
	height: 54px;
	width: 54px;
	top: 0;
	right: 0;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	letter-spacing: 0;
}

.wp-block-search .wp-block-search__button:before {
	content: "\e610";
	font-family: 'themify';
	font-weight: 400;
	font-size: 20px;
}

.wp-block-search .wp-block-search__button:hover {
	background: transparent;
	color: var(--primary-color);
	outline: none;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
	border: none;
	padding: 0;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
	border: 1px solid transparent;
	padding: 0 15px;
	border-radius: 5px;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:hover,
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus {
	border: 1px solid var(--primary-color);
}

/*=====  Tags =====*/

.wp-block-tag-cloud {
	margin-bottom: 0;
}

.widget_tag_cloud .tag-cloud-link,
.wp-block-tag-cloud .tag-cloud-link {
	font-size: 14px !important;
	text-transform: capitalize;
	background: var(--white-color);
	margin: 0 10px 10px 0;
	display: inline-block;
	color: var(--secondary-color);
	padding: 4px 16px;
	border: 1px solid var(--white-color);
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	border-radius: 5px;
}

.widget_tag_cloud .tag-cloud-link:hover,
.wp-block-tag-cloud .tag-cloud-link:hover {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: var(--white-color);
}

/*===== widget Nav Menu =====*/
.widget.widget_nav_menu ul li,
.widget ul.menu li {
	margin-bottom: 0;
}

.widget.widget_nav_menu ul li .sub-menu,
.widget ul.menu li .sub-menu {
	padding-left: 20px;
}

.widget ul.wp-block-latest-posts__list li>a:before,
.widget ul.wp-block-archives-list li>a:before,
.widget ul.wp-block-categories-list li>a:before,
.widget.widget_archive ul li>a:before,
.widget.widget_categories ul li>a:before,
.widget.widget_pages ul li>a:before,
.widget.widget_meta ul li>a:before,
.widget.widget_recent_entries ul li>a:before,
.widget.widget_nav_menu ul li>a:before,
.widget ul.wp-block-page-list li>a:before,
.widget .wc-block-product-categories-list:not(.wc-block-product-categories-list--has-images) .wc-block-product-categories-list-item a:before,
.widget.woocommerce.widget_product_categories ul.product-categories li.cat-item a:before {
	position: absolute;
	content: '\f054';
	left: 0;
	font-size: 10px;
	top: 6px;
	color: inherit;
	font-family: "Font Awesome 6 Free";
	line-height: normal;
	font-weight: 900;
}

/*=====  SideBar Categories List  =====*/
.widget_categories ul li,
.widget_archive ul li {
	font-weight: 400;
	color: var(--primary-color);
}

.widget_categories ul li a,
.widget_archive ul li a {
	font-weight: 400;
	color: var(--secondary-color);
}

/*++++++++++++++++ Dummy data backend page +++++++++++*/

.wp-block-button__link,
.wp-block-file a.wp-block-file__button {
	background: var(--dark-color);
	color: var(--white-color) !important;
	font-family: var(--title-fonts);
	font-weight: 400;
	text-transform: uppercase;
	line-height: 2;
	font-size: 16px;
	padding: 12px 34px;
	border-radius: 5px;
	letter-spacing: 1px;
	display: inline-block;
}

.wp-block-button__link:hover,
.wp-block-file a.wp-block-file__button:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.is-style-outline .wp-block-button__link,
.wp-block-button__link.is-style-outline {
	border-color: var(--primary-color);
	color: var(--primary-color) !important;
}

.is-style-outline .wp-block-button__link:hover,
.wp-block-button__link.is-style-outline:hover {
	background: transparent;
	border-color: var(--dark-color);
	color: var(--dark-color) !important;
}

.is-style-squared .wp-block-button__link {
	border-radius: 0;
}

blockquote {
	background: var(--white-color);
	padding: 30px;
	border-left: 5px solid var(--primary-color);
	margin-bottom: 30px;
	position: relative;
}

.pq-blog-post .pq-blog-contain blockquote:before {
	content: "\f10e";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	right: 22px;
	bottom: 10px;
	font-size: 60px;
	opacity: 0.1;
	line-height: 68px;
	color: var(--primary-color);
}

blockquote cite {
	font-family: var(--title-fonts);
	color: var(--primary-color);
	text-transform: capitalize;
	font-weight: 600;
	font-style: italic;
	letter-spacing: 1px;
}

blockquote strong {
	font-family: var(--title-fonts);
	color: var(--primary-color);
	font-style: italic;
	font-weight: 600;
	display: block;
	margin-top: 10px;
	letter-spacing: 1px;
}

.wp-block-avatar img,
.wp-block-post-author__avatar img {
	border-radius: 5px;
}

.pq-blog-post .pq-blog-contain blockquote p {
	margin-bottom: 0;
}

.pq-blog-post .pq-blog-contain p:last-child {
	margin-bottom: 0;
}

.pq-comment-area {
	display: inline-block;
	width: 100%;
}

.pq-blog-contain .wp-block-archives,
.pq-blog-contain .wp-block-archives-dropdown,
.pq-blog-contain .wp-block-categories,
.pq-blog-contain .wp-block-latest-posts,
.pq-blog-contain .wp-block-tag-cloud,
.pq-blog-contain .wp-block-search {
	margin: 0 0 30px;
	padding: 0;
	display: inline-block;
	width: 100%;
	float: left;
}

.pq-blog-contain .wp-block-archives-dropdown select {
	background-color: var(--white-color);
}

.pq-blog-contain .wp-block-archives li {
	list-style-type: none;
}

.wp-block-latest-comments__comment {
	line-height: 2;
}

.has-dates .wp-block-latest-comments__comment,
.has-excerpts .wp-block-latest-comments__comment,
.wp-block-latest-comments__comment {
	display: inline-block;
	width: 100%;
}

/*===== Gallery =====*/
.gallery-item .gallery-caption {
	font-size: 14px;
	line-height: 22px;
}

.gallery-size-thumbnail .gallery-item {
	margin-right: 2%;
	width: 18.4%;
	margin-bottom: 2%;
	display: inline-block;
	vertical-align: top;
}

.gallery.gallery-size-thumbnail {
	display: inline-block;
	width: 100%;
}

.gallery-size-thumbnail .gallery-item img {
	margin-bottom: 10px;
	width: 100%;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
	margin-right: 0px;
}

.gallery-columns-2 .gallery-item {
	width: 48%;
}

.gallery-columns-3 .gallery-item {
	width: 31.3%;
}

.gallery-columns-4 .gallery-item {
	width: 23%;
}

.gallery-columns-5 .gallery-item {
	width: 18%;
}

.gallery-columns-6 .gallery-item {
	width: 14.6%;
}

.gallery-columns-7 .gallery-item {
	width: 12.2%;
}

.gallery-columns-8 .gallery-item {
	width: 10.5%;
}

.gallery-columns-9 .gallery-item {
	width: 9.1%;
}

/*=====  Blog Page Link =====*/

.pq-blog-contain .page-links a,
.page-links>span.page-number,
.page-links a,
.page-links .post-page-numbers {
	border: none;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: var(--white-color);
	margin-left: 5px;
	padding: 0px;
	display: inline-block;
	color: var(--dark-color);
	border-radius: 5px;
}

.pq-blog-contain .page-links a:hover,
.page-links .post-page-numbers.current {
	text-decoration: none;
	border-color: transparent;
	background: var(--primary-color);
	color: var(--white-color);
}

.pq-blog-contain .page-links>span.page-number,
.page-links>span.page-number {
	background: var(--primary-color);
	color: var(--white-color);
}

/*===== Comments Box =====*/
.comment-respond {
	margin-top: 0;
	display: inline-block;
	width: 100%;
}

.pq-comment-area .comments-title,
.comment-respond .comment-reply-title {
	position: relative;
	margin: 0;
	padding-bottom: 0;
	font-size: 26px;
	line-height: 34px;
}

.comment-respond .comment-reply-title {
	padding-top: 40px;
}

.comment-respond .comment-reply-title a {
	font-weight: 400;
	color: var(--primary-color);
	font-size: 16px;
	line-height: 24px;
	margin-left: 30px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: var(--title-fonts);
}

.comment-respond .comment-reply-title a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

.commentlist {
	margin: 0;
	padding: 0;
	list-style: none;
}

.commentlist .comment {
	margin-top: 15px;
	margin-bottom: 0;
	vertical-align: top;
	padding: 0;
	list-style: none;
}

.commentlist .pq-comment-info {
	padding: 30px;
	border: 1px solid var(--grey-color);
	position: relative;
	background: var(--grey-color);
	border-radius: 5px;
}

.commentlist ol.children {
	padding-left: 60px;
}

.commentlist .pq-comment-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
}

.commentlist .pq-comment-avatar {
	padding-right: 15px;
}

.commentlist .pq-comment-avatar img {
	width: 70px;
	border-radius: 5px;
}

.commentlist .pq-comment-box {
	position: relative;
	display: inline-block;
	width: 100%;
}

.commentlist .pq-comment-box .title {
	font-size: 20px;
	line-height: 28px;
}

.commentlist .pq-comment-box .title:hover {
	text-decoration: none;
	color: var(--primary-color);
}

.commentlist .comment-content p {
	margin: 0;
}

.commentlist .pq-comment-info .reply a {
	position: absolute;
	right: 30px;
	top: 30px;
	margin: 0;
	font-size: 16px;
	line-height: 24px;
	font-family: var(--title-fonts);
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.commentlist .pq-comment-info .reply a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

/*===== foter dummy  =====*/

footer#pq-footer .widget .footer-title {
	margin-bottom: 20px;
	font-size: 22px;
	line-height: 30px;
}

footer#pq-footer .pq-footer-social ul li a:before {
	display: none;
}

footer#pq-footer .widget ul li a:hover {
	color: var(--primary-color);
}

footer#pq-footer .widget ul li .comment-author-link a {
	padding: 0;
}

footer#pq-footer .widget ul li.recentcomments a {
	padding: 0;
}

footer#pq-footer .wp-block-latest-comments li .wp-block-latest-comments__comment-author {
	color: var(--white-color);
}

footer#pq-footer label {
	color: var(--white-color);
}

footer#pq-footer .widget ul.menu li {
	margin-bottom: 8px;
}

footer#pq-footer .widget ul.menu li a,
footer#pq-footer .pq-widget-menu .pq-service li a {
	position: relative;
	border: none;

	width: 100%;
	text-transform: capitalize;
}

footer#pq-footer .widget ul.menu li a:first-child {
	padding-top: 0;
}

footer#pq-footer .widget ul.menu li a:hover,
footer#pq-footer .pq-widget-menu .pq-service li a:hover {
	color: var(--primary-color);
}

footer#pq-footer .pq-widget-menu .pq-service li a:before {
	content: "";
	position: absolute;
	top: 18px;
	bottom: 0;
	left: 0;
	width: 5px;
	height: 5px;
	display: inline-block;
	background: var(--primary-color);
	margin: 0;
}

/*=========*/


footer#pq-footer .pq-footer-style-1 .pq-footer-social {
	margin: 0;
	padding: 0;
	margin-top: 24px;
}

footer#pq-footer .pq-footer-style-1 .pq-footer-social li {
	list-style: none;
	float: left;
	margin-bottom: 0;
}

footer#pq-footer .pq-footer-style-1 .pq-footer-social li+li {
	margin-left: 10px;
}


footer#pq-footer .pq-footer-style-1 .pq-footer-social li a {
	background: rgba(255, 255, 255, 0.06);
	color: var(--white-color);
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	display: inline-block;
	border-radius: 100%;
	padding: 0;
}

footer#pq-footer .pq-footer-style-1 .pq-footer-social li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

footer#pq-footer .pq-footer-style-1 .pq-foote-recent-post .pq-foote-recent-post-info h6 {
	color: var(--white-color);
}

/*=========*/
footer#pq-footer .widget:first-child {
	margin-bottom: 45px;
}


footer#pq-footer .pq-footer-logo~p {
	margin-bottom: 0;
}

footer#pq-footer .widget .footer-title {
	color: var(--white-color);
}

footer#pq-footer .widget ul.menu li a,
footer#pq-footer .pq-widget-menu .pq-service li a,
footer#pq-footer .widget ul li a {
	color: var(--white-color);
}

footer#pq-footer .widget ul.menu li,
footer#pq-footer .pq-widget-menu .pq-service li,
footer#pq-footer .widget ul li {
	color: var(--white-color);
}

/*++++++++++++++++ Updated Dummy data backend page +++++++++++*/

.pq-pagination .page-numbers li .page-numbers:focus {
	box-shadow: none;
	outline: 0;
	z-index: 2;
}

.pq-pagination .page-numbers li .page-numbers:not(:disabled):not(.disabled) {
	cursor: pointer
}

.pq-blog-post .pq-blog-contain .wp-block-comment-reply-link .comment-reply-link {
	font-size: 16px;
	line-height: 24px;
	font-family: var(--title-fonts);
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--primary-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
OWL Carousel
++++++++++++++++++++++++++++++++++++++++++++++++*/

.owl-carousel .owl-nav.disabled {
	display: none;
}

.owl-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	cursor: inherit;
}

.owl-carousel .owl-nav button.owl-prev {
	outline: none;
	text-align: center;
	text-indent: inherit;
	cursor: pointer;
	position: relative;
	font-size: 24px;
	width: 56px;
	height: 56px;
	line-height: 56px;
	background: var(--dark-color);
	padding: 0 !important;
	margin: 0 5px;
	border: none;
	color: var(--white-color);
}

.owl-carousel .owl-nav button.owl-next {
	outline: none;
	text-align: center;
	text-indent: inherit;
	cursor: pointer;
	position: relative;
	font-size: 24px;
	width: 56px;
	height: 56px;
	line-height: 56px;
	background: var(--dark-color);
	padding: 0 !important;
	margin: 0 5px;
	border: none;
	color: var(--white-color);
}

.owl-carousel .owl-nav button:hover {
	color: var(--white-color);
	background: var(--primary-color);
}


.owl-carousel .owl-nav button.owl-prev {
	margin-left: -130px;
}

.owl-carousel .owl-nav button.owl-next {
	margin-right: -130px;
}

/*++++++++++++++++ Dots +++++++++++*/

.owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-dots {
	margin-top: 30px;
	line-height: normal;
	position: relative;
	width: 100%;
	text-indent: inherit;
	text-align: center;
	cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot {
	box-shadow: none;
	outline: none;
	background: var(--grey-color);
	border: 1px solid var(--grey-color);
	display: inline-block;
	padding: 0;
	margin: 0px 5px;
	height: 15px;
	width: 15px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot span {
	display: none;
}

.owl-carousel .owl-dots .owl-dot:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
	opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
	opacity: 1;
}

/*+++++++++++++++++++++++++++++++++++
Section Title
+++++++++++++++++++++++++++++++++++++++*/
.pq-section-title.pq-style-1.text-center {
	padding: 0 15em;
	margin-bottom: 30px;
}

.pq-section-title.pq-style-1.text-center .pq-section-sub-title {
	padding: 0 30px;
}

.pq-section-title.pq-style-1 .pq-section-sub-title {
	font-family: var(--title-fonts);
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	position: relative;
	text-transform: uppercase;
	color: var(--primary-color);
	margin: 0 0 10px;
	display: inline-block;
	letter-spacing: 1px;
	padding-left: 40px;
}

.pq-section-title.pq-style-1 .pq-section-sub-title span.left-sep,
.pq-section-title.pq-style-1 .pq-section-sub-title span.right-sep {
	position: relative;
}

.pq-section-title.pq-style-1 .pq-section-sub-title span.left-sep:before,
.pq-section-title.pq-style-1.text-center .pq-section-sub-title span.right-sep:before {
	content: "";
	width: 20px;
	height: 2px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	left: -40px;
	background: var(--primary-color);
}

.pq-section-title.pq-style-1 .pq-section-sub-title span.left-sep:after,
.pq-section-title.pq-style-1.text-center .pq-section-sub-title span.right-sep:after {
	content: "";
	width: 3px;
	height: 10px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	left: -40px;
	background: var(--primary-color);
}

.pq-section-title.pq-style-1.text-center .pq-section-sub-title span.right-sep:before {
	left: inherit;
	right: -40px;
}

.pq-section-title.pq-style-1.text-center .pq-section-sub-title span.right-sep:after {
	left: inherit;
	right: -40px;
}

.pq-section-title.pq-style-1 .pq-section-sub-title img {
	display: none;
}

.pq-section-title.pq-style-1 .pq-section-main-title {
	font-weight: 600;
	font-size: 28px;
	line-height: 56px;
	z-index: 9;
	color: var(--dark-color);
	padding: 0;
	margin: 0 0;
	position: relative;
	display: block;
}

.pq-section-main-title-buynow {
	color: white;
}

.pq-section-title.pq-style-1 .pq-section-description {
	font-family: var(--body-fonts);
	font-size: 16px;
	font-weight: 400;
	z-index: 9;
	position: relative;
	margin: 10px 0 0 0;
}

.pq-sec-padding .pq-section-title.pq-style-1.text-center {
	padding: 0 5em;
}

.pq-sec-padding .pq-section-title.pq-style-1 .pq-section-main-title {
	font-size: 42px;
	line-height: 70px;
}

.pq-bg-dark .pq-section-title.pq-style-1 .pq-section-main-title {
	color: var(--white-color);
}

.pq-bg-dark .pq-section-title.pq-style-1 .pq-section-description {
	color: var(--white-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Breadcrumb
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-breadcrumb {
	background: var(--dark-color);
	color: var(--white-color);
	padding: 70px 0;
	position: relative;
	background-size: cover;
	background-position: center center;
	text-align: center;
}

.pq-breadcrumb {
	background-image: url(../images/breadcrumb/1.jpg) !important;
}

.pq-breadcrumb:before {
	content: "";
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	left: 0;
	top: 0;
	z-index: 1;
	position: absolute;
	opacity: 0.9;
}

.pq-breadcrumb-container {
	text-align: left;
	padding-top: 15px;
}

.pq-breadcrumb nav {
	position: relative;
	z-index: 9;
}

.pq-breadcrumb .pq-breadcrumb-title h1 {
	font-size: 56px;
	line-height: 64px;
	margin-bottom: 15px;
	text-align: left;
	color: var(--white-color);
	text-align: center;
}

.pq-breadcrumb-container .breadcrumb {
	padding: 0;
	margin: 0;
	justify-content: center;
}

.pq-breadcrumb-container .breadcrumb li {
	list-style-type: none;
	padding: 0px 8px;
	text-transform: capitalize;
}

.pq-breadcrumb-container .breadcrumb li a i {
	margin-right: 10px;
	color: var(--white-color);
}

.pq-breadcrumb-container .breadcrumb li.active {
	color: var(--primary-color);
	margin-right: 0;
}

.pq-breadcrumb-container .breadcrumb li a {
	color: var(--white-color);
}

.pq-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	content: "\f125";
	font-size: 14px;
	color: var(--white-color);
	font-family: "Ionicons";
	padding-right: 14px;
	float: none;
	opacity: 1;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Header
++++++++++++++++++++++++++++++++++++++++++++++++*/

.animated {
	-webkit-animation-duration: 1.25s;
	animation-duration: 1.25s;
}

.fadeInDown {
	animation-name: fadeInDown;
	transition: all 0.5s ease;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0)
	}

	to {
		opacity: 1;
		transform: none
	}
}

header#pq-header {
	position: relative;
	display: inline-block;
	width: 100%;
	clear: both;
	background: var(--white-color);
	z-index: 99;
}

header#pq-header.pq-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

/*+++++++++ Header Top Bar +++++++++*/
header#pq-header .pq-top-header {
	background: var(--dark-color);
	padding: 0;
	font-size: 14px;
}

header#pq-header .pq-header-social.tagline {
	color: var(--white-color);
	padding-top: 13px;
	display: block;
	font-family: var(--title-fonts);
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	line-height: 22px;
}

header#pq-header .pq-top-header .text-left .pq-header-social.text-left {
	color: var(--white-color);
	padding-top: 10px;
	display: inline-block;
}

header#pq-header .pq-top-header a.pq-header-contact {
	color: var(--white-color);
	padding: 10px 0;
	display: inline-block;
	margin-right: 10px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	padding-right: 15px;
	font-family: var(--title-fonts);
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
}

header#pq-header .pq-top-header a.pq-header-contact i {
	margin-right: 5px;
}

header#pq-header .pq-top-header .pq-header-contact.text-right ul {
	float: right;
}

header#pq-header .pq-top-header .pq-header-contact ul {
	margin: 0;
	padding: 0;
}

header#pq-header .pq-top-header .pq-header-contact ul li {
	list-style: none;
	display: inline-block;
	color: var(--white-color);
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	padding: 10px 30px;
	float: left;
}

header#pq-header .pq-top-header .pq-header-contact ul li:last-child {
	margin-right: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header#pq-header .pq-top-header .pq-header-contact ul li i {
	margin-right: 8px;
	color: var(--primary-color);
}

header#pq-header .pq-top-header .pq-header-contact ul li a {
	color: var(--white-color);
}

header#pq-header .pq-top-header .pq-header-contact ul li a:hover {
	color: var(--white-color);
	background: transparent;
}

header#pq-header .pq-top-header .text-right .pq-header-social ul,
header#pq-header .pq-top-header .pq-header-social.text-right ul {
	float: right;
}

header#pq-header .pq-top-header .pq-header-social ul {
	margin: 0;
	padding: 0;
}

header#pq-header .pq-top-header .pq-header-social ul li {
	list-style: none;
	display: inline-block;
	float: left;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header#pq-header .pq-top-header .pq-header-social ul li a {
	color: var(--white-color);
	padding: 10px 20px;
	display: inline-block;
}

header#pq-header .pq-top-header ul li a:hover {
	color: var(--white-color);
	background: var(--primary-color)
}

header#pq-header .pq-top-header .pq-header-social ul li:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/*++++++++ Logo +++++++++++*/

header#pq-header .pq-bottom-header .navbar .navbar-brand {
	line-height: 80px;
}

header#pq-header .pq-bottom-header .navbar .navbar-brand img {
	height: 51px;
}

/*++++++ Header Navbar Bar +++++*/

header#pq-header .pq-bottom-header {
	min-height: 90px;
	transition: all 0.8s ease;
}

header#pq-header .pq-bottom-header .navbar {
	padding: 0;
}

header#pq-header .pq-bottom-header .navbar .pq-menu-contain {
	display: inline-block;
	width: 100%;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav {
	float: right;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 14px;
	color: var(--dark-color);
	line-height: 90px;
	font-weight: 400;
	font-family: var(--title-fonts);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li:last-child {
	margin-right: 0;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li a {
	color: var(--dark-color);
	font-size: 14px;
	/* text-transform: uppercase; */
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 1px;
	font-family: "Raleway", serif;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li a:focus,
header#pq-header .pq-bottom-header .navbar .navbar-nav li a:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current-menu-item a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current_page_item a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current-menu-ancestor a {
	color: var(--primary-color);
}

/*++++++++ Sub Menu Bar ++++++++*/

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu {
	display: none;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu {
	display: block;
	background: var(--white-color);
	position: absolute;
	top: 100%;
	left: 0;
	padding-left: 0;
	display: inline-block;
	width: 220px;
	z-index: 999;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li {
	line-height: 2;
	padding: 0;
	margin: 0;
	display: inline-block;
	width: 100%;
	color: var(--secondary-color);
	transition: all 0.5s ease;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li i {
	margin-left: 10px;
	font-size: 12px;
	transition: all 0.5s ease;
	color: var(--dark-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .pq-submenu-icon,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current-menu-item .pq-submenu-icon {
	color: var(--dark-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a {
	line-height: 2;
	text-transform: capitalize;
	padding: 10px 15px;
	display: inline-block;
	width: 100%;
	color: var(--dark-color);
	font-size: 15px;
	font-weight: 400;
	position: relative;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:focus,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item>a {
	background: var(--primary-color);
	color: var(--white-color);

}

/*+++++++ Navigation Sub Menu +++++++++++++*/
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li>.sub-menu {
	display: none;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
	position: absolute;
	top: 0;
	left: 100%;
	display: block;
	background: var(--white-color);
	padding-left: 0;
	display: inline-block;
	width: 200px;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.pq-submenu-icon {
	opacity: 1;
	position: absolute;
	top: 12px;
	right: 15px;
	line-height: 2;
	font-size: 12px;
	color: var(--dark-color);
	-moz-transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover>a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover>.pq-submenu-icon {
	color: var(--white-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu>li.current-menu-ancestor {
	background: var(--primary-color);
	color: var(--white-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu>li.current-menu-ancestor>a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu>li.current-menu-ancestor.menu-item-has-children .pq-submenu-icon {
	color: var(--white-color);
	background: var(--primary-color);
}

/*+++++++++++++ Header Default +++++++++++++++++*/

header#pq-header.pq-header-default .pq-top-header a.pq-header-contact {
	border: none;
}

header#pq-header.pq-header-default .pq-bottom-header.pq-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	background: var(--white-color);
}

header#pq-header.pq-header-default .pq-btn-container {
	margin: 0 0 0 30px;
}

header#pq-header.pq-header-default .pq-btn-container .pq-button span {
	margin-right: 0;
}

header#pq-header.pq-header-default .pq-btn-container .pq-button:hover {
	background: var(--dark-color);
}

header#pq-header.pq-header-default .pq-toggle-btn {
	padding: 0;
	margin: 0 0 0 30px;
}

header#pq-header.pq-header-default .pq-toggle-btn a {
	position: relative;
	display: inline-block;
	padding: 0;
	font-size: 38px;
	background: var(--primary-color);
	color: var(--white-color);
	line-height: 52px;
	width: 52px;
	height: 52px;
	text-align: center;
}

header#pq-header.pq-header-default .pq-menu-search-block {
	margin: 0 0 0 30px;
}

header#pq-header.pq-header-default .pq-bottom-header .navbar .navbar-nav>li>a {
	position: relative;
}

header#pq-header.pq-header-default .pq-bottom-header .navbar .navbar-nav>li:hover>a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li a:focus {
	color: var(--dark-color);
}

header#pq-header.pq-header-default .pq-bottom-header .navbar .navbar-nav>li.current-menu-ancestor>a,
header#pq-header.pq-header-default .pq-bottom-header .navbar .navbar-nav>li.current-menu-item>a {
	color: var(--dark-color);
}

/**top header 1**/

header#pq-header .pq-top-header.top-style-1 .pq-header-contact ul li {
	border: none;
	padding: 10px 0;
}

header#pq-header .pq-top-header.top-style-1 .pq-header-contact ul li:last-child {
	border: none;
}

header#pq-header .pq-top-header.top-style-1 .pq-header-contact ul li+li {
	padding-left: 30px;
}

header#pq-header .pq-top-header.top-style-1 .pq-header-social ul li+li {
	padding-left: 30px;
}

header#pq-header .pq-top-header.top-style-1 .pq-header-social ul li a {
	padding: 10px 0;
}

header#pq-header .pq-top-header.top-style-1 .pq-header-social ul li:last-child a {
	padding-right: 0;
}

header#pq-header .pq-top-header.top-style-1 .pq-header-social ul li a:hover {
	color: var(--primary-color);
	background: transparent;
}

header#pq-header .pq-top-header.top-style-1 .pq-header-social ul li {
	border: none;
}

/**header 1**/

header#pq-header.pq-header-style-1 {
	/* position: absolute; */
	background: #0a1d35;
}

header#pq-header.pq-header-style-1 .pq-top-header {
	padding: 0 30px;
}

header#pq-header.pq-header-style-1 .pq-bottom-header {
	padding: 0px 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: #0a1d358f;
}

header#pq-header.pq-header-style-1 .pq-bottom-header .navbar .navbar-nav {
	float: none;
	justify-content: flex-end;
}

header#pq-header.pq-header-style-1 .pq-bottom-header .navbar .navbar-nav li a {
	color: var(--white-color);
}

header#pq-header.pq-header-style-1 .pq-bottom-header .navbar .navbar-nav li a:hover {
	color: var(--primary-color);
}

header#pq-header.pq-header-style-1 .pq-header-info-box {
	display: inline-flex;
	align-items: center;
}

header#pq-header.pq-header-style-1 .pq-menu-search-block {
	margin-right: 30px;
}

header#pq-header.pq-header-style-1 .pq-menu-search-block a {
	color: var(--white-color);
}

header#pq-header.pq-header-style-1 .pq-menu-search-block a:hover {
	color: var(--primary-color);
}

header#pq-header.pq-header-style-1 .pq-btn-container a.pq-button {
	background: var(--primary-color);
	margin-left: 19px;
}

header#pq-header.pq-header-style-1 .pq-btn-container a.pq-button:hover {
	background: var(--white-color);
	color: var(--dark-color);
}

header#pq-header.pq-header-style-1 .pq-bottom-header.pq-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	background: var(--dark-color);
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header#pq-header.pq-header-style-1 .pq-bottom-header .navbar .navbar-nav li i,
header#pq-header.pq-header-style-1 .pq-bottom-header .navbar .navbar-nav li:hover .pq-submenu-icon,
header#pq-header.pq-header-style-1 .pq-bottom-header .navbar .navbar-nav li.current-menu-item .pq-submenu-icon {
	color: var(--primary-color);
}

header#pq-header.pq-header-style-1 .pq-bottom-header.pq-header-sticky .pq-header-info-box a.pq-button:hover {
	background: var(--white-color);
	color: var(--dark-color);
}

/**header 2**/
header#pq-header.pq-header-style-2 {
	position: absolute;
}

header#pq-header.pq-header-style-2 .pq-top-header {
	padding: 0 30px;
}

header#pq-header.pq-header-style-2 .pq-bottom-header {
	padding: 0 30px;
}

header#pq-header.pq-header-style-2 .pq-bottom-header .navbar .navbar-nav {
	float: none;
	justify-content: center;
}

header#pq-header.pq-header-style-2 .pq-bottom-header.pq-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	background: var(--white-color);
}

header#pq-header.pq-header-style-2 .pq-menu-search-block {
	margin-right: 30px;
}

header#pq-header.pq-header-style-2 .pq-bottom-header .pq-btn-container .pq-button {
	background: var(--primary-color);
}

header#pq-header.pq-header-style-2 .pq-bottom-header .pq-btn-container .pq-button:hover {
	background: var(--dark-color);
}

/*+++++++++++++header 3 ++++++++++++++*/
header#pq-header.pq-header-style-3 .pq-bottom-header.pq-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	background: var(--white-color);
}

header#pq-header.pq-header-style-3 .pq-bottom-header .navbar .navbar-nav {
	float: none;
	justify-content: center;
}

header#pq-header.pq-header-style-3 .pq-bottom-header .pq-header-info-box {
	display: inline-flex;
	align-items: center;
	margin-left: 30px;
}

header#pq-header.pq-header-style-3 .pq-bottom-header .pq-header-info-box .info-icon i {
	font-size: 34px;
	color: var(--primary-color);
}

header#pq-header.pq-header-style-3 .pq-bottom-header .pq-header-info-box .info-icon-content h4 {
	font-size: 20px;
	line-height: 22px;
}

header#pq-header.pq-header-style-3 .pq-bottom-header .pq-header-info-box .info-icon-content {
	padding-left: 15px;
}

header#pq-header.pq-header-style-3 .pq-bottom-header .pq-header-info-box .info-icon-content p {
	margin-bottom: 0;
	font-size: 14px;
}

/*+++++++++++++header 4 ++++++++++++++*/

header#pq-header.pq-header-style-4 {
	position: absolute;
}

header#pq-header.pq-header-style-4 .pq-top-header {
	padding: 0 30px;
}

header#pq-header.pq-header-style-4 .pq-bottom-header {
	padding: 0 30px;
}

header#pq-header.pq-header-style-4 .pq-bottom-header .navbar .navbar-nav {
	float: none;
	margin-left: 90px;
}

header#pq-header.pq-header-style-4 .pq-toggle-btn {
	line-height: 75px;
	padding: 24px 10px;
	background: var(--primary-color);
	color: var(--white-color);
	cursor: pointer;
	margin-left: 30px;
	position: relative;
	transition: all 0.5s ease;
	border-radius: 5px;
}

header#pq-header.pq-header-style-4 .pq-toggle-btn:hover {
	background: var(--dark-color);
	color: var(--white-color);
}

header#pq-header.pq-header-style-4 .pq-toggle-btn a:before,
header#pq-header.pq-header-style-4 .pq-toggle-btn a:after {
	transform-origin: 50% 0%;
}

header#pq-header.pq-header-style-4 .pq-toggle-btn a {
	position: relative;
	display: block;
	top: 0;
	width: 30px;
	height: 2px;
	margin: 0 auto;
	border: none;
	cursor: pointer;
	background: currentColor;
	color: inherit;
	font-size: 0;
	transition: 0.35s;
}

header#pq-header.pq-header-style-4 .pq-toggle-btn a:before,
header#pq-header.pq-header-style-4 .pq-toggle-btn a:after {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 0.35s;
}

header#pq-header.pq-header-style-4 .pq-toggle-btn a:before {
	transform: translate(-50%, -8px);
}

header#pq-header.pq-header-style-4 .pq-toggle-btn a:after {
	transform: translate(-50%, 8px);
}

header#pq-header.pq-header-style-4 .pq-bottom-header .navbar-toggler {
	background: var(--primary-color);
	color: var(--white-color);
}

header#pq-header.pq-header-style-4 .pq-bottom-header .navbar-toggler:hover {
	background: var(--dark-color);
	color: var(--white-color);
}





header#pq-header.pq-header-style-4 .pq-bottom-header.pq-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	background: var(--white-color);
}

/*++++++++++++++++ Header Search +++++++++++*/

header#pq-header .pq-menu-search-block a {
	color: var(--dark-color);
	font-size: 22px;
	line-height: 30px;
	text-align: center;
	display: inline-block;
}

.pq-menu-search-block .offcanvas {
	position: fixed;
	z-index: 1050;
	background-color: var(--white-color) !important;
	padding: 45px;
	height: auto;
	bottom: inherit;
	transform: translateY(-100%) !important;
	transition: all 0.5s ease;
	overflow: hidden;
}

.fade {
	transition: opacity 0.5s linear;
}

.pq-menu-search-block .offcanvas.show {
	display: block;
	transform: translateY(0%) !important;
}

.pq-menu-search-block .offcanvas .btn-close {
	opacity: 1;
	background: none;
	color: var(--white-color);
	font-size: 0;
	position: absolute;
	right: -60px;
	top: 50%;
	transform: translateY(-50%);
	line-height: normal;
	padding: 0;
	box-shadow: none;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-weight: 400;
}

.pq-menu-search-block .offcanvas .btn-close:before {
	font-size: 14px;
	content: "\e646";
	font-family: 'themify';
}

.pq-menu-search-block .offcanvas .btn-close:after {
	content: "";
	background: var(--dark-color);
	width: 40px;
	height: 40px;
	line-height: 40px;
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.5s ease;
	border-radius: 100%;
	z-index: -1;
}

.pq-menu-search-block .offcanvas .btn-close:hover:after {
	background: var(--primary-color);
}

.pq-menu-search-block .offcanvas .btn-close:hover {
	color: var(--white-color);
}

.pq-menu-search-block .offcanvas .search-form {
	margin: 0 auto;
	width: 60%;
	position: relative;
}

.pq-menu-search-block .offcanvas .search-form label {
	display: block;
}

.pq-menu-search-block .offcanvas .search-form .search-field {
	border: none;
	color: var(--secondary-color);
	background: var(--grey-color);
	padding-left: 30px;
	margin: 0;
}

.pq-menu-search-block .offcanvas .search-form .search-submit {
	background: transparent;
	border: none;
	padding: 0;
	font-size: 20px;
	position: absolute;
	text-align: center;
	color: var(--dark-color);
	line-height: 54px;
	height: 54px;
	width: 54px;
	top: 0;
	right: 0;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.pq-menu-search-block .offcanvas .search-form .search-submit:before {
	content: "\e610";
	font-family: 'themify';
	font-weight: 500;
}

.pq-menu-search-block .offcanvas .search-form #search-clear {
	display: none;
}

.pq-menu-search-block .offcanvas .search-form input.search-field[type="search"]::-webkit-search-decoration,
.pq-menu-search-block .offcanvas .search-form input.search-field[type="search"]::-webkit-search-cancel-button,
.pq-menu-search-block .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-button,
.pq-menu-search-block .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
}

.pq-menu-search-block .offcanvas .search-form .search-field:focus {
	color: var(--dark-color);
}

.pq-menu-search-block .offcanvas .search-form .search-submit {
	background: transparent;
	color: var(--dark-color) !important;
}

.pq-menu-search-block .offcanvas .search-form .search-submit:hover {
	color: var(--primary-color) !important;
}

/*+++++++++++++++++++++++++++++++++++++++++
Sidebar Menu
++++++++++++++++++++++++++++++++++++++++*/
.pq-background-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	z-index: 100;
	opacity: 0.8;
	display: none;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.pq-siderbar-open .pq-background-overlay {
	display: block;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.pq-siderbar-open .pq-sidebar {
	right: 0;
	opacity: 1;
}

.pq-sidebar {
	width: 410px;
	background: var(--white-color);
	opacity: 0;
	display: block;
	position: fixed;
	top: 0;
	right: -100%;
	height: 100%;
	z-index: 101;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.pq-sidebar .pq-close-btn .pq-close {
	position: absolute;
	left: -50px;
	background: var(--primary-color);
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	color: var(--white-color);
	top: 90px;
	font-size: 24px;
}

.pq-sidebar .pq-close-btn .pq-close:hover {
	background: var(--dark-color);
	color: var(--white-color);
}

.pq-sidebar-block {
	padding: 60px 30px 30px 30px;
	height: 100%;
}

.pq-sidebar-header .pq-sidebar-logo {
	margin-bottom: 15px;
	height: 60px;
}

.pq-sidebar h5,
.pq-sidebar h4 {
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 20px;
}

.pq-sidebar .pq-foote-recent-post .pq-foote-recent-post-info .pq-post-date:hover {
	color: var(--primary-color);
}

.pq-sidebar .pq-sidebar-form span.wpcf7-form-control-wrap {
	margin-bottom: 30px;
	display: block;
}

.pq-sidebar .pq-sidebar-form .wpcf7-form-control {
	float: none;
}

.pq-sidebar ul {
	margin: 0;
	padding: 0;
}

.pq-sidebar ul li {
	list-style: none;
	margin: 0;
	padding: 0 0 10px;
}

.pq-sidebar ul li a {
	color: var(--dark-color);
}

.pq-sidebar-contact {
	margin-top: 30px;
	display: inline-block;
	width: 100%;
}

.pq-sidebar-contact li {
	display: flex;
	align-items: flex-start;
}

.pq-sidebar-contact li i {
	line-height: 2;
	color: var(--dark-color);
}

.pq-sidebar-contact li span {
	margin-left: 15px;
	flex: 1;
}

.pq-sidebar-contact ul li a {
	color: var(--secondary-color);
}

.pq-sidebar-contact ul li a:hover {
	color: var(--dark-color);
}

.pq-sidebar-social ul {
	margin-top: 30px;
	display: inline-block;
	width: 100%;
}

.pq-sidebar-social ul li {
	display: inline-block;
	padding: 0;
	margin: 0;
	margin-right: 5px;
}

.pq-sidebar-social ul li:last-child {
	margin-right: 0;
}

.pq-sidebar-social ul li a {
	background: var(--grey-color);
	color: var(--dark-color);
	width: 50px;
	height: 50px;
	line-height: 50px;
	display: inline-block;
	text-align: center;
	position: relative;
	border-radius: 5px;
}

.pq-sidebar-social ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Footer
++++++++++++++++++++++++++++++++++++++++++++++++*/

footer#pq-footer.style-1 {
	margin-top: 60px;
}

footer#pq-footer {
	background: var(--dark-color);
	display: inline-block;
	width: 100%;
	color: var(--white-color);
	float: left;
	position: relative;
}

footer#pq-footer:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 100%;
	opacity: 0.05;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../images/background-images/footer-bg.jpg);
}

footer#pq-footer .pq-footer-top {

	position: relative;
	z-index: 9;
}

footer#pq-footer .widget:first-child {
	margin-bottom: 45px;
}

/*======= Footer Top list =======*/

footer#pq-footer .pq-footer-bottom-list {
	padding: 0px 0 50px 0;
	position: relative;
	z-index: 9;
}

footer#pq-footer .pq-footer-bottom-list .row {
	background: transparent;
}

footer#pq-footer .pq-footer-img {
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

footer#pq-footer .pq-footer-bottom-list .row .col-lg-4:last-child {
	border-right: none;
}

footer#pq-footer .pq-footer-bottom-list .pq-footer-items:before {
	position: absolute;
	right: 20px;
	top: 50%;
	content: "";
	background: rgba(0, 0, 0, 0.1);
	width: 1px;
	height: 45%;
	transform: translateY(-50%);
}

footer#pq-footer .pq-footer-bottom-list .row .col-lg-4:last-child .pq-footer-items:before {
	display: none;
}

footer#pq-footer .pq-footer-top .pq-footer-bottom-list .pq-footer-items {
	padding: 15px 0;
	align-items: center;
	display: flex;
	justify-content: space-between;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	/* padding-bottom: 60px; */
}


footer#pq-footer .pq-footer-top .pq-footer-bottom-list .pq-footer-items h5,
footer#pq-footer .pq-footer-top .pq-footer-bottom-list .pq-footer-items a {
	color: var(--white-color);
}

footer#pq-footer .pq-footer-top .pq-footer-bottom-list .pq-footer-items h5 {
	font-size: 20px;
	line-height: 32px;
}

footer#pq-footer .pq-footer-top .pq-footer-bottom-list .pq-footer-items a:hover {
	color: var(--primary-color);
}

footer#pq-footer .pq-footer-top .pq-footer-bottom-list .pq-footer-items .pq-footer-items-info {
	margin-left: 15px;
}

footer#pq-footer .pq-footer-top .pq-footer-bottom-list .pq-footer-items .pq-footer-items-info a,
footer#pq-footer .pq-footer-top .pq-footer-bottom-list .pq-footer-items .pq-footer-items-info span {
	color: var(--secondary-color);
}

footer#pq-footer .pq-footer-logo img {
	height: 60px;
	width: auto;
}

footer#pq-footer .pq-footer-top .pq-footer-usefull {
	padding-left: 30px;
}

footer#pq-footer .pq-footer-top .pq-footer-address {
	padding-right: 30px;
}


footer#pq-footer .widget .menu-useful-links-container ul.menu li a {
	padding-left: 0;
}

/*+++++++++++ Subscribe++++++++++++++++*/
.pq-sign-up-form {
	position: relative;
}

.pq-sign-up-form label {
	display: block;
}

.pq-sign-up-form input.form-control {
	background: var(--white-color);
	border: none;
	color: var(--dark-color);
}

.pq-subscribe-from input.form-control::-webkit-input-placeholder {
	color: var(--dark-color);
}

.pq-subscribe-from .mc4wp-form-fields p {
	margin-bottom: 0;
}

.pq-subscribe-from .mc4wp-form-fields i {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 30px;
	transition: all 0.5s ease;
}

.pq-subscribe-from input.submit:hover+i {
	color: var(--white-color);
}

.pq-subscribe-from input.submit {
	padding: 0;
	width: 45px;
	height: 45px;
	position: absolute;
	right: 5px;
	z-index: 9;
	top: 5px;
	background: var(--primary-color);
	font-size: 14px;
}

.pq-subscribe-from input.submit:hover {
	background: var(--dark-color);
}

footer#pq-footer .widget.opening-hours,
footer#pq-footer .widget.opening-hours:first-child {
	margin-bottom: 5px;
}

footer#pq-footer .widget.opening-hours:last-child li {
	margin-bottom: 0;
	border: none;
	padding: 0;
}

footer#pq-footer .widget.opening-hours ul.pq-time li {
	color: var(--white-color);
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 10px;
	margin-bottom: 10px;
}

footer#pq-footer .pq-copyright-footer {
	padding: 15px 0;
	position: relative;
	background: var(--primary-color);
}

footer#pq-footer .pq-copyright-footer .pq-copyright {
	display: block;
	color: var(--white-color);

}

footer#pq-footer .pq-copyright-footer .pq-copyright a {
	color: var(--white-color);
}

footer#pq-footer .pq-copyright-footer .pq-copyright a:hover {
	color: var(--white-color);
	text-decoration: underline;
}

/*===== Footer Widget =====*/
footer#pq-footer .widget {
	background: transparent;
	padding: 0;
	box-shadow: none;
	border: none;
	margin-bottom: 45px;
}

footer#pq-footer .widget .footer-title {
	margin-bottom: 30px;
	padding: 0;
	font-size: 26px;
	position: relative;
	line-height: 34px;
}


footer#pq-footer .widget ul#menu-service-menu-footer li a {
	padding-left: 24px;
}

footer#pq-footer .widget ul#menu-service-menu-footer li a:before {
	content: "";
	position: absolute;
	left: 0;
	font-size: 10px;
	top: 10px;
	color: inherit;
	line-height: normal;
	color: var(--primary-color);
	width: 15px;
	height: 2px;
	background: var(--primary-color);
}

.pq-footer-recent-post {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 15px;
}

.pq-footer-recent-post:last-child {
	margin-bottom: 0;
	border: none;
	padding: 0;
}

.pq-footer-recent-post .pq-footer-recent-post-media {
	margin-right: 15px;
}

.pq-footer-recent-post .pq-footer-recent-post-media img {
	width: 80px;
	height: 80px;
	border-radius: 5px;
}

.pq-footer-recent-post .pq-footer-recent-post-info {
	flex: 1;
	align-self: center;
}

.pq-footer-recent-post .pq-footer-recent-post-info .pq-post-date {
	font-family: var(--title-fonts);
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--primary-color);
}

.pq-footer-recent-post .pq-footer-recent-post-info .pq-post-date i {
	margin-right: 5px;
}

.pq-footer-recent-post .pq-footer-recent-post-info h6 {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.pq-footer-recent-post .pq-footer-recent-post-info h6 a:hover {
	color: var(--primary-color);
}

footer#pq-footer .pq-foote-recent-post {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 15px;
}

footer#pq-footer .pq-foote-recent-post:last-child {
	border: none;
	padding: 0;
}

footer#pq-footer .widget ul li {
	margin: 0 0 15px 0;
}

footer#pq-footer .widget ul li:last-child {
	margin-bottom: 0;
}

footer#pq-footer .widget ul.pq-contact>li a {
	padding: 0;
}

footer#pq-footer .widget ul.pq-contact>li {
	display: flex;
	align-items: center;
}

footer#pq-footer .widget ul.pq-contact>li i {
	display: none;
}

footer#pq-footer .widget ul.pq-contact li a:before {
	display: none;
}

footer#pq-footer .widget ul.pq-contact>li i {
	margin-right: 15px;
	color: var(--primary-color);
}

footer#pq-footer .widget ul li a:hover {
	color: var(--primary-color);
}

/*=========*/
footer#pq-footer .widget ul.menu li a,
footer#pq-footer .pq-widget-menu .pq-service li a,
footer#pq-footer .widget ul li a {
	color: var(--white-color);
}

footer#pq-footer .widget ul.menu li,
footer#pq-footer .pq-widget-menu .pq-service li,
footer#pq-footer .widget ul li {
	color: var(--white-color);
}

footer#pq-footer .pq-footer-social ul li a {
	padding: 0;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Service Box
++++++++++++++++++++++++++++++++++++++++++++++++*/
.pq-service-box.pq-style-1 {
	position: relative;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	overflow: hidden;
	min-height: 380px;
	padding: 45px 30px;
	border-radius: 5px;
}

.pq-service-box.pq-style-1 .pq-service-icon i {
	font-size: 64px;
	line-height: 72px;
	color: var(--primary-color);
	position: relative;
	z-index: 2;
}

.pq-service-box.pq-style-1.active .pq-service-icon i {
	color: var(--white-color);
}

.pq-service-box.pq-style-1 .pq-service-box-title {
	color: var(--white-color);
}

.pq-service-box.pq-style-1:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white-color);
	display: inline-block;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	z-index: 1;
	opacity: 0.05;
}

.pq-service-box.pq-style-1.active:before {
	background: var(--primary-color);
	opacity: 1;
}

.pq-service-box.pq-style-1 .pq-service-box-info {
	padding: 30px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: inline-block;
	margin: 0px;
	z-index: 9;
	transform: translateY(calc(130px - 15px));
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.pq-service-box.pq-style-1 .pq-service-number {
	color: var(--white-color);
	font-size: 32px;
	line-height: 40px;
	font-weight: 500;
	position: absolute;
	top: 30px;
	left: 30px;
}

.pq-service-box.pq-style-1 .pq-service-box-info .pq-service-box-icon {
	margin-top: 20px;
	margin-bottom: 20px;
}

.pq-service-box.pq-style-1 .pq-service-box-info .pq-service-box-subtitle {
	font-family: var(--title-fonts);
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 5px;
	color: var(--grey-color);
}

.pq-service-box.pq-style-1 .pq-service-box-info p {
	margin-bottom: 15px;
	margin-top: 10px;
	color: var(--white-color);
	opacity: 0;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.pq-service-box.pq-style-1 .pq-service-box-info .pq-button {
	opacity: 0;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	color: var(--white-color);

}

.pq-service-box.pq-style-1.active .pq-service-box-info {
	transform: translateY(0);
}

.pq-service-box.pq-style-1.active .pq-service-box-info p,
.pq-service-box.pq-style-1.active .pq-service-box-info .pq-button {
	opacity: 1;
}

.pq-service-box-info h5 {
	font-size: 20px;
}

/* style 2 */

.pq-service-box.pq-style-2 {
	background: var(--white-color);
}

.pq-service-box.pq-style-2 .pq-service-icon i {
	font-size: 64px;
	line-height: 72px;
	color: var(--dark-color);
	position: relative;
	z-index: 2;
	display: inline-block;
	margin-bottom: 30px;
}

.pq-service-box-slider .active.center .pq-service-box.pq-style-2 .pq-service-icon i {
	color: var(--primary-color);
}

.pq-service-box.pq-style-2 .pq-service-number {
	position: absolute;
	font-size: 62px;
	line-height: 70px;
	right: 30px;
	top: 30px;
	opacity: 0.1;
	font-style: normal;
	text-transform: unset;
	font-weight: 700;
}

.pq-service-box.pq-style-2 .pq-service-box-info {
	padding: 30px;

}

.pq-service-box.pq-style-2 .pq-service-box-title {
	margin-bottom: 10px;
	font-size: 10px;
	line-height: 36px;
}

.pq-service-box-slider .active.center .pq-service-box.pq-style-2 .pq-service-box-title {
	color: var(--primary-color);
}

.pq-service-box.pq-style-2 .pq-service-box-description {
	margin-bottom: 0;
}

.pq-service-box.pq-style-2 .pq-service-img {
	overflow: hidden;
}

.pq-service-box.pq-style-2 .pq-service-img img {
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.pq-service-box.pq-style-2:hover .pq-service-img img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.pq-service-box-slider.pq-style-2 .owl-carousel .owl-dots .owl-dot {
	background: #0A1D3552;
}

.pq-service-box-slider.pq-style-2 .owl-carousel .owl-dots .owl-dot.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

/* style 3 */

.pq-service-box.pq-style-3 {
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.pq-service-box.pq-style-3 .pq-service-icon {
	display: inline-block;
	margin-bottom: 30px;
}

.pq-service-box.pq-style-3 .pq-service-icon i {
	font-size: 64px;
	line-height: 72px;
	color: var(--primary-color);
	position: relative;
	z-index: 2;
	transition: all 0.5s ease;
}

.pq-service-box.pq-style-3 .pq-service-box-description {
	margin-top: 10px;
}

.pq-service-box.pq-style-3 .pq-btn-container {
	margin-top: 30px;
}

.pq-service-bg .pq-service-box.pq-style-3 {
	padding: 45px 30px;
	border-radius: 5px;
	background-color: var(--grey-color);
	border-right: none;
}

.pq-service-bg .pq-service-box.pq-style-3 .pq-service-icon {
	transition: all 0.5s ease;
}

.pq-service-bg .pq-service-box.pq-style-3:hover .pq-service-icon {
	transform: rotateY(180deg);
}

.pq-service-bg .pq-service-box.pq-style-3 .pq-service-box-title {
	font-size: 26px;
	line-height: 34px;
}

.pq-service-bg .pq-service-box.pq-style-3 .pq-service-box-description {
	margin-top: 10px;
	margin-bottom: 0;
}

.pq-service-bg .pq-service-box.pq-style-3 .pq-btn-container {
	margin-top: 20px;
}

.pq-service-box.pq-style-4 {
	display: grid;
	align-items: center;
	justify-content: center;
	grid-template-columns: 0.4fr 2.8fr 2.8fr 0.6fr;
	padding: 30px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pq-service-box-4-list .item:first-child .pq-service-box.pq-style-4 {
	padding-top: 0;
}

.pq-service-box.pq-style-4 .pq-service-icon {
	margin-right: 30px;
}

.pq-service-box.pq-style-4 .pq-service-icon i {
	font-size: 64px;
	line-height: 72px;
	color: var(--primary-color);
	position: relative;
	z-index: 2;
	transition: all 0.5s ease;
}

.pq-service-box.pq-style-4 .pq-service-img {
	position: relative;
}

.pq-service-box.pq-style-4 .pq-service-img img {
	position: absolute;
	width: 250px;
	left: 15px;
	right: 0;
	margin: 0 auto;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease;
	transform: translateY(-10px);
	border-radius: 5px;
}

.pq-service-box.pq-style-4:hover .pq-service-img img,
.pq-service-box.pq-style-4.active .pq-service-img img {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}

.pq-service-box.pq-style-4 .pq-btn-container {
	text-align: right;
}

.pq-service-box.pq-style-4 .pq-btn-container .pq-button.pq-button-icon .pq-button-text {
	display: none;
}

.pq-service-box.pq-style-4:hover .pq-btn-container .pq-button.pq-button-icon,
.pq-service-box.pq-style-4.active .pq-btn-container .pq-button.pq-button-icon {
	transform: translateX(5px);
}

.pq-service-box.pq-style-4:hover .pq-btn-container .pq-button.pq-button-icon i,
.pq-service-box.pq-style-4.active .pq-btn-container .pq-button.pq-button-icon i {
	color: var(--primary-color);
}

.pq-service-box.pq-style-5 {
	padding: 45px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pq-service-box-5-list .item:first-child .pq-service-box.pq-style-5 {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pq-service-box.pq-style-5 .pq-service-img {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 0;
	transition: all 0.5s ease;
	transform: translateY(-50%);
}

.pq-service-box.pq-style-5:hover .pq-service-img,
.pq-service-box.pq-style-5.active .pq-service-img {
	opacity: 1;
}

.pq-service-box.pq-style-5 .pq-service-img:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	opacity: 0.8;
}

.pq-service-box.pq-style-5 .pq-service-left,
.pq-service-box.pq-style-5 .pq-btn-container {
	position: relative;
	z-index: 1;
}

.pq-service-box.pq-style-5 .pq-service-number {
	width: 70px;
	height: 70px;
	line-height: 70px;
	display: inline-block;
	font-size: 22px;
	color: var(--white-color);
	border-radius: 100%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
	font-family: var(--title-fonts);
	font-weight: 600;
	letter-spacing: 1px;
}

.pq-service-box.pq-style-5 .pq-service-box-title {
	color: var(--white-color);
	display: inline-block;
	margin-left: 30px;
	font-size: 26px;
	line-height: 34px;
}

.pq-service-box.pq-style-5 .pq-button.pq-button-icon {
	font-size: 20px;
}

.pq-service-box.pq-style-5 .pq-button.pq-button-icon .pq-button-text {
	display: none;
}

.pq-service-box.pq-style-5 .pq-button.pq-button-icon i {
	color: var(--white-color);
}

.pq-service-box-6-list .item:first-child .pq-service-box.pq-style-6 {
	padding-top: 0;
}

.pq-service-box.pq-style-6 {
	display: grid;
	padding: 30px 0;
	grid-template-columns: 0.6fr 0.8fr 1.6fr 0.4fr;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	align-items: center;
}

.pq-service-box.pq-style-6 .pq-service-icon {
	width: 90px;
	height: 90px;
	line-height: 90px;
	background: var(--grey-color);
	color: var(--dark-color);
	text-align: center;
	border-radius: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s ease;
}

.pq-service-box.pq-style-6:hover .pq-service-icon,
.pq-service-box.pq-style-6.active .pq-service-icon {
	background: var(--primary-color);
	color: var(--white-color);
}

.pq-service-box.pq-style-6 .pq-service-icon i {
	font-size: 48px;
	line-height: 56px;
}

.pq-service-box.pq-style-6 .pq-service-description {
	margin-bottom: 0;
}

.pq-service-box.pq-style-6 .pq-btn-container {
	text-align: right;
}

.pq-service-box.pq-style-6 .pq-button.pq-button-icon {
	background: var(--white-color);
	transition: all 0.5s ease;
	font-size: 24px;
}

.pq-service-box.pq-style-6:hover .pq-button.pq-button-icon,
.pq-service-box.pq-style-6.active .pq-button.pq-button-icon {
	transform: translateX(5px);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Video Popup
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-popup-video-block.pq-popup-style-1 .pq-video-icon a {
	margin: auto;
	text-decoration: none;
	color: var(--primary-color);
	font-size: 28px;
	width: 130px;
	height: 130px;
	line-height: 120px;
	text-align: center;
	display: inline-block;
	border-radius: 100%;
	border: 2px solid var(--primary-color);
	transition: 0.5s ease-in-out;
}

.pq-popup-video-block.pq-popup-style-1:hover .pq-video-icon a {
	color: var(--primary-color);
	background: var(--white-color);
	border: 2px solid var(--white-color);
}

.pq-popup-video-block.pq-popup-style-1 {
	position: relative;
	text-align: center;
}

.pq-popup-video-block.pq-popup-style-1 .pq-video-icon {
	position: relative;
}

.pq-fill-bg .pq-popup-video-block.pq-popup-style-1 .pq-video-icon a {
	background: var(--primary-color);
	color: var(--white-color);
}

.pq-fill-bg .pq-popup-video-block.pq-popup-style-1 .pq-video-icon a:hover {
	background: var(--dark-color);
	border-color: var(--dark-color);
}

.pq-fill-bg.pq-white .pq-popup-video-block.pq-popup-style-1 .pq-video-icon a {
	background: var(--white-color);
	border-color: var(--white-color);
	color: var(--primary-color);
}

.pq-fill-bg.pq-white .pq-popup-video-block.pq-popup-style-1 .pq-video-icon a:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--white-color);
}

.pq-video-small .pq-popup-video-block.pq-popup-style-1 .pq-video-icon a {
	width: 100px;
	height: 100px;
	line-height: 90px;
	font-size: 22px;
}

.mfp-wrap .mfp-close {
	padding: 0;
	top: -50px;
	right: 0;
	font-size: 26px;
	opacity: 1;
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	color: var(--white-color);
	background-color: var(--primary-color);
	position: absolute;
	letter-spacing: 0;
	font-weight: 400;
}

.mfp-wrap .mfp-close {
	padding: 0;
	top: -50px;
	right: 0;
	font-size: 26px;
	opacity: 1;
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	color: var(--white-color);
	background-color: var(--primary-color);
	position: absolute;
	letter-spacing: 0;
	font-weight: 400;
}

.mfp-gallery .mfp-close {
	top: -10px;
	cursor: pointer !important;
}

.mfp-arrow-right {
	right: 100px;
}

.mfp-wrap .mfp-close:hover {
	background: var(--primary-color);
}

.mfp-wrap .mfp-close:focus {
	outline: none;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Process Step
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-process-step.pq-style-1 {
	position: relative;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
}

.pq-process-step.pq-style-1:last-child {
	margin-bottom: 0;
}

.pq-process-step.pq-style-1 .pq-process-media span {
	display: inline-block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	color: var(--white-color);
	text-align: center;
	border-radius: 100%;
	position: absolute;
	left: 0;
	top: 50px;
}

.pq-process-step.pq-style-1.pq-odd .pq-process-media span {
	background: var(--dark-color);
}

.pq-process-step.pq-style-1.pq-even .pq-process-media span {
	background: var(--primary-color);
}

.pq-process-step.pq-style-1 .pq-process-info {
	margin-left: 90px;
	padding: 18px;
	border-radius: 5px;
}

.pq-process-info img {
	width: 80px;
	height: 80px;
}

.pq-process-step.pq-style-1.pq-odd .pq-process-info {
	background: #ffffff;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pq-process-step.pq-style-1.pq-even .pq-process-info {
	background: #fff;
}

.pq-process-step.pq-style-1 .pq-process-title {
	color: #000000;
	margin-bottom: 15px;
}

.pq-process-step.pq-style-1 .pq-process-info p {
	color: #000000;
	margin-bottom: 0;
}

.pq-process-step.pq-style-1:before {
	content: '';
	position: absolute;
	width: 1px;
	height: calc(100% + 0px);
	background: rgba(21, 20, 28, 0.1);
	top: 0px;
	left: 21px;
}

.pq-process-border.pq-process-step.pq-style-1:before {
	display: none;
}

.pq-process-step.pq-style-2 {
	padding: 45px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 5px;
}

.pq-process-step.pq-style-2 .pq-process-media {
	color: var(--white-color);
	font-size: 52px;
	line-height: 60px;
	font-family: var(--title-fonts);
	font-weight: 600;
	margin-bottom: 45px;
	letter-spacing: 1px;
}

.pq-process-step.pq-style-2 .pq-process-title {
	color: var(--white-color);
	margin-bottom: 15px;
	font-size: 10px;
	line-height: 34px;
	letter-spacing: 1px;
}

.pq-process-text {
	font-size: 15px;
}

.pq-process-step.pq-style-2 .pq-process-info p {
	color: var(--white-color);
	margin-bottom: 0;
}

.pq-process-step.pq-style-3 {
	display: flex;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 30px;
	margin-bottom: 30px;
	cursor: pointer;
}

.pq-process-step.pq-style-3 .pq-process-media {
	font-size: 44px;
	line-height: 52px;
	color: var(--white-color);
	margin-right: 30px;
	font-family: var(--title-fonts);
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.5s ease;
}

.pq-process-step.pq-style-3 .pq-process-title {
	color: var(--white-color);
	margin-bottom: 10px;
}

.pq-process-step.pq-style-3 .pq-process-info p {
	color: var(--white-color);
	margin-bottom: 0;
}

.process-slider.pq-slider-1 .slick-slider-thumb {
	width: 100% !important;
}

.process-slider.pq-slider-1 .slick-slider-thumb .slick-slide:last-child .pq-process-step.pq-style-3 {
	margin-bottom: 0;
	padding-bottom: 0;
	border: none;
}

.process-slider.pq-slider-1 .slick-slider-thumb .slick-active .pq-process-step.pq-style-3 .pq-process-media {
	color: var(--primary-color);
}

.process-slider.pq-slider-1 .slick-arrow {
	display: none !important;
}

.slick-initialized .slick-slide {
	display: block;
	margin-bottom: 15px;
}

.process-slider.pq-slider-1 .slick-slide {
	margin: 0px;
}

.process-slider.pq-slider-1 .slick-slider-thumb .item h4 {
	color: var(--dark-color);
	padding: 26px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 28px;
	line-height: 36px;
	cursor: pointer;
}

.process-slider.pq-slider-1 .slick-slider-thumb .slick-current .item h4 {
	color: var(--primary-color);
}

.pq-thumbs-column .slick-slider .slick-track {
	transform: translate(0) !important;
	width: 100% !important;
}

.pq-thumbs-column .slick-slider .slick-slide {
	width: 100% !important;
	margin-left: 0;
}

.process-slider.pq-slider-1 .slick-slider-thumb .item h4 i {
	margin-right: 15px;
	font-size: 52px;
	line-height: 60px;
	color: var(--primary-color);
	display: inline-block;
	margin-top: 15px;
}

.process-slider.pq-slider-1 .slick-slider-thumb .item h4 span {
	display: inline-block;
	vertical-align: middle;
}

.process-slider.pq-slider-1 .slick-slider-main {
	margin-left: 15px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Team
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-team-box.pq-style-1 .pq-team-img {
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}

.pq-team-box.pq-style-1 .pq-team-img img {
	width: 100%;
	height: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	filter: grayscale(100%);
	border-radius: 5px;
}

.pq-team-box.pq-style-1:hover .pq-team-img img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	filter: grayscale(0%);
}

.pq-team-box.pq-style-1 .pq-team-social ul {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 15px;
	left: -75px;
	display: inline-block;
	width: 60px;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.pq-team-box.pq-style-1:hover .pq-team-social ul {
	left: 15px;
}

.pq-team-box.pq-style-1 .pq-team-social ul li {
	list-style: none;
	display: inline-flex;
	margin: 0 0 5px;
}

.pq-team-box.pq-style-1 .pq-team-social ul li:last-child {
	margin: 0;
}

.pq-team-box.pq-style-1 .pq-team-social ul li a {
	background: var(--dark-color);
	color: var(--white-color);
	text-align: center;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 5px;
}

.pq-team-box.pq-style-1 .pq-team-social ul li a:hover {
	background: var(--primary-color);
}

.pq-team-box.pq-style-1 .pq-team-social ul li a i {
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
}

.pq-team-box.pq-style-1 .pq-team-info {
	background: transparent;
	padding: 20px 15px 0;
	margin: 0px;
	text-align: center;
	position: relative;
}

.pq-team-box.pq-style-1 .pq-team-info .pq-team-designation {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 1px;
	width: 100%;
	text-transform: uppercase;
	color: var(--primary-color);
	font-family: var(--title-fonts);
}

.pq-team-box-grid.pq-style-2 .item:first-child .pq-team-box.pq-style-2 {
	padding-top: 0;
}

.pq-team-box-grid.pq-style-2 .item:last-child .pq-team-box.pq-style-2 {
	padding-bottom: 0;
	border: none;
}

.pq-team-box.pq-style-2 {
	padding: 45px 0;
	display: grid;
	grid-template-columns: 0.2fr 1.4fr 1fr 0.5fr;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.5s ease;
	cursor: pointer;
	color: var(--white-color);
}

.pq-team-box.pq-style-2 .pq-team-number {
	font-size: 26px;
	line-height: 34px;
	font-family: var(--title-fonts);
	letter-spacing: 1px;
	font-weight: 600;
}

.pq-team-box.pq-style-2 .pq-member-name {
	font-size: 26px;
	line-height: 34px;
	color: var(--white-color);
}

.pq-team-box.pq-style-2 .pq-team-designation {
	font-family: var(--title-fonts);
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	position: relative;
	text-transform: uppercase;
	margin-top: 10px;
	color: var(--primary-color);
	letter-spacing: 1px;
}

.pq-team-box.pq-style-2 .pq-team-img {
	position: relative;
}

.pq-team-box.pq-style-2 .pq-team-img img {
	border-radius: 5px;
}

.pq-team-box.pq-style-2 .pq-team-img-content {
	position: absolute;
	transform: translateY(10px) rotate(-10deg);
	transition: all 0.5s ease;
	top: 0px;
	opacity: 0;
	z-index: 1;
}

.pq-team-box.pq-style-2:hover .pq-team-img-content,
.pq-team-box.pq-style-2.active .pq-team-img-content {
	transform: translateY(0px) rotate(-10deg);
	opacity: 1;
}

.pq-team-box.pq-style-2 .pq-team-img .pq-team-social {
	position: absolute;
	bottom: 5px;
	width: 100%;
	right: 5px;
	display: none;
}

.pq-team-box.pq-style-2 .pq-team-img .pq-team-social ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.pq-team-box.pq-style-2 .pq-team-img .pq-team-social ul li {
	float: right;
	margin-right: -1px;
}

.pq-team-box.pq-style-2 .pq-team-img .pq-team-social ul li a {
	background: var(--primary-color);
	color: var(--white-color);
	text-align: center;
	width: 45px;
	height: 45px;
	line-height: 45px;
	display: inline-block;
}

.pq-team-box.pq-style-2 .pq-team-img .pq-team-social ul li a:hover {
	background: var(--dark-color);
}

.pq-team-box.pq-style-2 .pq-btn-container {
	text-align: right;
}

.pq-team-box.pq-style-2 .pq-btn-container .pq-button.pq-button-icon .pq-button-text {
	display: none;
}

.pq-team-box.pq-style-2 .pq-btn-container .pq-button.pq-button-icon i {
	color: var(--white-color);
}

.pq-team-box.pq-style-2:hover .pq-btn-container .pq-button.pq-button-icon,
.pq-team-box.pq-style-2.active .pq-btn-container .pq-button.pq-button-icon {
	transform: translateX(5px);
}

.pq-team-box.pq-style-2:hover .pq-btn-container .pq-button.pq-button-icon i,
.pq-team-box.pq-style-2.active .pq-btn-container .pq-button.pq-button-icon i {
	color: var(--primary-color);
}

.pq-team-box.pq-style-3 .pq-team-img {
	position: relative;
	overflow: hidden;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.pq-team-box.pq-style-3 .pq-team-img img {
	width: 100%;
	height: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}


.pq-team-box.pq-style-3 .pq-team-social ul {
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 15px;
	right: -100%;
	display: inline-block;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.pq-team-box.pq-style-3:hover .pq-team-social ul {
	right: 15px;
}

.pq-team-box.pq-style-3 .pq-team-social ul li {
	list-style: none;
	display: inline-flex;
	margin: 0;
}

.pq-team-box.pq-style-3 .pq-team-social ul li:last-child {
	margin: 0;
}

.pq-team-box.pq-style-3 .pq-team-social ul li a {
	background: var(--primary-color);
	color: var(--white-color);
	text-align: center;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 5px;
}

.pq-team-box.pq-style-3 .pq-team-social ul li a:hover {
	background: var(--dark-color);
}

.pq-team-box.pq-style-3 .pq-team-social ul li a i {
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
}

.pq-team-box.pq-style-3 .pq-team-info {
	background: var(--grey-color);
	padding: 20px;
	margin: 0px;
	position: relative;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.pq-team-box.pq-style-3 .pq-team-info .pq-team-designation {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 1px;
	width: 100%;
	text-transform: uppercase;
	color: var(--primary-color);
	font-family: var(--title-fonts);
}

.pq-team-box.pq-style-4 .pq-team-img {
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}

.pq-team-box.pq-style-4 .pq-team-img:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	opacity: 0;
	transition: all 0.5s ease;
	z-index: 1;
}

.pq-team-box.pq-style-4:hover .pq-team-img:before {
	opacity: 0.5;
}

.pq-team-box.pq-style-4 .pq-team-img img {
	width: 100%;
	height: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	border-radius: 5px;
}

.pq-team-box.pq-style-4 .pq-team-social ul {
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: -60px;
	width: 100%;
	text-align: center;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	z-index: 2;
}

.pq-team-box.pq-style-4:hover .pq-team-social ul {
	bottom: 30px;
}

.pq-team-box.pq-style-4 .pq-team-social ul li {
	list-style: none;
	display: inline-flex;
}

.pq-team-box.pq-style-4 .pq-team-social ul li+li {
	margin-left: 8px;
}

.pq-team-box.pq-style-4 .pq-team-social ul li a {
	background: var(--white-color);
	color: var(--dark-color);
	text-align: center;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 5px;
}

.pq-team-box.pq-style-4 .pq-team-social ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.pq-team-box.pq-style-4 .pq-team-social ul li a i {
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
}

.pq-team-box.pq-style-4 .pq-team-info {
	background: transparent;
	padding: 20px 15px 0;
	margin: 0px;
	text-align: center;
	position: relative;
}

.pq-team-box.pq-style-4 .pq-team-info .pq-team-designation {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 1px;
	width: 100%;
	text-transform: uppercase;
	color: var(--primary-color);
	font-family: var(--title-fonts);
}

.pq-team-box.pq-style-5 .pq-team-img {
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}

.pq-team-box.pq-style-5 .pq-team-img:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	opacity: 0;
	transition: all 0.5s ease;
	z-index: 1;
}

.pq-team-box.pq-style-5:hover .pq-team-img:before {
	opacity: 0.8;
}

.pq-team-box.pq-style-5 .pq-team-img img {
	width: 100%;
	height: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	border-radius: 5px;
}

.pq-team-box.pq-style-5 .pq-team-social ul {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 30px;
	right: -100px;
	display: inline-block;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	z-index: 9;
}

.pq-team-box.pq-style-5:hover .pq-team-social ul {
	right: 30px;
}

.pq-team-box.pq-style-5 .pq-team-social ul li {
	list-style: none;
	margin: 0 0 5px;
}

.pq-team-box.pq-style-5 .pq-team-social ul li:last-child {
	margin: 0;
}

.pq-team-box.pq-style-5 .pq-team-social ul li a {
	color: var(--white-color);
	font-size: 22px;
	line-height: 30px;
}

.pq-team-box.pq-style-5 .pq-team-social ul li a:hover {
	color: var(--primary-color);
}

.pq-team-box.pq-style-5 .pq-team-social ul li a i {
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
}

.pq-team-box.pq-style-5 .pq-team-info {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -100px;
	text-align: center;
	transition: all 0.5s ease;
	z-index: 9;
}

.pq-team-box.pq-style-5:hover .pq-team-info {
	bottom: 30px;
}

.pq-team-box.pq-style-5 .pq-team-info .pq-member-name {
	color: var(--white-color);
}

.pq-team-box.pq-style-5 .pq-team-info .pq-team-designation {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 1px;
	color: var(--primary-color);
	text-transform: uppercase;
	font-family: var(--title-fonts);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Testimonial
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-testimonial-box.pq-style-1 {
	display: grid;
	grid-template-columns: 0.3fr 1fr;
	align-items: center;
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media {
	width: 250px;
	height: 250px;
	border-radius: 100%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media .pq-testimonial-img {
	position: absolute;
	top: 50%;
	right: -45px;
	transform: translateY(-50%);
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media .pq-testimonial-img img {
	width: 110px;
	border-radius: 100%;
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-info {
	padding-left: 90px;
	position: relative;
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-info:before {
	content: "";
	width: 1px;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 0;
	left: 30px;
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-description {
	font-size: 22px;
	line-height: 40px;
	font-style: italic;
	margin-top: 15px;
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-meta {
	margin-top: 30px;
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-meta h5 {
	font-size: 26px;
	line-height: 34px;
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-meta span {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 1px;
	width: 100%;
	text-transform: uppercase;
	color: var(--primary-color);
	font-family: var(--title-fonts);
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-quote {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 90px;
	line-height: 98px;
	color: transparent;
	-webkit-text-stroke: 2px var(--primary-color);
}

.pq-testimonial-box-slider.pq-style-1 .owl-nav {
	display: inline-block;
	top: inherit;
	text-align: right;
	bottom: 5px;
	transform: none;
}

.pq-testimonial-box-slider.pq-style-1 .owl-carousel .owl-dots {
	position: absolute;
	right: 0;
	bottom: 0px;
	margin-top: 0;
	text-align: right;
}

.pq-testimonial-box-slider.pq-style-1 .owl-nav.disabled {
	display: none;
}

.pq-testimonial-box-slider.pq-style-1 .owl-carousel .owl-nav button.owl-prev {
	margin-left: 0;
	background: var(--dark-color);
	color: var(--white-color);
}

.pq-testimonial-box-slider.pq-style-1 .owl-carousel .owl-nav button.owl-next {
	margin-right: 0px;
	background: var(--primary-color);
	color: var(--white-color);
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-star i {
	color: #E9B730;
}

/* style 2 */

.pq-testimonial-box.pq-style-2 .pq-testimonial-quote {
	font-size: 44px;
	line-height: 52px;
	color: var(--primary-color);
	display: inline-block;
}

.pq-testimonial-box.pq-style-2 .pq-testimonial-star i {
	color: #E9B730;
}

.pq-testimonial-box.pq-style-2 .pq-testimonial-star {
	float: right;
	margin-top: 5px;
}

.pq-testimonial-box.pq-style-2 .pq-testimonial-description {
	border-bottom: 1px solid rgb(0, 0, 0, 0.1);
	padding-bottom: 30px;
	margin-top: 20px;
}

.pq-testimonial-box.pq-style-2 .pq-testimonial-meta {
	margin-top: 30px;
}

.pq-testimonial-box.pq-style-2 .pq-testimonial-meta span {
	color: var(--secondary-color);
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 1px;
	font-family: var(--title-fonts);
	text-transform: uppercase;
}

.pq-testimonial-box-slider.pq-style-2 .owl-nav {
	display: inline-block;
	top: inherit;
	text-align: right;
	bottom: -15px;
	right: 0;
	margin-left: -17.8%;
}

.pq-testimonial-box-slider.pq-style-2 .owl-carousel .owl-dots {
	position: absolute;
	right: 0;
	bottom: 15px;
	margin-top: 0;
	text-align: right;
}

.pq-testimonial-box-slider.pq-style-2 .owl-nav.disabled {
	display: none;
}

.pq-testimonial-box-slider.pq-style-2 .owl-carousel .owl-nav button.owl-prev {
	margin-left: 0;
	background: var(--dark-color);
	color: var(--white-color);
}

.pq-testimonial-box-slider.pq-style-2 .owl-carousel .owl-nav button.owl-next {
	margin-right: 0px;
	background: var(--primary-color);
	color: var(--white-color);
}

.pq-testimonial-box.pq-style-3 {
	display: grid;
	grid-template-columns: 0.3fr 1fr;
	align-items: center;
}

.pq-testimonial-box.pq-style-3 .pq-testimonial-media .pq-testimonial-img img {
	border-radius: 100%;
}

.pq-testimonial-box.pq-style-3 .pq-testimonial-info {
	padding-left: 90px;
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
}

.pq-testimonial-box.pq-style-3 .pq-testimonial-info:before {
	content: "";
	width: 1px;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 0;
	left: 45px;
}

.pq-testimonial-box.pq-style-3 .pq-testimonial-description {
	font-size: 22px;
	line-height: 40px;
	font-style: italic;
	margin-top: 20px;
}

.pq-testimonial-box.pq-style-3 .pq-testimonial-meta {
	margin-top: 30px;
	text-align: center;
}

.pq-testimonial-box.pq-style-3 .pq-testimonial-meta h5 {
	font-size: 26px;
	line-height: 34px;
}

.pq-testimonial-box.pq-style-3 .pq-testimonial-meta span {
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 1px;
	width: 100%;
	text-transform: uppercase;
	color: var(--primary-color);
	font-family: var(--title-fonts);
}

.pq-testimonial-box.pq-style-3 .pq-testimonial-quote {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background: var(--primary-color);
	border-radius: 100%;
	font-size: 24px;
	color: transparent;
	-webkit-text-stroke: 1px #ffffff;
}

.pq-testimonial-box-slider.pq-style-3 .owl-nav {
	display: inline-block;
	top: inherit;
	text-align: right;
	bottom: 5px;
	transform: none;
}

.pq-testimonial-box-slider.pq-style-3 .owl-carousel .owl-dots {
	position: absolute;
	right: 0;
	bottom: 0px;
	margin-top: 0;
	text-align: right;
}


.pq-testimonial-box-slider.pq-style-3 .owl-nav.disabled {
	display: none;
}

.pq-testimonial-box-slider.pq-style-3 .owl-carousel .owl-nav button.owl-prev {
	margin-left: 0;
	background: var(--dark-color);
	color: var(--white-color);
}

.pq-testimonial-box-slider.pq-style-3 .owl-carousel .owl-nav button.owl-next {
	margin-right: 0px;
	background: var(--primary-color);
	color: var(--white-color);
}

.pq-testimonial-box.pq-style-3 .pq-testimonial-star i {
	color: #E9B730;
}

.pq-testimonial-box.pq-style-4 {
	padding: 45px 30px;
	background: var(--white-color);
	border-radius: 5px;
}

.pq-testimonial-box.pq-style-4 .pq-testimonial-img img {
	width: 80px;
	height: 80px;
	border-radius: 100%;
}

.pq-testimonial-box.pq-style-4 .pq-testimonial-description {
	margin-top: 20px;
	margin-bottom: 20px;
}

.pq-testimonial-box.pq-style-4 .pq-testimonial-meta span {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 1px;
	width: 100%;
	text-transform: uppercase;
	color: var(--primary-color);
	font-family: var(--title-fonts);
}

.pq-testimonial-box.pq-style-4 .pq-testimonial-star {
	position: absolute;
	right: 30px;
	bottom: 45px;
	color: #E9B730;
}

.pq-grey-bg .pq-testimonial-box.pq-style-4 {
	background: var(--grey-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Form
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-contact-form input,
.pq-contact-form textarea {
	margin-bottom: 20px;
}

.pq-contact-form.pq-white-bg textarea,
.pq-contact-form.pq-white-bg input {
	background-color: var(--white-color);
	color: var(--dark-color);
}

.pq-contact-form textarea {
	height: 150px;
}

.pq-contact-form.pq-white-bg .pq-button {
	background: var(--primary-color);
	color: var(--white-color);
	margin-bottom: 0;
	width: 100%;
	text-align: center;
}

.pq-contact-form.pq-white-bg .pq-button:hover {
	background: var(--white-color);
	color: var(--dark-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
FAQ
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-accordion-block .pq-accordion-box {
	background: transparent;
	position: relative;
}

.pq-accordion-block .pq-accordion-box:last-child {
	margin-bottom: 0;
}

.pq-accordion-block .pq-accordion-box .pq-ad-title {
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 30px 30px 30px 0;
	cursor: pointer;
}

.pq-accordion-block .pq-accordion-box .pq-ad-title i {
	position: absolute;
	top: 30px;
	right: 0;
	opacity: 1;
	color: var(--white-color);
	width: 30px;
	height: 30px;
	line-height: 30px;
	background: transparent;
	text-align: center;
	font-size: 22px;
}

.pq-accordion-block .pq-accordion-box .pq-ad-title i.inactive {
	opacity: 0;
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i {
	position: absolute;
	top: 25px;
	right: 0;
	opacity: 0;
	color: var(--dark-color);
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i.inactive {
	opacity: 1;
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i {
	color: var(--white-color);
	background: transparent;
}

.pq-accordion-block .pq-accordion-box .pq-accordion-details {
	padding: 0px 30px 25px 0px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pq-accordion-block .pq-accordion-box .pq-accordion-details p {
	margin-bottom: 0;
	color: var(--white-color);
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title {
	background: transparent;
	border: none;
	padding-bottom: 15px;
}

.pq-accordion-block .pq-accordion-box .pq-ad-title .ad-title-text {
	font-size: 22px;
	line-height: 30px;
	color: var(--white-color);
}

.pq-accordion-block .pq-accordion-box .pq-ad-title .ad-title-text .pq-number {
	margin-right: 10px;
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title .ad-title-text {
	color: var(--primary-color);
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i {
	color: var(--primary-color);
}

.pq-grey-bg .pq-accordion-block .pq-accordion-box {
	margin-bottom: 15px;
}

.pq-grey-bg .pq-accordion-block .pq-accordion-box .pq-ad-title {
	background: var(--grey-color);
	padding: 20px;
	border-radius: 5px;
}

.pq-grey-bg .pq-accordion-block .pq-accordion-box .pq-ad-title .ad-title-text {
	font-size: 20px;
	line-height: 28px;
	color: var(--dark-color);
	padding-right: 20px;
}

.pq-grey-bg .pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title .ad-title-text {
	color: var(--white-color);
}

.pq-grey-bg .pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title {
	background: var(--dark-color);
	border: 1px solid var(--dark-color);
	border-radius: 0;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.pq-grey-bg .pq-accordion-block .pq-accordion-box .pq-accordion-details {
	padding: 20px;
	border: 1px solid var(--grey-color);
	border-top: 0;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.pq-grey-bg .pq-accordion-block .pq-accordion-box .pq-accordion-details p {
	color: var(--secondary-color);
}

.pq-grey-bg .pq-accordion-block .pq-accordion-box .pq-ad-title i {
	top: 16px;
	right: 15px;
	font-size: 20px;
	color: var(--dark-color);
}

.pq-grey-bg .pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i.inactive {
	color: var(--white-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Pricing
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-pricing-plan.pq-style-1 {
	padding: 45px;
	background: var(--white-color);
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.pq-pricing-plan.pq-style-1 .pq-pricing-title {
	font-size: 18px;
	line-height: 26px;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--primary-color);
}

.pq-pricing-plan.pq-style-1 .pq-price {
	font-size: 48px;
	line-height: 56px;
	color: var(--dark-color);
	margin-top: 5px;
	font-family: var(--title-fonts);
	font-weight: 600;
	letter-spacing: 1px;
}

.pq-pricing-plan.pq-style-1 .price-month {
	font-size: 24px;
	color: var(--secondary-color);
	vertical-align: super;
	text-decoration: line-through;
	opacity: 0.5;
}

.pq-pricing-plan.pq-style-1 ul {
	padding: 30px 0 30px;
	margin: 0;
}

.pq-pricing-plan.pq-style-1 .pq-list-info li {
	list-style: none;
	display: flex;
	align-items: center;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.pq-pricing-plan.pq-style-1 .pq-list-info li i {
	margin-right: 15px;
	color: var(--primary-color);
}

.pq-pricing-plan.pq-style-1.active {
	background: var(--primary-color);
}

.pq-pricing-plan.pq-style-1.active .pq-pricing-title {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-1.active .pq-list-info li {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-1.active .pq-price {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-1.active .price-month {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-1.active .pq-list-info li i {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-1.active .pq-button {
	background: var(--white-color);
	color: var(--dark-color);
}

.pq-pricing-plan.pq-style-1.active .pq-button:hover {
	background: var(--dark-color);
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-2 {
	padding: 45px;
	background: var(--grey-color);
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	text-align: center;
	overflow: hidden;
	position: relative;
}

.pq-pricing-plan.pq-style-2 .pq-pricing-plan-lable {
	position: absolute;
	background: var(--dark-color);
	color: var(--white-color);
	text-align: center;
	width: 250px;
	display: block;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: capitalize;
	padding: 5px 0;
	transform: rotate(45deg);
	right: -75px;
	text-align: center;
	top: 30px;
	opacity: 0;
}

.pq-pricing-plan.pq-style-2.active .pq-pricing-plan-lable {
	opacity: 1;
}

.pq-pricing-plan.pq-style-2 .pq-pricing-title {
	font-size: 28px;
	line-height: 36px;
	color: var(--dark-color);
}

.pq-pricing-plan.pq-style-2 .pq-price {
	font-size: 60px;
	line-height: 68px;
	color: var(--dark-color);
	margin-top: 15px;
	font-family: var(--title-fonts);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.pq-pricing-plan.pq-style-2 .price-month {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: var(--secondary-color);
}

.pq-pricing-plan.pq-style-2 ul {
	padding: 20px 0 30px;
	margin: 0;
}

.pq-pricing-plan.pq-style-2 .pq-list-info li {
	margin-bottom: 15px;
	text-transform: capitalize;
}

.pq-pricing-plan.pq-style-2 .pq-list-info li i {
	margin-right: 10px;
	color: var(--primary-color);
}

.pq-pricing-plan.pq-style-2.active {
	background: var(--primary-color);
	padding: 60px 45px;
}

.pq-pricing-plan.pq-style-2.active .pq-pricing-title {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-2.active .pq-list-info li {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-2.active .pq-price {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-2.active .price-month {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-2.active .pq-list-info li i {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-2.active .pq-button {
	background: var(--white-color);
	color: var(--dark-color);
}

.pq-pricing-plan.pq-style-2.active .pq-button:hover {
	background: var(--dark-color);
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-3 {
	padding: 45px;
	background: var(--grey-color);
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	overflow: hidden;
	position: relative;
}

.pq-pricing-plan.pq-style-3 .pq-pricing-icon {
	font-size: 62px;
	line-height: 70px;
	position: absolute;
	right: 45px;
	top: 60px;
	color: var(--primary-color);
}

.pq-pricing-plan.pq-style-3 .pq-pricing-title {
	font-size: 22px;
	line-height: 30px;
	color: var(--dark-color);
	font-weight: 400;
	text-transform: uppercase;
}

.pq-pricing-plan.pq-style-3 .pq-price {
	font-size: 60px;
	line-height: 68px;
	color: var(--dark-color);
	margin-top: 30px;
	font-family: var(--title-fonts);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.pq-pricing-plan.pq-style-3 .price-month {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: var(--dark-color);
	margin-left: -10px;
}

.pq-pricing-plan.pq-style-3 ul {
	padding: 30px 0 30px;
	margin: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin-top: 30px;
}

.pq-pricing-plan.pq-style-3 .pq-list-info li {
	margin-bottom: 15px;
	text-transform: capitalize;
}

.pq-pricing-plan.pq-style-3 .pq-list-info li i {
	margin-right: 10px;
	color: var(--primary-color);
}

.pq-pricing-plan.pq-style-3.active {
	background: var(--dark-color);
}

.pq-pricing-plan.pq-style-3.active ul {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pq-pricing-plan.pq-style-3.active .pq-pricing-title {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-3.active .pq-list-info li {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-3.active .pq-price {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-3.active .price-month {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-3.active .pq-list-info li i {
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-3.active .pq-button {
	background: var(--primary-color);
	color: var(--white-color);
}

.pq-pricing-plan.pq-style-3.active .pq-button:hover {
	background: var(--white-color);
	color: var(--dark-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Client
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-client-box.pq-style-1 {
	display: block;
	overflow: hidden;
	position: relative;
}

.pq-client-box.pq-style-1 .pq-client-img {
	position: relative;
	display: block;
	width: auto;
	margin: 0 auto;
	-webkit-transition: -webkit-transform .3s ease;
	-moz-transition: -moz-transform .3s ease;
	transition: transform .3s ease;
	opacity: 0.8;
}

.pq-client-box.pq-style-1 a:hover .pq-client-img {
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	transform: translateY(100%)
}

.pq-client-box.pq-style-1 a:hover .pq-client-hover-img {
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.pq-client-box.pq-style-1 .pq-client-hover-img {
	position: absolute;
	top: 0;
	left: 50%;
	width: auto;
	opacity: 1;
	-webkit-transform: translate(-50%, -100%);
	-moz-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	-webkit-transition: -webkit-transform .3s ease;
	-moz-transition: -moz-transform .3s ease;
	transition: transform .3s ease
}

.pq-client-box-grid .pq-client-box.pq-style-2 {
	border-right: 1px solid #0000001a;
	border-bottom: 1px solid #0000001a;
}

.pq-client-box.pq-style-2 {
	background: var(--white-color);
	padding: 30px 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.pq-client-box.pq-style-2 .pq-client-title {
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	text-transform: uppercase;
}

.pq-client-box.pq-style-2 .pq-client-hover .pq-client-title a {
	position: absolute;
	width: 90%;
	height: 90%;
	position: absolute;
	top: 5%;
	left: 5%;
	background: var(--primary-color);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all 0.5s ease;
	color: var(--white-color);
}

.pq-client-box.pq-style-2:hover .pq-client-hover .pq-client-title a {
	opacity: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.pq-client-grey .pq-client-box.pq-style-2 {
	background: var(--grey-color);
}

.pq-client-fullbg:before {
	content: "";
	position: absolute;
	background: var(--primary-color);
	right: 100%;
	width: 1000%;
	height: 100%;
	top: 0;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Awardbox
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-award-tabs.pq-style-1 .award-tabs-item a.award-tabs-link {
	padding: 40px 30px;
	display: grid;
	align-items: center;
	grid-template-columns: 1.3fr 2fr 0.8fr 0.5fr;
	color: inherit;
	background: var(--grey-color);
	margin-bottom: 30px;
	transition: all 0.5s ease;
	border-radius: 5px;
}

.pq-award-tabs.pq-style-1 .award-tabs-item:last-child a.award-tabs-link {
	margin-bottom: 0;
}

.pq-award-tabs.pq-style-1 .award-tab-title h4 {
	font-size: 26px;
	line-height: 34px;
}

.pq-award-tabs.pq-style-1 .award-tab-description {
	text-transform: uppercase;
	text-align: center;
	font-family: var(--title-fonts);
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	color: var(--primary-color);
}

.pq-award-tabs.pq-style-1 .pq-award-date {
	text-align: right;
	font-weight: 600;
	color: var(--dark-color);
	display: block;
	font-size: 26px;
	line-height: 34px;
	font-family: var(--title-fonts);
	letter-spacing: 1px;
}

.pq-award-tabs.pq-style-1 .award-tabs-item a.award-tabs-link .award-tabs-img {
	position: relative;
}

.pq-award-tabs.pq-style-1 .award-tabs-item a.award-tabs-link .award-tabs-img img {
	position: absolute;
	width: 150px;
	height: 150px;
	top: -22px;
	right: 15px;
	border-radius: 50%;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease;
	transform: translateY(-10px);
}

.pq-award-tabs.pq-style-1 .award-tabs-item.active a.award-tabs-link .award-tabs-img img {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}

.pq-award-tabs.pq-style-2 .award-tabs-item a.award-tabs-link {
	padding-bottom: 40px;
	padding-left: 30px;
	padding-right: 30px;
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 1.8fr 0.8fr;
	color: inherit;
	margin-bottom: 30px;
	transition: all 0.5s ease;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pq-award-tabs.pq-style-2 .award-tabs-item a.award-tabs-link:last-child {
	margin-bottom: 0;
}

.pq-award-tabs.pq-style-2 .pq-award-date {
	font-weight: 600;
	color: var(--dark-color);
	display: block;
	font-size: 52px;
	line-height: 60px;
	font-family: var(--title-fonts);
	letter-spacing: 1px;
}

.pq-award-tabs.pq-style-2 .award-tab-title {
	font-size: 32px;
	line-height: 40px;
}

.pq-award-tabs.pq-style-2 .award-tab-description {
	margin-bottom: 0;
	margin-top: 10px;
}

.pq-award-tabs.pq-style-2 .award-tabs-img {
	text-align: right;
}

.pq-award-tabs.pq-style-2 .award-tabs-img img {
	width: 110px;
	transition: all 0.5s ease;
}

.pq-award-tabs.pq-style-2 .award-tabs-item:hover .award-tabs-img img {
	transform: scale(1.1);
}

/*++++++++++++++++++++++++++++++++++++++
Portfoliobox
++++++++++++++++++++++++++++++++++++++++*/

.pq-portfoliobox-1 {
	background: var(--white-color);
	overflow: hidden;
	position: relative;
	border-radius: 5px;
}

.pq-portfoliobox-1 .pq-portfolio-img {
	position: relative;
	overflow: hidden;
}

.pq-portfoliobox-1 .pq-portfolio-img img {
	width: 100%;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	border-radius: 5px;
}

.pq-portfoliobox-1:hover .pq-portfolio-img img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.pq-portfoliobox-1 .pq-portfolio-info {
	padding: 20px 0 0;
}

.pq-portfoliobox-1 .pq-portfolio-info .pq-portfolio-style-1-tag {
	line-height: 1;
	margin-bottom: 5px;
}

.pq-portfoliobox-1 .pq-portfolio-info .pq-portfolio-style-1-tag a {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 1px;
	color: var(--primary-color);
	text-transform: uppercase;
	font-family: var(--title-fonts);
}

.pq-portfoliobox-1 .pq-portfolio-info p {
	margin-bottom: 0;
}

.pq-portfoliobox-1 .pq-portfolio-info .pq-button {
	margin-top: 30px;
}


/*===== Portfoliobox Hover Follow  =====*/
.pq-portfoliobox-1.pq-hover-follow {
	position: relative;
	overflow: inherit;
}

.pq-hover-follow .pq-portfolio-info {
	position: absolute;
	left: 105%;
	display: none;
	background: var(--dark-color);
	padding: 20px 30px;
	border-radius: 3px;
	min-width: 300px;
	z-index: 999;
}

.pq-hover-follow .pq-portfolio-info:hover {
	display: none !important;
}

.pq-hover-follow:hover .pq-portfolio-info {
	display: block;
}

.pq-portfoliobox-1.pq-hover-follow .pq-portfolio-info h5 a,
.pq-portfoliobox-1.pq-hover-follow .pq-portfolio-info .pq-portfolio-style-1-title a {
	color: var(--white-color);
}

/*===== Portfoliobox Hover fade  =====*/
.pq-portfoliobox-1.pq-hover-fade {
	text-align: center;
}

.pq-portfoliobox-1.pq-hover-fade:before {
	opacity: 0;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: inline-block;
	background: var(--dark-color);
	z-index: 1;
	transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.pq-portfoliobox-1.pq-hover-fade:hover:before {
	opacity: 0.8;
}

.pq-portfoliobox-1.pq-hover-fade .pq-portfolio-info {
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	display: grid;
	align-items: center;
	justify-content: center;
	align-content: center;
	justify-items: center;
	opacity: 0;
	-moz-transform: translate(0px, 30px);
	-webkit-transform: translate(0px, 30px);
	-o-transform: translate(0px, 30px);
	-ms-transform: translate(0px, 30px);
	transform: translate(0px, 30px);
	-webkit-transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
	transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.pq-portfoliobox-1.pq-hover-fade .pq-portfolio-info h5 {
	margin-bottom: 5px;
}

.pq-portfoliobox-1.pq-hover-fade .pq-portfolio-info h5 a,
.pq-portfoliobox-1.pq-hover-fade .pq-portfolio-info .pq-portfolio-style-1-title a {
	color: var(--white-color);
}

.pq-portfoliobox-1.pq-hover-fade:hover .pq-portfolio-info {
	opacity: 1;
	-moz-transform: translate(0px, 0);
	-webkit-transform: translate(0px, 0);
	-o-transform: translate(0px, 0);
	-ms-transform: translate(0px, 0);
	transform: translate(0px, 0);
}

.pq-portfoliobox-1.pq-hover-fade .pq-e-post-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pq-portfoliobox-1.pq-hover-fade .pq-portfolio-info .pq-btn-container a {
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
}


/*===== Portfoliobox Hover below  =====*/

.pq-portfoliobox-1 .pq-portfolio-info h5 a {
	color: var(--dark-color);
}

.pq-portfoliobox-1.pq-hover-bellow .pq-portfolio-info .pq-portfolio-style-1-tag a {
	color: var(--secondary-color);
}

/*===== Portfoliobox Hover Slide  =====*/

.pq-portfoliobox-1.pq-hover-slide .pq-portfolio-info {
	padding: 30px;
	position: absolute;
	bottom: 45px;
	left: 0;
	z-index: 1;
	transition: all 0.5s ease-in-out;
	opacity: 0;
}

.pq-portfoliobox-1.pq-hover-slide:hover .pq-portfolio-info {
	opacity: 1;
}

.pq-portfoliobox-1.pq-hover-slide .pq-portfolio-info h5 a,
.pq-portfoliobox-1.pq-hover-slide .pq-portfolio-info .pq-portfolio-style-1-title a {
	color: var(--dark-color);
	position: relative;
	padding: 5px 15px;
}

.pq-portfoliobox-1.pq-hover-slide .pq-portfolio-info .pq-portfolio-style-1-tag {
	margin-top: 15px;
}

.pq-portfoliobox-1.pq-hover-slide .pq-portfolio-info .pq-portfolio-style-1-tag a {
	color: var(--dark-color);
	position: relative;
	padding: 5px 15px;
}

.pq-portfoliobox-1.pq-hover-slide .pq-portfolio-info .pq-portfolio-style-1-tag a:after,
.pq-portfoliobox-1.pq-hover-slide .pq-portfolio-info h5 a:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	background: var(--white-color);
	height: 100%;
	z-index: -1;
	transition: all 0.5s ease-in-out;
	border-radius: 5px;
}

.pq-portfoliobox-1.pq-hover-slide:hover .pq-portfolio-info .pq-portfolio-style-1-tag a:after,
.pq-portfoliobox-1.pq-hover-slide:hover .pq-portfolio-info h5 a:after {
	width: 100%;
}

.pq-portfoliobox-1.pq-hover-slide .pq-portfolio-info .pq-portfolio-style-1-tag a:after {
	background: var(--primary-color);
}

.pq-portfoliobox-space .pq-grid-item {
	padding: 0 30px 45px;
	padding-bottom: 60px;
}

.pq-portfoliobox-space .pq-grid-item:nth-child(2) .pq-portfoliobox-1 {
	margin-top: 60px;
}

/*===== Portfoliobox Nav =====*/

.pq-portfoliobox.pq-portfoliobox-style-1 .owl-carousel .owl-nav.disabled {
	display: none !important;
}

.pq-portfoliobox.pq-portfoliobox-style-1 .owl-carousel .owl-nav button svg {
	fill: var(--dark-color);
}

.pq-portfolio-info-box {
	display: inline-block;
	width: 100%;
	background: #f2f2f2;
	padding: 45px;
	border-radius: 5px;
}

.pq-porfolio-info-header h5 {
	font-size: 40px;
	line-height: 48px;
	margin-bottom: 0;
}

.pq-portfolio-info .pq-info-list {
	margin: 0;
	padding: 0;
}

.pq-portfolio-info .pq-info-list li {
	list-style: none;
	float: left;
	margin: 0;
	padding: 0;
	display: inline-block;
	width: 100%;
}

.pq-portfolio-info .pq-info-list li p {
	margin: 0;
}

.pq-portfolio-info .pq-info-list li {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #0000001a;
}

.pq-portfolio-info .pq-info-list li .pq-portfolio-social-list i {
	font-size: 24px;
	color: var(--white-color);
	background-color: var(--dark-color);
	display: inline-block;
	text-align: center;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 900px;
	transition: all 0.3s ease-in-out;
}

.pq-portfolio-info .pq-info-list li .pq-portfolio-social-list a+a {
	margin-left: 5px;
}

.pq-portfolio-info .pq-info-list li .pq-portfolio-social-list i:hover {
	color: var(--dark-color);
	background-color: var(--primary-color);
}

.pq-portfolio-info .pq-info-list li:last-child {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

/* portfoliobox 2*/

.pq-portfoliobox-2 .protfolio-tabs-item {
	position: relative;
	border-bottom: 1px solid rgb(255, 255, 255, 0.1);
	cursor: pointer;
}

.pq-portfoliobox-2 .protfolio-tabs-item:last-child {
	border: none;
}

.pq-portfoliobox-2 .protfolio-tabs-item:last-child .protfolio-tabs-link {
	padding-bottom: 0;
}

.pq-portfoliobox-2 .protfolio-tabs-item .protfolio-tabs-link {
	width: 100%;
	padding: 60px 0;
	display: grid;
	align-items: center;
	grid-template-columns: 1.5fr 1.5fr 0.8fr;

}

.pq-portfoliobox-2 .protfolio-tabs-item:first-child .protfolio-tabs-link {
	padding-top: 15px;
}

.pq-portfoliobox-2 .pq-portfolio-img {
	position: relative;
}

.pq-portfoliobox-2 .pq-portfolio-img:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 140px;
	height: 56px;
	border-radius: 5px;
	background: var(--primary-color);
	transform: scale(0) rotate(-30deg) translateY(-50%);
	transition: all 0.5s ease;
	z-index: 1;
}

.pq-portfoliobox-2 .protfolio-tabs-item:hover .pq-portfolio-img:before,
.pq-portfoliobox-2 .protfolio-tabs-item.active .pq-portfolio-img:before {
	transform: scale(1) rotate(-30deg) translateY(-50%);
}

.pq-portfoliobox-2 .pq-portfolio-img img {
	width: 350px;
	margin: 0 auto;
	display: block;
	border-radius: 5px;
}

.pq-portfoliobox-2 .portfolio-number {
	display: block;
	color: var(--white-color);
	font-weight: 700;
	font-size: 52px;
	line-height: 60px;
	margin-bottom: 10px;
}

.pq-portfoliobox-2 .portfolio-title {
	font-size: 28px;
	line-height: 36px;
	color: var(--white-color);
}

.pq-portfoliobox-2 .pq-btn-container {
	text-align: right;
}

.pq-portfoliobox-2 .pq-btn-container .pq-button.pq-button-icon {
	background: var(--white-color);
	width: 80px;
	height: 80px;
	line-height: 80px;
}

.pq-portfoliobox-2 .pq-btn-container .pq-button.pq-button-icon .pq-button-line {
	width: calc(30px - 1px);
	margin-right: -12px;
	margin-top: -2px;
}

.pq-portfoliobox-2 .pq-button.pq-button-icon i {
	font-size: 40px;
}

.pq-portfoliobox-2 .protfolio-tabs-item:hover .pq-button.pq-button-icon,
.pq-portfoliobox-2 .protfolio-tabs-item.active .pq-button.pq-button-icon {
	background: var(--primary-color);
	color: var(--dark-color);
}

.pq-portfoliobox-2 .protfolio-tabs-item:hover .pq-button.pq-button-icon .pq-button-line,
.pq-portfoliobox-2 .protfolio-tabs-item.active .pq-button.pq-button-icon .pq-button-line {
	background: var(--dark-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
isotope Portfolio
++++++++++++++++++++++++++++++++++++++++++++++++*/
.pq-grid-item.visible_item,
.pq-masonry-item.visible_item {
	display: none;
}

.pq-filters .pq-filter-button-group ul {
	margin: 0 0 45px;
	padding: 0;
	display: inline-block;
	width: 100%;
	text-align: center;
}

.pq-filters .pq-filter-button-group ul li {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	font-family: var(--title-fonts);
	letter-spacing: 1px;
	text-transform: uppercase;
	list-style: none;
	color: var(--dark-color);
	display: inline-block;
	cursor: pointer;
	padding: 12px 20px;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	border-radius: 5px;
}

.pq-filters .pq-filter-button-group ul li:last-child {
	margin-right: 0;
}

.pq-filters .pq-filter-button-group ul li.active,
.pq-filters .pq-filter-button-group ul li.active:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.pq-filters .pq-filter-button-group ul li:hover {
	color: var(--dark-color);
}

.pq-grid {
	display: inline-block;
	width: 100%;
	float: left;
}

.pq-grid:after {
	content: '';
	display: block;
	clear: both;
}

.pq-col-3 {
	width: 25%;
	padding: 0 15px 30px;
}

.pq-col-6 {
	width: 50%;
	padding: 0 15px 30px;
}

.pq-col-4 {
	width: 33.33%;
	padding: 0 15px 30px;
}

.pq-grid.no-padding .pq-grid-item,
.pq-masonry.no-padding .pq-masonry-item {
	padding: 0;
}

.pq-btn-load-container {
	margin-top: 0;
	display: inline-block;
	width: 100%;
}

.pq-btn-load-container a.pq-button {
	cursor: pointer;
}

.pq-grid.style-2 .pq-portfoliobox-1 .pq-portfolio-img {
	overflow: hidden;
}

.pq-grid.style-2 .pq-portfoliobox-1 .pq-portfolio-info {
	position: relative;
	bottom: 0;
	left: 0;
	background: transparent;
	padding-left: 0;
	padding-bottom: 0;
	opacity: 1;
}

.pq-grid.style-2 .pq-portfoliobox-1 a.pq-portfolio-icon-bg {
	display: none;
}

.pq-grid.style-2 .pq-grid-item:nth-child(1) .pq-portfoliobox-1 {
	margin-top: 60px;
}

.pq-grid.style-2 .pq-col-6 {
	padding: 0 30px 45px;
	padding-bottom: 45px;
}


/*=========*/
.pq-masonry {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.pq-masonry .ipt-lg-6 {
	width: 50%;
	padding: 0 15px 30px;
}

.pq-masonry .ipt-lg-3 {
	width: 25%;
	padding: 0 15px 30px;
}

.pq-masonry .ipt-lg-4 {
	width: 33.333%;
	padding: 0 15px 30px;

}

.pq-masonry.no-padding .ipt-lg-6,
.pq-masonry.no-padding .ipt-lg-3 {
	padding: 0;
}

.pq-masonry.no-padding .pq-portfoliobox-1,
.pq-masonry.no-padding .pq-portfoliobox-1 .pq-portfolio-img img {
	border-radius: 0;
}

/* layout 2 */

.pq-masonry .ipt-lg-4 {
	width: 33.333%;
	padding: 0 15px 30px;
}

.pq-masonry .ipt-lg-8 {
	width: 66.666%;
	padding: 0 15px 30px;
}

.pq-masonry .ipt-lg-12 {
	width: 100%;
	padding: 0 15px 30px;
}

.pq-grid-item {
	float: left;
}

.single-portfolio .pq-single-post-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	align-content: center;
	padding: 45px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 45px;
}

.single-portfolio .pq-masonry.pq-single-portfolio {
	margin-top: 45px;
	margin-left: -15px;
}

.pq-single-post-nav-label {
	color: var(--secondary-color);
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 1px;
	font-family: var(--title-fonts);
}

.pq-single-post-navigation+h2+.pq-masonry {
	margin-left: -15px;
	margin-top: 30px;
}

/*++++++++++++++++++++++++++++++++++++++
Counter
+++++++++++++++++++++++++++++++++++++++*/

.pq-counter-box {
	padding: 30px;
	margin-bottom: 30px;
	background-color: var(--white-color);
	position: relative;
}

.pq-counter-box:last-child {
	margin: 0;
}

.pq-counter-box .pq-counter-num-prefix {
	display: flex;
	align-items: center;
}

.pq-counter-box .pq-counter-num-prefix h5 {
	color: var(--primary-color);
	font-size: 56px;
	font-weight: 600;
	line-height: 64px;
}

.pq-counter-box .pq-counter-num-prefix .pq-counter-prefix {
	color: var(--primary-color);
	font-size: 56px;
	font-weight: 600;
	line-height: 64px;
	font-family: var(--title-fonts);
}

.pq-counter-box .pq-counter-box-content .pq-counter-box-title {
	font-size: 26px;
	font-weight: 600;
	line-height: 34px;
	margin: 15px 0 20px 0;
}

.pq-counter-box .pq-counter-box-content .pq-counter-box-description {
	margin: 0;
}

.pq-counter-box .pq-counter-icon {
	position: absolute;
	top: 30px;
	right: 30px;
}

.pq-counter-box .pq-counter-icon i {
	font-size: 64px;
	color: var(--primary-color);
	line-height: 1;
	display: inline-block;
}

.pq-counter-flex-box {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pq-counter.pq-style-1 .pq-counter-top {
	/* display: flex; */
	align-items: center;
}

.pq-counter.pq-style-1 .pq-counter-info {
	/* margin-left: 30px; */
}

.pq-counter.pq-style-1 .pq-counter-media i {
	font-size: 48px;
	line-height: 56px;
	color: var(--primary-color);
}

.pq-counter.pq-style-1 .pq-counter-info h5 {
	font-size: 30px;
	line-height: 54px;
	display: inline-block;
	color: var(--dark-color);
}

.pq-counter.pq-style-1 .pq-counter-info .pq-counter-prefix {
	font-size: 46px;
	line-height: 54px;
	font-family: var(--title-fonts);
	color: var(--dark-color);
	letter-spacing: 1px;
	font-weight: 600;
}

.pq-counter.pq-style-1 .pq-counter-description {
	font-family: var(--title-fonts);
	margin-bottom: 0;
	margin-top: 20px;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 1px;
	color: var(--secondary-color);
}

.pq-counter.pq-counter-style-2 {
	text-align: center;
	padding: 10px 15px;
	border-right: 1px solid #FFFFFF33;
}

.pq-counter.pq-counter-style-2 .pq-counter-num-prefix {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pq-counter.pq-counter-style-2 .pq-counter-num-prefix h5.timer {
	font-size: 69px;
	font-weight: 400;
	line-height: 90px;
	letter-spacing: 1px;
	color: var(--white-color);
}

.pq-counter.pq-counter-style-2 .pq-counter-num-prefix .pq-counter-prefix {
	font-size: 69px;
	line-height: 90px;
	letter-spacing: 1px;
	color: var(--white-color);
	font-family: var(--title-fonts);
}

.pq-counter.pq-counter-style-2 .pq-counter-description {
	margin: 0;
	color: var(--white-color);
	font-family: var(--title-fonts);
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 2.5;
	text-align: center;
}

.pq-counters-box {
	display: flex;
	align-items: center;
}

.pq-counters-box .pq-counter.pq-counter-style-3 {
	margin-right: 60px;
}

.pq-counters-box .pq-counter.pq-counter-style-3:last-child {
	margin-right: 0;
}

.pq-counter.pq-counter-style-3 .pq-counter-num-prefix {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pq-counter.pq-counter-style-3 .pq-counter-num-prefix h5.timer {
	/* color: var(--primary-color); */
	font-family: var(--title-fonts);
	font-size: 52px;
	font-weight: 400;
	line-height: 60px;
	letter-spacing: 1px;
}

.pq-counter.pq-counter-style-3 .pq-counter-num-prefix .pq-counter-prefix {
	color: var(--primary-color);
	font-family: var(--title-fonts);
	font-size: 52px;
	font-weight: 400;
	line-height: 60px;
}

.pq-counter.pq-counter-style-3 .pq-counter-description {
	color: var(--dark-color);
	font-family: var(--title-fonts);
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 2.5;
	text-align: center;
	margin: 0;
}

.pq-counter-boxes {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 90px 40px;
}

.pq-counter.pq-counter-style-4 .pq-counter-num-prefix {
	display: flex;
	align-items: center;
}

.pq-counter.pq-counter-style-4 .pq-counter-num-prefix h5.timer {
	font-size: 60px;
	line-height: 68px;
	font-family: var(--title-fonts);
	font-weight: 600;
	color: var(--primary-color);
}

.pq-counter.pq-counter-style-4 .pq-counter-num-prefix .pq-counter-prefix {
	font-size: 60px;
	line-height: 68px;
	font-family: var(--title-fonts);
	font-weight: 600;
	color: var(--primary-color);
}

.pq-counter-boxes .pq-counter-title {
	color: var(--dark-color);
	font-family: var(--title-fonts);
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	margin-left: 30px;
}

.pq-bg-grey .pq-counter.pq-counter-style-5 {
	background-color: var(--white-color);
}

.pq-counter.pq-counter-style-5 {
	border-radius: 5px;
	text-align: center;
	padding: 60px 30px;
	background-color: var(--grey-color);
}

.pq-counter.pq-counter-style-5 .pq-counter-box-media {
	margin-bottom: 20px;
}

.pq-counter.pq-counter-style-5 .pq-counter-box-media i {
	font-size: 60px;
	line-height: 1;
	display: inline-block;
	color: var(--primary-color);
}

.pq-counter.pq-counter-style-5 .pq-counter-num-prefix {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.pq-counter.pq-counter-style-5 .pq-counter-num-prefix h5.timer {
	color: var(--dark-color);
	font-family: var(--title-fonts);
	font-size: 52px;
	font-weight: 600;
	line-height: 60px;
	letter-spacing: 1px;
}

.pq-counter.pq-counter-style-5 .pq-counter-num-prefix .pq-counter-prefix {
	color: var(--dark-color);
	font-family: var(--title-fonts);
	font-size: 52px;
	font-weight: 600;
	line-height: 60px;
	letter-spacing: 1px;
}

.pq-counter.pq-counter-style-5 .pq-counter-title {
	color: var(--secondary-color);
	font-family: var(--title-fonts);
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/*++++++++++++++++++++++++++++++++++++++
Timeline
+++++++++++++++++++++++++++++++++++++++*/

.pq-timeline-section {
	position: relative;
	margin: 0 90px;
	padding: 0 90px;
}

.pq-timeline-section:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: var(--grey-color);
	width: 100%;
	height: 5px;
}

.pq-timeline-box {
	background: var(--grey-color);
	padding: 30px;
	border-radius: 5px;
	position: relative;
	margin-bottom: 30px;
}

.pq-timeline-title {
	font-size: 26px;
	line-height: 34px;
	margin-bottom: 10px;
}

.pq-timeline-description {
	margin-bottom: 0;
}

.pq-timeline-box:before {
	content: " ";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -30px;
	border: 15px solid transparent;
	border-top-color: var(--grey-color);
}

.pq-timeline-year {
	background: var(--dark-color);
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	color: var(--white-color);
	font-family: var(--title-fonts);
	letter-spacing: 1px;
	font-weight: 600;
	border-radius: 100%;
	margin: 0 auto;
	position: relative;
	font-size: 14px;
}

.pq-timeline-bottom {
	margin-top: 60%;
}

.pq-timeline-bottom .pq-timeline-year {
	background: var(--primary-color);
}

.pq-timeline-bottom .pq-timeline-box {
	margin-bottom: 0;
	margin-top: 30px;
}

.pq-timeline-bottom .pq-timeline-box:before {
	content: " ";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: inherit;
	top: -30px;
	border: 15px solid transparent;
	border-bottom-color: var(--grey-color);
}

.pq-timeline-section .owl-carousel .owl-nav button {
	background: var(--primary-color);
	border-radius: 100%;
}


.pq-timeline-section-slider.pq-style-2 .pq-timeline-section {
	margin: 0;
}

.pq-timeline-section-slider.pq-style-2 .pq-timeline-section:before {
	height: 0.1px;
	background: var(--dark-color);
}

.pq-timeline-section-slider.pq-style-2 .pq-timeline-box {
	padding: 0;
	text-align: center;
	background: transparent;
}

.pq-timeline-section-slider.pq-style-2 .pq-timeline-title {
	color: var(--primary-color);
	font-size: 22px;
	line-height: 30px;
}

.pq-timeline-section-slider.pq-style-2 .pq-timeline-description {
	color: var(--dark-color);
}

.pq-timeline-section-slider.pq-style-2 .pq-timeline-box:before {
	border: none;
	width: 0.1px;
	height: 45px;
	background: var(--dark-color);
	bottom: -60px;
}

.pq-timeline-section-slider.pq-style-2 .pq-timeline-bottom .pq-timeline-box:before {
	top: -60px;
}

.pq-timeline-section-slider.pq-style-2 .pq-timeline-bottom {
	margin-top: 85%;
}

/*+++++++++++++++++++++++++++++++++++++
fancy-box
++++++++++++++++++++++++++++++++++++++*/

.pq-fancy-box.pq-style-1 {
	position: relative;
	overflow: hidden;
}

.pq-fancy-box.pq-style-1 .pq-fancy-media {
	position: relative;
}

.pq-fancy-box.pq-style-1 .pq-fancy-media img {
	width: 100%;
}

.pq-fancy-box.pq-style-1 .pq-fancy-media:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	opacity: 0;
	transition: all 0.5s ease;
}

.pq-fancy-box.pq-style-1:hover .pq-fancy-media:before,
.pq-fancy-box.pq-style-1.active .pq-fancy-media:before {
	opacity: 0.7;
}

.pq-fancy-box.pq-style-1 .pq-fancy-box-info {
	position: absolute;
	bottom: 0;
	left: 40px;
	right: 40px;
	transition: all 0.5s ease;
	opacity: 0;
}

.pq-fancy-box.pq-style-1:hover .pq-fancy-box-info,
.pq-fancy-box.pq-style-1.active .pq-fancy-box-info {
	bottom: 45px;
	opacity: 1;
}

.pq-fancy-box.pq-style-1 .pq-fancy-box-title {
	margin-bottom: 10px;
	margin-top: 20px;
	color: var(--white-color);
}

.pq-fancy-box.pq-style-1 .pq-fancy-box-info .pq-fancy-box-icon {
	width: 84px;
	height: 84px;
	color: var(--white-color);
	font-size: 52px;
	line-height: 84px;
	text-align: center;
	background: var(--primary-color);
	border-radius: 5px;
}

.pq-fancy-box.pq-style-1 .pq-fancybox-description {
	margin-bottom: 20px;
	color: var(--white-color);
}

.pq-fancy-box.pq-style-1 .pq-button-link {
	color: var(--white-color);
}

.pq-fancy-box.pq-style-2 {
	position: relative;
	overflow: hidden;
}

.pq-fancy-box.pq-style-2 .pq-fancy-media {
	position: relative;
}

.pq-fancy-box.pq-style-2 .pq-fancy-media img {
	width: 100%;
}

.pq-fancy-box.pq-style-2 .pq-fancy-box-info:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	opacity: 0;
	transition: all 0.5s ease;
}

.pq-fancy-box.pq-style-2:hover .pq-fancy-box-info:before,
.pq-fancy-box.pq-style-2.active .pq-fancy-box-info:before {
	opacity: 0.7;
}

.pq-fancy-box.pq-style-2 .pq-fancy-box-info {
	position: absolute;
	top: 0;
	left: 100%;
	right: 0;
	transition: all 0.5s ease;
	opacity: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-left: 60px;
	padding-right: 60px;
}

.pq-fancy-box.pq-style-2:hover .pq-fancy-box-info,
.pq-fancy-box.pq-style-2.active .pq-fancy-box-info {
	left: 0;
	opacity: 1;
}

.pq-fancy-box.pq-style-2 .pq-fancy-box-info .pq-fancy-box-icon {
	font-size: 72px;
	line-height: 80px;
	color: var(--primary-color);
	border-radius: 5px;
	position: relative;
}

.pq-fancy-box.pq-style-2 .pq-fancy-box-title {
	margin-bottom: 20px;
	margin-top: 30px;
	color: var(--white-color);
	position: relative;
}

.pq-fancy-box.pq-style-2 .pq-fancy-box-number {
	font-family: var(--title-fonts);
	font-weight: 600;
	letter-spacing: 1px;
	position: absolute;
	top: 45px;
	right: 45px;
	color: var(--grey-color);
	font-size: 62px;
	line-height: 70px;
	opacity: 0.4;
}

.pq-fancy-box.pq-style-2 .pq-fancybox-description {
	margin-bottom: 30px;
	color: var(--white-color);
	position: relative;
}

.pq-fancy-box.pq-style-2 .pq-button-flat {
	background: var(--primary-color);
}

.pq-fancy-box.pq-style-2 .pq-button-flat:hover {
	background: var(--white-color);
	color: var(--dark-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Progressbar
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-progressbar-style-1 .pq-progressbar-content {
	padding-bottom: 20px;
	display: inline-block;
	float: left;
	width: 100%;
}

.pq-progressbar-style-1 .pq-progressbar-content:last-child {
	margin-bottom: 45px;
}

.pq-progressbar-style-1 .progress-title {
	margin: 0;
	font-size: 16px;
	line-height: 24px;
	font-family: var(--title-fonts);
	color: var(--dark-color);
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.pq-progressbar-style-1 .progress-value {
	color: var(--primary-color);
	margin: 0;
	float: right;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	font-family: var(--title-fonts);
	letter-spacing: 1px;
}

.pq-progressbar-style-1 .pq-progress-bar {
	display: inline-block;
	width: 100%;
	padding: 0;
	background: var(--grey-color);
	float: left;
	margin-top: 8px;
}

.pq-progressbar-style-1 .pq-progress-bar span {
	display: inline-block;
	background: var(--secondary-color);
	float: left;
}

.pq-progressbar-box .pq-progressbar-content .pq-progress-bar span {
	height: 8px;
	line-height: 8px;
	background: var(--primary-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Service Single
++++++++++++++++++++++++++++++++++++++++++++++++*/

.service-sidebar .widget:nth-child(2) {
	padding: 0;
}

.widget img {
	border-radius: 0 !important;
}

.widget .menu-service-menu-container {
	background: var(--grey-color);
	border: none;
	box-shadow: none;
}

.widget .menu-service-menu-container .menu {
	margin: 0;
	padding: 0;
}

.widget .menu-service-menu-container .menu li {
	margin: 0 0 10px;
}

.widget .menu-service-menu-container .menu li:last-child {
	margin: 0;
}

.widget .menu-service-menu-container .menu li a {
	padding: 20px;
	border: none;
	background: var(--white-color);
	display: inline-block;
	width: 100%;
	position: relative;
	font-family: var(--title-fonts);
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	color: var(--dark-color);
	border-radius: 5px;
	letter-spacing: 1px;
}

.widget .menu-service-menu-container .menu li a:before {
	content: '\f054';
	font-family: "Font Awesome 6 Free";
	font-weight: 700;
	font-size: 12px;
	right: 20px;
	left: auto;
	top: 24px;
	position: absolute;
	color: inherit;
	line-height: normal;
}

.widget .menu-service-menu-container .menu li a:hover,
.widget .menu-service-menu-container .menu li.current-menu-item a {
	background: var(--primary-color);
	color: var(--white-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
List Check
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-list-check {
	margin: 0;
	padding: 0;
}

.pq-list-check li {
	list-style: none;
	display: flex;
	align-items: center;
	padding-bottom: 5px;
}

.pq-list-check li:last-child {
	padding-bottom: 0;
}

.pq-list-check li i {
	color: var(--primary-color);
	font-size: 14px;
	margin-right: 10px;
}

.pq-bg-dark .pq-list-check li span {
	color: var(--white-color);
}

.pq-single-list-check {
	margin: 0;
	padding: 0;
}

.pq-single-list-check li {
	list-style: none;
	display: flex;
	align-items: center;
	padding-bottom: 5px;
}

.pq-single-list-check li:last-child {
	padding-bottom: 0;
}

.pq-single-list-check li i {
	color: var(--dark-color);
	font-size: 20px;
	margin-right: 10px;
}

.pq-contact-list {
	margin: 0;
	padding: 0;
}

.pq-contact-list li {
	list-style: none;
	display: flex;
	align-items: center;
}

.pq-contact-list li:nth-child(2) {
	margin: 10px 0;
}

.pq-contact-list li i {
	font-size: 30px;
	margin-right: 10px;
	color: var(--dark-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Icon Boxes
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-icon-box.pq-style-1 {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.pq-icon-box.pq-style-1 .pq-icon img {
	/* margin-right: 20px; */
	display: block;
	margin: 0 auto;

}

.pq-icon-box-content p {
	margin: 0;
}

/* .pq-icon-box.pq-style-1 .pq-icon i {
	font-size: 64px;
	line-height: 1;
	display: inline-block;
	color: var(--primary-color);
} */

.pq-icon-box.pq-style-2 {
	display: flex;
}

.pq-icon-box.pq-style-2 .pq-icon {
	margin-right: 30px;
}

.pq-icon-box.pq-style-2 .pq-icon i {
	font-size: 64px;
	line-height: 1;
	display: inline-block;
	color: var(--primary-color);
}

.pq-icon-box.pq-style-2 .pq-icon-box-content .pq-icon-box-description {
	margin: 0;
}

.pq-icon-box.pq-style-3 {
	text-align: center;
	padding: 0 45px;
}

.pq-icon-box.pq-style-3 .pq-icon {
	margin-bottom: 30px;
}

.pq-icon-box.pq-style-3 .pq-icon i {
	font-size: 64px;
	line-height: 1;
	display: inline-block;
	color: var(--primary-color);
}

.pq-icon-box.pq-style-3 .pq-icon-box-content .pq-icon-box-title {
	margin-bottom: 15px;
	color: var(--white-color);
}

.pq-icon-box.pq-style-3 .pq-icon-box-content .pq-icon-box-description {
	color: var(--white-color);
	font-family: var(--title-fonts);
	font-size: 24px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 32px;
	margin: 0;
}

.pq-icon-box.pq-style-4 {
	text-align: center;
	padding: 0 45px;
}

.pq-icon-box.pq-style-4 .pq-icon {
	margin-bottom: 30px;
}

.pq-icon-box.pq-style-4 .pq-icon i {
	font-size: 64px;
	color: var(--white-color);
	background-color: var(--primary-color);
	display: inline-block;
	width: 128px;
	height: 128px;
	line-height: 128px;
	text-align: center;
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
}

.pq-icon-box.pq-style-4 .pq-icon i:hover {
	background-color: var(--dark-color);
}

.pq-icon-box.pq-style-4.active .pq-icon i {
	background-color: var(--dark-color);
}

.pq-icon-box.pq-style-4.active .pq-icon i:hover {
	background-color: var(--primary-color);
}

.pq-icon-box.pq-style-4 .pq-icon-box-description {
	margin: 0;
	color: var(--dark-color);
	font-family: var(--title-fonts);
	font-size: 24px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 32px;
}

.pq-bg-grey .pq-icon-box.pq-style-4 .pq-icon i:hover {
	background-color: var(--primary-color);
	color: #69727d;
}

.pq-icon-box.pq-style-5 {
	display: flex;
	align-items: center;
	margin-left: 20px;
}

.pq-icon-box.pq-style-5 .pq-icon {
	margin-right: 15px;
}

.pq-icon-box.pq-style-5 .pq-icon a i {
	font-size: 40px;
	line-height: 1;
	display: inline-block;
	color: var(--dark-color);
}

.pq-icon-box.pq-style-5 .pq-icon a:hover i {
	color: var(--dark-color);
}

.pq-icon-box.pq-style-5 .pq-icon-box-content .pq-icon-box-title a:hover {
	color: var(--dark-color);
}

.pq-icon-box.pq-style-6 {
	display: flex;
	align-items: center;
}

.pq-icon-box.pq-style-6 .pq-icon {
	margin-right: 20px;
}

.pq-icon-box.pq-style-6 .pq-icon i {
	color: var(--white-color);
	font-size: 50px;
	display: inline-block;
	line-height: 1;
}

.pq-icon-box.pq-style-6 .pq-icon-box-content .pq-icon-box-title {
	margin-bottom: 5px;
	color: var(--white-color);
}

.pq-icon-box.pq-style-6 .pq-icon-box-content .pq-icon-box-description {
	margin: 0;
	color: var(--white-color);
}

.pq-bg-grey .pq-icon-box.pq-style-6 .pq-icon i {
	color: var(--primary-color);
}

.pq-bg-grey .pq-icon-box.pq-style-6 .pq-icon-box-content .pq-icon-box-title {
	color: var(--dark-color);
}

.pq-bg-grey .pq-icon-box.pq-style-6 .pq-icon-box-content .pq-icon-box-description {
	color: var(--dark-color);
}

.pq-icon-box.pq-style-7 {
	display: flex;
	align-items: center;
}

.pq-icon-box.pq-style-7 .pq-icon {
	margin-right: 20px;
}

.pq-icon-box.pq-style-7 .pq-icon i {
	font-size: 64px;
	line-height: 1;
	display: inline-block;
	color: var(--primary-color);
}

.pq-icon-box.pq-style-7 .pq-icon-box-content .pq-icon-box-description {
	margin: 0;
}

.pq-icon-box.pq-style-8 {
	display: flex;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #ffffff1a;
}

.pq-icon-box.pq-style-8:last-child {
	border: none;
	margin: 0;
	padding: 0;
}

.pq-icon-box.pq-style-8 .pq-icon {
	margin-right: 30px;
}

.pq-icon-box.pq-style-8 .pq-icon i {
	font-size: 26px;
	color: var(--primary-color);
	width: 62px;
	height: 62px;
	line-height: 52px;
	display: inline-block;
	text-align: center;
	border: 3px solid var(--primary-color);
	border-radius: 100%;
}

.pq-icon-box.pq-style-8 .pq-icon-box-content .pq-icon-box-title {
	color: var(--white-color);
	margin-bottom: 10px;
}

.pq-icon-box.pq-style-8 .pq-icon-box-content .pq-icon-box-description {
	color: var(--white-color);
	margin-bottom: 15px;
}

.pq-icon-box.pq-style-8 .pq-icon-box-content .pq-button.pq-button-link {
	color: var(--primary-color);
}

.pq-icon-box.pq-style-9 {
	display: flex;
	padding-bottom: 30px;
	margin-right: 15px;
	border-bottom: 1px solid #0000001a;
}

.pq-icon-box.pq-style-9 .pq-icon {
	margin-right: 20px;
}

.pq-icon-box.pq-style-9 .pq-icon a i {
	font-size: 40px;
	width: 80px;
	height: 80px;
	line-height: 80px;
	display: inline-block;
	text-align: center;
	background-color: var(--primary-color);
	color: var(--white-color);
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
}

.pq-icon-box.pq-style-9 .pq-icon a:hover i {
	color: var(--white-color);
	background-color: var(--dark-color);
}

.pq-icon-box.pq-style-9 .pq-icon-box-content .pq-icon-box-title {
	margin-bottom: 5px;
}

.pq-icon-box.pq-style-9 .pq-icon-box-content .pq-icon-box-description {
	margin: 0;
}

.pq-icon-box.pq-style-9 .pq-icon-box-content .pq-icon-box-title a:hover {
	color: var(--dark-color);
}

.pq-icon-box.pq-style-10 {
	display: flex;
	align-items: center;
}

.pq-icon-box.pq-style-10 .pq-icon {
	margin-right: 15px;
	display: flex;
}

.pq-icon-box.pq-style-10 .pq-icon i {
	font-size: 24px;
	display: inline-block;
	line-height: 1;
	color: var(--primary-color);
}

.pq-icon-box.pq-style-10 .pq-icon-box-content .pq-icon-box-description {
	margin: 0;
}

.pq-icon-box.pq-style-11 {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pq-icon-box.pq-style-11 .pq-icon i {
	font-size: 32px;
	display: inline-block;
	width: 64px;
	height: 64px;
	line-height: 74px;
	text-align: center;
	color: var(--white-color);
	background-color: var(--primary-color);
	border-radius: 5px 0 0 5px;
}

.pq-icon-box.pq-style-11 .pq-icon-box-content {
	border: 1px solid #ffffff33;
	border-left: 0;
	padding: 15px 15px 20px 15px;
	border-radius: 0 5px 5px 0;
}

.pq-icon-box.pq-style-11 .pq-icon-box-content .pq-icon-box-title {
	color: var(--white-color);
}

.pq-icon-box.pq-style-11 .pq-icon-box-content .pq-icon-box-title a:hover {
	color: var(--white-color);
}

.pq-contact-box {
	padding: 30px;
	border: 1px solid var(--primary-color);
	border-radius: 5px;
	display: flex;
	margin-bottom: 40px;
}

.pq-contact-box:hover {
	border: 1px solid var(--dark-color);
}

.pq-contact-box .pq-contact-box-icon {
	margin-right: 20px;
}

.pq-contact-box .pq-contact-box-icon i {
	font-size: 40px;
	display: inline-block;
	width: 90px;
	height: 90px;
	line-height: 100px;
	color: var(--white-color);
	background-color: var(--primary-color);
	text-align: center;
	border-radius: 100%;
	transition: all 0.3s ease-in-out;
}

.pq-contact-box .pq-contact-box-icon i:hover {
	transform: scale(0.9);
	background-color: var(--dark-color);
}

.pq-contact-box .pq-contact-box-content .pq-contact-box-description {
	margin: 0;
}

.pq-contact-box:last-child {
	margin-bottom: 0;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Background Images
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-bg-img-1:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/background-images/1.jpg);
	opacity: 0.02;
}

.pq-bg-img-2:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/background-images/2.png);
	background-position: bottom left;
	background-attachment: fixed;
	background-size: 60% auto;
	background-repeat: no-repeat;
	opacity: 0.1;
}

.pq-bg-img-3:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/background-images/1.jpg);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: auto;
	opacity: 0.03;
}

.team.pq-bg-img-3:before {
	background-position: center center;
}

.pq-bg-img-4:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/background-images/3.png);
	background-position: bottom left;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.pq-video-popup-img-1 {
	background-image: url(../images/video-popup/1.png);
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 1;
}

.pq-video-popup-img-2 {
	background-image: url(../images/video-popup/2.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 1;
}

.pq-video-popup-img-3 {
	background-image: url(../images/video-popup/3.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 1;
	border-radius: 5px;
}

.pq-video-popup-img-4:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/video-popup/4.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.4;
	border-radius: 5px;
}

.pq-contact-bg-img {
	background-image: url(../images/background-images/contact-bg-img.jpg);
	background-size: cover;
	background-position: center center;
	min-height: 100%;
	position: relative;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Custom CSS
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-mb-30 {
	margin-bottom: 30px;
}

.pq-about-us-img {
	position: relative;
}

.pq-about-us-img-1 {
	width: 100%;
	position: relative;
	border-radius: 5px;
}

.pq-about-us-img-2 {
	position: absolute;
	border-radius: 5px;
	right: 0;
	bottom: -23%;
	width: 62%;
}

.pq-mb-45 {
	margin-bottom: 45px;
}

.pq-sticky-top {
	position: sticky;
	top: 130px;
	z-index: 1;
}

.pq-py-300 {
	padding: 300px 0;
}

.pq-px-30 {
	padding: 0 30px;
}

.pq-form-div {
	padding: 7% 15% 7% 15%;
}

.pq-contact-sub-title {
	padding: 18px 45px;
	background-color: var(--dark-color);
	color: var(--white-color);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-transform: uppercase;
	position: absolute;
	bottom: 185px;
	left: 60px;
	border-radius: 5px 5px 0 0;
}

.pq-contact-title {
	position: absolute;
	bottom: 90px;
	left: 60px;
	padding: 30px 30px 30px 45px;
	border-radius: 0 5px 5px 5px;
	background-color: var(--primary-color);
	color: var(--white-color);
	width: 50%;
}

.pq-pe-60 {
	padding-right: 60px;
}

.pq-pe-30 {
	padding-right: 30px;
}

.pq-mb-40 {
	margin-bottom: 40px;
}

.pq-ps-30 {
	padding-left: 30px;
}

.button-align-center {
	text-align: center;
}

.button-align-center .pq-button {
	color: var(--dark-color);
	background-color: var(--white-color);
}

.button-align-center .pq-button:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.legal .pq-sticky-top .pq-button {
	color: var(--dark-color);
	background-color: var(--white-color);
}

.legal .pq-sticky-top .pq-button:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.pq-mb-60 {
	margin-bottom: 60px;
}

.pq-testimonial-div {
	padding: 130px 60px 0 15px;
}

.pq-testimonial-img-div {
	text-align: right;
	padding: 90px 15px 0 60px;
}

.pq-ps-60 {
	padding-left: 60px;
}

.pq-faq-img-overflow {
	margin-left: -365px;
}

.process.pq-bg-dark .pq-button {
	background-color: var(--white-color);
	color: var(--dark-color);
}

.process.pq-bg-dark .pq-button:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.team.pq-bg-dark .pq-button {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.team.pq-bg-dark .pq-button:hover {
	background-color: var(--white-color);
	color: var(--dark-color);
}

.team.pq-bg-dark .pq-button.pq-button-icon {
	background-color: transparent;
}

.divider {
	border-bottom: 1px solid #0000001a;
}

.our-team.pq-bg-dark .pq-button {
	background-color: var(--white-color);
	color: var(--dark-color);
}

.our-team.pq-bg-dark .pq-button:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.pq-mt-n-190 {
	margin-top: -190px;
}

.pq-mt-n-155 {
	margin-top: -155px;
}

.pq-mb-n-90 {
	margin-bottom: -90px;
}

.pq-pb-90 {
	padding-bottom: 90px;
}



.pq-service-sub-title {
	font-family: var(--title-fonts);
	font-size: 24px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 32px;
	color: var(--primary-color);
}

.pq-service-main-title {
	font-weight: 600;
	font-size: 42px;
	line-height: 60px;
	z-index: 9;
	color: var(--dark-color);
	padding: 0;
	margin: 0 0;
	position: relative;
	display: block;
	padding: 0 2em;
	margin: 0 90px;
}

.pq-about-us-img-3 {
	width: 75%;
	position: relative;
	border-radius: 5px;
}

.pq-about-us-img-4 {
	position: absolute;
	border-radius: 5px;
	right: 0;
	bottom: -4%;
	width: 60%;
}

.about-us.pq-bg-dark .pq-button {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.about-us.pq-bg-dark .pq-button:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.pq-py-90 {
	padding: 90px 0;
}

.pq-counter-section-description {
	color: var(--white-color);
	margin: 0;
}

.pq-help-div {
	padding: 70px 60px 0 15px;
}

.pq-help-link-div {
	display: flex;
	align-items: center;
}

.pq-help-link-div .pq-button {
	background-color: var(--primary-color);
}

.pq-help-link-div .pq-button:hover {
	background-color: var(--dark-color);
}

.pq-appointment-div {
	padding: 45px;
	display: flex;
	min-height: 100%;
}

.pq-py-200 {
	padding: 200px 0;
}

.pq-px-40 {
	padding: 0 40px;
}

.pq-mt-90 {
	margin-top: 90px;
}

.pq-pe-90 {
	padding-right: 90px;
}

.pq-applyform input,
.pq-applyform textarea {
	margin-bottom: 20px;
	background-color: var(--white-color);
}

.pq-applyform textarea {
	height: 140px;
}

.pq-applyform .pq-button {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.pq-applyform .pq-button:hover {
	background-color: var(--dark-color);
	color: var(--white-color);
}

.service-single img {
	border-radius: 5px;
}

.pq-service-single-title {
	margin-bottom: 10px;
}

.pq-mb-20 {
	margin-bottom: 20px;
}

.portfolio-single .owl-carousel img {
	border-radius: 5px;
}

.portfolio-single .owl-carousel .owl-nav button.owl-prev {
	margin-left: 0;
	background-color: transparent;
}

.portfolio-single .owl-carousel .owl-nav button.owl-next {
	margin-right: 0;
	background-color: transparent;
}

.gallery img {
	border-radius: 10px;
}

.comment-form input,
.comment-form textarea {
	margin-bottom: 30px;
}

.map {
	line-height: 0;
}

.map iframe {
	width: 100%;
	border: 0;
	height: 300px;
	border-radius: 5px;
}

.contact-form input,
.contact-form textarea {
	background-color: var(--white-color);
	margin-bottom: 20px;
}

.contact-form textarea {
	height: 150px;
}

.contact-form .pq-button {
	display: block;
	text-align: center;
	background-color: var(--primary-color);
	color: var(--white-color);
}

.contact-form .pq-button:hover {
	background-color: var(--white-color);
	color: var(--dark-color);
}

.pq-contact-form-div {
	padding: 45px;
	margin-left: 30px;
	background-color: var(--grey-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100%;
	border-radius: 5px;
}

.pq-contact-form-title {
	margin-bottom: 30px;
}

.pq-py-60 {
	padding: 60px 0;
}

.button-align {
	text-align: end;
}

.button-align .pq-button {
	background-color: var(--white-color);
	color: var(--dark-color);
}

.button-align .pq-button:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.video-popup-img {
	padding: 300px 0;
	border-radius: 5px;
}

.pq-pb-130 {
	padding-bottom: 130px;
}

.pq-border-left {
	border-left: 1px solid #0000001a;
}

.pq-faq-img-right-overflow {
	margin-right: -450px;
}

.pq-faq-div {
	padding: 130px 60px 0 15px;
}

.faq.pq-bg-dark .pq-button {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.faq.pq-bg-dark .pq-button:hover {
	color: var(--dark-color);
	background-color: var(--white-color);
}

.pq-mt-n-90 {
	margin-top: -90px;
}

.pq-ms-n-10 {
	margin-left: -10%;
}

.pq-team-sinlge-social a i {
	color: var(--dark-color);
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	background-color: var(--grey-color);
	text-align: center;
	border-radius: 100%;
	transition: all 0.5s ease-in-out;
}

.pq-team-sinlge-social a i:hover {
	color: var(--white-color);
	background-color: var(--primary-color);
}

.pq-team-sinlge-social a+a {
	margin-left: 15px;
}

.pq-mt-45 {
	margin-top: 45px;
}

.pq-form input,
.pq-form textarea {
	margin-bottom: 20px;
}

.pq-form textarea {
	height: 200px;
}

.pq-pt-60 {
	padding-top: 60px;
}

.no-gutters {
	margin: 0;
}



/* --------------------------------geeta----------------------------- */
.login-btn {
	background-color: #007bff;
	color: white;
	border-radius: 10px;
	/* 20px border radius */
	border: none;
	padding: 4px 17px;
	font-size: 16px;
	/* Adjust font size */
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-left: 10px;
}

.login-btn:hover {
	background-color: #0056b3;
}

.bg-img {
	background-image: url(https://www.legalkart.com/frontend/client_base_web/layout-optim/home-revamp/images/hero-banner1.webp);
	width: 100%;
	height: 900px;
	background-repeat: no-repeat;
}

/* ----------------------------footer---------------------------- */


a:hover .footer-title {
	color: #007bff;
	/* Change color on hover if desired */
}


/* ----------------banner------------------- */
.carousel-item img {
	height: 100vh;
	width: 100%;
}


.carousel-item {
	height: 500px;
	background-size: cover;
	background-position: center;
}

@media (max-width: 767px) {
	.heading-banner {
		height: 200px;
	}
}

.carousel-control-prev,
.carousel-control-next {
	position: absolute;
	top: 50%;
	z-index: 10;
	transform: translateY(-50%);
	font-size: 30px;
	color: white;
}

.carousel-control-prev {
	left: 10px;
}

.carousel-control-next {
	right: 10px;
}

.carousel-caption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 30px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	text-align: center;
}

@media (max-width: 767px) {
	.carousel-caption {
		font-size: 20px;
		padding: 10px;
	}

	.heading-banner {
		font-size: 19px;
		margin-top: 0px;

	}

	.but-banner,
	.button-banner {
		font-size: 14px;
		padding: 10px 20px;
	}

	.carousel-item {
		height: 250px;
	}
}

@media (max-width:600px) {
	.but-banner {
		font-size: 10px;
		padding: 0px;
		font-weight: normal;
		margin: 0px 0px;

	}
}

.but-banner {
	font-size: 17px;
	border-radius: 20px;
	border-block-end-color: rgb(167, 54, 54);
	color: #ffffff;
	background-color: rgba(153, 155, 203, .23);
	margin: 30px 0px;
	padding: 0px 10px;
	font-weight: bold;
}

.button-banner {
	border-radius: 10px;
	font-size: medium;
	padding: 10px 20px;
	border-block-end-color: red;
	background-color: #0056b3;
	color: #ffffff;
	font-weight: bold;

}

.heading-banner {
	color: #ffffff;
	/* margin-bottom: 20px; */
	/* margin-top: 50px; */
}

@media (max-width:720px) {
	.heading-banner-item h1 {
		line-height: 20px;
	}
}

.carousel-control-prev {
	background-color: transparent;
}

.carousel-control-prev:hover {
	background-color: transparent;
}

.carousel-control-next {
	background-color: transparent;

}

.carousel-control-next:hover {
	background-color: transparent;
}

/* Ensure buttons are below the navbar for screens between 1398px and 1016px */
@media (max-width: 1398px) and (min-width: 1016px) {

	.pq-bottom-header .pq-btn-container,
	.pq-bottom-header .navbar .login-btn {
		display: block;
		text-align: center;
		/* Center the buttons */
		margin-top: 10px;
		/* Space between navbar and buttons */
	}

	/* Adjust the position of the buttons if needed */
	.pq-bottom-header .pq-btn-container {
		margin-top: 15px;
	}

	.pq-bottom-header .navbar .login-btn {
		margin-top: 10px;
	}

	/* Ensuring the navbar does not overlap the buttons */
	.navbar-collapse {
		margin-bottom: 20px;
	}
}


/* -----------------------sales Agreement---- */

.breadcrumb-container {
	width: 100%;
	height: 400px;
	background-image: url('https://www.legalkart.com/frontend/client_base_web/layout-optim/home-revamp/images/hero-banner2.webp');
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.breadcrumb {
	font-size: 16px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	margin-top: 70px;
	padding-right: 980px;
}

.sale-agree-form {
	border: 2px solid #0a1d35;
	/* Blue border */
	padding: 20px;
	border-radius: 8px;
	/* Optional: for rounded corners */
}

.sale-agree-form .form-control {
	border: 1px solid blue;
	/* Blue border for inputs */
}

.sale-agree-head h1 {
	/* color: #0a1d35; */
	color: var(--bs-indigo);
	font-size: 26px;
	text-align: center;
}

.bg-sale-agree {
	background-color: #0a1d35;
	padding: 45px;
	border-radius: 20px;

}

@media (max-width:646px) {
	.bg-sale-agree {

		padding: 21px;
	}

	.bg-sale-agree h1 {

		font-size: 30px;
	}



}

.bg-sale-agree h1 p {
	color: #ffffff;
}

.text-justify {
	text-align: justify;
}

.sale-agree-button {
	text-decoration: none;
	background-color: #007bff;
	color: #ffffff;
	border-radius: 10px;
}



.sale-agree-padding {
	margin-bottom: 0px;
	text-align-last: center;
}



/* ---------------------------- */

h1 {
	font-weight: 700;
	font-size: 45px;
	font-family: 'Roboto', sans-serif;
}

.header {
	margin-bottom: 80px;
}

#description {
	font-size: 20px;
}

.form-wrap {
	background: rgba(255, 255, 255, 1);
	width: 100%;
	max-width: 850px;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}

.form-wrapp {
	background: rgba(255, 255, 255, 1);
	width: 100%;
	max-width: 850px;
	padding: 50px;
	/* margin: 0 auto; */
	position: relative;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}

.form-wrapp:before {
	content: "";
	width: 90%;
	height: calc(100% + 60px);
	left: 0;
	right: 0;
	margin: 0 auto;
	position: absolute;
	top: -30px;
	background: #00bcd9;
	z-index: -1;
	opacity: 0.8;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}


.form-wrap:before {
	content: "";
	width: 90%;
	height: calc(100% + 60px);
	left: 0;
	right: 0;
	margin: 0 auto;
	position: absolute;
	top: -30px;
	background: #4ea006;
	z-index: -1;
	opacity: 0.8;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}

.form-group {
	margin-bottom: 25px;
}

.form-group>label {
	display: block;
	font-size: 18px;
	color: #000;
}

.custom-control-label {
	color: #000;
	font-size: 16px;
}

.form-control {
	height: 50px;
	background: #ecf0f4;
	border-color: transparent;
	padding: 0 15px;
	font-size: 16px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.form-control:focus {
	border-color: #00bcd9;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

textarea.form-control {
	height: 160px;
	padding-top: 15px;
	resize: none;
}

.btn {
	padding: .657rem .75rem;
	font-size: 18px;
	letter-spacing: 0.050em;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.btn-primary {
	color: #fff;
	background-color: #4ea006;
	border-color: #4ea006;
}

.btn-primary:hover {
	color: #4ea006;
	background-color: #ffffff;
	border-color: #4ea006;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.btn-primary:focus,
.btn-primary.focus {
	color: #4ea006;
	background-color: #ffffff;
	border-color: #4ea006;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
	color: #4ea006;
	background-color: #ffffff;
	border-color: #4ea006;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-primary.dropdown-toggle:focus {
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.inclusive-form h2 {
	font-size: 15px;

	color: #4ea006;
}



/* -----------------------------card---------------- */
@media (max-width:600px) {
	.card-head-glow h2 {
		font-size: 17px;
	}
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;600&family=Poppins:wght@400;500&display=swap");



:root {
	--gradient: conic-gradient(from 90deg at 50% 50%,
			rgb(41, 232, 235),
			rgba(60, 249, 135, 1));
}

.card-glow {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0;
	background-color: #f3f3f3;
	padding: 20px 0;
	justify-content: center;
	align-items: center;
}

.card-glow {
	--x: 0px;
	--y: 0px;
	padding: 2rem 5rem;
}

.card-glow .card {
	--start: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 280px;
	height: 350px;
	margin: 10px;
	padding: 20px;
	background: radial-gradient(circle at var(--x) var(--y), #57ac0c, #0a1d35);
	border-radius: 14px;
	transition: border-color 0.3s ease-in-out;

}

.card-glow .card p {
	text-align: center;
}

.card-glow:hover .card {
	background: radial-gradient(circle at var(--x) var(--y), #57ac0c, #0a1d35);
}

.card-glow .card::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 14px;
	border: 2px solid transparent;
	background: var(--gradient);
	background-attachment: fixed;
	mask: linear-gradient(#0000, #0000),
		conic-gradient(from calc((var(--start) - (20 * 1.1)) * 1deg),
			#ffffff1f 0deg,
			white,
			#ffffff00 100deg);
	mask-composite: intersect;
	mask-clip: padding-box, border-box;
	opacity: 0;
	transition: 0.5s ease;
	box-shadow: 0 0 2px #00f0ff33 inset, 0 0 5px #0005;
}

.card-glow .glow {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	filter: blur(14px);
}

.card-glow .glow::before {
	position: absolute;
	content: "";
	width: 98%;
	height: 98%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 14px;
	border: 15px solid transparent;
	background: var(--gradient);
	background-attachment: fixed;
	mask: linear-gradient(#0000, #0000),
		conic-gradient(from calc((var(--start) - (20 * 1.1)) * 1deg),
			#ffffff1f 0deg,
			white,
			#ffffff00 100deg);
	mask-composite: intersect;
	mask-clip: padding-box, border-box;
	opacity: 0;
	transition: 1s ease;
}

.card-glow .card:hover>.glow::before {
	opacity: 1;
}

.card-glow .card:hover::before {
	opacity: 1;
}

h1 {
	/* font-size: 65px; */
	color: rgb(71, 71, 71);
	text-align: center;
	font-weight: 600;
}


.breadcrumb-head {
	font-size: 40px;
}


.card-glow-head {
	font-size: 16px;
	color: #ffffff;

}

.card-glow-text {
	font-size: 13px;
	text-align-last: center;
	color: rgb(211, 209, 209);

	font-weight: 400;
}


/* --------------------------key cpomponentns----------------- */


/* General Styles */


/* body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.6;
	background-color: #f4f4f4;
	color: #333;
  } */


.head-key {
	color: #0056b3;
	margin-bottom: 24px;
}

@media (max-width:600px) {
	.head-key {
		font-size: 25px;
	}
}

.key-main {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* Header */
/* header {
	background-color: #333;
	color: #fff;
	padding: 20px 0;
  }
  
  header h1 {
	text-align: center;
	font-size: 2rem;
  } */

/* Main Content */


.intro p {
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: #555;
	margin-top: 20px;

}

.components ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.components li {
	background-color: #fff;
	margin-bottom: 15px;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.components strong {
	font-weight: 600;
}




/* Responsive Styles */
/* @media (max-width: 768px) {
	header h1 {
	  font-size: 1.5rem;
	}
  
	.key-main {
	  width: 95%;
	}
  
	.components li {
	  padding: 10px;
	  font-size: 1rem;
	}
  }
  
  @media (max-width: 480px) {
	header h1 {
	  font-size: 1.2rem;
	}
  
	.components li {
	  padding: 8px;
	  font-size: 0.9rem;
	}
  
	.footer p {
	  font-size: 0.9rem;
	}
  } */
/* -----------check out our other products---------------- */
.checkout-main {
	/* margin-bottom: 40px; */
}

.checkout-gap {
	margin-top: 30px;
}

.box-checkout {
	background-color: #0a1d35;
	padding: 20px;
	border-radius: 10px;
}

.checkout {
	background-color: #003366;
	/* Dark Blue */
	padding: 20px;
	text-align: center;
	margin-right: 20px;
	border: 2px solid #003366;
}

.checkout-text {
	margin-bottom: 0px;
	color: #ffff;
}

.btn-buy {
	background-color: #58ad0d;
	color: white;
	border: none;
	padding: 5px 10px;
	font-size: 16px;
	border-radius: 10px;
}

.btn-buy-right {
	margin-top: 30px;
}

.btn-buy:hover {
	background-color: #0056b3;
}

.checkout-head {
	color: #ffffff;
	text-align: center;
}

@media (max-width:600px) {
	.checkout-head {
		font-size: 20px;
	}

	.checkout-text {
		font-size: 15px;
	}
}


.custom-section {
	background-color: #f7f7f7;
	padding: 50px 0;
	text-align: center;
	margin-top: 20px;
}

.custom-section img {
	max-width: 100%;
	height: auto;
}

.heading {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 30px;
}

.btn-custom {
	background-color: #007bff;
	color: white;
	padding: 12px 30px;
	font-size: 0.8rem;
	border-radius: 5px;
	text-transform: uppercase;
	font-weight: bold;
}

.btn-custom:hover {
	background-color: #0056b3;
	color: #fff;
	text-decoration: none;
}

.image-container {
	margin-top: 30px;
}



/* ---------------Ec review------------------- */
.breadcrumb-ec-review {
	width: 100%;
	height: 400px;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	background-image: url('https://www.legalkart.com/frontend/client_base_web/layout-optim/home-revamp/images/hero-banner3.webp');
}

/* -------deed review--- */


.breadcrumb-deed {
	width: 100%;
	height: 400px;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	background-image: url('https://media.istockphoto.com/id/956243400/photo/close-up-lawyer-businessman-working-or-reading-lawbook-in-office-workplace-for-consultant.jpg?s=612x612&w=0&k=20&c=4kefBJNk1H0Y3hDUU_MmAEkqcJavLPlB6IhVB5C7UVk=');

}


.property-verification {
	width: 100%;
	height: 400px;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	background-image: url('https://media.istockphoto.com/id/956243400/photo/close-up-lawyer-businessman-working-or-reading-lawbook-in-office-workplace-for-consultant.jpg?s=612x612&w=0&k=20&c=4kefBJNk1H0Y3hDUU_MmAEkqcJavLPlB6IhVB5C7UVk=');
}

/* -------------------properties verification----------------- */
.properties {
	background-color: #0a1d35;
}

.timer-img {
	width: 80px;
	text-align: center;
}

.proper-heading {
	font-size: 30px;
	margin-bottom: 50px;
}

/* ------------------checkout form----------------- */

.form-text {
	margin-bottom: 0px;
}

.bg-col {
	background-color: #69a7e4 !important;
}

.form-groupp {
	align-items: center;
}

.input-wrapperr {
	position: relative;
	display: flex;
	align-items: center;
}

.input-wrapperr input {
	padding-left: 350px;
}

.currency {
	color: #ffffff !important;
	font-size: 20px;
	font-weight: bold;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.input-wrapperr .currency {
	position: absolute;
	left: 35px;
	font-size: 14px;
	color: #888;
}

button.bg-success {
	border: none;
	outline: none;
}

.form-button {
	margin-left: 300px;
	border-radius: 7px;
}


/* ----------------talk to lawyers --------------------- */




.talk-lawyers {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
}

.card-wrapperes {
	max-width: 1100px;
	margin: 0 60px 35px;
	padding: 20px 10px;
	overflow: hidden;
}

.card-list .card-item {
	list-style: none;
}

.card-list .card-item .card-link {
	user-select: none;
	display: block;
	background: #fff;
	padding: 18px;
	border-radius: 12px;
	text-decoration: none;
	border: 2px solid transparent;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
	transition: 0.2s ease;
}

.card-list .card-item .card-link:active {
	cursor: grabbing;
}

.card-list .card-item .card-link:hover {
	border-color: #5372f0;
}

.card-list .card-link .card-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 10px;
}

.card-list .card-link .badge {
	color: blue;
	margin: 16px 0 18px;
	padding: 8px 16px;
	font-weight: 500;
	font-size: 0.95rem;
	background: #dde4ff;
	width: fit-content;
	border-radius: 50px;
}

.card-list .card-link .card-title {
	font-size: 16px;
	color: #000;
	font-weight: 100;
}

.card-list .card-link .card-button {
	height: 35px;
	width: 35px;
	color: #5372f0;
	border-radius: 50%;
	margin: 30px 0 5px;
	background: none;
	cursor: pointer;
	transform: rotate(-45deg);
	border: 2px solid #5382f0;
	transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
	color: #fff;
	background: #5372f0;
}

.card-wrapper .swiper-pagination-bullet {
	height: 13px;
	width: 13px;
	opacity: 0.5;
	background: #5372f0;
}

.card-wrapper .swiper-pagination-bullet-active {
	opacity: 1;
}

.card-wrapper .swiper-slide-button {
	color: #5372f0;
	margin-top: -35px;
}

@media screen and (max-width: 768px) {
	.card-wrapper {
		margin: 0 10px 25px;
	}

	.card-wrapper .swiper-slide-button {
		display: none;
	}
}


/* lawyers click here navbar------------------------- */
/* General styling for login page */
/* .login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f9;

}
.login-img-height{
	margin-top: 40px;
	margin-bottom: 40px;
}
.row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-6 {
    flex: 1;
    max-width: 50%;
}

.img-fluid {
    height: auto;
	height: 465px;
	width: 500px;
	margin-left: 90px;
}

.login-container {
    max-width: 400px;
    margin: 0;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-container h3 {
    text-align: center;
    margin-bottom: 20px;
}

.btn-custom {
    background-color: #007bff;
    color: white;
    width: 100%;
    border: none;
    padding: 10px;
}

.btn-custom:hover {
    background-color: #0056b3;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.login-heading{
	font-size: 24px;
}

.forgot-password {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.register-container {
    display: flex;
    align-items: center; 
    gap: 5px; 
}

.register-container p {
    margin: 0; 
} */


/* login-user---------------------- */
body-login {
	background-color: #f7f7f7;
	height: 100vh;
}

.login-container {
	/* max-width: 500px;
	margin: 0 auto; */
	padding: 30px;
	background-color: white;
	border-radius: 10px;
	/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.login-container h2 {
	text-align: center;
	margin-bottom: 20px;
}

.btn-small {
	height: 30px;
	/* Set a smaller height for the button */
	font-size: 15px;
	padding-top: 0px;
}

.accordion-button {
	width: 100%;
}

.accordion-button i {
	text-align: end;

}

.space-adding {
	margin-left: 52rem;
}

.pq-counter {
	text-align: center;

}

/* ------------------latest video index page----- */

.hm-gradient {
	background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
}

.darken-grey-text {
	color: #2E2E2E;
}

.embed-responsive-16by9 {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 51%;
}

.embed-responsive-16by9 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Make the left video take full width and height */
.col-md-6 .embed-responsive {
	height: 500px;
}

.card-block.p-0 {
	padding: 0;
}


/* .breadcrumb-login{
	background-image: url(https://sauniteduskills.org/images/login_banner.jpg);
	width: 100%;
	height: 200px;
}
.breadcrumb-ec-reviews{
	background-image: url(../images/breadcrumb/5.png);
	width: 100%;
	height: 400px; 
	background-size: cover;
	background-position: center center; 
} */

/* --------------------------buy now----------------- */
.buy-now {
	background-color: #000000;
	padding-top: 40px;
	padding-bottom: 40px;
}

.post-slide {
	background: #fff;
	margin: 20px 15px 20px;
	border-radius: 15px;
	padding-top: 1px;
	box-shadow: 0px 14px 22px -9px #bbcbd8;
}

.post-slide .post-img {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	margin: -12px 15px 8px 15px;
	margin-left: -10px;
}

.post-slide .post-img img {
	width: 100%;
	height: 250px;
	transform: scale(1, 1);
	transition: transform 0.2s linear;
}

.post-slide:hover .post-img img {
	transform: scale(1.1, 1.1);
}




.post-slide .over-layer {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background: linear-gradient(-45deg,
			rgba(6, 190, 244, 0.75) 0%,
			rgba(45, 112, 253, 0.6) 100%);
	transition: all 0.5s linear;
}

.post-slide:hover .over-layer {
	opacity: 1;
	text-decoration: none;
}

.post-slide .over-layer i {
	position: relative;
	top: 45%;
	text-align: center;
	display: block;
	color: #fff;
	font-size: 25px;
}

.post-slide .post-content {
	background: #fff;
	padding: 2px 20px 20px;
	border-radius: 15px;
}

.post-slide .post-title a {
	font-size: 15px;
	font-weight: bold;
	color: #333;
	display: inline-block;
	text-transform: uppercase;
	transition: all 0.3s ease 0s;
}

.post-slide .post-title a:hover {
	text-decoration: none;
	color: #3498db;
}

.post-slide .post-description {
	line-height: 24px;
	color: #808080;
	margin-bottom: 0;
}

.post-slide .post-date {
	color: #a9a9a9;
	font-size: 14px;
}

.post-slide .post-date i {
	font-size: 20px;
	margin-right: 8px;
	color: #cfdace;
}

.post-slide .read-more {
	padding: 12px 20px;
	/* float: right; */
	font-size: 16px;
	background: #2196f3;
	color: #ffffff;
	box-shadow: 0px 10px 20px -10px #1376c5;
	border-radius: 5px;
	text-transform: uppercase;
}

.post-slide .read-more:hover {
	background: #3498db;
	text-decoration: none;
	color: #fff;
}

.owl-controls .owl-buttons {
	text-align: center;
	margin-top: 20px;
}

.owl-controls .owl-buttons .owl-prev {
	background: #fff;
	position: absolute;
	top: -13%;
	left: 15px;
	padding: 0 18px 0 15px;
	border-radius: 50px;
	box-shadow: 3px 14px 25px -10px #92b4d0;
	transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
	background: #fff;
	position: absolute;
	top: -13%;
	right: 15px;
	padding: 0 15px 0 18px;
	border-radius: 50px;
	box-shadow: -3px 14px 25px -10px #92b4d0;
	transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
	content: "\f104";
	font-family: FontAwesome;
	color: #333;
	font-size: 30px;
}

.owl-controls .owl-buttons .owl-next:after {
	content: "\f105";
}

@media only screen and (max-width: 1280px) {
	.post-slide .post-content {
		padding: 0px 15px 25px 15px;
	}
}

@media only screen and (max-width: 600px) {
	.post-slide {
		margin: 10px 5px;
		/* Adjust the margin for mobile */
		padding: 15px;
		/* Adjust padding for better mobile spacing */
	}

	.post-slide .post-content {
		padding: 0 10px 20px;
	}

	.post-slide .post-title a {
		font-size: 14px;
	}
}

.custom-btn-padding {
	padding: 0px 20px;
	font-size: 15px;
}

.process {
	background: #f3f3f3;
}
.text-right{
	text-align: right;
}
.testi-bg{
	background-image: url(/frontend/bg-img.jpg);
    background-size: cover;
    background-position: center;
}