/*
Template: Bugex - Insect Extermination & Pest Control WordPress Theme 
Author: peacefulqode.co.in
Version: 1.0
Design and Developed by: Peacefulqode

*/

/*================================================
[  Table of contents  ]
================================================

==> Moz Selection
==> General
==> Loading
==> Back to Top
==> WordPress Core
==> Button Core
==> Dummy data
==> OWL Carousel
==> Pagination
==> Error
==> Breadcrumb
==> Service Single
==> Header
==> Section Title
==> Footer
==> Blog Post
==> Isotope Portfolio
==> Portfolio 
==> Service Box
==> Video Popup
==> Testimonial  
==> Recent Post
==> Our Team
==> price Plan
==> Accordion
==> Tabs
==> image Gallary
==> Work Process
==> Woocommerce
==> Custom CSS 

======================================
[ End table content ]
======================================*/

/*================================================
    Moz Selection
================================================*/
::-moz-selection {
     text-shadow: none;
     background: var(--primary-color);
     color: #fff;
}

::-moz-selection {
     text-shadow: none;
     background: var(--primary-color);
     color: #fff;
}

/*================================================
   General
================================================*/
body {
     background: var(--white-color);
     font-family: var(--body-fonts);
     font-size: 18px;
     font-style: normal;
     font-weight: 400;
     line-height: 1.6;
     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: 500;
     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.elementor-heading-title,
h1 {
     font-size: clamp(2.25rem, 1.5rem + 2vw, 3.5rem);
     /* 36px â†’ 56px */
     line-height: 1.25;
     /* ~72px (multiple of 8) */
}

h2.elementor-heading-title,
h2 {
     font-size: clamp(2rem, 1.3rem + 1.8vw, 3rem);
     /* 32px â†’ 48px */
     line-height: 1.25;
     /* ~56px (multiple of 8) */
}

h3.elementor-heading-title,
h3 {
     font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem);
     /* 28px â†’ 40px */
     line-height: 1.3;
     /* ~48px (multiple of 8) */
}

h4.elementor-heading-title,
h4 {
     font-size: clamp(1.5rem, 1rem + 1.4vw, 2rem);
     /* 24px â†’ 32px */
     line-height: 1.35;
     /* ~40px (multiple of 8) */
}

h5.elementor-heading-title,
h5 {
     font-size: clamp(1.25rem, 0.9rem + 1.2vw, 1.75rem);
     /* 20px â†’ 28px */
     line-height: 1.4;
     /* ~32px (multiple of 8) */
}

h6.elementor-heading-title,
h6 {
     font-size: clamp(1.25rem, 0.8rem + 1vw, 1.5rem);
     /* 16px â†’ 24px */
     line-height: 1.5;
     /* ~24px/32px (fits grid) */
}

/*===== Container =====*/
.container,
.elementor-section.elementor-section-boxed>.elementor-container {
     max-width: 1400px;
}

.content-area .site-main {
     padding: 110px 0;
     display: inline-block;
     width: 100%;
     overflow: hidden;
     float: left;
}

/*================================================
   Loading
================================================*/

/* Fullscreen overlay */
#pt-loading {
     position: fixed;
     inset: 0;
     background: #fff;
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 9999;
     transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Hide state */
#pt-loading.hide {
     opacity: 0;
     visibility: hidden;
}

/* Loader wrapper */
.pt-loader {
     position: relative;
     width: 150px;
     height: 150px;
}

/* Rotating half-half border */
.pt-loader-circle {
     position: absolute;
     inset: 0;
     border-radius: 50%;
     border: 2px solid transparent;
     border-top-color: var(--primary-color);
     /* top half color */
     border-right-color: var(--grey-color);
     /* right half color */
     border-bottom-color: var(--primary-color);
     /* bottom half color */
     border-left-color: var(--grey-color);
     /* left half color */
     animation: spin 1.5s linear infinite;
}

/* Center logo */
.pt-loader img {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     max-width: 90px;
}

/* Spin animation */
@keyframes spin {
     0% {
          transform: rotate(0deg);
     }

     100% {
          transform: rotate(360deg);
     }
}

/*================================================
   Back to Top
================================================*/

.progress-wrap {
     position: fixed;
     right: 30px;
     bottom: 30px;
     height: 55px;
     width: 55px;
     cursor: pointer;
     display: block;
     border-radius: var(--big-border-radius);
     box-shadow: inset 0 0 0 2px rgba(var(--dark-color-rgb), 0.2);
     background: var(--white-color);
     z-index: 10000;
     opacity: 0;
     visibility: hidden;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}

.progress-wrap.active-progress {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}

.progress-wrap::after {
     position: absolute;
     font-family: 'themify';
     content: "\e660";
     text-align: center;
     line-height: 55px;
     font-size: 24px;
     color: var(--dark-color);
     left: 0;
     top: 0;
     height: 55px;
     width: 55px;
     cursor: pointer;
     display: block;
     z-index: 1;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}

.progress-wrap:hover::after {
     color: var(--dark-color);
}

.progress-wrap svg path {
     fill: none;
}

.progress-wrap svg.progress-circle path {
     stroke: var(--accent-color);
     stroke-width: 4;
     box-sizing: border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}

/*================================================
   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: 600;
     height: auto;
     left: 5px;
     line-height: normal;
     padding: 15px 23px 14px;
     text-decoration: none;
     top: 5px;
     width: auto;
     z-index: 100000;
}

/*================================================
   Button Core
================================================*/

[type="button"],
[type="reset"],
[type="submit"],
.woocommerce a.button {
     padding: 12px 30px;
     font-family: var(--title-fonts);
     font-size: 18px;
     letter-spacing: 0.04em;
     background: var(--dark-color);
     color: var(--white-color);
     text-transform: capitalize;
     display: inline-block;
     border: none;
     width: auto;
     height: auto;
     line-height: 1.6;
     -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,
.woocommerce a.button:hover,
.woocommerce a.button:focus {
     background: var(--primary-color);
     color: var(--white-color);
}

/*===== Button Flat =====*/
.pt-button.pt-button-flat {
     overflow: hidden;
     font-family: var(--title-fonts);
     line-height: 2;
     font-size: 18px;
     letter-spacing: 0.04em;
     font-weight: 500;
     padding: 8px 30px 8px 30px;
     position: relative;
     width: auto;
     height: auto;
     color: var(--dark-color);
     vertical-align: middle;
     display: inline-flex;
     align-items: center;
     text-transform: capitalize;
     background: var(--accent-color);
     gap: 10px;
     text-decoration: none;
     border-radius: var(--big-border-radius);
     transition: var(--transition);
}

.pt-button.pt-button-flat .pt-button-text {
     transition: var(--transition);
}

.pt-button.pt-button-flat i {
     font-size: 18px;
     color: var(--dark-color);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.4s ease-in-out;
     /* transition: var(--transition); */
}

.pt-button.pt-button-flat:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pt-button.pt-button-flat:hover i {
     transform: rotate(15deg) scale(1.1);
}

/*===== Button link =====*/
.pt-button.pt-button-link {
     display: inline-flex;
     font-family: var(--title-fonts);
     line-height: normal;
     font-size: 18px;
     font-weight: 500;
     letter-spacing: 0.04em;
     align-items: center;
     gap: 10px;
     color: var(--primary-color);
}

.pt-button.pt-button-link:hover {
     /* transform: translateY(-2px); */
}

.pt-button.pt-button-link i {
     /* transform: rotate(-140deg); */
     display: flex;
     align-items: center;
     justify-content: center;
     transition: var(--transition);
     transition: var(--transition);
}

.pt-button.pt-button-link:hover i,
.pt-button.pt-button-link:focus i {
     /* transform: rotate(-90deg); */
     transform: rotate(15deg) scale(1.1);
}

/*===== Button outline =====*/
.pt-button.pt-button-outline {
     overflow: hidden;
     font-family: var(--title-fonts);
     /* text-transform: uppercase; */
     line-height: 2;
     font-size: 18px;
     font-weight: 500;
     letter-spacing: 0.04em;
     padding: 6px 30px 6px 30px;
     position: relative;
     width: auto;
     height: auto;
     color: var(--dark-color);
     vertical-align: middle;
     display: inline-flex;
     align-items: center;
     background: transparent;
     border: 2px solid var(--dark-color);
     gap: 10px;
     text-decoration: none;
     border-radius: var(--big-border-radius);
     transition: var(--transition);
}

.pt-button.pt-button-outline:hover {
     border: 2px solid var(--primary-color);
     color: var(--primary-color);
}

.pt-button.pt-button-outline i {
     font-size: 18px;
     color: var(--dark-color);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.4s ease-in-out;
}

.pt-button.pt-button-outline:hover i {
     transform: rotate(15deg) scale(1.1);
}

/*===== Button Rounded =====*/
.pt-button.pt-button-rounded {
     display: inline-block;
     width: 60px;
     height: 60px;
     line-height: 60px;
     font-size: 24px;
     font-weight: 500;
     border-radius: var(--big-border-radius);
     background: var(--dark-color);
     color: var(--white-color);
     text-align: center;
     transform: rotate(0deg);
     transition: var(--transition);
}

.pt-button.pt-button-rounded:hover {
     background-color: var(--primary-color);
     color: var(--white-color);
     transform: rotate(15deg) scale(1);
}

.pt-button.pt-button-rounded i {
     line-height: inherit;
}

.pt-button.pt-button-rounded i:before {
     line-height: inherit;
}

/*================================================
   Dummy data
================================================*/

/*=====  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: 900px;
     -moz-border-radius: 900px;
     border-radius: 900px;
}

.wp-block-tag-cloud .tag-cloud-link:hover {
     border-color: var(--dark-color);
     background: var(--primary-color);
     color: var(--dark-color);
}

/*================================================
    OWL Carousel
================================================*/
.owl-carousel .owl-nav.disabled {
     display: none;
}

.owl-nav {
     position: relative;
     top: 0%;
     transform: translateY(0);
     margin: 0;
     width: 100%;
     display: flex;
     cursor: inherit;
     justify-content: center;
}

.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: 65px;
     height: 65px;
     line-height: 65px;
     padding: 0 !important;
     margin: 0 5px;
     border: none;
     border-radius: 100%;
     background-color: var(--dark-color);
     color: var(--white-color);
}

.owl-carousel .owl-nav button.owl-prev {
     transform: rotate(180deg) translate(0px, 0px);
}

.owl-carousel .owl-nav button.owl-next {
     right: 0;
}

.owl-carousel .owl-nav button:hover {
     color: var(--dark-color);
     background: var(--accent-color);
}

.owl-carousel .owl-nav button i::before {
     line-height: inherit;
}

/*++++++++++++++++ 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: rgba(var(--dark-color-rgb), .08);
     border: 0 solid rgba(var(--dark-color-rgb), .08);
     display: inline-block;
     padding: 0;
     margin: 0px 5px;
     height: 12px;
     width: 12px;
     transition: var(--transition-duration);
     -webkit-transition: var(--transition-duration);
     -o-transition: var(--transition-duration);
     -moz-transition: var(--transition-duration);
     -ms-transition: var(--transition-duration);
     cursor: pointer;
     -webkit-border-radius: var(--pq--border-radius);
     -moz-border-radius: var(--pq--border-radius);
     border-radius: var(--pq--border-radius);
}

.owl-carousel .owl-dots .owl-dot span {
     display: none;
}

.owl-carousel .owl-dots .owl-dot:hover {
     background: var(--dark-color);
     border-color: var(--dark-color);
     opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active {
     background: var(--dark-color);
     border-color: var(--dark-color);
     opacity: 1;
}

/*================================================
   Pagination
================================================*/
.pt-pagination {
     margin-top: 60px;
}

.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 20px;
     text-transform: capitalize;
     height: 60px;
     width: 60px;
     text-align: center;
     line-height: 60px;
     font-size: 18px;
     margin: 0 5px;
     letter-spacing: 0.04em;
     color: var(--dark-color);
     background-color: var(--grey-color);
     border: 0 solid var(--grey-color);
     -webkit-border-radius: var(--pq--border-radius);
     -moz-border-radius: var(--pq--border-radius);
     border-radius: var(--pq--border-radius);
     font-family: var(--title-fonts);
}

.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 {
          margin-top: 45px;
     }

     .pt-pagination .page-numbers li .next.page-numbers,
     .pt-pagination .page-numbers li .prev.page-numbers {
          width: auto;
          display: none;
     }
}

/*================================================
   Error
================================================*/
.pt-error-block {
     text-align: center;
}

.pt-error-block .pt-errot-text {
     font-size: 420px;
     font-family: var(--title-fonts);
     color: var(--primary-color);
     line-height: 0.8;
     margin-bottom: 30px;
     font-style: normal;
     text-transform: uppercase;
     font-weight: 600;
}

@media(max-width:1023px) {
     .pt-error-block .pt-errot-text {
          font-size: 320px;
     }
}

@media(max-width:767px) {
     .pt-error-block .pt-errot-text {
          font-size: 200px;
     }

     .pt-error-block h2 {
          font-size: 26px;
          line-height: 34px;
     }
}

@media(max-width:479px) {
     .pt-error-block .pt-errot-text {
          font-size: 130px;
     }
}

/*================================================
   Breadcrumb
================================================*/
.pt-breadcrumb-style-1 {
     padding: 180px 0;
     position: relative;
     background-position: top center;
     background-size: cover;
     background-repeat: no-repeat;
     text-align: center;
     z-index: 1;
     overflow: hidden;
}

.pt-breadcrumb-style-1::before {
     content: "";
     opacity: 0;
     position: absolute;
     background-color: var(--dark-color);
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
}

.pt-breadcrumb-style-1 .pt-breadcrumb-title h1 {
     font-size: clamp(2.25rem, 1.5rem + 3vw, 4.5rem);
     line-height: 1.2;
     /* ~88px on large screens, keeps 8px rhythm */
     color: var(--white-color);
}

.pt-breadcrumb-style-1 .pt-breadcrumb-container .breadcrumb {
     display: inline-block;
     margin: 0;
}

.pt-breadcrumb-style-1 .pt-breadcrumb-container .breadcrumb li {
     list-style-type: none;
     margin-right: 5px;
     padding-left: 0;
     display: inline-block;
     font-size: 18px;
     line-height: 26px;
}

.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(--white-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:1499px) {
     .pt-breadcrumb-style-1 {
          margin: 0;
          border-radius: 0;
          padding: 120px 0;
     }

     .pt-breadcrumb-wrapper {
          padding: 0;
     }
}

@media(max-width:1023px) {
     .pt-breadcrumb-style-1 {
          padding: 90px 0 90px;
     }
}

@media(max-width:767px) {
     .pt-breadcrumb-style-1 .pt-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
          padding-right: 10px;
          font-size: 12px;
     }
}

/*================================================
   Service Single
  ================================================*/
[data-widget_type="sidebar.default"] .widget .menu-service_menu-container {
     border: none;
     box-shadow: none;
}

[data-widget_type="sidebar.default"] .widget .menu-service_menu-container .menu {
     margin: 0;
     padding: 0;
}

[data-widget_type="sidebar.default"] .widget .menu-service_menu-container .menu li {
     margin: 0 0 20px;
}

[data-widget_type="sidebar.default"] .widget .menu-service_menu-container .menu li:last-child {
     margin: 0;
}

[data-widget_type="sidebar.default"] .widget .menu-service_menu-container .menu li a {
     padding: 17px 20px;
     background: var(--white-color);
     display: inline-block;
     width: 100%;
     position: relative;
     font-family: var(--body-fonts);
     font-size: 18px;
     line-height: 26px;
     text-transform: capitalize;
     color: var(--dark-color);
     border-radius: var(--pq--border-radius);
}

[data-widget_type="sidebar.default"] .widget .menu-service_menu-container .menu li a:before {
     content: '\f054';
     font-family: "Font Awesome 5 Free";
     font-weight: 700;
     font-size: 12px;
     right: 20px;
     left: auto;
     top: 24px;
     position: absolute;
     color: inherit;
     line-height: normal;
}

[data-widget_type="sidebar.default"] .widget .menu-service_menu-container .menu li a:hover,
[data-widget_type="sidebar.default"] .widget .menu-service_menu-container .menu li.current_page_item a {
     background: var(--primary-color);
     color: var(--white-color);
}

/*================================================
Header
================================================*/

/*===== Transparent  Header =====*/
.admin-bar .transparent-header {
     top: 32px !important;
}

.transparent-header {
     background: transparent;
     position: absolute;
     top: 0;
     width: 100%;
     z-index: 9;
     border-bottom: 1px solid rgb(255, 255, 255, 0.1);
}

.transparent-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
     color: var(--white-color);
}

.transparent-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover,
.transparent-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:focus,
.transparent-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
.transparent-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link {
     color: var(--accent-color);
}

/*===== Sticky  Header =====*/
.admin-bar .pt-header-sticky {
     top: 32px;
}

.pt-header-sticky {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 9999;
     background: var(--white-color);
     box-shadow: 0px 5px 15px rgba(26, 26, 26, 0.1);
     transform: translateY(-100%);
     transition: transform 0.4s ease-in-out;
     will-change: transform;
}

@media (max-width: 1365px) {
     #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator:after {
          display: none !important;

     }
}

@media (max-width: 1200px) {
     #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator:after {
          display: inline-block !important;
     }
}

@media (max-width: 767px) {
     .admin-bar .transparent-header.pt-header-sticky {
          top: 0 !important;
     }
}

@media (max-width: 1200px) {
     .transparent-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
          color: var(--dark-color);
     }

     .transparent-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover,
     .transparent-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:focus,
     .transparent-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
     .transparent-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link {
          color: var(--white-color);
     }
}

.transparent-header .pt-toggle-btn a {
     background-color: var(--accent-color);
}

.transparent-header .pt-toggle-btn a svg path {
     transition: var(--transition);
     fill: var(--dark-color);
     stroke: rgba(var(--dark-color-rgb), .03);
}

.transparent-header #mega-menu-wrap-primary .mega-menu-toggle {
     background-color: var(--accent-color);
}

.transparent-header #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner,
.transparent-header #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::before,
.transparent-header #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::after {
     background-color: var(--dark-color);
}

/*===== Dark Header =====*/
.pt-dark-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
     color: var(--white-color);
}

.pt-dark-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover,
.pt-dark-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:focus,
.pt-dark-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
.pt-dark-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link {
     color: var(--primary-color);
}


@media (max-width: 1200px) {
     .pt-dark-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
          color: var(--dark-color);
     }

     .pt-dark-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover,
     .pt-dark-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:focus,
     .pt-dark-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
     .pt-dark-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link {
          color: var(--white-color);
     }
}

@media (max-width: 379px) {
     header#pt-header #mega-menu-wrap-primary .mega-menu-toggle {
          width: 50px;
          height: 50px;
     }
}

/* ========= Toggale Button ========= */
@media (max-width: 1200px) {
     #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
          margin-left: 10px;
     }

     #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
          margin-right: 10px;
     }
}


@media (max-width: 379px) {
     #mega-menu-wrap-primary .mega-menu-toggle {
          width: 50px;
          height: 50px;
     }

     #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
          margin-left: 4px;
     }

     #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
          margin-right: 4px;
     }
}

/*++++++ Header Right ++++++*/
.pt-header-info {
     display: flex;
     gap: 20px;
     align-items: center;
     padding: 0;
     margin: 0;
}

/*++++++ Search ++++++*/
.pt-search-button {
     width: 52px;
     height: 52px;
     font-size: 20px;
     line-height: 52px;
     text-align: center;
     background: var(--grey-color);
     color: var(--primary-color);
     border-radius: var(--big-border-radius);
     display: inline-block;
}

.pt-search-button svg {
     fill: var(--primary-color);
     width: 20px;
}

.pt-search-button svg path {
     fill: var(--primary-color);
}

/*+++++ 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;
     outline: none;
}

.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;
     border-radius: var(--big-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 {
     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;
}

.offcanvas.offcanvas-top .search-form .search-submit {
     display: none;
}

.pt-search-button .offcanvas .search-form .search-submit:hover {
     color: var(--dark-color) !important;
}

/*++++++ Cart ++++++*/
.pt-shop-btn .pt-cart-button .pt-icon {
     width: 56px;
     height: 56px;
     font-size: 20px;
     line-height: 56px;
     text-align: center;
     background: var(--grey-color);
     color: var(--primary-color);
     border-radius: var(--big-border-radius);
     display: inline-block;
}

.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: 12px;
     font-weight: 400;
     background: var(--dark-color);
     color: var(--white-color);
     position: absolute;
     bottom: 8px;
     right: 8px;
     height: 18px;
     width: 18px;
     line-height: 18px;
     text-align: center;
     border-radius: var(--big-border-radius);
}

.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: 700;
     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: 700;
     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;
}

/*+++++ Cart Block +++++*/
.admin-bar .offcanvas-end {
     top: 47px;
}

.pt-cart-button .offcanvas {
     padding: 75px 30px 45px;
     height: calc(100% - 0);
     top: 0;
     right: 0;
}

.admin-bar .pt-cart-button .offcanvas {
     height: calc(100% - 62px);
     top: 47px;
}

.pt-cart-button .widget_shopping_cart_content {
     height: calc(100vh - 360px);
}

.admin-bar .pt-cart-button .widget_shopping_cart_content {
     height: calc(100vh - 410px);
}

.pt-cart-button .widget_shopping_cart_content .product_list_widget {
     height: 100%;
     overflow: auto;
     margin: 0;
     padding: 0 15px 0 0;
}

.pt-cart-button .widget_shopping_cart_content .product_list_widget::-webkit-scrollbar {
     width: 8px;
     border-radius: 8px;
}

.pt-cart-button .widget_shopping_cart_content .product_list_widget::-webkit-scrollbar-track {
     background-color: var(--grey-color);
     border-radius: 8px
}

.pt-cart-button .widget_shopping_cart_content .product_list_widget::-webkit-scrollbar-thumb {
     background-color: var(--primary-color);
     border-radius: 8px
}

.pt-cart-button .offcanvas .pt-cart-header h3.modal-title {
     font-size: 24px;
     line-height: 32px;
     margin-bottom: 30px;
     font-family: var(--title-fonts);
}

.pt-cart-button ul.product_list_widget li.mini_cart_item {
     font-size: 16px;
     margin: 0 0 30px;
     padding: 0;
     list-style: none;
     display: inline-block;
     width: 100%;
     position: relative;
}

.pt-cart-button ul.cart_list li img,
ul.product_list_widget li img {
     width: 80px;
     float: left;
     margin-left: 0;
     margin-right: 15px;
     -webkit-border-radius: var(--border-radius);
     -moz-border-radius: var(--border-radius);
     border-radius: var(--border-radius);
}

.pt-cart-button ul.cart_list li a {
     display: block;
     color: var(--dark-color);
     text-decoration: none;
     font-weight: 700;
     font-family: var(--title-fonts);
     padding-right: 30px;
     line-height: normal;
     text-transform: capitalize;
     font-size: 16px;
     line-height: 24px;
}

.pt-cart-button ul.product_list_widget a.remove {
     float: right;
     right: 8px;
     top: 0;
     left: inherit;
     font-size: 28px;
     font-weight: 400;
     position: absolute;
     padding: 0;
     line-height: 1;
     height: 1em;
     width: 1em;
     color: var(--dark-color);
     text-align: center;
     background: transparent;
     font-family: var(--body-fonts);
     margin: 0;
}

.pt-cart-button ul.product_list_widget a.remove:hover {
     color: var(--primary-color) !important;
}

.pt-cart-button .woocommerce-mini-cart__total.total {
     margin-bottom: 20px;
     margin-top: 20px;
     font-family: var(--title-fonts);
     font-size: 20px;
     line-height: 28px;
     text-transform: capitalize;
     letter-spacing: 1px;
     font-weight: 700;
     color: var(--dark-color);
}

.pt-cart-button .woocommerce-mini-cart__total.total .woocommerce-Price-amount.amount {
     float: right;
     color: var(--dark-color);
     font-weight: 700;
     font-family: var(--body-fonts);
}

.pt-cart-button .woocommerce-mini-cart__buttons .button {
     display: block;
     text-align: center;
     margin-bottom: 10px;
     background: var(--primary-color);
     color: var(--white-color);
     border-radius: 0;
     font-weight: 400;
     padding: 12px 30px;
     height: auto;
     font-size: 16px;
     line-height: 2;
     text-transform: uppercase;
     letter-spacing: 1px;
     border-radius: 900px;
}

.pt-cart-button .woocommerce-mini-cart__buttons .button:hover {
     background: var(--dark-color);
}

.pt-cart-button .woocommerce-mini-cart__buttons .button.checkout {
     margin-bottom: 0;
     background: none;
     border: 1px solid var(--dark-color);
     color: var(--dark-color);
}

.pt-cart-button .woocommerce-mini-cart__buttons .button.checkout:hover {
     background: var(--dark-color);
     border-color: var(--dark-color);
     color: var(--white-color);
}

.pt-cart-button p {
     margin-bottom: 0;
}

.pt-cart-button .btn-close {
     position: absolute;
     right: 30px;
     top: 30px;
     background: var(--primary-color);
     width: 50px;
     height: 50px;
     line-height: 50px;
     text-align: center;
     color: var(--white-color);
     font-size: 20px;
     -webkit-border-radius: 900px;
     -moz-border-radius: 900px;
     border-radius: 900px;
     padding: 0;
     opacity: 1;
}

.pt-cart-button .btn-close:hover {
     background: var(--dark-color);
}

.pt-sidebar .pt-close-btn i {
     line-height: inherit;
}

/*++++++ Toggle Button ++++++*/
.pt-toggle-btn a {
     background-color: var(--primary-color);
     width: 56px;
     height: 56px;
     line-height: 56px;
     text-align: center;
     border-radius: var(--big-border-radius);
     display: flex;
     align-items: center;
     justify-content: center;
}

.pt-toggle-btn a svg {
     width: 24px;
}

.pt-toggle-btn a svg path {
     transition: var(--transition);
     fill: var(--white-color);
     stroke: rgba(var(--white-color-rgb), .3);
}

/*===== Header SideBar =====*/
.pt-background-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--dark-color);
     z-index: 100;
     opacity: 0.8;
     display: none;
     transition: var(--transition);
     -moz-transition: var(--transition);
     -ms-transition: var(--transition);
     -o-transition: var(--transition);
     -webkit-transition: var(--transition);
}

.pt-siderbar-open .pt-background-overlay {
     display: block;
     transition: var(--transition);
     -moz-transition: var(--transition);
     -ms-transition: var(--transition);
     -o-transition: var(--transition);
     -webkit-transition: var(--transition);
}

.pt-siderbar-open .pt-sidebar {
     right: 30px;
     opacity: 1;
}

.pt-sidebar {
     max-width: 410px;
     background: var(--white-color);
     opacity: 0;
     display: block;
     position: fixed;
     top: 50%;
     right: -100%;
     height: auto;
     z-index: 101;
     transform: translateY(-50%);
     -webkit-border-radius: var(--pq--border-radius);
     -moz-border-radius: var(--pq--border-radius);
     border-radius: var(--pq--border-radius);
     transition: var(--transition);
     -moz-transition: var(--transition);
     -ms-transition: var(--transition);
     -o-transition: var(--transition);
     -webkit-transition: var(--transition);
}

.pt-sidebar .pt-close-btn .pt-close {
     position: absolute;
     top: 30px;
     right: 30px;
     background: var(--primary-color);
     width: 50px;
     height: 50px;
     line-height: 50px;
     text-align: center;
     color: var(--white-color);
     font-size: 20px;
     -webkit-border-radius: 900px;
     -moz-border-radius: 900px;
     border-radius: 900px;
}

.pt-sidebar .pt-close-btn .pt-close:hover {
     background: var(--dark-color);
     color: var(--white-color);
}

.pt-close-btn .pt-close i {
     display: inline-block;
     transform: rotate(0deg);
     transition: transform 0.3s ease;
}

.pt-close-btn .pt-close i::before {
     line-height: inherit;
}

.pt-sidebar .pt-close-btn .pt-close:hover i {
     transform: rotate(180deg) scale(1.1);
}

.pt-sidebar-block {
     padding: 30px;
}

.pt-sidebar-header .pt-sidebar-logo {
     height: 65px;
     width: auto;
     margin-bottom: 30px;
}

.pt-sidebar h2.wp-block-heading {
     margin-bottom: 0;
}

.pt-sidebar h4.pt-sidebar-heading {
     font-size: 26px;
     line-height: 34px;
     margin-bottom: 10px;
}

.pt-sidebar h4.pt-sidebar-title,
.pt-sidebar-social h4.pt-social-title {
     font-size: 24px;
     line-height: 32px;
     margin-bottom: 10px;
}

.pt-sidebar .pt-sidebar-contact {
     display: inline-block;
     width: 100%;
     margin-bottom: 30px;
}

.pt-sidebar .pt-sidebar-contact .pt-contact-title {
     font-size: 24px;
     line-height: 32px;
     margin-bottom: 10px;
}

.pt-sidebar ul {
     margin: 0;
     padding: 0;
     display: flex;
     flex-direction: column;
     gap: 10px;
}

.pt-sidebar ul li {
     list-style: none;
     margin: 0;
     display: flex;
     gap: 15px;
     align-items: center;
     line-height: 26px;
}

.pt-sidebar-contact li a {
     color: var(--dark-color);
     display: flex;
     align-items: center;
     gap: 15px;
}

.pt-sidebar-contact li span {
     color: var(--dark-color);
}

.pt-sidebar-contact li .pt-icon,
.pt-sidebar-contact li i {
     font-size: 18px;
     line-height: 1;
     display: inline-block;
     color: var(--primary-color);
}

.pt-sidebar-social ul {
     display: inline-block;
     width: 100%;
}

.pt-sidebar-social ul li {
     display: inline-block;
     padding: 0;
     margin: 0;
     margin-right: 5px;
}

.pt-sidebar-social ul li:last-child {
     margin-right: 0;
}

.pt-sidebar-social ul li a {
     background: var(--dark-color);
     color: var(--white-color);
     width: 50px;
     height: 50px;
     line-height: 50px;
     border-radius: 100%;
     display: inline-block;
     text-align: center;
     position: relative;
}

.pt-sidebar-social ul li a:hover {
     background: var(--primary-color);
     color: var(--white-color);
}

.pt-sidebar-social ul li a i:before {
     line-height: inherit;
}

.pt-sidebar .widget {
     background: transparent;
     padding: 0;
     border: none;
     margin-bottom: 45px;
}

.pt-sidebar .widget .wp-block-image {
     margin-bottom: 30px;
     border-radius: var(--border-radius);
}

.pt-sidebar .widget img {
     border-radius: var(--pq--border-radius);
     margin-bottom: 30px !important;
}

@media(max-width:767px) {
     .pt-sidebar {
          left: 20px;
          right: 20px;
     }
}

/*================================================
   Section Title
================================================*/
.pt-section-title.text-center .pt-title .pt-title-subtitle {
     justify-content: center;
}

.pt-section-title .pt-title .pt-title-subtitle {
     position: relative;
     color: var(--primary-color);
     display: inline-block;
     margin-bottom: 10px;
     align-items: center;
     padding-left: 25px;
     font-size: 18px;
     line-height: 1em;
     letter-spacing: 0.04em;
     font-weight: 400;
}

.pt-section-title .pt-title .pt-title-subtitle::before {
     content: "";
     position: absolute;
     /* font-family: "Font Awesome 5 Free"; */
     top: 50%;
     left: 0;
     transform: translateY(-50%);
     width: 20px;
     height: 1px;
     font-weight: 500;
     background-color: var(--primary-color);
     color: var(--primary-color);
}


.pt-section-title .pt-title .pt-title-description {
     margin-top: 10px;
     margin-bottom: 0;
}

/* ===== Banner Title ===== */
.pt-banner-title .pt-section-title .pt-title .pt-title-heading {
     font-size: clamp(36px, 7vw, 90px);
     line-height: 1.2;
}

.pt-banner-title.two .pt-section-title .pt-title p {
     width: 90%;
}

@media(max-width:1365px) {
     .pt-banner-title.two .pt-section-title .pt-title p {
          width: 100%;
     }
}

/* ===== Active ===== */
.pt-section-title.pt-activate .pt-title .pt-title-subtitle {
     color: var(--white-color);
}

.pt-section-title.pt-activate .pt-title .pt-title-subtitle::before {
     background-color: var(--white-color);
}

.pt-section-title.pt-activate .pt-title .pt-title-heading {
     color: var(--white-color);
}

.pt-section-title.pt-activate .pt-service-box-description {
     color: var(--white-color);
}

/*================================================
Footer
================================================*/

.menu-service-menu-container ul,
.menu-useful-links-container ul {
     padding: 0;
     margin: 0;
     list-style: none;
}

.menu-service-menu-container ul.menu li,
.menu-useful-links-container ul.menu li {
     margin-bottom: 10px;
}

.menu-service-menu-container ul.menu li:last-child,
.menu-useful-links-container ul.menu li:last-child {
     margin-bottom: 0;
}

.menu-service-menu-container ul.menu li a,
.menu-useful-links-container ul.menu li a {
     position: relative;
     padding: 0;
     color: var(--white-color);
}

.menu-service-menu-container ul.menu li a::before,
.menu-useful-links-container ul.menu li a::before {
     content: inherit;
}

.menu-service-menu-container ul.menu li a:hover,
.menu-useful-links-container ul.menu li a:hover {
     color: var(--primary-color);
}

/*================================================
Blog Post
================================================*/
.single-post .pt-blog-post,
.pt-blog .owl-carousel .pt-blog-post {
     margin-bottom: 0;
}

.pt-blog-post {
     display: inline-block;
     width: 100%;
     float: left;
}

/*===== Blog Image =====*/
.pt-blog-post .pt-post-media {
     margin-bottom: 20px;
     overflow: hidden;
     position: relative;
     border-radius: var(--pq--border-radius);
}

.pt-blog-post .pt-post-media .pt-blog-image .pt-blog-grid-image:after {
     content: "";
     position: absolute;
     width: 200%;
     height: 0%;
     left: 50%;
     top: 50%;
     background-color: rgba(255, 255, 255, .3);
     transform: translate(-50%, -50%) rotate(-45deg);
     z-index: 1;
}

.pt-blog-post .pt-post-media .pt-blog-image .pt-blog-grid-image:hover:after {
     height: 250%;
     transition: all 0.4s linear !important;
     background-color: transparent;
}


.pt-blog-post .pt-post-media img {
     min-height: 250px;
     width: 100%;
     object-fit: cover;
     transition: var(--transition);
     -webkit-transition: var(--transition);
}

.pt-blog-post:hover .pt-post-media img {
     transform: scale(1.1);
     -webkit-transform: scale(1.1);
}

.pt-blog-post .pt-post-media .pt-post-category a {
     font-size: 18px;
     line-height: 26px;
     letter-spacing: 0.04em;
     text-transform: capitalize;
     position: absolute;
     left: 30px;
     top: 30px;
     background: rgba(var(--white-color-rgb), 0.1);
     backdrop-filter: blur(20px);
     padding: 5px 15px;
     color: var(--white-color);
     border-radius: var(--big-border-radius);
     font-family: var(--body-fonts);
     z-index: 1;
}

/*===== Blog Meta =====*/
.pt-blog-post .pt-post-meta {
     margin-bottom: 8px;
}

.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;
}

.pt-blog-post .pt-post-meta ul li a {
     color: var(--primary-color);
}

.pt-blog-post .pt-post-meta ul li a:hover {
     text-decoration: underline !important;
}

.pt-blog-post .pt-post-meta ul li:last-child {
     margin-right: 0;
}

.pt-blog-post .pt-blog-contain .pt-post-meta .pt-post-date a {
     color: var(--secondary-color);
     transition: var(--transition);
}

.pt-blog-post .pt-blog-contain .pt-post-meta .pt-post-date:hover {
     color: var(--primary-color);
}

/*===== Blog contain =====*/
.pt-blog-post .pt-blog-contain .pt-blog-title a {
     margin-bottom: 5px;
     overflow: hidden;
     text-overflow: ellipsis;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
}

.pt-blog-post .pt-blog-contain .pt-btn-container {
     margin-top: 15px;
}

/*===== 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;
}

/* CORRECT dark overlay */
.pt-blog.pt-blog-col-1 .pt-post-media::after {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(17, 17, 17, .3);
}

/*===== 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 .pt-blog-contain {
     margin-bottom: 0;
}


/* CORRECT dark overlay */
.pt-blog.pt-blog-col-3 .pt-post-media::after {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(17, 17, 17, .3);
}

@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 {
     position: relative;
     display: grid;
     grid-template-columns: 1fr 2fr;
     align-items: center;
     padding: 30px;
     -webkit-border-radius: var(--pq--border-radius);
     -moz-border-radius: var(--pq--border-radius);
     border-radius: var(--pq--border-radius);
     gap: 30px;
     background-color: var(--grey-color);
     border: 1px solid transparent;
     transition: var(--transition);
     margin-bottom: 30px;
}

.pt-blog-post.pt-list:last-child {
     margin-bottom: 0;
}

.pt-blog-post.pt-list .pt-post-media img {
     height: 150px;
     object-fit: cover;
}

.pt-blog-post.pt-list .pt-post-media {
     border-radius: var(--pq--border-radius);
}

.pt-blog-post.pt-list .pt-blog-contain {
     padding: 0;
     background-color: none;
     margin-bottom: 0;
}

.pt-blog-post.pt-list .pt-blog-contain .pt-blog-title {
     font-size: 24px;
     line-height: 32px;
     transition: var(--transition);
}

.pt-blog-post.pt-list.pt-active .pt-blog-contain .pt-blog-title {
     color: var(--primary-color);
}

.pt-blog-post.pt-list .pt-btn-container {
     margin-top: 0;
}

.pt-blog-post.pt-list .pt-button {
     position: absolute;
     top: 20px;
     right: 30px;
     transition: var(--transition);
}

.pt-blog-post.pt-list.pt-active .pt-button {
     transform: rotate(-32deg);
     background: var(--primary-color);
}

@media(max-width:1279px) {
     .pt-blog-post.pt-list .pt-button {
          position: relative;
          top: inherit;
          right: inherit;
     }
}

@media(max-width:1023px) {
     .pt-blog-post.pt-list .pt-button {
          position: absolute;
          top: 20px;
          right: 30px;
     }
}

@media(max-width:767px) {
     .pt-blog-post.pt-list .pt-button {
          position: relative;
          top: inherit;
          right: inherit;
          margin-top: 20px;
     }
}

@media(max-width:575px) {
     .pt-blog-post.pt-list {
          display: block;
          padding: 0;
     }

     .pt-blog-post.pt-list .pt-post-media img {
          height: 100%;
     }

     .pt-blog-post.pt-list .pt-blog-contain {
          padding: 15px;
     }
}

/*===== single project css =====*/
.single-post .pt-blog-post {
     margin-bottom: 0;
}

.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 rgba(var(--dark-color-rgb), .2);
     border-top: 1px solid rgba(var(--dark-color-rgb), .2);
}

.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: capitalize;
     font-weight: 500;
     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: 18px;
     line-height: 26px;
     letter-spacing: 0.04em;
     text-transform: capitalize;
     font-family: var(--body-fonts);
     background: var(--grey-color);
     margin: 0;
     display: inline-block;
     float: left;
     color: var(--primary-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(--big-border-radius);
     -moz-border-radius: var(--big-border-radius);
     border-radius: var(--big-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: capitalize;
     font-weight: 500;
     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(--big-border-radius);
     -moz-border-radius: var(--big-border-radius);
     border-radius: var(--big-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(--pq--border-radius);
     -moz-border-radius: var(--pq--border-radius);
     border-radius: var(--pq--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(--pq--border-radius);
     -moz-border-radius: var(--pq--border-radius);
     border-radius: var(--pq--border-radius);
     border: 1px solid rgba(var(--dark-color-rgb), .2);
}

.pt-single-post-usernav .pt-user-info .pt-user-title {
     font-size: 24px;
     line-height: 32px;
     margin-bottom: 5px;
}

.pt-single-post-usernav .pt-user-info .pt-user-sub-title {
     text-transform: capitalize;
     color: var(--primary-color);
     font-size: 18px;
     line-height: 1.6;
}

.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;
}

@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-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;
     }
}

/*===== Single Project =====*/
.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(--pq--border-radius);
     -moz-border-radius: var(--pq--border-radius);
     border-radius: var(--pq--border-radius);
}

.single-post .pt-single-post-navigation {
     margin-bottom: 40px;
     margin-top: 30px;
}

.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;
     -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(--big-border-radius);
     -moz-border-radius: var(--big-border-radius);
     border-radius: var(--big-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: 24px;
     line-height: 32px;
}

.pt-single-post-nav-label {
     color: var(--dark-color);
     font-family: var(--title-fonts);
     font-size: 18px;
     line-height: 26px;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     transition: var(--transition);
}

.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: 20px;
          line-height: 28px;
     }

     .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;
     }
}


/* ========== Blog style-1 ========== */
.pt-blog.pt-style-1 .pt-blog-post {
     position: relative;
}

.pt-blog.pt-style-1 .pt-blog-post .pt-post-media img {
     aspect-ratio: 1 / 1.15;
}

.pt-blog.pt-style-1 .pt-blog-post .pt-post-media {
     margin-bottom: 0;

}

.pt-blog.pt-style-1 .pt-blog-post .pt-blog-contain .pt-blog-title {
     border-bottom: 1px solid rgba(var(--white-color-rgb), 0.1);
     padding-bottom: 20px;
     margin-bottom: 30px;
}

.pt-blog.pt-style-1 .pt-blog-post .pt-blog-contain .pt-blog-title a:hover {
     color: var(--accent-color);
}

.pt-blog.pt-style-1 .pt-blog-post .pt-blog-contain .pt-blog-title {
     font-size: 20px;
     line-height: 28px;
}

.pt-blog.pt-style-1 .pt-blog-post .pt-blog-contain .pt-blog-title,
.pt-blog.pt-style-1 .pt-blog-post .pt-post-meta ul li,
.pt-blog.pt-style-1 .pt-blog-post .pt-post-meta ul li a {
     color: var(--white-color);
}

.pt-blog.pt-style-1 .pt-blog-post .pt-blog-contain {
     opacity: 0;
     max-width: unset;
     position: absolute;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     bottom: 0;
     left: 0;
     right: 0;
     top: 0;
     padding: 30px;
     background: rgba(var(--dark-color-rgb), .6);
     will-change: opacity;
     border-radius: var(--pq--border-radius);
     transition: var(--transition);
}

.pt-blog.pt-style-1 .pt-blog-post .pt-blog-contain {
     opacity: 1;
}

.pt-blog.pt-style-1 .pt-blog-contain .pt-button.pt-button-link,
.pt-blog.pt-style-1 .pt-blog-contain .pt-button.pt-button-link i {
     color: var(--white-color);
}

.pt-blog.pt-style-1 .pt-blog-contain .pt-button.pt-button-link:hover,
.pt-blog.pt-style-1 .pt-blog-contain .pt-button.pt-button-link:hover i {
     color: var(--accent-color);
}

@media (max-width:397px) {
     .pt-blog.pt-style-1 .pt-blog-post .pt-post-media img {
          aspect-ratio: 1 / 1.4;
     }
}

/*================================================
Isotope Portfolio
================================================*/
.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: 20px;
     line-height: 28px;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     list-style: none;
     color: var(--dark-color);
     display: inline-block;
     cursor: pointer;
     padding: 8px 24px;
     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(--dark-color);
     color: var(--white-color);
     -webkit-border-radius: var(--big-border-radius);
     -moz-border-radius: var(--big-border-radius);
     border-radius: var(--big-border-radius);
}

.pt-filters .pt-filter-button-group ul li:hover {
     color: var(--dark-color);
}

/*===== Portfolio Grid =====*/
.pt-grid {
     display: inline-block;
     width: 100%;
     float: left;
}

.pt-grid:after {
     content: '';
     display: block;
     clear: both;
}

.pt-grid .pt-col-3 {
     width: 25%;
     padding: 0 15px 30px;
}

.pt-grid .pt-col-6 {
     width: 50%;
     padding: 0 15px 30px;
}

.pt-grid .pt-col-4 {
     width: 33.33%;
     padding: 0 15px 30px;
}

@media(max-width:1199px) {
     .pt-grid .pt-col-3 {
          width: 33.333%;
     }
}

@media(max-width:1023px) {

     .pt-grid .pt-col-4,
     .pt-grid .pt-col-3 {
          width: 50%;
     }
}

@media(max-width:767px) {

     .pt-grid .pt-col-6,
     .pt-grid .pt-col-4,
     .pt-grid .pt-col-3 {
          width: 100%;
          padding: 0 0 30px;
     }
}

/*===== Portfolio Masonry =====*/
.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-4 {
     width: 33.333%;
     padding: 0 15px 30px;
}

.pt-masonry .ipt-lg-3 {
     width: 25%;
     padding: 0 15px 30px;
}

.pt-masonry-item.visible_item {
     display: none !important;
}

.pt-grid-item.visible_item {
     display: none !important;
}

.pt-job-item.visible_item {
     display: none !important;
}

.pt-job-grid-item.visible_item {
     display: none !important;
}

@media(max-width:1199px) {
     .pt-masonry .ipt-lg-3 {
          width: 33.333%;
     }
}

@media(max-width:1023px) {

     .pt-masonry .ipt-lg-4,
     .pt-masonry .ipt-lg-3 {
          width: 50%;
     }
}

@media(max-width:767px) {

     .pt-masonry .ipt-lg-6,
     .pt-masonry .ipt-lg-4,
     .pt-masonry .ipt-lg-3 {
          width: 100%;
          padding: 0 0 30px;
     }
}

/*================================================
Portfolio
================================================*/
.pt-hover-bellow {
     position: relative;
}

.pt-hover-bellow .pt-portfolio-img {
     overflow: hidden;
     border-radius: var(--pq--border-radius);
}

.pt-hover-bellow .pt-portfolio-img img {
     transition: var(--transition);
}

.pt-hover-bellow:hover .pt-portfolio-img img {
     transform: scale(1.1);
     -webkit-transform: scale(1.1);
}

.pt-hover-bellow .pt-potfolio-content {
     margin-top: 30px;
}

.pt-hover-bellow .pt-potfolio-content .pt-portfolio-category {
     color: var(--secondary-color);
}

.pt-hover-bellow .pt-potfolio-content .pt-portfolio-category a {
     color: var(--secondary-color);
}

.pt-hover-bellow .pt-potfolio-content .pt-portfolio-title a:hover {
     color: var(--dark-color);
}

.pt-hover-bellow .pt-potfolio-content .pt-button {
     margin-top: 15px;
}

/*===== Portfolio Fade =====*/
.pt-hover-fade {
     position: relative;
}

.pt-hover-fade .pt-portfolio-img {
     overflow: hidden;
     border-radius: var(--pq--border-radius);
     margin-bottom: 0;
}

.pt-hover-fade .pt-portfolio-img img {
     transition: var(--transition);
}

.pt-hover-fade:hover .pt-portfolio-img img {
     transform: scale(1.1);
     -webkit-transform: scale(1.1);
}

.pt-hover-fade .pt-potfolio-content {
     opacity: 0;
     max-width: unset;
     position: absolute;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     bottom: 0;
     left: 0;
     right: 0;
     top: 0;
     padding: 30px;
     background: #063036;
     background: linear-gradient(0deg, rgba(6, 48, 54, 1) 20%, rgba(6, 48, 54, 0) 100%);
     will-change: opacity;
     border-radius: var(--pq--border-radius);
     transition: var(--transition);
}

.pt-hover-fade:hover .pt-potfolio-content {
     opacity: 1;
}

.pt-hover-fade .pt-potfolio-content .pt-portfolio-category {
     font-size: 18px;
     line-height: 26px;
     letter-spacing: 0.04em;
     font-weight: 400;
     text-transform: uppercase;
     font-family: var(--title-fonts);
     color: var(--white-color);
     margin-bottom: 5px;
}

.pt-hover-fade .pt-potfolio-content .pt-portfolio-category a {
     color: var(--primary-color);
}

.pt-hover-fade .pt-potfolio-content .pt-portfolio-title a {
     color: var(--white-color);
}

.pt-hover-fade .pt-potfolio-content .pt-button-rounded {
     position: absolute;
     top: 30px;
     right: 30px;
     z-index: 1;
     transition: var(--transition);
     transform: scale(0);
     -webkit-transform: scale(0);
     -moz-transform: scale(0);
     background-color: var(--primary-color);
}

.pt-hover-fade:hover .pt-potfolio-content .pt-button-rounded {
     transform: scale(1);
     -webkit-transform: scale(1);
     -moz-transform: scale(1);
}

.pt-hover-fade .pt-potfolio-content .pt-button-rounded i {
     color: var(--dark-color);
}

.pt-hover-fade .pt-potfolio-content .pt-button-rounded i::before {
     line-height: inherit;
}

.pt-hover-fade:hover .pt-potfolio-content .pt-button-rounded i {
     color: var(--dark-color);
}

.pt-hover-fade .pt-post-link {
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     z-index: 9;
}

/*===== Portfolio Slide =====*/
.pt-hover-slide {
     position: relative;
     border-radius: var(--pq--border-radius);
     overflow: hidden;
}

.pt-hover-slide .pt-portfolio-img {
     overflow: hidden;
     position: relative;
     border-radius: var(--pq--border-radius);
}

.pt-hover-slide .pt-portfolio-img img {
     transition: var(--transition);
}

.pt-hover-slide:hover .pt-portfolio-img img {
     transform: scale(1.1);
     -webkit-transform: scale(1.1);
}

.pt-hover-slide .pt-potfolio-content {
     position: absolute;
     left: 30px;
     right: 30px;
     bottom: 30px;
     background: rgba(var(--primary-color-rgb), .7);
     backdrop-filter: blur(10px);
     padding: 30px;
     border-radius: var(--pq--border-radius);
     transition: var(--transition);
     transform: scale(0.9);
     -webkit-transform: scale(0.9);
     -moz-transform: scale(0.9);
     opacity: 0;
     z-index: 9;
     -webkit-box-shadow: 0px 0px 25px 0px rgba(4, 20, 36, 0.1);
     -moz-box-shadow: 0px 0px 25px 0px rgba(4, 20, 36, 0.1);
     box-shadow: 0px 0px 25px 0px rgba(4, 20, 36, 0.1);
}

.pt-hover-slide:hover .pt-potfolio-content {
     opacity: 1;
     transform: scale(1);
     -webkit-transform: scale(1);
     -moz-transform: scale(1);
}

.pt-hover-slide .pt-potfolio-content .pt-portfolio-category a {

     text-transform: capitalize;
     color: var(--white-color);
     font-family: var(--title-fonts);
     display: inline-block;
     letter-spacing: 0.04em;
     margin-bottom: 5px;
     align-items: center;
     font-size: 18px;
     line-height: 1em;
}

.pt-potfolio-content .pt-portfolio-title {
     color: var(--white-color);
}

.pt-potfolio-content .pt-portfolio-title a:hover {
     color: var(--accent-color);
}

.pt-potfolio-content .pt-button {
     margin-top: 15px;
}

@media(max-width:1199px) {
     .pt-hover-slide .pt-potfolio-content {
          left: 15px;
          right: 15px;
          bottom: 15px;
     }
}

@media(max-width:767px) {
     .pt-hover-slide .pt-potfolio-content {
          opacity: 1;
          transform: scale(1);
          -webkit-transform: scale(1);
          -moz-transform: scale(1);
     }

     .pt-hover-slide .pt-potfolio-content .pt-portfolio-title {
          font-size: 24px;
          line-height: 32px;
     }
}

/*===== Portfolio Load More Button =====*/
.pt-loadmore-button {
     margin: 10px 0 0 0;
     display: inline-block;
     width: 100%;
}

.pt-loadmore-button .pt-button.pt-button-flat {
     background-color: var(--dark-color);
     color: var(--white-color);
     transition: var(--transition);
}

.pt-loadmore-button .pt-button.pt-button-flat i {
     color: var(--white-color);
     transition: var(--transition);
     display: none;
}

.pt-loadmore-button .pt-button.pt-button-flat:hover {
     background-color: var(--primary-color);
     color: var(--white-color);
}


/*===== Portfolio End Message =====*/
.pt-end-meassge {
     color: var(--dark-color);
     text-align: center;
     background: var(--grey-color);
     padding: 10px;
     text-transform: uppercase;
     font-family: var(--title-fonts);
     font-size: 18px;
     line-height: 26px;
     letter-spacing: 0.04em;
     border-radius: var(--pq--border-radius);
     display: none;
}

.visible {
     display: block;
}

/*===== Portfolio Loader Icon =====*/
#pt-loaderIcon {
     display: none;
     text-align: center;
     margin: 20px auto;
}

.pt-dots {
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 30px;
}

.pt-dot {
     width: 12px;
     height: 12px;
     background-color: #333;
     border-radius: 50%;
     animation: bounce 1.4s infinite ease-in-out both;
}

.pt-dot:nth-child(1) {
     animation-delay: -0.32s;
}

.pt-dot:nth-child(2) {
     animation-delay: -0.16s;
}

@keyframes bounce {

     0%,
     80%,
     100% {
          transform: scale(0);
     }

     40% {
          transform: scale(1);
     }
}

/*================================================
Service Box
================================================*/

/* ========== Service style 1 ========== */

.pt-service-box-list {
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 30px;
}

.pt-service-box.pt-style-1 {
     position: relative;
     padding: 45px;
     background-color: var(--white-color);
     border-radius: var(--pq--border-radius);
     transition: var(--transition);
}

.pt-service-box.pt-style-1 .pt-service-icon {
     font-size: 70px;
     line-height: 1;
     display: inline-block;
     color: var(--primary-color);
     margin-bottom: 30px;
     transition: var(--transition);
}

.pt-service-box.pt-style-1 .pt-service-title {
     margin-bottom: 10px;
     transition: var(--transition);
}

.pt-service-box.pt-style-1 .pt-service-box-description {
     margin-bottom: 45px;
     padding-bottom: 45px;
     border-bottom: 1px solid rgba(var(--dark-color-rgb), .1);
     color: var(--secondary-color);
     transition: var(--transition);
}

/* ===== Hover Active ===== */
.pt-service-box.pt-style-1.pt-active {
     background-color: var(--primary-color);

}

.pt-active-color .pt-service-box.pt-style-1.pt-active {
     background-color: var(--primary-color);

}

.pt-service-box.pt-style-1.pt-active .pt-service-icon {
     color: var(--accent-color);
     transform: rotateY(180deg);
}

.pt-service-box.pt-style-1.pt-active .pt-service-title {
     color: var(--white-color);
}

.pt-service-box.pt-style-1.pt-active .pt-service-box-description {
     color: var(--white-color);
     border-color: rgba(var(--white-color-rgb), 0.1);
}

.pt-service-box.pt-style-1.pt-active .pt-button.pt-button-link,
.pt-service-box.pt-style-1.pt-active .pt-button.pt-button-link i {
     color: var(--accent-color);
}

.pt-service-box.pt-style-1.pt-active .pt-button.pt-button-link:hover,
.pt-service-box.pt-style-1.pt-active .pt-button.pt-button-link:hover i {
     color: var(--accent-color);
}

@media (max-width:1365px) {
     .pt-service-box.pt-style-1 {
          padding: 45px 30px;
     }
}

@media (max-width:1200px) {
     .pt-service-box-list {
          grid-template-columns: 1fr 1fr;
     }
}

@media (max-width:767px) {
     .pt-service-box-list {
          grid-template-columns: 1fr;
     }

     .pt-service-box.pt-style-1 .pt-service-icon {
          margin-bottom: 20px;
          font-size: 56px;
     }

     .pt-service-box.pt-style-1 .pt-service-box-description {
          margin-bottom: 30px;
          padding-bottom: 30px;
     }
}

@media (max-width:397px) {
     .pt-service-box.pt-style-1 {
          padding: 30px 20px;
     }
}


/* ========== Service style 2 ========== */

.pt-service-box.pt-style-2 {
     position: relative;
     border-radius: var(--pq--border-radius);
}

.pt-service-box.pt-style-2 .pt-service-image,
.pt-service-box.pt-style-2 .pt-service-image img {
     width: 100%;
     height: 550px;
     object-fit: cover;
     border-radius: var(--pq--border-radius);
}

.pt-service-box.pt-style-2 .pt-service-content {
     position: absolute;
     top: 60px;
     right: 60px;
     padding: 120px 30px 45px;
     max-width: 400px;
     min-width: 210px;
     background-color: var(--white-color);
     border-radius: var(--pq--border-radius);
     transition: var(--transition);
     opacity: 0;
}

.pt-service-box-slider-2 .owl-item.center .pt-service-box.pt-style-2 .pt-service-content {
     opacity: 1;
}

.pt-service-box.pt-style-2 .pt-service-content .pt-service-number {
     position: absolute;
     top: -60px;
     right: 75px;
     background: var(--accent-color);
     border-radius: 0 0 15px 15px;
     padding: 90px 10px 10px;
     font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem);
     line-height: 1.25;
     font-weight: 600;
     color: var(--dark-color);
     transition: var(--transition);
}

.pt-service-box.pt-style-2 .pt-service-content .pt-service-title {
     font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2rem);
     line-height: 1.25;
     color: var(--dark-color);
     margin-bottom: 10px;
     transition: var(--transition);
}

.pt-service-box.pt-style-2 .pt-service-content .pt-service-desc {
     margin: bottom 30px;
     color: var(--secondary-color);
     transition: var(--transition);
}

@media (max-width:1679px) {
     .pt-service-box.pt-style-2 .pt-service-content {
          right: 30px;
          margin-left: 30px;
     }

     .pt-service-box.pt-style-2 .pt-service-content .pt-service-number {
          right: 60px;
     }
}

@media (max-width:1279px) {
     .pt-service-box.pt-style-2 .pt-service-content {
          padding: 90px 30px 45px;
     }

     .pt-service-box.pt-style-2 .pt-service-content .pt-service-number {
          top: -60px;
          padding: 75px 10px 10px;
     }
}

@media (max-width:767px) {

     .pt-service-box.pt-style-2 .pt-service-image,
     .pt-service-box.pt-style-2 .pt-service-image img {
          height: 500px;
     }
}

@media (max-width:397px) {

     .pt-service-box.pt-style-2 .pt-service-content {
          padding: 75px 20px 30px;
          right: 20px;
          margin-left: 20px;
     }

     .pt-service-box.pt-style-2 .pt-service-image,
     .pt-service-box.pt-style-2 .pt-service-image img {
          height: 530px;
     }
}

/*================================================
Video Popup 
================================================*/

/* ========== video popup style 1 ========== */

.pt-video-popup {
     position: relative;
}

.pt-video-popup .pt-video-popup-img img {
     width: 100%;
     object-fit: cover;
     border-radius: var(--pq--border-radius);
}

.pt-video-popup .pt-popup-animation {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
}

.pt-popup-animation.pt-style-1 .pt-popup-content {
     height: 90px;
     width: 90px;
     line-height: 95px;
     text-align: center;
     border-radius: var(--big-border-radius);
     backdrop-filter: blur(20px);
     display: inline-block;
     background: rgba(var(--primary-color-rgb), .6);
     color: var(--white-color);
     font-size: 20px;
}

.mfp-wrap .mfp-close {
     padding: 0;
     top: -50px;
     right: 0;
     font-size: 32px;
     opacity: 1;
     height: 50px;
     width: 50px;
     line-height: 50px;
     text-align: center;
     font-family: var(--body-fonts);
     color: var(--white-color);
     background-color: var(--primary-color);
     position: absolute;
     letter-spacing: 0;
     font-weight: 400;
}

.popup-youtube,
.popup-youtube:hover {
     color: var(--white-color);
}

@media(max-width:1500px) {
     .pt-video-popup .pt-video-popup-img img {
          border-radius: 0;
     }
}

@media(max-width:767px) {
     .pt-video-popup .pt-video-popup-img img {
          height: 350px;
     }
}

/*================================================
Testimonial
================================================*/

/*=====  Testimonial-box Style 1  =====*/

.pt-testimonial-box.pt-style-1 {
     background: var(--grey-color);
     padding: 30px;
     border-radius: var(--pq--border-radius);
     position: relative;
     z-index: 1;
     transition: var(--transition);
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-star {
     position: absolute;
     bottom: 45px;
     right: 30px;
     color: #FFC700;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-description {
     margin-bottom: 0;
     transition: var(--transition);
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-star i {
     font-size: 18px;
     line-height: 26px;
     letter-spacing: 5px;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media {
     position: relative;
     margin-top: 30px;
     padding-top: 30px;
     display: grid;
     grid-template-columns: auto 1fr;
     gap: 15px;
     align-items: center;
     border-top: 1px solid rgba(var(--dark-color-rgb), .1);
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-author-details .pt-testimonial-author-name {
     font-size: clamp(20px, 2vw, 22px);
     line-height: 1.26;
     transition: var(--transition);
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-author-details .pt-testimonial-author-designation {
     font-size: 18px;
     line-height: 26px;
     letter-spacing: 0.04em;
     color: var(--primary-color);
     transition: var(--transition);
}


.pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-author-img {
     border-radius: var(--big-border-radius);
     overflow: hidden;
     object-fit: cover;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-author-img img {
     height: 70px;
     width: 70px;
     object-fit: cover;
}

@media (max-width:1023px) {
     .pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-star {
          position: relative;
          bottom: inherit;
          right: inherit;
          margin-bottom: 5px;
     }
}

@media (max-width: 397px) {
     .pt-testimonial-box.pt-style-1 {
          padding: 30px 15px 30px;
     }
}


/*====== Testimonial Box List ======*/

.pt-testimonial-box-list {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
}

.pt-testimonial-box.pt-style-1.pt-active {
     background-color: var(--primary-color);
}

.pt-testimonial-box.pt-style-1.pt-active .pt-testimonial-content .pt-testimonial-description {
     color: rgba(var(--white-color-rgb), 0.9);
}

.pt-testimonial-box.pt-style-1.pt-active .pt-testimonial-media {
     border-color: rgba(var(--white-color-rgb), 0.1);
}

.pt-testimonial-box.pt-style-1.pt-active .pt-testimonial-media .pt-testimonial-author-details .pt-testimonial-author-name {
     color: var(--white-color);
}

.pt-testimonial-box.pt-style-1.pt-active .pt-testimonial-media .pt-testimonial-author-details .pt-testimonial-author-designation {
     color: var(--white-color);
}

@media (max-width: 767px) {
     .pt-testimonial-box-list {
          grid-template-columns: 1fr;
     }
}

/*=====  Testimonial-box slider Style 4  =====*/

.pt-testimonial-box-slider.style-4 {
     margin: 0 -10%;
}

.pt-testimonial-box-slider.style-4 .pt-testimonial-box.pt-style-4 {
     border-radius: var(--pq--border-radius);
     position: relative;
     background-color: var(--white-color);
     padding: 45px;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-media {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 60px;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-media .pt-testimonial-author-img img {
     width: 65px;
     height: 65px;
     border-radius: var(--pq--border-radius);
     object-fit: cover;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-media .pt-testimonial-author-details .pt-testimonial-author-name {
     font-size: 22px;
     line-height: 30px;
     color: var(--dark-color);
}


.pt-testimonial-box.pt-style-4 .pt-testimonial-media .pt-testimonial-author-details .pt-testimonial-author-designation {
     font-size: 18px;
     line-height: 26px;
     color: var(--secondary-color);
     letter-spacing: 1;
}


.pt-testimonial-box.pt-style-4 .pt-testimonial-description {
     margin-bottom: 30px;
     color: var(--secondary-color);
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-star i {
     margin-right: 7px;
     font-size: 16px;
     color: #FBB622;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-star i:last-child {
     margin-right: 0;
}

.pt-testimonial-box-slider.style-4 .owl-carousel .owl-dots .owl-dot.active {
     background: var(--primary-color);
     border-color: var(--primary-color);
}


@media(max-width:1460px) {
     .pt-testimonial-box-slider.style-4 {
          margin: 0;
     }

}

@media(max-width:767px) {
     .pt-testimonial-box-slider.style-4 .pt-testimonial-box.pt-style-4 {
          padding: 30px 20px;
     }

     .pt-testimonial-box.pt-style-4 .pt-testimonial-media {
          margin-bottom: 40px;
     }
}

@media(max-width:397px) {

     .pt-testimonial-box.pt-style-4 .pt-testimonial-media {
          margin-bottom: 30px;
          flex-direction: column;
          align-items: flex-start;

     }
}

/*================================================
Recent Post
================================================*/

.pt-recent-post {
     display: flex;
     align-items: center;
     margin-bottom: 30px;
}

.pt-recent-post:last-child {
     margin-bottom: 0;
     padding: 0;
     border: none;
}

.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(--pq--border-radius);
     -moz-border-radius: var(--pq--border-radius);
     border-radius: var(--pq--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(--body-fonts);
     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: 18px;
     line-height: 1.6;
     margin-bottom: 5px;
     overflow: hidden;
     text-overflow: ellipsis;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
}

.pt-recent-post .pt-recent-post-info h6 a:hover {
     color: var(--primary-color);
}

@media(max-width:397px) {
     .pt-recent-post .pt-recent-post-info h6 {
          font-size: 18px;
          line-height: 26px;
     }
}

/*================================================
  Our Team
================================================*/

/*====== Team-box style-1 ======*/
.pt-team-box.pt-style-1 {
     overflow: hidden;
     position: relative;
     background-color: var(--white-color);
     border-radius: var(--pq--border-radius);
     transition: var(--transition);
}

.pt-team-box.pt-style-1 .pt-team-image-wrapper {
     position: relative;
}

.pt-team-box.pt-style-1 .pt-team-image-wrapper .pt-team-media {
     position: relative;
     overflow: hidden;
     border-radius: var(--pq--border-radius);
}

.pt-team-box.pt-style-1 .pt-team-image-wrapper .pt-team-media img {
     border-radius: var(--pq--border-radius);
     width: 100%;
     object-fit: cover;
     transition: var(--transition);
}

.pt-team-box.pt-style-1 .pt-team-image-wrapper .pt-team-media:hover img {
     transform: scale(1.1);
}

.pt-team-box.pt-style-1 .pt-team-media::after {
     content: "";
     position: absolute;
     inset: auto 0 0 0;
     height: 45%;
     background: linear-gradient(to top,
               rgba(209, 234, 103, 0.95),
               rgba(209, 234, 103, 0.5),
               rgba(209, 234, 103, 0));
     transform: scaleY(0);
     transform-origin: bottom;
     transition: transform 0.4s ease;
}

.pt-team-box.pt-style-1:hover .pt-team-media::after {
     transform: scaleY(1);
}


.pt-team-box.pt-style-1 .pt-team-social {
     position: absolute;
     top: 30px;
     left: 30px;
     display: flex;
     flex-direction: column;
     z-index: 2;
     align-items: center;
}

.pt-team-box.pt-style-1 .pt-team-social .pt-social-icon i {
     display: inline-block;
     border-radius: 15px 15px 15px 15px;
     padding: 10px 15px 10px 15px;
     width: 48px;
     height: 45px;
     line-height: 1.3;
     text-align: center;
     transition: var(--transition);
     color: var(--white-color);
     background-color: var(--dark-color);
}

.pt-team-box.pt-style-1:hover .pt-team-social .pt-social-icon i {
     border-radius: 15px 15px 0 0;
}

.pt-team-box.pt-style-1 .pt-team-social .pt-social-icon-wrap {
     list-style: none;
     margin: 0;
     align-items: center;
     padding: 0px 15px 15px 15px;
     text-align: center;
     transition: var(--transition);
     opacity: 0;
     transform: translateY(-10px);
     transition: transform 0.5s ease, opacity 0.5s ease;
     border-radius: 0 0 15px 15px;
     background-color: var(--dark-color);
}

.pt-team-box.pt-style-1 .pt-team-social .pt-social-icon-wrap li {
     margin-bottom: 5px;
}

.pt-team-box.pt-style-1 .pt-team-social .pt-social-icon-wrap li:last-child {
     margin-bottom: 0;
}

.pt-team-box.pt-style-1:hover .pt-team-social .pt-social-icon-wrap {
     opacity: 1;
     transform: translateY(0);

}

.pt-team-box.pt-style-1 .pt-team-social .pt-social-icon-wrap li a {
     color: var(--white-color);
     transition: all 0.3s ease;
}

.pt-team-box.pt-style-1 .pt-team-social .pt-social-icon-wrap li a:hover {
     color: var(--accent-color);
}

.pt-team-box.pt-style-1 .pt-team-social .pt-social-icon-wrap li a i::before {
     line-height: inherit;
}

.pt-team-box.pt-style-1 .pt-team-info {
     padding: 30px;
}

.pt-team-box.pt-style-1 .pt-team-info .pt-team-designation {
     color: var(--secondary-color);
     font-size: 18px;
     line-height: 26px;
     letter-spacing: 0.04em;
}

.pt-team-box.pt-style-1 .pt-team-info .pt-team-name {
     color: var(--dark-color);
     font-size: 22px;
     line-height: 30px;
}

@media(max-width:767px) {
     .pt-team-box.pt-style-1 .pt-team-image-wrapper .pt-team-media img {
          aspect-ratio: inherit;
     }
}

/*================================================
Price Plan
================================================*/
.pt-price-plan.pt-style-1 {
     background: var(--grey-color);
     padding: 40px;
     border-radius: var(--pq--border-radius);
}

.pt-price-plan.pt-style-1 .pt-price-sub-title {
     margin: 5px 0 15px;
     display: inline-block;
     width: 100%;
}

.pt-price-plan.pt-style-1 .pt-price-list {
     padding: 0;
     margin: 20px 0 40px;
     display: flex;
     gap: 10px;
     flex-direction: column;
}

.pt-price-plan.pt-style-1 .pt-price-list li {
     display: flex;
     gap: 10px;
     align-items: center;
}

.pt-price-plan.pt-style-1 .pt-price-list li i {
     color: var(--primary-color);
     font-size: 18px;
}

.pt-price-plan.pt-style-1 .pt-price {
     border-bottom: 1px solid rgba(var(--dark-color-rgb), .2);
     padding-bottom: 20px;
     margin-bottom: 20px;
     font-family: var(--title-fonts);
}

.pt-price-plan.pt-style-1 .pt-price-month {
     text-transform: capitalize;
     color: var(--dark-color);
     font-family: var(--body-fonts);
}

.pt-price-plan.pt-style-1 .pt-amount {
     font-size: 48px;
     color: var(--dark-color);
     line-height: 1.2;
}

.pt-price-plan.pt-style-1.pt-active {
     background: var(--dark-color);
     color: var(--white-color);
}

.pt-price-plan.pt-style-1.pt-active .pt-price-title,
.pt-price-plan.pt-style-1.pt-active .pt-price-sub-title,
.pt-price-plan.pt-style-1.pt-active .pt-amount,
.pt-price-plan.pt-style-1.pt-active .pt-price-month,
.pt-price-plan.pt-style-1.pt-active .pt-price-list li i {
     color: var(--white-color);
}

.pt-price-plan.pt-style-1.pt-active .pt-price {
     border-bottom: 1px solid rgba(var(--white-color-rgb), .2);
}

@media(max-width:1199px) {
     .pt-price-plan.pt-style-1 {
          padding: 30px;
     }
}

@media (max-width:767px) {
     .pt-price-plan.pt-style-1 .pt-amount {
          font-size: 28px;
          line-height: 36px;
     }
}

@media (max-width:397px) {
     .pt-price-plan.pt-style-1 {
          padding: 30px 15px;
     }
}

/*================================================
   Tabs
================================================*/

/*===== pt-tabs-1=====*/
.pt-tabs-1-main {
     position: relative;
}

.pt-tabs-1 .nav-tabs {
     gap: 20px;
     width: 80%;
     border: none;
}

.pt-tabs-1 .nav-tabs .nav-item {
     border: none;
     position: relative;
     flex: 1;
     font-size: 18px;
     line-height: 26px;
     letter-spacing: 0.04em;
     text-transform: capitalize;
     text-align: center;
     color: var(--white-color);
     background: var(--dark-color);
     font-family: var(--title-fonts);
     transition: none;
     padding: 10px 20px;
     border-radius: var(--big-border-radius);
     transition: var(--transition);
}

.pt-tabs-1 .nav-tabs .nav-item.active {
     background-color: var(--accent-color);
     color: var(--dark-color);
}

.pt-tabs-1 .nav-tabs .nav-item:last-child {
     margin-right: 0;
}

.pt-tabs-1 .nav-tabs .nav-item span {
     display: inline-block;
     width: 100%;
}

.pt-tabs-1 .nav-tabs .nav-item.active span {
     position: relative;
}

.pt-tabs-1 .nav-tabs .nav-item.active:after {
     opacity: 1;
     border-top-color: var(--primary-color);
}

.pt-tabs-1 .pt-tab-info {
     position: relative;
}

.pt-tab-info .pt-image-block {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 30px;
     align-items: center;
}

.pt-tab-info .pt-image-block .pt-tab-main-image {
     position: relative;
     overflow: hidden;
     height: 100%;
     width: 100%;
}

.pt-tab-info .pt-image-block .pt-tab-main-image::after {
     content: "";
     position: absolute;
     width: 200%;
     height: 0%;
     left: 50%;
     top: 50%;
     background-color: rgba(255, 255, 255, .3);
     transform: translate(-50%, -50%) rotate(-45deg);
     z-index: 1;
}

.pt-tab-info .pt-image-block .pt-tab-main-image:hover::after {
     height: 250%;
     transition: all 0.5s linear !important;
     background-color: transparent;
}

.pt-tab-info .pt-image-block .pt-tab-main-image img {
     transform: scale(1);
     transition: all 0.5s linear !important;
}

.pt-tab-info .pt-image-block .pt-tab-main-image:hover img {
     transform: scale(1.1);
}

.pt-tabs-1 .tab-content {
     position: relative;
     margin-top: 40px;
     padding-top: 40px;
     border-top: 1px solid rgba(var(--dark-color-rgb), .15);
}

.pt-tabs-1 .pt-tab-main-image img {
     border-radius: var(--pq--border-radius);
     width: 100%;
     height: 100%;
     min-height: 200px;
     object-fit: cover;
}

.pt-tabs-1 .pt-tabs-subtitle {
     font-size: 16px;
     line-height: 24px;
     font-weight: 400;
     text-transform: uppercase;
     color: var(--primary-color);
     overflow: hidden;
}

.pt-tabs-1 .pt-tabs-icon {
     margin-bottom: 15px;
}

.pt-tabs-1 .pt-tabs-icon i {
     color: #E9B500;
     margin-right: 10px;
     font-size: 16px;
     line-height: 24px;
}

.pt-tabs-1 .pt-tabs-icon i:last-child {
     margin-right: 0;
}

.pt-tabs-1 .pt-tab-price {
     font-size: 24px;
     line-height: 32px;
     color: var(--primary-color);
     margin-bottom: 10px;
}

.pt-tabs-1 .pt-tabs-title {
     margin-bottom: 10px;
     font-size: clamp(1.375rem, 0.9rem + 1.2vw, 1.75rem);
     line-height: 1.4;

}

.pt-tabs-1 .pt-tabs-description {
     margin-bottom: 30px;
}

.pt-tabs-1 .pt-tab-info .pt-title-list {
     padding: 0;
     margin: 0;
     list-style: none;
}

.pt-tabs-1 .pt-tab-info .pt-button {
     margin-top: 40px;
}

.pt-tabs-1 .pt-tab-info .pt-title-list li {
     color: var(--dark-color);
     margin-bottom: 15px;
     font-family: var(--title-fonts);
     display: flex;
     align-items: self-start;
     gap: 15px;
     font-size: 18px;
     line-height: 28px;
}

.pt-tabs-1 .pt-tab-info .pt-title-list li:last-child {
     margin-bottom: 0;
}

.pt-tabs-1 .pt-tab-info .pt-title-list li i {
     color: var(--primary-color);
     font-size: 18px;
     line-height: 26px;
}

.pt-tabs-1 .pt-tab-info .pt-title-list li i:before {
     line-height: inherit;
}

.pt-tabs-1-main .pt-tab-img-info {
     width: 100%;
}

.pt-tabs-1-main .pt-tab-img-info .pt-tab-main-image {
     width: 100%;
     position: relative;
     overflow: hidden;
}

.pt-tabs-1-main .pt-tab-img-info .pt-tab-main-image::after {
     content: "";
     position: absolute;
     width: 200%;
     height: 0%;
     left: 50%;
     top: 50%;
     background-color: rgba(255, 255, 255, .3);
     transform: translate(-50%, -50%) rotate(-45deg);
     z-index: 1;
}

.pt-tabs-1-main .pt-tab-img-info .pt-tab-main-image:hover::after {
     height: 250%;
     transition: all 0.5s linear !important;
     background-color: transparent;
}

.pt-tabs-1-main .pt-tab-img-info .pt-tab-main-image img {
     border-radius: var(--pq--border-radius);
     width: 100%;
     height: 427px;
     object-fit: cover;
     object-position: top center;

}

@media(max-width:1365px) {
     .pt-tabs-1 .nav-tabs {
          width: 100%;
     }
}

@media(max-width:1200px) {
     .pt-tabs-1 .nav-tabs .nav-item {
          flex: 1 1 auto;
     }
}

@media(max-width:767px) {
     .pt-tabs-1 .nav-tabs {
          margin-bottom: 30px;
     }

     .pt-tabs-1 .pt-tabs-description {
          margin-bottom: 20px;
     }
}

@media(max-width:576px) {
     .pt-tab-info .pt-image-block {
          grid-template-columns: 1fr;
          gap: 20px;
     }
}

/*================================================
  image Gallary
================================================*/

/* ====== image Gallary ====== */
.pt-page-gallery-box .gallery-item img {
     aspect-ratio: 1 / 0.77;
     object-fit: cover;
}

.pt-page-gallery-box .gallery-icon {
     position: relative;
     overflow: hidden;
     border-radius: 20px;
}

.pt-page-gallery-box .gallery-icon a:after {
     content: "";
     position: absolute;
     width: 200%;
     height: 0%;
     left: 50%;
     top: 50%;
     background-color: rgba(255, 255, 255, .3);
     transform: translate(-50%, -50%) rotate(-45deg);
     z-index: 1;
}

.pt-page-gallery-box .gallery-icon a:hover:after {
     height: 250%;
     transition: all 600ms linear;
     background-color: transparent;
}

.gallery.gallery-columns-2,
.gallery.gallery-columns-3,
.gallery.gallery-columns-4,
.gallery.gallery-columns-5,
.gallery.gallery-columns-6,
.gallery.gallery-columns-7,
.gallery.gallery-columns-8,
.gallery.gallery-columns-9 {
     display: flex;
     flex-wrap: wrap;
}

div:not(.elementor-image-gallery) .gallery .gallery-item {
     margin-right: 30px;
     margin-bottom: 30px;
}

div:not(.elementor-image-gallery) .gallery .gallery-item img {
     width: 100%;
     height: auto;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-1 .gallery-item {
     width: 100%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-2 .gallery-item {
     width: calc(50% - 15px);
}

.elementor-image-gallery .gallery.gallery-columns-2 figure.gallery-item {
     width: 50%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-2 .gallery-item:nth-of-type(2n + 2) {
     margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item {
     width: calc(33.33% - 20px);
}

.elementor-image-gallery .gallery.gallery-columns-3 figure.gallery-item {
     width: 33.33%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n + 3) {
     margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item {
     width: calc(25% - 22.5px);
}

.elementor-image-gallery .gallery.gallery-columns-4 figure.gallery-item {
     width: 25%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n + 4) {
     margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item {
     width: calc(20% - 24px);
}

.elementor-image-gallery .gallery.gallery-columns-5 figure.gallery-item {
     width: 20%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item:nth-of-type(5n + 5) {
     margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item {
     width: calc(16.66% - 25px);
}

.elementor-image-gallery .gallery.gallery-columns-6 figure.gallery-item {
     width: 16.66%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item:nth-of-type(6n + 6) {
     margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item {
     width: calc(14.28% - 25.7px);
}

.elementor-image-gallery .gallery.gallery-columns-7 figure.gallery-item {
     width: 14.28%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item:nth-of-type(7n + 7) {
     margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item {
     width: calc(12.5% - 26.25px);
}

.elementor-image-gallery .gallery.gallery-columns-8 figure.gallery-item {
     width: 12.5%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item:nth-of-type(8n + 8) {
     margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item {
     width: calc(11.11% - 26.66px);
}

.elementor-image-gallery .gallery.gallery-columns-9 figure.gallery-item {
     width: 11.11%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item:nth-of-type(9n + 9) {
     margin-right: 0;
}

.elementor-image-gallery .gallery.gallery-columns-10 figure.gallery-item {
     width: 10%;
}

@media only screen and (max-width: 991px) {

     div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item,
     div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item,
     div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item,
     div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item,
     div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item,
     div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item,
     div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item {
          width: calc(50% - 15px);
     }

     div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n + 3),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n + 4),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item:nth-of-type(5n + 5),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item:nth-of-type(6n + 6),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item:nth-of-type(7n + 7),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item:nth-of-type(8n + 8),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item:nth-of-type(9n + 9) {
          margin-right: 30px;
     }

     div.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item:nth-of-type(2n + 2),
     div.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n + 3),
     div.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n + 4),
     div.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item:nth-of-type(5n + 5),
     div.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item:nth-of-type(6n + 6),
     div.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item:nth-of-type(7n + 7),
     div.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item:nth-of-type(8n + 8),
     div.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item:nth-of-type(9n + 9),
     div.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item:nth-of-type(10n + 10),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item:nth-of-type(2n + 2),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item:nth-of-type(2n + 2),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item:nth-of-type(2n + 2),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item:nth-of-type(2n + 2),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item:nth-of-type(2n + 2),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item:nth-of-type(2n + 2),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item:nth-of-type(2n + 2) {
          margin-right: 0;
     }
}

@media only screen and (max-width: 767px) {

     div:not(.elementor-image-gallery) .gallery.gallery-columns-2 .gallery-item,
     div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item,
     div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item,
     div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item,
     div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item,
     div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item,
     div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item,
     div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item {
          width: 100%;
     }

     div:not(.elementor-image-gallery) .gallery .gallery-item,
     div:not(.elementor-image-gallery) .gallery.gallery-columns-2 .gallery-item:nth-of-type(2n + 2),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n + 3),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n + 4),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item:nth-of-type(5n + 5),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item:nth-of-type(6n + 6),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item:nth-of-type(7n + 7),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item:nth-of-type(8n + 8),
     div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item:nth-of-type(9n + 9) {
          margin-right: 0;
     }

     .elementor-image-gallery .gallery.gallery-columns-1 figure.gallery-item,
     .elementor-image-gallery .gallery.gallery-columns-2 figure.gallery-item,
     .elementor-image-gallery .gallery.gallery-columns-3 figure.gallery-item,
     .elementor-image-gallery .gallery.gallery-columns-4 figure.gallery-item,
     .elementor-image-gallery .gallery.gallery-columns-5 figure.gallery-item,
     .elementor-image-gallery .gallery.gallery-columns-6 figure.gallery-item,
     .elementor-image-gallery .gallery.gallery-columns-7 figure.gallery-item,
     .elementor-image-gallery .gallery.gallery-columns-8 figure.gallery-item,
     .elementor-image-gallery .gallery.gallery-columns-9 figure.gallery-item,
     .elementor-image-gallery .gallery.gallery-columns-10 figure.gallery-item {
          width: 100%;
     }
}

.pt-gallery-custom .elementor-swiper-button {
     background: var(--white-color);
     color: var(--dark-color);
     height: 60px;
     width: 60px;
     line-height: 60px;
     align-items: center;
     text-align: center;
     justify-content: center;
     outline: none;
     border-radius: var(--big-border-radius);
     transition: var(--transition);

}

.pt-gallery-custom .elementor-swiper-button svg {
     fill: var(--dark-color) !important;
}

.pt-gallery-custom .elementor-swiper-button:hover {
     background: var(--accent-color);
}

.pt-gallery-custom .elementor-swiper-button.elementor-swiper-button-prev {
     left: -90px;
}

.pt-gallery-custom .elementor-swiper-button.elementor-swiper-button-next {
     right: -90px;
}


@media (max-width:1665px) {
     .pt-gallery-custom .elementor-swiper-button {
          display: none;
     }
}

/*================================================
  Work Process
================================================*/

/*===== work-process style 1 =====*/

.pt-work-process.pt-style-1 {
     text-align: center;
     position: relative;
     display: flex;
     flex-direction: column;
     align-content: center;
     align-items: center;
}

/* ICON CIRCLE */
.pt-work-process.pt-style-1 .pt-work-process-icon {
     width: 200px;
     height: 200px;
     margin: 30px 0;
     border-radius: 50%;
     background: var(--white-color);
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     font-size: 64px;
     line-height: 72px;
     color: var(--dark-color);
     transition: var(--transition);
     border: 15px solid var(--grey-color);
}

.pt-work-process.pt-style-1 .pt-work-process-icon i {
     transition: var(--transition);
}

/* ICON BEFORE */

.pt-work-process.pt-style-1 .pt-work-process-icon::before {
     content: "";
     width: 123px;
     height: 195px;
     background-color: var(--grey-color);
     position: absolute;
     right: -22px;
     z-index: -1;
     top: -33px;
     transition: var(--transition);
     border-radius: 46px 244px 215px 0;
}

.pt-work-process.pt-style-1 .pt-work-process-icon i::before {
     line-height: inherit;
}

/* NUMBER */
.pt-work-process.pt-style-1 .pt-work-process-number {
     position: absolute;
     top: -32px;
     background: var(--grey-color);
     color: var(--dark-color);
     font-size: 22px;
     line-height: 30px;
     font-weight: 600;
     width: 55px;
     height: 55px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 3;
     transition: var(--transition);
}

.pt-work-process.pt-style-1 .pt-work-process-info .pt-work-process-title {
     font-size: 24px;
     line-height: 32px;
     margin-bottom: 10px;
}

.pt-work-process.pt-style-1 .pt-work-process-info .pt-work-process-des {
     margin-bottom: 0;
}

/* ====== pt working direction custom ====== */

.pt-working-direction .pt-work-process.pt-style-1 {
     display: flex;
     flex-direction: column-reverse;
}

.pt-working-direction .pt-work-process.pt-style-1 .pt-work-process-icon {
     border-color: var(--accent-color);
}

/* ICON BEFORE */

.pt-working-direction .pt-work-process.pt-style-1 .pt-work-process-icon::before {
     background-color: var(--primary-color);
     transform: rotate(183deg);
     right: auto;
     bottom: -30px;
     left: -20px;
     top: auto;
     width: 124px;
     height: 195px;
}

.pt-working-direction .pt-work-process.pt-style-1 .pt-work-process-number {
     background-color: var(--primary-color);
     color: var(--white-color);
     top: auto;
     bottom: -32px;
     transition: var(--transition);
}

/* ====== HOVER====== */

.pt-work-process.pt-style-1:hover .pt-work-process-icon {
     border-color: var(--accent-color);
}

.pt-work-process.pt-style-1:hover .pt-work-process-icon::before {
     background-color: var(--primary-color);
}

.pt-work-process.pt-style-1:hover .pt-work-process-icon i {
     transform: rotateY(180deg);
}

.pt-work-process.pt-style-1:hover .pt-work-process-number {
     background-color: var(--primary-color);
     color: var(--white-color);
}

/* ====== RESPONSIVE ====== */

@media(max-width:767px) {
     .pt-working-direction .pt-work-process.pt-style-1 {
          flex-direction: column;
     }

     .pt-working-direction .pt-work-process.pt-style-1 .pt-work-process-icon {
          margin-bottom: 45px;
          margin-top: 0;
     }
}

/*================================================
woocommerce
================================================*/

.pt-custom-shop .woocommerce ul.products li.product {
     margin-bottom: 0;
}

.pt-custom-shop .woocommerce ul.products li.product .pt-product-meta .pt-product-info {
     margin-top: 30px;
}

.pt-custom-shop .woocommerce ul.products li.product .pt-product-meta .pt-product-info .pt-product-bottom span a {
     width: 50px;
     height: 50px;
     top: 20px;
     right: 20px;
     font-size: 18px;
     line-height: 50px;
     position: absolute;
     background-color: var(--dark-color);
     color: var(--white-color);
     transition: var(--transition);
     border-radius: var(--big-border-radius);
}

.pt-custom-shop .woocommerce ul.products li.product .pt-product-meta .pt-product-info .pt-product-bottom .pt-product-addbtn a.loading:before {
     font-family: WooCommerce;
     content: "\e01c";
     vertical-align: top;
     font-weight: 400;
     position: absolute;
     animation: spin 2s linear infinite;
     right: 0;
     top: 0;
     left: 0;
     margin: 0 auto;
}

.pt-custom-shop .woocommerce ul.products li.product .pt-product-meta .pt-product-info .pt-product-bottom .pt-product-addbtn a.loading i {
     display: none;
}

.pt-custom-shop .woocommerce ul.products li.product .pt-product-meta .pt-product-info .pt-product-bottom .pt-product-addbtn a.added {
     display: none;
}

.pt-custom-shop .woocommerce ul.products li.product .pt-product-meta .pt-product-info .pt-product-bottom .pt-product-addbtn .added_to_cart.wc-forward {
     font-size: 0;
     padding: 0;
     left: auto;
     transform: translateX(0);
}

.woocommerce a.added_to_cart {
     display: block;
}

.pt-custom-shop .woocommerce ul.products li.product .pt-product-meta .pt-product-info .pt-product-bottom .pt-product-addbtn a.added_to_cart:before {
     content: "\f00c";
     font-family: 'Font Awesome 5 Free';
     font-size: 20px;
     font-weight: 900;
}

.pt-custom-shop .woocommerce ul.products li.product .pt-product-meta .pt-product-info .pt-product-bottom span a:hover {
     background-color: var(--primary-color);
     color: var(--white-color);
}


.pt-custom-shop .woocommerce ul.products li.product .pt-product-meta .pt-product-info .price {
     margin: 0;
     font-size: 18px;
     line-height: 26px;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3,
.wc-block-grid__product .wc-block-grid__product-image:not(.wc-block-components-product-image),
.wc-block-grid__product .wc-block-grid__product-title {
     font-size: 22px;
     line-height: 30px;
     color: var(--dark-color);
     padding: 0 0 10px;
     transition: var(--transition);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title:hover {
     color: var(--primary-color);
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
     font-size: 18px;
     color: var(--secondary-color);
     margin-bottom: 0;
     margin-top: 0;
}

.woocommerce ul.products li.product .price ins {
     font-weight: 400;
     text-decoration: none;
}

.woocommerce ul.products li.product .price del {
     margin-right: 5px;
}

.woocommerce ul.products li.product .onsale {
     min-width: auto;
     min-height: auto;
     padding: 2px 15px;
     font-size: 16px;
     line-height: 24px;
     letter-spacing: 1px;
     text-transform: uppercase;
     font-weight: 400;
     margin: 0;
     top: 10px;
     right: 10px;
     z-index: 0;
     color: var(--dark-color);
     background-color: var(--primary-color);
     -webkit-border-radius: 900px;
     -moz-border-radius: 900px;
     border-radius: 900px;
}

.woocommerce ul.products li.product .button {
     font-size: 16px;
     padding: 8px 30px;
     font-weight: 400;
     font-family: var(--title-fonts);
}

.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
     display: none;
}

/*===== 3-column =====*/

.pt-custom-shop ul.products li.product .pt-product-meta .pt-product-info {
     margin-top: 30px;
}

.pt-custom-shop ul.products li.product span a {
     width: 50px;
     height: 50px;
     top: 20px;
     right: 20px;
     font-size: 18px;
     line-height: 50px;
     position: absolute;
     background-color: var(--dark-color);
     color: var(--white-color);
     transition: var(--transition);
     border-radius: var(--big-border-radius);
}

.pt-custom-shop ul.products li.product span a.loading:before {
     font-family: WooCommerce;
     content: "\e01c";
     vertical-align: top;
     font-weight: 400;
     position: absolute;
     animation: spin 2s linear infinite;
     right: 0;
     top: 0;
     left: 0;
     margin: 0 auto;
}

.pt-custom-shop ul.products li.product span a.loading i {
     display: none;
}

.pt-custom-shop ul.products li.product span a.added {
     display: none;
}

.pt-custom-shop ul.products li.product span a.added_to_cart.wc-forward {
     font-size: 0;
     padding: 0;
     left: auto;
     transform: translateX(0);
}

.woocommerce a.added_to_cart {
     display: block;
}

.pt-custom-shop ul.products li.product span a.added_to_cart:before {
     content: "\f00c";
     font-family: 'Font Awesome 5 Free';
     font-size: 20px;
     font-weight: 900;
}

.pt-custom-shop ul.products li.product span a:hover {
     background-color: var(--primary-color);
     color: var(--white-color);
}

/*===== single=====*/

.products.columns-4 li.product .pt-product-meta .pt-product-info {
	margin-top: 30px;
}

.products.columns-4 li.product .pt-product-meta .woocommerce-Reviews-title {
	display:none;
	margin:0;
}

.products.columns-4 li.product .pt-product-meta .pt-product-info .pt-product-bottom span a {
     width: 50px;
     height: 50px;
     top: 20px;
     right: 20px;
     font-size: 18px;
     line-height: 50px;
     position: absolute;
     background-color: var(--dark-color);
     color: var(--white-color);
     transition: var(--transition);
     border-radius: var(--big-border-radius);
}

.products.columns-4 li.product .pt-product-meta .pt-product-info .pt-product-bottom .pt-product-addbtn a.loading:before {
     font-family: WooCommerce;
     content: "\e01c";
     vertical-align: top;
     font-weight: 400;
     position: absolute;
     animation: spin 2s linear infinite;
     right: 0;
     top: 0;
     left: 0;
     margin: 0 auto;
}

.products.columns-4 li.product .pt-product-meta .pt-product-info .pt-product-bottom .pt-product-addbtn a.loading i {
     display: none;
}

.products.columns-4 li.product .pt-product-meta .pt-product-info .pt-product-bottom .pt-product-addbtn a.added {
     display: none;
}

.products.columns-4 li.product .pt-product-meta .pt-product-info .pt-product-bottom .pt-product-addbtn .added_to_cart.wc-forward {
     font-size: 0;
     padding: 0;
     left: auto;
     transform: translateX(0);
}

.products.columns-4 li.product a.added_to_cart {
     display: block;
}

.products.columns-4 li.product .pt-product-meta .pt-product-info .pt-product-bottom .pt-product-addbtn a.added_to_cart:before {
     content: "\f00c";
     font-family: 'Font Awesome 5 Free';
     font-size: 20px;
     font-weight: 900;
}

.products.columns-4 li.product li.product .pt-product-meta .pt-product-info .pt-product-bottom span a:hover {
     background-color: var(--primary-color);
     color: var(--white-color);
}


/*================================================
Custom Css
================================================*/

/* ===== Bg Blure ===== */

.pt-tag-heighlight {
     padding: 0 15px;
     margin-right: 5px;
     display: inline-block;
     background-color: var(--primary-color);
     color: var(--white-color);
     border-radius: var(--pq--border-radius);
}

.pt-tag-heighlight.pt-white-bg {
     background-color: var(--accent-color);
     color: var(--dark-color);
     border-radius: var(--pq--border-radius);
}

/* ===== Bg Blure ===== */

.pt-bg-blure {
     padding: 12px 20px;
     border-radius: var(--pq--border-radius);
     background: rgba(var(--secondary-color-rgb), 0.35);
     backdrop-filter: blur(10px);
}

.pt-bg-blure-dark {
     background: rgba(var(--dark-color-rgb), 0.2);
     backdrop-filter: blur(30px);
}

.pt-bg-blure-white {
     background: rgba(var(--white-color-rgb), 0.3);
     backdrop-filter: blur(15px);

}


.pt-bg-blure-white.Footer {
     background: rgba(var(--white-color-rgb), 0.15);
     backdrop-filter: blur(15px);

}

/* ===== Bg Blure ===== */

.pt-highlight {
     color: var(--accent-color);
}

/* ======== Video ========== */

.pt-video-size .e-hosted-video {
     aspect-ratio: 3;
}

@media(max-width:1023px) {
     .pt-custom-video .e-hosted-video {
          aspect-ratio: 1.7;
     }

     .pt-video-size .e-hosted-video {
          aspect-ratio: 2.5;
     }
}

@media(max-width:767px) {

     .pt-custom-video .e-hosted-video {
          aspect-ratio: 1.5;
     }

     .pt-video-size .e-hosted-video {
          aspect-ratio: 1.5;
     }
}

/* ======== List Button ========== */

.pt-list-button .elementor-icon-list-item {
     padding: 15px 20px;
     border-radius: var(--big-border-radius);
     background-color: var(--grey-color);
     transition: var(--transition);
}

.pt-list-button .elementor-icon-list-item:hover {
     background-color: var(--primary-color);

}

.pt-list-button .elementor-icon-list-item:hover .elementor-icon-list-icon {
     color: var(--accent-color);
}

.pt-list-button .elementor-icon-list-item:hover .elementor-icon-list-text {
     color: var(--white-color);
}

/* ====== Custom FAQ ====== */

.elementor-element.pt-custom-faq.pt-style-1>.e-n-accordion>.e-n-accordion-item[open]>.e-n-accordion-item-title {
     border-radius: 15px 15px 0 0 !important;
}

.pt-custom-faq.pt-style-1 .e-n-accordion-item-title-text {
     font-family: var(--title-fonts);
}

.pt-faq-border .e-n-accordion .e-n-accordion-item {
     border-bottom: 1px solid rgba(var(--dark-color-rgb), .2);
     margin-bottom: 30px;
}

.pt-faq-border .e-n-accordion .e-n-accordion-item:last-child {
     margin-bottom: 0px;
}

/* ===== contact-form ===== */

.metform-form-content .mf-main-response-wrap {
     display: none;
}

/* ====== Custom icon-box ====== */

.pt-custom-icon-box .elementor-icon-box-icon {
     padding-bottom: 30px;
     margin-bottom: 30px;
     border-bottom: 1px solid rgba(var(--dark-color-rgb), .1);
}

/* ====== banner custom color ====== */

.pt-bg-color:hover {
     background-color: var(--white-color);
     color: var(--dark-color);
}

.pt-bg-color .elementor-icon-box-title a {
     transition: var(--transition);
}

.pt-bg-color:hover .elementor-icon-box-title a {
     color: var(--dark-color) !important;
}

.pt-bg-color .elementor-icon {
     transition: var(--transition);
}

.pt-bg-color:hover .elementor-icon {
     fill: var(--dark-color) !important;
}

/* ====== footer gradiant color ====== */
.gradient-text .elementor-heading-title.elementor-size-default {
     background: linear-gradient(185deg, #ffffff 25%, rgba(13, 79, 43, 0.20) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     color: transparent;
}

/* ====== shine hover effect ====== */

.shine-hover-effect {
     position: relative;
     overflow: hidden;
     height: 100%;
     width: 100%;
     border-radius: var(--pq--border-radius);
}

.shine-hover-effect::after {
     content: "";
     position: absolute;
     width: 200%;
     height: 0%;
     left: 50%;
     top: 50%;
     background-color: rgba(255, 255, 255, .3);
     transform: translate(-50%, -50%) rotate(-45deg);
     z-index: 1;
}

.shine-hover-effect:hover::after {
     height: 250%;
     transition: all 0.8s linear !important;
     background-color: transparent;
}

/*===== pt icon animate =====*/

.pt-icon-animate i {
     -webkit-animation: iconShake 1.2s infinite ease-in-out;
     animation: iconShake 1.2s infinite ease-in-out;
     display: inline-flex;
}

@keyframes iconShake {
     0% {
          transform: rotate(0) scale(1) skew(1deg);
     }

     10% {
          transform: rotate(-25deg) scale(1) skew(1deg);
     }

     20% {
          transform: rotate(25deg) scale(1) skew(1deg);
     }

     30% {
          transform: rotate(-25deg) scale(1) skew(1deg);
     }

     40% {
          transform: rotate(25deg) scale(1) skew(1deg);
     }

     50% {
          transform: rotate(0) scale(1) skew(1deg);
     }

     100% {
          transform: rotate(0) scale(1) skew(1deg);
     }
}