/*
Template: Golfique – Golf Club & Sports WordPress Theme
Author: peacefulqode.co.in
Version: 1.0
Design and Developed by: Peacefulqode

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

*/

/*===============================================
[   Table of contents  ]
=================================================

==> Moz Selection
==> General
==> Loading
==> Back to Top
==> WordPress Core
==> Button Core
==> OWL Carousel
==> Pagination
==> Error
==> Breadcrumb
==> Service Single
==> Header
==> Section Title
==> Footer
==> Blog
==> Blog Post
==> Service Box
==> Training Box
==> Facility Slider
==> Testimonial  
==> Recent Post
==> Our Team
==> Event Card
==> Price Plan
==> TAB
==> Image Gallary
==> Animation
==> Video Popup
==> Woocommerce
==> Woocommerce Button
==> Custom CSS 

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

/*===============================================
    Moz Selection
================================================*/
::-moz-selection {
     text-shadow: none;
     background: var(--e-global-color-primary);
     color: #fff;
}

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

/*===============================================
    General
================================================*/
body {
     background: var(--e-global-color-accent);
     font-family: var(--e-global-typography-text-font-family);
     font-size: 18px;
     font-style: normal;
     font-weight: 400;
     line-height: 1.6;
     color: var(--e-global-color-text);
     overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
     font-family: var(--e-global-typography-primary-font-family);
     color: var(--e-global-color-primary);
     font-style: normal;
     font-weight: 600;
     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,
.e-con-inner {
     max-width: 1400px !important;
}

.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: 180px;
     height: 180px;
}

/* Rotating half-half border */
.pt-loader-circle {
     position: absolute;
     inset: 0;
     border-radius: 50%;
     border: 2px solid transparent;
     border-top-color: var(--e-global-color-primary);
     /* top half color */
     border-right-color: var(--e-global-color-accent);
     /* right half color */
     border-bottom-color: var(--e-global-color-primary);
     /* bottom half color */
     border-left-color: var(--e-global-color-accent);
     /* 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: 50px;
     width: 50px;
     cursor: pointer;
     display: block;
     border-radius: var(--e-global-big-border-radius);
     background: var(--e-global-color-primary);
     z-index: 10000;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     transition: all 0.5s ease;
}

.progress-wrap.active-progress {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}

.progress-wrap::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     height: 50px;
     width: 50px;
     border-radius: var(--e-global-big-border-radius);
     background: var(--e-global-color-primary);
     opacity: 0;
     z-index: -1;

     animation: shadow-blink 1.5s ease-out infinite;
}

.progress-wrap::after {
     position: absolute;
     font-family: flaticon_golf_club !important;
     content: "\f156";
     text-align: center;
     line-height: 50px;
     font-size: 24px;
     color: var(--e-global-color-white);
     left: 0;
     top: 0;
     height: 50px;
     width: 50px;
     z-index: 2;
     animation: floatIcon 2s ease-in-out infinite;
     transition: all 0.3s ease;
}

@keyframes floatIcon {

     0%,
     100% {
          transform: translateY(0);
     }

     50% {
          transform: translateY(-4px);
     }
}

/* Spin animation */
@keyframes spin-icon {
     0% {
          transform: rotate(0deg);
     }

     100% {
          transform: rotate(360deg);
     }
}

.progress-wrap svg {
     position: relative;
     z-index: 1;
}

.progress-wrap svg path {
     fill: none;
}

/* Pulse animation */
@keyframes shadow-blink {
     0% {
          opacity: 0.6;
          transform: scale(1);
     }

     100% {
          opacity: 0;
          transform: scale(1.7);
     }
}

/*===============================================
    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(--e-global-color-accent);
     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;
     font-weight: 600 !important;
     overflow: hidden;
}

.screen-reader-text:focus {
     background-color: var(--e-global-color-accent);
     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(--e-global-typography-primary-font-family);
     font-size: 18px;
     background: var(--e-global-color-primary);
     color: var(--e-global-color-white);
     text-transform: capitalize;
     display: inline-block;
     border: none;
     width: auto;
     height: auto;
     line-height: 1.6;
     font-weight: 400;
     -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
     border-radius: 10px;
     transition: all 0.5s ease-in-out !important;
     -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(--e-global-color-secondary);
     color: var(--e-global-color-white);
}

/*=============================*/
/*===== Button Flat =====*/
/*=============================*/

.pt-button.pt-button-flat {
     z-index: 1;
     width: auto;
     height: auto;
     line-height: 1.6;
     font-size: 18px;
     font-weight: 400;
     overflow: hidden;
     display: inline-flex;
     gap: 20px;
     align-items: center;
     position: relative;
     text-decoration: none;
     vertical-align: middle;
     padding: 7px 7px 7px 20px;
     text-transform: capitalize;
     transition: var(--transition);
     color: var(--e-global-color-white);
     border-radius: var(--small-border-radius);
     background: var(--e-global-color-primary);
     font-family: var(--e-global-typography-primary-font-family);
}

.pt-button.pt-button-flat:hover {
     background: var(--e-global-color-secondary);
     color: var(--e-global-color-white);
}

/* ===== button icon ===== */

.pt-button.pt-button-flat .pt-button-icon {
     display: inline-flex;
     border-radius: inherit;
     transition: inherit;
}

.pt-button.pt-button-flat .pt-button-icon-inner {
     height: 46px;
     width: 46px;
     font-size: 20px;
     line-height: 46px;
     background: var(--e-global-color-white);
     color: var(--e-global-color-secondary);
     border-radius: var(--small-border-radius);
     display: flex;
     justify-content: center;
     transition: var(--transition);
     margin: 0;
}

.pt-button.pt-button-flat .pt-button-icon i {
     transform: rotate(-45deg);
     transition: var(--transition);
}

.pt-button.pt-button-flat:hover .pt-button-icon-inner i {
     transform: rotate(0deg);
}

.pt-button.pt-button-flat i::before {
     line-height: inherit;
}

/* ===== Effect ===== */

.pt-button.pt-button-flat .pt-button-animation {
     position: absolute;
     display: block;
     width: 0;
     height: 0;
     border-radius: 50%;
     background: var(--e-global-color-secondary);
     -webkit-transition: width .4s ease-in-out, height .4s ease-in-out;
     transition: width .4s ease-in-out, height .4s ease-in-out;
     -webkit-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
     z-index: -1;
}

.pt-button.pt-button-flat:hover .pt-button-animation {
     width: 225%;
     height: 562.5px
}

/* ===== button text ===== */

.pt-button.pt-button-flat .pt-button-text {
     position: relative;
     height: 28px;
     overflow: hidden;
     display: inline-flex;
     flex-direction: column;
     justify-content: flex-start;
     transition: var(--transition);
}

.pt-button.pt-button-flat .pt-button-text span {
     line-height: 28px;
     transition: var(--transition);
     transform: translateY(0);
}

.pt-button.pt-button-flat:hover .pt-button-text span {
     transform: translateY(-28px);
}

/*=============================*/
/*===== Button link =====*/
/*=============================*/

.pt-button.pt-button-link {
     display: inline-flex;
     font-family: var(--e-global-typography-primary-font-family);
     text-transform: capitalize;
     line-height: normal;
     align-items: center;
     line-height: 1.6;
     font-size: 20px;
     gap: 8px;
     font-weight: 400;
     transition: var(--transition);
     justify-content: center;
}

.pt-button.pt-button-link .pt-button-text {
     position: relative;
     color: var(--e-global-color-primary);
}

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

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

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

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

/*=============================*/
/*===== Button outline =====*/
/*=============================*/

.pt-button.pt-button-outline {
     overflow: hidden;
     line-height: 1.6;
     font-size: 20px;
     padding: 7px 7px 7px 20px;
     font-weight: 400;
     position: relative;
     width: auto;
     height: auto;
     color: var(--e-global-color-primary);
     vertical-align: middle;
     display: inline-flex;
     align-items: center;
     background: transparent;
     border: 2px solid var(--e-global-color-secondary);
     gap: 20px;
     text-decoration: none;
     border-radius: var(--small-border-radius);
     transition: var(--transition);
     font-family: var(--e-global-typography-primary-font-family);
}

.pt-button.pt-button-outline:hover {
     border: 2px solid var(--e-global-color-primary);
     color: var(--e-global-color-primary);
}

.pt-button.pt-button-outline .pt-button-text {
     position: relative;
     height: 25px;
     overflow: hidden;
     display: inline-flex;
     flex-direction: column;
     justify-content: flex-start;
     transition: var(--transition);
}

.pt-button.pt-button-outline .pt-button-text span {
     line-height: 25px;
     transition: var(--transition);
     transform: translateY(0);
}

.pt-button.pt-button-outline:hover .pt-button-text span {
     transform: translateY(-25px);
}

.pt-button.pt-button-outline i {
     height: 46px;
     width: 46px;
     line-height: 46px;
     background-color: var(--e-global-color-primary);
     color: var(--e-global-color-white);
     border-radius: var(--small-border-radius);
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0;
     transform: rotate(0deg);
     transition: var(--transition);
}

.pt-button.pt-button-outline:hover i {
     transform: rotate(0deg);
     background-color: var(--e-global-color-white);
     color: var(--e-global-color-secondary);
}

/*===== Button Rounded =====*/

.pt-button.pt-button-rounded {
     display: inline-flex;
     justify-content: center;
     width: 50px;
     height: 50px;
     line-height: 50px;
     font-size: 20px;
     font-family: var(--e-global-typography-primary-font-family);
     border-radius: var(--small-border-radius);
     background: var(--e-global-color-primary);
     color: var(--e-global-color-white);
     text-align: center;
     transition: var(--transition);
}

.pt-button.pt-button-rounded:hover {
     background: var(--e-global-color-secondary);
     color: var(--e-global-color-white);
}

.pt-button.pt-button-rounded i {
     transform: rotate(-45deg);
     transition: var(--transition);
}

.pt-button.pt-button-rounded:hover i {
     transform: rotate(0deg);
}

.pt-button.pt-button-rounded i:before {
     line-height: inherit;
}

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

.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: 20px;
     width: 60px;
     height: 60px;
     line-height: 60px;
     background: var(--e-global-color-secondary);
     padding: 0 !important;
     margin: 0 5px;
     border: none;
     color: var(--e-global-color-white);
     border-radius: 100%;
}

.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(--e-global-color-white);
     background: var(--e-global-color-primary);
}

.pt-dark-bg .owl-carousel .owl-nav button:hover {
     color: var(--e-global-color-primary);
     background: var(--e-global-color-white);
}

/*++++++++++++++++ Dots +++++++++++*/
.owl-carousel .owl-dots.disabled {
     display: none;
}

.owl-carousel .owl-dots {
     margin-top: 30px;
     line-height: normal;
     position: relative;
     width: 100%;
     text-indent: inherit;
     text-align: center;
     cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot {
     box-shadow: none;
     outline: none;
     background: var(--e-global-color-secondary);
     border: 0 solid var(--e-global-color-secondary);
     display: inline-block;
     padding: 0;
     margin: 0px 5px;
     height: 5px;
     width: 40px;
     transition: var(--transition);
     -webkit-transition: var(--transition);
     -o-transition: var(--transition);
     -moz-transition: var(--transition);
     -ms-transition: var(--transition);
     cursor: pointer;
     -webkit-border-radius: var(--small-border-radius);
     -moz-border-radius: var(--small-border-radius);
     border-radius: var(--small-border-radius);
}

.owl-carousel .owl-dots .owl-dot span {
     display: none;
}

.owl-carousel .owl-dots .owl-dot:hover {
     background: var(--e-global-color-primary);
     border-color: var(--e-global-color-primary);
     opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active {
     background: var(--e-global-color-primary);
     border-color: var(--e-global-color-primary);
     opacity: 1;
}

@media(max-width: 767px) {
     .owl-carousel .owl-dots .owl-dot {
          width: 20px;
     }
}

/*===============================================
    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;
     font-weight: 400;
     margin: 0 5px;
     transition: var(--transition);
     color: var(--e-global-color-primary);
     background-color: var(--e-global-color-white);
     border: 0 solid var(--e-global-color-white);
     -webkit-border-radius: var(--small-border-radius);
     -moz-border-radius: var(--small-border-radius);
     border-radius: var(--small-border-radius);
     font-family: var(--e-global-typography-primary-font-family);
}

.pt-pagination .page-numbers li .page-numbers:hover {
     color: var(--e-global-color-white);
     text-decoration: none;
     background-color: var(--e-global-color-primary);
     border-color: var(--e-global-color-primary);
     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(--e-global-color-white);
     background: var(--e-global-color-primary);
     border-color: var(--e-global-color-primary);
     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(--e-global-typography-primary-font-family);
     color: var(--e-global-color-primary);
     line-height: 0.8;
     margin-bottom: 30px;
     font-style: normal;
     text-transform: uppercase;
     font-weight: 600;
}

.pt-error-block h2 {
     color: var(--e-global-color-secondary);
}

@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: 230px 0;
     position: relative;
     background-position: top center;
     background-size: cover;
     background-repeat: no-repeat;
     text-align: center;
     z-index: 1;
     overflow: hidden;
     border-radius: var(--e-global-border-radius);
}

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

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

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

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

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

@media(max-width:1400px) {
     .pt-breadcrumb-style-1 {
          border-radius: 0;
     }
}

@media(max-width:1499px) {
     .pt-breadcrumb-style-1 {
          margin: 0;
          padding: 180px 0;
     }

     .pt-breadcrumb-wrapper {
          padding: 0;
     }
}

@media(max-width:1023px) {
     .pt-breadcrumb-style-1 {
          padding: 110px 0;
     }
}

@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;
     border: 1px solid rgba(var(--e-global-color-primary-rgb), .2);
     background: var(--e-global-color-white);
     display: inline-block;
     width: 100%;
     position: relative;
     font-family: var(--e-global-typography-text-font-family);
     text-transform: capitalize;
     color: var(--e-global-color-secondary);
     border-radius: 15px;
     transition: var(--transition);
}

[data-widget_type="sidebar.default"] .widget .menu-service_menu-container .menu li a:before {
     content: '\f054';
     font-family: "Font Awesome 5 Free";
     font-weight: 600;
     font-size: 12px;
     right: 20px;
     left: auto;
     top: 24px;
     position: absolute;
     color: inherit;
     line-height: normal;
}

[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(--e-global-color-primary);
     border: 1px solid rgba(var(--e-global-color-primary-rgb), 1);
     color: var(--e-global-color-white);
}

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

/*======  Header Menu Link Font Weight 500 ====== */
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child>a.mega-menu-link {
     font-weight: 400;
}

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

/*======  Header bg white ====== */

.admin-bar .pt-header-bg-white {
     top: 32px !important;
}

.pt-header-bg-white {
     background: transparent;
     position: absolute;
     top: 0;
     width: 100%;
     z-index: 9;
}

.pt-header-bg-white .pt-search-button {
     background: var(--e-global-color-accent);
}

/* ========= Toggale Button ========= */

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner,
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner::before,
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
     background-color: var(--e-global-color-white);
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
     margin-right: 4px;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
     margin-left: 4px;
}

@media (max-width: 1200px) {

     #mega-menu-wrap-primary .mega-menu-toggle {
          height: 58px;
          width: 58px;
          border-radius: 5px;
          line-height: 58px;
     }
}

@media (max-width: 767px) {

     #mega-menu-wrap-primary .mega-menu-toggle {
          height: 50px;
          width: 50px;
          line-height: 50px;
          align-items: center;
          justify-content: center;
     }

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

/*++++++ Header Right ++++++*/
.pt-header-info {
     display: flex;
     gap: 20px;
     align-items: center;
     padding: 0;
     margin: 0;
}

/*++++++ Search ++++++*/
.pt-search-button {
     width: 53px;
     height: 53px;
     font-size: 20px;
     line-height: 53px;
     text-align: center;
     background: var(--e-global-color-white);
     color: var(--e-global-color-primary);
     border-radius: var(--e-global-big-border-radius);
     display: inline-block;
}

.pt-search-button i:before {
     line-height: inherit !important;
}

/*+++++ search icon svg +++++*/
.pt-search-button svg {
     fill: var(--e-global-color-primary);
     width: 20px;
}

.pt-search-button svg path {
     fill: var(--e-global-color-primary);
}

/*+++++ 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(--e-global-color-white);
     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: "\f659";
     font-family: bootstrap-icons !important;
     font-size: 18px;
}

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

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

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

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

.pt-search-button .offcanvas .search-form .search-field {
     color: var(--e-global-color-text);
     background: var(--e-global-color-accent);
     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(--e-global-color-text);
}

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

.offcanvas.offcanvas-top .search-form .search-submit {
     display: none;
}

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

/*++++++ Toggle Button ++++++*/
.pt-toggle-btn a {
     background-color: var(--e-global-color-primary);
     width: 56px;
     height: 56px;
     line-height: 56px;
     text-align: center;
     border-radius: var(--e-global-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(--e-global-color-white);
     stroke: rgba(var(--e-global-color-white-rgb), .3);
}

/*++++++ Cart ++++++*/
.pt-header-info .pt-shop-btn .pt-cart-button .pt-icon {
     width: 58px;
     height: 58px;
     font-size: 22px;
     line-height: 58px;
     text-align: center;
     background: var(--e-global-color-white);
     color: var(--e-global-color-primary);
     border-radius: var(--small-border-radius);
}

.pt-header-info .pt-shop-btn .pt-cart-button .pt-icon i:before {
     line-height: inherit;
}

.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(--e-global-color-secondary);
     position: relative;
     line-height: 90px;
     padding: 0 0 0;
     font-size: 22px;
     transform: rotateY(180deg);
}

.pt-cart-button .basket-item-count {
     font-size: 10px;
     font-weight: 400;
     background: var(--e-global-color-primary);
     color: var(--e-global-color-white);
     position: absolute;
     bottom: 8px;
     right: 8px;
     height: 15px;
     width: 15px;
     line-height: 15px;
     text-align: center;
     border-radius: var(--e-global-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: 600;
     text-transform: capitalize;
     font-family: var(--e-global-typography-primary-font-family);
}

.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(--e-global-color-secondary) !important;
     font-weight: 400;
     height: 1em;
     width: 1em;
}

.pt-shop-btn .pt-cart a.remove:hover {
     color: var(--e-global-color-primary) !important;
     background: transparent;
}

.pt-shop-btn .pt-cart ul.cart_list li a,
.pt-shop-btn .pt-cart ul.product_list_widget li a {
     display: block;
     text-transform: capitalize;
     font-weight: 600;
     font-family: var(--e-global-typography-primary-font-family);
     color: var(--e-global-color-secondary);
     padding-right: 30px;
     line-height: normal;
}

.pt-shop-btn .pt-cart ul.product_list_widget li a:hover {
     color: var(--e-global-color-primary);
}

.pt-shop-btn .pt-cart ul.product_list_widget li a.remove {
     font-weight: 400;
     padding: 0;
}

/*===============================================
    Section Title
================================================*/

/*===== sub title =====*/

.pt-section-title .pt-title .pt-subtitle {
     position: relative;
     text-transform: capitalize;
     color: var(--e-global-color-primary);
     display: inline-block;
     margin-bottom: 10px;
     align-items: center;
     font-size: 18px;
     line-height: 26px;
     font-weight: 400;
     padding-left: 16px;
     font-family: var(--e-global-typography-primary-font-family);
}

.pt-section-title .pt-title .pt-subtitle::before {
     content: '';
     top: 50%;
     left: 0;
     bottom: 0;
     width: 10px;
     height: 10px;
     position: absolute;
     transform: translateY(-50%);
     -webkit-animation: blink-1 0.9s ease-in-out 10000 both;
     animation: blink-1 0.9s ease-in-out 10000 both;
     background-color: var(--e-global-color-primary);
     border-radius: var(--e-global-big-border-radius);
}

/*===== sub title animation =====*/

@-webkit-keyframes blink-1 {
     0% {
          opacity: 1;
     }

     50% {
          opacity: 0.2;
     }

     100% {
          opacity: 1;
     }
}

@keyframes blink-1 {
     0% {
          opacity: 1;
     }

     50% {
          opacity: 0.2;
     }

     100% {
          opacity: 1;
     }
}

/*===== main title =====*/

.pt-section-title .pt-title .pt-title-heading {
     margin-bottom: 10px;
     color: var(--e-global-color-secondary);
}

.pt-section-title .pt-title .pt-title-heading .pt-primary-text {
     color: var(--e-global-color-primary);
}

/*===== description =====*/

.pt-section-title .pt-title .pt-title-description {
     margin: 0;
     font-size: 18px;
     line-height: 1.6;
     font-weight: 400;
     color: var(--e-global-color-text);
}

/*===============================================
    Footer
================================================*/
.pt-footer-menu .elementor-heading-title {
     position: relative;
     padding-left: 25px;
     align-items: center;
}

.pt-footer-menu .elementor-heading-title::before {
     content: '';
     top: 50%;
     left: 0;
     bottom: 0;
     width: 8px;
     height: 8px;
     position: absolute;
     transform: translateY(-50%);
     background-color: var(--e-global-color-white);
     border-radius: var(--e-global-big-border-radius);
}

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

/* ========== Blog style-1 Slider ========== */

.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;
     object-fit: cover;
     border-radius: var(--e-global-border-radius);
}

.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 {
     opacity: 0;
     max-width: unset;
     position: absolute;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     bottom: 0;
     margin: 0 20px 20px 20px;
     padding: 10px 20px;
     background-color: var(--e-global-color-white);
     border-radius: var(--e-global-border-radius);
     transition: var(--transition);
}

.pt-blog.pt-style-1 .pt-blog-post .pt-blog-contain {
     opacity: 1;
}

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

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

.pt-blog-post .pt-post-meta ul {
     display: flex;
     flex-direction: row;
     gap: 20px;
     flex-wrap: wrap;
}

.pt-blog-post .pt-post-meta ul li,
.pt-blog-post .pt-post-meta ul li a {
     color: var(--e-global-color-text);
     font-weight: 400;
     text-transform: capitalize;
}

.pt-blog.pt-style-1 .pt-blog-post .pt-blog-contain .pt-post-meta {
     margin-bottom: 5px;
}

.pt-blog-post .pt-post-category {
     font-size: 18px;
     line-height: 26px;
     text-transform: capitalize;
     position: absolute;
     left: 30px;
     top: 30px;
     background: var(--e-global-color-white);
     backdrop-filter: blur(20px);
     padding: 5px 15px;
     color: var(--e-global-color-primary);
     border-radius: var(--e-global-border-radius);
     font-family: var(--e-global-typography-text-font-family);
     z-index: 1;
}

.pt-blog-post .pt-icon i {
     font-size: 18px;
     line-height: 26px;
     padding-right: 5px;
     color: var(--e-global-color-primary);
}

.pt-blog-post .pt-icon i::before {
     line-height: inherit;
}

/*===== end =====*/

.pt-blog-post .pt-blog-contain .pt-blog-title {
     transition: var(--transition);
     margin-bottom: 5px;
     color: var(--e-global-color-secondary);
}

.pt-blog-post .pt-blog-contain .pt-blog-title a:hover {
     color: var(--e-global-color-primary);
}

.pt-blog.pt-style-1 .pt-blog-post .pt-blog-contain .pt-btn-container {
     opacity: 0;
     height: 0;
     overflow: hidden;
     transform: translateY(10px);
     transition: var(--transition);
}

.pt-blog.pt-style-1 .pt-blog-post:hover .pt-blog-contain .pt-btn-container {
     opacity: 1;
     height: 55px;
     padding-top: 10px;
     transform: translateY(0);
}

.pt-blog.pt-style-1 .pt-blog-contain .pt-btn-container .pt-button.pt-button-link {
     color: var(--e-global-color-primary);
}

@media (max-width: 767px) {
     .pt-blog.pt-style-1 .pt-blog-post .pt-blog-contain .pt-btn-container {
          opacity: 1;
          height: auto;
          overflow: visible;
          padding-top: 20px;
          transform: none;
     }
}

@media (max-width:397px) {
     .pt-blog.pt-style-1 .pt-blog-post .pt-post-media img {
          aspect-ratio: 1 / 1.4;
     }
}

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

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

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

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

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

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

@media(max-width:767px) {
     .pt-blog.pt-blog-col-2 {
          grid-template-columns: 1fr;
     }
}

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

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

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

.pt-blog.pt-blog-col-3 .pt-blog-post .pt-post-media .pt-blog-image {
     overflow: hidden;
     position: relative;
     border-radius: var(--e-global-border-radius);
}

@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 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(--e-global-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.8s 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);
}

/*===== 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(--e-global-border-radius);
     -moz-border-radius: var(--e-global-border-radius);
     border-radius: var(--e-global-border-radius);
     gap: 30px;
     background-color: var(--e-global-color-white);
     border: 1px solid transparent;
     transition: var(--transition);
     margin-bottom: 30px;
}

.pt-blog-post.pt-list.pt-active {
     background-color: var(--e-global-color-primary);
}

.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 {
     margin-bottom: 0;
     border-radius: var(--e-global-border-radius);
}

.pt-blog-post.pt-list .pt-blog-contain {
     padding: 0;
     margin-bottom: 0;
}

.pt-blog-post.pt-list .pt-blog-contain .pt-post-meta .pt-post-category {
     margin: 20px 0px 0px 20px;
}

.pt-blog-post.pt-list .pt-blog-contain .pt-post-meta .pt-post-category a {
     color: var(--e-global-color-primary);
}

.pt-blog-post.pt-list .pt-blog-contain .pt-post-meta .pt-post-date a {
     color: var(--e-global-color-white);
}

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

.pt-blog-post.pt-list .pt-blog-contain .pt-blog-title a {
     color: var(--e-global-color-secondary);
}

.pt-blog-post.pt-list.pt-active .pt-blog-contain .pt-blog-title a {
     color: var(--e-global-color-white);
}

.pt-blog-post.pt-list.pt-active .pt-blog-contain p:last-child {
     color: var(--e-global-color-white);
}

.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(--e-global-color-primary);
}

@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(--e-global-color-secondary-rgb), .2);
     border-top: 1px solid rgba(var(--e-global-color-secondary-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(--e-global-typography-primary-font-family);
     color: var(--e-global-color-secondary);
     text-transform: uppercase;
     font-weight: 400;
     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 {
     text-transform: capitalize;
     background: var(--e-global-color-primary);
     margin: 0;
     display: inline-block;
     float: left;
     color: var(--e-global-color-white);
     padding: 4px 16px;
     letter-spacing: 0;
     font-family: var(--e-global-typography-primary-font-family);
     font-size: 18px !important;
     font-weight: 400;
     border: 1px solid var(--e-global-color-primary);
     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(--e-global-big-border-radius);
     -moz-border-radius: var(--e-global-big-border-radius);
     border-radius: var(--e-global-big-border-radius);
}

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

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

.pt-single-post-social-share {
     display: flex;
     flex-direction: row;
     align-items: center;
     gap: 10px;
     flex-wrap: wrap;
}

.pt-single-post-bottom-holder .pt-single-post-social-title {
     font-family: var(--e-global-typography-primary-font-family);
     color: var(--e-global-color-secondary);
     text-transform: uppercase;
     font-weight: 400;
     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:first-child {
     margin: 0;
}

.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(--e-global-color-secondary);
     color: var(--e-global-color-white);
     display: inline-block;
     text-align: center;
     line-height: 50px;
     -webkit-border-radius: var(--e-global-big-border-radius);
     -moz-border-radius: var(--e-global-big-border-radius);
     border-radius: var(--e-global-big-border-radius);
}

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

.pt-single-post-usernav .pt-user {
     background: var(--e-global-color-white);
     padding: 30px;
     display: flex;
     align-items: flex-start;
     -webkit-border-radius: var(--e-global-border-radius);
     -moz-border-radius: var(--e-global-border-radius);
     border-radius: var(--e-global-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(--e-global-border-radius);
     -moz-border-radius: var(--e-global-border-radius);
     border-radius: var(--e-global-border-radius);
     border: 1px solid rgba(var(--e-global-color-dark-rgb), .2);
}

.pt-single-post-usernav .pt-user-info .pt-user-title {
     font-size: 24px;
     line-height: 32px;
     margin-bottom: 5px;
     color: var(--e-global-color-secondary);
     text-transform: capitalize;
}

.pt-single-post-usernav .pt-user-info .pt-user-sub-title {
     text-transform: capitalize;
     font-size: 18px;
     line-height: 1.4;
     font-weight: 400;
     color: var(--e-global-color-primary);
}

.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;
          margin-bottom: 15px;
     }

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

     .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(--e-global-color-white);
     -webkit-border-radius: var(--e-global-border-radius);
     -moz-border-radius: var(--e-global-border-radius);
     border-radius: var(--e-global-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(--e-global-color-white);
     background: var(--e-global-color-primary);
     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(--e-global-big-border-radius);
     -moz-border-radius: var(--e-global-big-border-radius);
     border-radius: var(--e-global-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 {
     font-family: var(--pt-title-fonts);
     font-size: 18px;
     line-height: 26px;
     font-weight: 400;
     text-transform: capitalize;
     transition: var(--transition);
     letter-spacing: 0;
     color: var(--e-global-color-secondary);
}

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

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

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

/*===============================================
  Service Box
================================================*/

.pt-service-box-list.pt-style-1 {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
}

.pt-service-box.pt-style-1 {
     background: var(--e-global-color-white);
     border-radius: var(--e-global-border-radius);
     padding: 20px;
     position: relative;
     overflow: hidden;
}

.pt-service-box.pt-style-1 .pt-service-box-number {
     color: var(--e-global-color-primary);
     font-weight: 400;
     font-size: 22px;
     line-height: 30px;
     margin-bottom: 20px;
}

.pt-service-box.pt-style-1 .pt-service-box-title {
     margin-bottom: 30px;
     width: 300px;
     color: var(--e-global-color-secondary);
}

.pt-service-box-image-wrap {
     width: 100%;
     overflow: hidden;
     text-align: right;
}

.pt-service-box-image-wrap img {
     max-width: 100%;
     width: clamp(180px, 55%, 286px);
     height: 230px;
     object-fit: cover;
     border-radius: var(--e-global-border-radius);
     transition: all .8s cubic-bezier(.22, 1, .36, 1);
}

.pt-service-box.pt-style-1:hover .pt-service-box-image-wrap img {
     width: 100%;
     border-radius: 20px;
}

/* Responsive */
@media (max-width: 992px) {
     .pt-service-box-list.pt-style-1 {
          grid-template-columns: repeat(2, 1fr);
     }
}

@media (max-width: 594px) {
     .pt-service-box-list.pt-style-1 {
          grid-template-columns: 1fr;
     }

     .pt-service-box.pt-style-1 .pt-service-box-title {
          width: 100%;
     }
}

/*===============================================
    Training Box
================================================*/

/*++++++++++ Training Box Style - 1 ++++++++++*/

.pt-Training-box.pt-style-1 {
     text-align: center;
}

.pt-Training-box.pt-style-1 .pt-Training-img {
     position: relative;
     overflow: hidden;
     margin-bottom: 30px;
     border-radius: var(--e-global-border-radius);
}

.pt-Training-box.pt-style-1 .pt-Training-img img {
     width: 100%;
     transition: var(--transition);
     -moz-transition: var(--transition);
     -ms-transition: var(--transition);
     -o-transition: var(--transition);
     -webkit-transition: var(--transition);
}

.pt-Training-box.pt-style-1:hover .pt-Training-img img {
     transform: scale(1.1);
}

.pt-Training-box.pt-style-1 .pt-Training-img .pt-Training-info {
     position: absolute;
     left: 0;
     right: 0;
     bottom: -60px;
     display: flex;
     gap: 20px;
     width: 100%;
     background: var(--e-global-color-secondary);
     align-items: center;
     justify-content: center;
     padding: 10px 15px;
     transition: var(--transition);
     -moz-transition: var(--transition);
     -ms-transition: var(--transition);
     -o-transition: var(--transition);
     -webkit-transition: var(--transition);
     color: var(--e-global-color-white);
}

.pt-Training-box.pt-style-1:hover .pt-Training-img .pt-Training-info {
     bottom: 0;
}

.pt-Training-box.pt-style-1 .pt-Training-img .pt-Training-info .pt-Training-details {
     display: flex;
     align-items: center;
     gap: 10px;
}

.pt-Training-box.pt-style-1 .pt-Training-img .pt-Training-info .pt-Training-details i {
     font-size: 20px;
     line-height: 1;
     vertical-align: middle;
}

.pt-Training-box.pt-style-1 .pt-Training-img .pt-Training-info .pt-Training-details svg {
     width: 25px;
     height: 25px;
     vertical-align: middle;
}

.pt-Training-box.pt-style-1 .pt-Training-img .pt-Training-info .pt-Training-details .pt-Training-details-title {
     font-family: var(--e-global-typography-primary-font-family);
     text-transform: capitalize;
}

.pt-Training-box.pt-style-1 .pt-Training-title {
     color: var(--e-global-color-secondary);
}

/*===============================================
  Facility Slider
================================================*/

/*===== facility-slider-1 =====*/

.pt-facility-slider.pt-style-1 {
     display: grid;
     grid-template-columns: 100%;
}

.elementor-widget.elementor-widget-facility_slider {
     position: initial;
}

.pt-facility-slider.pt-style-1 .slick-slider-thumb .slick-track {
     width: 100% !important;
     transform: inherit !important;
     display: flex;
     flex-direction: column;
     gap: 40px;
}

.pt-facility-slider.pt-style-1 .slick-slide {
     margin: 0;
}

.pt-facility-slider.pt-style-1 .slick-slider-thumb .slick-track .slick-slide {
     width: 100% !important;
     flex: 1;
     transition: none;
}

.pt-facility-slider.pt-style-1 .slick-slider-thumb .slick-track .slick-slide:last-child {
     margin-bottom: 0;
}

.pt-facility-slider.pt-style-1 .slick-slider-main .slick-arrow {
     display: none !important;
}

.pt-facility-slider.pt-style-1 .pt-content-column {
     position: absolute;
     width: 680px;
     bottom: 0;
     left: 100%;
     z-index: 2;
}

.pt-facility-slider.pt-style-1 .pt-content-column .pt-facility-image {
     padding: 30px;
     border-radius: var(--e-global-border-radius);
     background-color: var(--e-global-color-white);
}

.pt-facility-slider.pt-style-1 .pt-content-column .pt-facility-image img {
     border-radius: var(--e-global-border-radius);
}

.pt-facility-list .pt-facility.pt-style-1 {
     padding: 30px 40px;
     background-color: var(--e-global-color-white);
     -webkit-border-radius: var(--e-global-border-radius);
     -moz-border-radius: var(--e-global-border-radius);
     border-radius: var(--e-global-border-radius);
     transition: var(--transition);
}

.slick-current.slick-active .pt-facility.pt-style-1 {
     background-color: var(--e-global-color-primary);
}

.pt-facility.pt-style-1 .pt-facility-top {
     display: flex;
     justify-content: space-between;
     gap: 20px;
     align-items: center;
     transition: var(--transition);
     cursor: pointer;
}

.pt-facility.pt-style-1 .pt-facility-top .pt-facility-title {
     color: var(--e-global-color-secondary);
     transition: var(--transition);
     font-size: 30px;
     line-height: 38px;
}

.slick-current.slick-active .pt-facility.pt-style-1 .pt-facility-top .pt-facility-title {
     color: var(--e-global-color-white);
}

.pt-facility.pt-style-1 .pt-facility-top .pt-icon-button a {
     width: 52px;
     height: 52px;
     -webkit-border-radius: var(--small-border-radius);
     -moz-border-radius: var(--small-border-radius);
     border-radius: var(--small-border-radius);
     font-size: 24px;
     line-height: 52px;
     display: inline-block;
     color: var(--e-global-color-white);
     background-color: var(--e-global-color-secondary);
     text-align: center;
     transition: var(--transition);
     overflow: hidden;
}

.slick-current.slick-active .pt-facility.pt-style-1 .pt-facility-top .pt-icon-button a {
     background-color: var(--e-global-color-white);
     color: var(--e-global-color-secondary);
}

.slick-current.slick-active .pt-facility.pt-style-1 .pt-icon-button i {
     transform: rotate(0deg);
}

.pt-facility.pt-style-1 .pt-icon-button i {
     transform: rotate(-45deg);
     transition: var(--transition);
     display: inline-block;
}

.pt-facility.pt-style-1 .pt-facility-top .pt-icon-button i:before {
     line-height: inherit;
}

.pt-facility.pt-style-1 .pt-facility-info {
     overflow: hidden;
     transition: var(--transition);
}

.pt-facility.pt-style-1 .pt-facility-info .pt-facility-description {
     transition: var(--transition);
     position: relative;
     margin-bottom: 0;
     color: var(--e-global-color-white);

}

.slick-current.slick-active .pt-facility.pt-style-1 .pt-facility-info .pt-facility-description {
     color: var(--e-global-color-white);
     padding-top: 20px;
}

.pt-facility.pt-style-1 .pt-facility-info {
     display: grid;
     grid-template-rows: 0fr;
     opacity: 0;
     overflow: hidden;
     transition: grid-template-rows 0.4s ease, opacity 0.35s ease;
     will-change: grid-template-rows;
}

.slick-current.slick-active .pt-facility.pt-style-1 .pt-facility-info {
     grid-template-rows: 1fr;
     opacity: 1;
}

.pt-facility.pt-style-1 .pt-facility-info .pt-facility-description {
     min-height: 0;
     overflow: hidden;
}

@media (max-width: 1400px) {
     .pt-facility-slider.pt-style-1 .pt-content-column {
          width: 600px;
     }
}

@media(max-width:1279px) {
     .pt-facility-slider.pt-style-1 .pt-content-column {
          width: 500px;
     }
}

@media(max-width:1099px) {
     .pt-facility-slider.pt-style-1 .pt-content-column {
          width: 400px;
     }
}

@media (max-width: 1024px) {
     .pt-facility-slider.pt-style-1 .pt-content-column {
          position: relative;
          left: auto;
          width: 100%;
          order: 1;
     }
}

@media (max-width: 767px) {

     .pt-facility-list .pt-facility.pt-style-1 {
          padding: 20px;
     }

     .pt-facility.pt-style-1 .pt-facility-top .pt-facility-title {
          font-size: 24px;
          line-height: 32px;
     }

     .pt-facility.pt-style-1.pt-active .pt-facility-info .pt-facility-description {
          padding-top: 20px;
     }

     .pt-facility.pt-style-1 .pt-facility-top .pt-icon-button {
          width: 45px;
          height: 45px;
          font-size: 22px;
          line-height: 45px;
     }

     .pt-facility-slider.pt-style-1 .pt-content-column .pt-facility-image {
          padding: 20px;
     }
}

/*===============================================
   Testimonial
================================================*/

/*===== testimonial-style-1 =====*/

.pt-testimonial-slider-slick-1 {
     display: grid;
     grid-template-columns: 100%;
}

.elementor-widget.elementor-widget-testi_monial {
     position: initial;
}

.pt-testimonial-slider-slick-1 .slick-slider-thumb .slick-track {
     transform: inherit !important;
     display: flex;
     flex-direction: column;
     gap: 30px;
}

.pt-testimonial-slider-slick-1 .slick-slide {
     margin: 0;
}

.pt-testimonial-slider-slick-1 .slick-slider-thumb .slick-track .slick-slide {
     transition: var(--transition);
}

.pt-testimonial-slider-slick-1 .slick-slider-thumb .slick-track .slick-slide:last-child {
     margin-bottom: 0;
}

.pt-testimonial-slider-slick-1 .pt-thumbs-column {
     position: absolute;
     bottom: 0;
     left: 100%;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-star {
     color: #FFCA28;
     font-size: 24px;
     margin-bottom: 40px;
     display: flex;
     gap: 5px;
     flex-direction: row;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-description {
     font-size: clamp(1.5rem, 1rem + 1.4vw, 2rem);
     line-height: 1.35;
     color: var(--e-global-color-text);
     margin-bottom: 45px;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media {
     display: flex;
     align-items: center;
     gap: 16px;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-author-name {
     color: var(--e-global-color-secondary);
     font-weight: 600;
     margin-bottom: 5px;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-author-designation {
     font-size: 18px;
     line-height: 26px;
     font-weight: 400;
     color: var(--e-global-color-primary);
}


/* ===== thumbnail images ===== */
.pt-testimonial-slider-slick-1 .pt-testimonial-image {
     width: 160px !important;
     height: 160px;
     border-radius: var(--e-global-big-border-radius);
}

.pt-testimonial-slider-slick-1 .pt-testimonial-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: var(--e-global-big-border-radius);
}

.pt-testimonial-slider-slick-1 .pt-thumbs-column {
     position: relative;
     z-index: 2;
}

.pt-testimonial-slider-slick-1 .pt-thumbs-column .slick-slider-thumb,
.pt-testimonial-slider-slick-1 .pt-thumbs-column .slick-list,
.pt-testimonial-slider-slick-1 .pt-thumbs-column .slick-track {
     position: static !important;
     transform: none !important;
     width: 100% !important;
     overflow: hidden !important;
}

/* Common style — every thumb slide sits absolutely, sized/positioned by its slot-* class */
.pt-testimonial-slider-slick-1 .pt-thumbs-column .slick-slide {
     position: absolute !important;
     height: auto !important;
     cursor: pointer;
     transition: top .5s cubic-bezier(.4, 0, .2, 1),
          right .5s cubic-bezier(.4, 0, .2, 1),
          width .5s cubic-bezier(.4, 0, .2, 1);
}

.pt-testimonial-slider-slick-1 .pt-thumbs-column .slick-slide>div {
     transform: translate(-50%, -50%);
     transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.pt-testimonial-slider-slick-1 .pt-thumbs-column .slick-slide img {
     transition: filter .4s ease, opacity .4s ease, box-shadow .4s ease;
}

.pt-testimonial-slider-slick-1 .pt-thumbs-column .slick-slide.slot-0 .pt-testimonial-image {
     width: 234px !important;
     height: 234px;
}

/* ===== Diagonal stack positions (slot-2 = active / center / biggest) ===== */

.pt-testimonial-slider-slick-1 .pt-thumbs-column .slick-slide.slot-0 {
     top: 45px;
     right: 224px;
}

.pt-testimonial-slider-slick-1 .pt-thumbs-column .slick-slide.slot-1 {
     top: 245px;
     right: 60px;
}

.pt-testimonial-slider-slick-1 .pt-thumbs-column .slick-slide.slot-2 {
     top: 345px;
     right: -100px;
}

.pt-testimonial-slider-slick-1 .pt-thumbs-column .slick-slide.slot-3 {
     top: -268px;
     right: -100px;
}

.pt-testimonial-slider-slick-1 .pt-thumbs-column .slick-slide.slot-4 {
     top: -160px;
     right: 68px;
}

.pt-testimonial-slider-slick-1 .slick-track:before,
.pt-testimonial-slider-slick-1 .slick-track:after {
     display: none;

     content: '';
}

.pt-testimonial-slider-slick-1 .slick-prev.slick-disabled,
.pt-testimonial-slider-slick-1 .slick-next.slick-disabled {
     display: none !important;
}

@media(max-width:1023px) {
     .pt-testimonial-slider-slick-1 .pt-thumbs-column {
          display: none;
     }
}

@media(max-width:767px) {
     .pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-star {
          font-size: 18px;
          margin-bottom: 20px;
     }

     .pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-description {
          font-size: 18px;
          line-height: 1.35;
          margin-bottom: 20px;
     }

     .pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-author-name {
          font-size: 22px;
          line-height: 30px;
     }
}

/*===== testimonial-style-2 =====*/

.pt-testimonial-slider-2 {
     display: grid;
     grid-template-columns: 450px 1fr;
     align-items: center;
     gap: 60px;
     padding: 30px 110px 30px 30px;
     background-color: var(--e-global-color-accent);
     border-radius: var(--e-global-big-border-radius);
     overflow: hidden;
}

.pt-testimonial-slider-2 .pt-testimonial-media .pt-testimonial-main-img {
     position: relative;
     border-radius: var(--e-global-big-border-radius);
}

.pt-testimonial-slider-2 .pt-testimonial-media .pt-testimonial-main-img img {
     position: relative;
     object-fit: cover;
     border-radius: var(--e-global-big-border-radius);
}

.pt-testimonial-slider-2 .pt-testimonial-media .pt-quote {
     position: absolute;
     left: 260px;
     top: 50%;
     transform: translate(-50%, -50%);
     font-size: 120px;
     line-height: 1;
     color: rgba(var(--e-global-color-white-rgb), 0.3);
     z-index: 2;
}

.pt-testimonial-slider-2 .pt-testimonial-media .pt-quote svg path {
     fill: rgba(var(--e-global-color-white-rgb), 0.3) !important;
}

.pt-testimonial-slider-2 .pt-testimonial-media .pt-quote i:before {
     line-height: inherit;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
     overflow: hidden;
}

.pt-testimonial-content .pt-testimonial-star {
     color: #FFCA28;
     font-size: 24px;
     margin-bottom: 40px;
     display: flex;
     gap: 5px;
     flex-direction: row;
}

.pt-testimonial-content .pt-testimonial-description {
     font-size: 18px;
     line-height: 1.8;
     font-weight: 400;
     color: var(--e-global-color-text);
     margin-bottom: 45px;
}

.pt-testimonial-content .pt-testimonial-media {
     display: flex;
     align-items: center;
     gap: 20px;
     flex-wrap: wrap;
}

.pt-testimonial-media .pt-testimonial-author-img {
     width: 70px;
     height: 70px;
}

.pt-testimonial-media .pt-testimonial-author-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: var(--e-global-big-border-radius);
}

.pt-testimonial-media .pt-testimonial-author-name {
     font-size: 28px;
     line-height: 36px;
     color: var(--e-global-color-secondary);
     font-weight: 600;
     margin-bottom: 5px;
}

.pt-testimonial-media .pt-testimonial-author-designation {
     font-size: 18px;
     line-height: 24px;
     font-weight: 400;
     color: var(--e-global-color-primary);
}

/* Owl button */

.pt-testimonial-slider-2 .owl-nav {
     display: none;
}

/* Owl Dots */

.pt-testimonial-slider-2 .owl-dots {
     display: inline-block;
     margin: 0;
     right: 30px;
     bottom: 22px;
     position: absolute;
     width: auto;
     ;
}

@media(max-width:1279px) {

     .pt-testimonial-slider-2 {
          gap: 0;
          padding: 45px;
          grid-template-columns: 1fr;
          border-radius: var(--e-global-border-radius);
     }

     .pt-testimonial-slider-2 .pt-testimonial-media .pt-testimonial-main-img,
     .pt-testimonial-slider-2 .pt-testimonial-media .pt-quote {
          display: none;
     }
}

@media(max-width: 767px) {

     .pt-testimonial-slider-2 {
          padding: 30px 20px;
     }

     .pt-testimonial-slider-2 .pt-testimonial-media .pt-testimonial-main-img,
     .pt-testimonial-slider-2 .pt-testimonial-media .pt-quote {
          display: none;
     }

     .pt-testimonial-content .pt-testimonial-star {
          margin-bottom: 20px;
          font-size: 20px;
     }

     .pt-testimonial-content .pt-testimonial-description {
          margin-bottom: 30px
     }

     .pt-testimonial-slider-2 .owl-dots {
          position: relative;
          bottom: 0;
          right: 0;
          text-align: left;
          margin-top: 30px;
     }

     .pt-testimonial-slider-2 .owl-carousel .owl-dots .owl-dot {
          width: 30px;
     }
}

/*===============================================
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(--e-global-border-radius);
     -moz-border-radius: var(--e-global-border-radius);
     border-radius: var(--e-global-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(--e-global-typography-text-font-family);
     color: var(--e-global-color-primary);
}

.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;
     color: var(--e-global-color-secondary);
}

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

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

@media(max-width:349px) {
     .pt-recent-post {
          flex-direction: column;
          align-items: flex-start;
          gap: 15px;
     }

}

@media(max-width:397px) {
     .pt-recent-post .pt-recent-post-info h6 {
          font-size: 18px;
          line-height: 26px;
     }

     .pt-blog-post .pt-post-meta ul {
          gap: 10px;
     }
}

/*===============================================
  Our Team
================================================*/

/*====== Team-box style-1 ======*/

.pt-team-box.pt-style-1 {
     overflow: hidden;
     position: relative;
     transition: var(--transition);
}

.pt-team-box.pt-style-1 .pt-team-image-wrapper {
     position: relative;
     margin-bottom: 30px;
}

.pt-team-box.pt-style-1 .pt-team-image-wrapper .pt-team-media {
     position: relative;
     overflow: hidden;
     border-radius: var(--e-global-border-radius);
}

.pt-team-box.pt-style-1 .pt-team-image-wrapper .pt-team-media img {
     border-radius: var(--e-global-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-social {
     position: absolute;
     bottom: 30px;
     right: 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: var(--small-border-radius);
     width: 40px;
     height: 40px;
     font-size: 18px;
     line-height: 40px;
     text-align: center;
     transition: var(--transition);
     color: var(--e-global-color-secondary);
     background-color: var(--e-global-color-white);
}

.pt-team-box.pt-style-1 .pt-team-social .pt-social-icon-wrap {
     list-style: none;
     margin: 0;
     align-items: center;
     text-align: center;
     transition: var(--transition);
     opacity: 0;
     position: absolute;
     bottom: 40px;
     transform: translateY(10px);
     transition: transform 0.5s ease, opacity 0.5s ease;
     visibility: hidden;
     border-radius: 15px 15px 0 0;
}

.pt-team-box.pt-style-1 .pt-team-social .pt-social-icon-wrap li {
     margin-bottom: 7px;
     width: 40px;
     height: 40px;
     font-size: 18px;
     line-height: 40px;
     transition: var(--transition);
     border-radius: var(--small-border-radius);
     color: var(--e-global-color-secondary);
     background-color: var(--e-global-color-white);
}

.pt-team-box.pt-style-1 .pt-team-social .pt-social-icon-wrap li:hover {
     color: var(--e-global-color-white);
     background-color: var(--e-global-color-primary);
}

.pt-team-box.pt-style-1 .pt-team-social:hover .pt-social-icon-wrap {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}

.pt-team-box.pt-style-1 .pt-team-social .pt-social-icon-wrap li a {
     color: var(--e-global-color-secondary);
     transition: var(--transition);
}

.pt-team-box.pt-style-1 .pt-team-social .pt-social-icon-wrap li:hover a {
     color: var(--e-global-color-white);
}

.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 .pt-team-name {
     color: var(--e-global-color-secondary);
     font-size: 22px;
     line-height: 30px;
     margin-bottom: 5px;
}

.pt-team-box.pt-style-1 .pt-team-info .pt-team-name a {
     color: var(--e-global-color-secondary);
     transition: var(--transition);
}

.pt-team-box.pt-style-1 .pt-team-info .pt-team-designation {
     color: var(--e-global-color-primary);
     font-size: 18px;
     line-height: 26px;
     font-weight: 400;
}

.pt-team-box-slider-1 .owl-nav,
.pt-team-box-slider-1 .owl-dots {
     display: none;
}

@media(max-width:767px) {
     .pt-team-box.pt-style-1 .pt-team-image-wrapper .pt-team-media img {
          aspect-ratio: inherit;
     }
}

/*====== Team-box style-2 ======*/

.pt-team-box.pt-style-2 {
     overflow: hidden;
     position: relative;
     transition: var(--transition);
}

.pt-team-box.pt-style-2 .pt-team-box-media {
     position: relative;
     margin-bottom: 20px;
}

.pt-team-box.pt-style-2 .pt-team-box-media {
     position: relative;
     overflow: hidden;
     border-radius: var(--e-global-border-radius);
}

.pt-team-box.pt-style-2 .pt-team-box-media img {
     border-radius: var(--e-global-border-radius);
     width: 100%;
     object-fit: cover;
     transition: var(--transition);
}

.pt-team-box.pt-style-2 .pt-team-box-media:hover img {
     transform: scale(1.1);
}

.pt-team-box.pt-style-2 .pt-team-box-media .pt-social-icon-wrap {
     padding: 0;
     margin: 0;
     display: flex;
     justify-content: center;
     gap: 10px;
     list-style: none;
     position: absolute;
     left: 0;
     right: 0;
     bottom: 30px;
     z-index: 9;
     opacity: 0;
     transition: var(--transition);
}

.pt-team-box.pt-style-2:hover .pt-team-box-media .pt-social-icon-wrap {
     opacity: 1;
}

@keyframes ec-social-fade-in {
     0% {
          opacity: 0;
          transform: translateY(15px) scale(0.95);
     }

     100% {
          opacity: 1;
          transform: translateY(0) scale(1);
     }
}

.pt-team-box.pt-style-2 .pt-team-box-media .pt-social-icon-wrap li {
     opacity: 0;
     transform: translateY(20px) scale(0.95);
}

.pt-team-box.pt-style-2:hover .pt-team-box-media .pt-social-icon-wrap li {
     animation: ec-social-fade-in 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pt-team-box.pt-style-2:hover .pt-team-box-media .pt-social-icon-wrap li:nth-child(1) {
     animation-delay: 0.08s;
}

.pt-team-box.pt-style-2:hover .pt-team-box-media .pt-social-icon-wrap li:nth-child(2) {
     animation-delay: 0.16s;
}

.pt-team-box.pt-style-2:hover .pt-team-box-media .pt-social-icon-wrap li:nth-child(3) {
     animation-delay: 0.24s;
}

.pt-team-box.pt-style-2:hover .pt-team-box-media .pt-social-icon-wrap li:nth-child(4) {
     animation-delay: 0.32s;
}

.pt-team-box.pt-style-2 .pt-team-box-media .pt-social-icon-wrap li a {
     background: var(--e-global-color-white);
     color: var(--e-global-color-primary);
     width: 45px;
     height: 45px;
     line-height: 45px;
     display: flex;
     justify-content: center;
     border-radius: var(--e-global-big-border-radius);
     font-size: 18px;
     align-items: center;
     transition: var(--transition);
}

.pt-team-box.pt-style-2 .pt-team-box-media .pt-social-icon-wrap li a i:before {
     line-height: inherit;
}

.pt-team-box.pt-style-2 .pt-team-info {
     text-align: center;
}

.pt-team-box.pt-style-2 .pt-team-info .pt-team-name {
     color: var(--e-global-color-secondary);
     font-size: 22px;
     line-height: 30px;
     margin-bottom: 5px;
}

.pt-team-box.pt-style-2 .pt-team-info .pt-team-name a {
     color: var(--e-global-color-secondary);
     transition: var(--transition);
}

.pt-team-box.pt-style-2 .pt-team-info .pt-team-designation {
     color: var(--e-global-color-primary);
     font-size: 18px;
     line-height: 26px;
     font-weight: 400;
}

/*===============================================
    Event Card
================================================*/
.pt-event-card.pt-style-1 {
     display: grid;
     grid-template-columns: 0.6fr 436px 1fr;
     gap: 60px;
     margin-bottom: 30px;
     background: var(--e-global-color-accent);
     padding: 40px 30px;
     border-radius: var(--e-global-border-radius);
}

.pt-event-card-list .pt-event-card.pt-style-1:last-child {
     margin-bottom: 0px;
}

.pt-event-card.pt-style-1 .pt-event-card-date-details {
     display: flex;
     gap: 30px;
     flex-direction: column;
     justify-content: space-between;
}

.pt-event-card.pt-style-1 .pt-event-card-date-details .pt-event-card-date .pt-event-card-day {
     font-size: 24px;
     line-height: 32px;
     font-weight: 600;
     color: var(--e-global-color-secondary);
}

.pt-event-card.pt-style-1 .pt-event-card-date-details .pt-event-card-date .pt-event-card-venue {
     margin: 0;
     font-size: 16px;
     line-height: 24px;
     font-weight: 400;
     color: var(--e-global-color-text);
}

.pt-event-card.pt-style-1 .pt-event-card-date-details .event-card-cost {
     display: inline-flex;
     font-size: 18px;
     line-height: 26px;
     font-weight: 600;
     align-items: center;
     justify-content: center;
     background: transparent;
     border: 2px solid rgba(var(--e-global-color-secondary-rgb), .1);
     color: var(--e-global-color-secondary);
     padding: 5px 15px;
     border-radius: var(--small-border-radius);
     width: max-content;
}

.pt-event-card.pt-style-1 .pt-event-card-image {
     position: relative;
     overflow: hidden;
     border-radius: var(--e-global-border-radius);
}

.pt-event-card.pt-style-1 .pt-event-card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
     -moz-transition: var(--transition);
     -ms-transition: var(--transition);
     -o-transition: var(--transition);
     -webkit-transition: var(--transition);
     border-radius: var(--e-global-border-radius);
}

.pt-event-card.pt-style-1 .pt-event-card-image:hover img {
     transform: scale(1.1);
}

.pt-event-card.pt-style-1 .pt-event-card-info .pt-event-card-title {
     font-size: 30px;
     line-height: 38px;
     margin-bottom: 20px;
     width: 300px;
     color: var(--e-global-color-secondary);
}

.pt-event-card.pt-style-1 .pt-event-card-info .pt-event-card-desc {
     margin-bottom: 0;
     font-size: 18px;
     line-height: 26px;
     margin-bottom: 20px;
     color: var(--e-global-color-text);
}

.pt-event-card.pt-style-1 .pt-event-card-info .pt-event-card-time {
     margin: 0;
     font-size: 18px;
     line-height: 26px;
     font-weight: 600;
     margin-bottom: 40px;
     color: var(--e-global-color-secondary);
}

@media(max-width:1099px) {
     .pt-event-card.pt-style-1 {
          display: flex;
          flex-wrap: wrap;
          gap: 30px;
          justify-content: space-between;
     }

     .pt-event-card.pt-style-1 .pt-event-card-date-details {
          width: 100%;
     }

     .pt-event-card.pt-style-1 .pt-event-card-image {
          width: 47%;
     }

     .pt-event-card.pt-style-1 .pt-event-card-info {
          width: 47%;
     }
}

@media(max-width:1024px) {
     .pt-event-card.pt-style-1 .pt-event-card-info .pt-event-card-time {
          margin-bottom: 30px;
     }
}

@media(max-width: 767px) {

     .pt-event-card.pt-style-1 {
          padding: 30px 20px;
     }

     .pt-event-card.pt-style-1 .pt-event-card-date-details .pt-event-card-date .pt-event-card-day {
          font-size: 22px;
          line-height: 30px;
     }

     .pt-event-card.pt-style-1 .pt-event-card-date-details .event-card-cost {
          font-size: 18px;
          line-height: 26px;
          padding: 10px 15px;
     }

     .pt-event-card.pt-style-1 .pt-event-card-image {
          width: 100%;
     }

     .pt-event-card.pt-style-1 .pt-event-card-info {
          width: 100%;
     }

     .pt-event-card.pt-style-1 .pt-event-card-info .pt-event-card-title {
          width: 100%;
          font-size: 24px;
          line-height: 32px;
          margin-bottom: 10px;
     }
}

/*===============================================
    Price Plan
================================================*/

.pt-price-plan.pt-style-1 {
     background: var(--e-global-color-white);
     padding: 40px;
     border-radius: var(--e-global-border-radius);
}

.pt-price-plan.pt-style-1.pt-active {
     background: var(--e-global-color-primary);
}

.pt-price-plan.pt-style-1 .pt-price-detail .pt-price-title {
     font-size: 18px;
     line-height: 26px;
     padding: 4px 20px;
     text-align: center;
     font-weight: 400;
     margin-bottom: 40px;
     display: inline-block;
     color: var(--e-global-color-white);
     background-color: var(--e-global-color-primary);
     border-radius: var(--e-global-big-border-radius);
}

.pt-price-plan.pt-style-1.pt-active .pt-price-detail .pt-price-title {
     color: var(--e-global-color-secondary);
     background-color: var(--e-global-color-white);
}

.pt-price-plan.pt-style-1 .pt-price {
     border-bottom: 1px solid rgba(var(--e-global-color-secondary-rgb), .1);
     padding-bottom: 20px;
     margin-bottom: 20px;
     font-family: var(--e-global-typography-primary-font-family);
}

.pt-price-plan.pt-style-1 .pt-price .pt-currency {
     font-size: clamp(1.5rem, 1rem + 1.4vw, 2rem);
     /* 24px â†’ 32px */
     line-height: 1.35;
     font-weight: 600;
     display: inline-block;
     color: var(--e-global-color-secondary);
}

.pt-price-plan.pt-style-1 .pt-amount {
     font-size: 60px;
     font-weight: 600;
     display: inline-block;
     color: var(--e-global-color-secondary);
     line-height: 1.25;
}

.pt-price-plan.pt-style-1 .pt-price-month {
     text-transform: capitalize;
     font-weight: 600;
     font-size: 18px;
     line-height: 26px;
     color: var(--e-global-color-primary);
     font-family: var(--e-global-typography-text-font-family);
}

.pt-price-plan.pt-style-1 .pt-price-sub-title {
     margin-bottom: 30px;
     display: inline-block;
     width: 100%;
     font-weight: 400;
     color: var(--e-global-color-text);
}

.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-price .pt-currency,
.pt-price-plan.pt-style-1.pt-active .pt-amount,
.pt-price-plan.pt-style-1.pt-active .pt-price-month {
     color: var(--e-global-color-white);
}

.pt-price-plan.pt-style-1 .pt-price-list {
     padding: 40px;
     margin: 0 0 40px;
     display: flex;
     gap: 15px;
     flex-direction: column;
     border-radius: var(--e-global-border-radius);
     background-color: var(--e-global-color-accent);
}

.pt-price-plan.pt-style-1 .pt-price-list li {
     display: flex;
     gap: 15px;
     font-size: 18px;
     line-height: 26px;
     font-weight: 400;
     align-items: flex-start;
}

.pt-price-plan.pt-style-1 .pt-price-list li i {
     color: var(--e-global-color-primary);
     font-size: 24px;
}

.pt-price-plan.pt-style-1 .pt-price-list li i::before {
     line-height: inherit;
}

.pt-price-plan.pt-style-1.pt-active .pt-price {
     border-bottom: 1px solid rgba(var(--e-global-color-white-rgb), .1);
}

.pt-price-plan.pt-style-1.pt-active .pt-button.pt-button-flat {
     background: var(--e-global-color-white);
     color: var(--e-global-color-secondary);
}

.pt-price-plan.pt-style-1.pt-active .pt-button.pt-button-flat:hover {
     background: var(--e-global-color-secondary);
     color: var(--e-global-color-white);
}

.pt-price-plan.pt-style-1.pt-active .pt-button.pt-button-flat .pt-button-animation {
     background: var(--e-global-color-secondary);
}

.pt-price-plan.pt-style-1.pt-active .pt-button.pt-button-flat .pt-button-icon-inner {
     background: var(--e-global-color-secondary);
     color: var(--e-global-color-white);
}

.pt-price-plan.pt-style-1.pt-active .pt-button.pt-button-flat:hover .pt-button-icon-inner {
     background: var(--e-global-color-white);
     color: var(--e-global-color-secondary);
}


@media(max-width:1279px) {
     .pt-price-plan.pt-style-1 .pt-price-list {
          padding: 30px 20px;
     }
}

@media(max-width:1199px) {
     .pt-price-plan.pt-style-1 {
          padding: 30px;
     }
}

@media (max-width:767px) {

     .pt-price-plan.pt-style-1 {
          padding: 30px 20px;
     }

     .pt-price-plan.pt-style-1 .pt-price-sub-title {
          margin-bottom: 20px;
     }

     .pt-price-plan.pt-style-1 .pt-amount {
          font-size: 28px;
          line-height: 36px;
     }

     .pt-price-plan.pt-style-1 .pt-price-list li {
          gap: 10px;
     }

     .pt-price-plan.pt-style-1 .pt-price-list li i {
          font-size: 18px;
     }
}

/*===============================================
    TAB
  ================================================*/

/*=====  tab style-1  =====*/
.pt-tabs-1 .nav.nav-tabs {
     gap: 60px;
     flex-wrap: nowrap;
     border: none;
     padding: 20px;
     border-radius: var(--e-global-border-radius);
     background-color: var(--e-global-color-white);
}

.pt-tabs-1 .nav.nav-tabs .nav-item.nav-link {
     padding: 15px;
     border-radius: var(--small-border-radius);
     border: none;
     transition: var(--transition);
     color: var(--e-global-color-secondary);
     background-color: var(--e-global-color-accent);
}

.pt-tabs-1 .nav.nav-tabs .nav-item.nav-link.active {
     color: var(--e-global-color-white);
     background-color: var(--e-global-color-primary);
}

.pt-tabs-1 .nav.nav-tabs .nav-item.nav-link .pt-tab-header .pt-tab-title {
     font-size: clamp(1.25rem, 0.8rem + 1vw, 1.5rem);
     /* 16px â†’ 24px */
     line-height: 1.5;
     font-weight: 600;
     text-align: start;
     transition: var(--transition);
     color: var(--e-global-color-secondary);
}

.pt-tabs-1 .nav.nav-tabs .nav-item.nav-link.active .pt-tab-header .pt-tab-title {
     color: var(--e-global-color-white);
}

.tab-content.pt-tabs-content {
     margin-top: 60px;
}

#pt-tab-0 .pt-tab-info,
#pt-tab-2 .pt-tab-info {
     margin-right: 60px;
}

#pt-tab-1 .pt-tab-info,
#pt-tab-3 .pt-tab-info {
     margin-left: 60px;
}

.pt-tabs-1 .pt-tab-info {
     padding: 60px;
     border-radius: var(--e-global-border-radius);
     background-color: var(--e-global-color-white);
}

.tab-content.pt-tabs-content .pt-tab-info .pt-tabs-title {
     font-weight: 600;
     margin-bottom: 10px;
     color: var(--e-global-color-secondary);
}

.tab-content.pt-tabs-content .pt-tab-info .pt-tabs-description {
     color: var(--e-global-color-text);
     margin-bottom: 20px;
}

.pt-tabs-1 .pt-tab-info .pt-title-list {
     padding: 0;
     margin: 0;
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
     flex-direction: column;
     list-style: none;
}

.pt-tabs-1 .pt-tab-info .pt-title-list li {
     color: var(--e-global-color-secondary);
     font-family: var(--e-global-typography-primary-font-family);
     display: inline-flex;
     align-items: start;
     gap: 10px;
     font-weight: 600;
     font-size: 22px;
     line-height: 30px;
}

.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(--e-global-color-primary);
     font-size: 22px;
     line-height: 30px;
}

.pt-tabs-1 .pt-tab-info .pt-title-list li i:before {
     line-height: inherit;
}

.pt-tabs-1 .pt-tab-info .pt-button.pt-button-flat {
     margin-top: 40px;
}

.tab-content.pt-tabs-content .pt-tab-image {
     overflow: hidden;
     padding: 45px;
     height: 100%;
     width: 100%;

     background-color: var(--e-global-color-white);
     border-radius: var(--e-global-border-radius);
}

.tab-content.pt-tabs-content .pt-tab-image img {
     height: 100%;
     width: 100%;
     object-fit: cover;
     border-radius: var(--e-global-border-radius);
}


@media(max-width:1199px) {
     .pt-tabs-1 .nav.nav-tabs {
          gap: 30px;
          flex-wrap: wrap;
     }

     .pt-tabs-1 .pt-tab-info {
          padding: 45px;
     }

     #pt-tab-0 .pt-tab-info,
     #pt-tab-2 .pt-tab-info {
          margin-right: 45px;
     }

     #pt-tab-1 .pt-tab-info,
     #pt-tab-3 .pt-tab-info {
          margin-left: 45px;
     }

     .tab-content.pt-tabs-content .pt-tab-image {
          padding: 45px;
     }

}

@media(max-width:1023px) {
     .tab-content.pt-tabs-content {
          margin-top: 40px;
     }
}

@media(max-width:991px) {

     #pt-tab-0 .pt-tab-info,
     #pt-tab-2 .pt-tab-info {
          margin-right: 0;
          margin-bottom: 30px;
     }

     #pt-tab-1 .pt-tab-info,
     #pt-tab-3 .pt-tab-info {
          margin-left: 0;
          margin-bottom: 30px;
     }

}

@media(max-width:767px) {

     .tab-content.pt-tabs-content {
          margin-top: 30px;
     }

     .pt-tabs-1 .pt-tab-info {
          padding: 30px 20px;
     }

     .pt-tabs-1 .pt-tab-info .pt-title-list li {
          font-size: 18px;
          line-height: 26px;
     }

     .pt-tabs-1 .pt-tab-info .pt-title-list li i {
          font-size: 18px;
          line-height: 26px;
     }

     .pt-tabs-1 .pt-tab-info .pt-button.pt-button-flat {
          margin-top: 30px;
     }

     .tab-content.pt-tabs-content .pt-tab-image {
          padding: 30px 20px;
     }
}

/*===============================================
  Image Gallary
================================================*/

/* ====== image Gallary ====== */

.pt-page-gallery-box .gallery-item a {
     display: block;
     overflow: hidden;
     border-radius: var(--e-global-border-radius);
}

.pt-page-gallery-box .gallery-item {
     position: relative;
     overflow: hidden;
     border-radius: var(--e-global-border-radius);
}

.pt-page-gallery-box .gallery-item img {
     width: 100%;
     aspect-ratio: 1 / 0.77;
     object-fit: cover;
     overflow: hidden;
     border-radius: var(--e-global-border-radius);
     transition: var(--transition);
}

.pt-page-gallery-box .gallery-item:hover img {
     transform: scale(1.1);
}

.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(--e-global-color-white);
     color: var(--e-global-color-secondary);
     height: 60px;
     width: 60px;
     line-height: 60px;
     align-items: center;
     text-align: center;
     justify-content: center;
     outline: none;
     border-radius: var(--e-global-big-border-radius);
     transition: var(--transition);

}

.pt-gallery-custom .elementor-swiper-button svg {
     fill: var(--e-global-color-secondary) !important;
}

.pt-gallery-custom .elementor-swiper-button:hover {
     background: var(--e-global-color-primary-alt);
}

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

/*===============================================
   Animation
================================================*/

.pt-animation-button.pt-style-1 {
     width: 155px;
     height: 155px;
     -webkit-border-radius: 900px;
     -moz-border-radius: 900px;
     border-radius: 900px;
     transform-origin: center;
     position: relative;
     background: var(--e-global-color-primary);
}

.pt-animation-button.pt-style-1 .pt-animation-button-inner .pt-animation-button-icon {
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     width: 77px;
     height: 77px;
     font-size: 34px;
     line-height: 1;
     z-index: 1;
     align-content: center;
     -webkit-border-radius: 900px;
     -moz-border-radius: 900px;
     border-radius: 900px;
     text-align: center;
     color: var(--e-global-color-white);
     background: var(--e-global-color-secondary);

}

.pt-animation-button.pt-style-1 .pt-animation-button-inner .pt-animation-button-icon i::before {
     line-height: inherit;
}

.pt-animation-button.pt-style-1 .pt-animation-button-inner img {
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     animation: text-animatio 10s linear infinite;
     transform: rotate(0deg);
     padding: 10px;
}

@keyframes text-animatio {
     from {
          transform: rotate(0deg);
     }

     to {
          transform: rotate(-360deg);
     }
}

@media(max-width:767px) {
     .pt-animation-button.pt-style-2 {
          width: 130px;
          height: 130px;
     }
}

/*===============================================
    Video Popup
================================================*/

.pt-video-popup {
     position: relative;
}

.pt-video-popup .pt-video-popup-img img {
     height: 721px;
     width: 100%;
     object-fit: cover;
     border-radius: 0 0 20px 20px;
}

.pt-video-popup .pt-popup-animation.pt-style-1 {
     position: absolute;
     top: 50%;
     left: 50%;
     display: block;
     transform: translate(-50%, -50%);
}

.popup-youtube {
     height: 120px;
     width: 120px;
     line-height: 120px;
     text-align: center;
     border-radius: var(--e-global-big-border-radius);
     backdrop-filter: blur(20px);
     display: inline-block;
     background: var(--e-global-color-white);
     color: var(--e-global-color-primary);
     font-size: 28px;
}

.popup-youtube:hover {
     color: var(--e-global-color-secondary);
}

.popup-youtube .pt-popup-inner .pt-popup-content i:before {
     line-height: inherit;
}

.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;
     border-radius: var(--e-global-big-border-radius);
     font-family: var(--e-global-typography-text-font-family);
     color: var(--e-global-color-white);
     background-color: var(--e-global-color-primary);
     position: absolute;
     letter-spacing: 0;
     font-weight: 400;
     transition: var(--transition);
}

.mfp-wrap .mfp-close:hover {
     background: var(--e-global-color-white);
     color: var(--e-global-color-primary);
}

.mfp-wrap .mfp-close:focus {
     outline: none;
}

@media(max-width:1400px) {
     .pt-video-popup .pt-video-popup-img img {
          height: 450px;
          border-radius: 0;
     }
}

@media(max-width:767px) {
     .pt-video-popup .pt-video-popup-img img {
          height: 350px;
     }
}

/*===============================================
   Woocommerce
================================================*/

/* 4 column   */

.products.columns-4 li.product {
     transition: var(--transition);
}


.products li.product .pt-product-bottom .price .woocommerce-Price-amount.amount {
     color: var(--e-global-color-primary);
     font-size: 20px;
     line-height: 28px;
     font-weight: 400;
}

.products li.product .pt-product-meta .pt-product-info {
     margin-top: 30px;
}

.products li.product .pt-product-meta .pt-product-info .pt-product-bottom span a {
     width: 40px;
     height: 40px;
     top: 20px;
     right: 20px;
     font-size: 16px;
     line-height: 40px;
     position: absolute;
     background-color: var(--e-global-color-primary);
     color: var(--e-global-color-white);
     transition: var(--transition);
     border-radius: var(--small-border-radius);
     opacity: 0;
     visibility: hidden;
     transform: scale(0.8);
}

.products li.product:hover .pt-product-meta .pt-product-info .pt-product-bottom span a {
     opacity: 1;
     visibility: visible;
     transform: scale(1);
}

.products li.product .pt-product-meta .pt-product-info .pt-product-bottom span a:hover {
     background-color: var(--e-global-color-secondary);
     color: var(--e-global-color-white);
}

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

.products li.product .pt-product-meta .pt-product-info .pt-product-bottom .pt-product-addbtn a.loading i {
     display: none;
}

.products li.product .pt-product-meta .pt-product-info .pt-product-bottom .pt-product-addbtn a.added {
     display: none;
}

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

.products a.added_to_cart {
     display: block;
}

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

.products li.product .price ins {
     font-weight: 400;
     text-decoration: none;
}

.products li.product .price del {
     margin-right: 5px;
}

.products li.product .onsale {
     min-width: auto;
     min-height: auto;
     padding: 2px 15px;
     font-size: 16px;
     line-height: 24px;
     letter-spacing: 0;
     text-transform: uppercase;
     font-weight: 400;
     margin: 0;
     top: 10px;
     right: 10px;
     z-index: 0;
     color: var(--e-global-color-secondary);
     background-color: var(--e-global-color-primary);
     -webkit-border-radius: 900px;
     -moz-border-radius: 900px;
     border-radius: 900px;
}

.products li.product .button {
     font-size: 16px;
     padding: 8px 30px;
     font-weight: 400;
     font-family: var(--pt-title-fonts);
}

.products::after,
.products::before,
.products::after,
.products::before {
     display: none;
}


@media(max-width:479px) {

     .products li.product .woocommerce-loop-category__title,
     .products li.product .woocommerce-loop-product__title,
     .products li.product h3,
     .products .wc-block-grid__product-image:not(.wc-block-components-product-image),
     .products .wc-block-grid__product-title {
          font-size: 24px !important;
          line-height: 32px !important;
     }
}

/* ====== product-filters ====== */
.wc-block-product-filter-price-slider .text input[type=text] {
     font-size: 18px !important;
     line-height: 26px;
     font-weight: 400;
     color: var(--e-global-color-text);
}



.wc-blocks-components-select .wc-blocks-components-select__expand {
     transform: translateY(50%) !important;
}


@media(max-width:423px) {
     .wc-block-checkout__billing-fields .wc-block-components-address-form {
          display: flex;
          flex-wrap: wrap;
          gap: 0;
          justify-content: start;
     }


     .wc-block-components-form .wc-block-components-text-input,
     .wc-block-components-form .wc-block-components-checkout-step .wc-block-components-country-input,
     .wc-block-components-address-form__state.wc-block-components-state-input,
     .wc-block-components-text-input {
          width: 100%;
     }
}


.woocommerce ul.products::before,
.woocommerce ul.products::after {
     display: none;
}

/*===============================================
Woocommerce Button
================================================*/

.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(--e-global-color-grey);
     border-radius: 8px
}

.pt-cart-button .widget_shopping_cart_content .product_list_widget::-webkit-scrollbar-thumb {
     background-color: var(--e-global-color-primary);
     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(--e-global-typography-primary-font-family);
}

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

.pt-cart-button ul.cart_list li a {
     display: block;
     color: var(--e-global-color-secondary);
     text-decoration: none;
     font-weight: 400;
     font-family: var(--e-global-typography-primary-font-family);
     padding-right: 30px;
     line-height: normal;
     text-transform: capitalize;
     font-size: 18px;
     line-height: 26px;
}

.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(--e-global-color-secondary);
     text-align: center;
     background: transparent;
     font-family: var(--e-global-typography-text-font-family);
     margin: 0;
}

.pt-cart-button ul.product_list_widget a.remove:hover {
     color: var(--e-global-color-primary) !important;
}

.pt-cart-button .woocommerce-mini-cart__total.total {
     margin-bottom: 20px;
     margin-top: 20px;
     font-family: var(--e-global-typography-primary-font-family);
     font-size: 20px;
     line-height: 28px;
     text-transform: capitalize;
     font-weight: 600;
     color: var(--e-global-color-secondary);
}

.pt-cart-button .woocommerce-mini-cart__total.total .woocommerce-Price-amount.amount {
     float: right;
     color: var(--e-global-color-secondary);
     font-weight: 600;
     font-family: var(--e-global-typography-text-font-family);
}

.pt-cart-button .woocommerce-mini-cart__buttons .button {
     display: block;
     text-align: center;
     margin-bottom: 10px;
     background: var(--e-global-color-primary);
     color: var(--e-global-color-white);
     border-radius: 0;
     font-weight: 400;
     padding: 12px 30px;
     height: auto;
     font-size: 16px;
     line-height: 2;
     text-transform: uppercase;
     border-radius: 900px;
}

.pt-cart-button .woocommerce-mini-cart__buttons .button:hover {
     background: var(--e-global-color-secondary);
}

.pt-cart-button .woocommerce-mini-cart__buttons .button.checkout {
     margin-bottom: 0;
     background: none;
     border: 1px solid var(--e-global-color-secondary);
     color: var(--e-global-color-secondary);
}

.pt-cart-button .woocommerce-mini-cart__buttons .button.checkout:hover {
     background: var(--e-global-color-secondary);
     border-color: var(--e-global-color-secondary);
     color: var(--e-global-color-white);
}

.pt-cart-button p {
     margin-bottom: 0;
}

.pt-cart-button .btn-close {
     position: absolute;
     right: 30px;
     top: 30px;
     background: var(--e-global-color-primary);
     width: 50px;
     height: 50px;
     line-height: 56px;
     text-align: center;
     color: var(--e-global-color-white);
     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(--e-global-color-secondary);
}

.pt-sidebar .pt-close-btn i {
     line-height: inherit;
}

.widget_shopping_cart_content .woocommerce-mini-cart .woocommerce-mini-cart-item dl.variation {
     display: none;
}

.woocommerce-checkout td.product-name dl.variation {
     display: none;
}

/*=============================
     Custom CSS
=============================*/

.pt-bg-blur {
     background: rgba(var(--e-global-color-white-rgb), 0.4);
     backdrop-filter: blur(10px);
}

/* ======  button grey ====== */

.pt-button-grey .pt-button.pt-button-flat:hover {
     background: var(--e-global-color-secondary);
}

.pt-button-grey .pt-button.pt-button-flat .pt-button-animation {
     background: var(--e-global-color-secondary);
}


/* ====== image effect hover ====== */

.pt-image-hover {
     position: relative;
     overflow: hidden;
     transition: var(--transition);
     border-radius: var(--e-global-border-radius);
}

.pt-image-hover img {
     transition: var(--transition);
}

.pt-image-hover:hover img {
     transform: scale(1.1);
}

/* ======  about single service img height ====== */

.pt-image-height .elementor-widget.elementor-widget-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
}

/* ====== home-2 banner video-size ====== */

.pt-video-size .pt-video-popup .pt-popup-animation.pt-style-1 {
     position: absolute;
     top: -57px;
     right: -100px;
     display: block;
     transform: translate(50%, -50%);
}

.pt-video-size .popup-youtube {
     height: 40px;
     width: 40px;
     font-size: 15px;
     line-height: 40px;
}

/* ====== home-2 banner custom outline button  ====== */

.pt-video-button .pt-button.pt-button-outline {
     color: var(--e-global-color-white);
     flex-direction: row-reverse;
     padding: 15px 20px;
     border: 2px solid var(--e-global-color-white);
}

.pt-video-button .pt-button.pt-button-outline:hover {
     color: var(--e-global-color-white);
     border: 2px solid var(--e-global-color-white);
}

.pt-video-button .pt-button.pt-button-outline i {
     height: inherit;
     width: inherit;
     font-size: 24px;
     line-height: 32px;
     background-color: transparent;
     color: var(--e-global-color-white);
     border-radius: 0;
     transform: none;
     transition: var(--transition);
}

.pt-video-button .pt-button.pt-button-outline:hover i {
     transform: none;
     background-color: transparent;
     color: var(--e-global-color-white);
}

/* ====== Custom FAQ ====== */

.elementor-element>.e-n-accordion>.e-n-accordion-item[open]>.e-n-accordion-item-title {
     border-radius: 20px 20px 0 0 !important;
}

.elementor-element>.e-n-accordion>.e-n-accordion-item[open]>.e-con {
     border-radius: 0 0 20px 20px !important;
}