/*
Template: Medicen - Health & Medical WordPress Theme
Author: peacefulqode.co.in
Version: 1.0
Design and Developed by: Peacefulqode

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
==> Porfolio Box
==> Header Dummy
==> Header
==> Breadcrumb
==> Footer Demo
==> Service Single
==> Section Title
==> OWL Carousel
==> Service Box
==> Moving Gallery
==> Card
==> Wow Image effects
==> Team
==> Testimonial
==> Process Step
==> Popup Animation
==> Client
==> Accordion
==> Time Table
==> Award
==> Price Box
==> Info Box
==> Form
==> Image Box
==> Up-down marquee

======================================
[ End table content ]
======================================*/

/*================================================
Moz Selectio
================================================*/
:root {
	--primary-color: #2683EF;
	--dark-color: #003878;
	--secondary-color: #7c8088;
	--grey-color: #f5f9ff;
	--white-color: #ffffff;
	--light-white: rgba(255, 255, 255, 0.2);
    --light-black: rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
    --transition: all 0.5s ease-in-out;
	--body-fonts:  'DM Sans', sans-serif;
	--title-fonts: 'Plus Jakarta Sans', sans-serif;

}

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

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

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

/*================================================
General
================================================*/
body {
	background: var(--white-color);
	font-family: var(--body-fonts);
	font-size: 1rem;
	font-style: normal;
	font-weight: normal;
	line-height: 2;
	color: var(--secondary-color);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--title-fonts);
	color: var(--dark-color);
	font-style: normal;
	text-transform: capitalize;
	font-weight: 700;
	margin: 0;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

h1 {
	font-size: 40px;
	font-style: normal;
	line-height: 48px;
}

h2 {
	font-size: 36px;
	font-style: normal;
	line-height: 44px;
}

h3 {
	font-size: 32px;
	font-style: normal;
	line-height: 40px;
}

h4 {
	font-size: 28px;
	font-style: normal;
	line-height: 36px;
}

h5 {
	font-size: 24px;
	font-style: normal;
	line-height: 32px;
}

h6 {
	font-size: 20px;
	font-style: normal;
	line-height: 28px;
}

/*===== HTML Tags =====*/
a,
.button {
	color: var(--primary-color);
	outline: none !important;
	text-decoration: none;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

a:focus,
a:hover {
	color: var(--primary-color);
	outline: none;
	text-decoration: none !important;
}

p {
	margin-bottom: 30px;
}

img {
	max-width: 100%;
	height: auto;
}

pre {
	background: var(--white-color);
	padding: 15px;
	border: 1px solid var(--grey-color);
}

hr {
	margin: 0;
	padding: 0px;
	border-bottom: 1px solid #e0e0e0;
	border-top: 0px;
}

b,
strong {
	font-weight: 700;
}

/*===== Lists (Nested) =====*/

ol,
ul {
	padding-left: 25px;
	margin-bottom: 1em;
}

ol li {
	list-style: decimal;
}

ol ol {
	padding-left: 25px;
}

ul li {
	list-style: none;
}

/*===== Definition Lists =====*/
dl dd {
	margin-bottom: 15px;
}

dl dd:last-child {
	margin-bottom: 0px;
}

/*===== Table =====*/
table {
	/*border: 2px solid var(--grey-color);*/
	width: 100%;
	margin-bottom: 20px;
}

table td,
table th {
	border: 1px solid #212529;
	padding: 8px;
	text-align: left;
}

/*===== Input Textarea =====*/
input,
input.form-control {
	background: var(--grey-color);
	border: 1px solid var(--grey-color);
	color: var(--dark-color);
	width: 100%;
	float: left;
	font-size: 16px;
	padding: 0 15px;
	height: 54px;
	line-height: 54px;
	outline: none;
	-webkit-border-radius: var(--border-radius);
	-moz-border-radius: var(--border-radius);
	border-radius: var(--border-radius);
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

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

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

textarea {
	background: var(--grey-color);
	border: 1px solid var(--grey-color);
	color: var(--dark-color);
	width: 100%;
	float: left;
	padding: 10px 15px;
	outline: none;
	-webkit-border-radius: var(--border-radius);
	-moz-border-radius: var(--border-radius);
	border-radius: var(--border-radius);
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

/*===== Select =====*/
select,
select.form-control {
	border: 1px solid var(--grey-color);
	color: var(--dark-color);
	width: 100%;
	float: left;
	padding: 0 30px 0 15px;
	height: 51px;
	line-height: 48px;
	outline: none;
	-webkit-border-radius: var(--border-radius);
	-moz-border-radius: var(--border-radius);
	border-radius: var(--border-radius);
	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;
}

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

.content-area .site-main {
	padding: 20px 0;
	display: inline-block;
	width: 100%;
	overflow: hidden;
	float: left;
}
.pt-breadcrumb-style-1 {
	background-position: top;
}
.pt-cards-body .content-area .site-main,
.pt-cards-body .content-area .site-main .elementor-section.elementor-top-section.pt-cards-section {
    overflow: visible;
}

/* .pt-cards-body .content-area .site-main .elementor-section.elementor-top-section {
    overflow: hidden;
} */

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

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

/*================================================
Back to Top
================================================*/
#back-to-top .top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	margin: 0px;
	color: var(--white-color);
	background: var(--dark-color);
	z-index: 999;
	border: 1px solid var(--dark-color);
	font-size: 18px;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 45px;
	border-radius: 90px 90px 90px 90px;
	-moz-border-radius: 90px 90px 90px 90px;
	-webkit-border-radius: 90px 90px 90px 90px;
    animation: backtotop 2s infinite;
}

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

@keyframes backtotop {
	0% {
		bottom: 45px;
	}

	50% {
		bottom: 30px;
	}

	100% {
		bottom: 45px;
	}
}

/*================================================
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: #fff;
	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: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	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: 10px;
}

.bypostauthor {
	display: block;
}

.wp-caption-text {
	font-size: 14px;
	margin: 4px 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: 700;
	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"] {
	padding: 12px 30px;
	font-family: var(--title-fonts);
	font-size: 16px;
	background: var(--primary-color);
	color: var(--white-color);
	text-transform: uppercase;
	display: inline-block;
	border: none;
	width: auto;
	height: auto;
	line-height: 2;
	-webkit-border-radius: 900px;
	-moz-border-radius: 900px;
	border-radius: 900px;
	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;
}

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

.pt-button {
	position: relative;
	width: auto;
	background: var(--primary-color);
	color: var(--white-color);
	font-family: var(--title-fonts);
	font-size: 16px;
	text-transform: uppercase;
	padding: 12px 30px;
	line-height: 2;
	vertical-align: middle;
	border: none;
	display: inline-block;
	overflow: hidden;
	-webkit-border-radius: 90px;
	-moz-border-radius: 90px;
	border-radius: 90px;
}

.pt-button-block {
	position: relative;
    height: 32px;
    overflow: hidden;
}

.pt-button .pt-button-block .pt-button-text {
	z-index: 9;
	position: relative;
    display: block;
    transform: translateY(0%);
    transition: all 0.3s ease-in-out;
}

.pt-button:hover .pt-button-block .pt-button-text {
	transform: translateY(-100%);
}

.pt-button:hover,
.pt-button:focus {
	color: var(--white-color);
	background-position: right center;
}

.pt-button .pt-icon {
    font-size: 18px;
    line-height: 1;

}

/*===== Button link =====*/
.pt-button.pt-button-link {
	padding: 0;
	background: transparent;
	color: var(--primary-color);
    -webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.pt-button.pt-button-link:hover {
	color: var(--primary-color);
}

.pt-button.pt-button-link .pt-button-block::before {
    content: "";
	position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.7s ease-in-out;
}

.pt-button.pt-button-link:hover .pt-button-block::before {
    width: 100%;
}

.pt-button.pt-button-link .pt-button-block::after {
    content: "";
	position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.pt-button.pt-button-link:hover .pt-button-block::after {
    width: 0;
}




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


/*===== Button Round =====*/

.pt-button-round {
    overflow: hidden; letter-spacing: 1px;
    font-family: var(--title-fonts);
    font-weight: 400; 
    text-transform: uppercase;
    line-height: 2;
    font-size: 18px;
    background: transparent; 
    border: 2px solid var(--primary-color);
    color: var(--primary-color); 
    display: inline-flex; 
    width: 150px; 
    height: 150px; 
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 9999px; 
}

.pt-button-round .pt-button-block .pt-button-text {
	z-index: 9;
	position: relative;
    display: block;
    transform: translateY(0%);
    transition: all 0.3s ease-in-out;
}

.pt-button-round:hover .pt-button-block .pt-button-text {
	transform: translateY(-100%);
}


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

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

.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(--white-color);
    padding: 15px 30px;
    border: 1px solid var(--grey-color);
    border-radius: 0;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 30px;
}

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

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

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

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

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

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

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

.wp-calendar-table {
    margin-bottom: 0;
}

.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(--secondary-color);
    text-decoration: none;
    background: var(--white-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(--secondary-color);
    text-decoration: none;
    background: var(--white-color);
}

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

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

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

/*=====  Tags =====*/
.wp-block-tag-cloud .tag-cloud-link {
    font-size: 14px !important;
    background: var(--primary-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    float: left;
    color: var(--white-color);
    padding: 4px 8px;
    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;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.wp-block-tag-cloud .tag-cloud-link:hover {
    border-color: var(--dark-color);
    background: var(--dark-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(--grey-color);
    margin-left: 5px;
    padding: 0px;
    display: inline-block;
    color: var(--dark-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;
    position: relative;
    padding: 30px;
    background: var(--grey-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    display: inline-block;
    width: 100%;
}

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

/*===== Widget Title =====*/
.widget .wp-block-heading,
.widget .widget-title,
.widget.widget_block h2 {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 32px;
}


/*===== Widget List =====*/
.widget ul {
    padding: 0;
    margin: 0;
}

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

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

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

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

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


/*===== SideBar - Recent Post =====*/

.pt-recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

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

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

.pt-recent-post .pt-recent-post-media img {
    width: 90px;
    height: 90px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

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

.pt-recent-post .pt-recent-post-info .pt-post-date {
    font-family: var(--title-fonts);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.pt-recent-post .pt-recent-post-info .pt-post-date i {
    margin-right: 10px;
}

.pt-recent-post .pt-recent-post-info h6 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

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



/*===== SideBar - Search =====*/

.widget .wp-block-image img {
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.pt-widget .pt-social-icon li {
    background-color: transparent !important;
}

.pt-widget .pt-social-icon li:hover {
    transform: none;
}

.pt-widget .pt-social-icon li a {
    padding: 0;
    display: inline-block;
    text-align: center;
    fill: var(--white-color);
    background: var(--primary-color);
    color: var(--white-color);
    height: 45px;
    width: 45px;
    line-height: 42px;
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
    border-radius: 90px;
    transition: var(--transition);
}

.pt-widget .pt-social-icon li a:hover {
    background: var(--dark-color);
}

/*===== SideBar - Search =====*/

.widget.widget_search {
    background: var(--primary-color);
}

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

.search-form {
    position: relative;
}

.search-form label {
    display: block;
}

.widget.widget_search .search-form .search-field,
.widget.widget_search .wp-block-search__input,
.wp-block-search__input {
    background: var(--white-color);
    border-color: var(--white-color);
    padding: 0 15px;
}


.wp-block-search__input:hover,
.wp-block-search__input:focus {
    background: var(--white-color);
}


.widget.widget_search .search-form .search-field:hover,
.widget.widget_search .wp-block-search__input:hover,
.widget.widget_search .search-form .search-field:focus,
.widget.widget_search .wp-block-search__input:focus {
    border-color: var(--primary-color);
}

.search-submit {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 20px;
    position: absolute;
    text-align: center;
    color: var(--secondary-color);
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.search-submit:before {
    content: "\e610";
    font-family: 'themify';
    font-weight: 500;
}

.search-submit:hover {
    background: transparent;
    color: var(--primary-color);
}

/*===== SideBar - Recent Comments =====*/
.widget.widget_recent_comments #recentcomments li.recentcomments span a,
.widget.widget_recent_comments #recentcomments--1 li.recentcomments span a {
    color: var(--secondary-color);

}

.widget.widget_recent_comments #recentcomments li.recentcomments a:before {
    display: none;
}

.widget.widget_recent_comments li.recentcomments a {
    color: var(--primary-color);
    padding-left: 0;
}

.widget.widget_recent_comments li.recentcomments a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/*===== SideBar - Archives dropdown =====*/
.widget_archive select,
.widget_categories select,
.widget select {
    background-color: var(--white-color);
}

.wp-block-archives label {
    display: none;
}


/*=====  SideBar Calendar  =====*/
.widget_calendar table caption {
    padding: 10px 0 10px;
    color: var(--dark-color);
    font-weight: 700;
    caption-side: top;
    text-align: center;
    font-family: var(--title-fonts);
    font-size: 18px;
    letter-spacing: 1px;
}

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

.widget_calendar table#wp-calendar caption {
    background: var(--white-color);
}

.wp-block-calendar table#wp-calendar {
    background: var(--white-color);
    margin-bottom: 0;
}

.wp-block-calendar table#wp-calendar th {
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--title-fonts);
}


.widget_calendar table th {
    background: transparent;
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--title-fonts);
}

.widget_calendar table tbody {
    color: var(--secondary-color);
}

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

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

.widget_calendar table th,
.widget_calendar table td {
    padding: 8px;
    text-align: center;
    border: 1px solid var(--grey-color);
}

.widget_calendar a {
    color: var(--dark-color);
    text-decoration: none;
}

.widget_calendar a:hover {
    color: var(--primary-color);
}

.wp-calendar-nav {
    overflow: hidden;
    clear: both;
}

.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(--secondary-color);
    text-decoration: none;
    background: var(--white-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(--secondary-color);
    text-decoration: none;
    background: var(--white-color);
}

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

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

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

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

.pt-blog-contain .wp-block-calendar caption {
    padding: 10px 0 10px;
    color: var(--dark-color);
    font-weight: 700;
    caption-side: top;
    text-align: center;
    font-family: var(--title-fonts);
    font-size: 18px;
    letter-spacing: 1px;
}

/*=====  Latest Comments  =====*/
.wp-block-latest-comments {
    padding: 0;
    margin: 0;
}

.wp-block-latest-comments li .wp-block-latest-comments__comment-author {
    color: var(--secondary-color);
    font-weight: 400;
}

.wp-block-latest-comments li .wp-block-latest-comments__comment-link {
    color: var(--primary-color);
}


/*===== Login Form =====*/
.widget .wp-block-loginout input.input {
    background: var(--white-color);
    margin-bottom: 15px;
}

.widget .wp-block-loginout p {
    margin-bottom: 0;
}

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

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

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

.wp-block-social-links.is-style-pill-shape .wp-social-link a {
    padding: .25em;
}

/*===== Search common =====*/
.wp-block-search {
    position: relative;
}

.wp-block-search label {
    display: none;
}

.wp-block-search .wp-block-search__button {
    background: transparent;
    border: none;
    padding: 0;
    position: absolute;
    text-align: center;
    color: var(--secondary-color);
    font-size: 0px;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    letter-spacing: 0;
}

.wp-block-search .wp-block-search__button:before {
    content: "\e610";
    font-family: 'themify';
    font-weight: 400;
    font-size: 20px;
}

.wp-block-search .wp-block-search__button:hover {
    background: transparent;
    color: var(--primary-color);
    outline: none;

}

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

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
    border: 1px solid transparent;
    padding: 0 15px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:hover,
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus {
    border: 1px solid var(--primary-color);
}

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

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

/*=====  Tags =====*/
.widget_tag_cloud .tag-cloud-link,
.wp-block-tag-cloud .tag-cloud-link {
    font-size: 14px !important;
    text-transform: capitalize;
    background: var(--white-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    color: var(--secondary-color);
    padding: 4px 16px;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

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

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

/*++++++++++++++++ Updated Dummy data backend page +++++++++++*/
.wp-block-file {
    margin-top: 20px;
}

.pt-blog-post .pt-blog-contain hr.wp-block-separator {
    margin-bottom: 30px;
}

.pt-blog-post .pt-blog-contain .wp-block-navigation .wp-block-navigation-item {
    margin-right: 15px;
}

.pt-blog-post .pt-blog-contain .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
    color: var(--dark-color);
    font-weight: 400;
    padding-left: 15px;
}

.pt-blog-post .pt-blog-contain .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content:hover {
    color: var(--primary-color);
}

.pt-blog-post .pt-blog-contain h1.wp-block-site-title {
    font-size: 32px;
    line-height: 40px;
}

.pt-blog-post .pt-blog-contain .wp-block-query ul li.wp-block-post {
    margin-bottom: 20px;
}

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

.pt-blog-post .pt-blog-contain .wp-block-query-pagination {
    margin-bottom: 20px;
}

.pt-blog-post .pt-blog-contain .wp-block-query-pagination-numbers {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-blog-post .pt-blog-contain .wp-block-query-pagination .page-numbers,
.pt-blog-post .pt-blog-contain .wp-block-query-pagination .wp-block-query-pagination-next {
    position: relative;
    display: block;
    padding: 0px 15px;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    margin: 0 5px;
    color: var(--dark-color);
    background-color: var(--grey-color);
    transition: all 0.5s ease;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-blog-post .pt-blog-contain .wp-block-query-pagination .page-numbers:hover,
.pt-blog-post .pt-blog-contain .wp-block-query-pagination .wp-block-query-pagination-next:hover {
    color: var(--white-color);
    text-decoration: none;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 2;
}

.pt-blog-post .pt-blog-contain .wp-block-query-pagination .wp-block-query-pagination-next {
    width: auto;
}

.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-blog-post .pt-blog-contain .wp-block-query-pagination .page-numbers.current,
.pt-blog-post .pt-blog-contain .wp-block-query-pagination .wp-block-query-pagination-next.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;
}

.wp-block-post-terms a {
    color: var(--primary-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wp-block-post-navigation-link {
    display: inline-block;
    margin-bottom: 20px;
}

.wp-block-post-navigation-link>a {
    display: inline-block;
    font-family: var(--title-fonts);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 2;
    font-size: 16px;
    padding: 14px 30px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    position: relative;
    width: auto;
    background: var(--primary-color);
    color: var(--white-color);
    letter-spacing: 0.04em;
}

.wp-block-post-navigation-link>a:hover {
    background: var(--dark-color);
}

.wp-block-read-more {
    position: relative;
    margin-bottom: 20px;
    font-family: var(--title-fonts);
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.wp-block-read-more:after,
.wp-block-read-more:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: 0 0;
    -webkit-transition: .3s cubic-bezier(.48, .05, .50, .94);
    -o-transition: .3s cubic-bezier(.47, .05, .50, .94);
    transition: .3s cubic-bezier(.47, .05, .50, .94);
}

.wp-block-read-more:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transition: .3s cubic-bezier(.48, .05, .50, .94) .2s;
    -o-transition: .3s cubic-bezier(.47, .05, .50, .94) .2s;
    transition: .3s cubic-bezier(.47, .05, .50, .94) .2s;
}

.wp-block-read-more:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: .3s cubic-bezier(.48, .05, .50, .94) .2s;
    -o-transition: .3s cubic-bezier(.47, .05, .50, .94) .2s;
    transition: .3s cubic-bezier(.47, .05, .50, .94) .2s;
}

.wp-block-read-more:hover:after {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: .3s cubic-bezier(.48, .05, .50, .94);
    -o-transition: .3s cubic-bezier(.47, .05, .50, .94);
    transition: .3s cubic-bezier(.47, .05, .50, .94);
}

.wp-block-comments .wp-block-comments-title {
    font-size: 26px;
    line-height: 34px;
}

.wp-block-comments .wp-block-comment-template {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wp-block-comments .wp-block-comment-template .comment {
    margin-top: 15px;
    margin-bottom: 0;
    vertical-align: top;
    padding: 0;
    list-style: none;
}

.wp-block-comments .wp-block-comment-template .comment .has-small-font-size {
    font-size: 16px !important;
}

.pt-blog-post .pt-blog-contain .wp-block-comment-reply-link .comment-reply-link {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--title-fonts);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.pt-blog-post .pt-blog-contain .wp-block-comment-edit-link a {
    color: var(--primary-color);
}

.pt-blog-post .pt-blog-contain .wp-block-post-comments-form input,
.pt-blog-post .pt-blog-contain .wp-block-post-comments-form textarea {
    border: 1px solid var(--grey-color);
    background: var(--grey-color);
}

.pt-blog-post .pt-blog-contain .wp-block-post-comments-form input:hover,
.pt-blog-post .pt-blog-contain .wp-block-post-comments-form textarea:hover {
    border-color: var(--primary-color);
}

.pt-blog-post .pt-blog-contain .wp-block-post-comments-form .form-submit .submit {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.pt-blog-post .pt-blog-contain .wp-block-post-comments-form .form-submit .submit:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
}

.pt-blog-post .pt-blog-contain .wp-block-post-comments-form p:last-child {
    margin-bottom: 30px;
}

/*===== widget Nav Menu =====*/
.widget.widget_nav_menu ul li,
.widget ul.menu li {
    margin-bottom: 0;
}

.widget.widget_nav_menu ul li .sub-menu,
.widget ul.menu li .sub-menu {
    padding-left: 20px;
}

.widget ul.wp-block-latest-posts__list li>a:before,
.widget ul.wp-block-archives-list li>a:before,
.widget ul.wp-block-categories-list li>a:before,
.widget.widget_archive ul li>a:before,
.widget.widget_categories ul li>a:before,
.widget.widget_pages ul li>a:before,
.widget.widget_meta ul li>a:before,
.widget.widget_recent_entries ul li>a:before,
.widget.widget_nav_menu ul li>a:before,
.widget ul.wp-block-page-list li>a:before,
.widget .wc-block-product-categories-list:not(.wc-block-product-categories-list--has-images) .wc-block-product-categories-list-item a:before,
.widget.woocommerce.widget_product_categories ul.product-categories li.cat-item a:before,
.pt-blog-post .pt-blog-contain .wp-block-archives-list li a:before,
.pt-blog-post .pt-blog-contain .wp-block-categories-list.wp-block-categories li a:before,
.pt-blog-post .pt-blog-contain .wp-block-latest-posts__list.wp-block-latest-posts li a:before,
.pt-blog-post .pt-blog-contain .wp-block-page-list li.wp-block-pages-list__item a:before {
    position: absolute;
    content: '\f054';
    left: 0;
    font-size: 10px;
    top: 6px;
    color: inherit;
    font-family: "Font Awesome 5 Free";
    line-height: normal;
    font-weight: 900;

}

/*=====  SideBar Categories List  =====*/
.widget_categories ul li,
.widget_archive ul li {
    font-weight: 400;
    color: var(--primary-color);
}

.widget_categories ul li a,
.widget_archive ul li a {
    font-weight: 400;
    color: var(--secondary-color);
}

/*=====  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(--dark-color);
    font-weight: 700;
    font-family: var(--title-fonts);
    line-height: 24px;
    letter-spacing: 1px;
}

.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: 700;
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}

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

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

/*=====  woocommerce =====*/
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
    font-family: var(--title-fonts);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 2;
    font-size: 14px;
    padding: 12px 24px;
}

.wc-block-product-categories.is-dropdown .wc-block-product-categories__dropdown {
    flex: 1;
}

.wc-block-product-categories.is-dropdown .wc-block-product-categories__button {
    padding: 5px 10px;
}

.widget.widget_product_search .woocommerce-product-search .search-field {
    background: var(--white-color);
}

.widget.woocommerce.widget_product_categories .select2-container--default .select2-selection--single {
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 0;
    height: 54px;
    line-height: 54px;
}

.widget.woocommerce.widget_product_categories .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 20px;
    right: 1px;
    width: 20px;
}

.widget.woocommerce.widget_product_categories .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 54px;
}

.widget.woocommerce.widget_products ul.product_list_widget li a {
    font-weight: 700;
}


/*++++++++++++++++ Dummy data backend page +++++++++++*/
.pt-sticky-post-label {
    padding: 5px 15px;
    font-size: 14px;
    line-height: 22px;
    background: var(--primary-color);
    color: var(--white-color);
    margin-bottom: 15px;
    display: inline-block;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);

}

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

.wp-block-button__link,
.wp-block-file a.wp-block-file__button,
.wp-block-file a {
    background: var(--primary-color);
    color: var(--white-color) !important;
    font-family: var(--title-fonts);
    font-weight: 600;
    text-transform: capitalize;
    line-height: 2;
    font-size: 16px;
    padding: 12px 24px;
    letter-spacing: 1px;
    display: inline-block;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.wp-block-button__link:hover,
.wp-block-file a.wp-block-file__button:hover,
.wp-block-file a: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(--white-color);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-blog-post .pt-blog-contain blockquote:before {
    content: "\f10e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 22px;
    bottom: 10px;
    font-size: 60px;
    opacity: 0.1;
    line-height: 68px;
    color: var(--primary-color);
}

blockquote cite {
    font-family: var(--title-fonts);
    color: var(--primary-color);
    text-transform: capitalize;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1px;
}

blockquote strong {
    font-family: var(--title-fonts);
    color: var(--primary-color);
    font-style: italic;
    font-weight: 700;
    display: block;
    margin-top: 10px;
    letter-spacing: 1px;
}

.wp-block-avatar img,
.wp-block-post-author__avatar img {
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

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


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

.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-dropdown select {
    background-color: var(--white-color);
}


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

.wp-block-latest-comments__comment {
    line-height: 2;
}

.has-dates .wp-block-latest-comments__comment,
.has-excerpts .wp-block-latest-comments__comment,
.wp-block-latest-comments__comment {
    display: inline-block;
    width: 100%;
}

/*===== Gallery =====*/
.gallery-item .gallery-caption {
    font-size: 14px;
    line-height: 22px;
}

.gallery-size-thumbnail .gallery-item {
    margin-right: 2%;
    width: 18.4%;
    margin-bottom: 2%;
    display: inline-block;
    vertical-align: top;
}

.gallery.gallery-size-thumbnail {
    display: inline-block;
    width: 100%;
}

.gallery-size-thumbnail .gallery-item img {
    margin-bottom: 10px;
    width: 100%;
}

.gallery-columns-1 .gallery-item {
    width: 100%;
    margin-right: 0px;
}

.gallery-columns-2 .gallery-item {
    width: 48%;
}

.gallery-columns-3 .gallery-item {
    width: 31.3%;
}

.gallery-columns-4 .gallery-item {
    width: 23%;
}

.gallery-columns-5 .gallery-item {
    width: 18%;
}

.gallery-columns-6 .gallery-item {
    width: 14.6%;
}

.gallery-columns-7 .gallery-item {
    width: 12.2%;
}

.gallery-columns-8 .gallery-item {
    width: 10.5%;
}

.gallery-columns-9 .gallery-item {
    width: 9.1%;
}

/*=====  Blog Page Link =====*/
.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(--white-color);
    margin-left: 5px;
    padding: 0px;
    display: inline-block;
    color: var(--dark-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

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

/*===== 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-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: var(--title-fonts);
    color: var(--primary-color);
}

.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(--grey-color);
    position: relative;
    background: var(--grey-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.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 {
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.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: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: var(--title-fonts);
    color: var(--primary-color);
}

.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: calc((100% - 30px ) / 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;
}

.commentlist .comment-respond .comment-form-author,
.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
    width: calc((100% - 30px ) / 3);
    float: left;
} 

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


@media (max-width: 767px) {

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


/*================================================
Blog
================================================*/

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

.pt-blog-post {
    display: inline-block;
    width: 100%;
    margin-bottom: 45px;
}

.pt-single-post-bottom-holder {
    margin: 45px 0;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    border-bottom: 1px solid var(--primary-color);
    border-top: 1px solid var(--primary-color);
}

.pt-single-post-bottom-holder .pt-single-post-tags {
    display: flex;
    align-items: center;
}

.pt-single-post-bottom-holder .pt-single-post-tags-title {
    font-family: var(--title-fonts);
    color: var(--dark-color);
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
}

.pt-single-post-bottom-holder ul.pt-single-post-tags-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}

.pt-single-post-bottom-holder ul.pt-single-post-tags-list li {
    margin: 0 0 0 8px;
    padding: 0;
    list-style: none;
    display: inline-block;
    vertical-align: middle;
}

.pt-single-post-bottom-holder ul.pt-single-post-tags-list li a {
    font-size: 14px;
    text-transform: capitalize;
    background: var(--grey-color);
    margin: 0;
    display: inline-block;
    float: left;
    color: var(--dark-color);
    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;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-single-post-bottom-holder ul.pt-single-post-tags-list li a:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

/*===== Blog Single Post - Social Media =====*/

.pt-single-post-bottom-holder .pt-single-post-social-title {
    font-family: var(--title-fonts);
    color: var(--dark-color);
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
}

.pt-single-post-bottom-holder ul.pt-single-post-shortcode-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
}

.pt-single-post-bottom-holder ul.pt-single-post-shortcode-list li {
    margin: 0 0 0 8px;
    padding: 0;
    list-style: none;
}

.pt-single-post-bottom-holder ul.pt-single-post-shortcode-list li a {
    width: 50px;
    height: 50px;
    background: var(--grey-color);
    color: var(--dark-color);
    display: inline-block;
    text-align: center;
    line-height: 50px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-single-post-bottom-holder ul.pt-single-post-shortcode-list li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.pt-single-post-usernav .pt-user {
    background: var(--grey-color);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-single-post-usernav .pt-user .pt-user-media {
    margin-right: 30px;
}

.pt-single-post-usernav .pt-user .pt-user-media img {
    width: 180px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-single-post-usernav .pt-user-info .pt-user-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 5px;
}

.pt-single-post-usernav .pt-user-info .pt-user-sub-title {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    color: var(--primary-color);
}

.pt-single-post-usernav .pt-user-description {
    margin-bottom: 0;
    margin-top: 10px;
}

.pt-blog.pt-single-post {
    padding: 0 30px 45px;
}

.pt-blog.pt-single-post h2 {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 36px;
}

.single-post .owl-carousel .pt-blog-post .pt-blog-contain .pt-blog-title {
    font-size: 22px;
    line-height: 30px;
}

@media(max-width:767px) {
    .pt-single-post-bottom-holder {
        display: block;
    }

    .pt-single-post-social-share {
        margin-bottom: 30px;
    }

    .pt-single-post-usernav .pt-user {
        align-items: flex-start;
        padding: 15px;
    }

}

@media(max-width:479px) {
    .pt-single-post-bottom-holder {
        padding-top: 0px;
        padding-bottom: 20px;
    }

    .pt-single-post-usernav .pt-user {
        display: block;
    }

    .pt-single-post-usernav .pt-user .pt-user-media img {
        width: 80px;
    }

    .pt-single-post-usernav .pt-user .pt-user-media {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .pt-single-post-bottom-holder ul.pt-single-post-tags-list li {
        margin-bottom: 5px;
    }
}

/*===== Blog Image =====*/

.pt-blog-post .pt-post-media {
    overflow: hidden;
    position: relative;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.pt-blog-post .pt-post-media img {
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

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


/*===== Blog Meta =====*/

.pt-blog-post .pt-post-meta {
    margin-bottom: 10px;
}

.pt-blog-post .pt-post-meta ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pt-blog-post .pt-post-meta ul li {
    display: inline-block;
    text-align: center;
    font-family: var(--title-fonts);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
}

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

.pt-blog-post .pt-post-meta ul li .pt-icon {
    margin-right: 5px;
}

.pt-blog-post .pt-post-meta ul li .pt-icon i {
    font-size: 16px;
    line-height: 1;
    color: var(--primary-color);
}

.pt-blog-post .pt-post-meta ul li .pt-icon svg {
    width: 16px;
    height: 16px;
}

.pt-blog-post .pt-post-meta ul li .pt-icon svg path {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

/*===== Blog contain =====*/

.pt-blog-post .pt-blog-contain .pt-blog-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-black);
}

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

/*===== Blog nav=====*/

.pt-blog .owl-carousel .owl-nav {
    display: block;
    text-align: end;
    top: -100px;
}

.pt-blog .owl-carousel .owl-nav button.owl-prev {
    margin-left: 0;
    margin-right: 10px;
}

.pt-blog .owl-carousel .owl-nav button.owl-next {
    margin-right: 0;
}


@media(max-width:575px) {

    .pt-blog .owl-carousel .owl-nav {
        display: none;
    }
}

/*===== Blog 1 Column =====*/

.pt-blog.pt-blog-col-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px 30px;
}

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

/*===== Blog 2 Column =====*/

.pt-blog.pt-blog-col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px 30px;
}

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

@media(max-width:767px) {

    .pt-blog.pt-blog-col-2 {
        grid-template-columns: 1fr;
    }
}

/*===== Blog 3 Column =====*/

.pt-blog.pt-blog-col-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 45px 30px;
}

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

@media(max-width:1023px) {

    .pt-blog.pt-blog-col-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:767px) {

    .pt-blog.pt-blog-col-3 {
        grid-template-columns: 1fr;
    }
}

/*===== Blog List =====*/


.pt-blog-post.pt-list:last-child{
    margin-bottom: 0;
}

.pt-blog-post.pt-list .pt-blog-area {
    display: grid;
    grid-template-columns: auto 610px auto;
    align-items: center;
    gap: 60px;
    padding: 60px 45px;
    background-color: var(--grey-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

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

.pt-blog-post.pt-list .pt-blog-area .pt-blog-post .pt-post-meta {
    margin-bottom: 0;
} 

.pt-blog-post.pt-list .pt-blog-area  .pt-post-meta ul .pt-post-category {
    padding: 8px 15px;
    background-color: var(--primary-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
} 

.pt-blog-post.pt-list .pt-blog-area  .pt-post-meta ul .pt-post-category a {
    color: var(--white-color);
} 

.pt-blog-post.pt-list .pt-blog-area  .pt-post-meta ul a i {
    margin-right: 8px;
} 

.pt-blog-post.pt-list .pt-blog-area .pt-blog-contain .pt-blog-title {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pt-blog-post.pt-list .pt-blog-area .pt-post-date {
    text-align: center;
}

.pt-blog-post.pt-list .pt-blog-area .pt-post-date a {
    display: block;
    font-family: var(--title-fonts);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--dark-color);
}

.pt-blog-post.pt-list .pt-blog-area .pt-post-date a .pt-post-blk {
    display: block;
    font-size: 64px;
    line-height: 72px;
    font-weight: 700;
    margin-bottom: 5px;
}

.pt-blog-post.pt-list .pt-blog-area .pt-post-media {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.pt-blog-post.pt-list.pt-active .pt-blog-area .pt-post-media  {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.pt-blog-post.pt-list .pt-blog-area .pt-post-media::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    opacity: 0.8;
    z-index: 1;
}

.pt-blog-post.pt-list .pt-blog-area .pt-post-media img {
    width: 100%;
}

.pt-blog-post.pt-list.pt-active .pt-blog-area .pt-post-media img {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.pt-blog-post.pt-list .pt-blog-area .pt-btn-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(315deg) scale(0);
    width: auto;
    height: auto;
    transition: var(--transition);
}

.pt-blog-post.pt-list.pt-active .pt-blog-area .pt-btn-container {
    transform: translate(-50%, -50%) rotate(315deg) scale(1);
}

.pt-blog-post.pt-list .pt-blog-area .pt-btn-container .pt-button {
    padding: 0;
    background-color: transparent;
}

.pt-blog-post.pt-list .pt-blog-area .pt-btn-container .pt-button .pt-button-block  {
    height: auto;
}

.pt-blog-post.pt-list .pt-blog-area .pt-btn-container .pt-button .pt-button-block .pt-icon i {
    font-size: 44px;
    line-height: 1;
}

/*===== Blog Pagination =====*/

.elementor-widget-pt_blog .pt-pagination {
    margin-top: 45px;
}


/*================================================
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);
    border: 2px solid var(--dark-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.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 img {
    max-width: 960px;
    margin-bottom: 45px;
}

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

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

    .pt-error-block img {
        max-width: 700px;
    }

}

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

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

    .pt-error-block img {
        max-width: 450px;
    }
}

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

    .pt-error-block img {
        max-width: 290px;
    }
}


/*================================================
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);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    list-style: none;
    color: var(--dark-color);
    display: inline-block;
    cursor: pointer;
    padding: 12px 20px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.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);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-filters .pt-filter-button-group ul li:hover {
    color: var(--dark-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-grid.style-2 .pt-portfoliobox-1 .pt-portfolio-img {
    overflow: hidden;
}

.pt-grid.style-2 .pt-portfoliobox-1 .pt-portfolio-info {
    position: relative;
    bottom: 0;
    left: 0;
    background: transparent;
    padding-left: 0;
    padding-bottom: 0;
    opacity: 1;
}

.pt-grid.style-2 .pt-portfoliobox-1 a.pt-portfolio-icon-bg {
    display: none;
}

.pt-grid.style-2 .pt-grid-item:nth-child(1) .pt-portfoliobox-1 {
    margin-top: 60px;
}

.pt-grid.style-2 .pt-col-6 {
    padding: 0 30px 45px;
    padding-bottom: 45px;
}

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

.pt-masonry.no-padding .pt-portfoliobox-1,
.pt-masonry.no-padding .pt-portfoliobox-1 .pt-portfolio-img img {
    border-radius: 0;
}

/* layout 2 */

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

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

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


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

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

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

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

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

    .pt-filters .pt-filter-button-group ul li {
        margin-right: 10px;
    }

    .pt-col-3,
    .pt-col-4,
    .pt-masonry .ipt-lg-3 {
        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;
    }

    .pt-masonry .ipt-lg-8 {
        width: 100%;
    }

    .pt-grid.style-2 .pt-grid-item:nth-child(1) .pt-portfoliobox-1 {
        margin-top: 0;
    }

    .pt-grid.style-2 .pt-col-6 {
        padding: 0 0 30px;
    }


}

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

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

/* single project css */

.pt-single-post-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    padding: 45px 30px;
    margin-bottom: 0;
    background: var(--grey-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.single-post .pt-single-post-navigation {
    margin-bottom: 40px;
}

.pt-single-post-navigation .pt-single-post-nav {
    position: relative;
    padding-left: 75px;
    display: inline-block;
    cursor: pointer;
}

.pt-single-post-navigation .pt-single-post-nav:before {
    position: absolute;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f053";
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    font-size: 20px;
    color: var(--white-color);
    background: var(--dark-color);
    text-align: center;
    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-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-single-post-navigation .pt-single-post-nav.pt--next {
    padding-left: 0;
    padding-right: 75px;
    text-align: right;
}

.pt-single-post-navigation .pt-single-post-nav.pt--next:before {
    content: "\f054";
    right: 0;
    left: inherit;
}

.pt-single-post-navigation .pt-single-post-nav-title h4 {
    font-size: 22px;
    line-height: 30px;
}

.pt-single-post-nav-label {
    color: var(--dark-color);
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--title-fonts);
    letter-spacing: 0.04em;
}

.pt-single-post-navigation+h2+.pt-masonry {
    margin-left: -15px;
    margin-top: 30px;
}

.pt-single-post-navigation .pt-single-post-nav:hover .pt-single-post-nav-label {
    color: var(--primary-color);
}

.pt-single-post-navigation .pt-single-post-nav:hover:before {
    background: var(--primary-color);
}

@media(max-width:767px) {

    .pt-single-post-navigation {
        padding: 45px 15px;

    }

    .pt-single-post-navigation .pt-single-post-nav-title h4 {
        font-size: 22px;
        line-height: 30px;
    }

    .pt-single-post-navigation+h2+.pt-masonry {
        margin-left: 0;
    }
}

@media(max-width:576px) {
    .pt-single-post-navigation {
        display: block;
    }

    .pt-single-post-navigation .pt-single-post-nav.pt--next {
        margin-top: 15px;
        display: block;
    }
}


/*================================================
Portfolio box
================================================*/
.pt-portfoliobox-1 {
    overflow: hidden;
    position: relative;
}

.pt-portfoliobox-1 .pt-portfolio-img {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-portfoliobox-1 .pt-portfolio-img img {
    width: 100%;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.pt-portfoliobox-1:hover .pt-portfolio-img img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.pt-portfoliobox-1 .pt-portfolio-img span.pt-portfolio-tag {
    display: none;
}

.pt-portfoliobox-1 .pt-portfolio-info .pt-portfolio-style-1-tag {
    line-height: 1;
    margin-bottom: 5px;
}

.pt-portfoliobox-1 .pt-portfolio-info .pt-portfolio-style-1-tag a {
    font-family: var(--title-fonts);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
}

/*===== Portfoliobox Hover Slide  =====*/

.pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info {
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 1;
    -moz-transform: translate(-100%, 0px);
    -webkit-transform: translate(-100%, 0px);
    -o-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
    -webkit-transition: transform 0.4s 0s ease-in-out;
    -moz-transition: transform 0.4s 0s ease-in-out;
    -o-transition: transform 0.4s 0s ease-in-out;
    transition: transform 0.4s 0s ease-in-out;
    padding: 30px;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
}

.pt-portfoliobox-1.pt-hover-slide:hover .pt-portfolio-info {
    -moz-transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    left: 30px;
}

.pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info h5 a {
    color: var(--dark-color);
    font-size: 24px;
    line-height: 32px;
}

.pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info h5 a:hover {
    color: var(--primary-color);
}

.pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info .pt-portfolio-style-1-tag {
    margin-bottom: 0;
}

.pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info .pt-portfolio-style-1-tag a {
    font-family: var(--title-fonts);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 10px;
}


/*===== Portfoliobox Hover below  =====*/

.pt-portfoliobox-1.pt-hover-bellow .pt-portfolio-info {
	margin-top: 15px;
}

/*===== Portfoliobox Hover fade  =====*/
.pt-portfoliobox-1.pt-hover-fade {
    text-align: center;
}

.pt-portfoliobox-1.pt-hover-fade:before {
    opacity: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: var(--dark-color);
    z-index: 1;
    transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-portfoliobox-1.pt-hover-fade:hover:before {
    opacity: 0.9;
}

.pt-portfoliobox-1.pt-hover-fade .pt-portfolio-info {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: grid;
    align-items: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
    opacity: 0;
    -moz-transform: translate(0px, 30px);
    -webkit-transform: translate(0px, 30px);
    -o-transform: translate(0px, 30px);
    -ms-transform: translate(0px, 30px);
    transform: translate(0px, 30px);
    -webkit-transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
    transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.pt-portfoliobox-1.pt-hover-fade .pt-portfolio-info h5 {
    margin-bottom: 5px;
}

.pt-portfoliobox-1.pt-hover-fade .pt-portfolio-info h5 a,
.pt-portfoliobox-1.pt-hover-fade .pt-portfolio-info .pt-portfolio-style-1-title a {
    color: var(--white-color);
}

.pt-portfoliobox-1.pt-hover-fade .pt-portfolio-info .pt-portfolio-style-1-tag a {
    color: var(--primary-color);
}

.pt-portfoliobox-1.pt-hover-fade:hover .pt-portfolio-info {
    opacity: 1;
    -moz-transform: translate(0px, 0);
    -webkit-transform: translate(0px, 0);
    -o-transform: translate(0px, 0);
    -ms-transform: translate(0px, 0);
    transform: translate(0px, 0);
}

.pt-portfoliobox-1.pt-hover-fade .pt-e-post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pt-portfoliobox-1.pt-hover-fade .pt-portfolio-info .pt-btn-container a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
}

@media (max-width:479px) {

    .pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info {
        padding: 15px;
        margin-right: 15px;
    }

    .pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info .pt-portfolio-style-1-title a {
        font-size: 28px;
        line-height: 36px;
    }

    .pt-portfoliobox-1.pt-hover-slide:hover .pt-portfolio-info {
        left: 15px;
    }
}


/*===== Portfoliobox zigzag  =====*/

.pt-grid.two-column-zigzag .pt-grid-item:nth-child(2) {
    margin-top: 25%;
}

.pt-grid.two-column-zigzag .pt-grid-item:nth-child(odd) {
    padding-left: 0px;
    padding-right: 45px;
}

.pt-grid.two-column-zigzag .pt-grid-item:nth-child(even) {
    padding-right: 0px;
    padding-left: 45px;
}

.pt-grid.two-column-zigzag .pt-grid-item {
    padding-bottom: 90px;
}

.pt-grid.two-column-zigzag .pt-grid-item:last-child,
.pt-grid.two-column-zigzag .pt-grid-item:nth-child(6) {
    padding-bottom: 0;
}


.pt-grid.two-column-zigzag .pt-portfoliobox-1.pt-hover-bellow .pt-portfolio-info {
    margin-top: -36px;
    height: 72px;

}

.pt-grid.two-column-zigzag .pt-portfoliobox-1.pt-hover-bellow .pt-portfolio-info h5 a {
    padding: 20px 30px;
    background-color: var(--primary-color);
}

.pt-grid.two-column-zigzag .pt-portfoliobox-1.pt-hover-bellow .pt-button .pt-button-block .pt-icon {
    background: var(--primary-color);
    width: 72px;
    height: 72px;
    line-height: 72px;
}


@media (max-width:1023px) {

    .pt-grid.two-column-zigzag .pt-grid-item:nth-child(odd) {
        padding-right: 15px;
    }

    .pt-grid.two-column-zigzag .pt-grid-item:nth-child(even) {
        padding-left: 15px;
    }

    .pt-grid.two-column-zigzag .pt-grid-item {
        padding-bottom: 45px;
    }

}

@media (max-width:767px) {

    .pt-grid.two-column-zigzag .pt-grid-item:nth-child(2) {
        margin-top: 0;
    }

    .pt-grid.two-column-zigzag .pt-grid-item:nth-child(odd),
    .pt-grid.two-column-zigzag .pt-grid-item:nth-child(even) {
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 30px;
    }
}

@media (max-width:479px) {

    .pt-portfoliobox-1.pt-hover-bellow .pt-portfolio-info h5 a {
        font-size: 16px;
        line-height: 24px;
    }
}


/*===== Portfolio Slide =====*/

.pt-background-img {
	min-height: 650px;
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	transition: opacity .5s .2s;
	opacity: 1;
}

.pt-background-img-inner {
	overflow: hidden;
	display: flex;
	width: 100%;
    gap : 15px;
}

.pt-background-img-bg {
	display: block;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: 100%;

}

.pt-background-img-item {
	position: relative;
	display: flex;
	align-items: center;
	padding-top: 0;
	z-index: 5;
	flex: 1;
	height: 100%;
	transition: 0.5s;
	cursor: pointer;
}

.pt-background-img .pt-background-img-item.pt-active {
	flex: 3;
	transition: 0.5s;
}

.pt-background-link {
	padding: 0;
	position: absolute;
	left: 40px;
	top: 40px;
	opacity: 0;
	transition: 0.5 ease;
}

.pt-background-img-item.pt-active .pt-background-link {
	opacity: 1;
}

.pt-background-img-number {
	font-size: 36px;
	line-height: 44px;
	font-weight: 600;
	font-family: var(--title-fonts);
	color: var(--white-color);
}

.pt-background-link a.pt-background-img-number:hover {
	color: var(--white-color);
}

.pt-background-img-info {
	position: absolute;
	left: -40px;
	bottom: 130px;
	right: 0;
	display: block;
	opacity: 0;
	transition: all 0.8s ease;
	cursor: text;
}

.pt-background-img .pt-background-img-item.pt-active .pt-background-img-info {
	opacity: 1;
	left: 60px;
	width: 50%;
	transition: all 0.8s ease;
}

.pt-background-img-info .pt-background-img-title {
	margin-bottom: 13px;
}

.pt-background-img-info .pt-background-img-title a {
	margin-bottom: 0;
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
	padding: 10px 15px;
	font-family: var(--title-fonts);
	text-transform: capitalize;
	color: var(--dark-color);
	transition: all 0.5s ease;
	position: relative;
	z-index: 2;
	background: var(--white-color);
}

.pt-background-img-info span {
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 1px;
	padding: 10px 15px;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--white-color);
	position: relative;
	z-index: 2;
	background: var(--primary-color);
}

@media(max-width: 1024px) {
	.pt-background-img .pt-background-img-item.pt-active .pt-background-img-info {
		width: auto;
	}

}


@media(max-width: 767px) {

	.pt-background-img .pt-background-img-item.pt-active .pt-background-img-info {

		left: 30px;
		bottom: 25px;
	}

}

@media(max-width: 676px) {
	.pt-background-img .pt-background-img-title a {
		font-size: 18px;
		line-height: 26px;

	}

	.pt-background-img-info span {
		font-size: 14px;
		line-height: 22px;
	}

	.pt-background-img-info .pt-background-img-title {
		margin-bottom: 10px;
	}

}

@media(max-width: 479px) {

	.pt-background-img .pt-background-img-title a {
		font-size: 14px;
		line-height: 22px;
	}

	.pt-background-img-info span {
		font-size: 12px;
		line-height: 20px;
	}

	.pt-background-img-info .pt-background-img-title a {
		padding: 10px;
	}

	.pt-background-img .pt-background-img-item.pt-active .pt-background-img-info {
		left: 15px;
	}

	.pt-background-img .pt-background-img-item.pt-active {
		flex: 4;
	}

}

/*================================================
Header Dummy
================================================*/

.animated {
	-webkit-animation-duration: 1.25s;
	animation-duration: 1.25s;
}

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

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

}

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

	to {
		opacity: 1;
		transform: none;
	}

}

header.pt-header {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	clear: both;
	background: var(--white-color);
	z-index: 99;
	padding: 0;
	height: 90px;
}

header.pt-header .navbar {
	padding: 0;
}

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

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

header.pt-header .navbar .navbar-nav li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 30px;
	color: var(--dark-color);
	line-height: 90px;
	font-family: var(--body-fonts);
}

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

header.pt-header .navbar .navbar-nav li a {
	color: var(--dark-color);
	font-size: 16px;
	line-height: 24px;
}

header.pt-header .navbar .navbar-nav>li>i {
	padding-left: 8px;
	color: var(--dark-color);
	font-size: 12px;
	text-transform: uppercase;
	line-height: 20px;
}

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

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

header.pt-header .navbar .navbar-nav li:hover .sub-menu {
	display: block;
	background: var(--white-color);
	position: absolute;
	top: 100%;
	left: 0;
	padding-left: 0;
	display: inline-block;
	width: 220px;
	z-index: 999;
	border: 1px solid var(--primary-color);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 20px 0;
}

header.pt-header .navbar .navbar-nav li .sub-menu li {
	line-height: 1.6;
	padding: 0 20px;
	margin: 0;
	display: inline-block;
	width: 100%;
	color: var(--dark-color);
	transition: all 0.5s ease;
}

header.pt-header .navbar .navbar-nav li .sub-menu li a {
	line-height: 1.6;
	text-transform: capitalize;
	padding: 5px 0;
	display: inline-block;
	width: 100%;
	color: var(--dark-color);
	font-size: 15px;
	position: relative;
}

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

/*++++++++ Sub menu icon +++++++++++*/
header.pt-header .navbar .navbar-nav li .sub-menu li i {
	position: absolute;
	top: 12px;
	right: 20px;
	margin-left: 10px;
	font-size: 12px;
	transition: all 0.5s ease;
	color: var(--dark-color);
	-moz-transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}

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

header.pt-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
	position: absolute;
	top: -20px;
	left: 100%;
	display: block;
	background: var(--white-color);
	display: inline-block;
}

@media(max-width:1399px) {
	header.pt-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
		left: inherit;
		right: 100%;
	}

}

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

}

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

}

@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 {
		display: flex;
		align-items: center;
		height: auto;
	}

	header.pt-header .navbar {
		padding: 15px 0;
	}

	header.pt-header .navbar .navbar-collapse {
		width: 100%;
		position: absolute;
		left: 0;
		top: 100%;
		background: #fff;
		-webkit-box-shadow: 0px 5px 15px 0px rgba(19, 35, 74, 0.1);
		-moz-box-shadow: 0px 5px 15px 0px rgba(19, 35, 74, 0.1);
		box-shadow: 0px 5px 15px 0px rgba(19, 35, 74, 0.1);
		max-height: 330px;
		overflow-y: scroll;
		overflow-x: hidden;
	}

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

	header.pt-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 .navbar .navbar-nav li a {
		width: 100%;
		display: inline-block;
		padding: 15px;
		border-bottom: 1px solid #eee;
	}

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

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

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

	header.pt-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 34px;
		-moz-transform: none;
		-webkit-transform: none;
		-o-transform: none;
		-ms-transform: none;
		transform: none;
	}

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

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

	header.pt-header .navbar .navbar-nav li a:focus, header.pt-header .navbar .navbar-nav li a:hover, header.pt-header .navbar .navbar-nav li.current-menu-item a, header.pt-header .navbar .navbar-nav li.current_page_item a, header.pt-header .navbar .navbar-nav li.current-menu-ancestor>a, header.pt-header .navbar .navbar-nav li.current-menu-ancestor i, header.pt-header .navbar .navbar-nav li .sub-menu li a:focus, header.pt-header .navbar .navbar-nav li .sub-menu li a:hover, header.pt-header .navbar .navbar-nav li .sub-menu li.current-menu-item>a, header.pt-header .navbar .navbar-nav li .sub-menu li.current-page-parent>a {
		background: var(--primary-color);
		color: var(--white-color);
	}

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

	header.pt-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 .navbar .navbar-nav li .sub-menu li {
		padding: 0;
	}

	/*======= Header Button =======*/
	header.pt-header .navbar-toggler {
		font-size: 20px;
		padding: 0;
		line-height: normal;
		float: right;
		outline: none;
		margin: 0 0 0 30px;
		width: 50px;
		height: 50px;
		color: var(--white-color);
		box-shadow: none;
		background: var(--primary-color);
		-webkit-border-radius: var(--border-radius);
		-moz-border-radius: var(--border-radius);
		border-radius: var(--border-radius);
		margin-left: auto;
	}

	header.pt-header .navbar-toggler:hover {
		color: var(--white-color);
		background: var(--dark-color);
	}

}


/*================================================
Header 
================================================*/

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

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

@media(max-width: 782px) {

    .admin-bar header#pt-header {
        top: 46px;
    }

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

@media(max-width: 600px) {

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

/*++++++ Header Logo ++++++*/

header .navbar-brand img {
    height: 64px;
}

@media(max-width: 767px) {
    header .navbar-brand img {
        height: 50px;
    }
}

@media(max-width: 379px) {
    header .navbar-brand img {
        height: 45px;
    }
}

/*++++++ Header Nav ++++++*/

header .pt-bottom-header .pt-container-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/*++++++ Mega Menu Toggle ++++++*/

#pt-header #mega-menu-wrap-primary .mega-menu-toggle {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
    border-radius: 90px;
    background-color: var(--primary-color);
    justify-content: center;
}

@media(max-width: 379px) {
    #pt-header #mega-menu-wrap-primary .mega-menu-toggle {
        width: 50px;
        height: 50px;
    }
}

header .pt-bottom-header #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right {
    justify-content: center;
}

header .pt-bottom-header #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box,
header .pt-bottom-header #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
header .pt-bottom-header #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
header .pt-bottom-header #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    width: 35px;
}

header .pt-bottom-header #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-inner,
header .pt-bottom-header #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-inner::before,
header .pt-bottom-header #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    transform-origin: center;
    transition: var(--transition);
}

header .pt-bottom-header #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
header .pt-bottom-header #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
header .pt-bottom-header #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    transform-origin: right;
    transition: var(--transition);
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner {
    transform: scaleX(0.7);
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before {
    transform: scaleX(1.5);
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    transform: scaleX(0.9);
}

#mega-menu-wrap-primary .mega-menu-toggle:hover .mega-toggle-block-0 .mega-toggle-animated-inner {
    transform: scaleX(1);
}

#mega-menu-wrap-primary .mega-menu-toggle:hover .mega-toggle-block-0 .mega-toggle-animated-inner::before {
    transform: scaleX(0.7);
}

#mega-menu-wrap-primary .mega-menu-toggle:hover .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    transform: scaleX(1);
}

#pt-header .pt-bottom-header #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left,
#pt-header .pt-bottom-header #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-center {
    display: none;
}


/*++++++ Header Style 1 ++++++*/

header.pt-header-style-1 {
    position: absolute;
    display: inline-block;
    width: 100%;
    z-index: 99;
}

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

header.pt-header-style-1 .pt-bottom-header {
    padding: 0 45px;
    background-color: var(--white-color);
}

header.pt-header-style-1 .pt-bottom-header.pt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background: var(--white-color);
    -webkit-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
}

#pt-header.pt-header-style-1 .pt-bottom-header.pt-header-sticky .pt-container-wrapper {
    padding-left: 0;
    padding-right: 0;
}

header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item {
    font-family: var(--title-fonts);
    font-weight: 400;
}

header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item {
    margin-right: 29px;
}

header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item:last-child {
    margin-right: 0;
}

header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    color: var(--dark-color);
}

header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--primary-color);
    width: 0;
    height: 2px;
    transform: translateY(10px);
    transition: var(--transition);
}

header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link,
header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-toggle-on>a.mega-menu-link,
header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover {
    color: var(--primary-color);
}

header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link:before,
header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link:before,
header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link:before,
header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-toggle-on>a.mega-menu-link:before,
header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover:before {
    width: 100%;
    left: 0;
}

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

header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-dropdown>a.mega-menu-link>span.mega-indicator {
    display: none;
}

/*++++++ Header Icon ++++++*/

header.pt-header-style-1 .pt-container-wrapper .pt-header-right .pt-header-icon {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0;
    margin: 0;
}

header.pt-header-style-1 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon a svg {
    width: 48px;
	height: 48px;
	padding: 16px;
	border-radius: 24px;
	background-color: #2683EF1f;
}

header.pt-header-style-1 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon a svg path {
    fill: var(--dark-color);
}


header.pt-header-style-1 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon .pt-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    line-height: 48px;
    text-align: center;
    background-color: #2683EF1f;
	color: var(--primary-color);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    display: inline-block;
}

header.pt-header-style-1 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon .pt-header-contact a {
	display: flex;
    align-items: center;
}

header.pt-header-style-1 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon .pt-header-contact a span {
	font-size: 16px;
	line-height: 2;
	font-weight: 400;
	font-family: var(--title-fonts);
	color: var(--dark-color);
    margin-left: 10px;
}


@media(max-width:1400px) {

    header.pt-header-style-1 .pt-bottom-header {
        padding: 0;
    }
}

@media(max-width:1299px) {

    header.pt-header-style-1 .pt-bottom-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
        left: inherit;
        right: 100%;
    }

	header.pt-header-style-1 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon .pt-header-contact {
		display: none;
	}
}


@media(max-width:1199px) {

    header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
        left: inherit;
        right: 100%;
    }
}

@media(max-width:1099px) {

    header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
        left: inherit;
        right: 100%;
    }

    header.pt-header-style-1 .pt-bottom-header .pt-middle-menu {
        order: 99;
    }

    header.pt-header-style-1 .pt-bottom-header .pt-header-right {
        margin-left: auto;
    }

    header.pt-header-style-1 .pt-container-wrapper {
        padding: 15px 0;
        position: relative;
    }

    header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
    header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
    header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link,
    header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-toggle-on>a.mega-menu-link,
    header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover  {
        color: var(--white-color);
    }
  
    header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover {
        background-color: var(--primary-color);
    }    

    header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:before {
        display: none;
    }
    
    header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item {
        margin-right: 0;
    }

    #pt-header.pt-header-style-1 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon .pt-toggle-btn {
        display: none;
    }


    header.pt-header-style-1 #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-dropdown>a.mega-menu-link>span.mega-indicator {
        display: inline-block;
    }

}


@media(max-width: 782px) {

    .admin-bar header.pt-header-style-1 {
        top: 46px;
    }
}

@media(max-width: 767px) {

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


    #pt-header.pt-header-style-1 .pt-bottom-header .pt-container-wrapper {
        padding-left: 0;
        padding-right: 0;
    }


    header.pt-header-style-1 #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner,
    header.pt-header-style-1 #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::before,
    header.pt-header-style-1 #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::after {
        width: 35px;
        height: 3px;
    }

    header.pt-header-style-1 #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-box {
        width: 35px;
    }

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

@media(max-width: 575px) {

    header.pt-header-style-1 .pt-header-icon .pt-search-button {
        display: none;
    }

    header.pt-header-style-1 .pt-bottom-header .pt-container-wrapper {
        gap: 15px;
    }

}


/*++++++ Header Style 2 ++++++*/

header.pt-header-style-2 {
    position: absolute;
    display: inline-block;
    width: 100%;
    z-index: 99;
}

header.pt-header-style-2 .pt-bottom-header {
    padding: 0 45px;
    background-color: var(--white-color);
}

header.pt-header-style-2 .pt-bottom-header.pt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background: var(--white-color);
    -webkit-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    border-bottom: none;
}

header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item {
    font-family: var(--title-fonts);
    font-weight: 400;
}

header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item {
    margin-right: 15px;
    z-index: 1;
}

header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item:last-child {
    margin-right: 0;
}

header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    margin-right: 0;
    padding: 0 15px;
}

header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--primary-color);
    width: 0;
    height: 40px;
    z-index: -1;
    transform: translateY(-50%);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link:before,
header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link:before,
header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link:before,
header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-toggle-on>a.mega-menu-link:before,
header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover:before {
    width: 100%;
    left: 0;
}

header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-dropdown>a.mega-menu-link>span.mega-indicator {
    display: none;
}


/*++++++ Header Icon ++++++*/

header.pt-header-style-2 .pt-container-wrapper .pt-header-right .pt-header-icon {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0;
    margin: 0;
}

header.pt-header-style-2 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon a svg {
    width: 48px;
	height: 48px;
	padding: 16px;
	border-radius: 24px;
	background-color: #2683EF1f;
}

header.pt-header-style-2 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon a svg path {
    fill: var(--dark-color);
}


header.pt-header-style-2 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon .pt-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    line-height: 48px;
    text-align: center;
    background-color: #2683EF1f;
	color: var(--primary-color);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    display: inline-block;
}

header.pt-header-style-2 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon .pt-header-contact a span {
	font-size: 16px;
	line-height: 2;
	font-weight: 400;
	font-family: var(--title-fonts);
	color: var(--dark-color);
    margin-left: 10px;
}


@media(max-width:1599px) {

    header.pt-header-style-2 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon .pt-header-contact {
		display: none;
	}
}

@media(max-width:1400px) {

    header.pt-header-style-2 .pt-bottom-header {
        padding: 0;
    }
}

@media(max-width:1299px) {

    header.pt-header-style-2 .pt-bottom-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
        left: inherit;
        right: 100%;
    }

    header.pt-header-style-2 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon .pt-btn-container {
        display: none;
    }
}

@media(max-width:1199px) {

    header.pt-header-style-2 .pt-bottom-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
        left: inherit;
        right: 100%;
    }
}

@media(max-width: 1099px) {
	
    header.pt-header-style-2 .pt-container-wrapper {
        padding: 15px 0;
        position: relative;
    }
	
    header.pt-header-style-2 .pt-bottom-header .pt-header-right {
        margin-left: auto;
    }
	
    header.pt-header-style-2 .pt-bottom-header .pt-middle-menu {
        order: 99;
    }

    header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
    header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
    header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link,
    header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-toggle-on>a.mega-menu-link,
    header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover  {
        color: var(--white-color);
    }
  
    header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover {
        background-color: var(--primary-color);
    }

    header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-dropdown>a.mega-menu-link>span.mega-indicator {
        display: inline-block;
    }
    
    header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator::after {
        font-weight: 400;
        vertical-align: middle;
    }
    
    header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:before {
        display: none;
    }

    header.pt-header-style-2 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item {
        margin-right: 0;
    }

    header.pt-header-style-2 #mega-menu-wrap-primary {
        padding: 0px;
    }

    header.pt-header-style-2 #mega-menu-wrap-primary::before {
        display: none;
    }

    header.pt-header-style-2 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon .pt-toggle-btn {
        display: none;
    }

}




@media(max-width: 767px) {

    header.pt-header-style-2 #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner,
    header.pt-header-style-2 #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::before,
    header.pt-header-style-2 #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::after {
        width: 35px;
        height: 3px;
    }

    header.pt-header-style-2 #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-box {
        width: 35px;
    }

}

@media(max-width: 575px) {

    header.pt-header-style-2 .pt-bottom-header .pt-container-wrapper {
        gap: 15px;
    }
}

@media(max-width: 479px) {

    header.pt-header-style-2 .pt-header-icon .pt-search-button {
        display: none;
    }
}


/*++++++ Header Style3 ++++++*/

header.pt-header-style-3 {
    position: absolute;
    display: inline-block;
    width: 100%;
    z-index: 99;
}


header.pt-header-style-3 .pt-bottom-header {
    padding: 0 45px;
    background-color: var(--white-color);
}

header.pt-header-style-3 .pt-bottom-header .pt-container-wrapper {
    display: block;
}

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

header.pt-header-style-3 .pt-bottom-header .pt-header-top-wrapper .pt-top-info-content .pt-header-info {
    display: flex;
	gap: 30px;
}

header.pt-header-style-3 .pt-bottom-header .pt-header-top-wrapper .pt-top-info-content .pt-header-info .pt-header-info-box {
    display: flex;
	gap: 8px;
	align-items: center;
}

header.pt-header-style-3 .pt-bottom-header .pt-header-top-wrapper .pt-top-info-content .pt-header-info .pt-header-info-box .info-icon{
    width: 48px;
	height: 48px;
	font-size: 18px;
	line-height: 48px;
	text-align: center;
    border-radius: 100px;
    background-color: #2683EF1f;
	color: var(--primary-color);
}

header.pt-header-style-3 .pt-bottom-header .pt-header-top-wrapper .pt-top-info-content .pt-header-info .pt-header-info-box .info-icon-content h4{
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: var(--primary-color);
}

header.pt-header-style-3 .pt-bottom-header .pt-header-top-wrapper .pt-top-info-content .pt-header-info .pt-header-info-box .info-icon-content p{
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 0;
}

header.pt-header-style-3 .pt-bottom-header .pt-container-bottom-wrapper {
    position: relative;
	bottom: -64px;
}

header.pt-header-style-3 .pt-bottom-header .pt-container-bottom-wrapper {
    display: flex;
	align-items: center;
	justify-content: space-between;
    gap: 30px;
	background-color: var(--primary-color);
	padding: 0px 30px;
	-webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

header.pt-header-style-3 .pt-bottom-header.pt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background: var(--white-color);
    -webkit-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    border-bottom: none;
}

header.pt-header-style-3 .pt-bottom-header.pt-header-sticky .pt-container-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
}

header.pt-header-style-3 .pt-bottom-header.pt-header-sticky .pt-header-top-wrapper {
    margin-bottom: 0;
}

header.pt-header-style-3 .pt-bottom-header.pt-header-sticky .pt-header-top-wrapper .pt-top-info-content {
    display: none;
}

header.pt-header-style-3 .pt-bottom-header.pt-header-sticky  .pt-container-bottom-wrapper {
    background-color: transparent;
    padding: 0;
    bottom: 0;
    justify-content: flex-end;
}

header.pt-header-style-3 .pt-bottom-header.pt-header-sticky #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    color: var(--dark-color);
}

header.pt-header-style-3 .pt-bottom-header.pt-header-sticky #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
header.pt-header-style-3 .pt-bottom-header.pt-header-sticky #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
header.pt-header-style-3 .pt-bottom-header.pt-header-sticky #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link,
header.pt-header-style-3 .pt-bottom-header.pt-header-sticky #mega-menu-wrap-primary #mega-menu-primary>li.mega-toggle-on>a.mega-menu-link,
header.pt-header-style-3 .pt-bottom-header.pt-header-sticky #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover {
    color: var(--white-color);
}

header.pt-header-style-3 .pt-bottom-header.pt-header-sticky #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:before {
    background: var(--primary-color);
}

header.pt-header-style-3 .pt-bottom-header.pt-header-sticky .pt-container-wrapper .pt-header-right .pt-header-icon a svg {
    background-color: #2683EF1f;
}

header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item {
    font-family: var(--title-fonts);
    font-weight: 400;
}

header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item {
    margin-right: 15px;
    z-index: 1;
}

header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item:last-child {
    margin-right: 0;
}

header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    margin-right: 0;
    padding: 0 15px;
	color: var(--white-color);
}

header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li::backdrop {
	content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    background: var(--white-color);
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
}

header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link,
header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-toggle-on>a.mega-menu-link,
header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover {
    width: 100%;
    left: 0;
	color: var(--primary-color);
}

header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--white-color);
    width: 0;
    height: 40px;
    z-index: -1;
    transform: translateY(-50%);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    transition: var(--transition);
}


header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link:before,
header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link:before,
header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link:before,
header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-toggle-on>a.mega-menu-link:before,
header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover:before {
    width: 100%;
    left: 0;
}

header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-dropdown>a.mega-menu-link>span.mega-indicator {
    display: none;
}


/*++++++ Header Icon ++++++*/	

header.pt-header-style-3 .pt-container-wrapper .pt-header-right .pt-header-icon {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0;
    margin: 0;
}

header.pt-header-style-3 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon a svg {
    width: 48px;
	height: 48px;
	padding: 16px;
	border-radius: 24px;
	background-color: #ffffff;
}

header.pt-header-style-3 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon a svg path {
    fill: var(--dark-color);
}


header.pt-header-style-3 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon .pt-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    line-height: 48px;
    text-align: center;
    background-color: var(--white-color);
	color: var(--primary-color);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    display: inline-block;
}

header.pt-header-style-3 .pt-bottom-header.pt-header-sticky .pt-container-wrapper .pt-header-right .pt-header-icon .pt-icon {
    background-color: #2683EF1f;
}

header.pt-header-style-3 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon .pt-header-contact a span {
	font-size: 16px;
	line-height: 2;
	font-weight: 400;
	font-family: var(--title-fonts);
	color: var(--dark-color);
}


@media(max-width:1400px) {

    header.pt-header-style-3 .pt-bottom-header {
        padding: 0;
    }
}

@media(max-width:1299px) {

    header.pt-header-style-3 .pt-bottom-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
        left: inherit;
        right: 100%;
    }
}

@media(max-width:1199px) {

    header.pt-header-style-3 .pt-bottom-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
        left: inherit;
        right: 100%;
    }

    header.pt-header-style-3 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon .pt-btn-container {
        display: none;
    }

}


@media(max-width: 1099px) {
	header.pt-header-style-3 .pt-bottom-header .pt-middle-menu {
        order: 99;
    }

    header.pt-header-style-3 .pt-bottom-header .pt-header-right {
        margin-left: auto;
    }

    header.pt-header-style-3 .pt-container-wrapper {
        padding: 15px 0;
        position: relative;
    }

	header.pt-header-style-3 .pt-bottom-header .pt-header-top-wrapper .pt-top-info-content  {
		display: none;
	}

	header.pt-header-style-3 .pt-bottom-header .pt-header-top-wrapper {
		margin-bottom: 0;
		padding: 0;
	}

	header.pt-header-style-3 .pt-bottom-header .pt-container-wrapper {
		display: flex;
		align-items: center;
	}

	header.pt-header-style-3 .pt-bottom-header .pt-container-bottom-wrapper {
		background-color: transparent;
		padding: 0;
        bottom: 0;
	}

	header.pt-header-style-3 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon a svg {

		background-color: #2683EF1f;
	}

	header.pt-header-style-3 .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-icon .pt-icon {
        background-color: #2683EF1f;
    }
    
    header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
        color: var(--dark-color);
    }

    header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
    header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,  
    header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link,
    header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-toggle-on>a.mega-menu-link,
    header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover {
        color: var(--white-color);
        background-color: var(--primary-color);
    }

    header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-dropdown>a.mega-menu-link>span.mega-indicator {
        display: inline-block;
    }
	
}


@media(max-width: 767px) {

    header.pt-header-style-3 #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner,
    header.pt-header-style-3 #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::before,
    header.pt-header-style-3 #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::after {
        width: 35px;
        height: 3px;
    }

    header.pt-header-style-3 #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-box {
        width: 35px;
    }

}

@media(max-width: 575px) {

    header.pt-header-style-3 .pt-header-icon .pt-search-button {
        display: none;
    }

    header.pt-header-style-3 .pt-bottom-header .pt-container-bottom-wrapper {
        gap: 15px;
    }
}


/*++++++ Header Style Landing ++++++*/

header.pt-header-landing {
    position: absolute;
    display: inline-block;
    width: 100%;
    z-index: 99;
}

.pt-header-landing .pt-bottom-header {
    background-color: transparent;
    border-bottom: 1px solid var(--light-white);
}

header.pt-header-landing .pt-bottom-header.pt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background-color: var(--dark-color);
    -webkit-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
}

header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item {
    margin-right: 30px;
}

header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item:last-child {
    margin-right: 0;
}

header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item>a.mega-menu-link {
    color: var(--white-color);
    margin-right: 0;
    padding: 0 15px;
}

header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link,
header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item>a.mega-menu-link:hover {
    color: var(--white-color);
}


header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item>a.mega-menu-link:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--primary-color);
    width: 0;
    height: 40px;
    z-index: -1;
    transform: translateY(-50%);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link:before,
header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link:before,
header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link:before,
header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-toggle-on>a.mega-menu-link:before,
header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item>a.mega-menu-link:hover:before {
    width: 100%;
    left: 0;
}

header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
    display: none;
}

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

/*++++++ Mega Menu Toggle ++++++*/

#pt-header #mega-menu-wrap-landing  .mega-menu-toggle {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
    border-radius: 90px;
    background-color: var(--primary-color);
    justify-content: center;
}

header .pt-bottom-header #mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-blocks-right {
    justify-content: center;
}

header .pt-bottom-header #mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box,
header .pt-bottom-header #mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
header .pt-bottom-header #mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
header .pt-bottom-header #mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    width: 35px;
}

header .pt-bottom-header #mega-menu-wrap-landing .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-inner,
header .pt-bottom-header #mega-menu-wrap-landing .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-inner::before,
header .pt-bottom-header #mega-menu-wrap-landing .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    transform-origin: center;
    transition: var(--transition);
}

header .pt-bottom-header #mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
header .pt-bottom-header #mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
header .pt-bottom-header #mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    transform-origin: right;
    transition: var(--transition);
}

#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner {
    transform: scaleX(0.7);
}

#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before {
    transform: scaleX(1.5);
}

#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    transform: scaleX(0.9);
}

#mega-menu-wrap-landing .mega-menu-toggle:hover .mega-toggle-block-0 .mega-toggle-animated-inner {
    transform: scaleX(1);
}

#mega-menu-wrap-landing .mega-menu-toggle:hover .mega-toggle-block-0 .mega-toggle-animated-inner::before {
    transform: scaleX(0.7);
}

#mega-menu-wrap-landing .mega-menu-toggle:hover .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    transform: scaleX(1);
}

#pt-header .pt-bottom-header #mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-blocks-left,
#pt-header .pt-bottom-header #mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-blocks-center {
    display: none;
}


@media(max-width: 379px) {
    #pt-header #mega-menu-wrap-landing  .mega-menu-toggle {
        width: 50px;
        height: 50px;
    }
}


@media(max-width:1299px) {

    header.pt-header-landing .pt-bottom-header #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
        left: inherit;
        right: 100%;
    }

    header.pt-header-landing #mega-menu-wrap-landing .mega-menu-toggle {
        border-radius: 10px;
    }
}

@media(max-width: 1099px) {

    header.pt-header-landing .pt-bottom-header .pt-middle-menu {
        order: 99;
    }

    header.pt-header-landing .pt-bottom-header .pt-header-right {
        margin-left: auto;
    }

    header.pt-header-landing .pt-container-wrapper {
        padding: 15px 0;
        position: relative;
    }

    header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
    header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
    header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link,
    header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item>a.mega-menu-link:hover {
        color: var(--white-color);
    }

    header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item {
        margin-right: 0;
    }

    header.pt-header-landing #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item>a.mega-menu-link:before {
        display: none;
    }

}


@media(max-width: 782px) {

    .admin-bar header.pt-header-landing {
        top: 46px;
    }
}

@media(max-width: 767px) {

    header.pt-header-landing #mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
    header.pt-header-landing #mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
    header.pt-header-landing #mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
        width: 35px;
        height: 3px;
    }

    header.pt-header-landing #mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
        width: 35px;
    }

    header.pt-header-landing #mega-menu-wrap-landing .mega-menu-toggle {
        border-radius: 10px;
        padding: 10px 0px;
        height: inherit;
    }
}

@media(max-width: 575px) {
    header.pt-header-landing .pt-bottom-header .pt-header-right .pt-header-icon .pt-btn-container{
        display: none;
    }

}

/*+++++ Offcanvas search +++++*/

.admin-bar .pt-search-button .offcanvas {
    top: 32px;
}

.pt-search-button .offcanvas {
    padding: 45px;
    height: auto;
    bottom: inherit;
    transition: all 0.5s ease;
}

.pt-search-button .offcanvas .btn-close {
    opacity: 1;
    background: none;
    color: var(--white-color);
    font-size: 0;
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
    line-height: normal;
    padding: 0;
    box-shadow: none;
    width: 54px;
    height: 54px;
    line-height: 54px;
}

.pt-search-button .offcanvas .btn-close:before {
    content: "\e646";
    font-family: "themify";
    font-size: 18px;
}

.pt-search-button .offcanvas .btn-close:after {
    content: "";
    background: var(--primary-color);
    width: 54px;
    height: 54px;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease;
    z-index: -1;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-search-button .offcanvas .btn-close:hover:after {
    background: var(--dark-color);
}

.pt-search-button .offcanvas .btn-close:hover {
    color: var(--white-color);
}

.pt-search-button .offcanvas .search-form {
    margin: 0 auto;
    width: 60%;
}

.pt-search-button .offcanvas .search-form .search-field {
    border: none;
    color: var(--secondary-color);
    background: var(--grey-color);
    padding-left: 30px;
}

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

.pt-search-button .offcanvas .search-form .search-field:focus {
    color: var(--dark-color);
}

.pt-search-button .offcanvas .search-form .search-submit {
    background: transparent;
    color: var(--secondary-color) !important;
}

.pt-search-button .offcanvas .search-form .search-submit::before {
    content: "\e610";
    font-family: 'themify';
    font-weight: 400;
    font-size: 20px;
}

.pt-search-button .offcanvas .search-form .search-submit:hover {
    color: var(--dark-color) !important;
}

@media(max-width: 782px) {

    .admin-bar .pt-search-button .offcanvas {
        top: 46px;
    }
}


/*+++++++++ Header Top Bar +++++++++*/

header#pt-header .pt-top-header {
    background: var(--dark-color);
    padding: 0;
}

header#pt-header .pt-top-header .top-header-row {
    display: flex;
    justify-content: space-between;
}

header#pt-header .pt-top-header .top-header-row.social-left {
    flex-direction: row-reverse;
}

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

/*++++ Header Contact ++++*/

header#pt-header .pt-top-header .pt-header-contact ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

header#pt-header .pt-top-header .pt-header-contact ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
    float: left;
    padding: 10px 0;
    font-size: 14px;
}

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 .pt-icon {
    font-size: 16px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: var(--light-white);
    text-align: center;
    color: var(--white-color);
    display: inline-block;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

header#pt-header .pt-top-header .pt-header-contact ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
    float: left;
    padding: 10px 0;
    font-size: 14px;
}

header#pt-header .pt-top-header .pt-header-contact ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
    font-size: 14px;
}

header#pt-header .pt-top-header .pt-header-contact ul li a:hover {
    color: inherit;
}

header#pt-header .pt-top-header .pt-header-contact ul li svg {
    width: 18px;
    height: 18px;
}



/*++++ Header Social ++++*/

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;
    display: flex;
}

header#pt-header .pt-top-header .pt-header-social ul li {
    list-style: none;
    display: inline-block;
    float: left;
}

header#pt-header .pt-top-header .pt-header-social ul li a {
    width: 56px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    margin: 10px 0;
	border-left: 1px solid var(--light-white);
	color: var(--white-color);
}

header#pt-header .pt-top-header .pt-header-social ul li:last-child a {
	border-right: 1px solid var(--light-white);
}

header#pt-header .pt-top-header .pt-header-social ul li a svg {
    width: 16px;
    height: 16px;
}

header#pt-header .pt-top-header .pt-header-social ul li a svg path {
    fill: var(--white-color);
    stroke: var(--white-color);
    transition: var(--transition);
}

header#pt-header .pt-top-header .pt-header-social ul li a:hover svg path {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

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


@media(max-width:767px) {

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

/*+++++++++ Header Style-1 Top Bar  +++++++++*/

header#pt-header.pt-header-style-1 .pt-top-header {
    padding: 0 45px;
}

@media(max-width:1400px) {

    header#pt-header.pt-header-style-1 .pt-top-header {
        padding: 0;
    }
}


/*================================================
Breadcrum
================================================*/

.pt-breadcrumb-style-1 {
    padding: 130px 0px 0px 0px;
	/*padding: 50px 0 20px;*/
    position: relative;
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pt-breadcrumb-style-1 .pt-breadcrumb-title {
    padding-bottom: 20px;
    border-bottom: 1px solid #FFFFFF3f;
    margin-bottom: 20px;
}

.pt-breadcrumb-style-1 .pt-breadcrumb-title h1 {
    font-size: 56px;
    line-height: 64px;
    color: var(--white-color);
}

.pt-breadcrumb-style-1 .pt-breadcrumb-container .breadcrumb {
    text-align: left;
}

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

.pt-breadcrumb-style-1 .pt-breadcrumb-container .breadcrumb li.active {
    color: var(--white-color);
}

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

.pt-breadcrumb-style-1 .pt-breadcrumb-container .breadcrumb li a i {
    margin-right: 5px;
}

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

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

@media(max-width:1023px) {

    .pt-breadcrumb-style-1 .pt-breadcrumb-title h1 {
        font-size: 42px;
        line-height: 50px;
    }
}

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

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

@media(max-width:479px) {
    .pt-breadcrumb-style-1 .pt-breadcrumb-title h1 {
        font-size: 30px;
        line-height: 38px;
    }
}

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

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

.pt-breadcrumb-bg {
	padding: 30px 60px 0;
}

.pt-breadcrumb-bg img {
	-webkit-border-radius: var(--border-radius);
	-moz-border-radius: var(--border-radius);
	border-radius: var(--border-radius);
}

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

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

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

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

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

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

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

.pt-breadcrumb-container .breadcrumb li a {
	color: var(--white-color);
	display: inline-block;
	text-decoration: none;
}

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

.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: 'themify';
	padding-right: 15px;
	content: "\e649";
	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;
	}

}

@media(max-width:767px) {
	.pt-breadcrumb {
		padding: 90px 0;
	}

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

	.pt-breadcrumb .pt-breadcrumb-title {
		margin-bottom: 15px;
	}

	.pt-breadcrumb:after {
		display: none;
	}

	.pt-breadcrumb .pt-breadcrumb-title h1 {
		font-size: 40px;
		line-height: 48px;
	}

}

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

}

/*================================================
Footer Demo
================================================*/

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

footer#pt-footer .pt-footer-top {
    padding: 60px 0 0;
}

/*===== Footer Widget =====*/

footer#pt-footer .widget {
    display: inline-block;
    width: 100%;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 45px;
}

footer#pt-footer .widget .footer-title {
    margin-bottom: 15px;
    padding: 0;
    font-size: 26px;
    position: relative;
}

footer#pt-footer .widget .pt-subscribe .pt-subscribe-details p {
    font-size: 40px;
    line-height: 48px;
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-weight: 600;
    text-transform: uppercase;

}

footer#pt-footer .widget ul.menu li {
    margin-bottom: 10px;
}

footer#pt-footer .widget ul.menu li:last-child {
    margin-bottom: 0;
}

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


footer#pt-footer .tagcloud .tag-cloud-link {
    font-size: 14px !important;
    color: var(--white-color);
    background: var(--primary-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    float: left;
    padding: 4px 16px;
    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;
    line-height: 22px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

footer#pt-footer .tagcloud .tag-cloud-link:hover {
    border-color: var(--white-color);
    background: var(--white-color);
    color: var(--primary-color);
}

footer#pt-footer .search-form input,
footer#pt-footer .search-form select {
    background: var(--white-color);
    border-color: var(--white-color);
}

/*===== Timming =====*/
footer#pt-footer .widget.opening-hours {
    margin-bottom: 10px;
}

footer#pt-footer .widget.opening-hours:last-child {
    margin-bottom: 0;
}

/*+++++++++++ Subscribe ++++++++++++++++*/
.pt-subscribe-from .mc4wp-form-fields {
    display: flex;
}

.pt-subscribe-from .mc4wp-form-fields p {
    color: var(--white-color);
    margin-bottom: 0;
    width: 100%;
}

.pt-subscribe-from .mc4wp-form-fields p label {
    width: 100%;
}

.pt-subscribe-from .mc4wp-form-fields input {
    background: rgb(255, 255, 255, 0.2);
    border: transparent;
    color: var(--white-color);
}

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

.pt-subscribe-from .mc4wp-form-fields input[type="submit"] {
    background: var(--primary-color);
    color: var(--white-color);
}

.pt-subscribe-from .mc4wp-form-fields input[type="submit"]:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.mc4wp-alert.mc4wp-error p {
    margin-bottom: 0px;
}

/*===== footer dummy  =====*/
footer#pt-footer .wp-block-latest-comments li .wp-block-latest-comments__comment-author {
    color: var(--white-color);
}

footer#pt-footer label {
    color: var(--white-color);
}

footer#pt-footer .widget.widget_recent_comments #recentcomments--1 li.recentcomments span a {
    color: var(--primary-color);
}

footer#pt-footer .wp-caption p.wp-caption-text {
    color: var(--dark-color);
}

footer#pt-footer .search-form .search-submit {
    background: transparent;
    border: none;
    position: absolute;
    text-align: center;
    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;
    color: var(--secondary-color);
}

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

@media(max-width:1199px) {
    .pt-subscribe-from .mc4wp-form-fields {
        margin-right: 0;
    }
}

@media(max-width:991px) {
    footer#pt-footer .pt-footer-top .pt-footer-top-list .pt-footer-logo-discription p {
        float: left;
        margin-top: 45px;
    }
}

@media(max-width:479px) {
    .pt-subscribe-from .mc4wp-form-fields {
        display: block;
    }
}


/*===== Footer Copywrite =====*/

footer#pt-footer .pt-copyright-footer {
    padding: 15px 0;
    background: var(--dark-color);
    text-align: center;
    color: var(--white-color);
}



/*================================================
Footer Style 1 
================================================*/

/*===== Footer Background =====*/

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

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

/*===== Footer column  =====*/
.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget {
    display: grid;
    grid-template-columns: 3fr 2fr 3fr 3fr;
    gap: 45px;
}	

@media (max-width:1099px) {
	.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget {
		grid-template-columns: 3fr 3fr;
	}	
}

@media (max-width:767px) {
	.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget {
		grid-template-columns: 3fr;
	}	
}


/*===== Footer widget =====*/

footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 0;
}

/*===== Footer widget Title =====*/
.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .footer-title {
    margin-bottom: 15px;
    padding: 0;
    font-size: 26px;
    position: relative;
    line-height: 34px;
    color: var(--white-color);
}

/*===== Footer widget ul & li =====*/
.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul.menu {
    margin: 0;
    padding: 0;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul.menu li {
    margin-bottom: 10px;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul.menu li:last-child {
    margin-bottom: 0;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul.menu li a {
    color: var(--white-color);
    padding: 5px 0 5px 20px;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul.menu li a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 2px;
    display: inline-block;
    background: var(--white-color);
    margin: auto 0;
}

/*===== Footer Logo =====*/
.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-footer-logo {
    height: 60px;
    margin-bottom: 20px;
    width: auto;
}


.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-footer-logo~p {
    margin-bottom: 0;
    color: var(--white-color);
}

/*===== Footer Social =====*/

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-footer-social {
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-footer-social ul li {
    list-style: none;
    display: inline-block;
    margin-bottom: 0;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-footer-social ul li+li {
    margin-left: 10px;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-footer-social ul li a {
    background: var(--white-color);
    color: var(--dark-color);
    width: 50px;
    height: 50px;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    padding: 0;
}

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

/*===== Useful Link =====*/

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul#menu-useful-links li {
    margin-bottom: 15px;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul#menu-useful-links li:last-child {
    margin-bottom: 0;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul#menu-useful-links li a {
    padding: 0 0 0 20px;
    display: inline-block;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul#menu-useful-links li a:hover {
    padding: 0 0 0 25px;
}

/*===== Footer Address =====*/

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul.pt-contact li {
    list-style: none;
    display: flex;
	align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul.pt-contact li:last-child {
    margin-bottom: 0;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul.pt-contact li span {
    position: relative;
    border: none;
    display: block;
    width: 100%;
    color: var(--white-color);
    grid-column: 2;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul.pt-contact li a {
    grid-column: 2;
    padding: 0;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul.pt-contact li {
    color: var(--white-color);
    display: grid;
    grid-template-columns: 20px auto;
    align-items: center;
    gap: 0 15px;
    padding: 0;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul.pt-contact li svg {
    width: 22px;
    height: 20px;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget ul.pt-contact li svg path {
    fill: var(--white-color);
}


/*===== Footer Subscribe =====*/


.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-subscribe p {
    display: none;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-subscribe-from .mc4wp-form-fields {
    display: inline-block;
    width: 100%;
    position: relative;
    color: var(--white-color);
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-subscribe-from .mc4wp-form-fields input,
input.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    margin-bottom: 15px;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-subscribe-from input.submit {
    background: transparent;
    border: transparent;
    font-size: 0;
    padding: 0;
    width: 54px;
    height: 54px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-subscribe-from .mc4wp-form-fields svg {
    position: absolute;
    right: 15px;
    top: 12px;
}

.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-subscribe-from .mc4wp-form-fields .pt-radio-button {
    margin-bottom: 0;
}


.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-subscribe-from .mc4wp-response {
    display: none;
}


.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-subscribe-from input[type="radio"],
.pt-footer-style-1 .pt-footer-top .pt-footer-top-widget .widget .pt-subscribe-from input[type="checkbox"] {
    width: auto;
    height: auto;
    float: none;
    margin-right: 5px;
}


/*===== Footer Copyright =====*/

footer#pt-footer .pt-footer-style-1 .pt-copyright-footer {
    background: var(--dark-color);
    padding: 0;
}

footer#pt-footer .pt-footer-style-1 .pt-copyright-footer .pt-copyright {
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 15px 0;
    border-top: 2px solid var(--light-white);
}


/*================================================
Service Single
================================================*/

.widget .menu-service-menu-container {
	background: var(--grey-color);
	border: none;
	box-shadow: none;
}

.widget .menu-service-menu-container .menu {
	margin: 0;
	padding: 0;
}

.widget .menu-service-menu-container .menu li {
	margin: 0 0 10px;
}

.widget .menu-service-menu-container .menu li:last-child {
	margin: 0;
}

.widget .menu-service-menu-container .menu li a {
	padding: 20px;
	border: none;
	background: var(--white-color);
	display: inline-block;
	width: 100%;
	position: relative;
	font-family: var(--title-fonts);
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	color: var(--dark-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.widget .menu-service-menu-container .menu li a:before {
	content: '\f054';
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	font-size: 12px;
	right: 20px;
	left: auto;
	top: 24px;
	position: absolute;
	color: inherit;
	line-height: normal;
}

.widget .menu-service-menu-container .menu li a:hover,
.widget .menu-service-menu-container .menu li.current_page_item a {
	background: var(--primary-color);
	color: var(--white-color);
}



/*================================================
Section Title
================================================*/

.pt-section-title .pt-section-sub-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: var(--title-fonts);
    overflow: hidden;
    margin-bottom: 15px;
    display: block;
}

.pt-bg-dark .pt-section-title .pt-section-sub-title {
    color: var(--white-color);
}

.pt-section-title .pt-section-sub-title::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--light-black);
    display: block;
    margin-top: 5px;
}

.pt-bg-dark .pt-section-title .pt-section-sub-title::after {
    background-color: var(--light-white);
}


.pt-section-title .pt-main-section-title {
    font-size: 48px;
    line-height: 56px;
    z-index: 9;
    color: var(--dark-color);
    padding: 0;
    margin: 0;
    display: block;
    margin-bottom: 15px;
}


.pt-bg-dark .pt-section-title .pt-main-section-title {
    color: var(--white-color);
}


.pt-section-title .pt-main-section-title .char {
    transition: transform 0.5s cubic-bezier(0.3, 0, 0.3, 1), opacity 0.5s linear;
    transform: translateX(-5px);
    transition-delay: calc(20ms * var(--char-index));
}

.pt-section-title .pt-main-section-title[data-scroll=out] .char {
    opacity: 0.1;
    transform: translateY(0.25em);
}

@media (max-width: 1023px) {
    .pt-section-title .pt-main-section-title {
        font-size: 44px;
        line-height: 52px;
    }
}

@media (max-width: 767px) {
    .pt-section-title .pt-main-section-title {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 480px) {
    .pt-section-title .pt-main-section-title {
        font-size: 36px;
        line-height: 44px;
    }
}


/*===== Navigation Shop =====*/

.pt-shop-btn .dropdown-toggle::after {
	display: none;
}

.pt-cart-button {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.pt-shop-btn .pt-cart>a {
	color: var(--dark-color);
	position: relative;
	line-height: 90px;
	padding: 0 0 0;
	font-size: 22px;
	transform: rotateY(180deg);
}

.pt-cart-button .basket-item-count {
	font-size: 10px;
	font-weight: 600;
	background: var(--primary-color);
	color: var(--white-color);
	position: absolute;
	bottom: 8px;
	right: 8px;
	height: 15px;
	width: 15px;
	line-height: 15px;
	text-align: center;
	border-radius: 90px;
}

.pt-shop-btn .pt-cart .basket-item-count .woocommerce-Price-amount {
	display: none;
}

.pt-shop-btn .pt-cart:hover .dropdown-menu-mini-cart {
	display: block;
}


.pt-shop-btn ul.product_list_widget {
	margin: 0;
	padding: 0;
}

.pt-shop-btn ul.product_list_widget li {
	margin: 0 0 15px;
	padding: 0;
	list-style: none;
	display: inline-block;
	width: 100%;
	position: relative;
}

.pt-shop-btn ul.product_list_widget a.remove {
	float: right;
	right: 0;
	top: 0;
	left: inherit;
	bottom: 0;
	margin: auto 0;
	font-size: 30px;
	text-align: center;
	position: absolute;
}

.dropdown-menu-mini-cart,
.dropdown-menu[data-bs-popper] {
	right: -3%;
	width: 330px;
	left: inherit;
	border: none;
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	padding: 20px;
	top: 90px;
	border-radius: 0;
	margin: 0;
}

.pt-shop-btn .woocommerce-mini-cart__total.total {
	margin-bottom: 5px;
}

.pt-shop-btn .woocommerce-mini-cart__total.total strong {
	font-weight: 600;
	text-transform: capitalize;
	font-family: var(--title-fonts);
}

.pt-shop-btn .woocommerce-mini-cart__total.total .woocommerce-Price-amount.amount {
	float: right;
}

.pt-shop-btn p {
	margin-bottom: 0;
}

.pt-shop-btn .pt-cart a.remove {
	line-height: 0.8;
	color: var(--dark-color) !important;
	font-weight: 400;
	height: 1em;
	width: 1em;
}

.pt-shop-btn .pt-cart a.remove:hover {
	color: var(--primary-color) !important;
	background: transparent;
}

.pt-shop-btn .pt-cart ul.cart_list li a,
.pt-shop-btn .pt-cart ul.product_list_widget li a {
	display: block;
	text-transform: capitalize;
	font-weight: 600;
	font-family: var(--title-fonts);
	color: var(--dark-color);
	padding-right: 30px;
	line-height: normal;
}

.pt-shop-btn .pt-cart ul.product_list_widget li a:hover {
	color: var(--primary-color);
}

.pt-shop-btn .pt-cart ul.product_list_widget li a.remove {
	font-weight: 400;
	padding: 0;
}



/*================================================
OWL Carousel
================================================*/

.owl-carousel .owl-nav.disabled {
    display: none;
}

.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    cursor: inherit;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    position: relative;
    font-size: 24px;
    width: 56px;
    height: 56px;
    line-height: 56px;
    background: var(--primary-color);
    padding: 0 !important;
    margin: 0 5px;
    border: none;
    border-radius: 100%;
    color: var(--white-color);
}

.owl-carousel .owl-nav button:hover {
    color: var(--white-color);
    background: var(--dark-color);
}

.pt-dark-bg .owl-carousel .owl-nav button:hover {
    color: var(--primary-color);
    background: var(--white-color);
}


.owl-carousel .owl-nav button.owl-prev {
    margin-left: -100px;
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: -100px;
}


/*++++++++++++++++ Dots +++++++++++*/
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-dots {
    margin-top: 30px;
    line-height: normal;
    position: relative;
    width: 100%;
    text-indent: inherit;
    text-align: center;
    cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot {
    box-shadow: none;
    outline: none;
    background: transparent;
    border: 1px solid var(--primary-color);
    display: inline-block;
    padding: 0;
    margin: 0px 5px;
    height: 15px;
    width: 15px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    cursor: pointer;
    border-radius: 100%;
}

.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

.owl-carousel .owl-dots .owl-dot:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 1;
}


/*================================================
Service Box
++++++++++++++++++++++++++++++++++++++++++++++++*/

/*===== Service Style 1 =====*/

.pt-service-box.pt-style-1 {
    padding: 30px 45px;
    display: grid;
    grid-template-columns: auto 2.5fr 240px 3fr auto;
    gap: 45px;
    align-items: center;
    transition: var(--transition);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    border-top: 1px solid var(--light-black);
}

.pt-service-box.pt-style-1:last-child {
    border-bottom: 1px solid var(--light-black);
}

.pt-service-box.pt-style-1.pt-active {
    background-color: var(--white-color);
}

.pt-bg-white .pt-service-box.pt-style-1.pt-active {
    background-color: var(--grey-color);
}

.pt-service-box.pt-style-1 .pt-service-box-icon {
    font-size: 64px;
    line-height: 1;
    color: var(--primary-color);
}

.pt-service-box.pt-style-1 .pt-service-box-title {
    font-size: 28px;
    line-height: 36px;
}

.pt-service-box.pt-style-1 .pt-service-box-media {
    position: relative;
}

.pt-service-box.pt-style-1 .pt-service-box-media img {
    max-width: 230px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-10deg);
    transition: var(--transition);
}

.pt-service-box.pt-style-1.pt-active .pt-service-box-media img {
    transform: translate(-50%, -50%) scale(1) rotate(10deg);
}

.pt-service-box.pt-style-1 .pt-service-box-description {
    margin-bottom: 0;
}

.pt-service-box.pt-style-1 .pt-btn-container .pt-button {
    padding: 0;
    background-color: transparent;
}

.pt-service-box.pt-style-1 .pt-btn-container .pt-button .pt-button-block {
    height: auto;
}

.pt-service-box.pt-style-1 .pt-btn-container .pt-button .pt-icon {
    font-size: 20px;
    line-height: 56px;
    width: 56px;
    line-height: 52px;
    background-color: transparent;
    border: 1px solid var(--dark-color);
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    color: var(--dark-color);
    transition: var(--transition);
}

.pt-service-box.pt-style-1.pt-active .pt-btn-container .pt-button .pt-icon {

    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
}

@media (max-width: 1199px) {

    .pt-service-box.pt-style-1 {
        gap: 15px 30px;
    }
}

@media (max-width: 1023px) {

    .pt-service-box.pt-style-1 {
        grid-template-columns: 2.5fr 220px 3fr auto;
        padding: 30px;
    }

    .pt-service-box.pt-style-1 .pt-service-box-title {
        grid-row: 2;
    }

    .pt-service-box.pt-style-1 .pt-service-box-media {
        grid-row: 1 / span 2;
        grid-column: 2;
    }

    .pt-service-box.pt-style-1 .pt-service-box-description {
        grid-row: 1 / span 2;
        grid-column: 3;
    }

    .pt-service-box.pt-style-1 .pt-btn-container {
        grid-row: 1 / span 2;
        grid-column: 4;
    }
}

@media(max-width:799px) {
    .pt-service-box.pt-style-1 {
        grid-template-columns: 2.5fr 200px 3fr auto;
    }

    .pt-service-box.pt-style-1 .pt-service-box-media img {
        max-width: 190px;
    }
}

@media(max-width:767px) {

    .pt-service-box.pt-style-1 {
        grid-template-columns: 1fr 1fr;
    }

    .pt-service-box.pt-style-1 .pt-service-box-description {
        grid-row: 3;
        grid-column: 1;
    }

    .pt-service-box.pt-style-1 .pt-btn-container {
        grid-row: 4;
        grid-column: 1;
    }

    .pt-service-box.pt-style-1 .pt-service-box-media {
        grid-row: 1 / span 4;
        grid-column: 2;
    }
}

@media(max-width:767px) {

    .pt-service-box.pt-style-1 {
        grid-template-columns: 1fr;
    }

    .pt-service-box.pt-style-1 .pt-service-box-media {
        display: none;
    }

    .pt-service-box.pt-style-1 .pt-service-box-title {
        font-size: 24px;
        line-height: 32px;
    }

}


/*===== Service Style 2 =====*/

.pt-service-box.pt-style-2 {
    padding: 45px;
    background-color: var(--white-color);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-bg-gray .pt-service-box.pt-style-2 {
    background-color: var(--grey-color);
}

.pt-service-box.pt-style-2.pt-active {
    background-color: var(--primary-color);
}

.pt-service-box.pt-style-2 .pt-service-box-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.pt-service-box.pt-style-2.pt-active .pt-service-box-title {
    color: var(--white-color);
}

.pt-service-box.pt-style-2 .pt-service-box-description {
    margin-bottom: 30px;
}

.pt-service-box.pt-style-2.pt-active .pt-service-box-description {
    color: var(--white-color);
}

.pt-service-box.pt-style-2 .pt-service-box-icon {
    font-size: 64px;
    line-height: 1;
    color: var(--primary-color);
    position: relative;
    transition: var(--transition);
}

.pt-service-box.pt-style-2 .pt-service-box-icon::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 30px;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background-color: #2683EF1F;
}

.pt-service-box.pt-style-2.pt-active .pt-service-box-icon {
    opacity: 0;
}

.pt-service-box.pt-style-2 .pt-btn-container {
    position: absolute;
    left: 45px;
    bottom: -80px;
    transition: var(--transition); 
}

.pt-service-box.pt-style-2.pt-active .pt-btn-container {
    bottom: 45px;
}

@media(max-width:767px) {
    .pt-service-box.pt-style-2 {
        padding: 30px;
    }
}


/*===== Service Style - 3 =====*/

.pt-service-box-3-list {
    display: flex;
    flex-wrap: wrap;
    gap: 75px 90px;
    justify-content: center;
}

.pt-service-box.pt-style-3 {
    display: inline-block;
    position: relative;
}

.pt-service-box.pt-style-3 .pt-service-box-title {
    font-size: 44px;
    line-height: 52px;
    border-bottom: 3px solid var(--dark-color);
    transition: var(--transition);
}

.pt-service-box.pt-style-3.pt-active .pt-service-box-title {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.pt-service-box.pt-style-3 .pt-service-box-media {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    max-width: 80%;
    min-width: 260px;
    transition: var(--transition);
    border-radius: var(--border-radius);
    overflow: hidden;
    z-index: 9;
}

.pt-service-box.pt-style-3.pt-active .pt-service-box-media {
    transform: translate(-50%, -30%) scale(1);
}

@media(max-width:1023px) { 
    .pt-service-box-5-list {
        gap: 60px 75px;
    }

    .pt-service-box.pt-style-3 .pt-service-box-title {
        font-size: 40px;
        line-height: 48px;
    }

    .pt-service-box.pt-style-3 .pt-service-box-media {
        min-width: 230px;
    }
}

@media(max-width:767px) { 

    .pt-service-box.pt-style-3 .pt-service-box-title {
        font-size: 34px;
        line-height: 42px;
    }

    .pt-service-box.pt-style-3 .pt-service-box-media {
        min-width: 200px;
    }
}

@media(max-width:379px) { 

    .pt-service-box.pt-style-3 .pt-service-box-title {
        font-size: 26px;
        line-height: 34px;
    }
}


/*===== Service Style - 4 =====*/

.pt-service-box-slider-4 {
    display: grid;
    grid-template-columns: calc(100% - 500px) minmax(500px, 100%);
}

.pt-service-box-slider-4 .pt-thumbs-column {
    padding-left: 30px;
}

.pt-service-box-slider-4 .slick-slider-thumb .slick-track {
    width: 100% !important;
    transform: inherit !important;
    padding: 45px;
    border-radius: var(--border-radius);
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.pt-service-box-slider-4 .slick-slide {
    margin: 0;
}

.pt-service-box-slider-4 .slick-slider-thumb .slick-track .slick-slide {
    width: 100% !important;
    flex: 1;
    transition: var(--transition);
    margin-bottom: 15px;
}

.pt-service-box-slider-4 .slick-slider-thumb .slick-track .slick-slide:last-child {
    margin-bottom: 0;
}

.pt-service-box-slider-4 .slick-slider-thumb .slick-track .slick-slide.slick-current {
    flex: 3;
    transition: var(--transition);
}

.pt-service-box-slider-4 .slick-slider-main .slick-arrow {
    display: none !important;
}

.pt-service-box-slider-4 .slick-slide:last-child .pt-thumbs-column-contain {
    margin-bottom: 0;
}

.pt-service-box-slider-4 .pt-thumbs-column-contain .pt-service-box-title {
    font-size: 22px;
    line-height: 30px;
    color: var(--dark-color);
    transition: var(--transition);
}

.pt-service-box-slider-4 .slick-slide.slick-current .pt-thumbs-column-contain .pt-service-box-title {
    color: var(--white-color);
}

.pt-service-box-slider-4 .pt-thumbs-column-contain .pt-service-icon{
    font-size: 14px;
    line-height: 62px;
    width: 56px;
    height: 56px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
    transition: var(--transition);
}

.pt-service-box-slider-4 .slick-slide.slick-current .pt-thumbs-column-contain .pt-service-icon {
    color: var(--primary-color);
    background-color: var(--white-color);
}

.pt-service-box.pt-style-4  .pt-service-box-title {
    font-size: 28px;
    line-height: 36px;
    position: relative;
    display: inline-block;
}

.pt-service-box.pt-style-4  .pt-service-box-title::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    transition: var(--transition);
}   

.pt-service-box-slider-4 .slick-slider-thumb .slick-track .slick-slide.slick-current .pt-service-box.pt-style-4 .pt-service-box-title {
    color: var(--primary-color);
}

.pt-service-box-slider-4 .slick-slider-thumb .slick-track .slick-slide.slick-current .pt-service-box.pt-style-4  .pt-service-box-title::before {
    background-color: var(--primary-color);
    width: 0;
}

.pt-service-box.pt-style-4 .pt-service-box-content  {
    overflow: hidden;
    height: 0;
    transition: height 0.5s ease;
} 


.pt-service-box-slider-4 .pt-service-box-image img {
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    object-fit: cover;
}

@media(max-width:991px) { 

    .pt-service-box-slider-4 {
        grid-template-columns: 100% 100%;
    }
    
    .pt-service-box-slider-4 .pt-content-column {
        margin-left: 0;
    }
    
    .pt-service-box-slider-4 .pt-content-column {
       grid-row: 2;
       margin-top: 45px;
    }
}

@media(max-width:575px) {
    .pt-service-box.pt-style-4 {
        flex-direction: column;
    }

    .pt-service-box-slider-4 .pt-content-column {
        margin-top: 30px;
     }
}

@media(max-width:379px) {
    .pt-service-box-slider-4 .pt-thumbs-column-contain .pt-service-box-title {
        font-size: 20px;
        line-height: 28px;
    }
}


/*===== Service Style - 5 =====*/

.pt-service-box.pt-style-5 {
    padding: 45px 30px;
    background-color: var(--white-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-service-box.pt-style-5 .pt-service-box-top  {
    display: grid;
    gap: 15px;
    grid-template-columns: auto 84px;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-black);
    margin-bottom: 30px;
}

.pt-service-box.pt-style-5 .pt-service-box-top .pt-service-box-title {
    font-size: 28px;
    line-height: 36px;
    max-width: 280px;
}

.pt-service-box.pt-style-5 .pt-service-box-top .pt-service-box-icon {
    font-size: 48px;
    height: 84px;
    width: 84px;
    line-height: 84px;
    text-align: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.pt-service-box.pt-style-5 .pt-service-box-description {
    margin-bottom: 30px;
}

.pt-service-box-slider.pt-style-5 .owl-carousel .owl-dots .owl-dot {
    border-color: var(--white-color);
}

.pt-service-box-slider.pt-style-5 .owl-carousel .owl-dots .owl-dot:hover,
.pt-service-box-slider.pt-style-5 .owl-carousel .owl-dots .owl-dot.active {
    background: var(--white-color);
    border-color: var(--white-color);
}

@media(max-width: 767px) { 
    
    .pt-service-box.pt-style-5 {
        padding: 30px;
    }

    .pt-service-box.pt-style-5 .pt-service-box-top {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .pt-service-box.pt-style-5 .pt-service-box-description {
        margin-bottom: 20px;
    }
}

@media(max-width:379px) { 
    
    .pt-service-box.pt-style-5 .pt-service-box-top {
        grid-template-columns: 1fr;
    }
        
    .pt-service-box.pt-style-5 .pt-service-box-top .pt-service-box-icon {
        grid-row: 1;
    }
}


/*===== Service Style - 6 =====*/

.pt-service-box-slider-6 {
    display: grid;
    grid-template-columns: 100%;
}

.elementor-widget.elementor-widget-Service_Box {
    position: initial;
}

.pt-service-box-slider-6 .pt-content-column {
    position: absolute;
    width: calc(100vw / 2);
    height: 100%;
    top: 0;
    right: 100%;
}

.pt-service-box-slider-6 .slick-slider-thumb .slick-track::before,
.pt-service-box-slider-6 .slick-slider-thumb .slick-track::after {
    display: none;
}

.pt-service-box-slider-6 .slick-slider-thumb .slick-track {
    width: 100% !important;
    transform: inherit !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
}

.pt-service-box-slider-6 .slick-slide {
    margin: 0;
}

.pt-service-box-slider-6 .slick-slider-thumb .slick-track .slick-slide {
    width: 100% !important;
}

.pt-service-box-slider-6 .slick-slider-main .slick-arrow {
    display: none !important;
}

.pt-service-box-slider-6 .pt-service-box-image img {
    max-height: 100%;
}

.pt-service-box.pt-style-6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    position: relative;
}

.pt-service-box.pt-style-6::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    transition: var(--transition);
}

.pt-service-box-slider-6 .pt-thumbs-column .slick-slide.slick-current .pt-service-box.pt-style-6::before {
    width: 100%;
    background-color: var(--primary-color);
}

.pt-service-box.pt-style-6 .pt-service-box-title {
    font-size: 22px;
    line-height: 30px;
    transition: var(--transition);
}

.pt-service-box-slider-6 .pt-thumbs-column .slick-slide.slick-current .pt-service-box.pt-style-6 .pt-service-box-title {
    color: var(--primary-color);
}

.pt-service-box.pt-style-6 .pt-service-icon {
    font-size: 16px;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.pt-service-box-slider-6 .pt-thumbs-column .slick-slide.slick-current .pt-service-box.pt-style-6 .pt-service-icon {
    opacity: 1;
}

@media (max-width:1023px) {
    .pt-service-box-slider-6 .pt-content-column {
        position: relative;
        right: inherit;
        top: inherit;
        width: 100%;
        grid-row: 2;
        margin-top: 30px;
    }

    .pt-service-box-slider-6 .pt-service-box-image img {
        -webkit-border-radius: var(--border-radius);
        -moz-border-radius: var(--border-radius);
        border-radius: var(--border-radius);
    }
}

@media (max-width: 575px) {
    .pt-service-box-slider-6 .slick-slider-thumb .slick-track {
        grid-template-columns: 1fr;
    }
}

/*===== Service Style - 7 =====*/


.pt-service-box-slider-7 {
    display: grid;
    grid-template-columns: minmax(300px, 100%) calc(100% - 300px);
}

.pt-service-box-slider-7 .pt-content-column {
    margin-left: 45px;
    min-height: 100%;
    max-height: 100%;
}

.pt-service-box-slider-7 .pt-thumbs-column {
    min-height: 100%;
    max-height: 100%;
}

.pt-service-box-slider-7 .slick-slider-thumb .slick-track {
    width: 100% !important;
    transform: inherit !important;
}

.pt-service-box-slider-7 .slick-slider-thumb .slick-track::after,
.pt-service-box-slider-7 .slick-slider-thumb .slick-track::before {
    display: none;
}

.pt-service-box-slider-7 .slick-slide {
    margin: 0;
}

.pt-service-box-slider-7 .slick-slider-thumb .slick-track .slick-slide {
    width: 100% !important;
}

.pt-service-box-slider-7 .slick-slider-main .slick-arrow {
    display: none !important;
}

.pt-service-7-title-box  {
    padding: 30px 0;
    border-right: 2px solid var(--light-black);
    transition: var(--transition);
    width: 300px;
}

.pt-service-box-slider-7 .pt-thumbs-column .slick-slide.slick-current .pt-service-7-title-box {
    border-right: 2px solid var(--primary-color);
}

.pt-service-7-title-box .pt-service-box-main-title  {
    font-size: 30px;
    line-height: 38px;
    transition: var(--transition);
}

.pt-service-box-slider-7 .pt-thumbs-column .slick-slide.slick-current .pt-service-7-title-box .pt-service-box-main-title {
    color: var(--primary-color);
}

.pt-service-box.pt-style-7 {
    display: grid;
    align-items: center;
    grid-template-columns: 456px 1fr;
    gap: 30px;
    background-color: var(--white-color);
    padding: 45px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-service-box.pt-style-7 .pt-service-box-img img {
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    object-fit: cover;
}

.pt-service-box.pt-style-7 .pt-service-box-contain .pt-service-box-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 15px;
}

.pt-service-box.pt-style-7 .pt-service-box-contain .pt-service-box-description {
    margin-bottom: 15px;
}

.pt-service-box.pt-style-7 .pt-service-box-contain .pt-service-box-list{
    margin: 0;
    padding: 0;
}

.pt-service-box.pt-style-7 .pt-service-box-contain .pt-service-box-list li {
    color: var(--dark-color);
}

.pt-service-box.pt-style-7 .pt-service-box-contain .pt-service-box-list li i {
    margin-right: 10px;
}

.pt-service-box.pt-style-7 .pt-service-box-contain .pt-service-contact {
    display: grid;
    align-items: center;
    gap: 20px;
    grid-template-columns: 90px 1fr;
    margin-top: 30px;
}

.pt-service-box.pt-style-7 .pt-service-box-contain .pt-service-contact .pt-service-contact-number span  {
    display: block;
    font-size: 16px;
    line-height: 24px;
}

.pt-service-box.pt-style-7 .pt-service-box-contain .pt-service-contact .pt-service-contact-number a {
    display: block;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 18px;
}


@media (max-width:1199px) {
    
    .pt-service-box-slider-7  {
        grid-template-columns: 100%;
    }

    .pt-service-box-slider-7 .slick-slider-thumb .slick-track {
        display: flex;
        width: auto !important;
        gap: 30px;
        margin-bottom: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .pt-service-box-slider-7 .slick-slider-thumb .slick-track .slick-slide  {
        width: auto !important;
    }

    .pt-service-7-title-box  {
        border-right: none;
        border-bottom: 2px solid var(--light-black);
        transition: var(--transition);
        width: auto;
        padding: 0 0 15px 0;
    }

    .pt-service-box-slider-7 .pt-thumbs-column .slick-slide.slick-current .pt-service-7-title-box {
        border-right: none;
        border-bottom: 2px solid var(--primary-color);
    }

    .pt-service-box-slider-7 .pt-content-column {
        margin-left: 0;
    }
}


@media (max-width: 991px) {
    .pt-service-box.pt-style-7 {
        grid-template-columns: 340px 1fr;
        align-items: start;
    }
}

@media (max-width: 767px) {
    .pt-service-box.pt-style-7 {
        grid-template-columns: 250px 1fr;
        align-items: start;
        padding: 30px;
    }

    .pt-service-box-slider-7 .slick-slider-thumb .slick-track {
        gap: 15px 30px;
    }

    .pt-service-7-title-box .pt-service-box-main-title  {
        font-size: 26px;
        line-height: 34px;
    }

    .pt-service-box.pt-style-7 .pt-service-box-contain .pt-service-box-title {
        font-size: 26px;
        line-height: 34px;
    }
    
}

@media (max-width: 575px) {
    .pt-service-box.pt-style-7 {
        display: block;
    }

    .pt-service-box.pt-style-7 .pt-service-box-img {
        display: none;
    }
}


@media (max-width: 379px) {

    .pt-service-7-title-box .pt-service-box-main-title  {
        font-size: 22px;
        line-height: 30px;
    }

    .pt-service-box.pt-style-7 .pt-service-box-contain .pt-service-box-title {
        font-size: 22px;
        line-height: 30px;
    }

    .pt-service-box.pt-style-7 .pt-service-box-contain .pt-service-contact .pt-service-contact-number {
        grid-row: 2;
        grid-column: span 2;
    }
    
}


/*================================================
Moving Gallery
================================================*/


.pt-moving-scroll .pt-moving-scroll-list {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    clear: both;
}

.pt-moving-scroll li {
    width: 450px;
    box-sizing: border-box;
    list-style: none;
}

.pt-moving-scroll li img {
    height: auto;
    margin: 0px;
}


@media (max-width: 1023px) {
    
    .pt-moving-scroll li {
        width: 400px;
    }
    
}

@media (max-width: 767px) {
    
    .pt-moving-scroll li {
        width: 350px;
    }
    
}

@media (max-width: 379px) {
    
    .pt-moving-scroll li {
        width: 300px;
    }
    
}

@media (max-width: 320px) {
    
    .pt-moving-scroll li {
        width: 280px;
    }
    
}


/*+++++++++ Portfolio   +++++++++*/

@media (max-width: 767px) {
    .pt-moving-scroll .pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info {
        -moz-transform: translate(0px, 0px);
        -webkit-transform: translate(0px, 0px);
        -o-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        left: 30px;
    } 
    
}

@media (max-width: 479px) {

    .pt-moving-scroll .pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info {
        left: 15px;
    } 

    .pt-moving-scroll .pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info .pt-portfolio-style-1-title a {
        font-size: 24px;
        line-height: 32px;
    }
    
}






/*================================================
Card
================================================*/

/*+++++++++ Card Style-1  +++++++++*/

.pt-cards {
    width: 100%;
    display: grid;
    grid-template-rows: repeat(var(--cards-count), var(--card-height));
    gap: 30px 0;
}

.pt-cards .pt-card.pt-style-1 {
    position: sticky;
    top: 130px;
}

.pt-cards .pt-card.pt-style-1 .pt-card-inner {
    will-change: transform;
    background: var(--grey-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px hsla(265.3, 20%, 10%, 10%);
    transform-origin: center top;
    align-items: center;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-image {
    height: 100%;
    width: 100%;
}

.pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-image .pt-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5 / 4;
}

.pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-content {
    padding: 60px;
}

.pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-content .pt-card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-content .pt-card-top .pt-card-icon {
    font-size: 80px;
    line-height: 1;
    color: var(--primary-color);
}

.pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-content .pt-card-top .pt-card-number {
    font-size: 80px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-color);
    stroke: var(--primary-color);
}

.pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-content .pt-card-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px;
}

@media (max-width: 767px) {

    .pt-cards .pt-card.pt-style-1 {
        top: inherit;
        position: relative;
        padding-top: 0 !important;
    }

    .pt-cards .pt-card.pt-style-1 .pt-card-inner {
        grid-template-columns: 1fr;
        scale: 1 !important;
        filter: brightness(1) !important;
        box-shadow: none;
        border: 1px solid var(--light-black);
    }

    .pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-image .pt-image {
        aspect-ratio: 16 / 9;
    }

    .pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-content .pt-card-title {
        font-size: 32px;
        line-height: 40px;
    }

    .pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-content {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    
    .pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-content .pt-card-top .pt-card-icon {
        font-size: 64px;
    }

    .pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-content .pt-card-top .pt-card-number {
        font-size: 64px;
    }
}

@media (max-width: 379px) {
    
    .pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-content .pt-card-top .pt-card-icon {
        font-size: 56px;
    }

    .pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-content .pt-card-top .pt-card-number {
        font-size: 56px;
    }

    .pt-cards .pt-card.pt-style-1 .pt-card-inner .pt-card-content .pt-card-title {
        font-size: 28px;
        line-height: 36px;
    }
}


/*================================================
Wow Image effects
================================================*/

.pt-image-effect img {
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

/*+++++++++ Image Effect Right  +++++++++*/

.img-ptkey-right {
	animation: img-ptkey-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	opacity: 0;
}

@keyframes img-ptkey-right {
	0% {
		transform: translateX(5%);
		clip-path: inset(0 0 0 100%);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

.pt-img-right .pt-image-effect {
    position: absolute;
    width: calc((100vw / 2 ) - 60px);
    right: calc((1300px - 100vw)/2 - 15px);
    top: -220px;
}

.pt-img-right .pt-image-effect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: var(--border-radius);
}

@media (max-width: 1400px) {

    .pt-img-right .pt-image-effect {
        right: -15px;
    }
}

@media (max-width: 1024px) {
    .pt-img-right .pt-image-effect {
        position: inherit;
        width: 100%;
    }
}

/*+++++++++ Image Effect Left +++++++++*/

.img-ptkey-left {
	animation: img-ptkey-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	opacity: 0;
}

@keyframes img-ptkey-left {
	0% {
		transform: translateX(-5%);
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

.pt-img-left .pt-image-effect {
    position: absolute;
    width: calc((100vw / 2 ) - 60px);
    left: calc((1300px - 100vw)/2 - 15px);
    top: -220px;
}

.pt-img-left .pt-image-effect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: var(--border-radius);
}

@media (max-width: 1300px) {
    .pt-img-left .pt-image-effect {

        left: -15px;
    }
}

@media (max-width: 1024px) {
    .pt-img-left .pt-image-effect {
        position: inherit;
        width: 100%;
    }
}

/*+++++++++ Image Effect Top +++++++++*/ 

.img-ptkey-top {
	animation: img-ptkey-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
	opacity: 0;
}

@keyframes img-ptkey-top {
	0% {
		transform: translateY(-5%);
		clip-path: inset(0 0 100% 0);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}


/*================================================
Team
================================================*/

/*+++++++++ Team Style - 1  +++++++++*/

.pt-team-1-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 45px 30px;
}


.pt-team.pt-style-1 {
    display: grid;
    grid-template-columns: 170px auto;
    align-items: center;
    gap: 30px;
    position: relative;
}

.pt-team.pt-style-1 .pt-team-img img {
    width: 170px;
    height: 170px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.pt-team.pt-style-1 .pt-team-info .pt-member-name {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 5px;
}

.pt-team.pt-style-1 .pt-team-info .pt-team-designation {
    font-family: var(--title-fonts);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.pt-team.pt-style-1 .pt-team-social {
    font-size: 20px;
	z-index: 1;
	display: flex;
    gap: 10px;
	height: 40px;
	width: 100%;
	transition: all .3s ease-in-out;
	opacity: 1;
	visibility: visible;
    margin-top: 10px;
}

.pt-team.pt-style-1.pt-active .pt-team-social {
    opacity: 1;
	visibility: visible;
}

.pt-team.pt-style-1 .pt-team-social a {
    font-size: 16px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: block;
	border-radius: 100%;
	color: var(--primary-color);
	background: #0038781f;
	margin-bottom: 8px;
}

.pt-team.pt-style-1.pt-active .pt-team-social a {
	color: var(--white-color);
	background: var(--dark-color);
}

.pt-team.pt-style-1 .pt-team-social a {
    opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.25s, transform 0.3s cubic-bezier(0.26, -0.14, 0, 1.01);
}


.pt-team.pt-style-1.pt-active .pt-team-social a {
    opacity: 1;
	transform: translateX(0) translateZ(0);
}

.pt-team.pt-style-1.pt-active .pt-team-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.pt-team.pt-style-1.pt-active .pt-team-social a:nth-child(3) {
    transition-delay: 0.3s;
}

.pt-team.pt-style-1.pt-active .pt-team-social a:nth-child(4) {
    transition-delay: 0.4s;
}

.pt-team.pt-style-1.pt-active .pt-team-social a:nth-child(5) {
    transition-delay: 0.5s;
}

.pt-team.pt-style-1.pt-active .pt-team-social a:nth-child(6) {
    transition-delay: 0.6s;
}

.pt-team.pt-style-1.pt-active .pt-team-social a:nth-child(7) {
    transition-delay: 0.7s;
}

.pt-team.pt-style-1.pt-active .pt-team-social a:nth-child(8) {
    transition-delay: 0.8s;
}


@media (max-width: 1199px) {
    
    .pt-team-1-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    
    .pt-team-1-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 479px) {
    
    .pt-team-1-list {
        gap: 30px;
    }
    
    .pt-team.pt-style-1 {
        grid-template-columns: 150px auto;
        gap: 15px;
    }
    
    .pt-team.pt-style-1 .pt-team-img img {
        width: 150px;
        height: 150px;
    }
    
    .pt-team.pt-style-1 .pt-team-info .pt-member-name {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 379px) {
    
    
    .pt-team.pt-style-1 {
        grid-template-columns: 120px auto;
    }
    
    .pt-team.pt-style-1 .pt-team-img img {
        width: 120px;
        height: 120px;
    }
    
    .pt-team.pt-style-1 .pt-team-info .pt-member-name {
        font-size: 20px;
        line-height: 38px;
    }
}


/*+++++++++ Team Style - 2  +++++++++*/

.pt-team.pt-style-2 {
    padding: 45px;
    background-color: var(--grey-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.pt-team.pt-style-2:hover {
    background-color: var(--primary-color);
}

.pt-team.pt-style-2 .pt-team-info {
    margin-bottom: 30px;
}

.pt-team.pt-style-2 .pt-team-info .pt-member-name {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 5px;
    transition: var(--transition);
}

.pt-team.pt-style-2:hover .pt-team-info .pt-member-name {
    color: var(--white-color);
}

.pt-team.pt-style-2 .pt-team-info .pt-team-designation {
    font-family: var(--title-fonts);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: var(--transition);
}

.pt-team.pt-style-2:hover .pt-team-info .pt-team-designation {
    color: var(--white-color);
}

.pt-team.pt-style-2 .pt-team-img {
    padding-bottom: 45px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--light-black);
    transition: var(--transition);
}

.pt-team.pt-style-2:hover .pt-team-img {
    border-bottom: 1px solid var(--light-white);
}

.pt-team.pt-style-2 .pt-team-img img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.pt-team.pt-style-2 .pt-team-bottom  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.pt-team.pt-style-2 .pt-team-bottom .pt-btn-container .pt-button {
    color: var(--dark-color);
    transition-duration: 0s;
}

.pt-team.pt-style-2:hover .pt-team-bottom .pt-btn-container .pt-button {
    color: var(--white-color);
}

.pt-team.pt-style-2 .pt-team-bottom .pt-btn-container .pt-button.pt-button-link .pt-button-block::before,
.pt-team.pt-style-2 .pt-team-bottom .pt-btn-container .pt-button.pt-button-link .pt-button-block::after {
    background-color: var(--dark-color);
}

.pt-team.pt-style-2:hover .pt-team-bottom .pt-btn-container .pt-button.pt-button-link .pt-button-block::before,
.pt-team.pt-style-2:hover .pt-team-bottom .pt-btn-container .pt-button.pt-button-link .pt-button-block::after {
    background-color: var(--white-color);
}

.pt-team.pt-style-2 .pt-team-bottom .pt-team-social {
    font-size: 20px;
	z-index: 1;
	display: flex;
    gap: 10px;
	height: 40px;
	width: auto;
	transition: all .3s ease-in-out;
	opacity: 1;
	visibility: visible;
}

.pt-team.pt-style-2.pt-active .pt-team-bottom .pt-team-social {
    opacity: 1;
	visibility: visible;
}

.pt-team.pt-style-2 .pt-team-social a {
    font-size: 18px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: block;
	border-radius: 100%;
	color: var(--white-color);
	background: var(--primary-color);
	margin-bottom: 8px;
    transition: var(--transition);
}

.pt-team.pt-style-2:hover .pt-team-social a {
	background: var(--dark-color);
}

@media (max-width: 479px) {

    .pt-team.pt-style-2 {
        padding: 30PX;
    }

    .pt-team.pt-style-2 .pt-team-info {
        margin-bottom: 15px;
    }

    .pt-team.pt-style-2 .pt-team-info .pt-member-name {
        font-size: 26px;
        line-height: 34px;
    }

    .pt-team.pt-style-2 .pt-team-img {
        padding-bottom: 30px;
        margin-bottom: 20px;
    }
    
}

@media (max-width: 379px) {

    .pt-team.pt-style-2 .pt-team-bottom  {
        flex-direction: column;
        align-items: flex-start;
    }
}


/*================================================
Testimonial
================================================*/

/*+++++++++ Testimonial Style - 1  +++++++++*/


.pt-testimonial-box.pt-style-1 {
    position: relative;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-black);
    margin-bottom: 45px;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-star {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-star i {
    color: #FFB82F;
    font-size: 20px;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-quote {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 60px;
    line-height: 1;
    color: #2683EF1f;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-description {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 0;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-author-img img {
    width: 90px;
    height: 90px;
    border-radius: 100%;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-author-details .pt-testimonial-author-name {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 5px;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-author-details .pt-testimonial-author-designation {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.pt-testimonial-box-slider.pt-style-1 .owl-nav {
    display: block;
    text-align: end;
    bottom: 15px;
    top: inherit;
    transform: translateY(0);
}

.pt-testimonial-box-slider.pt-style-1 .owl-nav .owl-prev {
    margin-left: 0;
    margin-right: 10px;
}

.pt-testimonial-box-slider.pt-style-1 .owl-nav .owl-next {
    margin-right: 0;
}


@media(max-width:767px) {

    .pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-quote  {
        font-size: 48px;
    }

    .pt-testimonial-box.pt-style-1 .pt-testimonial-author-details .pt-testimonial-author-name  {
        font-size: 24px;
        line-height: 32px;
    }

    .pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-author-img img {
        width: 80px;
        height: 80px;
    }

    .pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-description {
        font-size: 18px;
        line-height: 36px;
    }
    
    .pt-testimonial-box.pt-style-1 .pt-testimonial-content {
        margin-bottom: 30px;
    }
}

@media(max-width:575px) {

    .pt-testimonial-box-slider.pt-style-1 .owl-nav {
        display: none;
    }
}

/*+++++++++ Testimonial Style-2  +++++++++*/
 
.pt-testimonial-box.pt-style-2 {
    position: relative;
    background-color: var(--white-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    padding: 60px 45px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-content {
    margin-bottom: 30px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-content .pt-testimonial-star {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-content .pt-testimonial-star i {
    color: #FFB82F;
    font-size: 20px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-content .pt-quote {
    position: absolute;
    top: 60px;
    right: 45px;
    font-size: 45px;
    line-height: 1;
    color: var(--primary-color);
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-content .pt-testimonial-description {
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 0;
    font-style: italic;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-media {
    display: grid;
    grid-template-columns: 90px auto;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-author-img img {
    width: 90px;
    height: 90px;
    border-radius: 100%;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-meta .pt-testmonial-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 5px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-meta .pt-testmonial-designation {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.pt-testimonial-box-slider.pt-style-2 .owl-nav {
    display: block;
    text-align: end;
    right: 45px;
    bottom: 80px;
    top: inherit;
    transform: translateY(0);
}

.pt-testimonial-box-slider.pt-style-2 .owl-nav .owl-prev {
    margin-left: 0;
    margin-right: 10px;
    background-color: transparent;
    color: var(--primary-color) !important;
    width: auto;
    height: auto;
    line-height: 1;
}

.pt-testimonial-box-slider.pt-style-2 .owl-nav .owl-next {
    margin-right: 0;
    background-color: transparent;
    color: var(--primary-color) !important;
    width: auto;
    height: auto;
    line-height: 1;
}

@media(max-width:767px) {

    .pt-testimonial-box.pt-style-2 {
        padding: 45px 30px;
    }

    .pt-testimonial-box.pt-style-2 .pt-testimonial-content .pt-quote {
        top: 45px;
        right: 30px;
    }

    .pt-testimonial-box.pt-style-2 .pt-testimonial-content .pt-quote  {
        font-size: 48px;
    }

    .pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-meta .pt-testmonial-title {
        font-size: 24px;
        line-height: 32px;
    }

    .pt-testimonial-box.pt-style-2 .pt-testimonial-media {
        grid-template-columns: 80px auto;
    }

    .pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-author-img img {
        width: 80px;
        height: 80px;
    }
}

@media(max-width:575px) {
    
    .pt-testimonial-box.pt-style-2 {
        padding: 30px;
    }

    .pt-testimonial-box.pt-style-2 .pt-testimonial-content .pt-testimonial-description {
        font-size: 18px;
        line-height: 32px;
    }

    .pt-testimonial-box.pt-style-2 .pt-testimonial-content .pt-quote {
        font-size: 40px;
        top: 30px;
        right: 30px;
    }

    .pt-testimonial-box-slider.pt-style-2 .owl-nav {
        display: none;
    }

    .pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-meta .pt-testmonial-title {
        font-size: 22px;
        line-height: 30px;
    }

    .pt-testimonial-box.pt-style-2 .pt-testimonial-media {
        grid-template-columns: 75px auto;
    }

    .pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-author-img img {
        width: 75px;
        height: 75px;
    }

}


/*================================================
Process Step
================================================*/

/*+++++++++ Process Step Style - 1  +++++++++*/

.pt-process-step-1-list {
    height: 650px;
    overflow-y: auto;
    padding-right: 30px;
}

.pt-process-step.pt-style-1 {
    padding: 45px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    background-color: var(--grey-color);
    margin-bottom: 30px;
}

.pt-process-step.pt-style-1:last-child {
    margin-bottom: 0;
}


.pt-process-step.pt-style-1 .pt-process-media-hover {
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.pt-process-step.pt-style-1.pt-active .pt-process-media-hover {
    left: 0;
}

.pt-process-step.pt-style-1 .pt-process-media-hover::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    opacity: 0.9;
}

.pt-process-step.pt-style-1 .pt-process-media-hover img {
    height: 100%;  
    width: auto;
    object-fit: cover;
}

.pt-process-step.pt-style-1 .pt-process-content {
    position: relative;
    z-index: 2;
}

.pt-process-step.pt-style-1 .pt-process-content .pt-process-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px 15px;
}

.pt-process-step.pt-style-1 .pt-process-content .pt-process-top .pt-process-title {
    font-size: 34px;
    line-height: 42px;
    color: var(--dark-color);
    transition: var(--transition);
}

.pt-process-step.pt-style-1.pt-active .pt-process-content .pt-process-top .pt-process-title {
    color: var(--white-color);
}

.pt-process-step.pt-style-1 .pt-process-content .pt-process-top .pt-process-number {
    font-size: 44px;
    line-height: 52px;
    color: var(--dark-color);
    transition: var(--transition);
}

.pt-process-step.pt-style-1.pt-active .pt-process-content .pt-process-top .pt-process-number {
    color: var(--white-color);
}

.pt-process-step.pt-style-1 .pt-process-content .pt-process-description{
    margin-bottom: 0;
    transition: var(--transition);
}

.pt-process-step.pt-style-1.pt-active .pt-process-content .pt-process-description{
    color: var(--white-color);
}

.pt-process-step-1-list::-webkit-scrollbar {
    width: 8px;
    border-radius: 8px;
}

.pt-process-step-1-list::-webkit-scrollbar-track {
    background-color: var(--grey-color);
    border-radius: 8px
}

.pt-process-step-1-list::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 8px
}


@media(max-width:767px) {

    .pt-process-step-1-list {
        padding-right: 15px;
        height: 600px;
    }

    .pt-process-step.pt-style-1 {
        padding: 30px;
    }

    .pt-process-step.pt-style-1 .pt-process-content .pt-process-top .pt-process-title {
        font-size: 30px;
        line-height: 38px;
    }

    .pt-process-step.pt-style-1 .pt-process-content .pt-process-top .pt-process-number {
        font-size: 40px;
        line-height: 48px;
    }
}

@media(max-width:767px) {

    .pt-process-step.pt-style-1 .pt-process-content .pt-process-top .pt-process-title {
        font-size: 26px;
        line-height: 34px;
    }

    .pt-process-step.pt-style-1 .pt-process-content .pt-process-top .pt-process-number {
        font-size: 34px;
        line-height: 42px;
    }
}

@media(max-width:379px) {

    .pt-process-step.pt-style-1 .pt-process-content .pt-process-top  {
        flex-direction: column-reverse;
        align-items: flex-start
    }
}


/*=====Process Step  Style - 2  =====*/

.pt-process-step-slider-2 {
    display: grid;
    grid-template-columns: calc(100% - 520px) 520px;
}

.pt-process-step-slider-2 .pt-content-column {
   margin-right: 45px;
}

.pt-process-step-slider-2 .slick-slider-thumb .slick-track {
    width: 100% !important;
    transform: inherit !important;
}

.pt-process-step-slider-2 .slick-slide {
    margin: 0;
}

.pt-process-step-slider-2 .slick-slider-thumb .slick-track .slick-slide {
    width: 100% !important;
}

.pt-process-step-slider-2 .slick-slider-main .slick-arrow {
    display: none !important;
}


.pt-process-step-slider-2 .slick-slider-thumb .slick-track {
    background-color: var(--grey-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-process-step.style-2 {
    padding: 30px;
    background-color: var(--grey-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.pt-process-step-slider-2 .slick-slider-thumb .slick-slide.slick-current .pt-process-step.style-2  {
    background-color: var(--primary-color);
}

.pt-process-step.style-2 .pt-process-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
}

.pt-process-step.style-2 .pt-process-top .pt-process-number {
    font-size: 24px;
    line-height: 32px;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    display: inline-block;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
    background-color: var(--white-color);
    color: var(--primary-color);
    transition: var(--transition);
}


.pt-process-step.style-2 .pt-process-top .pt-process-title {
    font-size: 28px;
    line-height: 36px;
    transition: var(--transition);
}

.pt-process-step-slider-2 .slick-slider-thumb .slick-slide.slick-current .pt-process-step.style-2 .pt-process-top .pt-process-title {
    color: var(--white-color);
    opacity: 0;
}

.pt-process-step.style-2 .pt-process-bottom {
    transition: var(--transition);
    overflow: hidden;
    height: 0;
    margin-top: 15px;
} 

.pt-process-step.style-2 .pt-process-bottom  .pt-process-title-active {
    font-size: 28px;
    line-height: 36px;
    color: var(--white-color);
    transition: var(--transition);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-white);
    margin-bottom: 15px;
}

.pt-process-step.style-2 .pt-process-bottom .pt-process-description {
    transition: var(--transition);
    color: var(--white-color);
    margin-bottom: 0;
}

.pt-process-step-slider-2 .slick-slider-main .item .pt-process-img img {
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    object-fit: cover;
}

@media(max-width:1199px) {
    .pt-process-step.style-2 .pt-process-step-title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media(max-width:1024px) {

    .pt-process-step-slider-2 {
        grid-template-columns: 100% 100%;
    }

    .pt-process-step-slider-2 .pt-content-column {
        grid-row: 2;
        margin-left: 0;
        margin-top: 45px;
    }

    .pt-process-step-slider-2 .pt-content-column {
        margin-right: 0;
    }
}

@media(max-width:575px) {

    .pt-process-step-slider-2 .pt-content-column {
        margin-top: 30px;
    }

}

@media(max-width:420px) {

    .pt-process-step-slider-2 .slick-slide .pt-process-step.style-2 {
        padding: 15px;
    }

    .pt-process-step.style-2 .pt-process-step-title {
        font-size: 22px;
        line-height: 30px;
    }

    .pt-process-step.style-2 .pt-process-list {
        margin-left: 0;
    }
    
}

@media(max-width: 379px) {
    .pt-process-step.style-2 .pt-process-top .pt-process-title {
        font-size: 24px;
        line-height: 32px;
        transition: var(--transition);
    }
}


/*================================================
Popup Animation 
================================================*/

.pt-popup-animation.pt-style-1 .pt-popup-inner {
    width: 150px;
    height: 150px;
    position: relative;
    background: var(--primary-color);
    padding: 0;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
    overflow: hidden;
}

.pt-popup-animation.pt-style-1 a {
    color: var(--white-color);
    display: block;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.pt-popup-animation.pt-style-1 .pt-popup-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--title-fonts);
    color: var(--white-color);
    text-align: center;
    z-index: 9;
}

.pt-popup-animation.pt-style-1 .pt-popup-content i {
    font-size: 28px;
    line-height: 1;
}

.pt-popup-animation.pt-style-1 .pt-popup-content span {
    display: block;
    font-size: 18px;
    line-height: 26px;
}

.pt-popup-animation.pt-style-1 img {
    -webkit-animation: text-animatio 10s linear infinite;
    -moz-animation: text-animatio 10s linear infinite;
    animation: text-animatio 10s linear infinite;
    position: absolute;
    left: 12px;
    top: 12px;
    transition: var(--transition);
    width: 156px;
    
}

.pt-popup-animation.pt-style-1:hover img {
    scale: 1.12;
}


@-moz-keyframes text-animation {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(-360deg);
    }
}

@-webkit-keyframes text-animatio {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes text-animatio {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@media (max-width:767px) {

    .pt-popup-animation.pt-style-1 .pt-popup-inner {
        width: 160px;
        height: 160px;
    }

    .pt-popup-animation.pt-style-1 img {
        width: 136px;
        height: 136px;
    }
}


/*================================================
Client
================================================*/

/*+++++++++ Client Style-1  +++++++++*/

.pt-client-box.pt-style-1 {
	display: block;
	overflow: hidden;
	position: relative;
	margin: 0 30px;
}

.pt-client-box.pt-style-1 .pt-client-img {
	position: relative;
	display: block;
	width: 260px;
	margin: 0 auto;
	-webkit-transition: -webkit-transform .3s ease;
	-moz-transition: -moz-transform .3s ease;
	transition: transform .3s ease;
	opacity: 0.8;
}

.pt-client-box.pt-style-1 a:hover .pt-client-img {
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	transform: translateY(100%)
}

.pt-client-box.pt-style-1 a:hover .pt-client-hover-img {
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.pt-client-box.pt-style-1 .pt-client-hover-img {
	position: absolute;
	top: 0;
	left: 50%;
	width: 260px;
	opacity: 1;
	-webkit-transform: translate(-50%, -100%);
	-moz-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	-webkit-transition: -webkit-transform .3s ease;
	-moz-transition: -moz-transform .3s ease;
	transition: transform .3s ease
}

.pt-client-box.pt-client-style-1 .owl-dots {
	margin-top: 45px;
}


/*================================================
Accordion
++++++++++++++++++++++++++++++++++++++++++++++++*/

/*+++++++++ Accordion Style-1  +++++++++*/

.pt-accordion-block.style-1 .pt-accordion-box {
	background: var(--white-color);
	margin-bottom: 30px;
	position: relative;
}

.pt-accordion-block.style-1 .pt-accordion-box:last-child {
	margin-bottom: 0;
}

.pt-accordion-block.style-1 .pt-accordion-box .pt-ad-title {
	border-radius: var(--border-radius);
	background: var(--grey-color);
	border: 1px solid var(--grey-color);
	padding: 15px 60px 15px 30px;
	cursor: pointer;
	position: relative;
}

.pt-accordion-block.style-1 .pt-accordion-box .pt-ad-title .ad-title-text {
	font-size: 24px;
    line-height: 32px;
}

.pt-accordion-block.style-1 .pt-accordion-box .pt-ad-title i {
	position: absolute;
	top: 20px;
	right: 30px;
	opacity: 1;
	color: var(--dark-color);
	font-size: 18px;
}

.pt-accordion-block.style-1 .pt-accordion-box .pt-ad-title i.inactive {
	opacity: 0;
}

.pt-accordion-block.style-1 .pt-accordion-box.pt-active .pt-ad-title i {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	position: absolute;
	top: 20px;
	right: 30px;
	opacity: 0;
	color: var(--dark-color);
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.pt-accordion-block.style-1 .pt-accordion-box.pt-active .pt-ad-title i.inactive {
	opacity: 1;
	border-radius: var(--border-radius);
}

.pt-accordion-block.style-1 .pt-accordion-box.pt-active .pt-ad-title i {
	color: var(--white-color);
}

.pt-accordion-block.style-1 .pt-accordion-box .pt-accordion-details {
	padding: 15px 30px;
	border: 1px solid var(--grey-color);
	border-top: 0;
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
}

.pt-accordion-block.style-1 .pt-accordion-box .pt-accordion-details p {
	margin-bottom: 0;
}

.pt-accordion-block.style-1 .pt-accordion-box.pt-active .pt-ad-title {
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: var(--border-radius);
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.pt-accordion-block.style-1 .pt-accordion-box.pt-active .pt-ad-title .ad-title-text {
	color: var(--white-color);
}

/**border**/
.pt-accordion-border .pt-accordion-block.style-1 .pt-accordion-box .pt-ad-title {
	background: transparent;
	border: 1px solid #eee;
}

.pt-accordion-border .pt-accordion-block.style-1 .pt-accordion-box.pt-active .pt-ad-title .ad-title-text {
	color: var(--primary-color);
}

.pt-accordion-border .pt-accordion-block.style-1 .pt-accordion-box.pt-active .pt-ad-title i {
	color: var(--primary-color);
}


@media(max-width:767px) {

	.pt-accordion-block.style-1 .pt-accordion-box .pt-ad-title,
	.pt-accordion-block.style-1 .pt-accordion-box .pt-accordion-details {
		padding: 15px 40px 15px 15px ;
	}

    
    .pt-accordion-block.style-1 .pt-accordion-box .pt-ad-title .ad-title-text {
        font-size: 20px;
        line-height: 28px;
    }

	.pt-accordion-block.style-1 .pt-accordion-box .pt-ad-title i {
		right: 15px;
	}

	.pt-accordion-block.style-1 .pt-accordion-box.pt-active .pt-ad-title i {
		right: 15px;
	}
}

@media(max-width:479px) {
	.pt-accordion-block.style-1 .pt-accordion-box .pt-ad-title {
		padding: 15px 45px 15px 15px;
	}
}


/*================================================
Time Table
================================================*/

.mptt-shortcode-wrapper .mptt-navigation-tabs li:after {
    top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 75, 54, 0);
	border-top-color: var(--white-color);
	border-width: 15px;
	margin-left: -15px;
	opacity: 0;
	transition: none;
}

.mptt-shortcode-wrapper .mptt-navigation-tabs li.active:after {
    opacity: 1;
	border-top-color: var(--primary-color);
}

.mptt-shortcode-wrapper .mptt-shortcode-table.mptt-theme-mode tbody tr:nth-child(2n+2) td.event {
    background: #fff;
}

/*+++++++++ Navigation Tabs  +++++++++*/

.mptt-shortcode-wrapper .mptt-navigation-tabs {
    display: flex;
    gap: 15px 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.mptt-shortcode-wrapper .mptt-navigation-tabs li {
    position: relative;
	background: var(--white-color);
	-webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
	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;
    padding: 0;
}

.pt-bg-white .mptt-shortcode-wrapper .mptt-navigation-tabs li {
	background: var(--grey-color);
}

.mptt-shortcode-wrapper .mptt-navigation-tabs li a {
    display: inline-block;
	font-weight: 600;
	padding: 10px 30px;
	text-transform: uppercase;
	font-family: var(--title-fonts);
	color: #404040;
	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;
}

.mptt-shortcode-wrapper .mptt-navigation-tabs li.active,
.mptt-shortcode-wrapper .mptt-navigation-tabs li:hover {
    background: var(--primary-color);
	color: var(--white-color);
}

.mptt-shortcode-wrapper .mptt-navigation-tabs li.active a,
.mptt-shortcode-wrapper .mptt-navigation-tabs li:hover a {
    color: var(--white-color);
}

.mptt-shortcode-wrapper .mptt-shortcode-table {
    margin-bottom: 0;
    border: 1px solid var(--light-black);
}

.mptt-shortcode-wrapper .mptt-shortcode-table tr.mptt-shortcode-row th {
    text-align: center;
	font-family: var(--title-fonts);
	padding: 15px 0;
	border: 1px solid var(--light-black);
	border-bottom: 0;
	border-top: 0;
	text-transform: uppercase;
    color: var(--dark-color);
    background-color: #0038781f;
}

.mptt-shortcode-wrapper .mptt-shortcode-table tbody td,
.mptt-shortcode-wrapper .mptt-shortcode-table tbody td.mptt-shortcode-hours,
.mptt-shortcode-wrapper .mptt-shortcode-table.mptt-theme-mode tbody td.event {
    padding: 15px !important;
	text-align: center;
	border: 1px solid var(--light-black);
	background: var(--white-color);
}

.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container {
    outline: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	transition: all 0.5s ease;
}

.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-title {
    letter-spacing: 0;
	font-family: var(--title-fonts);
	font-weight: 600;
	text-decoration: none;
	margin: 0;
	font-size: 18px;
	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;
}

.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-title:hover,
.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container:hover .event-title {
    /* color: var(--white-color);*/
	text-decoration: none;
}

.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-description,
.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-subtitle {
    font-family: var(--title-fonts);
	font-weight: 600;
	font-size: 14px;
	line-height: 22px;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 5px 0 0;
}

.mptt-shortcode-wrapper .mptt-column-title {
    margin: 0 0 10px !important;
	text-align: center;
	width: 100%;
	font-size: 1.2em;
	text-transform: uppercase;
}

.mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list {
    margin: 0;
	padding: 0;
}

/*+++++++++ List +++++++++*/

.mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .mptt-list-event {
    padding: 15px;
	margin: 0;
	border: 0;
	border-bottom: 1px solid var(--light-black);
    background: var(--white-color);
}

.mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .mptt-list-event .event-description,
.mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .mptt-list-event .event-subtitle {
    float: right;
	margin: 0;
}

.mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .mptt-list-event .mptt-event-title {
    color: var(--dark-color);
}

.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container p {
    color: #7c8088;
}

.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container:hover p {
    color: var(--white-color);
}

.timeslots-title {
    margin: 30px 0 0;
}

.timeslot {
    border-bottom: 1px solid var(--grey-color);
	padding-bottom: 15px;
	margin: 15px 0 0;
}

.timeslot .timeslot-user img {
    margin-right: 15px;
}

.timeslot .timeslot-link {
    text-transform: uppercase;
	font-size: 16px;
	font-family: var(--title-fonts);
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 24px;
}

.timeslot time {
    font-style: italic;
	font-size: 14px;
}

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

/*+++++++++ Images +++++++++*/

.wp-block-image img {
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

@media(max-width:1023px) {
    
    .mptt-shortcode-wrapper .mptt-shortcode-table tr.mptt-shortcode-row th,
	.mptt-shortcode-wrapper .mptt-shortcode-table tbody td,
	.mptt-shortcode-wrapper .mptt-shortcode-table.mptt-theme-mode tbody td.event,
	.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-description,
	.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-title {
        font-size: 12px;
		letter-spacing: 0;
	}
    
	.mptt-shortcode-wrapper .mptt-shortcode-table tbody td {
        padding: 5px 5px !important;
	}
    
	.mptt-shortcode-wrapper .mptt-navigation-tabs li {
        font-size: 14px;
	}
    
	.mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .mptt-list-event .event-description {
        float: none;
	}
    
	.mptt-shortcode-wrapper .mptt-navigation-tabs li:after {
        border-width: 12px;
		margin-left: -10px;
	}
}


.mptt-navigation-tabss .mptt-shortcode-table {
    border-top: 1px solid rgb(255 255 255 / 0.2);
}

.mptt-navigation-tabss .mptt-navigation-tabs li a {
    color: var(--white-color);
}

.mptt-navigation-tabss .mptt-shortcode-wrapper .mptt-shortcode-table tbody td,
.mptt-navigation-tabss .mptt-shortcode-wrapper .mptt-shortcode-table tr th,
.mptt-navigation-tabss .mptt-shortcode-wrapper .mptt-shortcode-table tbody tr:nth-child(2n+2) {
    background: var(--dark-color);
	color: var(--white-color);
}

.mptt-navigation-tabss .mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container {
    background: var(--dark-color) !important;
	color: var(--white-color) !important;
}

.mptt-navigation-tabss .mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-subtitle {
    color: var(--white-color);
}

/*+++++++++ Scroll Bar  +++++++++*/

.mptt-shortcode-wrapper.mptt-table-fixed {
    overflow-x: auto !important;
    scrollbar-color: var(--primary-color) var(--white-color);
}


/*================================================
Award
================================================*/

.pt-award.pt-style-1 {
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    gap: 45px;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--light-black);
}

.pt-award.pt-style-1:last-child {
    border-bottom: 1px solid var(--light-black);
}

.pt-award.pt-style-1 .pt-award-img {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: relative;
}

.pt-award.pt-style-1 .pt-award-img img {
    width: 100px;
    display: block;
    transition: var(--transition);
}

.pt-award.pt-style-1 .pt-award-img .pt-img-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
}

.pt-award.pt-style-1.pt-active .pt-award-img .pt-img-normal,
.pt-award.pt-style-1 .pt-award-img .pt-img-hover {
    opacity: 0;
}

.pt-award.pt-style-1 .pt-award-img .pt-img-normal,
.pt-award.pt-style-1.pt-active .pt-award-img .pt-img-hover {
    opacity: 1;
}

.pt-award.pt-style-1 .pt-award-info .pt-award-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 10px;
}

.pt-award.pt-style-1 .pt-award-info .pt-award-description {
    margin-bottom: 0;
}

.pt-award.pt-style-1 .pt-award-date {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: var(--title-fonts);
    text-align: end;
}

@media (max-width: 575px) {
 
    .pt-award.pt-style-1 {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0;
    }

    .pt-award.pt-style-1 .pt-award-info .pt-award-title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 5px;
    }

    .pt-award.pt-style-1 .pt-award-date {
        text-align: start;
    }
}

/*================================================
Price Box
================================================*/


.pt-pricing-plan.pt-style-1 {
    padding: 60px 45px;
    position: relative;
    background-color: var(--grey-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-pricing-plan.pt-style-1.pt-active {
    background-color: var(--primary-color);
}

.pt-pricing-plan.pt-style-1 .pt-pricing-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 30px;
}

.pt-pricing-plan.pt-style-1.pt-active .pt-pricing-title {
    color: var(--white-color);
}

.pt-pricing-plan.pt-style-1 .pt-pricing-icon {
    position: absolute;
    right: 45px;
    top: 60px;
    font-size: 64px;
    line-height: 1;
    color: var(--primary-color);
}

.pt-pricing-plan.pt-style-1.pt-active .pt-pricing-icon {
    color: var(--white-color);
}

.pt-pricing-plan.pt-style-1 .pt-list-info {
    margin-bottom: 30px;
    padding-left: 0;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-black);
}

.pt-pricing-plan.pt-style-1.pt-active .pt-list-info {
    border-bottom: 1px solid var(--light-white);
}

.pt-pricing-plan.pt-style-1 .pt-list-info li {
    margin-bottom: 10px;
}

.pt-pricing-plan.pt-style-1.pt-active .pt-list-info li {
    color: var(--white-color);
}

.pt-pricing-plan.pt-style-1 .pt-list-info li:last-child {
    margin-bottom: 0;
}

.pt-pricing-plan.pt-style-1 .pt-list-info li i {
    font-size: 10px;
    color: var(--primary-color);
    margin-right: 5px; 
}

.pt-pricing-plan.pt-style-1.pt-active .pt-list-info li i {
    color: var(--white-color);
}

.pt-pricing-plan.pt-style-1 .pt-price .pt-amount {
    font-size: 52px;
    line-height: 60px;
    color: var(--dark-color);
    font-family: var(--title-fonts);
    font-weight: 700;
}

.pt-pricing-plan.pt-style-1.pt-active .pt-price .pt-amount {
    color: var(--white-color);
}

.pt-pricing-plan.pt-style-1 .pt-price .price-month {
    font-family: var(--title-fonts);
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.04em;
    color: var(--dark-color);
}

.pt-pricing-plan.pt-style-1.pt-active .pt-price .price-month {
    color: var(--white-color);
}

.pt-pricing-plan.pt-style-1 .pt-btn-container {
    margin-top: 30px;
}

.pt-pricing-plan.pt-style-1.pt-active .pt-btn-container .pt-button {
    color: white;
}

.pt-pricing-plan.pt-style-1.pt-active .pt-btn-container .pt-button .pt-button-block::after,
.pt-pricing-plan.pt-style-1.pt-active .pt-btn-container .pt-button .pt-button-block::before {
    background-color: var(--white-color);
}

@media (max-width: 767px) {
    
    .pt-pricing-plan.pt-style-1 {
        padding: 45px;
    }
        
    .pt-pricing-plan.pt-style-1 .pt-pricing-icon {
        top: 45px;
    }

}

@media (max-width: 575px) {

    .pt-pricing-plan.pt-style-1 {
        padding: 45px 30px;
    }

    .pt-pricing-plan.pt-style-1 .pt-pricing-icon {
        top: 45px;
        right: 30px;
    }

}

@media (max-width: 379px) {

    .pt-pricing-plan.pt-style-1 {
        padding: 30px;
    }

    .pt-pricing-plan.pt-style-1 .pt-pricing-title {
        font-size: 32px;
        line-height: 40px;
    }

    .pt-pricing-plan.pt-style-1 .pt-pricing-icon {
        top: 30px;
        font-size: 56px;
    }
    
    .pt-pricing-plan.pt-style-1 .pt-list-info {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .pt-pricing-plan.pt-style-1 .pt-price .pt-amount {
        font-size: 48px;
        line-height: 56px;
    }

}




/*================================================
Info Box
================================================*/

.pt-info-box-1-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.pt-info-box.pt-style-1 {
    padding: 45px 30px;
    background-color: var(--grey-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-info-box.pt-style-1 .pt-info-box-top {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-black);
    margin-bottom: 30px;
}

.pt-info-box.pt-style-1 .pt-info-box-top .pt-info-title {
    font-size: 28px;
    line-height: 36px;
}

.pt-info-box.pt-style-1 .pt-info-box-top .pt-info-box-icon {
    font-size: 44px;
    line-height: 1;
    color: var(--primary-color);
}

.pt-info-box.pt-style-1 .pt-infobox-description {
    margin-bottom: 30px;
}

.pt-info-box.pt-style-1 .pt-list-info {
    padding: 0;
    margin: 0;
}

.pt-info-box.pt-style-1 .pt-list-info li {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    position: relative;
    gap: 10px;
    margin-bottom: 10px;
}

.pt-info-box.pt-style-1 .pt-list-info li:last-child {
    margin-bottom: 0;
}

.pt-info-box.pt-style-1 .pt-list-info li .pt-info-hours-content::before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 140px;
    width: calc(100% - 255px);
    border-bottom: 1px dashed var(--light-black);
}

.pt-info-box.pt-style-1 .pt-info-call {
    display: grid;
    grid-template-columns: 75px auto;
    align-items: center;
    gap: 15px;
}

.pt-info-box.pt-style-1 .pt-info-call .pt-info-call-icon  {
    font-size: 40px;
    line-height: 75px;
    width: 75px;
    height: 75px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

.pt-info-box.pt-style-1 .pt-info-call .pt-info-call-details .cpt-call-title {
    font-family: var(--title-fonts);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--dark-color);
}

.pt-info-box.pt-style-1 .pt-info-call .pt-info-call-details .cpt-call-number {
    font-family: var(--title-fonts);
    font-size: 22px;
    line-height: 30px;
    color: var(--dark-color);
}

@media (max-width:1023px) {
 
    .pt-info-box-1-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:767px) {
 
    .pt-info-box-1-list {
        grid-template-columns: 1fr;
    }

    .pt-info-box.pt-style-1 {
        padding: 30px;
    }
}

@media (max-width:379px) {

    .pt-info-box.pt-style-1 {
        padding: 30px 25px;
    }

    .pt-info-box.pt-style-1 .pt-info-box-top  {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 5px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .pt-info-box.pt-style-1 .pt-info-call .pt-info-call-details .cpt-call-number {
        font-size: 20px;
        line-height: 28px;
    }

    .pt-info-box.pt-style-1 .pt-info-call {
        grid-template-columns: 60px auto;
        gap: 8px;
    }
    
    .pt-info-box.pt-style-1 .pt-info-call .pt-info-call-icon  {
        font-size: 32px;
        line-height: 60px;
        width: 60px;
        height: 60px;
    }
    
}


/*================================================
Form
================================================*/

/*===== Contact Form Style-1 =====*/


.pt-contact-form.pt-style-1  p {
    margin-bottom: 0;
}

.pt-contact-form.pt-style-1 .wpcf7-form-control {
    margin-bottom: 20px;
    background-color: var(--grey-color);
    border: 1px solid var(--grey-color);
    padding-left: 40px;
}

.pt-contact-form.pt-style-1 textarea.wpcf7-form-control {
    margin-bottom: 0;
}

.pt-contact-form.pt-style-1 .wpcf7-form-control:focus,
.pt-contact-form.pt-style-1 .wpcf7-form-control:hover {
    border: 1px solid var(--primary-color);
}

.pt-contact-form.pt-style-1 textarea {
    height: 120px;
    padding-top: 10px;
}

.pt-contact-form.pt-style-1 .wpcf7-form-control.wpcf7-submit {
    background: var(--primary-color);
    margin-bottom: 0;
    border: none;
    margin-top: 30px;
    padding-left: 30px;
}

.pt-contact-form.pt-style-1 input.wpcf7-form-control.wpcf7-submit:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

.pt-contact-form.pt-style-1 .form-group {
    position: relative;
}

.pt-contact-form.pt-style-1 .form-group p i {
    position: absolute;
    top: 19px;
    left: 15px;
    z-index: 1;
    color: var(--primary-color);
}


/*===== Contact Form Style-2 =====*/


.pt-contact-form.pt-style-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 20px 30px;
}

.pt-contact-form.pt-style-2  p {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}

.pt-contact-form.pt-style-2 .wpcf7-form-control {
    background-color: var(--grey-color);
    border: 1px solid var(--grey-color);
}

.pt-contact-form.pt-style-2 textarea.wpcf7-form-control {
    margin-bottom: 0;
}

.pt-contact-form.pt-style-2 .wpcf7-form-control:focus,
.pt-contact-form.pt-style-2 .wpcf7-form-control:hover {
    border: 1px solid var(--primary-color);
}

.pt-contact-form.pt-style-2 textarea {
    height: 128px;
    padding-top: 10px;
}

.pt-contact-form.pt-style-2 .wpcf7-form-control.wpcf7-submit {
    background: var(--primary-color);
    margin-bottom: 0;
    border: none;
}

.pt-contact-form.pt-style-2 input.wpcf7-form-control.wpcf7-submit:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

.pt-contact-form.pt-style-2 .wpcf7-spinner {
    display: none;
}

@media (max-width:1023px) {
    
    .pt-contact-form.pt-style-2 {
        grid-template-columns: 1fr 1fr;
    }
    
    .pt-contact-form.pt-style-2 .pt-column-3  {
        grid-row: 2;
        grid-column: 1 / 3;
    }

    .pt-contact-form.pt-style-2 .pt-column-4  {
        grid-row: 3;
        margin-right: auto;
        margin-top: 15px;
    }
}

@media (max-width:767px) {

    .pt-contact-form.pt-style-2 {
        grid-template-columns: 1fr;
    }

    .pt-contact-form.pt-style-2 .pt-column-3  {
        grid-row: inherit;
        grid-column: inherit;
    }

    .pt-contact-form.pt-style-2 .pt-column-4  {
        grid-row: inherit;
    }
}

/*================================================
Image Box
================================================*/

/*+++++++++ Image Box Style-1 +++++++++*/


.pt-image-box.pt-style-1 {
   text-align: center;
   
}

.pt-image-box.pt-style-1 .pt-image-box-image img {
    height: 100%;
    width: auto;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-black);
    transition: var(--transition);
    margin-bottom: 30px;
}

.pt-image-box.pt-style-1:hover .pt-image-box-image img {
    transform: translateY(-10px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.pt-image-box.pt-style-1 .pt-image-box-title {
    font-size: 30px;
    line-height: 28px;
    transition: var(--transition);
}

.pt-image-box.pt-style-1:hover .pt-image-box-title {
    color: var(--primary-color);
}

@media(max-width:1023px) {

    .pt-image-box.pt-style-1 .pt-image-box-title {
        font-size: 32px;
        line-height: 40px;
    }
}

@media(max-width:767px) {

    .pt-image-box.pt-style-1 .pt-image-box-title {
        font-size: 28px;
        line-height: 36px;
    }
}


/*================================================
Up-down marquee
================================================*/

.pt-updown-marquee {
    display: flex;
    gap: 30px;
    height: 500px;
    width: calc((1400px / 2 ) + ((100vw - 1400px) / 2) - 45px);
    rotate: -20deg;
}

.pt-updown-marquee .pt-marquee {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.pt-updown-marquee .pt-marquee img {
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    
}

.pt-updown-marquee .pt-marquee.up-marquee {
    animation: slideup 25s linear infinite;
    transform: translateY(-100%);
}

.pt-updown-marquee .pt-marquee.down-marquee {
    animation: slidedown 25s linear infinite;
}


@keyframes slideup {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0%);
	}
}

@keyframes slidedown {
	0% {
		transform: translateY(0%);
	}
	100% {
		transform: translateY(-100%);
	}
}


@keyframes slideright {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0%);
	}
}

@keyframes slideleft {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-100%);
	}
}

@media (max-width: 1400px) {
    .pt-updown-marquee {
        width: calc((100vw / 2 ) - 30px);
    }
}

@media (max-width: 1023px) {

    .pt-updown-marquee {
        height: auto;
        width: calc((1400px / 2 ) + ((100vw - 1400px) / 2) - 45px);
        rotate: 0deg;
        flex-direction: column;
    }
    
    .pt-updown-marquee .pt-marquee {
        flex-direction: row;
    }


    .pt-updown-marquee .pt-marquee.up-marquee {
        animation: slideright 25s linear infinite;
        transform: translateY(0) translateX(-100%);
    }

    .pt-updown-marquee .pt-marquee.down-marquee {
        animation: slideleft 25s linear infinite;
    }
}

/*Details Page*/

div#tab-description h2 {
    display: none;
}
.single-product .content-area .site-main {
    padding: 50px 0 85px !important;
}
.disc li {
    list-style-type: disc;
}
.disc ::marker {
    font-size: 20px;
}
ul#menu-useful-links li a {
    text-transform: capitalize;
}
ul#menu-product-categories li a {
    text-transform: capitalize;
}