/*
Template: Millennium - Restaurant WordPress Theme
Author: peacefulqode.co.in
Version: 1.1
Design and Developed by: Peaceful Qode

NOTE: This is main stylesheet of template, This file contains the styling for the actual Template. Please do not change anything here! write in a custom.css file if required!
*/

/*+++++++++++++++++++++++++++++++++++++++++++++++
[  Table of contents  ]
+++++++++++++++++++++++++++++++++++++++

==> Moz Selection
==> General
==> Loading
==> Back to Top
==> WordPress Core
==> Button Core
==> Dummy data
==> Blog Sidebar
==> Blog
==> Pagination
==> Error
==> isotope Portfolio
==> slider portfoliio
==> Header
==> admin bar login
==> Sidebar Menu
==> Breadcrum
==> Footer
==> OWL Carousel
==> Section Title
==> Service Box
==> Fancy Box
==> Portfoliobox
==> Counter
==> Team
==> Menu Price
==> Testimonialbox
==> Service Box
==> Process Step
==> Rotate Animation
==> Progressbar
==> Quote From
==> Client
==> Video Popup
==> FAQ

++++++++++++++++++++++++++++++++++++
[ End table content ]
+++++++++++++++++++++++++++++++*/

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



.pt-header-social.text-right.head_social {
    margin-top: 15px;
}




:root {
	--primary-color: #BD8F39;
	--secondary-color: #101418;
	--dark-color: #080b0e;
	--grey-color: #777777;
	--white-color: #ffffff;
	--text-color: #ffffffcc;
	--body-fonts: 'Josefin Sans', sans-serif;
	--title-fonts: 'Josefin Sans', sans-serif;
	--sub-title-fonts: 'Miniver', cursive;
}

::-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(--secondary-color);
	font-family: var(--body-fonts);
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	line-height: 28px;
	color: var(--text-color);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--title-fonts);
	color: var(--white-color);
	font-style: normal;
	text-transform: capitalize;
	font-weight: 400;
	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(--dark-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: 400;
}

/*+++++++++++++ Lists (Nested) ++++++++++++++*/
ol,
ul {
	padding-left: 25px;
	margin-bottom: 1em;
}

ol li {
	list-style: decimal;
}

ol ol {
	padding-left: 25px;
}

ul li {
	list-style: inherit;
}

/*+++++++++++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: transparent;
	border: 1px solid var(--white-color);
	color: var(--white-color);
	width: 100%;
	float: left;
	font-size: 16px;
	padding: 0 15px;
	height: 52px;
	line-height: 52px;
	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;
	font-weight: 300;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: var(--white-color);
}

input[type="radio"],
input[type="checkbox"] {
	width: auto;
	height: auto;
	float: none;
	margin-right: 5px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
}

textarea {
	background: transparent;
	border: 1px solid var(--white-color);
	color: var(--white-color);
	width: 100%;
	float: left;
	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;
	font-weight: 300;
}

/*+++++++++++++ Select +++++++++++++++*/
select,
select.form-control {
	border: 1px solid var(--white-color);
	color: var(--white-color);
	background: transparent;
	width: 100%;
	float: left;
	padding: 0 30px 0 15px;
	height: 51px;
	line-height: 48px;
	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-repeat: no-repeat;
	background-position: right 16px bottom 50%;
	background-size: 20px 20px;
	font-weight: 300;
	font-size: 16px;
}

/*+++++++++++++Container +++++++++++++++*/
.container,
.elementor-section.elementor-section-boxed>.elementor-container {
	max-width: 1300px;
}

.content-area .site-main {
	padding: 80px 0;
	display: inline-block;
	width: 100%;
	overflow: hidden;
	float: left;
}

/*++++++++++++++++++++++++++++++++++++++++++
Loading
+++++++++++++++++++++++++++++++++++++++++*/
#pt-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(--secondary-color);
}

#pt-loading img {
	height: 50px;
}

.loader {
	display: inline-block;
	background: var(--secondary-color);
	width: 60px;
	height: 60px;
	position: relative;
	text-align: center;
	animation: 3s rotate linear infinite;
}

.loader:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: var(--primary-color);
	animation: 1.5s rotate reverse linear infinite;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg)
	}

	100% {
		transform: rotate(360deg)
	}

}

/*++++++++++++++++++++++++++++
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(--primary-color);
	font-size: 26px;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	transition: none;
}

#back-to-top .top:hover {
	background: var(--primary-color);
	color: var(--white-color);
	border: 1px solid var(--primary-color);
}



/*++++++++++++++++++++++++++++++++++++++++++++++
WordPress Core
++++++++++++++++++++++++++++++++++++++++++++++++++*/
.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 15px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: var(--secondary-color);
	border: 1px solid var(--grey-color);
	max-width: 96%;
	padding: 5px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 100%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	font-size: 14px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

.wp-block-audio figcaption,
.wp-block-video figcaption,
.wp-block-image figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	padding: 0.5rem;
	text-align: center;
}

.wp-block-gallery figcaption.blocks-gallery-caption {
	margin-bottom: 5px;
}

.bypostauthor {
	display: block;
}

.wp-caption-text {
	font-size: 14px;
	margin: 5px 0 0;
	line-height: normal;
}

/*++++++++++++++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: 400;
	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: transparent;
	border: 1px solid var(--white-color);
	color: var(--white-color);
	text-transform: capitalize;
	font-size: 14px;
	padding: 10px 30px;
	font-weight: 300;
	line-height: 2;
	vertical-align: middle;
	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;
	font-size: 18px;
	font-weight: 300;
	height: auto;
}

[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
	color: var(--white-color);
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.pt-button {
	position: relative;
	width: auto;
	background: transparent;
	border: 1px solid var(--white-color);
	color: var(--white-color);
	padding: 10px 30px;
	line-height: 2;
	vertical-align: middle;
	display: inline-block;
	cursor: pointer;
	text-transform: capitalize;
	font-size: 18px;
	font-weight: 300;
}

.pt-button:hover,
.pt-button:focus {
	background: var(--primary-color);
	color: var(--white-color);
	border: 1px solid var(--primary-color);
}

.pt-button .pt-button-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.pt-button span {
	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;
}

.pt-button:hover .pt-button-text {
	-moz-transform: translate(45px, 0px);
	-webkit-transform: translate(45px, 0px);
	-o-transform: translate(45px, 0px);
	-ms-transform: translate(45px, 0px);
	transform: translate(45px, 0px);
}

.pt-button .pt-button-line-left {
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -1px;
	background: var(--white-color);
	width: 0;
	display: inline-block;
	height: 1px;
	vertical-align: middle;
	opacity: 0;
}

.pt-button:hover .pt-button-line-left {
	width: 30px;
	opacity: 1;
	-moz-transform: translate(30px, 0px);
	-webkit-transform: translate(30px, 0px);
	-o-transform: translate(30px, 0px);
	-ms-transform: translate(30px, 0px);
	transform: translate(30px, 0px);
}

.pt-button .pt-button-line-right {
	background: var(--white-color);
	width: calc(30px - 1px);
	display: inline-block;
	height: 1px;
	vertical-align: middle;
	opacity: 1;
	margin-left: 15px;
}

.pt-button:hover .pt-button-line-right {
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 0;
}

/*===== Button link =====*/
.pt-button.pt-btn-link {
	padding: 0;
	background: transparent;
	color: var(--primary-color);
	line-height: 1;
	border: none;
}

.pt-button.pt-btn-link .pt-button-line-left,
.pt-button.pt-btn-link .pt-button-line-right {
	background: var(--primary-color);
}

.pt-button.pt-btn-link:hover .pt-button-line-left {
	-moz-transform: translate(0, 0px);
	-webkit-transform: translate(0, 0px);
	-o-transform: translate(0, 0px);
	-ms-transform: translate(0, 0px);
	transform: translate(0, 0px);
}

/*===== Button link =====*/
.pt-button.pt-btn-outline {
	background: transparent;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.pt-button.pt-btn-outline .pt-button-line-left,
.pt-button.pt-btn-outline .pt-button-line-right {
	background: var(--primary-color);
}

/*++++++++++++++++++++++++++++++++++++++++
Dummy data
+++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-sticky-post-label {
	padding: 5px 15px;
	background: var(--primary-color);
	color: var(--white-color);
	margin-bottom: 15px;
	display: inline-block;
}

.pt-sticky-post-label i {
	margin-right: 5px;
}

.wp-block-button__link,
.wp-block-file a.wp-block-file__button {
	background: var(--primary-color);
	color: var(--white-color) !important;
	font-size: 16px;
	border-radius: 0;
}

.wp-block-button__link:hover,
.wp-block-file a.wp-block-file__button:hover {
	background: var(--dark-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;
}

.wp-block-button {
	margin-bottom: 30px;
}

.wp-block-cover.has-background-dim {
	color: var(--white-color);
}

blockquote {
	background: var(--secondary-color);
	padding: 30px;
	border: 1px solid var(--grey-color);
	border-left: 5px solid var(--primary-color);
	margin-bottom: 30px;
}

blockquote p {
	margin-bottom: 0;
}

blockquote cite {
	font-family: var(--title-fonts);
	color: var(--primary-color);
	text-transform: uppercase;
	font-weight: 400;
	font-style: italic;
}

blockquote strong {
	font-family: var(--title-fonts);
	color: var(--primary-color);
	font-style: italic;
	font-weight: 400;
	display: block;
}

.widget .wc-block-grid {
	font-weight: 400;
}

.widget ul.wc-block-grid__products {
	list-style-type: none;
}

.widget ul.wc-block-grid__products li a,
footer#pt-footer .widget ul.wc-block-grid__products li a {
	padding: 0;
}

.widget ul.wc-block-grid__products li a:before,
footer#pt-footer .widget ul.wc-block-grid__products li a:before {
	display: none;
}

.widget ul.wc-block-grid__products li {
	margin: 0;
}

.woocommerce ul.product_list_widget li a {
	font-weight: 400;
}

.wc-block-grid__product .wc-block-grid__product-title {
	font-weight: 400;
	color: var(--white-color);
}

.woocommerce.widget_products .product_list_widget a {
	font-weight: 400;
	color: var(--white-color);
}

.woocommerce.widget_products .product_list_widget a:hover {
	color: var(--primary-color);
}

.wc-block-grid__product .wc-block-grid__product-add-to-cart a.add_to_cart_button {
	padding: 10px 30px !important;
	background: transparent;
	border: 1px solid var(--white-color);
	font-weight: 300;
}

.wc-block-grid__product .wc-block-grid__product-add-to-cart a.add_to_cart_button.added {
	display: none;
}

.wc-block-grid__product .wc-block-grid__product-add-to-cart a.added_to_cart {
	padding: 10px 30px !important;
	background: transparent;
	border: 1px solid var(--white-color);
	font-weight: 300;
	color: var(--white-color);
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.loading {
	padding-right: 40px !important;
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.loading:after {
	font-family: WooCommerce;
	content: "\e01c";
	vertical-align: top;
	font-weight: 400;
	position: absolute;
	top: 0.618em;
	right: 15px;
}

.wc-block-grid__product-onsale {
	top: 15px;
	right: 30px;
	left: auto;
	margin: 0;
	min-height: auto;
	min-width: auto;
	padding: 0px 10px;
	border-radius: 0;
	line-height: 2;
	font-weight: 400;
	font-size: 14px;
	background: var(--primary-color);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	position: absolute;
	color: var(--white-color);
	border: none;
	text-transform: capitalize;
	font-weight: 400;
}

.wc-block-product-categories-list--has-images .wc-block-product-categories-list-item {
	margin: 0 0 15px 0;
}

.wc-block-product-categories-list--has-images .wc-block-product-categories-list-item>a {
	padding: 0;
}

.wc-block-product-categories-list--has-images .wc-block-product-categories-list-item .wc-block-product-categories-list--has-images {
	margin: 15px 0 0 30px;
}

.wc-block-product-categories-list--has-images .wc-block-product-categories-list-item__image {
	margin: 0;
	margin-right: 15px;
}

.wc-block-product-categories-list .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item {
	margin: 0 0 15px 0;
}

.wc-block-product-categories-list .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item .wc-block-product-categories-list--has-images {
	margin-top: 15px;
}

footer#pt-footer .widget ul.wc-block-product-categories-list--has-images li a {
	padding: 0;
}

footer#pt-footer .widget ul.wc-block-product-categories-list--has-images li a:before {
	display: none;
}

.wc-block-product-categories.is-dropdown {
	display: block;
}

.wc-block-product-categories .wc-block-product-categories__button {
	display: none;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: var(--white-color);
	border-radius: 0;
}

.widget.widget_price_filter .price_slider_wrapper .ui-slider-horizontal .ui-corner-all {
	border-radius: 0;
}

.select2-container--default.select2-container--focus.select2 .select2-selection--multiple {
	border: 1px solid var(--primary-color);
}

.select2-container--default.select2-container .select2-selection--multiple {
	background: transparent;
	height: 70px;
	padding-left: 10px;
}

.select2-container--default.select2 .select2-selection--multiple .select2-selection__choice {
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 4px;
	cursor: default;
	float: left;
	margin-right: 5px;
	margin-top: 5px;
	padding: 0 5px;
	margin-top: 10px !important;
	margin-right: 5px !important;
}

.select2-container--default.select2 .select2-selection--multiple .select2-selection__choice__remove {
	color: var(--white-color) !important;
	font-size: 28px;
	font-weight: 300;
}

.select2-container--default.select2 .select2-results__option[aria-selected=true] {
	background-color: var(--primary-color);
}

/*===== woocommerce =====*/
.woocommerce.widget_shopping_cart .cart_list li {
	padding-left: 0;
}

.woocommerce.widget_shopping_cart .cart_list li a {
	padding: 0;
}

footer#pt-footer .widget.woocommerce.widget_shopping_cart ul li {
	margin: 0;
	margin-bottom: 15px;
}

footer#pt-footer .widget.woocommerce.widget_shopping_cart ul li a {
	padding: 0;
	display: block;
	font-weight: 400;
	color: var(--white-color);
}

footer#pt-footer .widget.woocommerce.widget_shopping_cart ul li a.remove {
	color: var(--white-color) !important;
	left: inherit;
	font-weight: 300;
	background: none;
}

footer#pt-footer .widget.woocommerce.widget_shopping_cart ul li a.remove:hover {
	color: var(--primary-color) !important;
}

.widget.woocommerce.widget_shopping_cart ul li a.remove {
	color: var(--white-color) !important;
	left: inherit;
	font-weight: 300;
	background: none;
	z-index: 9;
}

.widget.woocommerce.widget_shopping_cart ul li a.remove:hover {
	color: var(--primary-color) !important;
}

.widget.woocommerce.widget_shopping_cart ul li a {
	font-weight: 300;
	font-family: var(--title-fonts);
	text-transform: capitalize;
	right: 0;
	left: inherit;
}

footer#pt-footer .widget.woocommerce.widget_shopping_cart ul li a:before,
.widget.woocommerce.widget_shopping_cart ul li a:before {
	display: none;
}

.woocommerce.widget_shopping_cart .total {
	border-top: 1px solid var(--white-color);
	padding-top: 15px;
	margin-top: 15px;
}

.woocommerce.widget_shopping_cart .woocommerce-mini-cart__total .woocommerce-Price-amount.amount {
	float: right;
}

.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a {
	font-size: 16px;
	padding: 8px 30px;
}

.widget.woocommerce.widget_product_categories .select2-container {
	background: transparent;
	border: 1px solid var(--white-color);
	color: var(--dark-color);
	width: 100%;
	float: left;
	padding: 0;
	height: 51px;
	line-height: 48px;
	outline: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.widget.woocommerce.widget_product_categories .select2-container--default .select2-selection--single {
	background: transparent;
	border: none;
	padding-top: 10px;
}

.widget.woocommerce.widget_product_categories .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 10px;
}

.select2-container--default .select2-dropdown {
	border: 1px solid #ededed;
	background: var(--secondary-color);
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
	background: var(--primary-color);
	color: var(--white-color);
}

.select2-container--default .select2-results>.select2-results__options {
	width: 100%;
}

.select2-container--default .selection .select2-selection--single .select2-selection__rendered {
	color: var(--white-color);
}

.select2-container--default .selection .select2-selection--single .select2-selection__placeholder {
	color: var(--white-color);
}

.select2-container--default .select2-results__option[data-selected=true] {
	background: var(--primary-color);
}

.select2-container--default .select2-results .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results .select2-results__option--highlighted[data-selected] {
	background: var(--primary-color);
}

.woocommerce.widget_products .product_list_widget li,
.woocommerce.widget_top_rated_products .product_list_widget li {
	padding-left: 0;
}

.woocommerce.widget_products .product_list_widget li a,
.woocommerce.widget_top_rated_products .product_list_widget li a {
	padding: 0;
}

footer#pt-footer .widget.woocommerce.widget_products ul.product_list_widget li,
footer#pt-footer .widget.woocommerce.widget_top_rated_products ul.product_list_widget li {
	margin: 0;
	margin-bottom: 15px;
}

footer#pt-footer .widget.woocommerce.widget_products ul.product_list_widget li a,
footer#pt-footer .widget.woocommerce.widget_top_rated_products ul.product_list_widget li a {
	padding: 0;
	display: block;
	font-weight: 400;
	color: var(--white-color);
}

footer#pt-footer .widget.woocommerce.widget_products ul.product_list_widget li a:before,
.widget.woocommerce.widget_shopping_cart ul.product_list_widget li a:before,
footer#pt-footer .widget.woocommerce.widget_top_rated_products ul.product_list_widget li a:before,
.widget.woocommerce.widget_top_rated_products ul.product_list_widget li a:before {
	display: none;
}

.widget.woocommerce.widget_products ul.product_list_widget li a:before {
	display: none !important;
}


.pt-blog-post .pt-blog-contain blockquote p {
	margin-bottom: 0;
}

.post-password-form input {
	float: none;
}

.post-password-form input[type="password"] {
	background: transparent;
	border: 1px solid var(--white-color);
}
.post-password-form input[type="password"]:hover{ border-color: var(--primary-color); }
.post-password-form input[type="submit"]{ padding: 8px 30px;margin-top: -2px; }

.post-password-form input[type="password"]:hover {
	border-color: var(--primary-color);
}

.post-password-form input[type="submit"] {
	padding: 8px 30px;
	margin-top: -2px;
}

.pt-blog-post .pt-blog-contain table td,
.pt-blog-post .pt-blog-contain table th,
.pt-comment-area table td,
.pt-comment-area table th {
	border-color: var(--grey-color);
	background: var(--secondary-color);
}

.pt-blog-post .pt-blog-contain table th {
	font-weight: 400;
}
.pt-blog-post .pt-blog-contain table th{ font-weight: 400; }

.pt-comment-area {
	display: inline-block;
	width: 100%;
}

.pt-blog-contain .wp-block-archives,
.pt-blog-contain .wp-block-archives-dropdown,
.pt-blog-contain .wp-block-categories,
.pt-blog-contain .wp-block-latest-posts,
.pt-blog-contain .wp-block-tag-cloud,
.pt-blog-contain .wp-block-search {
	margin: 0 0 30px;
	padding: 0;
	display: inline-block;
	width: 100%;
	float: left;
}

.pt-blog-contain .wp-block-archives li {
	list-style-type: none;
}

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

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

/*+++++++++++Calendar +++++++++++++++*/
.pt-blog-contain .wp-block-calendar {
	display: inline-block;
	width: 100%;
	margin-bottom: 30px;
}

.wp-block-calendar table caption,
.wp-block-calendar table tbody {
	color: var(--text-color);
}

.wp-calendar-table {
	margin-bottom: 0;
	border-width: 1px;
}

.wp-calendar-table caption {
	padding: 0 0 15px;
	color: var(--dark-color);
	text-align: center;
	caption-side: top;
}

.wp-calendar-nav .wp-calendar-nav-prev {
	width: 50%;
	border: 1px solid var(--grey-color);
	display: inline-block;
	float: left;
	text-align: center;
	border-right: 0;
	padding: 4px;
	border-top: 0;
	color: var(--text-color);
	text-decoration: none;
	background: var(--secondary-color);
}

.wp-calendar-nav .wp-calendar-nav-next {
	width: 50%;
	border: 1px solid var(--grey-color);
	display: inline-block;
	float: left;
	text-align: center;
	padding: 4px;
	border-top: 0;
	color: var(--text-color);
	text-decoration: none;
	background: var(--secondary-color);
}

.wp-calendar-nav .pad {
	display: none;
}

.wp-calendar-nav span a {
	color: var(--white-color);
	text-decoration: none;
}

.wp-calendar-nav span a:hover {
	color: var(--primary-color);
}

/*+++++++++++++  Tags +++++++++++++++++*/
.wp-block-tag-cloud .tag-cloud-link {
	font-size: 16px !important;
	background: transparent;
	margin: 0 10px 10px 0;
	display: inline-block;
	float: left;
	color: var(--white-color);
	padding: 4px 16px;
	text-transform: capitalize;
	border: 1px solid var(--grey-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;
}

.wp-block-tag-cloud .tag-cloud-link:hover {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: var(--white-color);
}

/*++++++++++++++++ Blog Page Link ++++++++++++++++++++*/
.page-links {
	margin: 15px 0 10px;
	clear: both;
}

.pt-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(--secondary-color);
	margin-left: 5px;
	padding: 0px;
	display: inline-block;
	color: var(--white-color);
}

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

.pt-blog-contain .page-links>span.page-number,
.page-links>span.page-number {
	background: var(--primary-color);
	color: var(--white-color);
}

article.hentry .pt-blog-contain .page-links a:hover {
	color: #fff;
}

.wp-block-table.is-style-stripes td {
	border-color: #eaeaea;
}

.wp-block-table td,
.wp-block-table th {
	text-align: left;
}

.wp-block-latest-posts.is-grid.has-dates {
	margin: 0;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) td {
	background-color: var(--grey-color);
}

article.hentry.format-audio .pt-post-media p:nth-child(-n+2) {
	display: inline-block;
	margin-bottom: 0;
	padding-top: 30px;
}

article.hentry.format-audio .pt-post-media p {
	margin-bottom: 0;
	padding-left: 30px;
}

article.hentry.format-audio .pt-post-media p {
	margin-bottom: 0;
	padding-left: 30px;
}

article.hentry.format-video .pt-post-media p {
	margin-bottom: 0;
}

article.hentry.format-video .pt-post-media {
	text-align: center;
}

article.hentry.format-audio .pt-post-media embed,
article.hentry.format-video .pt-post-media iframe {
	width: 100%;
}

/*++++++++++++++++++++++++++++++++++++++++++++++
Blog Sidebar
++++++++++++++++++++++++++++++++++++++++++++++++++*/
.widget {
	margin-bottom: 30px;
	display: inline-block;
	width: 100%;
	float: left;
	position: relative;
	padding: 30px;
	background: var(--dark-color);
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

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

/*+++++ Widget Title +++++*/
.widget h2 {
	margin-bottom: 15px;
	padding: 0;
	font-size: 28px;
	position: relative;
	line-height: 36px;
	position: relative;
}

/*+++++ SideBar - Search +++++*/
.widget.widget_search {
	background: var(--dark-color);
}

.widget.widget_search .widget-title {
	display: none;
}

.widget.widget_search .wp-block-search {
	position: relative;
}

.widget.widget_search .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(--white-color) !important;
	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;
}

.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 {
	color: var(--primary-color) !important;
	background: transparent;
	outline: none;
}

.search-form {
	position: relative;
}

.search-form label {
	width: 100%;
	margin-bottom: 0;
	float: left;
	width: 100%;
}

.widget.widget_search .search-form .search-field,
.widget.widget_search .wp-block-search__input {
	background: transparent;
	border-color: var(--grey-color);
}

.search-submit {
	background: transparent;
	border: none;
	padding: 0;
	font-size: 20px;
	position: absolute;
	text-align: center;
	color: var(--white-color) !important;
	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: 400;
}

.search-submit:hover {
	color: var(--primary-color) !important;
	background: transparent;
	outline: none;
	border: none;
}

/*+++++ widget-menu +++++*/
.widget ul {
	padding: 0;
	margin: 0;
}

.widget ul li {
	list-style: none;
	margin: 0 0 15px 0;
}

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

.widget ul ul.children {
	padding-left: 25px;
	margin-top: 15px;
}

.widget ul li a {
	padding: 0 0 0 15px;
	color: var(--text-color);
	position: relative;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	position: relative;
	
}

.widget ul li a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

.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 .wp-block-page-list li>a:before,
footer#pt-footer .widget ul li.recentcomments .comment-author-link a:before {
	position: absolute;
	content: '\f054';
	left: 0;
	font-size: 10px;
	top: 3px;
	color: inherit;
	font-family: "Font Awesome 5 Free";
	line-height: normal;
	font-weight: 900;
	color: var(--primary-color);
}

/*+++++ SideBar - Recent Comments +++++*/
.wp-block-latest-comments {
	padding: 0;
	margin: 0;
}

.wp-block-latest-comments li,
#recentcomments li {
	padding-left: 0;
	position: relative;
	line-height: 2;
}

.wp-block-latest-comments li .wp-block-latest-comments__comment-author,
#recentcomments li .comment-author-link a {
	color: var(--white-color);
	padding: 0;
}

.wp-block-latest-comments li .wp-block-latest-comments__comment-link,
#recentcomments li a {
	color: var(--primary-color);
	padding: 0;
}

.wp-block-latest-comments li .wp-block-latest-comments__comment-author:hover,
.wp-block-latest-comments li .wp-block-latest-comments__comment-link:hover,
#recentcomments li a:hover {
	color: var(--primary-color);
	text-decoration: underline !important;
}

/*+++++  SideBar widget archive  +++++*/
.widget.widget_archive ul li,
.widget.widget_categories ul li {
	color: var(--primary-color);
}

.sidebar.widget-area select {
	border: 1px solid var(--grey-color);
}

.sidebar.widget-area select option {
	background: var(--dark-color);
	font-weight: 300;
	padding: 2px 0;
}

/*+++++  SideBar Calendar  +++++*/
.widget_calendar table caption {
	padding: 0 0 10px;
	color: var(--white-color);
}

.widget_calendar table#wp-calendar {
	width: 100%;
	text-align: center;
	margin-bottom: 0;
	margin-top: 0;
	background: var(--secondary-color);
}

.widget_calendar .calendar_wrap td#today {
	background: var(--primary-color);
	color: var(--white-color);
}

.widget_calendar .calendar_wrap td#today a {
	color: var(--white-color);
}

.widget_calendar .calendar_wrap table th {
	background: var(--secondary-color);
	color: var(--white-color);
	font-weight: 400;
}

.widget_calendar .calendar_wrap table th,
.widget_calendar .calendar_wrap table td {
	padding: 8px;
	text-align: center;
}

.wp-block-calendar table th,
.wp-block-calendar tbody td {
	background: var(--secondary-color);
	border: 1px solid var(--grey-color);
}

.wp-block-calendar a {
	text-decoration: none;
}

/*+++++  widget_categories  +++++*/
.widget_categories ul>li:last-child {
	margin-bottom: 0;
}

/*+++++  Meta - widget RSS +++++*/
.widget.widget_rss ul li {
	margin-bottom: 30px;
}

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

.widget.widget_rss ul li a {
	padding-left: 0;
	font-size: 16px;
	color: var(--white-color);
	font-weight: 400;
	font-family: var(--title-fonts);
}

.widget.widget_rss ul li a:hover {
	color: var(--primary-color);
}

.widget.widget_rss ul li a:before {
	display: none;
}

.widget.widget_rss ul li cite {
	font-weight: 400;
	margin-top: 5px;
	display: inline-block;
	width: 100%;
	color: var(--white-color);
	font-family: var(--title-fonts);
}

.widget.widget_rss ul li .rss-date {
	font-size: 14px;
	color: var(--primary-color);
	line-height: 1;
	float: left;
	display: inline-block;
	width: 100%;
	margin: 5px 0;
}

/*+++++ widget Nav Menu +++++*/
.widget.widget_nav_menu ul li .sub-menu,
.widget ul.menu li .sub-menu {
	display: block !important;
	padding-left: 20px;
	margin-top: 15px;
}

/*+++++  SideBar - widget Recent Entries +++++*/
.widget_recent_entries ul li .post-date {
	font-weight: 400;
	color: var(--dark-color);
}

/*+++++ SideBar - Tags +++++*/
.widget_tag_cloud .tag-cloud-link,
.widget .tagcloud .tag-cloud-link {
	font-size: 16px !important;
	background: transparent;
	margin: 0 10px 10px 0;
	display: inline-block;
	float: left;
	color: var(--white-color);
	text-transform: capitalize;
	padding: 4px 16px;
	border: 1px solid var(--grey-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;
}

.widget_tag_cloud .tag-cloud-link:hover,
.widget .tagcloud .tag-cloud-link:hover {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: var(--white-color);
}

/*+++++ SideBar - Gallery +++++*/
.widget.widget_media_gallery .gallery-size-thumbnail .gallery-item img {
	margin: 0;
}

@media(max-width:1023px) {
	.sidebar.widget-area {
		margin-top: 45px;
	}

}

/*++++++++++++++++ New monster widget ++++++++++++++++++++*/

/*+++++ SideBar +++++*/

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input,
.wp-block-search__input {
	font-size: 16px;
	padding: 0 15px;
	height: 52px;
	line-height: 52px;
	border: 1px solid var(--grey-color);
}

.wp-block-calendar table {
	background: transparent;
}

.wp-block-calendar table th {
	background: transparent;
	font-weight: 400;
	color: var(--white-color);
	padding: 8px;
}

.wp-block-calendar a {
	text-decoration: none;
}

ul.wp-block-social-links li {
	margin-bottom: 0;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
	border: none;
	padding: 0;
}

.wp-block-search .wp-block-search__button svg {
	display: none;
}

.widget .wp-block-loginout a:hover {
	color: var(--white-color);
}

.widget .wp-block-loginout input.input {
	margin-bottom: 15px;
}

.widget .wp-block-loginout .login-remember {
	margin-bottom: 15px;
}

.widget .wp-block-loginout .login-remember #rememberme {
	display: inline-block;
	vertical-align: middle;
}

.widget .wp-block-loginout .login-remember label {
	font-size: 14px;
}

.entry-content h2+ul,
.entry-content h2+ol {
	margin-top: 1em;
}

/*+++++ Footer  widget+++++*/

footer#pt-footer .widget {
    margin-bottom: 0px!important;
}
footer#pt-footer .widget h2 {
	color: var(--white-color);
}

footer#pt-footer .wp-block-calendar table caption,
footer#pt-footer .wp-block-calendar table tbody {
	color: var(--white-color);
}

footer#pt-footer .wp-calendar-table td#today {
	background: var(--primary-color);
	color: var(--white-color);
}

footer#pt-footer .wp-calendar-table td#today a {
	color: var(--white-color);
}

footer#pt-footer .wp-calendar-table td a {
	text-decoration: none;
}

footer#pt-footer .wp-block-latest-comments li .wp-block-latest-comments__comment-author {
	color: var(--primary-color);
}

footer#pt-footer .widget ul.wp-block-social-links li a {
	padding: 0;
	width: 36px;
	height: 36px;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	    background: #BD8F39;
    border-radius: 100%;
}

footer#pt-footer .widget h4{
    margin-bottom: 10px;
    padding: 0;
    font-size: 24px;
    
	}

footer#pt-footer .widget ul.wp-block-social-links li a:hover {
	color: var(--white-color);
}

footer#pt-footer .widget ul.wp-block-social-links li a:before {
	display: none;
}

footer#pt-footer .widget .wp-block-search__inside-wrapper {
	position: relative;
}

footer#pt-footer .widget_calendar table#wp-calendar {
	background: transparent;
}

footer#pt-footer .widget_calendar .calendar_wrap table th {
	background: transparent;
	color: var(--white-color);
}

footer#pt-footer .widget.widget_rss ul li cite {
	color: var(--white-color);
}

footer#pt-footer .widget ul li.recentcomments .comment-author-link a {
	font-weight: 400;
	text-decoration: underline;
}


footer#pt-footer .widget ul li.recentcomments a:before {
	display: none;
}

/*+++++++++++ Comments Box +++++++++++++*/
.comment-respond {
	margin-top: 0;
	display: inline-block;
	width: 100%;
}

.pt-comment-area .comments-title,
.comment-respond .comment-reply-title {
	padding-top: 30px;
	position: relative;
	margin: 0;
	padding-bottom: 0;
}

.comment-respond .comment-reply-title a {
	font-weight: 400;
	font-family: var(--title-fonts);
	color: var(--primary-color);
	font-size: 60%;
	margin-left: 30px;
}

.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: 30px;
	margin-bottom: 0;
	vertical-align: top;
	padding: 0;
	list-style: none;
}

.commentlist .pt-comment-info {
	padding: 30px;
	border: 1px solid var(--dark-color);
	position: relative;
	background: var(--dark-color);
}

.commentlist ol.children {
	padding-left: 60px;
}

.commentlist .pt-comment-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
}

.commentlist .pt-comment-avatar {
	padding-right: 15px;
}

.commentlist .pt-comment-avatar img {}

.commentlist .pt-comment-box {
	position: relative;
	display: inline-block;
	width: 100%;
}

.commentlist .pt-comment-box .title:hover {
	text-decoration: none;
	color: var(--primary-color);
}

.commentlist .comment-content p {
	margin: 0;
}

.commentlist .pt-comment-info .reply a {
	position: absolute;
	right: 30px;
	top: 30px;
	margin: 0;
	font-size: 14px;
	line-height: 22px;
	text-transform: capitalize;
	font-family: var(--title-fonts);
}

.commentlist .pt-comment-info .reply a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

.no-comments,
.comment-awaiting-moderation {
	font-style: italic;
	margin: 15px 0;
}

/*+++++++++++++ Comments Form +++++++++++++*/
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
	padding: 0;
	margin: 0 0 30px;
}

.comment-respond .comment-form-comment {
	margin-top: 0;
	margin-bottom: 30px;
	display: inline-block;
	width: 100%;
	float: left;
}

.comment-respond .comment-form-author,
.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
	float: left;
	width: 32.3%;
	display: inline-block;
	margin: 0 15px 30px 0;
}

.comment-respond .comment-form-url {
	margin-right: 0;
}

.comment-respond .form-submit {
	display: inline-block;
	width: 100%;
	margin-bottom: 0;
	float: left;
}

/*++++++++++++ Comments Form +++++++++++*/
ol.commentlist .pingback,
ol.commentlist .trackback {
	margin-left: 25px;
}

ol.commentlist .pingback p,
ol.commentlist .trackback p {
	margin-bottom: 10px;
}

@media(max-width:1365px) {

	.pt-comment-area .comments-title,
	.comment-respond .comment-reply-title {
		font-size: 26px;
		line-height: 34px;
	}

}


/*+++++++++++++++++++++++++++++++++++++++++++++
Blog
++++++++++++++++++++++++++++++++++++++++++*/
.pt-blog .owl-carousel .pt-blog-post {
	margin-bottom: 0;
}

.single-post .pt-blog-post {
	margin-bottom: 0;
}

.pt-blog-post {
	margin-bottom: 30px;
	background: var(--dark-color);
	display: inline-block;
	width: 100%;
}

.pt-blog-post .pt-post-media {
	overflow: hidden;
	margin-bottom: 0;
	position: relative;
}

.pt-blog-post .pt-post-media img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.pt-blog-post:hover .pt-post-media img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.pt-blog-post .pt-post-media .pt-post-date {
	font-family: var(--title-fonts);
	background: var(--primary-color);
	padding: 5px 15px;
	color: var(--white-color);
	text-align: center;
	position: absolute;
	top: 15px;
	left: 15px;
}

.pt-blog-post .pt-post-media .pt-post-date a {
	color: var(--white-color);
	font-size: 14px;
	font-weight: 300;
}

.pt-blog-post .pt-blog-contain {
	padding: 30px;
	display: inline-block;
	position: relative;
	width: 100%;
}

.pt-blog-col-3 .pt-blog-post .pt-blog-contain .pt-blog-title {
	font-size: 22px;
	line-height: 30px;
}

.pt-blog .owl-carousel .pt-blog-post .pt-blog-contain .pt-blog-title {
	font-size: 24px;
	line-height: 32px;
}

.pt-blog-post .pt-blog-contain .pt-blog-title {
	font-size: 32px;
	line-height: 40px;
	margin: 0 0 10px;
	font-weight: 400;
}

.pt-blog-post .pt-blog-contain .pt-blog-info p {
	border-bottom: 1px solid var(--grey-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.pt-blog-post .pt-blog-contain .pt-btn-container {
	margin-top: 10px;
}

.pt-blog-post .pt-blog-contain .pt-btn-container .pt-button:hover {
	background: var(--dark-color);
}

.pt-blog-post .pt-blog-contain .pt-btn-container .pt-button.pt-button-link {
	color: var(--primary-color);
}

.pt-blog-post .pt-blog-contain .pt-btn-container .pt-button.pt-button-link:hover {
	color: var(--white-color);
}

.pt-blog-post .pt-post-meta ul {
	margin: 0 0 20px;
	padding: 0;
	width: 100%;
	display: -ms-flexbox !important;
	display: flex !important;
}

.pt-blog-post .pt-post-meta ul li {
	font-family: var(--title-fonts);
	list-style: none;
	float: left;
	display: inline-block;
	margin-right: 20px;
	align-self: center !important;
	font-size: 16px;
	line-height: 24px;
	text-transform: capitalize;
	letter-spacing: 0.1em;
	font-weight: 300;
}

.pt-blog-post .pt-post-meta ul li:last-child {
	margin-right: 0;
}

.pt-blog-post .pt-post-meta ul li a {
	color: var(--white-color);
	text-decoration: none;
}

.pt-blog-post .pt-post-meta ul li a:hover {
	color: var(--primary-color);
}

.pt-blog-post .pt-post-meta ul li i {
	margin-right: 10px;
	color: var(--primary-color);
}

.pt-light-bg .pt-blog-post {
	background: var(--white-color);
}

@media(max-width:1365px) {

	.comment-respond .comment-form-author,
	.comment-respond .comment-form-email,
	.comment-respond .comment-form-url {
		float: left;
		width: 31.66%;
	}

}

@media(max-width:979px) {
	.pt-blog-post .pt-post-meta ul {
		display: inline-block !important;
	}

}

@media(max-width:767px) {
	.commentlist ol.children {
		padding-left: 30px;
	}

	.commentlist .pt-comment-info {
		padding: 15px;
	}

	.commentlist .pt-comment-info .reply a {
		right: 15px;
		top: 15px;
	}

	.comment-respond .comment-form-author,
	.comment-respond .comment-form-email,
	.comment-respond .comment-form-url {
		width: 100%;
		margin-right: 0;
	}

	.commentlist .pt-comment-avatar {
		width: 90px;
	}

}

@media(max-width:479px) {
	.pt-blog-post .pt-blog-contain {
		padding: 15px;
	}

	.commentlist .pt-comment-wrap {
		display: -ms-flexbox;
		display: inline-block;
		-ms-flex-align: start;
		align-items: inherit;
		width: 100%;
	}

	.commentlist .pt-comment-avatar {
		margin: 0 0 15px 0;
	}

	.pt-blog-post .pt-blog-contain {
		padding: 15px;
	}

	.pt-blog-post .pt-post-meta ul {
		display: inline-block !important;
		margin: 0;
	}

	.pt-blog-post .pt-post-meta ul li {
		font-size: 12px;
		line-height: 20px;
		margin-bottom: 0;
	}

	.pt-blog-post .pt-blog-contain .pt-blog-title {
		font-size: 26px;
		line-height: 34px;
	}

	#rev_slider_2_1 .pt-button i,
	#rev_slider_4_1 .pt-button i,
	#rev_slider_5_1 .pt-button i,
	#rev_slider_6_1 .pt-button i {
		font-size: 10px !important;
	}

}

/*++++++++++++++++++++++++++++++++++++++++
Pagination
+++++++++++++++++++++++++++++++++++++++++++*/
.pt-pagination {
	margin-top: 15px;
}

.pt-pagination .page-numbers {
	display: -ms-flexbox;
	display: flex;
	padding-left: 0;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pt-pagination .page-numbers li:first-child .page-numbers {
	margin-left: 0;
}

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

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

.pt-pagination .page-numbers li .page-numbers:focus {
	box-shadow: none;
	outline: 0;
	z-index: 2;
}

.pt-pagination .page-numbers li .page-numbers:not(:disabled):not(.disabled) {
	cursor: pointer
}

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

.pt-pagination .page-numbers li .next.page-numbers,
.pt-pagination .page-numbers li .prev.page-numbers {
	width: auto;
}

@media(max-width:767px) {

	.pt-pagination .page-numbers li .next.page-numbers,
	.pt-pagination .page-numbers li .prev.page-numbers {
		width: auto;
		display: none;
	}

}

/*++++++++++++++++++++++++++++++++++++++
Error
++++++++++++++++++++++++++++++++++++++++++++*/
.pt-error-block {
	text-align: center;
}

.pt-error-block .pt-errot-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: 400;
}

@media(max-width:1023px) {
	.pt-error-block .pt-errot-text {
		font-size: 320px;
	}

}

@media(max-width:767px) {
	.pt-error-block .pt-errot-text {
		font-size: 200px;
	}

	.pt-error-block h2 {
		font-size: 26px;
		line-height: 34px;
	}

}

@media(max-width:479px) {
	.pt-error-block .pt-errot-text {
		font-size: 130px;
	}

}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
isotope Portfolio
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-grid-item.visible_item,
.pt-masonry-item.visible_item {
	display: none
}

.pt-filters .pt-filter-button-group ul {
	margin: 0 0 45px;
	padding: 0;
	display: inline-block;
	width: 100%;
	text-align: center;
}

.pt-filters .pt-filter-button-group ul li {
	font-family: var(--title-fonts);
	text-transform: capitalize;
	list-style: none;
	color: var(--white-color);
	display: inline-block;
	cursor: pointer;
	padding: 10px 30px;
	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;
	font-weight: 300;
}

.pt-filters .pt-filter-button-group ul li:last-child {
	margin-right: 0;
}

.pt-filters .pt-filter-button-group ul li.active,
.pt-filters .pt-filter-button-group ul li.active:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.pt-filters .pt-filter-button-group ul li:hover {
	color: var(--primary-color);
}

.pt-grid {
	display: inline-block;
	width: 100%;
	float: left;
}

.pt-grid:after {
	content: '';
	display: block;
	clear: both;
}

.pt-col-3 {
	width: 25%;
	padding: 0 15px 30px;
}

.pt-col-6 {
	width: 50%;
	padding: 0 15px 30px;
}

.pt-col-4 {
	width: 33.33%;
	padding: 0 15px 30px;
}

.pt-grid.no-padding .pt-grid-item,
.pt-masonry.no-padding .pt-masonry-item {
	padding: 0;
}

.pt-btn-load-container {
	margin-top: 0;
	display: inline-block;
	width: 100%;
}

.pt-btn-load-container a.pt-button {
	cursor: pointer;
}

/*=========*/
.pt-masonry {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.pt-masonry .ipt-lg-6 {
	width: 50%;
	padding: 0 15px 30px;
}

.pt-masonry .ipt-lg-3 {
	width: 25%;
	padding: 0 15px 30px;
}

.pt-masonry .ipt-lg-4 {
	width: 33.333%;
	padding: 0 15px 30px;
}

.pt-masonry.no-padding .ipt-lg-6,
.pt-masonry.no-padding .ipt-lg-3 {
	padding: 0;
}

@media(max-width:1365px) {
	.pt-col-3 {
		width: 33.33%;
	}

	.pt-masonry .ipt-lg-6 {
		width: 66.66%;
	}

	.pt-masonry .ipt-lg-3 {
		width: 33.33%;
	}

	.pt-masonry .ipt-lg-4 {
		width: 50%;
	}


}

@media(max-width:767px) {
	.pt-filters .pt-filter-button-group ul li {
		margin-right: 0;
		font-size: 14px;
		padding: 5px 15px;
	}

	.pt-col-6,
	.pt-col-4,
	.pt-col-3,
	.pt-masonry .ipt-lg-3,
	.pt-masonry .ipt-lg-6 {
		width: 100%;
		padding: 0 0 30px;
	}

	.pt-masonry .ipt-lg-4 {
		width: 100%;
		padding: 0 0 30px;
	}

}

@media(max-width:479px) {
	.pt-filters .pt-filter-button-group ul li {
		margin-bottom: 15px;
	}

}

.pt-grid-item {
	float: left;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
slider portfoliio
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-white-bg .pt-portfoliobox .owl-nav {
	position: relative;
	margin-top: 45px;
	left: 0;
	top: 0;
}

.pt-white-bg .owl-carousel .owl-dots .owl-dot {
	background: var(--grey-color);
}

.pt-portfoliobox-left-arrow .pt-portfoliobox .owl-nav {
	left: -36%;
	top: 75%;
}

@media(max-width:1365px) {
	.pt-portfoliobox-left-arrow .pt-portfoliobox .owl-nav {
		left: -34%;
		top: 78%;
	}

}

@media(max-width:1200px) {
	.pt-portfoliobox-left-arrow .pt-portfoliobox .owl-nav {
		display: none;
	}

}

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

.fadeInDown {
	animation-name: fadeInDown
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0)
	}

	to {
		opacity: 1;
		transform: none
	}

}

header#pt-header {
	position: relative;
	display: inline-block;
	width: 100%;
	clear: both;
	background: var(--secondary-color);
	z-index: 99;
}

header#pt-header.pt-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	border-bottom: 1px solid rgba(72, 78, 80, 0.2);
}

header#pt-header.pt-header-sticky .pt-top-header {
	display: none;
}

/*+++++++++ Header Top Bar +++++++++*/
header#pt-header .pt-top-header {
	background: var(--dark-color);
	padding: 0;
	font-weight: 300;
	font-size: 16px;
}

header#pt-header .pt-header-social.tagline {
	color: var(--white-color);
	padding-top: 13px;
	display: block;
	font-family: var(--title-fonts);
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	line-height: 22px;
}

header#pt-header .pt-top-header .text-left .pt-header-social.text-left {
	color: var(--white-color);
	padding-top: 10px;
	display: inline-block;
}

header#pt-header .pt-top-header a.pt-header-contact {
	color: var(--white-color);
	padding: 10px 0;
	display: inline-block;
	margin-right: 10px;
	border-right: 1px solid rgba(255, 255, 255, 0.04);
	padding-right: 15px;
	font-family: var(--title-fonts);
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
}

header#pt-header .pt-top-header a.pt-header-contact i {
	margin-right: 5px;
}

header#pt-header .pt-top-header .pt-header-contact.text-right ul {
	float: right;
}

header#pt-header .pt-top-header .pt-header-contact ul {
	margin: 0;
	padding: 0;
}

header#pt-header .pt-top-header .pt-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#pt-header .pt-top-header .pt-header-contact ul li:last-child {
	margin-right: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.04);
}

header#pt-header .pt-top-header .pt-header-contact ul li i {
	margin-right: 8px;
}

header#pt-header .pt-top-header .pt-header-contact ul li a {
	color: var(--white-color);
}

header#pt-header .pt-top-header .pt-header-contact ul li a:hover {
	color: var(--white-color);
	background: transparent;
}

header#pt-header .pt-top-header .text-right .pt-header-social ul,
header#pt-header .pt-top-header .pt-header-social.text-right ul {
	float: right;
}

header#pt-header .pt-top-header .pt-header-social ul {
	margin: 0;
	padding: 0;
}

header#pt-header .pt-top-header .pt-header-social ul li {
	list-style: none;
	display: inline-block;
	float: left;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header#pt-header .pt-top-header .pt-header-social ul li a {
	color: var(--white-color);
	padding: 2px!important;
	display: inline-block;
}

header#pt-header .pt-top-header ul li a:hover {
	color: var(--white-color);
	background: var(--primary-color)
}

header#pt-header .pt-top-header .pt-header-social ul li:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.04);
}

header#pt-header .pt-top-header .pt-header-social ul li{border-radius:50px;}


/*++++++++ Logo +++++++++++*/
header#pt-header .pt-bottom-header .navbar .navbar-brand {
	line-height: 80px;
}

header#pt-header .pt-bottom-header .navbar .navbar-brand img {
	height: 50px;
}

/*++++++ Header Navbar Bar +++++*/
header#pt-header .pt-bottom-header .navbar {
	padding: 0;
}

header#pt-header .pt-bottom-header .navbar .pt-menu-contain {
	display: inline-block;
	width: 100%;
}

header#pt-header .pt-bottom-header .navbar .navbar-nav {
	float: right;
}

header#pt-header .pt-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: 400;
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li:last-child {
	margin-right: 0;
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li a {
	color: var(--white-color);
	font-family: var(--title-fonts);
	font-size: 16px;
	text-transform: capitalize;
	line-height: 24px;
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li a:focus,
header#pt-header .pt-bottom-header .navbar .navbar-nav li a:hover,
header#pt-header .pt-bottom-header .navbar .navbar-nav li.current-menu-item a,
header#pt-header .pt-bottom-header .navbar .navbar-nav li.current_page_item a,
header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover a,
header#pt-header .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor a {
	color: var(--primary-color);
}

/*++++++++ Sub Menu Bar ++++++++*/
header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu {
	display: none;
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
	display: block;
	background: var(--secondary-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);
	border: 1px solid var(--primary-color);
}

header#pt-header .pt-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);
	border-bottom: 1px solid var(--grey-color);
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li:last-child {
	border: none;
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li i {
	margin-left: 10px;
	font-size: 12px;
	color: var(--white-color);
}

header#pt-header .pt-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(--white-color);
	font-size: 16px;
	font-weight: 300;
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li a:focus,
header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item>a {
	background: var(--primary-color);
	color: var(--white-color);
}

@media screen and (max-width:4000px) and (min-width:1023px) {
	header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover>.sub-menu {
		display: block !important;
	}

}

/*+++++++ Navigation Sub Menu +++++++++++++*/
header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li>.sub-menu {
	display: none;
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
	position: absolute;
	top: -1px;
	left: 100%;
	display: block;
	background: var(--secondary-color);
	padding-left: 0;
	display: inline-block;
	width: 200px;
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.pt-submenu-icon {
	opacity: 1;
	position: absolute;
	top: 12px;
	right: 15px;
	line-height: 2;
	font-size: 12px;
	color: var(--white-color);
	-moz-transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}

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

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

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children:hover>a {
	color: var(--white-color);
	transition: all 0s ease-in-out;
	transition: all 0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	-ms-transition: all 0s ease-in-out;
	-o-transition: all 0s ease-in-out;
	-webkit-transition: all 0s ease-in-out;
}

/*+++++++++++++ Navigation search ++++++++++++++++*/
header#pt-header .pt-menu-search-block {
	position: relative;
	margin: 0 0 0 30px;
}

header#pt-header .pt-menu-search-block a {
	color: var(--primary-color);
	font-size: 22px;
	text-align: center;
	display: inline-block;
}

header#pt-header .pt-search-form {
	position: absolute;
	top: 100%;
	right: -30px;
	width: 350px;
	padding: 15px;
	z-index: 999;
	display: none;
	background: var(--secondary-color);
	-webkit-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
	border: 1px solid var(--primary-color);
}

/*+++++++++++++ Header Default +++++++++++++++++*/
header#pt-header.pt-header-default .pt-top-header a.pt-header-contact {
	border: none;
}

header#pt-header.pt-header-default .pt-bottom-header.pt-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	background: var(--dark-color);
	border-bottom: 1px solid rgba(72, 78, 80, 0.2);
}

/*+++++++++++++++*/
header#pt-header.pt-header-default .pt-btn-container {
	margin: 0 0 0 30px;
}

header#pt-header.pt-header-default .pt-btn-container .pt-button span {
	margin-right: 0;
}

header#pt-header.pt-header-default .pt-btn-container .pt-button {
	background: var(--primary-color);
	border: none;
}

header#pt-header.pt-header-default .pt-btn-container .pt-button:hover {
	background: var(--primary-color);
	border: none;
}

header#pt-header.pt-header-default .pt-toggle-btn {
	padding: 0;
	margin: 0 0 0 30px;
}

header#pt-header.pt-header-default .pt-toggle-btn a {
	position: relative;
	display: inline-block;
	padding: 0;
	font-size: 38px;
	background: var(--primary-color);
	color: #fff;
	line-height: 52px;
	width: 52px;
	height: 52px;
	text-align: center;
}

header#pt-header.pt-header-default .pt-menu-search-block {
	margin: 0 0 0 30px;
}

header#pt-header.pt-header-style-1 .pt-top-header a.pt-header-contact {
	border: none;
}

header#pt-header.pt-header-style-1 .pt-bottom-header.pt-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	background: var(--dark-color);
	border-bottom: 1px solid rgba(72, 78, 80, 0.2);
}

header#pt-header.pt-header-style-1 .pt-bottom-header.pt-header-sticky .navbar {
	background: transparent;
}

/*+++++++++++++++*/
header#pt-header.pt-header-style-1 {
	position: absolute;
	background: transparent;
}

header#pt-header.pt-header-style-1 .pt-top-header {
	background: transparent;
}

header#pt-header.pt-header-style-1 .pt-top-header .pt-header-contact ul li {
	border: none;
	padding: 15px 0;
	padding-right: 30px;
}

header#pt-header.pt-header-style-1 .pt-top-header .pt-header-contact ul li:last-child {
	border: none;
}

header#pt-header.pt-header-style-1 .pt-top-header .pt-header-contact ul li i {
	color: var(--primary-color);
	margin-right: 10px;
}

/**
header#pt-header.pt-header-style-1 .pt-top-header .pt-header-social ul li {
	border: none;
	padding: 15px 12px;
}**/

header#pt-header.pt-header-style-1 .pt-top-header .pt-header-social ul li a {
	padding: 5px;
}

/**
header#pt-header.pt-header-style-1 .pt-top-header .pt-header-social ul li:last-child {
	padding-right: 0;
}**/

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

header#pt-header.pt-header-style-1 .pt-bottom-header .navbar {
	background: var(--dark-color);
}

header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-brand {
	padding-left: 15px;
}

header#pt-header.pt-header-style-1 .pt-bottom-header.pt-header-sticky .navbar .navbar-brand {
	padding-left: 0;
}

header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-brand {
	line-height: 70px;
}

header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li {
	line-height: 70px;
}

header#pt-header.pt-header-style-1 .pt-menu-search-block {
	margin: 0 0 0 30px;
}

header#pt-header.pt-header-style-1 .pt-search-form {
	top: 50px;
}

header#pt-header.pt-header-style-1 .dropdown-menu-mini-cart,
header#pt-header.pt-header-style-1 .dropdown-menu[data-bs-popper] {
	top: 71px;
}

header#pt-header.pt-header-style-1 .pt-btn-container {
	margin: 0 0 0 30px;
}

header#pt-header.pt-header-style-1 .pt-btn-container .pt-button {
	padding: 18px 30px;
}

header#pt-header.pt-header-style-1 .pt-btn-container .pt-button:hover {
	background: var(--primary-color);
}

header#pt-header.pt-header-style-1 .pt-shop-btn .pt-cart>a {
	line-height: 70px;
}

header#pt-header.pt-header-style-1 .pt-toggle-btn {
	padding: 0;
	margin: 0 0 0 30px;
}

header#pt-header.pt-header-style-1 .pt-toggle-btn a {
	position: relative;
	display: inline-block;
	padding: 0;
	font-size: 38px;
	background: var(--primary-color);
	color: #fff;
	line-height: 52px;
	width: 52px;
	height: 52px;
	text-align: center;
}

/*+++++ Header Style-1 +++++*/
header#pt-header.pt-header-style-1 .pt-top-header a.pt-header-contact {
	border: none;
}

header#pt-header.pt-header-style-1.pt-has-sticky.pt-header-sticky {
	position: fixed;
	padding: 0;
	background: var(--dark-color);
	border-bottom: 1px solid rgba(72, 78, 80, 0.2);
}

header#pt-header.pt-header-style-1 .pt-bottom-header {
	min-height: 70px;
	max-width: 1920px;
	margin: 0 auto;
}

header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-brand {
	line-height: normal;
	position: relative;
}

header#pt-header.pt-header-style-1 .pt-header-info-box {
	margin: 0 0 0 30px;
	display: flex;
	color: var(--white-color);
}

header#pt-header.pt-header-style-1 .pt-header-call {
	display: inline-block;
	float: left;
	margin-right: 30px;
	margin-top: 5px;
}

header#pt-header.pt-header-style-1 .pt-header-call a i {
	font-size: 48px;
	margin-right: 15px;
	line-height: 56px;
}

header#pt-header.pt-header-style-1 .pt-header-call a {
	display: flex;
	align-items: flex-start;
}

header#pt-header.pt-header-style-1 .pt-header-call a .pt-call-info {
	flex: 1;
	text-transform: capitalize;
	font-size: 14px;
	color: var(--dark-color);
}

header#pt-header.pt-header-style-1 .pt-header-call a .pt-call-info span {
	width: 100%;
	float: left;
	display: inline-block;
	color: var(--primary-color);
	line-height: normal;
}

header#pt-header.pt-header-style-1 .pt-header-call a .pt-call-info h5 {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}

header#pt-header.pt-header-style-1 .pt-shop-btn {
	margin-left: 30px;
}

header#pt-header.pt-header-style-1 .pt-btn-container {
	margin-left: 30px;
}

header#pt-header.pt-header-style-1 .pt-button {
	background: var(--primary-color);
	border: none;
}

header#pt-header.pt-header-style-1 .pt-button:hover {
	background: var(--primary-color);
	border: none;
}

header#pt-header .pt-button:before,
header#pt-header .pt-button:after {
	display: none;
}

/*+++++ Header Style-2 +++++*/
header#pt-header.pt-header-style-2 .pt-top-header a.pt-header-contact {
	border: none;
}

header#pt-header.pt-header-style-2 .pt-top-header {
	background: var(--secondary-color);
}

header#pt-header.pt-header-style-2 .pt-top-header .text-left .pt-header-social {
	padding-top: 11px;
	color: var(--white-color);
	display: inline-block;
}

header#pt-header.pt-header-style-2 .pt-header-diff-block .navbar-brand img {
	height: 60px;
}

header#pt-header.pt-header-style-2 {
	position: absolute;
	left: 0;
	display: inline-block;
	width: 100%;
	background: transparent;
	padding: 0;
	-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#pt-header.pt-header-style-2 .no-gutters {
	margin-right: 0;
	margin-left: 0;
}

header#pt-header.pt-header-style-2 .no-gutters>.col,
header#pt-header.pt-header-style-2 .no-gutters>[class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}

header#pt-header.pt-header-style-2 .navbar-brand {
	display: inline-block;
}

header#pt-header.pt-header-style-2 .pt-bottom-header {
	min-height: auto;
	background: var(--dark-color);
}

header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li {
	line-height: 75px;
}

header#pt-header.pt-header-style-2 .pt-bottom-header .navbar {
	padding: 10px 0;
}

header#pt-header.pt-header-style-2 .pt-bottom-header .pt-btn-container .pt-button {
	background: var(--primary-color);
	border: none;
}

header#pt-header.pt-header-style-2 .pt-bottom-header .pt-btn-container .pt-button:hover {
	border: none;
	background: var(--primary-color);
}

header#pt-header.pt-header-style-2 .pt-menu-search-block {
	line-height: 76px;
	padding: 0 30px;
	background: var(--white-color);
	border-left: 1px solid var(--grey-color);
	border-right: 1px solid var(--grey-color);
	color: #fff;
	font-size: 20px;
}

header#pt-header.pt-header-style-2 .pt-contact-header {
	background: var(--secondary-color);
	margin-bottom: -30px;
}

header#pt-header.pt-header-style-2 .pt-contact-header ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	clear: both;
	overflow: hidden;
}

header#pt-header.pt-header-style-2 .pt-contact-header .pt-contact-info>ul>li {
	color: var(--white-color);
	border-right: 1px solid rgba(255, 255, 255, 0.04);
	float: left;
	text-align: center;
	padding: 15px 5px;
	width: 25%;
	font-weight: 300;
	font-size: 16px;
}

header#pt-header.pt-header-style-2 .pt-contact-header .pt-contact-info>ul>li:last-child {
	border: none;
}

header#pt-header.pt-header-style-2 .pt-contact-header .pt-contact-info>ul>li.address-text span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 240px;
	display: inline-flex;
}

header#pt-header.pt-header-style-2 .pt-contact-header .pt-contact-info li a {
	color: var(--white-color);
}

header#pt-header.pt-header-style-2 .pt-contact-header .pt-contact-info li a:hover {
	color: var(--primary-color);
}

header#pt-header.pt-header-style-2 .pt-contact-header .pt-contact-info li i {
	color: var(--primary-color);
	margin-right: 10px;
}

header#pt-header.pt-header-style-2 .pt-contact-header .pt-header-social li {
	display: inline-block;
	padding: 0 10px;
}

header#pt-header.pt-header-style-2 .pt-contact-header .pt-header-social li a i {
	color: var(--white-color);
	transition: all 0.5s ease;
}

header#pt-header.pt-header-style-2 .pt-contact-header .pt-header-social li a:hover i {
	color: var(--primary-color);
}

header#pt-header.pt-header-style-2 .pt-contact-header .pt-header-social li a i {
	margin-right: 0;
}

/*Header Style-2 sticky*/
header#pt-header.pt-header-style-2.pt-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
}

header#pt-header.pt-header-style-2.pt-header-sticky .pt-top-header {
	display: none;
}

header#pt-header.pt-header-style-2.pt-header-sticky .navbar-brand {
	line-height: 2.44444;
}

header#pt-header.pt-header-style-2.pt-header-sticky .pt-header-diff-block .navbar-brand img {
	height: 55px;
}

header#pt-header.pt-header-style-2.pt-header-sticky .pt-menu-search-block {
	line-height: 85px;
}

header#pt-header.pt-header-style-2.pt-header-sticky .pt-toggle-btn {
	padding: 25px;
}

/*+++++Ttoggle Side Bar +++++*/
header#pt-header.pt-header-style-2 .pt-toggle-btn {
	line-height: 75px;
	padding: 22px 25px;
	background: var(--primary-color);
	color: #fff;
	cursor: pointer;
}

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

.buttons ol li:before {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	display: block;
	width: 23vw;
	height: 20vw;
	content: "";
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.buttons ol li:after {
	position: absolute;
	top: 38%;
	right: 7vw;
	transform: rotate(-90deg);
	z-index: 1;
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	content: counter(list-counter, decimal-leading-zero);
	font-family: Helvetica;
	font-size: 20px;
	line-height: 30px;
	font-weight: 300;
	opacity: 0.15;
	transition: color 0.35s;
	will-change: color;
}

header#pt-header.pt-header-style-2 .pt-toggle-btn a {
	position: relative;
	display: block;
	top: 15px;
	width: 30px;
	height: 2px;
	margin: 0 auto;
	border: none;
	cursor: pointer;
	background: currentColor;
	color: inherit;
	font-size: 0;
	transition: 0.35s;
}

header#pt-header.pt-header-style-2 .pt-toggle-btn a:before,
header#pt-header.pt-header-style-2 .pt-toggle-btn a:after {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 0.35s;
}

header#pt-header.pt-header-style-2 .pt-toggle-btn a:before {
	transform: translate(-50%, -10px);
}

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

/*+++++ Header Style-3 +++++*/
header#pt-header.pt-header-style-3 .pt-top-header a.pt-header-contact {
	border: none;
}

header#pt-header.pt-header-style-3 .pt-header-top-wrapper {
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 5px;
}

header#pt-header.pt-header-style-3 .pt-top-header .text-left .pt-header-social {
	padding-top: 11px;
	color: var(--white-color);
	display: inline-block;
}

header#pt-header.pt-header-style-3 .pt-header-top-wrapper .pt-site-logo a.navbar-brand img {
	height: 42px;
}

header#pt-header.pt-header-style-3 .site-header-menu a.navbar-brand img {
	display: none;
}

header#pt-header.pt-header-style-3 .pt-header-top-wrapper .pt-top-info-content .pt-header-info {
	display: flex;
	justify-content: flex-end;
}

header#pt-header.pt-header-style-3 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box {
	display: flex;
	padding: 0 30px;
	align-items: center;
}

header#pt-header.pt-header-style-3 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box.address {
	width: 30%;
	padding: 0;
}

header#pt-header.pt-header-style-3 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box.address p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

header#pt-header.pt-header-style-3 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box:last-child {
	padding-right: 0;
}

header#pt-header.pt-header-style-3 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box .info-icon-content {
	padding-left: 10px;
}

header#pt-header.pt-header-style-3 .pt-header-info-box .info-icon i {
	font-size: 34px;
	color: var(--primary-color);
}

header#pt-header.pt-header-style-3 .pt-header-info-box .info-icon-content h4 {
	font-size: 20px;
	font-weight: 400;
	line-height: 22px;
}

header#pt-header.pt-header-style-3 .pt-header-info-box .info-icon-content p {
	margin-bottom: 0;
	font-size: 14px;
}

header#pt-header.pt-header-style-3 .site-header-menu {
	position: relative;
	bottom: -30px;
}

header#pt-header.pt-header-style-3 .pt-bottom-header .navbar {
	background: var(--primary-color);
}

header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav {
	float: none;
	padding-left: 15px;
}

header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li a {
	color: var(--white-color);
}

header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li i {
	color: var(--white-color);
}

header#pt-header.pt-header-style-3 .pt-menu-search-block {
	line-height: 65px;
	padding: 0 30px;
	font-size: 20px;
}

header#pt-header.pt-header-style-3 .pt-menu-search-block a {
	color: var(--white-color);
	font-size: 22px;
}

header#pt-header.pt-header-style-3 .pt-search-form {
	top: 66px;
	right: 0;
}

header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li {
	margin-right: 40px;
	line-height: 65px;
}

header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li:last-child {
	margin-right: 0;
}

header#pt-header.pt-header-style-3 .pt-toggle-btn {
	display: none;
}

header#pt-header.pt-header-style-3 .pt-bottom-header .pt-button {
	background: var(--purple-color);
	padding: 18px 45px;
}

/*+++++ Header Style-4 +++++*/
header#pt-header.pt-header-style-4 .pt-header-info-box {
	display: flex;
	align-items: center;
	padding: 0 30px;
}

header#pt-header.pt-header-style-4 .pt-header-info-box .info-icon i {
	font-size: 34px;
	color: var(--primary-color);
}

header#pt-header.pt-header-style-4 .pt-header-info-box .info-icon-content p {
	margin-bottom: 0;
}

header#pt-header.pt-header-style-4 .pt-header-info-box .info-icon-content h4 {
	font-size: 20px;
	font-weight: 400;
	line-height: 22px;
}

header#pt-header.pt-header-style-4 .pt-header-info-box .info-icon-content {
	padding-left: 15px;
}

/*+++++ Header Style-5 +++++*/
header#pt-header.pt-header-style-5 {
	background: transparent;
	position: absolute;
}

header#pt-header.pt-header-style-5 .pt-top-header {
	background: transparent;
}

header#pt-header.pt-header-style-5 .pt-top-header .text-left .pt-header-social {
	padding-top: 6px;
	color: var(--white-color);
	display: inline-block;
}

header#pt-header.pt-header-style-5 .pt-bottom-header .navbar .navbar-nav li:last-child {
	margin-right: 0;
}

header#pt-header.pt-header-style-5 .pt-top-header .pt-header-social ul li {
	border: none;
}

header#pt-header.pt-header-style-5 .pt-top-header .pt-header-social ul li a {
	padding: 10px â€‹15px;
}

header#pt-header.pt-header-style-5 .pt-top-header ul li a:hover {
	background: none;
	color: var(--primary-color);
}

header#pt-header.pt-header-style-5 .pt-bottom-header .navbar {
	background: var(--white-color);
	border-radius: 5px;
}

header#pt-header.pt-header-style-5 .pt-bottom-header .navbar .navbar-brand {
	padding-left: 15px;
}

header#pt-header.pt-header-style-5 .pt-menu-phone {
	margin-left: 30px;
}

header#pt-header.pt-header-style-5 .pt-menu-phone a#pt-phone {
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	color: var(--white-color);
	border: 6px solid var(--white-color);
	display: inline-block;
	text-align: center;
	border-radius: 100px;
	line-height: 48px;
	vertical-align: middle;
	margin-right: -30px;
	position: relative;
	z-index: 9;
}

header#pt-header.pt-header-style-5 .pt-btn-container .pt-button {
	border-radius: 0;
	line-height: 66px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	font-weight: 400;
	text-transform: uppercase;
	padding-left: 55px;
}

@media(max-width:1599px) {
	header#pt-header .pt-bottom-header .navbar .navbar-nav li {
		margin-right: 20px;
	}

}

@media(max-width:1399px) {
	header#pt-header .pt-bottom-header .navbar .navbar-nav li {
		margin-right: 20px;
	}

	header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
		left: inherit;
		right: 100%;
	}

}

@media(max-width:1365px) {
	header#pt-header .pt-bottom-header .navbar .navbar-nav li {
		font-size: 14px;
		margin-right: 15px;
	}

	header#pt-header .pt-top-header .pt-header-social ul li a {
		font-size: 12px;
		padding: 10px 15px;
	}

	header#pt-header .pt-top-header a.pt-header-contact {
		padding: 7px 0;
	}

	header#pt-header .pt-top-header .pt-header-contact ul li {
		font-size: 13px;
		padding: 10px 15px;
	}

	header#pt-header.pt-header-default .pt-menu-search-block {
		margin: 0 0 0 15px;
	}

	header#pt-header.pt-header-default .pt-toggle-btn {
		margin: 0 0 0 15px;
	}

	header#pt-header.pt-header-style-1 .pt-toggle-btn {
		margin: 0 0 0 15px;
	}

	header#pt-header.pt-header-style-2 .pt-menu-search-block {
		padding: 0 20px;
	}

	header#pt-header.pt-header-style-2 .pt-header-diff-block .navbar-brand img {
		height: 40px;
	}

	header#pt-header.pt-header-style-2 .navbar-brand {
		line-height: 4.444444;
	}

}

@media(max-width:1199px) {

	/*+++++ Header default +++++*/
	header#pt-header.pt-header-default .pt-bottom-header .navbar .navbar-nav li {
		margin-right: 5px;
	}

	/*+++++ Header Style-1 +++++*/
	header#pt-header.pt-header-style-1 .pt-header-call {
		display: none;
	}

	header#pt-header.pt-header-style-1 .pt-header-info-box {
		margin-left: 15px;
	}

	header#pt-header.pt-header-style-1 .pt-btn-container {
		margin-left: 15px;
	}

	/*+++++ Header Style-2 +++++*/
	header#pt-header.pt-header-style-2 .pt-contact-header .pt-contact-info>ul>li {
		font-size: 14px;
	}

	header#pt-header.pt-header-style-2 .pt-contact-header .pt-contact-info>ul>li.address-text span {
		max-width: 170px;
	}

	/*+++++ Header Style-3 +++++*/
	header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li {
		margin-right: 20px;
	}

	header#pt-header.pt-header-style-3 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box {
		padding: 0 6px;
	}

	header#pt-header.pt-header-style-3 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box .info-icon-content {
		padding-left: 10px;
	}

	/*+++++ Header Style-4 +++++*/
	header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav li {
		margin-right: 10px;
	}

	header#pt-header.pt-header-style-4 .pt-header-info-box {
		padding: 0 15px;
		font-size: 13px;
	}

	header#pt-header.pt-header-style-4 .pt-btn-container .pt-button {
		padding: 12px 16px;
	}

	/*+++++ Header Style-5 +++++*/
	header#pt-header.pt-header-style-5 .pt-bottom-header .navbar .navbar-nav li {
		margin-right: 10px;
	}

	header#pt-header.pt-header-style-5 .pt-bottom-header .navbar .navbar-nav li a {
		font-size: 14px;
	}

	header#pt-header.pt-header-style-5 .pt-menu-search-block {
		margin-left: 10px;
	}

	header#pt-header.pt-header-style-5 .pt-btn-container .pt-button {
		padding-left: 38px;
		padding-right: 5px;
	}

	header#pt-header.pt-header-style-5 .pt-menu-phone a#pt-phone {
		width: 50px;
		height: 50px;
		line-height: 43px;
		border: 2px solid var(--white-color);
	}

}

@media(max-width:1024px) {
	header#pt-header.pt-header-style-5 .pt-bottom-header .navbar .navbar-nav li {
		margin-right: 8px;
	}

	header#pt-header.pt-header-style-2 .pt-header-diff-block .navbar-brand img {
		height: 40px;
	}

}

@media(max-width:1023px) {

	/*++++++++++++++ Button Toggler +++++++++++++*/
	.navbar-expand-lg .navbar-toggler {
		display: block;
	}

	.navbar-expand-lg .navbar-collapse.collapse:not(.show) {
		display: none !important;
	}

	header#pt-header .pt-bottom-header .navbar-toggler {
		font-size: 20px;
		padding: 12px 18px;
		line-height: normal;
		float: right;
		outline: none;
		margin: 0px 15px 0px 15px;
		color: var(--white-color);
		box-shadow: none;
		background: var(--primary-color);
	}

	header#pt-header.pt-header-default .pt-bottom-header .navbar-toggler {
		margin-right: 0;
	}

	header#pt-header .pt-bottom-header .navbar .navbar-collapse {
		width: 100%;
		position: absolute;
		left: 0;
		top: 100%;
		background: var(--secondary-color);
		-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);
		max-height: 330px;
		overflow-y: scroll;
		overflow-x: hidden;
	}

	header#pt-header .pt-bottom-header .navbar .navbar-brand {
		line-height: 60px;
	}

	header#pt-header .pt-bottom-header {
		min-height: 60px;
	}

	header#pt-header .pt-bottom-header .navbar .navbar-nav {
		float: left;
		width: 100%;
		display: inline-block;
	}

	header#pt-header .pt-bottom-header .navbar .navbar-nav li {
		float: left;
		width: 100%;
		display: inline-block;
		line-height: normal;
		position: relative;
		font-size: 16px;
		position: relative;
	}

	header#pt-header .pt-bottom-header .navbar .navbar-nav li a {
		width: 100%;
		display: inline-block;
		padding: 15px;
		background: var(--secondary-color);
	}

	header#pt-header .pt-bottom-header .navbar .navbar-nav li i {
		margin-left: 0;
		opacity: 1;
		font-size: 12px;
		position: absolute;
		right: 0;
		margin-top: 0;
		top: 0;
		padding: 22px;
		-moz-transform: none;
		-webkit-transform: none;
		-o-transform: none;
		-ms-transform: none;
		transform: none;
	}

	header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
		position: relative;
		top: 0;
		left: 0;
		padding-left: 0;
		background: var(--secondary-color);
		box-shadow: none;
		display: inline-block;
		width: 100%;
	}

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

	header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.pt-submenu-icon {
		opacity: 1;
		position: absolute;
		top: 0;
		right: 0;
		line-height: 2;
		font-size: 12px;
		padding: 12px 30px;
		-moz-transform: none;
		-webkit-transform: none;
		-o-transform: none;
		-ms-transform: none;
		transform: none;
	}

	header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li a {
		padding: 10px 30px;
	}

	header#pt-header .pt-bottom-header .navbar .navbar-nav li>a:hover,
	header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover>a {
		background: var(--primary-color);
		color: var(--white-color);
	}

	header#pt-header .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
		background: var(--primary-color);
		color: var(--white-color);
	}

	header#pt-header .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>.pt-submenu-icon,
	header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover>.pt-submenu-icon {
		color: var(--white-color);
	}

	header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
		position: relative;
		top: 0;
		left: 0;
		background: transparent;
		display: inline-block;
		width: 100%;
		float: left;
	}

	header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu>li>a {
		background: var(--secondary-color);
	}

	header#pt-header .pt-top-header .pt-header-contact ul li {
		padding: 10px 10px;
	}

	header#pt-header.pt-header-default .navbar.navbar-expand-lg {
		justify-content: space-between;
	}

	header#pt-header.pt-header-default .pt-menu-search-block {
		margin-left: auto;
	}

	header#pt-header.pt-header-default .pt-toggle-btn {
		display: none;
	}

	header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-brand {
		line-height: 60px;
	}

	header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li {
		line-height: normal;
	}

	header#pt-header.pt-header-style-1 .pt-menu-search-block {
		margin-left: auto;
	}

	header#pt-header.pt-header-style-1 .pt-shop-btn .pt-cart>a {
		line-height: 60px;
	}

	header#pt-header.pt-header-style-1 .pt-toggle-btn {
		display: none;
	}

	header#pt-header.pt-header-style-1 .pt-header-info-box {
		margin-left: auto;
	}

	header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
		position: relative;
		top: 0;
		left: 0;
		padding-left: 0;
		background: var(--secondary-color);
		box-shadow: none;
		display: inline-block;
		width: 100%;
	}

	header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li {
		line-height: normal;
	}

	header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
		top: 0;
	}

	header#pt-header.pt-header-style-5 .pt-menu-search-block {
		margin-left: auto !important;
	}

	header#pt-header.pt-header-style-2 .pt-toggle-btn {
		display: none;
	}

	header#pt-header.pt-header-style-2 .pt-bottom-header .navbar-toggler {
		margin: 0 20px;
		margin-right: 0;
	}

	/*+++++ Header Style-3 +++++*/
	.pt-sidebar {
		display: none;
	}

	header#pt-header.pt-header-style-3 .pt-header-top-wrapper {
		display: none;
	}

	header#pt-header.pt-header-style-3 .site-header-menu a.navbar-brand img {
		display: inline-block;
	}

	header#pt-header.pt-header-style-3 .pt-header-info-box {
		margin-left: auto;
	}

	header#pt-header.pt-header-style-3 .site-header-menu {
		bottom: inherit;
		background: var(--white-color);
	}

	header#pt-header.pt-header-style-3 .pt-bottom-header .navbar {
		background: var(--white-color);
	}

	header#pt-header.pt-header-style-3 .pt-menu-search-block a {
		color: var(--dark-color);
	}

	header#pt-header.pt-header-style-3 .pt-bottom-header .pt-button {
		padding: 20px 45px;
	}

	header#pt-header.pt-header-style-3 .pt-bottom-header .navbar-toggler:focus {
		box-shadow: none;
	}

	header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav {
		padding-left: 0;
	}

	header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li {
		line-height: normal;
	}

	header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li a {
		color: var(--dark-color);
	}

	header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
		color: var(--white-color);
	}

	header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li:hover>a {
		color: var(--white-color);
	}

	header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li i {
		color: var(--dark-color);
	}

	header#pt-header.pt-header-style-3 .pt-menu-search-block {
		padding: 0 15px;
	}

	header#pt-header.pt-header-style-4 .pt-header-info-box {
		margin-left: auto;
	}

	header#pt-header.pt-header-style-5 .pt-bottom-header .navbar .navbar-nav li a {
		font-size: 16px;
	}

	header#pt-header.pt-header-style-5 .pt-bottom-header .navbar-toggler {
		margin-right: 15px;
	}

	header#pt-header.pt-header-style-5 .pt-btn-container .pt-button {
		-webkit-border-top-right-radius: 0;
		-webkit-border-bottom-right-radius: 0;
		-moz-border-radius-topright: 0;
		-moz-border-radius-bottomright: 0;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}

}

@media(max-width:991px) {

	/*+++++ Header Style-2 +++++*/
	header#pt-header.pt-header-style-2 .pt-top-header {
		display: none;
	}

	header#pt-header.pt-header-style-2 .navbar-brand {
		padding: 15px 0;
		line-height: normal;
	}

	header#pt-header.pt-header-style-2 .pt-top-header a.pt-header-contact {
		display: none;
	}

	header#pt-header.pt-header-style-2 .pt-header-diff-block .navbar-brand img {
		height: 60px;
	}

	header#pt-header.pt-header-style-2 .pt-menu-search-block {
		height: 85px;
		line-height: 90px;
		border: none;
	}

	header#pt-header.pt-header-style-2 .pt-contact-header {
		display: none;
	}

}

@media(max-width:800px) {
	header#pt-header .pt-top-header a.pt-header-contact {
		margin-right: 0;
	}

}

@media(max-width:767px) {

	header#pt-header.pt-header-default .pt-top-header,
	header#pt-header.pt-header-default .pt-btn-container {
		display: none !important;
	}

	header#pt-header.pt-header-style-2 .navbar-brand {
		width: auto;
		padding: 5px 0;
	}

	header#pt-header.pt-header-style-2 .pt-shop-btn .pt-cart>a {
		line-height: normal;
	}

	header#pt-header.pt-header-style-2 .pt-btn-container {
		display: none;
	}

	header#pt-header.pt-header-style-2 .pt-bottom-header .navbar-toggler {
		margin-right: 0;
	}

	header#pt-header.pt-header-style-3 .pt-top-header {
		display: none;
	}

	header#pt-header.pt-header-style-3 .pt-btn-container {
		display: none;
	}

	header#pt-header.pt-header-style-3 .pt-bottom-header .navbar-toggler {
		margin-left: 0;
	}

	header#pt-header.pt-header-style-5 .pt-bottom-header .navbar .navbar-brand {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	header#pt-header.pt-header-style-5 .pt-menu-phone {
		display: none;
	}

	header#pt-header.pt-header-style-5 .pt-btn-container {
		display: none;
	}

	header#pt-header.pt-header-style-1 .pt-top-header,
	header#pt-header.pt-header-style-1 .pt-btn-container {
		display: none !important;
	}

	header#pt-header.pt-header-style-1 .pt-btn-container {
		display: none;
	}

	header#pt-header.pt-header-style-1 .pt-top-header {
		display: none;
	}

	header#pt-header.pt-header-style-1 .pt-top-header {
		display: none;
	}

	header#pt-header.pt-header-style-2 .pt-top-header {
		display: none;
	}

	header#pt-header.pt-header-style-4 .pt-top-header {
		display: none;
	}

	header#pt-header.pt-header-style-4 .pt-header-info-box {
		display: none;
	}

	header#pt-header.pt-header-style-4 .pt-btn-container {
		display: none;
	}

	header#pt-header.pt-header-style-5 .pt-top-header {
		display: none;
	}

	header#pt-header.pt-header-style-5 {
		top: 15px;
	}

}

@media(max-width:480px) {
	header#pt-header .pt-bottom-header .navbar .navbar-brand img {
		height: 40px;
	}


	header#pt-header .pt-search-form {
		top: 49px;
	}

	header#pt-header.pt-header-default .pt-menu-search-block {
		margin-top: 4px;
	}

	header#pt-header.pt-header-style-1 .pt-menu-search-block {
		margin-top: 4px;
	}


	header#pt-header.pt-header-style-2 .pt-menu-search-block {
		display: none;
	}

	header#pt-header.pt-header-style-2 .pt-shop-btn {
		display: none;
	}

	header#pt-header.pt-header-style-2 .pt-header-diff-block .navbar-brand img {
		height: auto;
		width: 175px;
	}

	header#pt-header.pt-header-style-2.pt-header-sticky .pt-header-diff-block .navbar-brand img {
		height: auto;
	}

	header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-brand {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	header#pt-header.pt-header-style-3 .pt-menu-search-block {
		display: none;
	}

	header#pt-header.pt-header-style-5 .pt-menu-search-block {
		display: none;
	}

}

@media(max-width:420px) {
	header#pt-header .pt-search-form {
		right: 0;
		width: 220px;
		padding: 4px;
	}

}

@media(max-width:360px) {
	header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-brand img {
		height: 35px;
	}

}

@media(max-width:320px) {
	header#pt-header .pt-search-form {
		width: 212px;
	}

}

/*================================================
admin bar login
================================================*/
.admin-bar header#pt-header.pt-header-sticky {
	top: 32px;
}

.admin-bar header#pt-header.pt-header-default .pt-bottom-header.pt-header-sticky {
	top: 32px;
}

.admin-bar header#pt-header.pt-header-style-1 .pt-bottom-header.pt-header-sticky {
	top: 32px;
}

@media(max-width:600px) {
	.admin-bar header#pt-header.pt-header-default .pt-bottom-header.pt-header-sticky {
		top: 0;
	}

	.admin-bar header#pt-header.pt-header-style-1 .pt-bottom-header.pt-header-sticky {
		top: 0;
	}

	.admin-bar header#pt-header.pt-header-style-1.pt-header-sticky {
		top: 0;
	}

	.admin-bar header#pt-header.pt-header-style-2.pt-header-sticky {
		top: 0;
	}

	.admin-bar header#pt-header.pt-header-style-5 {
		top: 60px;
	}

}

@media only screen and (min-device-width:601px) and (max-device-width:768px) {
	.admin-bar header#pt-header.pt-header-default .pt-bottom-header.pt-header-sticky {
		top: 46px !important;
	}

	.admin-bar header#pt-header.pt-header-style-1 .pt-bottom-header.pt-header-sticky {
		top: 46px !important;
	}

	.admin-bar header#pt-header.pt-header-style-1.pt-header-sticky {
		top: 46px !important;
	}

	.admin-bar header#pt-header.pt-header-style-2.pt-header-sticky {
		top: 46px !important;
	}

	.admin-bar header#pt-header.pt-header-style-5 {
		top: 60px;
	}

}

/*================================================
Sidebar Menu
================================================*/
.pt-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;
}

.pt-siderbar-open .pt-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;
}

.pt-siderbar-open .pt-sidebar {
	right: 0;
	opacity: 1;
}

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

.pt-sidebar .pt-close-btn .pt-close {
	position: absolute;
	left: -45px;
	background: var(--primary-color);
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	color: #fff;
	top: 90px;
	font-size: 20px;
}

.pt-sidebar-block {
	padding: 60px 30px 30px 30px;
	height: 100%;
}

.pt-sidebar-header .pt-sidebar-logo {
	margin-bottom: 15px;
	height: 45px;
}

.pt-sidebar h5,
.pt-sidebar h4 {
	font-size: 30px;
	line-height: 38px;
	margin-bottom: 15px;
}

.pt-sidebar ul {
	margin: 0;
	padding: 0;
}

.pt-sidebar ul li {
	list-style: none;
	margin: 0;
	padding: 0 0 10px;
}

.pt-sidebar ul li a {
	color: var(--white-color);
}

/*===========*/
.pt-sidebar-contact {
	margin-top: 30px;
	display: inline-block;
	width: 100%;
}

.pt-sidebar-contact li {
	display: flex;
	align-items: flex-start;
}

.pt-sidebar-contact li i {
	line-height: 2;
	color: var(--primary-color);
}

.pt-sidebar-contact li span {
	margin-left: 15px;
	flex: 1;
}

/*===========*/
.pt-sidebar-social ul {
	margin-top: 30px;
	display: inline-block;
	width: 100%;
	text-align: center;
}

.pt-sidebar-social ul li {
	display: inline-block;
	padding: 0;
	margin: 0;
}

.pt-sidebar-social ul li:last-child {
	margin-right: 0;
}

.pt-sidebar-social ul li a {
	background: var(--dark-color);
	color: #fff;
	width: 60px;
	height: 60px;
	line-height: 60px;
	display: inline-block;
}

.pt-sidebar-social ul li a:hover {
	background: var(--primary-color);
}

/*=========*/
.pt-sidebar .widget {
	background: transparent;
	padding: 0;
	border: none;
}

@media(max-width:991px) {
	.pt-sidebar {
		display: none;
	}

	header#pt-header.pt-header-style-2 .pt-toggle-btn {
		display: none;
	}

}

.pt-foote-recent-post {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 15px;
}

.pt-foote-recent-post:last-child {
	margin-bottom: 0;
	border: none;
	padding: 0;
}

.pt-foote-recent-post .pt-foote-recent-post-media {
	margin-right: 15px;
}

.pt-foote-recent-post .pt-foote-recent-post-media img {
	width: 80px;
	height: 80px;
}

.pt-foote-recent-post .pt-foote-recent-post-info {
	flex: 1;
	align-self: center;
}

.pt-foote-recent-post .pt-foote-recent-post-info .pt-post-date {
	font-family: var(--title-fonts);
	font-weight: 400;
	color: var(--primary-color);
	width: 100%;
	display: inline-block;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0.1em;
}

.pt-foote-recent-post .pt-foote-recent-post-info h6 {
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 0;
	font-weight: 400;
}

.pt-foote-recent-post .pt-foote-recent-post-info h6 a:hover {
	color: var(--primary-color);
}

/*++++++++++++++++++++++++++++++++++++++
Breadcrum
++++++++++++++++++++++++++++++*/
.pt-breadcrumb {
	background: var(--dark-color);
	color: var(--white-color);
	padding: 130px 0;
	position: relative;
	text-align: left;
	background-size: cover;
	background-position: top center;
}

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

.pt-breadcrumb .pt-breadcrumb-title h1 {
	font-size: 56px;
	line-height: 64px;
	margin-bottom: 15px;
}

.pt-breadcrumb-container .breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
}

.pt-breadcrumb-container .breadcrumb li {
	list-style-type: none;
	margin-right: 15px;
	padding-left: 0;
}

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

.pt-breadcrumb-container .breadcrumb li a {
	color: var(--white-color);
}

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

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

.pt-yoest-breadcumbs #breadcrumbs {
	margin: 0;
	padding: 0;
}

.pt-yoest-breadcumbs #breadcrumbs span {
	color: var(--dark-color);
}

.pt-yoest-breadcumbs #breadcrumbs span a {
	padding: 0 5px;
}

.pt-yoest-breadcumbs #breadcrumbs span strong {
	font-weight: 400;
	padding-left: 5px;
}

@media(max-width:1023px) {
	.pt-breadcrumb .pt-breadcrumb-title h1 {
		font-size: 42px;
		line-height: 50px;
	}

	.pt-breadcrumb-container .breadcrumb {
		display: inline-flex;
	}

}

@media(max-width:767px) {
	.pt-breadcrumb .pt-breadcrumb-title h1 {
		font-size: 34px;
		line-height: 42px;
	}

	.pt-breadcrumb-container .breadcrumb li,
	.pt-breadcrumb-container .breadcrumb li i {
		font-size: 14px;
	}

	.pt-breadcrumb-container .breadcrumb li {
		margin-right: 10px;
	}

	.pt-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
		padding-right: 10px;
		font-size: 12px;
	}

}

@media(max-width:479px) {
	.pt-breadcrumb .pt-breadcrumb-title h1 {
		font-size: 32px;
		line-height: 40px;
	}

}

/*+++++++++++++++++++++++++++++++++++++
Footer
++++++++++++++++++++++++++++*/

/*+++++++++++ Subscribe++++++++++++++++*/

.pt-footer-top .widget p {
    font-size: 16px;
    color: #BD8F39;
    font-weight: 500;
}

.pt-footer-style-1 img {
    width: 88%;
}

.pt-subscribe {
	display: inline-block;
	width: 100%;
	background: var(--secondary-color);
	color: var(--white-color);
	padding: 30px 0;
	position: relative;
	z-index: 10;
}

.pt-subscribe-block {
	display: flex;
	align-items: center;
}

.pt-subscribe-block .pt-subscribe-img {
	width: 55px;
	color: var(--primary-color);
}

.pt-subscribe-block .pt-subscribe-details {
	margin-left: 30px;
	color: var(--white-color);
	flex: 1;
	padding-right: 80px;
}

.pt-subscribe-block .pt-subscribe-details h5 {
	color: var(--white-color);
}

.pt-subscribe-from .mc4wp-form-fields {
	display: flex;
}

.pt-subscribe-from input.form-control {
	width: 80%;
	border-radius: 0;
	background: transparent;
	color: var(--white-color);
	border: 1px solid var(--grey-color);
	font-weight: 300;
}

.pt-subscribe-from input.form-control::-webkit-input-placeholder {
	color: var(--white-color);
}

.pt-subscribe-from input.submit {
	border-color: var(--primary-color);
	background: var(--primary-color);
	margin-left: 15px;
	padding: 7px 30px;
}

.pt-subscribe-from input.submit:hover {
	background: transparent;
	border-color: var(--primary-color);
}

.pt-subscribe .pt-border {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: inline-block;
	padding-top: 60px;
	width: 100%;
}

footer#pt-footer.style-1 {
	margin-top: 60px;
}

footer#pt-footer {
	background: var(--dark-color);
	display: inline-block;
	width: 100%;
	color: var(--text-color);
	float: left;
	position: relative;
}

footer#pt-footer:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

footer#pt-footer .pt-footer-top {
	    padding: 60px 0 0px;
	position: relative;
	z-index: 9;
}

footer#pt-footer .pt-copyright-footer {
	padding: 30px 0;
	background: var(--dark-color);
	position: relative;
	z-index: 9;
	text-align: center;
	border-top: 1px solid var(--secondary-color);
}

footer#pt-footer .pt-copyright-footer .pt-copyright {
	display: inline-block;
	width: 100%;
	color: var(--white-color);
}

footer#pt-footer .pt-copyright-footer .pt-copyright a {
	color: var(--white-color);
}

footer#pt-footer .pt-copyright-footer .pt-copyright a:hover {
	color: var(--white-color);
	text-decoration: underline;
}

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

footer#pt-footer .pt-footer-bottom-list .row {
	background: var(--white-color);
	-webkit-box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 0.1);
	-moz-box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 0.1);
	box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 0.1);
}

footer#pt-footer .pt-footer-bottom-list .row .col-lg-4 {
	border-right: 1px solid var(--grey-color);
}

footer#pt-footer .pt-footer-bottom-list .row .col-lg-4:last-child {
	border-right: none;
}

footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items {
	padding: 30px;
	display: flex;
	align-items: flex-start;
}

footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items i {
	align-self: center;
	font-size: 48px;
	line-height: 56px;
	color: var(--primary-color);
}

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

footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items .pt-footer-items-info {
	margin-left: 15px;
}

footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items .pt-footer-items-info a,
footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items .pt-footer-items-info span {
	color: var(--white-color);
}

/*===== Footer Widget =====*/
footer#pt-footer .widget {
	background: transparent;
	padding: 0;
	box-shadow: none;
	border: none;
	margin-bottom: 45px;
}

footer#pt-footer .widget .footer-title {
	margin-bottom: 30px;
	padding: 0;
	font-size: 24px;
	position: relative;
	line-height: 32px;
}

footer#pt-footer .widget ul#menu-useful-links li {
	display: inline-block;
	width: 48%;
	margin-bottom: 12px;
}

footer#pt-footer .pt-foote-recent-post {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 15px;
}

footer#pt-footer .pt-foote-recent-post:last-child {
	border: none;
	padding: 0;
}

footer#pt-footer .widget ul li {
	margin: 0 0 15px 0;
}

footer#pt-footer .widget ul li a {
	padding: 0 0 0 15px;
	display: inline-block;
}

footer#pt-footer .widget ul li a:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 5px;
	height: 5px;
	display: inline-block;
	background: var(--primary-color);
	margin: auto 0;
}

footer#pt-footer .widget ul.pt-contact li a {
	padding: 0;
}

footer#pt-footer .widget ul.pt-contact li {
	display: flex;
	align-items: center;
}

footer#pt-footer .widget ul.pt-contact li a:before {
	display: none;
}

footer#pt-footer .widget ul.pt-contact li i {
	margin-right: 20px;
	color: var(--primary-color);
}

footer#pt-footer .widget select option {
	background: var(--dark-color);
	font-weight: 300;
	padding: 0 3px;
}

footer#pt-footer .widget #recentcomments--1 .recentcomments a {
	padding: 0;
}

footer#pt-footer .widget #recentcomments--1 .recentcomments a:before,
footer#pt-footer .widget ul li .rsswidget:before,
footer#pt-footer .pt-footer-social ul li a:before {
	display: none;
}

footer#pt-footer .widget ul li a:hover {
	color: var(--primary-color);
}

footer#pt-footer .widget ul li .comment-author-link a {
	color: var(--primary-color);
}

footer#pt-footer table td,
footer#pt-footer table th {
	border: 1px solid var(--white-color);
}

footer#pt-footer .calendar_wrap table caption {
	padding: 0 0 10px;
	font-weight: 400;
	font-family: var(--title-fonts);
	color: var(--white-color);
}

footer#pt-footer .calendar_wrap td#today {
	background: var(--primary-color);
	color: var(--white-color);
}

footer#pt-footer .calendar_wrap td#today a {
	color: var(--white-color);
}

footer#pt-footer ul li a.rsswidget {
	padding-left: 0;
	font-size: 16px;
	color: var(--dark-color);
	font-weight: 400;
	font-family: var(--title-fonts);
}

footer#pt-footer ul li .rss-date {
	font-size: 14px;
	color: var(--primary-color);
	line-height: 1;
	float: left;
	display: inline-block;
	width: 100%;
	margin: 5px 0;
}

footer#pt-footer ul li cite {
	font-weight: 400;
	margin-top: 5px;
	display: inline-block;
	width: 100%;
}

footer#pt-footer .search-form {
	position: relative;
}

footer#pt-footer .widget ul.menu li a,
footer#pt-footer .pt-widget-menu .pt-service li a {
	position: relative;
	border: none;
	padding: 0 0 0 15px;
	display: inline-block;
	width: 100%;
}

footer#pt-footer .widget ul.menu li a:first-child {
	padding-top: 0;
}

footer#pt-footer .widget ul.menu li a:hover,
footer#pt-footer .pt-widget-menu .pt-service li a:hover {
	color: var(--primary-color);
}

footer#pt-footer .widget ul.menu li a:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 5px;
	height: 5px;
	display: inline-block;
	background: var(--primary-color);
	margin: auto 0;
	    border-radius: 100%;
}

footer#pt-footer .wp-calendar-nav .wp-calendar-nav-prev,
footer#pt-footer .wp-calendar-nav .wp-calendar-nav-next {
	background: transparent;
	border: 1px solid var(--white-color);
	border-top: 0;
}

footer#pt-footer .wp-calendar-nav .wp-calendar-nav-prev a,
footer#pt-footer .wp-calendar-nav .wp-calendar-nav-next a {
	color: var(--primary-color);
}


footer#pt-footer .pt-widget-menu .pt-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#pt-footer .pt-footer-style-1 .pt-footer-social {
	display: inline-block;
}

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

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul li {
	list-style: none;
	float: left;
	margin-right: 10px;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul li:last-child {
	margin: 0;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul li a {
	background: var(--secondary-color);
	color: var(--text-color);
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	display: inline-block;
}

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

footer#pt-footer .pt-footer-style-1 .pt-foote-recent-post .pt-foote-recent-post-info h6 {
	color: var(--white-color);
}

/*=========*/
footer#pt-footer .widget:first-child {
	
}

footer#pt-footer .pt-footer-logo {
	height: 50px;
	
	width: auto;
}

footer#pt-footer .widget .footer-title {
	color: var(--white-color);
}

footer#pt-footer .widget ul.menu li a,
footer#pt-footer .pt-widget-menu .pt-service li a,
footer#pt-footer .widget ul li a {
	color: var(--text-color);
}

footer#pt-footer .widget ul#menu-use-full-link li {
	width: 48%;
	float: left;
}

footer#pt-footer .widget ul.menu li,
footer#pt-footer .pt-widget-menu .pt-service li,
footer#pt-footer .widget ul li {
	color: var(--text-color);
}

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

footer#pt-footer .widget.opening-hours {
	margin-bottom: 0;
}

footer#pt-footer .widget.opening-hours+.widget.opening-hours .footer-title {
	margin-top: 30px;
}

footer#pt-footer .widget .pt-time li {
	    display: list-item;
    border-bottom: unset;
    margin-bottom: 5px;
    padding-bottom: 5px;
    list-style: inside;
}

footer#pt-footer .widget .pt-time li::marker{
	color:#BD8F39;
}

@media(max-width:1190px) {
	footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items {
		padding: 15px;
	}

	.pt-subscribe-block .pt-subscribe-details {
		padding-right: 0;
	}

}

@media(max-width:1190px) {
	footer#pt-footer .pt-footer-top .pt-footer-bottom-list [class*="col-"] {
		margin-top: 30px;
	}

}

@media(max-width:991px) {
	.pt-subscribe-block {
		margin-bottom: 30px;
	}

}

@media(max-width:767px) {
	footer#pt-footer .pt-copyright-footer {
		text-align: center;
	}

	footer#pt-footer .pt-footer-style-1 .pt-footer-social {
		margin-top: 15px;
		float: none;
	}

}

@media(max-width:576px) {
	.pt-subscribe-from .mc4wp-form-fields {
		display: block;
	}

	.pt-subscribe-from input.form-control {
		float: none;
		width: 100%;
	}

	.pt-subscribe-from input.submit {
		margin-left: 0;
		margin-top: 15px;
		float: none;
		width: 100%;
	}

}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
OWL Carousel
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.owl-carousel .owl-nav.disabled {
	display: none;
}

.owl-carousel .owl-nav {
	position: relative;
	cursor: pointer;
	z-index: 99;
	margin-top: 30px;
	text-align: center;
}

.owl-carousel .owl-nav button.owl-prev {
	outline: none;
	text-align: center;
	text-indent: inherit;
	cursor: pointer;
	position: relative;
	font-size: 20px;
	line-height: 1;
	width: 45px;
	height: 45px;
	line-height: 45px;
	padding: 0 !important;
	margin: 0 10px;
	background: var(--dark-color);
	color: 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;
}

.owl-carousel .owl-nav button.owl-next {
	outline: none;
	text-align: center;
	text-indent: inherit;
	cursor: pointer;
	position: relative;
	font-size: 20px;
	line-height: 1;
	width: 45px;
	height: 45px;
	line-height: 45px;
	padding: 0 !important;
	margin: 0 10px;
	background: var(--dark-color);
	color: 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;
}

.owl-carousel .owl-nav button:hover {
	background: var(--primary-color);
}

/* Dots */
.owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-dots {
	margin-top: 45px;
	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: transparent;
	opacity: 0.6;
	display: inline-block;
	padding: 0;
	margin: 0px 5px;
	height: 15px;
	width: 15px;
	border: 1px solid var(--primary-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;
	cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot span {
	display: none;
}

.owl-carousel .owl-dots .owl-dot:hover,
.owl-carousel .owl-dots .owl-dot.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
	opacity: 1;
}

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

/*===== Sub Title Left =====*/
.pt-section-title-style-1 .pt-section-sub-title {
	font-family: var(--sub-title-fonts);
	font-weight: 300;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.1em;
	text-transform: capitalize;
	color: var(--primary-color);
	padding: 0;
	margin: 0 0 5px;
	display: inline-block;
	position: relative;
}

.pt-section-title-style-1 .pt-section-title {
	font-weight: 400;
	font-size: 48px;
	line-height: 56px;
	z-index: 9;
	padding: 0;
	margin: 0 0;
	position: relative;
	display: block;
}

.pt-section-title-style-1 .pt-section-svg {
	overflow: hidden;
}

.pt-section-title-style-1 .pt-section-svg svg {
	fill: var(--primary-color);
	width: 180px;
	margin-left: -73px;
}

.pt-section-title-style-1.text-center .pt-section-svg svg {
	margin-left: 0;
}

@media(max-width:1199px) {
	.pt-section-title-style-1.text-center {
		padding: 0;
	}

}

@media(max-width:1023px) {
	.pt-section-title-style-1 .pt-section-title {
		font-size: 44px;
		line-height: 52px;
	}

}

@media(max-width:767px) {
	.pt-section-title-style-1 .pt-section-title {
		font-size: 38px;
		line-height: 1.3;
	}

	.pt-section-title-style-1.text-center {
		margin-bottom: 30px;
	}

	.pt-section-title-style-1 .pt-section-sub-title {
		font-size: 14px;
		line-height: 22px;
	}

	.pt-section-title-style-1 .pt-section-sub-title:before {
		top: 9px;
	}

}

@media(max-width:479px) {
	.pt-section-title-style-1 .pt-section-title {
		font-size: 30px;
		line-height: 1.3;
	}

}

/*====banner=====*/
.pt-banner-subtitle {
	font-family: var(--sub-title-fonts) !important;
	font-weight: 300 !important;
}

/*+++++++++++++++++++++++++++++++++++++
Fancy Box
++++++++++++++++++++++++++++++++++++++*/

/*+++++++++++++++ fancybox-style 1 +++++++++++++++++++++++++*/

.pt-fancybox-style-1 {
	background: var(--secondary-color);
	padding: 60px 45px;
	position: relative;
	border: 1px solid var(--grey-color);
}

.pt-fancy-box-image {
	margin-bottom: 30px;
}

.pt-fancy-box-image img {
	height: 120px;
	line-height: 128px;
}

.pt-fancybox-style-1:before {
	content: " ";
	width: calc(100% - 20px);
	height: calc(100% + 24px);
	position: absolute;
	transition: all 0.5s;
	top: -12px;
	bottom: 10px;
	left: 10px;
	right: 10px;
	border: 1px solid var(--primary-color);
	opacity: 0;
	transition: all 0.8s ease;
}

.pt-fancybox-style-1:hover:before {
	opacity: 1;
}

.pt-fancybox-style-1 .pt-fancy-box-iconbg {
	font-size: 112px;
	position: absolute;
	right: 30px;
	top: 45px;
	line-height: 120px;
	color: var(--grey-color);
	transform: rotate(20deg);
	transition: all 0.5s ease;
	opacity: 0.4;
}

.pt-fancybox-style-1:hover .pt-fancy-box-iconbg {
	transform: rotate(0deg);
}

.pt-fancybox-style-1 .pt-fancy-box-icon {
	display: inline-block;
	font-size: 64px;
	line-height: 72px;
	margin-bottom: 15px;
}

.pt-fancybox-style-1 .pt-fancy-box-icon i {
	color: var(--primary-color);
}

.pt-fancybox-style-1 .pt-fancy-box-info .pt-fancy-box-title {
	margin-top: 45px;
	margin-bottom: 5px;
	font-size: 26px;
	line-height: 34px;
}

.pt-fancybox-style-1 .pt-fancy-box-info .pt-fancybox-description {
	margin-bottom: 0;
}

.wpcf7-form input::-webkit-input-placeholder,
.wpcf7-form textarea::-webkit-input-placeholder {
	color: var(--white-color);
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea,
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 .select {
	margin-bottom: 30px;
}

.wpcf7-form input[type="date"]::-webkit-calendar-picker-indicator {
	color: var(--white-color);
	filter: invert(1);
	cursor: pointer;
}

.pt-reservation .wpcf7-submit {
	float: none;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Portfoliobox
++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-portfoliobox-1 {
	position: relative;
	overflow: hidden;
	display: inline-block;
	width: 100%;
	float: left;
	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;
}

.pt-portfoliobox-1 .pt-portfolio-img {
	position: relative;
}

.pt-portfoliobox-1 .pt-portfolio-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;
}

.pt-portfoliobox-1 .pt-portfolio-info {
	margin: auto;
	position: absolute;
	z-index: 10;
	opacity: 0;
	padding: 0;
	background: rgba(13, 17, 21, 0.9);
	color: var(--white-color);
	display: inline-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;
	left: 30px;
	right: 30px;
	top: 30px;
	bottom: 30px;
	transform: scale(0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.pt-portfoliobox-1:hover .pt-portfolio-info {
	opacity: 1;
	transform: scale(1);
}

.pt-portfoliobox-1 .pt-portfolio-info .pt-portfolio-info-content {
	transition: all 0.3s ease;
	transform: translateY(60px);
}

.pt-portfoliobox-1:hover .pt-portfolio-info .pt-portfolio-info-content {
	transform: translateY(0px);
}

.pt-portfoliobox-1 .pt-portfolio-info .pt-portfolio-link a {
	color: var(--primary-color);
	font-family: var(--title-fonts);
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.1em;
	text-transform: capitalize;
	margin-bottom: 5px;
	display: block;
}

.pt-portfoliobox-1 .pt-portfolio-info h5 a {
	color: var(--white-color);
}

.pt-portfoliobox-1 .pt-portfolio-info h5 a:hover {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none
}

.pt-portfoliobox .owl-nav {
	position: absolute;
	margin-top: 0;
	text-align: center;
	left: -76.5%;
	top: 75%;
}

.pt-portfoliobox .owl-carousel .owl-nav button {
	background: var(--white-color);
	color: var(--dark-color) !important;
	border: 1px solid #88888838;
}

.pt-portfoliobox .owl-carousel .owl-nav button:hover {
	background: var(--primary-color);
	color: var(--white-color) !important;
	border: 1px solid var(--primary-color);
}

/*---portfoliobox-style-2------*/
.pt-portfoliobox-2 {
	position: relative;
	overflow: hidden;
	display: inline-block;
	width: 100%;
	float: left;
	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;
}

.pt-portfoliobox-2 .pt-portfolio-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;
}

.pt-portfoliobox-2 .pt-portfolio-img {
	position: relative;
}

.pt-portfoliobox-2 .pt-portfolio-img:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: inline-block;
	z-index: 9;
	background: var(--dark-color);
	opacity: 0;
	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;
}

.pt-portfoliobox-2:hover .pt-portfolio-img:before {
	opacity: 0.01;
}

.pt-portfoliobox-2 .pt-portfolio-info span {
	font-family: var(--title-fonts);
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	text-transform: uppercase;
	color: var(--primary-color);
}

.pt-portfoliobox-2:hover .pt-portfolio-img img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.pt-portfoliobox-2 .pt-portfolio-info {
	padding: 15px 20px;
	position: absolute;
	bottom: 15px;
	z-index: 2;
	left: 15px;
	right: 15px;
	width: 90%;
	opacity: 0;
	background: var(--white-color);
	text-align: left;
	color: var(--white-color);
	display: inline-block;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	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;
	transform: translateY(30px);
	-moz-transform: translate(30px);
	-webkit-transform: translate(30px);
	-o-transform: translate(30px);
	-ms-transform: translate(30px);
	transform: translateY(30px);
}

.pt-portfoliobox-2:hover .pt-portfolio-info {
	opacity: 1;
	z-index: 99;
	transform: translateY(0);
	-moz-transform: translate(0);
	-webkit-transform: translate(0);
	-o-transform: translate(0);
	-ms-transform: translate(0);
	transform: translateY(0);
}

.pt-portfoliobox-2 .pt-portfolio-info .pt-portfolio-link a {
	color: var(--primary-color);
	font-family: var(--title-fonts);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 14px;
	line-height: 22px;
}

.pt-portfoliobox-2 .pt-portfolio-info h5 a {
	color: var(--dark-color);
}

.pt-portfoliobox-2 .pt-portfolio-info h5 a:hover {
	color: var(--primary-color);
	text-decoration: none
}

.pt-portfoliobox-2 .pt-portfolio-icon {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--primary-color);
	transform: scale(0);
	opacity: 0;
	transition: all 300ms linear 0s;
}

.pt-portfoliobox-2:hover .pt-portfolio-icon {
	opacity: 1;
	transform: scale(1);
	z-index: 99;
}

.pt-portfoliobox-2 .pt-portfolio-icon i {
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 45px;
	height: 45px;
	background-color: var(--primary-color);
	align-items: center;
	justify-content: center;
}

.pt-portfoliobox-2 .pt-portfolio-icon i {
	position: relative;
	padding: 12px;
	color: var(--white-color);
	line-height: normal;
}

/*++++++++++++++++++++++++++++++++++++++
 Counter
+++++++++++++++++++++++++++++++++++++++*/
.pt-counter.pt-counter-style-1 {
	display: flex;
	align-items: flex-start;
}

.pt-counter-style-1 .pt-counter-info {
	flex: 1;
	margin-left: 20px;
}

.pt-counter-style-1 .pt-counter-media i {
	font-size: 70px;
	line-height: 78px;
	color: var(--white-color);
}

.pt-counter-style-1 .pt-counter-info h5 {
	font-size: 48px;
	line-height: 54px;
	display: inline-block;
	font-weight: 400;
	color: var(--white-color);
}

.pt-counter-style-1 .pt-counter-info .pt-counter-prefix {
	font-size: 48px;
	line-height: 54px;
	font-family: var(--title-fonts);
	font-weight: 400;
	color: var(--white-color);
}

.pt-counter-style-1 .pt-counter-info p {
	margin-bottom: 0;
	text-transform: capitalize;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.1em;
	color: var(--white-color);
}

.pt-icon-top .pt-counter.pt-counter-style-1 {
	display: block;
	text-align: center;
}

.pt-icon-top .pt-counter.pt-counter-style-1 .pt-counter-media {
	margin-bottom: 10px;
}

.pt-icon-top .pt-counter.pt-counter-style-1 .pt-counter-info {
	margin-left: 0;
}

.pt-counter.pt-counter-style-2 {
	text-align: center;

}

.pt-counter-style-2 .pt-counter-info {
	flex: 1;
	margin-left: 20px;
}

.pt-counter-style-2 .pt-counter-media i {
	font-size: 70px;
	line-height: 78px;
	color: var(--white-color);
}

.pt-counter-style-2 .pt-counter-info h5 {
	font-size: 48px;
	line-height: 54px;
	display: inline-block;
	font-weight: 400;
	color: var(--primary-color);
}

.pt-counter-style-2 .pt-counter-info .pt-counter-prefix {
	font-size: 48px;
	line-height: 54px;
	font-family: var(--title-fonts);
	font-weight: 400;
	color: var(--primary-color);
}

.pt-counter-style-2 .pt-counter-info .pt-counter-num-prefix {
	position: relative;
}

.pt-counter-style-2 .pt-counter-info .pt-counter-num-prefix:after {
	content: '';
	width: 30px;
	height: 1px;
	background: var(--grey-color);
	display: block;
	position: absolute;
	left: 45%;
	margin-top: 15px;
}

.pt-counter-style-2 .pt-counter-info p {
	margin-bottom: 0;
	margin-top: 45px;
	text-transform: capitalize;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.1em;
	color: var(--white-color);

}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Team
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-team-style-1 .pt-team-img {
	position: relative;
	overflow: hidden;
}

.pt-team-style-1 .pt-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;
}

.pt-team-style-1 .pt-team-social ul {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 30px;
	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;
}

.pt-team-style-1:hover .pt-team-social ul {
	left: 30px;
}

.pt-team-style-1 .pt-team-social ul li {
	list-style: none;
	display: inline-flex;
	margin: 0 0 5px;
}

.pt-team-style-1 .pt-team-social ul li:last-child {
	margin: 0;
}

.pt-team-style-1 .pt-team-social ul li a {
	background: var(--dark-color);
	color: var(--white-color);
	text-align: center;
	width: 60px;
	height: 60px;
	line-height: 60px;
}

.pt-team-style-1 .pt-team-social ul li a:hover {
	background: var(--primary-color);
}

.pt-team-style-1 .pt-team-social ul li a i {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.pt-team-style-1 .pt-team-info {
	background: transparent;
	padding: 30px 15px 0;
	margin: 0px;
	text-align: center;
	position: relative;
}

.pt-team-style-1 .pt-team-info h5 {
	font-size: 28px;
	line-height: 36px;
	margin-bottom: 0;
}

.pt-team-style-1 .pt-team-info h5 a {
	color: var(--dark-color);
}

.pt-team-style-1 .pt-team-info .pt-team-designation {
	font-size: 18px;
	line-height: 28px;
	font-weight: 300;
	letter-spacing: 0.1em;
	display: inline-block;
	width: 100%;
	text-transform: capitalize;
	color: var(--primary-color);
}

.pt-style-1-overlay .pt-team-style-1 .pt-team-info {
	background: var(--secondary-color);
	padding: 15px 0;
	text-align: center;
	position: relative;
	margin: 0 30px;
	margin-top: -45px;
}

/*+++++++++++++++++++++++++++++++++
Menu Price
+++++++++++++++++++++++++++++++++++++++++*/
.pt-food-price-item {
	clear: both;
	margin-bottom: 45px;
	position: relative;
	cursor: pointer;
	display: inline-block;
	width: 100%;
}

.pt-food-price-item:last-child {
	margin-bottom: 0;
}

.pt-food-price-item .pt-food-price-hoverimg {
	position: absolute;
	z-index: 9;
	width: 160px;
	height: 160px;
	transition: all 0.5s ease;
	left: 60%;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	background: var(--dark-color);
}

.pt-food-price-item:hover .pt-food-price-hoverimg {
	opacity: 1;
	left: 50%;
}

.pt-food-price-item .pt-food-price-hoverimg:before {
	content: " ";
	width: calc(100% - 10px);
	height: calc(100% + 12px);
	position: absolute;
	transition: all 0.5s;
	top: -6px;
	bottom: 5px;
	left: 5px;
	right: 5px;
	border: 1px solid var(--primary-color);
}

.pt-food-price-item .pt-food-price-img {
	float: left;
	width: 80px;
}

.pt-food-price-content {
	padding: 10px 15px 0px 100px;
}

.pt-food-price-top {
	display: flex;
	justify-content: space-between;
}

.pt-food-title {
	font-size: 22px;
	line-height: 30px;
}

.pt-food-price-line {
	height: 1px;
	width: 100%;
	border-bottom: 1px solid var(--primary-color);
	flex: 1;
	margin-top: 10px;
	margin: 0 10px;
	position: relative;
	bottom: -15px;
	opacity: 0.7;
}

.pt-food-price-main {
	font-family: var(--title-fonts);
	font-size: 22px;
	font-weight: 400;
	color: var(--primary-color);
	line-height: 30px;
}

.pt-dubble-line .pt-food-price-content {
	padding: 10px 15px 0px 15px;
}

.pt-dubble-line .pt-food-price-line:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	border: 1;
	border-bottom: 1px solid var(--primary-color);
	bottom: -8px;
}

@media(max-width:767px) {
	.pt-food-price-item .pt-food-price-hoverimg {
		display: none;
	}

}

@media(max-width:479px) {
	.pt-food-price-line {
		display: none;
	}

	.pt-food-price-top {
		display: block;
	}

}

/*---left right fullbg------*/
.pt-left-fullbg:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 100%;
	background: var(--dark-color);
}

/*---left space fullbg------*/
.pt-left-outer-container {
	margin-left: calc((100% - 1300px)/ 2);
}

.pt-right-outer-container {
	margin-right: calc((100% - 1300px)/ 2);
}

@media(max-width:1299px) {
	.pt-left-outer-container {
		margin-left: 0;
	}

}

@media(max-width:1200px) {
	.pt-left-outer-container {
		margin-left: calc((100% - 960px)/ 2);
	}

}

@media(max-width:1024px) {
	.pt-left-outer-container {
		margin-left: calc((100% - 768px)/ 2);
	}

}

@media(max-width:800px) {
	.pt-left-outer-container {
		margin-left: 0
	}

}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Testimonialbox
++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-testimonialbox-1 {
	background: var(--secondary-color);
	padding: 45px;
}

.pt-testimonialbox-1 .pt-testimonial-info .pt-quote i {
	color: transparent;
	font-size: 56px;
	line-height: 64px;
	position: absolute;
	right: 45px;
	top: 45px;
	z-index: 1;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--primary-color);
}

.pt-testimonialbox-1 .pt-testimonial-info .pt-testimonial-img {
	display: flex;
	align-items: center;
}

.pt-testimonialbox-1 .pt-testimonial-info .pt-testimonial-img img {
	width: 80px;
	height: 80px;
	-webkit-border-radius: 900px;
	-moz-border-radius: 900px;
	border-radius: 900px;
	margin-right: 15px;
}

.pt-testimonialbox-1 .pt-testimonial-meta h5 {
	color: var(--white-color);
	font-size: 26px;
	line-height: 34px;
}

.pt-testimonialbox-1 .pt-testimonial-meta span {
	color: var(--primary-color);
	text-transform: capitalize;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.1em;
	font-weight: 400;
}

.pt-testimonialbox-1 .pt-testimonial-content {
	color: var(--white-color);
	margin-top: 20px;
}

.pt-testimonialbox-1 .pt-testimonial-content p {
	margin-bottom: 20px;
}

.pt-testimonialbox-1 .pt-testimonial-content .pt-testimonial-star i {
	color: var(--primary-color);
	font-size: 16px;
	line-height: 24px;
}

.pt-testimonialbox-style-1 .owl-carousel .owl-dots {
	text-align: right;
	position: absolute;
	bottom: 30px;
	right: 30px;
}

.owl-dots-bottom .pt-testimonialbox-style-1 .owl-carousel .owl-dots {
	position: relative;
	bottom: inherit;
	right: inherit;
	text-align: center;
}

.pt-testimonialbox-2 {
	background: var(--dark-color);
	padding: 45px;
}

.pt-testimonialbox-2 .pt-testimonial-info .pt-quote i {
	color: transparent;
	font-size: 52px;
	line-height: 1;
	position: absolute;
	right: -20px;
	bottom: 0;
	z-index: 1;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--primary-color);
	opacity: 0.1;
}

.pt-testimonialbox-2 .pt-testimonial-info .pt-testimonial-img {
	display: flex;
	align-items: center;
}

.pt-testimonialbox-2 .pt-testimonial-info .pt-testimonial-img img {
	width: 80px;
	height: 80px;
	-webkit-border-radius: 900px;
	-moz-border-radius: 900px;
	border-radius: 900px;
	margin-right: 15px;
}

.pt-testimonialbox-2 .pt-testimonial-meta h5 {
	color: var(--white-color);
	font-size: 22px;
	line-height: 30px;
}

.pt-testimonialbox-2 .pt-testimonial-meta span {
	color: var(--primary-color);
	text-transform: capitalize;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.1em;
}

.pt-testimonialbox-2 .pt-testimonial-content {
	color: var(--text-color);
	margin-top: 15px;
	position: relative;
}

.pt-testimonialbox-2 .pt-testimonial-content p {
	margin-bottom: 30px;
}

.pt-testimonialbox-2 .pt-testimonial-star i {
	color: var(--primary-color);
	font-size: 16px;
	line-height: 24px;
}



.pt-dark-bg .pt-testimonialbox-2 {
	background: var(--secondary-color);
	padding: 45px;
}

.pt-dark-bg .pt-testimonial-box.pt-testimonialbox-2 {
	position: relative;
}

.pt-dark-bg .pt-testimonial-box.pt-testimonialbox-2:after {
	content: '';
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.06);
	display: block;
	position: absolute;
	right: -2px;
	top: 18%;
}

.pt-dark-bg .pt-testimonialbox-2 .pt-testimonial-info .pt-quote i {

	font-size: 48px;
	right: 10px;
	bottom: -100%;

}

.pt-dark-bg .owl-carousel .owl-dots {
	margin-bottom: 30px;
}

.pt-testimonial-box-slider.pt-testimonialbox-style-3 .pt-testimonialbox-2 {
	background: unset;
	text-align: center;
	padding: 0;
}

.pt-testimonial-box-slider.pt-testimonialbox-style-3 .pt-testimonialbox-2 .pt-testimonial-info .pt-testimonial-img {
	display: block;
}

.pt-testimonial-box-slider.pt-testimonialbox-style-3 .pt-testimonialbox-2 .pt-testimonial-info .pt-quote i {
	color: var(--primary-color);
	font-size: 2.5em;
	line-height: 1;
	position: unset;
	margin-bottom: 30px;
	opacity: 1;

}

.pt-testimonial-box-slider.pt-testimonialbox-style-3 .pt-testimonialbox-2 .pt-testimonial-meta h5 {
	margin-top: 15px;
}

.pt-testimonial-box-slider.pt-testimonialbox-style-3 .pt-testimonialbox-2 .pt-testimonial-info .pt-testimonial-img img {
	margin: 0 auto;
}


.pt-testimonial-box-slider.pt-testimonialbox-style-3 .owl-carousel .owl-nav {
	position: unset;

}

.pt-testimonial-box-slider.pt-testimonialbox-style-3 .owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	top: 30%;
	left: -130px;

}

.pt-testimonial-box-slider.pt-testimonialbox-style-3 .owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 30%;
	right: -130px;

}


.pt-testimonial-title .pt-testimonial-box-slider.pt-testimonialbox-style-3 .pt-testimonialbox-2 {
	padding: 45px;
}

.pt-testimonial-title .pt-testimonial-box-slider.pt-testimonialbox-style-3 .pt-testimonialbox-2 .pt-testimonial-info .pt-testimonial-img {
	display: flex;
}

.pt-testimonial-title .pt-testimonial-box-slider.pt-testimonialbox-style-3 .pt-testimonialbox-2 .pt-testimonial-info .pt-testimonial-img img {
	margin: 0;
	margin-right: 15px;
}

.pt-testimonial-title .pt-testimonial-box-slider.pt-testimonialbox-style-3 .pt-testimonialbox-2 {
	text-align: left;
}


.pt-testimonial-title .pt-testimonial-box-slider.pt-testimonialbox-style-3 .pt-testimonialbox-2 .pt-testimonial-info .pt-quote i {
	color: transparent;
}

.pt-testimonial-title .pt-testimonial-box-slider.pt-testimonialbox-style-3 .owl-carousel .owl-dots {
	margin-top: 0px;
	text-align: left;
	margin-left: 45px;
}


@media(max-width:1024px) {
	.pt-dark-bg .pt-testimonialbox-2 .pt-testimonial-info .pt-quote i {

		bottom: -70%;

	}


	.pt-testimonial-box-slider.pt-testimonialbox-style-3 .pt-testimonialbox-2 .pt-testimonial-info .pt-testimonial-img {
		margin-top: 30px;
	}

	.pt-testimonial-box-slider.pt-testimonialbox-style-3 .owl-carousel .owl-nav button.owl-prev {

		left: -90px;

	}

	.pt-testimonial-box-slider.pt-testimonialbox-style-3 .owl-carousel .owl-nav button.owl-next {

		right: -90px;

	}


}

@media(max-width:767px) {

	.pt-testimonial-box-slider.pt-testimonialbox-style-3 .owl-carousel .owl-nav button {
		display: none;
	}
}

@media(max-width:400px) {
	.pt-testimonialbox-2 {
		padding: 30px;
		text-align: center;
	}

	.pt-testimonialbox-2 .pt-testimonial-info .pt-testimonial-img {
		display: block;
	}

	.pt-testimonialbox-2 .pt-testimonial-info .pt-testimonial-img img {
		display: inline-block;
		margin-right: 0;
		margin-bottom: 15px;
	}

}

/*+++++++++++++++++++++++++++++++++++++
Service Box
++++++++++++++++++++++++++++++++++++++*/
.pt-service-box.pt-service-box-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;
}

.pt-service-box.pt-service-box-style-1 .pt-service-img {
	position: relative;
	overflow: hidden;
}

.pt-service-box.pt-service-box-style-1 .pt-service-img img {
	width: 100%;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.pt-service-box.pt-service-box-style-1:hover .pt-service-img img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.pt-service-box.pt-service-box-style-1 .pt-service-info {
	padding: 30px 0px;
}

.pt-service-box.pt-service-box-style-1 .pt-service-info p {
	margin-bottom: 30px;
	margin-top: 10px;
	color: var(--text-color);
}

/*---service box 2------*/
.pt-service-box.pt-service-box-style-2 {
	background: var(--dark-color);
	padding: 30px;
}

.pt-service-box.pt-service-box-style-2 .pt-service-media {
	display: inline-flex;
	align-items: center;
	padding-bottom: 30px;
	width: 100%;
	border-bottom: 1px solid #FFFFFF0F;
}

.pt-service-box.pt-service-box-style-2 .pt-service-icon {
	font-size: 44px;
	line-height: 52px;
	background: var(--secondary-color);
	width: 80px;
	height: 80px;
	color: var(--primary-color);
	align-items: center;
	justify-content: center;
	display: inline-flex;
}

.pt-service-box.pt-service-box-style-2 .pt-service-content {
	margin-left: 30px;
}

.pt-service-box.pt-service-box-style-2 .pt-service-sub-title {
	font-family: var(--body-fonts);
	font-size: 18px;
	line-height: 26px;
	font-style: normal;
	font-weight: 300;
	padding-bottom: 5px;
	text-transform: capitalize;

	color: var(--text-color);
}


.pt-service-box.pt-service-box-style-2 .pt-service-description {

	margin-top: 30px;
}

@media(max-width:359px) {
	.pt-service-box.pt-service-box-style-1 .pt-service-info {
		padding: 15px;
	}

	.pt-service-box.pt-service-box-style-1 .pt-service-info .pt-service-title {
		font-size: 24px;
		line-height: 32px;
	}

}

@media(max-width:480px) {

	.pt-service-box.pt-service-box-style-2 .pt-service-content {
		margin-left: 20px;
	}

	.pt-service-box.pt-service-box-style-2 .pt-service-title {
		font-size: 22px;
	}


}

@media(max-width:360px) {

	.pt-service-box.pt-service-box-style-2 .pt-service-sub-title {

		font-size: 16px;
		line-height: 24px;
	}

	.pt-service-box.pt-service-box-style-2 .pt-service-title {

		font-size: 18px;
	}

	.pt-service-box.pt-service-box-style-2 .pt-service-icon {
		font-size: 32px;
		line-height: 40px;
		width: 65px;
		height: 65px;
	}


}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Process Step
++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-process-step.pt-process-style-1 {
	padding: 30px;
	position: relative;
	overflow: hidden;
	background: var(--dark-color);
}

.pt-process-style-1 .pt-process-media {
	position: relative;
	margin-bottom: 30px;
}

.pt-process-style-1 .pt-process-media .pt-process-img img {
	border-radius: 100%;
	width: 225px;
	height: 225px;
	border: 15px solid #fff;
}

.pt-process-style-1 .pt-process-media .pt-process-icon i {
	font-size: 45px;
	color: var(--white-color);
	background-color: var(--primary-color);
	padding: 20px;
	display: inline-block;
	transition: all 0.5s ease;
}

.pt-process-style-1:hover .pt-process-media .pt-process-icon i {
	transform: rotateY(180deg);
}

.pt-process-style-1 .pt-process-media .pt-process-number {
	position: absolute;
	top: 15px;
	right: 0;
	font-size: 48px;
	line-height: 56px;
	color: transparent;
	text-align: center;
	font-weight: 400;
	opacity: 1;
	font-family: var(--title-fonts);
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--primary-color);
}

.pt-process-style-1 .pt-process-description p {
	margin-bottom: 20px;
	margin-top: 10px;
}

/*+++++++++++++++++++++++++++++++++
rotate animation
+++++++++++++++++++++++++++++++++++++++++*/
.spinning-img img {
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-name: spin;
	animation-duration: 10000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}

}

@-o-keyframes spin {
	0% {
		-o-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-o-transform: rotate(1turn);
		transform: rotate(1turn)
	}

}

/*+++++++++++++++++++++++++++++++++
Progressbar
+++++++++++++++++++++++++++++++++++++++++*/

/*---ProgressBar-style-1------*/

.pt-progressbar-style-1 {
	display: inline-block;
	width: 100%;
}

.pt-progressbar-style-1 .pt-progressbar-content,
.pt-progressbar-style-2 .pt-progressbar-content {
	margin-bottom: 30px;
	display: inline-block;
	float: left;
	width: 100%;
}

.pt-progressbar-style-1 .pt-progressbar-content .sonny_progressbar,
.pt-progressbar-style-2 .pt-progressbar-content .sonny_progressbar {
	margin-bottom: 0;
}

.pt-progressbar-style-1 .pt-progressbar-content .bar-container {
	height: 8px;
}

.pt-progressbar-style-1 .pt-progressbar-content:last-child,
.pt-progressbar-style-2 .pt-progressbar-content:last-child {
	margin-bottom: 0;
}

.pt-progressbar-style-1 .progress-title,
.pt-progressbar-style-2 .progress-title {
	margin: 0;
	font-size: 18px;
	line-height: 26px;
	font-family: var(--title-fonts);
	color: var(--dark-color);
}

.pt-progressbar-style-1 .progress-value,
.pt-progressbar-style-2 .progress-value {
	color: var(--primary-color);
	margin: 0;
	float: right;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	font-family: var(--title-fonts);
}

.pt-progressbar-style-1 .pt-progress-bar,
.pt-progressbar-style-2 .pt-progress-bar {
	display: inline-block;
	width: 100%;
	padding: 0;
	background: var(--primary-color);
	float: left;
	margin-top: 5px;
}

.pt-progressbar-style-1 .pt-progress-bar span,
.pt-progressbar-style-2 .pt-progress-bar span {
	display: inline-block;
	background: var(--grey-color);
	float: left;
}

/*+++++++++++++++ Progressbar style 2 ++++++++++++++++++++*/
.pt-progressbar-style-2 .pt-progress-bar {
	border: 1px solid var(--grey-color);
	padding: 3px;
	background: none;
}

.pt-progressbar-style-2 .pt-progressbar-content .bar-container {
	height: 8px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Quote From
+++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-white-form input,
.pt-white-form textarea {
	margin-bottom: 30px;
}

.pt-white-form input[type="submit"] {
	margin-bottom: 0;
}

.pt-white-form .wpcf7 .ajax-loader {
	margin: 0;
}

.wpcf7-not-valid-tip {
	position: absolute;
	top: 0;
	line-height: 52px;
	right: 15px;
	width: max-content;
}

.wpcf7 form .wpcf7-response-output {
	margin: 0;
}

.wpcf7-spinner {
	position: absolute;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
ClientBox
++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-client-box.pt-client-style-1 .pt-clientbox .pt-client-img {
	position: relative;
	display: block;
	width: auto;
	margin: 0 auto;
}

.pt-client-box.pt-client-style-1 .pt-clientbox a:hover .pt-client-img {
	opacity: 1;
}

/*================================================
Video Popup
================================================*/
.pt-popup-video-block .pt-video-icon {
	text-align: center;
}

.pt-popup-video-block .pt-video-icon a {
	margin: auto;
	text-decoration: none;
	color: var(--primary-color);
	font-size: 28px;
	width: 90px;
	height: 90px;
	line-height: 90px;
	text-align: center;
	display: inline-block;
	background-color: var(--white-color);
	border-radius: 90%;
	-webkit-animation: ripple 1s linear infinite;
	animation: ripple 1s linear infinite;
}

@-webkit-keyframes ripple {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
	}

	100% {
		-webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
	}

}

@keyframes ripple {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
	}

	100% {
		-webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
	}

}

.pt-video-icon a.primary {
	-webkit-animation: rippleprimary 1s linear infinite;
	animation: rippleprimary 1s linear infinite;
}

@-webkit-keyframes rippleprimary {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
		box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
	}

	100% {
		-webkit-box-shadow: 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
		box-shadow: 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
	}

}

@keyframes rippleprimary {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
		box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
	}

	100% {
		-webkit-box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
		box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
	}

}

.pt-video-primary .pt-popup-video-block .pt-video-icon a {
	background: var(--primary-color);
	color: var(--white-color);
	-webkit-animation: rippleprimary 1s linear infinite;
	animation: rippleprimary 1s linear infinite;
}

.pt-video-primary .pt-video-icon a.primary {
	-webkit-animation: rippleprimary 1s linear infinite;
	animation: rippleprimary 1s linear infinite;
}

@-webkit-keyframes rippleprimary {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(198, 168, 125, 0.2), 0 0 0 5px rgba(198, 168, 125, 0.2), 0 0 0 20px rgba(198, 168, 125, 0.2), 0 0 0 35px rgba(198, 168, 125, 0.2);
		box-shadow: 0 0 0 0 rgba(198, 168, 125, 0.2), 0 0 0 5px rgba(198, 168, 125, 0.2), 0 0 0 20px rgba(198, 168, 125, 0.2), 0 0 0 35px rgba(198, 168, 125, 0.2);
	}

	100% {
		-webkit-box-shadow: 0 0 0 5px rgba(198, 168, 125, 0.2), 0 0 0 20px rgba(198, 168, 125, 0.2), 0 0 0 35px rgba(198, 168, 125, 0.2), 0 0 0 45px rgba(198, 168, 125, 0);
		box-shadow: 0 0 0 5px rgba(198, 168, 125, 0.2), 0 0 0 20px rgba(198, 168, 125, 0.2), 0 0 0 35px rgba(198, 168, 125, 0.2), 0 0 0 45px rgba(198, 168, 125, 0);
	}
}

@keyframes rippleprimary {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(198, 168, 125, 0.2), 0 0 0 5px rgba(198, 168, 125, 0.2), 0 0 0 20px rgba(198, 168, 125, 0.2), 0 0 0 35px rgba(198, 168, 125, 0.2);
		box-shadow: 0 0 0 0 rgba(198, 168, 125, 0.2), 0 0 0 5px rgba(198, 168, 125, 0.2), 0 0 0 20px rgba(198, 168, 125, 0.2), 0 0 0 35px rgba(198, 168, 125, 0.2);
	}

	100% {
		-webkit-box-shadow: 0 0 0 10px rgba(198, 168, 125, 0.2), 0 0 0 20px rgba(198, 168, 125, 0.2), 0 0 0 35px rgba(198, 168, 125, 0.2), 0 0 0 45px rgba(198, 168, 125, 0.2);
		box-shadow: 0 0 0 10px rgba(198, 168, 125, 0.2), 0 0 0 20px rgba(198, 168, 125, 0.2), 0 0 0 35px rgba(198, 168, 125, 0.2), 0 0 0 45px rgba(198, 168, 125, 0);
	}
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
FAQ
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-accordion-block .pt-accordion-box {
	margin-bottom: 30px;
	position: relative;
}

.pt-accordion-block .pt-accordion-box:last-child {
	margin-bottom: 0;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title {
	background: transparent;
	border: 1px solid var(--grey-color);
	padding: 15px 30px;
	cursor: pointer;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title .ad-title-text {
	font-size: 18px;
	line-height: 26px;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title i {
	position: absolute;
	top: 20px;
	right: 30px;
	opacity: 1;
	color: var(--white-color);
}

.pt-accordion-block .pt-accordion-box .pt-ad-title i.inactive {
	opacity: 0;
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title i {
	position: absolute;
	top: 20px;
	right: 30px;
	opacity: 0;
	color: var(--dark-color);
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title i.inactive {
	opacity: 1;
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title i {
	color: var(--white-color);
}

.pt-accordion-block .pt-accordion-box .pt-accordion-details {
	padding: 15px 30px;
	border: 1px solid var(--grey-color);
	border-top: 0;
}

.pt-accordion-block .pt-accordion-box .pt-accordion-details p {
	margin-bottom: 0;
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title {
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title .ad-title-text {
	color: var(--white-color);
}

@media(max-width:767px) {

	.pt-accordion-block .pt-accordion-box .pt-ad-title,
	.pt-accordion-block .pt-accordion-box .pt-accordion-details {
		padding: 15px;
	}

}

@media(max-width:479px) {
	.pt-accordion-block .pt-accordion-box .pt-ad-title {
		padding: 15px 30px 15px 15px;
	}

}

/*====info box widget=====*/
.pt-info-box-style-1 {
	padding: 30px;
	background: var(--grey-color);
}

.pt-info-box-style-1 .pt-infobox-description {
	margin: 15px 0 5px;
}

.pt-info-box-style-1 .pt-info-call {
	font-size: 20px;
	line-height: 28px;
	font-weight: 400;
	font-family: var(--title-fonts);
}

.p-tag-info .pt-section-title-style-1 p {
	margin-bottom: 15px;
}

.map-chart,
#chartdiv {
	height: 450px;
}

/*====Auther widget=====*/
.widget .pt-author-wrapper {
	text-align: center;
}

.widget .pt-author .pt-author-img {
	display: inline-block;
	margin: auto;
	margin-bottom: 15px;
}

.widget .pt-author-social i {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.widget .pt-author-description {
	margin-bottom: 15px;
}

.widget .pt-author-social li {
	display: inline-block;
	margin: 0 10px;
}

.widget .pt-author-social li a {
	padding: 0;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
service detail
++++++++++++++++++++++++++++++++++++++++++++++++*/
.widget.widget-port {
	background: var(--grey-color);
	box-shadow: none;
}

.widget.widget-port .page-title {
	margin: 0 0 20px 0;
}

.widget.widget-port .menu li {
	margin: 0 0 10px 0;
}

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

.widget.widget-port .menu li a {
	position: relative;
	background-color: var(--white-color);
	padding: 15px 24px;
	color: var(--dark-color);
	text-transform: uppercase;
	border: none;
	display: block;
	transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
	font-family: var(--title-fonts);
	font-weight: 400;
	font-size: 16px;
}

.widget.widget-port .menu li.current_page_item a {
	background: var(--primary-color);
	color: var(--white-color);
}

.widget.widget-port:nth-last-child(even) {
	padding: 0 !important;
	border: unset;
}

.widget.widget-port .menu li>a:before {
	position: absolute;
	content: '\f054';
	font-family: "Font Awesome 5 Free";
	font-size: 12px;
	right: 24px;
	left: auto;
	top: 24px;
	color: inherit;
	line-height: normal;
	font-weight: 400;
}

/*====portfolio single=====*/
.pt-portfolio-info-box {
	display: inline-block;
	width: 100%;
}

.pt-porfolio-info-header h5 {
	font-size: 40px;
	line-height: 48px;
	margin-bottom: 0;
}

.pt-porfolio-info .pt-info-list {
	margin: 0;
	padding: 0;
}

.pt-porfolio-info .pt-info-list li {
	list-style: none;
	float: left;
	margin: 0 0 20px;
	padding: 0 0 5px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: inline-block;
	width: 100%;
}

.pt-porfolio-info .pt-info-list li:last-child {
	margin-bottom: 0;
	padding: 0;
	border: none;
}

.pt-porfolio-info .pt-info-list li h5 {
	display: inline-block;
	font-size: 18px;
	line-height: 26px;
}

.pt-porfolio-info .pt-info-list li span {
	float: right;
	color: var(--text-color);
}

.Projects-dts .pt-portfolio-block .pt-portfolio-info {
	padding-bottom: 0;
}

@media(max-width:1099px) {
	.pt-porfolio-info .pt-info-list li h5 {
		font-size: 18px;
		line-height: 26px;
	}

}

@media(max-width:1023px) {
	.pt-porfolio-info-header h5 {
		font-size: 36px;
		line-height: 44px;
	}

}

@media(max-width:767px) {
	.pt-porfolio-info-header h5 {
		font-size: 32px;
		line-height: 40px;
	}

}

.pt-about-tab .nav-tabs {
	border-bottom: unset;
}

.pt-about-tab .nav-tabs .nav-item.show .nav-link,
.pt-about-tab .nav-tabs .nav-link {

	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	border: unset;
	background: unset;
	margin: 15px;
	font-weight: 400;
	color: #ffffff9e;
	text-transform: capitalize;
}

.pt-about-tab .nav-tabs .nav-link.active {

	color: #fff;
	border-bottom: 1px solid var(--grey-color);
}


.pt-menu-tab .pt-advance-tab .nav-tabs {
	border-bottom: unset;
}

.nav-tabs .nav-link {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	margin-bottom: 0;
}

.pt-menu-tab .pt-advance-tab .nav-tabs .nav-item {
	background: var(--dark-color);
	color: var(--white-color);
	padding: 30px 0px;
	border: none;
	margin-right: 30px;
	position: relative;
	flex: 1;
	font-size: 20px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 15px;
	text-transform: capitalize;
}

.pt-menu-tab .pt-advance-tab .nav-tabs .nav-item i {
	color: var(--primary-color);
}

.pt-menu-tab .pt-advance-tab .nav-tabs .nav-item:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(198, 168, 125, 0);
	border-top-color: var(--secondary-color);
	border-width: 15px;
	margin-left: -15px;
	margin-top: -2px;
	opacity: 0;
	z-index: 9;
	transition: none;

}

.pt-menu-tab .pt-advance-tab .nav-tabs .nav-item.active:after {
	opacity: 1;
	border-top-color: var(--primary-color);
}


.pt-menu-tab .pt-advance-tab .nav-tabs .nav-item i {
	font-size: 48px;
	line-height: 56px;
	display: inline-block;
}

.pt-menu-tab .pt-advance-tab .nav-tabs .nav-item.active {
	background: var(--primary-color);
	color: var(--white-color);
	position: relative;
}

.pt-menu-tab .pt-advance-tab .nav-tabs .nav-item.active i {
	color: var(--white-color);
}


@media(max-width:1365px) {
	.pt-menu-tab .pt-advance-tab .nav-tabs .nav-item {
		padding: 15px;
	}
}

@media(max-width:1023px) {
	.pt-menu-tab .pt-advance-tab .tab-content .pt-tab-info {
		margin-top: 30px;
	}

	.pt-menu-tab .pt-advance-tab .tab-content .pt-tab-info h2 {
		font-size: 38px;
		line-height: 46px;
	}

	.pt-menu-tab .pt-advance-tab .nav-tabs .nav-item {
		margin-right: 10px;
		font-size: 16px;
		line-height: 24px;
	}


}

@media(max-width:991px) {
	.pt-menu-tab .pt-advance-tab .tab-content .pt-tab-info {
		padding-left: 0;
	}
}

@media(max-width:767px) {
	.pt-menu-tab .pt-advance-tab .nav-tabs .nav-item {

		margin: 0 10px 15px 0;
	}

	.pt-menu-tab .pt-advance-tab .nav-tabs .nav-item i {
		font-size: 40px;
		line-height: 48px;
	}

	.pt-menu-tab .pt-advance-tab .tab-content .pt-tab-info h2 {
		font-size: 32px;
		line-height: 40px;
	}
}

@media(max-width:479px) {
	.pt-menu-tab .pt-advance-tab .nav-tabs .nav-item i {
		font-size: 30px;
		line-height: 38px;
	}
}


/* landing page */
.page-id-15310 #pt-header,
.page-id-15310 #pt-footer {
	display: none;
}

.intro-features figure.elementor-image-box-img {
	width: 120px !important;
	height: 120px;
	line-height: 120px;
	background: var(--secondary-color);
	border-radius: 900px;

}

.intro-features figure.elementor-image-box-img img {
	width: 60px;
}



.input-icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #BD8F39;
  pointer-events: none;
}

.wpcf7-form .form-control {
  padding-right: 40px;
  background: transparent;
  color: #fff;
  border: 1px solid #BD8F39;
  border-radius: 6px;
}

.wpcf7-not-valid-tip {
    right: 40px!important;
}

.wpcf7-form .form-control option{color:#000;}

/* Bigger checkbox and aligned with text */
.wpcf7-form .wpcf7-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-right: 10px;
  vertical-align: middle;
  accent-color: #BD8F39; /* optional custom color */
}

/* Align checkbox and label nicely */
.wpcf7-form .wpcf7-checkbox label {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.4;
  color: #fff; /* adjust if needed */
}

.wpcf7-form textarea.form-control {
    height: 170px;
	margin-bottom:0!important;
}


.wpcf7-form [type="submit"]{
    padding: 10px 70px;
    border-radius: 12px;
}