/*+++++++++++++++++++++++++++++++++++++++++++++++
Fonts
++++++++++++++++++++++++++++++++++++++++++++++++*/

@import url('https://fonts.googleapis.com/css2?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&family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*+++++++++++++++++++++++++++++++++++++++++++++++
Moz Selection
++++++++++++++++++++++++++++++++++++++++++++++++*/

:root {
	--primary-color: rgb(10, 61, 51);
	--dark-color: #272B36;
	--secondary-color: #666666;
	--grey-color: #e9e6e6;
	--white-color: #f4f3f0;
	--title-fonts: 'Red Hat Display', sans-serif;
	--body-fonts: 'Open Sans', sans-serif;
}

::-moz-selection {
	text-shadow: none;
	background: var(--primary-color);
	color: #fff;
}

::-moz-selection {
	text-shadow: none;
	background: var(--primary-color);
	color: #fff;
}

::selection {
	text-shadow: none;
	background: var(--primary-color);
	color: #fff;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
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: 700;
	margin: 0;
	-ms-word-wrap: break-word;
	word-wrap: break-word;

}

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;
}


input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus,
select:hover,
select: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;
}

/*+++++++++++++ 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;
	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(--grey-color);
	background-repeat: no-repeat;
	background-position: right 10px bottom 50%;
	background-size: 20px 20px;
}

select:focus,
select.form-control:focus {
	background-color: var(--grey-color);
	border-color: var(--primary-color);
}


/*++++++++++++++++ Container +++++++++++*/
.container{
	max-width: 1300px;
    position: relative;
}

section{
	padding: 130px 0;
	position: relative;
}

.pq-bg-primary{
    background-color: var(--primary-color);
}

.pq-bg-grey{
    background-color: var(--grey-color);
}

.pq-bg-dark{
    background-color: var(--dark-color);
}

.pq-bg-transparent{
	background-color: transparent;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
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;
	border: 1px solid var(--white-color);
	font-size: 26px;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 45px;
	animation: backtotop 2s infinite;
}

#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(--primary-color);
	color: var(--white-color);
	text-transform: uppercase;
	font-size: 16px;
	padding: 12px 24px;
	font-weight: 600;
	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;
}

[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
	color: var(--white-color);
	background: var(--dark-color);
}

.pq-button {
	font-family: var(--title-fonts);
	font-weight: 600;
	text-transform: uppercase;
	line-height: 2;
	font-size: 16px;
	padding: 12px 24px;
	position: relative;
	width: auto;
	background: var(--primary-color);
	color: var(--white-color);
	vertical-align: middle;
	display: inline-block;
	overflow: hidden;
	-webkit-border-radius: 0;
    -moz-border-radius:0;
    border-radius:0;
    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 .pq-button-text {
	transition: all 0.5s ease;
}


.pq-button:hover,
.pq-button:focus {
	background: var(--dark-color);
	color: var(--white-color);
}


/*===== Button flat =====*/

.pq-button.pq-button-flat .pq-svg-arrow {
	transition: all 0.5s ease;
	margin-left: 10px;
}

.pq-button.pq-button-flat:hover .pq-svg-arrow {
	transform: translateX(5px);
}

/*===== Button link =====*/
.pq-button.pq-button-link {
	padding: 0;
	background: transparent;
	color: var(--primary-color);
}

.pq-button.pq-button-link svg {
	margin-left: 10px;
	transition: all 0.5s ease;
}

.pq-button.pq-button-link:hover svg {
	margin-left: 15px;
}


/*===== 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);
}

.pq-bg-primary .pq-button.pq-button-flat{
    background-color: var(--white-color);
    color: var(--dark-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
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);
}

.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);
}

.widget:last-child {
	margin-bottom: 0;
}

/*===== Widget Title =====*/
.widget .widget-title,
.widget .widget-title,
.widget.widget_block h2 {
	margin-bottom: 15px;
	font-size: 22px;
	line-height: 30px;
}


/*===== 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;
}

/*===== =====*/

footer#pq-footer .pq-footer-style-1 .pq-footer-social ul {
	margin: 0;
	padding: 0
}

footer#pq-footer .pq-footer-style-1 .pq-footer-social ul li {
	list-style: none;
	float: left;
	margin-bottom: 0;
}

footer#pq-footer .pq-footer-style-1 .pq-footer-social ul li+li {
	margin-left: 10px;
}

footer#pq-footer .pq-footer-style-1 .pq-footer-social ul li a {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white-color);
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	display: inline-block;
	border-radius: 100%;
} 

footer#pq-footer .pq-footer-style-1 .pq-footer-social ul li a:hover{
    background: var(--primary-color);
    color: var(--white-color);
}

footer#pq-footer .widget:first-child {
	margin-bottom: 45px;
}

/*+++++++++++++++++++++++++++++++++++
Section Title
+++++++++++++++++++++++++++++++++++++++*/
.pq-section-title.pq-style-1.text-center {
	padding: 0 15em;
	margin-bottom: 60px;
}

.pq-section-title.pq-style-1 .pq-section-sub-title {
	font-family: var(--title-fonts);
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	position: relative;
	text-transform: uppercase;
	color: var(--primary-color);
	margin: 0 0 10px;
	display: inline-block;
}

.pq-section-title.pq-style-1 .pq-section-sub-title img {
	width: 32px;
	margin-right: -2px;
}

.pq-section-title.pq-style-1 .pq-section-main-title {
	font-weight: 700;
	font-size: 48px;
	line-height: 56px;
	z-index: 9;
	color: var(--dark-color);
	padding: 0;
	margin: 0 0;
	position: relative;
	display: block;
}

.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-bg-primary .pq-section-title.pq-style-1 .pq-section-sub-title{
    color: var(--white-color);
}

.pq-bg-primary .pq-section-title.pq-style-1 .pq-section-main-title,
.pq-bg-dark .pq-section-title.pq-style-1 .pq-section-main-title,
.pq-bg-transparent .pq-section-title.pq-style-1 .pq-section-main-title{
    color: var(--white-color);
}

.pq-bg-primary .pq-section-title.pq-style-1 .pq-section-description,
.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: 130px 0;
	position: relative;
	background-size: cover;
	background-position: center center;
	text-align: center;
}

.pq-breadcrumb{
	background-image: url(../images/breadcrumb/1d.webp)!important;
}

.pq-breadcrumb:before {
	content: "";
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	left: 0;
	top: 0;
	z-index: 1;
	position: absolute;
	opacity: 0.5;
}

.pq-breadcrumb:after {
	content: "";
	width: 100%;
	height: 1px;
	background: var(--white-color);
	left: 0;
	bottom: 90px;
	z-index: 1;
	position: absolute;
	opacity: 0.1;
}

.pq-breadcrumb .pq-breadcrumb-title,
.pq-breadcrumb .pq-breadcrumb-container {
	position: relative;
	z-index: 9;
}

.pq-breadcrumb .pq-breadcrumb-container {
	position: absolute;
	bottom: -100px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.pq-breadcrumb .pq-breadcrumb-title {

	margin-bottom: 90px;
}

.pq-breadcrumb .pq-breadcrumb-title p {
	margin-bottom: 0;
	font-family: var(--title-fonts);
}

.pq-breadcrumb .pq-breadcrumb-title h1 {
	font-size: 56px;
	line-height: 64px;
	margin-bottom: 0;
	color: var(--white-color);
}

.pq-breadcrumb-container .breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
	text-align: center;
	align-items: center;
	display: block;
}

.pq-breadcrumb-container .breadcrumb li {
	list-style-type: none;
	margin-right: 15px;
	padding-left: 0;
	color: var(--white-color);
	font-size: 16px;
	line-height: 24px;
	display: inline-block;
	text-transform: capitalize;
}

.pq-breadcrumb-container .breadcrumb li:last-child {
	margin-right: 0;
}

.pq-breadcrumb-container .breadcrumb li.active {
	color: var(--primary-color);
}

.pq-breadcrumb-container .breadcrumb li a {
	color: var(--white-color);
	display: inline-block;
}

.pq-breadcrumb-container .breadcrumb li a>i {
	width: 30px;
	height: 30px;
	background: var(--primary-color);
	border-radius: 100%;
	line-height: 30px;
	font-size: 14px;
	margin-right: 15px;
	color: var(--white-color);
}

.pq-breadcrumb-container .breadcrumb li a:hover {
	color: var(--primary-color);
}

.pq-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	font-size: 12px;
	font-family: "Ionicons";
	padding-right: 15px;
	content: "\f125";
	color: var(--primary-color);
	float: none;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Header
++++++++++++++++++++++++++++++++++++++++++++++++*/
.animated {
	animation-duration: 1.25s;
}

.fadeInDown {
	animation-name: fadeInDown;
	transition: all 0.5s ease-in-out;
}


@-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;
}

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: 60px;
}


/*++++++ Header Navbar Bar +++++*/

header#pq-header .pq-bottom-header {
	min-height: 90px;
	transition: all 0.8s ease;
	line-height: 2;
	display: flex;
	align-items: center;
}

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: 30px;
	color: var(--dark-color);
	line-height: 90px;
	font-weight: 600;
	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: 16px;
	text-transform: capitalize;
	line-height: 24px;
	font-weight: 600;
}

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: 210px;
	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(--primary-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: 14px;
	font-weight: 600;
	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(--secondary-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>.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 {
	background: var(--primary-color);
	color: var(--white-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children:hover>a {
	color: var(--white-color);
}

/**top header**/
header#pq-header .pq-top-header.top-style-2 .pq-header-contact ul li {
	border: none;
	padding: 10px 0;
	font-size: 14px;
}

header#pq-header .pq-top-header.top-style-2 .pq-header-social ul li:last-child a {
	padding-right: 0;
}

header#pq-header .pq-top-header.top-style-2 .pq-header-contact ul li i {
	color: var(--primary-color);
}

header#pq-header .pq-top-header.top-style-2 .pq-header-contact ul li+li {
	margin-left: 20px;
}

header#pq-header .pq-top-header.top-style-2 .pq-header-social ul li:first-child {
	color: var(--white-color);
	padding-top: 10px;
	padding-right: 10px;
}

header#pq-header .pq-top-header.top-style-2 .pq-header-social ul li:first-child i {
	margin-right: 8px;
	color: var(--primary-color);
}

header#pq-header .pq-top-header.top-style-2 .pq-header-social ul li {
	border: none;
}

header#pq-header .pq-top-header.top-style-2 .pq-header-social ul li a {
	padding: 10px;
	font-size: 14px;
}

header#pq-header .pq-top-header.top-style-2 .pq-header-social ul li a:hover {
	color: var(--primary-color);
	background: transparent;
}

/**header**/

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-toggle-btn {
	line-height: 75px;
	padding: 22px 10px;
	background: var(--primary-color);
	color: var(--white-color);
	cursor: pointer;
	margin-left: 30px;
	position: relative;
	transition: all 0.5s ease;

}

header#pq-header.pq-header-style-2 .pq-toggle-btn:hover {
	background: var(--dark-color);
}

header#pq-header.pq-header-style-2 .pq-toggle-btn a:before,
header#pq-header.pq-header-style-2 .pq-toggle-btn a:after {
	transform-origin: 50% 0%;
}

header#pq-header.pq-header-style-2 .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-2 .pq-toggle-btn a:before,
header#pq-header.pq-header-style-2 .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-2 .pq-toggle-btn a:before {
	transform: translate(-50%, -8px);
}

header#pq-header.pq-header-style-2 .pq-toggle-btn a:after {
	transform: translate(-50%, 8px);
}

header#pq-header.pq-header-style-2 .pq-bottom-header .navbar-toggler {
	background: var(--primary-color);
}

header#pq-header.pq-header-style-2 .pq-bottom-header .navbar-toggler:hover {
	background: var(--dark-color);
}

header#pq-header.pq-header-style-2 .pq-bottom-header.pq-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	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);
}


/*+++++++++++++++++++++++++++++++++++++++++++++++
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;
	margin-top: 60px;
}

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;
}

footer#pq-footer .pq-footer-top {
	padding: 90px 0 30px;
	position: relative;
	z-index: 9;
}

footer#pq-footer .pq-footer-style-1 .pq-footer-top {
	padding-top: 0;
}

footer#pq-footer .widget:first-child {
	margin-bottom: 45px;
}


/*======= Footer Top list =======*/
footer#pq-footer .pq-footer-bottom-list {
	padding: 0 0 60px;
	margin-top: -60px;
	position: relative;
	z-index: 9;
}

footer#pq-footer .pq-footer-bottom-list .row {
	background: transparent;
}

footer#pq-footer .pq-footer-img {
	background: var(--grey-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: 30px;
	display: flex;
	align-items: center;
	background: var(--grey-color);
	position: relative;
}

footer#pq-footer .pq-footer-top .pq-footer-bottom-list .pq-footer-items i {
	align-self: center;
	font-size: 24px;
	color: var(--primary-color);
	width: 50px;
	height: 50px;
	line-height: 50px;
	background: var(--white-color);
	border-radius: 100%;
	display: inline-block;
	float: left;
	text-align: center;
	flex: none;
}

footer#pq-footer .pq-footer-top .pq-footer-bottom-list .pq-footer-items h4 {
	font-size: 24px;
	float: left;
	line-height: 32px;
	width: 100%;
	display: inline-block;
}

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 {
	height: 60px;
	width: auto;
}

footer#pq-footer .widget .menu-useful-links-container ul.menu li a {
	padding-left: 0;
}

footer#pq-footer .pq-copyright-footer {
	padding: 15px 0;
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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;
    color: var(--white-color);
}

footer#pq-footer .widget ul#menu-useful-links li a,
footer#pq-footer .widget ul#menu-textile-service li a {
	padding-left: 24px;
    position: relative;
}

footer#pq-footer .widget ul#menu-useful-links li a:before,
footer#pq-footer .widget ul#menu-textile-service 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);
}

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.menu li a,
footer#pq-footer .widget ul li a {
	color: var(--white-color);
}

footer#pq-footer .pq-footer-social ul li a {
	padding: 0;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Service Single
++++++++++++++++++++++++++++++++++++++++++++++++*/

.widget.widget-port:nth-child(2) {
	padding: 0;
	background: unset;
}

.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: 600;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	color: var(--dark-color);
}

.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);
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Map Area
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.pq-contact-boxes {
	position: relative;
}

.pq-contact-box {
	background: var(--grey-color);
	padding: 45px;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

.pq-contact-box.active {
	position: relative;
	z-index: 1;
	opacity: 1;
}

.pq-contact-box .pq-details {
	margin-bottom: 20px;
}

.pq-contact-box .pq-details h4 {
	font-size: 32px;
	line-height: 40px;
}

.pq-contact-box ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.pq-contact-box ul li {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 10px;
}

.pq-contact-box .pq-address {
	background: var(--primary-color);
	color: var(--white-color);
	padding: 18px 40px;
	text-align: center;
	font-size: 18px;
	line-height: 30px;
	font-family: var(--title-fonts);
	font-weight: 600;
	margin-top: 40px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Lists
++++++++++++++++++++++++++++++++++++++++++++++++*/
.pq-list-check{
    margin: 0;
    padding: 0;
}

.pq-list-check li{
    list-style: none;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}

.pq-list-check li:last-child{
    padding-bottom: 0;
}

.pq-list-check li i{
    color: var(--primary-color);
    font-size: 20px;
}

.pq-list-check li span{
    padding-left: 10px;
    color: var(--dark-color);
}

.service-single .pq-list-check li i{
	font-size: 14px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Custom CSS
++++++++++++++++++++++++++++++++++++++++++++++++*/
.pq-mb-30{
    margin-bottom: 30px;
}

.pq-about-us-img{
    position: relative;
    text-align: end;
}

.pq-about-us-img .pq-about-us-img-1{
    width: 70%;
    position: relative;
}

.pq-about-us-img .pq-about-us-img-2{
    position: absolute;
    top: 12%;
    left: 0%;
    width: 55%;
    border: 10px solid var(--white-color);
}

.pq-form-div{
	padding: 60px 45px;
	background-color: var(--grey-color);
	border: 1px solid #0000001a;
	margin-top: -90px;
}

.form .pq-form-title{
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
}

.pq-form-title{
	margin-bottom: 30px;
}

.pq-applyform input,
.pq-applyform select,
.pq-applyform textarea{
	background-color: var(--white-color);
	margin-bottom: 15px;
}

.pq-applyform textarea{
	height: 100px;
}

.no-gutters{
	margin: 0;
}

.pq-contact-grid-box{
	padding: 60px 45px;
	background-color: var(--white-color);
}

.pq-contact-grid-box .pq-contact-box-media{
	display: flex;
	align-items: center;
	padding-bottom: 30px;
	border-bottom: 1px solid #0000001a;
	margin-bottom: 20px;
}

.pq-contact-grid-box .pq-contact-box-media .pq-contact-media-icon{
	margin-right: 20px;
}

.pq-contact-grid-box .pq-contact-box-media .pq-contact-media-icon i{
	font-size: 45px;
	width: 80px;
	height: 80px;
	line-height: 80px;
	display: inline-block;
	text-align: center;
	color: var(--white-color);
	background-color: var(--primary-color);
	transition: all 0.5s ease-in-out;
}

.pq-contact-grid-box .pq-contact-box-media .pq-contact-media-icon i:hover{
	background-color: var(--dark-color);
}

.pq-contact-grid-box.active .pq-contact-box-media .pq-contact-media-icon i{
	background-color: var(--dark-color);
}

.pq-contact-grid-box.active .pq-contact-box-media .pq-contact-media-icon i:hover{
	background-color: var(--primary-color);
}

.pq-contact-grid-box .pq-contact-box-media .pq-contact-media-content .pq-contact-media-title{
	font-size: 16px;
    font-weight: 600;
	color: #666666;
    line-height: 24px;
}

.pq-contact-grid-box .pq-contact-box-media .pq-contact-media-content .pq-contact-media-description{
	color: var(--dark-color);
    font-family: var(--title-fonts);
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
	margin: 0;
}

.pq-contact-grid-box .pq-contact-box-description{
	margin: 0;
}

.map{
	line-height: 0;
}

.map iframe{
	width: 100%;
	border: 0;
	height: 300px;
}

.contact-form .pq-form-div{
	min-height: 100%;
}

 .about-us-p-last{
	padding-top: 10px;
 }
 .about-us-img-top{
	padding-bottom: 27px;
 }
 
 #no-capitalize{
	text-transform: none;
 }

br {
  pointer-events: none;
  user-select: none;
}

.about-us-images{
	border-radius: 3px;
}

.infografik-kapsayici {
    width: 100%;
    padding: 40px 20px; 
    display: flex;
	margin-bottom: 40px;
    justify-content: center;
}

.fabrika-resmi {
    max-width: 1300px; 
    width: 100%; 
    height: auto;
}

.ozel-modal {
  display: none;
  position: fixed; 
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
}

.ozel-modal-icerik {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.ozel-kapat {
  color: #333;
  float: right;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  line-height: 20px;
}

.ozel-kapat:hover {
  color: red;
}

.mobile-lang-switcher {
    display: none;
}

.banner {
    min-height: 1000px;
    background-color: #f0f0f0;
}
