/*
Template: Confer - Conference & Events WordPress Theme
Author: peacefulqode.co.in
Version: 1.0
Design and Developed by: Peacefulqode
*/

/*================================================
[  Table of contents  ]
================================================
==> Moz Selection
==> General
==> Loading
==> Back to Top
==> WordPress Core
==> Button Core
==> Section Title
==> Custom class
==> Image Boder 
==> counter 
==> Timer
==> Team
==> Pricing plan 
==> Testimonial 
==> Client
==> Img-Corousel
==> Blog
==? Blog Sidebar
==> Recent Post  
==> Blog Single Post 
==> Portfoliobox
==> Event box
==> Banner
==> Service Box
==> Contact Form
==> Footer
==> Border svg
==> OWL Carousel
==> Header
==> Dashed border   
==> Pagination  
==> Custom Class 
==> Isotope Portfolio
==> Progress Bar
==> Event
==> Breadcrum
==> FAQ
==> Image Box
==> Image 
==> Marquee

======================================
[ End table content ]
======================================*/

/*================================================
Moz Selectio
================================================*/
:root {
    --primary-color: #C1ED0B;
    --dark-color: #1B1B1B;
    --secondary-color: #666666;
    --grey-color: #F4F4F4;
    --white-color: #ffffff;
    --body-fonts: "DM Sans", sans-serif;
    --title-fonts: "Oswald", sans-serif;
    --font-weight: 500;
    --transition: all 0.5s ease-in-out;
    --border: 1px dashed var(--dark-color);
    --light-white: rgba(255, 255, 255, 0.1);
    --light-black: rgba(0, 0, 0, 0.1);
    --border-light-black: rgba(27, 27, 27, 0.30)
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

::selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

/*================================================
General
================================================*/
body {
    background: var(--white-color);
    font-family: var(--body-fonts);
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.8;
    color: var(--secondary-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-fonts);
    color: var(--dark-color);
    font-style: normal;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 40px;
    font-style: normal;
    line-height: 48px;
}

h2 {
    font-size: 36px;
    font-style: normal;
    line-height: 44px;
}

h3 {
    font-size: 32px;
    font-style: normal;
    line-height: 40px;
}

h4 {
    font-size: 28px;
    font-style: normal;
    line-height: 36px;
}

h5 {
    font-size: 24px;
    font-style: normal;
    line-height: 32px;
}

h6 {
    font-size: 20px;
    font-style: normal;
    line-height: 28px;
}

/*===== Container =====*/
.container,
.elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 1400px;
}

.content-area .site-main {
    padding: 130px 0;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    float: left;
}

/*================================================
Loading
================================================*/
#pt-loading {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: var(--white-color);
}

#pt-loading img {
    height: 60px;
}

/*================================================
Back to Top
================================================*/
#back-to-top .top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    margin: 0px;
    color: var(--dark-color);
    background: var(--white-color);
    z-index: 99;
    font-size: 18px;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 90px;
    -moz-border-radius: 90px;
    -webkit-border-radius: 90px;
    overflow: hidden;
}
#back-to-top .top::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    --n: 16;
    --d: 12deg;
    --t: 2px;
    --c: var(--dark-color);
    padding: var(--t);
    background: var(--c);
    mask: linear-gradient(#0000 0 0) content-box,
          repeating-conic-gradient(from calc(var(--d)/2),
            #000 0 calc(360deg/var(--n) - var(--d)),
            #0000 0 calc(360deg/var(--n)));
    mask-composite: intersect;
    transition: var(--transition);
}

#back-to-top .top:hover::before {
    --c: var(--dark-color);
}

#back-to-top .top:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: scale(1.1);
}

#back-to-top .top i {
    display: inline-block;
}

#back-to-top .top:hover i {
    animation: back-to-top-animation 0.4s linear;
}

@keyframes back-to-top-animation {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: translate(0, -40px);
        opacity: 0;
    }

    51% {
        transform: translate(0, 40px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/*================================================
WordPress Core
================================================*/
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 15px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid var(--grey-color);
    max-width: 96%;
    padding: 5px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.wp-block-audio figcaption,
.wp-block-video figcaption,
.wp-block-image figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0.5rem;
    text-align: center;
}

.wp-block-gallery figcaption.blocks-gallery-caption {
    margin-bottom: 10px;
}

.bypostauthor {
    display: block;
}

.wp-caption-text {
    font-size: 14px;
    margin: 4px 0 0;
    line-height: normal;
}

/*===== Text meant only for screen readers =====*/

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    white-space: nowrap;
    height: 0px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: var(--grey-color);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/*================================================
Button Core
================================================*/
[type="button"],
[type="reset"],
[type="submit"] {
    padding: 12px 45px;
    font-family: var(--title-fonts);
    font-size: 18px;
    background: var(--primary-color);
    color: var(--dark-color);
    text-transform: uppercase;
    display: inline-block;
    border: none;
    width: auto;
    height: auto;
    line-height: 2;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
    color: var(--white-color) !important;
}

/*===== Button =====*/
.pt-button {
    position: relative;
    width: auto;
    background: var(--primary-color);
    text-transform: uppercase;
    color: var(--dark-color);
    font-family: var(--title-fonts);
    font-size: 18px;
    padding: 12px 45px;
    line-height: 2;
    vertical-align: middle;
    border: none;
    display: inline-block;
    overflow: hidden;
    transition: var(--transition);
    z-index: 9;
}

.pt-button span {
    z-index: 9;
    position: relative;
}

.pt-button:hover,
.pt-button:focus {
    color: var(--white-color);
    background: var(--dark-color);
}

/*===== Button link =====*/
.pt-button.pt-button-link {
    padding: 0;
    background: transparent;
    color: var(--dark-color);
    position: relative;
}

.pt-button.pt-button-link:hover {
    color: var(--primary-color);
}

.pt-button.pt-button-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--dark-color);
    width: 0;
    height: 2px;
    transform: translateY(12px);
    transition: var(--transition);
}

.pt-button.pt-button-link:hover::before {
    width: 100%;
    left: 0;
}

/*===== Button outline =====*/
.pt-button.pt-btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.pt-button.pt-btn-outline:hover {
    color: var(--dark-color);
    border: 1px solid var(--dark-color)
}

/*===== Button active =====*/
.pt-btn-container.pt-active .pt-button.pt-button-flat {
    background-color: var(--white-color);
    color: var(--dark-color);
}

.pt-btn-container .pt-button.pt-button-flat:not(.svg-animation) .svg path {
    stroke-dashoffset: 0 !important;
}

.pt-btn-container.pt-active .pt-button.pt-button-flat:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.pt-button.pt-button-flat:hover .svg path,
.pt-btn-container.pt-active .pt-button.pt-button-flat:hover .svg path {
    stroke: var(--white-color);
}

.pt-bg-dark .pt-button.pt-button-flat:hover .svg path {
    stroke: var(--dark-color);
}

/*================================================
Section Title
================================================*/
.pt-section-title.text-center {
    padding: 0 15em;
    margin-bottom: 60px;
}

.pt-section-title .pt-title-heading {
    font-size: 56px;
    line-height: 64px;
    z-index: 9;
    color: var(--dark-color);
    padding: 0;
    margin: 0 0 10px;
    position: relative;
    display: block;
}

.pt-section-title .pt-title-heading .pt-title-last-word {
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

.pt-section-title .pt-title-heading .pt-title-last-word::before,
.pt-section-title .pt-title-heading .pt-title-last-word::after,
.pt-section-title .pt-title-heading .pt-title-last-word .pt-svg-dot::after,
.pt-section-title .pt-title-heading .pt-title-last-word .pt-svg-dot::before {
    content: "";
    position: absolute;
    background: var(--dark-color);
    height: 10px;
    width: 10px;
    border-radius: 100%;
    z-index: 1;
}

.pt-section-title .pt-title-heading .pt-title-last-word::before {
    right: -5px;
    bottom: -5px;
}

.pt-section-title .pt-title-heading .pt-title-last-word::after {
    left: -5px;
    top: -5px;
}

.pt-section-title .pt-title-heading .pt-title-last-word .pt-svg-dot::after {
    bottom: -5px;
    left: -5px;
}

.pt-section-title .pt-title-heading .pt-title-last-word .pt-svg-dot::before {
    top: -5px;
    right: -5px;
}

/* +++++ dark section +++++ */
.pt-bg-dark .pt-section-title .pt-title-heading .pt-title-last-word::after,
.pt-bg-dark .pt-section-title .pt-title-heading .pt-title-last-word .pt-svg-dot::after,
.pt-bg-dark .pt-section-title .pt-title-heading .pt-title-last-word .pt-svg-dot::before,
.pt-bg-dark .pt-section-title .pt-title-heading .pt-title-last-word::before {
    background-color: var(--white-color);
}

.pt-section-title .pt-title-heading span .svg {
    position: absolute;
    top: 0%;
    left: 0%;
    background: var(--primary-color);
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: opacity 200ms linear;
    background: var(--primary-color);
}

.pt-section-title .pt-title-heading span svg path {
    stroke-dasharray: 8px, 12px;
    stroke-width: 4px;
    stroke: var(--dark-color);
}

.pt-section-title .pt-title .pt-title-description {
    margin-bottom: 0;
}

@media(max-width:1199px) {
    .pt-section-title.text-center {
        padding: 0;
    }
}

@media(max-width:1023px) {
    .pt-section-title .pt-title-heading {
        font-size: 44px;
        line-height: 52px;
    }
}

@media(max-width:767px) {
    .pt-section-title .pt-title-heading {
        font-size: 36px;
        line-height: 44px;
    }

    .pt-section-title.text-center {
        margin-bottom: 30px;
    }
}

@media(max-width:479px) {
    .pt-section-title .pt-title-heading {
        font-size: 28px;
        line-height: 36px;
    }
}


/*================================================
Custom class	
================================================*/
.pt-bg-primary {
    background-color: var(--primary-color);
}

i:before {
    line-height: inherit !important;
}

.pt-dot-top::after,
.pt-dot-top::before,
.pt-dot-bottom::after,
.pt-dot-bottom::before {
    content: "";
    position: absolute;
    left: -5px;
    top: -5px;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background-color: var(--dark-color);
}

.pt-dot-top::before {
    left: initial;
    right: -5px;
}

.pt-dot-bottom::after {
    top: initial;
    bottom: -5px;
}

.pt-dot-bottom::before {
    top: initial;
    left: initial;
    right: -5px;
    bottom: -5px;
}

.pt-bg-white .pt-team.pt-style-1 .pt-team-info .svg path {
    stroke: var(--dark-color);
}

.pt-landing-section-title .pt-section-title.text-center{
    padding: 0px 12em;
}

@media (max-width:1279px) {
    .pt-landing-section-title .pt-section-title.text-center{
        padding: 0px 10em;
    } 
}

@media (max-width:1023px) {
    .pt-landing-section-title .pt-section-title.text-center{
        padding: 0px 5em;
    } 
}

@media (max-width:1023px) {
    .pt-landing-section-title .pt-section-title.text-center{
        padding: 0px 0px;
    } 
}

/*================================================
Image Boder 
================================================*/

.pt-image-box {
    position: relative;
}

.pt-image-box img {
    z-index: 9;
    position: relative;
    width: 100%;
}

.pt-image-box .svg {
    width: 90%;
    height: 100%;
    position: absolute;
    top: 15px;
    left: -5%;
    transition:opacity 200ms linear;
    transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
}

.pt-image-box path {
    stroke-dasharray: 8px, 12px;
    stroke-width: 4px;
    stroke: var(--dark-color);
}

.pt-image-box.right .svg {
    right: -5%;
    left: inherit;
    transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
}

@media (max-width:1023px) {
    .pt-image-box .svg {
        display: none;
    }
}

@media (max-width:767px) {
    .pt-image-box .svg {
        display: none;
    }

    .pt-image-box {
        margin-left: 0;
    }
}

/*================================================
counter 
================================================*/

/*++++++++++ Counter style-1  ++++++++++*/
.pt-counter.pt-style-1 {
    padding: 60px 15px;
    text-align: center !important;
}

.pt-counter.pt-style-1 .pt-counter-info .pt-count,
.pt-counter-prefix-icon {
    font-size: 70px;
    line-height: 78px;
    color: var(--dark-color);
    font-weight: 600;
    font-family: var(--title-fonts);
    margin-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
}

.pt-counter.pt-style-1 .pt-counter-info .pt-counter-title {
    font-size: 18px;
    line-height: 26px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.pt-counter.pt-style-1:not(.svg-animation) .svg path {
    stroke-dashoffset: 0 !important;
}

.pt-counter-center .pt-counter.pt-style-1 {
    background-color: var(--primary-color);
}

.pt-counter-center .pt-counter.pt-style-1 .pt-counter-info .pt-counter-title {
    color: var(--dark-color);
}

.pt-dote-left .pt-counter.pt-style-1::after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 100%;
    position: absolute;
    left: -7px;
    top: -7px;
    background-color: var(--dark-color);
}

.pt-dote-left .pt-counter.pt-style-1::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 100%;
    position: absolute;
    left: -7px;
    bottom: -7px;
    background-color: var(--dark-color);
}

.pt-dote-right .pt-counter.pt-style-1::after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 100%;
    position: absolute;
    right: -7px;
    top: -7px;
    background-color: var(--dark-color);
}

.pt-dote-right .pt-counter.pt-style-1::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 100%;
    position: absolute;
    right: -7px;
    bottom: -7px;
    background-color: var(--dark-color);
}

@media (max-width:1099px) {

    .pt-counter.pt-style-1 .pt-counter-info .pt-count,
    .pt-counter-prefix-icon {
        font-size: 55px;
        line-height: 63px;
    }
}

@media (max-width:979px) {
    .pt-counter.pt-style-1 .pt-counter-info .pt-count,
    .pt-counter-prefix-icon {
        font-size: 52px;
        line-height: 60px;
    }
    .pt-counter.pt-style-1 {
        padding: 45px 15px;
    }
}

@media (max-width:767px) {
    .pt-dote-left .pt-counter.pt-style-1::before,
    .pt-dote-left .pt-counter.pt-style-1::after,
    .pt-dote-right .pt-counter.pt-style-1::after,
    .pt-dote-right .pt-counter.pt-style-1::before {
        content: inherit;
    }

    .pt-counter.pt-style-1 .pt-counter-info .pt-count,
    .pt-counter-prefix-icon {
        font-size: 45px;
        line-height: 53px;
    }
}


/*++++++++++ Counter style-2  ++++++++++*/
.pt-counter.pt-style-2 {
    padding: 60px 15px;
    text-align: center !important;
}

.pt-bg-primary .pt-counter.pt-style-2::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: var(--dark-color);
    position: absolute;
    top: -5px;
    right: -5px;
}

.pt-bg-primary .pt-counter.pt-style-2::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: var(--dark-color);
    position: absolute;
    bottom: -5px;
    right: -5px;
}

.pt-bg-primary .pt-counter.pt-style-2 .pt-counter-info::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: var(--dark-color);
    position: absolute;
    top: -5px;
    left: -5px;
}

.pt-bg-primary .pt-counter.pt-style-2 .pt-counter-info::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: var(--dark-color);
    position: absolute;
    bottom: -5px;
    left: -5px;
}

.pt-counter.pt-style-2 .pt-counter-info .pt-count {
    font-size: 80px;
    line-height: 88px;
    color: var(--dark-color);
    font-weight: 600;
    font-family: var(--title-fonts);
    margin-bottom: 15px;
    display: inline-block;
}

.pt-counter.pt-style-2 .pt-counter-info .pt-counter-title {
    font-size: 24px;
    line-height: 32px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.pt-bg-primary .pt-counter.pt-style-2 .pt-counter-info .pt-counter-title {
    color: var(--dark-color);
}

.pt-counter.pt-style-2:not(.svg-animation) .svg path {
    stroke-dashoffset: 0 !important;
}

@media (max-width:1279px) {
    .pt-counter.pt-style-2 {
        padding: 45px 15px;
    }
    .pt-counter.pt-style-2 .pt-counter-info .pt-count {
        font-size: 72px;
        line-height: 80px;
    }
    .pt-counter.pt-style-2 .pt-counter-info .pt-counter-title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width:1023px) {
    .pt-counter.pt-style-2 {
        padding: 60px 15px;
    }
    .pt-counter.pt-style-2 .pt-counter-info .pt-count {
        font-size: 60px;
        line-height: 68px;
    }
}

@media (max-width:767px) {
    .pt-counter.pt-style-2 {
        padding: 45px 15px;
    }
    .pt-counter.pt-style-2 .pt-counter-info .pt-count {
        font-size: 60px;
        line-height: 68px;
        margin-bottom: 10px;
    }
    .pt-counter.pt-style-2 .pt-counter-info .pt-counter-title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width:397px) {
    .pt-counter.pt-style-2 .pt-counter-info .pt-count {
        font-size: 50px;
        line-height: 58px;
        margin-bottom: 8px;
    }
    .pt-counter.pt-style-2 .pt-counter-info .pt-counter-title {
        font-size: 24px;
        line-height: 32px;
    }
}

/*================================================
Timer
================================================*/
.pt-deal-counter {
    display: inline-block;
}

.pt-counter.pt-counter-style-1 {
    display: inline-block;
    padding: 15px 45px 15px 20px;
    background-color: var(--white-color);
}

.pt-counter.pt-counter-style-1 .pt-counter-info .pt-timer-tilte {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
}

.pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer {
    display: flex;
    gap: 45px;
}

.pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer .pt-timer-container {
    text-align: center;
    position: relative;
}

.pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer .pt-timer-container::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: 37px;
    right: -27.5px;
    background-color: var(--primary-color);
}

.pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer .pt-timer-container:last-child::after {
    content: inherit;
}

.pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer .pt-timer-container::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: 15px;
    right: -27.5px;
    background-color: var(--primary-color);
}

.pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer .pt-timer-container:last-child::before {
    content: inherit;
}

.pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer .pt-timer-container h3 {
    font-size: 40px;
    line-height: 48px;
}

.pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer .pt-timer-container span {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width:979px) {
    .pt-counter.pt-counter-style-1 {
        padding: 15px;
    }

    .pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer {
        display: flex;
        gap: 30px;
    }

    .pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer .pt-timer-container::after,
    .pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer .pt-timer-container::before {
        right: -20px;
    }
}

@media (max-width:767px) {
    .pt-counter.pt-counter-style-1 {
        padding: 15px;
        background-color: transparent;
    }
    .pt-counter.pt-counter-style-1 .pt-counter-info{
        text-align: center;
    }
    .pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer .pt-timer-container h3 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 479px) {
    .pt-counter.pt-counter-style-1 {
        padding: 0;
        background-color: transparent;
    }

    .pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer .pt-timer-container:last-child {
        display: none;
    }

    .pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer .pt-timer-container:nth-child(3)::before,
    .pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer .pt-timer-container:nth-child(3)::after {
        content: inherit;

    }
}

@media (max-width:397px) {
    .pt-counter.pt-counter-style-1 .pt-counter-info .pt-product-timer .pt-timer-container h3{
        font-size: 28px;
        line-height: 36px;
    }
}

/*================================================
Team 
================================================*/

/* ++++++++++ Team style- 1 ++++++++++*/
.pt-team.pt-style-1 {
    position: relative;
    margin-right: 30px;
    transition: all 0.5s ease-in-out;
}

.pt-team.pt-style-1 .pt-team-img {
    transition: var(--transition);
}

.pt-team.pt-style-1:hover .pt-team-img {
    opacity: 0;
}

.pt-team.pt-style-1 .pt-team-info {

    display: none;
    transition: all 0.5s ease-in-out;
}

.pt-team.pt-style-1 .pt-team-info {
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    text-align: center;
    padding: 30px;
    position: absolute;
    top: 0;
    left: 0;
}

.pt-team.pt-style-1:hover .pt-team-info {
    opacity: 1;
    display: block;
}

.pt-team.pt-style-1 .pt-team-info .pt-member-name {
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    color: var(--dark-color);
}

.pt-team.pt-style-1 .pt-team-info .pt-team-designation {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pt-team.pt-style-1 .pt-team-info .pt-team-social {
    position: absolute;
    bottom: 30px;
    color: var(--dark-color);
    left: 30%;
}

.pt-team.pt-style-1 .pt-team-info .pt-team-social a {
    color: var(--dark-color);
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    margin-right: 10px;
    transition: var(--transition);
}

.pt-team.pt-style-1 .pt-team-info .pt-team-social a:hover {
    transform: scale(2.2);
    color: var(--white-color);
    margin-right: 15px;
}

.pt-team.pt-style-1 .pt-team-info .svg {
    transform: translate(-25px, 25px) rotate(-3deg);
    z-index: -1;
}

.pt-team.pt-style-1 .pt-team-info .svg path {
    stroke: var(--white-color);
}

@media (max-width:1279px) {
    .pt-team.pt-style-1 .pt-team-info {
        padding: 30px 15px;
    } 
    .pt-team.pt-style-1 .pt-team-info .pt-member-name {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width:1023px) {
    .pt-team.pt-style-1 {
        margin-right: 0;
    }

    .pt-team.pt-style-1 .pt-team-info .svg {
        display: none;
    }

    .pt-team.pt-style-1 .pt-team-info .pt-member-name {
        font-size: 30px;
        line-height: 38px;
    }
}

@media (max-width:767px) {
    .pt-team.pt-style-1 {
        margin-right: 0;
    }

    .pt-team.pt-style-1:hover .pt-team-img {
        opacity: 1;
    }

    .pt-team.pt-style-1 .pt-team-info {
        display: block;
        position: inherit;
        padding: 15px;
    }

    .pt-team.pt-style-1 .pt-team-info {
        width: auto;
        margin: -30px 15px 0px 15px;
    }

    .pt-team.pt-style-1 .pt-team-info .pt-team-social {
        position: initial;
    }

    .pt-team.pt-style-1 .pt-team-info .pt-member-name {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (max-width:397px) {
    .pt-team.pt-style-1 .pt-team-info {
        margin: 0;
    }
    .pt-team.pt-style-1 .pt-team-info .pt-team-social a{
        margin-right: 5px;
    }
}

/* ++++++++++ Team style- 2 ++++++++++*/
.pt-team-2-list {
    display: flex;
    flex-wrap: wrap;
    gap: 75px 60px;
    justify-content: center;
    margin-top: 60px;
}

.pt-team.pt-style-2 {
    display: inline-block;
    position: relative;
}

.pt-team.pt-style-2 .pt-team-info {
    display: flex;
    gap: 15px;
    position: relative;
    align-items: baseline;
}

.pt-team.pt-style-2 .pt-team-info .pt-member-name {
    font-size: 40px;
    line-height: 48px;
    color: var(--white-color);
    text-transform: uppercase;
}

.pt-team.pt-style-2 .pt-team-info .pt-team-designation {
    font-size: 18px;
    line-height: 26px;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pt-team.pt-style-2 .pt-team-info .pt-team-media {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    max-width: 70%;
    min-width: 180px;
    transition: var(--transition);
    overflow: hidden;
    z-index: 9;
}

.pt-team.pt-style-2 .pt-team-info .pt-team-media img {
    max-width: 230px;
}

.pt-team.pt-style-2.pt-active .pt-team-info .pt-team-media {
    transform: translate(-50%, -50%) scale(1);
}

@media(max-width:1099px) {
    .pt-team-2-list {
        gap: 70px 45px;
    }
    .pt-team.pt-style-2 .pt-team-info .pt-member-name {
        font-size: 32px;
        line-height: 40px;
    }
    .pt-team.pt-style-2 .pt-team-info .pt-team-media img {
        max-width: 200px;
    }
}

@media (max-width: 767px) {
    .pt-team-2-list {
        display: block;
        text-align: center;
    }
    .pt-team.pt-style-2 {
        display: block;
        margin-bottom: 45px;
    }
    .pt-team.pt-style-2 .pt-team-info {
        display: grid;
        gap: 0;
    }
    .pt-team.pt-style-2 .pt-team-info .pt-team-media {
        position: inherit;
        transform: translate(0%, 0%) scale(1);
        top: 0;
        left: 0;
        max-width: 100%;
        grid-row: 1;
        margin-bottom: 15px;
    }

    .pt-team.pt-style-2.pt-active .pt-team-info .pt-team-media {
        transform: translate(0%, 0%) scale(1);
    }

    .pt-team.pt-style-2 .pt-team-info .pt-team-media img {
        max-width: 100%;
        width: 100%;
        object-fit: cover;
    }

    .pt-team.pt-style-2 .pt-team-info .pt-member-name{
        margin-bottom: 5px;
    }
}

@media (max-width:397px) {
    .pt-team.pt-style-2 .pt-team-info .pt-member-name {
        font-size: 28px;
        line-height: 36px;
    }
}


/* ++++++++++ Team style- 3 ++++++++++*/
.pt-team.pt-style-3 {
    display: grid;
    grid-template-columns: 200px 1fr 1fr auto;
    gap: 45px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--light-white);
}

.pt-team.pt-style-3 .pt-team-info .pt-member-name {
    font-size: 35px;
    line-height: 43px;
    text-transform: uppercase;
    color: var(--white-color);
}

.pt-team.pt-style-3 .pt-team-info .pt-team-designation {
    text-transform: uppercase;
    color: var(--white-color);
    letter-spacing: 1px;
}

.pt-team.pt-style-3 .pt-team-social {
    display: flex;
    gap: 15px;
}

.pt-team.pt-style-3 .pt-team-social a {
    color: var(--white-color);
    font-size: 24px;
    line-height: 65px;
    height: 65px;
    width: 65px;
    text-align: center;
    border: 1px solid var(--light-white);
    transition: var(--transition);
}

.pt-team.pt-style-3 .pt-team-social a:hover {
    color: var(--primary-color);
}

.pt-team.pt-style-3 .pt-button:hover {
    background-color: var(--white-color);
    color: var(--dark-color);
}

@media (max-width:1099px) {
    .pt-team.pt-style-3 {
        gap: 30px;
    }
    .pt-team.pt-style-3 .pt-team-info .pt-member-name {
        font-size: 30px;
        line-height: 38px;
    }
}

@media (max-width:1023px) {
    .pt-team.pt-style-3 {
        display: block;
        text-align: center;
    }

    .pt-team.pt-style-3 .pt-team-img,
    .pt-team.pt-style-3 .pt-team-info {
        margin-bottom: 30px;
    }

    .pt-team.pt-style-3 .pt-team-img img {
        width: 60%;
    }

    .pt-team.pt-style-3 .pt-team-social {
        justify-content: center;
        margin-bottom: 30px;
    }

    .pt-team.pt-style-3 .pt-btn-container {
        text-align: center !important;
    }
}

@media (max-width:767px) {
    .pt-team.pt-style-3 .pt-team-img img {
        width: 100%;
        max-height: 600px;
    }

    .pt-team.pt-style-3 .pt-team-img,
    .pt-team.pt-style-3 .pt-team-info {
        margin-bottom: 30px;
    }

    .pt-team.pt-style-3 .pt-team-social a {
        line-height: 55px;
        height: 55px;
        width: 55px;
    }
}

/*================================================
pricing plan
================================================*/

/*+++++++++ Pricebox style -1 +++++++++*/
.pt-pricebox.pt-pricebox-style-1 {
    padding: 60px 45px;
    background-color: var(--grey-color);
}

.pt-pricebox.pt-pricebox-style-1.pt-active {
    background-color: var(--primary-color);
}

.pt-pricebox.pt-pricebox-style-1 .pt-price-detail .pt-price-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-transform: uppercase;
}

.pt-pricebox.pt-pricebox-style-1 .pt-price-detail .price {
    font-size: 55px;
    line-height: 63px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.pt-pricebox.pt-pricebox-style-1 .pt-price-detail .price .pt-dollar {
    font-size: 30px;
    line-height: 38px;
    vertical-align: top;
    margin-right: 8px;
    font-weight: 600;
}

.pt-pricebox.pt-pricebox-style-1 .pt-price-detail .price .pt-price-duration {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--secondary-color);
}

.pt-pricebox.pt-pricebox-style-1.pt-active .pt-price-detail .price .pt-price-duration {
    color: var(--dark-color);
}

.pt-pricebox.pt-pricebox-style-1 .pt-price-detail .pt-list-info {
    padding: 0;
    margin-bottom: 0;
}

.pt-pricebox.pt-pricebox-style-1 .pt-price-detail .pt-list-info li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.pt-pricebox.pt-pricebox-style-1 .pt-price-detail .pt-list-info li:last-child {
    margin-bottom: 0;
}

.pt-pricebox.pt-pricebox-style-1 .pt-price-detail .pt-list-info li span {
    font-size: 18px;
    line-height: 26px;
    color: var(--secondary-color);
}


.pt-pricebox.pt-pricebox-style-1.pt-active .pt-price-detail .pt-list-info li span {
    color: var(--dark-color);
}

.pt-pricebox.pt-pricebox-style-1 .pt-btn-container {
    margin-top: 45px;
    display: inline-block;
}

.pt-pricebox.pt-pricebox-style-1 .pt-btn-container .svg path {
    opacity: 1;
}

.pt-pricebox.pt-pricebox-style-1 .pt-btn-container .pt-button.pt-button-flat:hover {
    background-color: var(--dark-color);
    color: var(--primary-color);
}

.pt-pricebox.pt-pricebox-style-1.pt-active .pt-btn-container.pt-active:hover .pt-button.pt-button-flat {
    color: var(--primary-color) !important;
}

.pt-pricebox.pt-pricebox-style-1 .pt-btn-container:hover .svg path {
    stroke: var(--primary-color);
}

.pt-pricebox.pt-pricebox-style-1 .svg path {
    opacity: 0;
}

.pt-pricebox.pt-pricebox-style-1.pt-active .svg path {
    opacity: 1;
}

@media (max-width:767px) {
    .pt-pricebox.pt-pricebox-style-1 {
        padding: 45px 30px;
    }

    .pt-pricebox.pt-pricebox-style-1 .pt-price-detail .price {
        font-size: 42px;
        line-height: 50px;
    }

    .pt-pricebox.pt-pricebox-style-1 .pt-price-detail .pt-price-title {
        margin-bottom: 10px;
    }
}

@media (max-width:397px) {
    .pt-pricebox.pt-pricebox-style-1 {
        padding: 30px 20px;
    }

    .pt-pricebox.pt-pricebox-style-1 .pt-price-detail .pt-price-title {
        font-size: 30px;
        line-height: 38px;
    }

    .pt-pricebox.pt-pricebox-style-1 .pt-price-detail .price .pt-dollar {
        font-size: 24px;
        line-height: 25px;
        margin-right: 5px;
    }
}

/*+++++++++ Pricebox style -2 +++++++++*/
.pt-pricebox.pt-pricebox-style-2 {
    padding: 60px 45px;
    background-color: var(--grey-color);
}

.pt-pricebox.pt-pricebox-style-2.pt-active {
    background-color: var(--primary-color);
}

.pt-pricebox.pt-pricebox-style-2:not(.svg-animation) .svg path {
    stroke-dashoffset: 0 !important;
}

.pt-pricebox.pt-pricebox-style-2 .pt-price-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    background: linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x;
    background-size: 12px 2px;
    background-position: 0 100%;
}

.pt-pricebox.pt-pricebox-style-2 .pt-price-detail .price {
    font-size: 50px;
    line-height: 58px;
    color: var(--dark-color);
}

.pt-pricebox.pt-pricebox-style-2 .pt-price-detail .price .pt-dollar {
    font-size: 30px;
    line-height: 38px;
    vertical-align: top;
    margin-right: 5px;
    font-weight: 600;
}

.pt-pricebox.pt-pricebox-style-2 .pt-price-detail .price .pt-price-duration {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-color);
    text-transform: capitalize;
    font-weight: 400;
}

.pt-pricebox.pt-pricebox-style-2 .pt-price-detail .pt-price-title {
    font-size: 25px;
    line-height: 33px;
    color: var(--dark-color);
    text-transform: uppercase;
}

.pt-pricebox.pt-pricebox-style-2 .pt-list-info {
    margin: 0;
    padding: 0;
}

.pt-pricebox.pt-pricebox-style-2 .pt-list-info li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.pt-pricebox.pt-pricebox-style-2 .pt-list-info li i {
    font-size: 19px;
    line-height: 27px;
    color: var(--dark-color);
    transform: rotate(8deg);
}

.pt-pricebox.pt-pricebox-style-2 .pt-list-info li span {
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-color);
}

.pt-pricebox.pt-pricebox-style-2.pt-active .pt-list-info li span {
    color: var(--dark-color);
}

.pt-pricebox.pt-pricebox-style-2 .pt-btn-container {
    margin-top: 45px;
}

.pt-pricebox.pt-pricebox-style-2 .pt-btn-container .pt-button.pt-button-flat {
    color: var(--dark-color);
    background-color: var(--white-color);
}

.pt-pricebox.pt-pricebox-style-2.pt-active .pt-btn-container .pt-button.pt-button-flat {
    color: var(--dark-color);
    background-color: var(--white-color);
}

.pt-pricebox.pt-pricebox-style-2.pt-active .pt-btn-container .pt-button.pt-button-flat:hover {
    color: var(--white-color);
    background-color: var(--dark-color);
}

.pt-pricebox.pt-pricebox-style-2 .pt-btn-container .pt-button.pt-button-flat:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.pt-pricebox.pt-pricebox-style-2 .pt-button.pt-button-flat:hover .svg path {
    stroke: var(--dark-color);
}

.pt-pricebox.pt-pricebox-style-2.pt-active .pt-button.pt-button-flat:hover .svg path {
    stroke: var(--white-color);
}


@media (max-width:1279px) {
    .pt-pricebox.pt-pricebox-style-2 {
        padding: 45px 30px;
    }
}

@media (max-width:1099px) {
    .pt-pricebox.pt-pricebox-style-2 .pt-price-detail .price {
        font-size: 40px;
        line-height: 48px;
    }

    .pt-pricebox.pt-pricebox-style-2 .pt-price-detail .pt-price-title {
        font-size: 22px;
        line-height: 30px;
    }
}

@media (max-width: 767px) {
    .pt-pricebox.pt-pricebox-style-2 {
        padding: 45px 30px;
    }

    .pt-pricebox.pt-pricebox-style-2 .pt-price-detail .pt-price-title {
        font-size: 32px;
        line-height: 40px;
    }

    .pt-pricebox.pt-pricebox-style-2 .pt-price-detail .price {
        font-size: 40px;
        line-height: 48px;
    }

    .pt-pricebox.pt-pricebox-style-2 .pt-price-detail .price .pt-dollar {
        font-size: 26px;
        line-height: 34px;
        margin-right: 4px;
    }
}

@media (max-width:397px) {
    .pt-pricebox.pt-pricebox-style-2 {
        padding: 30px 15px;
    }

    .pt-pricebox.pt-pricebox-style-2 .pt-price-detail {
        display: block;
    }

    .pt-pricebox.pt-pricebox-style-2 .pt-price-detail .pt-price-title {
        font-size: 28px;
        line-height: 36px;
    }

    .pt-pricebox.pt-pricebox-style-2 .pt-price-detail .price {
        font-size: 34px;
        line-height: 42px;
        margin-bottom: 10px;
    }

    .pt-pricebox.pt-pricebox-style-2 .pt-price-detail .price .pt-dollar {
        font-size: 24px;
        line-height: 33px;
    }
}

/*+++++++++ Pricebox style - 3 +++++++++*/
.pt-pricebox.pt-pricebox-style-3 {
    padding: 60px 45px;
    background-color: var(--grey-color);
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr auto;
    margin-top: 30px;
}

.pt-pricebox.pt-pricebox-style-3.pt-active {
    background-color: var(--primary-color);
    margin-top: 0;
}

.pt-pricebox.pt-pricebox-style-3 .pt-price-detail .pt-price-title {
    font-size: 35px;
    line-height: 43px;
    margin-bottom: 10px;
}

.pt-pricebox.pt-pricebox-style-3 .pt-price-detail .pt-price-subtitle {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
}

.pt-pricebox.pt-pricebox-style-3.pt-active .pt-price-detail .pt-price-subtitle {
    color: var(--dark-color);
}

.pt-pricebox.pt-pricebox-style-3 .pt-price-detail .price {
    font-size: 50px;
    line-height: 58px;
    color: var(--dark-color);
}

.pt-pricebox.pt-pricebox-style-3 .pt-price-detail .price .pt-dollar {
    font-size: 30px;
    line-height: 38px;
    vertical-align: top;
    margin-right: 8px;
    font-weight: 600;
}

.pt-pricebox.pt-pricebox-style-3 .pt-price-detail .price .pt-price-duration {
    font-size: 18px;
    line-height: 26px;
    text-transform: capitalize;
    color: var(--secondary-color);
    font-weight: 400;
    font-family: var(--body-fonts);
}

.pt-pricebox.pt-pricebox-style-3.pt-active .pt-price-detail .price .pt-price-duration {
    color: var(--dark-color);
}

.pt-pricebox.pt-pricebox-style-3 .pt-price-list .pt-list-info {
    margin: 0;
    padding: 0;
}

.pt-pricebox.pt-pricebox-style-3 .pt-price-list .pt-list-info li {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.pt-pricebox.pt-pricebox-style-3.pt-active .pt-price-list .pt-list-info li i {
    color: var(--dark-color);
}

.pt-pricebox.pt-pricebox-style-3 .pt-price-list .pt-list-info li span {
    margin-bottom: 0;
}

.pt-pricebox.pt-pricebox-style-3.pt-active .pt-price-list .pt-list-info li span {
    color: var(--dark-color);
}

.pt-pricebox.pt-pricebox-style-3 .pt-btn-container {
    display: flex;
    align-items: center;
}

@media (max-width: 1279px) {
    .pt-pricebox.pt-pricebox-style-3 {
        padding: 45px;
        grid-template-columns: 1fr 1fr;
        gap: 15px 30px;
    }
}

@media (max-width: 767px) {
    .pt-pricebox.pt-pricebox-style-3 {
        padding: 45px 30px;
        grid-template-columns: 1fr;
        gap: 15px 30px;
    }

    .pt-pricebox.pt-pricebox-style-3 .pt-price-detail .pt-price-title {
        font-size: 32px;
        line-height: 40px;
    }

    .pt-pricebox.pt-pricebox-style-3 .pt-price-detail .price {
        font-size: 40px;
        line-height: 48px;
    }

    .pt-pricebox.pt-pricebox-style-3 .pt-price-detail .price .pt-dollar {
        font-size: 26px;
        line-height: 34px;
        margin-right: 4px;
    }
}

@media (max-width:397px) {
    .pt-pricebox.pt-pricebox-style-3 .pt-price-detail .pt-price-title {
        font-size: 28px;
        line-height: 36px;
    }

    .pt-pricebox.pt-pricebox-style-3 .pt-price-detail .price {
        font-size: 34px;
        line-height: 42px;
    }

    .pt-pricebox.pt-pricebox-style-3 .pt-price-detail .price .pt-dollar {
        font-size: 24px;
        line-height: 33px;
    }
}

/*================================================
Testimonial 
================================================*/

/* ++++++++++ Testimonial Style- 1 ++++++++++*/
.pt-testimonial-box-slider.pt-style-1 {
    position: relative;
    background: linear-gradient(0deg, var(--border-light-black) 50%, transparent 0) repeat-y;
    background-size: 2.2px 15px;
    background-position: 0 0;
}

.pt-testimonial-box.pt-style-1 {
    padding: 30px 45px;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-star {
    color: #FFC700;
    padding-top: 30px;

}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-star i {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-quote {
    color: var(--primary-color);
    font-size: 58px;
    line-height: 66px;
    position: absolute;
    top: -25px;
    right: 0;
    display: inline-block;
    transform: rotate(180deg);
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-content p {
    margin-top: 30px;
    font-size: 20px;
    line-height: 2;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-info .pt-testimonial-author-details .pt-testimonial-author-name {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-info .pt-testimonial-author-details .pt-testimonial-author-designation {
    font-size: 16px;
    line-height: 24px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pt-testimonial-box-slider.pt-style-1 .owl-carousel .owl-dots {
    position: absolute;
    right: 45px;
    text-align: right;
    bottom: 45px;
}

.pt-testimonial-box-slider.pt-style-1 .owl-carousel .owl-dots .owl-dot {
    background-color: var(--dark-color);
    height: 10px;
    width: 10px;
    margin: 0px 8px;
}

.pt-testimonial-box-slider.pt-style-1 .owl-carousel .owl-dots .owl-dot.active {
    border: none;
    background-color: var(--dark-color);
    position: relative;
    border: 1px dashed var(--dark-color);
    border-radius: 100%;
}

.pt-testimonial-box-slider.pt-style-1 .owl-carousel .owl-dots .owl-dot.active span {
    content: "";
    width: 28px;
    height: 28px;
    border: 1px dashed var(--dark-color);
    border-radius: 100%;
    position: absolute;
    top: -10px;
    left: -10px;
    display: block;
    transition: var(--transition);
}

@media (max-width:1279px) {
    .pt-testimonial-box.pt-style-1 {
        padding: 30px 0 30px 45px;
    }
}

@media (max-width:1023px) {
    .pt-testimonial-box-slider.pt-style-1 {
        background: none;
    }

    .pt-testimonial-box.pt-style-1 {
        padding: 30px 15px;
    }
}

@media (max-width:767px) {
    .pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-star {
        padding-top: 15px;
    }

    .pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-star i {
        font-size: 22px;
        line-height: 30px;
    }

    .pt-testimonial-box.pt-style-1 .pt-testimonial-content p {
        font-size: 18px;
    }
}

@media (max-width:397px) {
    .pt-testimonial-box.pt-style-1 {
        padding: 15px 15px 60px 15px;
    }

    .pt-testimonial-box-slider.pt-style-1 .owl-carousel .owl-dots {
        position: absolute;
        right: 40%;
        text-align: right;
        bottom: 30px;
    }

    .pt-testimonial-box.pt-style-1 .pt-testimonial-content p {
        margin-top: 20px;
    }

    .pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-testimonial-star i {
        font-size: 18px;
        line-height: 26px;
    }
    .pt-testimonial-box.pt-style-1 .pt-testimonial-content .pt-quote {
        color: var(--primary-color);
        font-size: 52px;
        line-height: 60px;
    }
}

/* ++++++++++ Testimonial Style- 2 ++++++++++*/
.pt-testimonial-box.pt-style-2 {
    padding: 30px;
    background-color: var(--grey-color);
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-content .pt-quote {
    margin-bottom: 15px;
}


.pt-testimonial-box.pt-style-2 .pt-testimonial-content .pt-quote i {
    color: var(--dark-color);
    font-size: 46px;
    line-height: 54px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-content p {
    font-size: 18px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-media {
    display: flex;
    gap: 30px;
    align-items: center;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-author-img {
    position: relative;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-author-img img {
    width: 80px;
    height: 80px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-author-details .pt-testimonial-author-name {
    font-size: 22px;
    line-height: 30px;
    text-transform: capitalize;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-author-details .pt-testimonial-author-designation {
    color: var(--dark-color);
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
}

.pt-testimonial-box.pt-style-2 .svg path {
    stroke-dasharray: 4px 8px;
    stroke-dashoffset: 0 !important;
}

.pt-testimonial-box-slider.pt-style-2 .owl-nav{
    display: none;
}

.pt-testimonial-box-slider.pt-style-2 .owl-carousel .owl-dots{
    margin-bottom: 5px;
}

.pt-testimonial-box-slider.pt-style-2 .owl-carousel .owl-dots .owl-dot {
    background-color: var(--white-color);
    height: 10px;
    width: 10px;
    margin: 0px 8px;
}

.pt-testimonial-box-slider.pt-style-2 .owl-carousel .owl-dots .owl-dot.active {
    border: none;
    background-color: var(--white-color);
    position: relative;
    border: 1px dashed var(--white-color);
    border-radius: 100%;
}

.pt-testimonial-box-slider.pt-style-2 .owl-carousel .owl-dots .owl-dot.active span {
    content: "";
    width: 28px;
    height: 28px;
    border: 1px dashed var(--white-color);
    border-radius: 100%;
    position: absolute;
    top: -10px;
    left: -10px;
    display: block;
    transition: var(--transition);
}

@media (max-width:397px) {
    .pt-testimonial-box.pt-style-2 {
        padding: 30px 15px;
    }

    .pt-testimonial-box.pt-style-2 .pt-testimonial-media {
        gap: 15px;
    }

    .pt-testimonial-box.pt-style-2 .pt-testimonial-content .pt-quote {
        margin-bottom: 5px;
    }

    .pt-testimonial-box.pt-style-2 .pt-testimonial-content .pt-quote i {
        font-size: 36px;
        line-height: 44px;
    }
}

/* ++++++++++ Testimonial Style- 3 ++++++++++*/

.pt-testimonial-box-slider.pt-style-3 {
    background: linear-gradient(90deg, var(--white-color) 50%, transparent 0) repeat-x, linear-gradient(90deg, var(--white-color) 50%, transparent 0) repeat-x, linear-gradient(0deg, var(--white-color) 50%, transparent 0) repeat-y, linear-gradient(0deg, var(--white-color) 50%, transparent 0) repeat-y;
    background-size: 12px 2px, 12px 2px, 2px 12px, 2px 12px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    background-color: var(--dark-color);
    position: relative;
}

.pt-testimonial-box.pt-style-3 {
    padding: 60px;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-content .pt-testimonial-star {
    color: #FFC700;
    padding-top: 30px;

}

.pt-testimonial-box.pt-style-3 .pt-testimonial-content .pt-testimonial-star i {
    font-size: 24px;
    line-height: 32px;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-content .pt-quote {
    color: var(--primary-color);
    font-size: 65px;
    line-height: 73px;
    position: absolute;
    top: -25px;
    right: 0;
    display: inline-block;
    transform: rotate(180deg);
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-content p {
    margin-top: 30px;
    font-size: 20px;
    line-height: 2;
    color: var(--white-color);
    text-transform: capitalize;
    padding-right: 60px;
    margin-bottom: 0;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-info .pt-testimonial-author-details .pt-testimonial-author-name {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 5px;
    color: var(--white-color);
    text-transform: capitalize;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-info .pt-testimonial-author-details .pt-testimonial-author-designation {
    font-size: 16px;
    line-height: 24px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pt-testimonial-box-slider.pt-style-3 .owl-carousel .owl-dots {
    position: absolute;
    right: 60px;
    text-align: right;
    bottom: 75px;
}

.pt-testimonial-box-slider.pt-style-3 .owl-carousel .owl-dots .owl-dot {
    background-color: var(--white-color);
    height: 10px;
    width: 10px;
    margin: 0px 8px;
}

.pt-testimonial-box-slider.pt-style-3 .owl-carousel .owl-dots .owl-dot.active {
    border: none;
    background-color: var(--white-color);
    position: relative;
    border: 1px dashed var(--white-color);
    border-radius: 100%;
}

.pt-testimonial-box-slider.pt-style-3 .owl-carousel .owl-dots .owl-dot.active span {
    content: "";
    width: 28px;
    height: 28px;
    border: 1px dashed var(--white-color);
    border-radius: 100%;
    position: absolute;
    top: -10px;
    left: -10px;
    display: block;
    transition: var(--transition);
}

@media (max-width:1279px) {
    .pt-testimonial-box.pt-style-3 {
        padding: 45px;
    }

    .pt-testimonial-box.pt-style-3 .pt-testimonial-content p {
        padding-right: 0;
    }
}

@media (max-width:1023px) {
    .pt-testimonial-box-slider.pt-style-1 {
        background: none;
    }

    .pt-testimonial-box.pt-style-3 {
        padding: 30px 15px;
    }
}

@media (max-width:397px) {
    .pt-testimonial-box.pt-style-3 .pt-testimonial-content {
        margin-bottom: 15px;
    }

    .pt-testimonial-box.pt-style-3 .pt-testimonial-content .pt-quote {
        font-size: 55px;
        line-height: 63px;
        top: -20px;
    }

    .pt-testimonial-box.pt-style-3 .pt-testimonial-content p {
        font-size: 18px;
        line-height: 30px;
    }

    .pt-testimonial-box.pt-style-3 .pt-testimonial-info .pt-testimonial-author-details .pt-testimonial-author-name {
        margin-bottom: 0;
    }
}

@media (max-width:767px) {
    .pt-testimonial-box.pt-style-3 .pt-testimonial-content .pt-testimonial-star {
        padding-top: 15px;
    }

    .pt-testimonial-box.pt-style-3 .pt-testimonial-content .pt-testimonial-star i {
        font-size: 22px;
        line-height: 30px;
    }
}

@media (max-width:397px) {
    .pt-testimonial-box.pt-style-3 {
        padding: 30px 15px 60px 15px;
    }

    .pt-testimonial-box-slider.pt-style-3 .owl-carousel .owl-dots {
        position: absolute;
        right: 40%;
        text-align: right;
        bottom: 30px;
    }

    .pt-testimonial-box.pt-style-3 .pt-testimonial-content p {
        margin-top: 20px;
    }

    .pt-testimonial-box.pt-style-3 .pt-testimonial-content .pt-testimonial-star i {
        font-size: 20px;
        line-height: 28px;
    }
}

/* ++++++++++ Testimonial stye- 3 (custom class) ++++++++++*/
.pt-bg-dark .pt-testimonial-box.pt-style-1 {
    padding: 60px;
    border: 2px dashed var(--white-color);
}

.pt-bg-dark .pt-testimonial-box.pt-style-1 .pt-testimonial-content p {
    color: var(--white-color);
}

.pt-bg-dark .pt-testimonial-box.pt-style-1 .pt-testimonial-info .pt-testimonial-author-details .pt-testimonial-author-name {
    color: var(--white-color);
}

.pt-bg-dark .pt-testimonial-box.pt-style-1 .pt-testimonial-info .pt-testimonial-author-details .pt-testimonial-author-designation {
    color: var(--primary-color);
}

@media(max-width:767px) {
    .pt-bg-dark .pt-testimonial-box.pt-style-1 {
        padding: 30px 15px;
    }
}

/*================================================
Client
================================================*/

/*+++++++++ Client Style-1  +++++++++*/
.pt-client-box.pt-style-1 {
    display: block;
    position: relative;
    transition: var(--transition);
    padding: 10px;
    width: 230px;
    height: 140px;
    margin: 8px;
}

.pt-client-box.pt-style-1 {
    background: linear-gradient(90deg, var(--secondary-color) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--secondary-color) 50%, transparent 0) repeat-x,
        linear-gradient(0deg, var(--secondary-color) 50%, transparent 0) repeat-y,
        linear-gradient(0deg, var(--secondary-color) 50%, transparent 0) repeat-y;
    background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    transition: background-position 0.3s linear;
}

.pt-client-box.pt-style-1:hover {
    background: linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y;
        background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px;
        background-position: 0 0, 0 100%, 0 0, 100% 0;
        background-color: var(--primary-color);
}

.pt-client-box.pt-style-1:hover {
    animation: dash-move 0.5s linear infinite;
}

@keyframes dash-move {
    0% {
        background-position: 0 0, 0 100%, 0 0, 100% 0;
    }

    100% {
        background-position: 15px 0, -15px 100%, 0 -15px, 100% 15px;
    }
}

.pt-client-box.pt-style-1:hover {
    background-color: var(--primary-color);
}

.pt-client-box.pt-style-1::before,
.pt-client-box.pt-style-1::after,
.pt-client-box.pt-style-1 a::before,
.pt-client-box.pt-style-1 a::after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 100%;
    position: absolute;
    background-color: var(--dark-color);
    transition: var(--transition);
    transform: scale(0);
    z-index: 1;
}

.pt-client-box.pt-style-1:hover::before,
.pt-client-box.pt-style-1:hover::after,
.pt-client-box.pt-style-1:hover a::before,
.pt-client-box.pt-style-1:hover a::after {

    transform: scale(1);
}

.pt-client-box.pt-style-1::before {
    left: -7px;
    top: -7px;
}

.pt-client-box.pt-style-1::after {
    right: -7px;
    top: -7px;
}

.pt-client-box.pt-style-1 a::before {
    left: -7px;
    bottom: -7px;
}

.pt-client-box.pt-style-1 a::after {
    right: -7px;
    bottom: -7px;
}

.pt-client-box.pt-style-1 img {
    width: 200px;
    height: auto;
}

.pt-client-box.pt-style-1 .pt-client-img {
    transition: var(--transition);
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.pt-client-box.pt-style-1:hover .pt-client-img {
    opacity: 0;
}

.pt-client-box.pt-style-1 .pt-client-hover-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition);
}

.pt-client-box.pt-style-1:hover .pt-client-hover-img {
    opacity: 1;
}

.pt-client-box.pt-style-1 .svg path {
    stroke: var(--dark-color);
}

.pt-client-box.pt-style-1 a:not(.svg-animation) .svg path {
    stroke-dashoffset: 0 !important;
    stroke: var(--secondary-color);
}

.text-before-line {
    display: flex;
    align-items: center;
    font-size: 16px;
    letter-spacing: 0.1em;
}

.text-before-line::before,
.text-before-line::after {
    content: "";
    flex: 1;
    opacity: 50%;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(90deg, black 50%, transparent 50%);
    background-size: 15px 2.2px;

}

.text-before-line::before {
    margin-right: 15px;
}

.text-before-line::after {
    margin-left: 15px;
}


.pt-client-box-slider.pt-client-style-1 .owl-carousel .owl-dots .owl-dot {
    background-color: var(--dark-color);
    height: 10px;
    width: 10px;
    margin: 0px 8px;
}

.pt-client-box-slider.pt-client-style-1 .owl-carousel .owl-dots .owl-dot.active {
    border: none;
    background-color: var(--dark-color);
    position: relative;
    border: 1px dashed var(--dark-color);
    border-radius: 100%;
}

.pt-client-box-slider.pt-client-style-1 .owl-carousel .owl-dots .owl-dot.active span {
    content: "";
    width: 28px;
    height: 28px;
    border: 1px dashed var(--dark-color);
    border-radius: 100%;
    position: absolute;
    top: -10px;
    left: -10px;
    display: block;
    transition: var(--transition);
}

@media(max-width: 767px) {
    .text-before-line {
        display: block;
    }
    .pt-client-box.pt-style-1{
        width: auto;
    }
}

/*================================================
Img-Corousel
================================================*/

.pt-img-corousel-slider.pt-style-1 .owl-nav,
.pt-img-corousel-slider.pt-style-1 .owl-dots{
    display: none;

}

/*================================================
Blog 
================================================*/

.single-post .pt-blog-post {
    margin-bottom: 0;
}

.pt-blog-post {
    display: inline-block;
    width: 100%;
    margin-bottom: 45px;
}

.pt-single-post-bottom-holder {
    margin: 45px 0;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    border-bottom: 1px solid var(--primary-color);
    border-top: 1px solid var(--primary-color);
}

.pt-single-post-bottom-holder .pt-single-post-tags {
    display: flex;
    align-items: center;
}

.pt-single-post-bottom-holder .pt-single-post-tags-title {
    font-family: var(--title-fonts);
    color: var(--dark-color);
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
}

.pt-single-post-bottom-holder ul.pt-single-post-tags-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}

.pt-single-post-bottom-holder ul.pt-single-post-tags-list li {
    margin: 0 0 0 8px;
    padding: 0;
    list-style: none;
    display: inline-block;
    vertical-align: middle;
}

.pt-single-post-bottom-holder ul.pt-single-post-tags-list li a {
    font-size: 14px;
    text-transform: capitalize;
    background: var(--grey-color);
    margin: 0;
    display: inline-block;
    float: left;
    color: var(--dark-color);
    padding: 4px 16px;
    border: 1px solid var(--grey-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-single-post-bottom-holder ul.pt-single-post-tags-list li a:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

/* ++++++++++ Blog Single Post - Social Media ++++++++++*/

.pt-single-post-bottom-holder .pt-single-post-social-title {
    font-family: var(--title-fonts);
    color: var(--dark-color);
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
}

.pt-single-post-bottom-holder ul.pt-single-post-shortcode-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
}

.pt-single-post-bottom-holder ul.pt-single-post-shortcode-list li {
    margin: 0 0 0 8px;
    padding: 0;
    list-style: none;
}

.pt-single-post-bottom-holder ul.pt-single-post-shortcode-list li a {
    width: 50px;
    height: 50px;
    background: var(--grey-color);
    color: var(--dark-color);
    display: inline-block;
    text-align: center;
    line-height: 50px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-single-post-bottom-holder ul.pt-single-post-shortcode-list li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.pt-single-post-usernav .pt-user {
    background: var(--grey-color);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-single-post-usernav .pt-user .pt-user-media {
    margin-right: 30px;
}

.pt-single-post-usernav .pt-user .pt-user-media img {
    width: 180px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-single-post-usernav .pt-user-info .pt-user-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 5px;
}

.pt-single-post-usernav .pt-user-info .pt-user-sub-title {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
}

.pt-single-post-usernav .pt-user-description {
    margin-bottom: 0;
    margin-top: 10px;
}

.pt-blog.pt-single-post {
    padding: 0 30px 45px;
}

.pt-blog.pt-single-post h2 {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 36px;
}

.single-post .owl-carousel .pt-blog-post .pt-blog-contain .pt-blog-title {
    font-size: 24px;
    line-height: 32px;
}

@media(max-width:767px) {
    .pt-single-post-bottom-holder {
        display: block;
    }

    .pt-single-post-social-share {
        margin-bottom: 30px;
    }

    .pt-single-post-usernav .pt-user {
        align-items: flex-start;
        padding: 15px;
    }
}

@media(max-width:479px) {
    .pt-single-post-bottom-holder {
        padding-top: 0px;
        padding-bottom: 20px;
    }

    .pt-single-post-usernav .pt-user {
        display: block;
    }

    .pt-single-post-usernav .pt-user .pt-user-media img {
        width: 80px;
    }

    .pt-single-post-usernav .pt-user .pt-user-media {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .pt-single-post-bottom-holder ul.pt-single-post-tags-list li {
        margin-bottom: 5px;
    }
}


/* ++++++++++ Blog Image ++++++++++*/

.pt-blog-post .pt-post-media {
    overflow: hidden;
    position: relative;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.pt-blog-post .pt-post-media img {
    transition: var(--transition);
    -webkit-transition: var(--transition);
    width: 100%;
}

.pt-blog-post:hover .pt-post-media img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}


/* ++++++++++ Blog Meta  ++++++++++*/

.pt-blog-post .pt-post-meta {
    margin-bottom: 10px;
}

.pt-blog-post .pt-post-meta ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pt-blog-post .pt-post-meta ul li {
    display: inline-block;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-color);
}

.pt-blog-post .pt-post-meta ul li:last-child {
    margin-right: 0;
}

.pt-blog-post .pt-post-meta ul li .pt-icon {
    margin-right: 5px;
}

.pt-blog-post .pt-post-meta ul li .pt-icon i {
    font-size: 16px;
    line-height: 1;
    color: var(--primary-color);
}

.pt-blog-post .pt-post-meta ul li .pt-icon svg {
    width: 16px;
    height: 16px;
}

.pt-blog-post .pt-post-meta ul li .pt-icon svg path {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}


/* ++++++++++ Blog contain ++++++++++*/

.pt-blog-post .pt-blog-contain .pt-blog-title {
    font-size: 28px;
    line-height: 36px;
}

.pt-blog-post .pt-blog-contain .pt-btn-container {
    margin-top: 30px;
}

/* ++++++++++ Blog Nav ++++++++++*/

.pt-blog .owl-carousel .owl-nav {
    display: block;
    text-align: end;
    top: -100px;
}

.pt-blog .owl-carousel .owl-nav button.owl-prev {
    margin-left: 0;
    margin-right: 10px;
}

.pt-blog .owl-carousel .owl-nav button.owl-next {
    margin-right: 0;
}

@media(max-width:575px) {

    .pt-blog .owl-carousel .owl-nav {
        display: none;
    }
}

/* ++++++++++ Blog 1 Column ++++++++++*/

.pt-blog.pt-blog-col-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px 30px;
}

.pt-blog.pt-blog-col-1 .pt-blog-post {
    margin-bottom: 0;
}

/* ++++++++++ Blog 2 Column ++++++++++*/

.pt-blog.pt-blog-col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px 30px;
}

.pt-blog.pt-blog-col-2 .pt-blog-post {
    margin-bottom: 0;
}

.pt-blog.pt-blog-col-2 .pt-blog-post .pt-blog-contain .pt-blog-title{
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
@media(max-width:767px) {

    .pt-blog.pt-blog-col-2 {
        grid-template-columns: 1fr;
    }
}

/* ++++++++++ Blog 3 Column ++++++++++*/

.pt-blog.pt-blog-col-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 45px 30px;
}

.pt-blog.pt-blog-col-3 .pt-blog-post {
    margin-bottom: 0;
}

@media(max-width:1023px) {

    .pt-blog.pt-blog-col-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:767px) {

    .pt-blog.pt-blog-col-3 {
        grid-template-columns: 1fr;
    }
}

/* ++++++++++ Blog List ++++++++++*/

.pt-blog-post.pt-list {
    display: grid;
    grid-template-columns: auto 250px;
    gap: 30px;
    align-items: center;
    padding: 30px 15px;
    position: relative;
    background: linear-gradient(90deg, var(--border-light-black) 50%, transparent 0) repeat-x;
    background-size: 15px 2.2px;
    background-position: 0 100%;
    margin-bottom: 0;
}

.pt-blog-post.pt-list:first-child {
    background: linear-gradient(90deg, var(--border-light-black) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--border-light-black) 50%, transparent 0) repeat-x;
    background-size: 15px 2.2px, 15px 2.2px;
    background-position: 0 0%, 0 100%;
    padding: 20px;
}

.pt-blog-post.pt-list .pt-blog-contain .pt-post-category a {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 1px;
}

.pt-blog-post.pt-list.pt-active .pt-blog-contain .pt-post-category a {
    color: var(--dark-color);
}

.pt-blog-post.pt-list .pt-blog-contain .pt-blog-title a {
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
    color: var(--dark-color);
    text-transform: uppercase;
}

.pt-blog-post.pt-list.pt-active .pt-blog-contain .pt-blog-title {
    font-size: 28px;
    line-height: 36px;
}

.pt-blog-post.pt-list.pt-active .pt-blog-contain .pt-blog-title a {
    color: var(--primary-color);
}

.pt-blog-post.pt-list .pt-post-media {
    transform: scale(0);
    transition: var(--transition);
    margin-bottom: 0;
}

.pt-blog-post.pt-list.pt-active .pt-post-media {
    transform: scale(1);
}

.pt-blog-post.pt-list.pt-active .pt-post-media img {
    width: 100%;
}

.pt-blog-post.pt-list .svg path {
    stroke-dashoffset: 0 !important;
    display: none;
}

@media (max-width:1279px) {
    .pt-blog-post.pt-list .pt-blog-contain .pt-blog-title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width:1099px) {
    .pt-blog-post.pt-list {
        grid-template-columns: auto 220px;
    }

    .pt-blog-post.pt-list .pt-blog-contain .pt-blog-title {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width:1023px) {
    .pt-blog-post.pt-list {
        grid-template-columns: auto 250px;
    }

    .pt-blog-post.pt-list .pt-blog-contain .pt-blog-title {
        font-size: 30px;
        line-height: 38px;
    }
}

@media (max-width:767px) {
    .pt-blog-post.pt-list {
        grid-template-columns: 1fr;
        padding: 30px 0;
    }
    .pt-blog-post.pt-list:first-child{
        padding: 30px 0;
    }

    .pt-blog-post.pt-list .pt-post-media {
        transform: scale(1);
        grid-row: 1;
    }

    .pt-blog-post.pt-list .pt-blog-contain .pt-post-category a{
        margin-bottom: 5px;
    }
    .pt-blog-post.pt-list .pt-blog-contain .pt-blog-title a{
        font-size: 26px;
        line-height: 34px
    }
}

@media (max-width: 397px) {
    .pt-blog-post.pt-list .pt-blog-contain .pt-blog-title a{
        font-size: 22px;
        line-height: 30px;
    }
}


/*================================================
Blog Sidebar 
================================================*/

.pq-sidebar-info-box .wp-block-image img,
.widget .wp-block-image img {
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.widget .pq-social-logo li a {
    padding: 0;
    display: inline-block;
    text-align: center;
    fill: var(--white-color);
    background: var(--primary-color);
    color: var(--white-color);
    height: 45px;
    width: 45px;
    line-height: 42px;
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
    border-radius: 90px;
}

.widget .pq-social-logo li a:hover {
    background: var(--dark-color);
}

.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor {
    padding: 10px;
}

.wp-block-search .wp-block-search__button:before{
    color: var(--dark-color);
}
/*================================================
Recent Post  
================================================*/

.pt-recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.pt-recent-post:last-child {
    margin-bottom: 0;
    border: none;
    padding: 0;
}

.pt-recent-post .pt-recent-post-media {
    margin-right: 15px;
}

.pt-recent-post .pt-recent-post-media img {
    width: 80px;
    height: 80px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-recent-post .pt-recent-post-info {
    flex: 1;
    align-self: center;
}

.pt-recent-post .pt-recent-post-info .pt-post-date {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.pt-recent-post .pt-recent-post-info .pt-post-date i {
    margin-right: 5px;
}

.pt-recent-post .pt-recent-post-info h6 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    text-transform: capitalize;
}

.pt-recent-post .pt-recent-post-info h6 a:hover {
    color: var(--dark-color);
}


/*================================================
Blog Single Post
================================================*/

.pt-single-post-bottom-holder {
    margin: 45px 0;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    border-bottom: 1px solid var(--primary-color);
    border-top: 1px solid var(--primary-color);
}

.pt-single-post-bottom-holder .pt-single-post-tags {
    display: flex;
    align-items: center;
}

.pt-single-post-bottom-holder .pt-single-post-tags-title {
    font-family: var(--title-fonts);
    color: var(--dark-color);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
}

.pt-single-post-bottom-holder ul.pt-single-post-tags-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}

.pt-single-post-bottom-holder ul.pt-single-post-tags-list li {
    margin: 0 0 0 8px;
    padding: 0;
    list-style: none;
    display: inline-block;
    vertical-align: middle;
}

.pt-single-post-bottom-holder ul.pt-single-post-tags-list li a {
    font-size: 16px;
    text-transform: uppercase;
    background: var(--grey-color);
    margin: 0;
    display: inline-block;
    float: left;
    color: var(--dark-color);
    padding: 4px 16px;
    border: 1px solid var(--grey-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-single-post-bottom-holder ul.pt-single-post-tags-list li a:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--dark-color);
}

/*===== Single Post =====*/

.pt-single-post-bottom-holder .pt-single-post-social-title {
    font-family: var(--title-fonts);
    color: var(--dark-color);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
}

.pt-single-post-bottom-holder ul.pt-single-post-shortcode-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
}

.pt-single-post-bottom-holder ul.pt-single-post-shortcode-list li {
    margin: 0 0 0 8px;
    padding: 0;
    list-style: none;
}

.pt-single-post-bottom-holder ul.pt-single-post-shortcode-list li a {
    width: 50px;
    height: 50px;
    background: var(--grey-color);
    color: var(--dark-color);
    display: inline-block;
    text-align: center;
    line-height: 50px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-single-post-bottom-holder ul.pt-single-post-shortcode-list li a:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.pt-single-post-usernav .pt-user {
    background: var(--grey-color);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-single-post-usernav .pt-user .pt-user-media {
    margin-right: 30px;
}

.pt-single-post-usernav .pt-user .pt-user-media img {
    width: 180px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-single-post-usernav .pt-user-info .pt-user-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 5px;
}

.pt-single-post-usernav .pt-user-info .pt-user-sub-title {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--secondary-color);
}

.pt-single-post-usernav .pt-user-description {
    margin-bottom: 0;
    margin-top: 10px;
}

.pt-blog.pt-single-post {
    padding: 0 30px 45px;
}

.pt-blog.pt-single-post h2 {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 36px;
}

.single-post .owl-carousel .pt-blog-post .pt-blog-contain .pt-blog-title {
    font-size: 24px;
    line-height: 32px;
}

@media(max-width:767px) {
    .pt-single-post-bottom-holder {
        display: block;
    }

    .pt-single-post-social-share {
        margin-bottom: 30px;
    }

    .pt-single-post-usernav .pt-user {
        align-items: flex-start;
        padding: 15px;
    }
}

@media(max-width:479px) {
    .pt-single-post-bottom-holder {
        padding-bottom: 20px;
    }

    .pt-single-post-usernav .pt-user {
        display: block;
    }

    .pt-single-post-usernav .pt-user .pt-user-media img {
        width: 80px;
    }

    .pt-single-post-usernav .pt-user .pt-user-media {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .pt-single-post-bottom-holder ul.pt-single-post-tags-list li {
        margin-bottom: 5px;
    }
}

/*===== Single Project =====*/

.pt-single-post-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    padding: 45px 30px;
    margin-bottom: 0;
    background: var(--grey-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.single-post .pt-single-post-navigation {
    margin-bottom: 40px;
}

.pt-single-post-navigation .pt-single-post-nav {
    position: relative;
    padding-left: 75px;
    display: inline-block;
    cursor: pointer;
}

.pt-single-post-navigation .pt-single-post-nav:before {
    position: absolute;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f053";
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    font-size: 20px;
    color: var(--white-color);
    background: var(--dark-color);
    text-align: center;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-single-post-navigation .pt-single-post-nav.pt--next {
    padding-left: 0;
    padding-right: 75px;
    text-align: right;
}

.pt-single-post-navigation .pt-single-post-nav.pt--next:before {
    content: "\f054";
    right: 0;
    left: inherit;
}

.pt-single-post-navigation .pt-single-post-nav-title h4 {
    font-size: 24px;
    line-height: 32px;
}

.pt-single-post-nav-label {
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 26spx;
    font-weight: 500;
    text-transform: uppercase;
}

.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(--dark-color);
}

.pt-single-post-navigation .pt-single-post-nav:hover:before {
    background: var(--primary-color);
    color: var(--dark-color);
}


@media(max-width:767px) {

    .pt-single-post-navigation {
        padding: 45px 15px;

    }

    .pt-single-post-navigation .pt-single-post-nav-title h4 {
        font-size: 20px;
        line-height: 28px;
    }

    .pt-single-post-navigation+h2+.pt-masonry {
        margin-left: 0;
    }
}

@media(max-width:576px) {
    .pt-single-post-navigation {
        display: block;
    }

    .pt-single-post-navigation .pt-single-post-nav.pt--next {
        margin-top: 15px;
        display: block;
    }
}


/*================================================
Portfoliobox
================================================*/

.pt-portfoliobox-1 {
    background: var(--white-color);
    padding: 0 30px 30px;
    border: 1px dashed var(--white-color);
    margin-top: 45px;
    transition: var(--transition);
    position: relative;
}

.pt-portfoliobox-1:hover {
    background: var(--primary-color);
}

.pt-portfoliobox-1 .pt-portfolio-block .pt-portfolio-img {
    overflow: hidden;
    margin-top: -45px;
    z-index: 1;
    position: relative;
    height: 380px;
}

.pt-portfoliobox-1 .pt-portfolio-block .pt-portfolio-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: var(--transition);
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.pt-portfoliobox-1:hover .pt-portfolio-block .pt-portfolio-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pt-portfoliobox-1 .pt-portfolio-block .pt-portfolio-info {
    margin-top: 15px;
}

.pt-portfoliobox-1 .pt-portfolio-block .pt-portfolio-info .pt-portfolio-tag a {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    transition: var(--transition);
    margin-bottom: 5px;
    display: inline-block;
    letter-spacing: 1px;
    color: var(--secondary-color);
    z-index: 9;
    position: relative;
}

.pt-portfoliobox-1:hover .pt-portfolio-block .pt-portfolio-info .pt-portfolio-tag a {
    color: var(--dark-color);
}

.pt-portfoliobox-1 .pt-portfolio-block .pt-portfolio-info .pt-portfolio-style-1-title a {
    font-size: 28px;
    line-height: 36px;
    color: var(--dark-color);
    position: relative;
    z-index: 9;
}

.pt-portfoliobox-1 .svg path {
    stroke-dashoffset: 0 !important;
}

.pt-portfoliobox.pt-portfoliobox-style-1 {
    position: relative;
}

.pt-portfoliobox.pt-portfoliobox-style-1 .owl-dots{
    display: none;
}
.pt-portfoliobox.pt-portfoliobox-style-1 .owl-nav{
    display: block;
    top: initial;
    position: relative;
    margin-top: 30px;
    transform: translateY(0);
    text-align: center;
}

.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav button.owl-prev{
    margin-left: 0;
    background-color: var(--primary-color);
  
}
.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav button.owl-next{
    margin-right: 0;
    background-color: var(--primary-color);
}

.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav button.owl-prev:hover,
.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav button.owl-next:hover{
    background-color: var(--primary-color);
  
}

.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav button.owl-prev::before,
.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav button.owl-next::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    --n: 16;
    --d: 12deg;
    --t: 2px;
    --c: var(--dark-color);
    padding: var(--t);
    background: var(--c);
    mask: linear-gradient(#0000 0 0) content-box,
          repeating-conic-gradient(from calc(var(--d)/2),
            #000 0 calc(360deg/var(--n) - var(--d)),
            #0000 0 calc(360deg/var(--n)));
    mask-composite: intersect;
    transition: var(--transition);
}

.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav button.owl-prev:hover::before,
.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav button.owl-next:hover::before {
    --c: var(--dark-color);
}

.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav button.owl-next i,
.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav button.owl-prev i{
    font-size: 20px;
    line-height: 28px;
    color:var(--dark-color);
}

.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav button.owl-next:hover i,
.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav button.owl-prev:hover i{
    color: var(--white-color);
}


@media (max-width:767px) {
    .pt-portfoliobox-1 .pt-portfolio-block .pt-portfolio-info {
        text-align: center;
    }
}

@media (max-width:397px) {
    .pt-portfoliobox-1 {
        padding: 0 15px 30px;
    }

    .pt-portfoliobox-1 .pt-portfolio-block .pt-portfolio-img {
        width: 100%;
        height: 300px;
    }

    .pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info {
        padding-top: 15px 0 0;
    }
}


/*===== Portfoliobox Hover fade  =====*/
.pt-portfoliobox-1.pt-hover-fade {
    text-align: center;
    padding: 0;
    margin: 0;
    border: none;
}

.pt-portfoliobox-1.pt-hover-fade:before {
    opacity: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background-color: var(--dark-color);
    z-index: 9;
    transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-portfoliobox-1.pt-hover-fade:hover:before {
    opacity: 0.7;
}

.pt-portfoliobox-1.pt-hover-fade .pt-portfolio-block .pt-portfolio-img {
    margin-top: 0;
    height: 100%;
    width: 100%;
}

.pt-portfoliobox-1.pt-hover-fade .pt-portfolio-info {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    display: grid;
    align-items: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
    opacity: 0;
    -moz-transform: translate(0px, 30px);
    -webkit-transform: translate(0px, 30px);
    -o-transform: translate(0px, 30px);
    -ms-transform: translate(0px, 30px);
    transform: translate(0px, 30px);
    -webkit-transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
    transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.pt-portfoliobox-1.pt-hover-fade .pt-portfolio-info h5 {
    margin-bottom: 5px;
}

.pt-portfoliobox-1.pt-hover-fade .pt-portfolio-info h5 a,
.pt-portfoliobox-1.pt-hover-fade .pt-portfolio-info .pt-portfolio-style-1-title a {
    color: var(--white-color);
}

.pt-portfoliobox-1 .pt-portfolio-info .pt-portfoliobox-tag-box a {
    font-family: var(--title-fonts);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.pt-portfoliobox-1.pt-hover-fade .pt-portfolio-info .pt-portfoliobox-tag-box a,
.pt-portfoliobox-1 .pt-portfolio-info .pt-portfoliobox-tag-box a:hover {
    color: var(--primary-color);
}

.pt-portfoliobox-1.pt-hover-fade:hover .pt-portfolio-info {
    opacity: 1;
    -moz-transform: translate(0px, 0);
    -webkit-transform: translate(0px, 0);
    -o-transform: translate(0px, 0);
    -ms-transform: translate(0px, 0);
    transform: translate(0px, 0);
}

.pt-portfoliobox-1.pt-hover-fade .pt-e-post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pt-portfoliobox-1.pt-hover-fade .pt-portfolio-info .pt-btn-container a,
.pt-portfoliobox-1.pt-hover-fade .pt-portfolio-info .pt-portfolio-style-1-tag {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
}

.pt-portfoliobox-1.pt-hover-fade svg {
    display: none;
}

/*===== Portfoliobox Hover bellow =====*/
.pt-portfoliobox-1.pt-hover-bellow {
    padding: 0;
    margin: 0;
}

.pt-portfoliobox-1.pt-hover-bellow:hover {
    background-color: transparent;
}

.pt-portfoliobox-1.pt-hover-bellow svg {
    display: none;
}

.pt-portfoliobox-1.pt-hover-bellow .pt-portfolio-block .pt-portfolio-img {
    margin-top: 0;
    height: 100%;
    width: 100%;
}


/*================================================
Event Box
================================================*/

/* ++++++++++ Event-Box-1 ++++++++++*/
.pt-event-list-1 {
    position: relative;
}

.pt-event-box.pt-style-1 .pt-event-box-img {
    position: absolute;
    left: 0;
    top: 30px;
    transform-origin: 100% 0;
    transform: scale(1) rotate(-3deg);
    opacity: 1;
    width: 44%;
}

.pt-event-box.pt-style-1.pt-active .pt-event-box-img {
    background: linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x, linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x, linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y, linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y;
    background-size: 12px 2px, 12px 2px, 2px 12px, 2px 12px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
}

.pt-event-box.pt-style-1 .pt-event-box-img img {
    transform-origin: 100% 0;
    transform: scale(1) rotate(0deg) translateX(50px) translateY(-30px);
    opacity: 0;
    transition: var(--transition);
}

.pt-event-box.pt-style-1.pt-active .pt-event-box-img img {
    transform: scale(1) rotate(3deg) translateX(50px) translateY(-30px);
    opacity: 1;
}

.pt-event-box.pt-style-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
}

.pt-event-box.pt-style-1:last-child {
    margin-bottom: 0;
}

.pt-event-box.pt-style-1 .pt-event-box-info {
    padding: 30px;
    background-color: var(--grey-color);
    position: relative;
    overflow: hidden;
    z-index: 2;
    grid-column: 2;
}

.pt-event-box.pt-style-1 .pt-event-box-info .pt-event-box-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.pt-event-box.pt-style-1.pt-active .pt-event-box-info .pt-event-box-title {
    color: var(--white-color);
}

.pt-event-box.pt-style-1 .pt-event-box-info .pt-event-box-description {
    margin-bottom: 0;
    transition: var(--transition);
    line-height: 26px;
    font-size: 16px;
}

.pt-event-box.pt-style-1.pt-active .pt-event-box-info .pt-event-box-description {
    color: var(--white-color);
    line-height: 26px;
    font-size: 16px;
}

.pt-event-box.pt-style-1 .pt-event-box-info .pt-hover-img {
    position: absolute;
    right: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: var(--transition);
}

.pt-event-box.pt-style-1.pt-active .pt-event-box-info .pt-hover-img {
    right: 0;
}


.pt-event-box.pt-style-1 .pt-event-box-info .pt-hover-img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    opacity: 0.8;
}

.pt-event-box.pt-style-1 .pt-event-box-info .pt-hover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width:979px) {
    .pt-event-box.pt-style-1 .pt-event-box-info {
        padding: 30px 15px;
    }

    .pt-event-box.pt-style-1 .pt-event-box-info .pt-event-box-title {
        font-size: 26px;
        line-height: 32px;
    }
}

@media(max-width:767px) {
    .pt-event-box.pt-style-1 {
        display: block;
    }

    .pt-event-box.pt-style-1 .pt-event-box-img {
        display: none;
    }

    .pt-event-box.pt-style-1 .pt-event-box-info {
        padding: 30px 15px;
    }
}

@media(max-width:979px) {
    .pt-event-box.pt-style-1 .pt-event-box-info .pt-event-box-title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 10px;
    } 
}

/* ++++++++++ Event-Box-2 ++++++++++*/
.pt-event-box.pt-style-2 {
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.pt-event-box.pt-style-2 .pt-event-img {
    transition: var(--transition);
}
.pt-event-box.pt-style-2 .pt-event-img img{
    width: 100%;
}

.pt-event-box.pt-style-2 .pt-event-info {
    position: relative;
    background-color: var(--white-color);
    text-align: center;
    padding: 15px 0;
    margin: 0 15px 15px;
    margin-top: -117px;
    transition: var(--transition);
}

.pt-event-box.pt-style-2:hover .pt-event-info {
    background-color: var(--primary-color);
}

.pt-event-box.pt-style-2 .pt-event-info .pt-event {
    color: var(--dark-color);
    font-size: 28px;
    line-height: 36px;
}

.pt-event-box.pt-style-2 .pt-event-info .pt-button:hover {
    color: var(--dark-color);
}

.pt-event-box.pt-style-2 .pt-event-info .svg path {
    opacity: 0;
}

.pt-event-box.pt-style-2:hover .pt-event-info .svg path {
    opacity: 1;
}

@media (max-width:767px) {
    .pt-event-box.pt-style-2 {
        width: 100%;
    }
}

@media (max-width:397px) {
    .pt-event-box.pt-style-2 .pt-event-info .pt-event {
        font-size: 24px;
        line-height: 32px;
    }
}

/* ++++++++++ Event-Box-3 ++++++++++*/

.pt-event-box.pt-style-3 {
    padding: 45px 30px;
    background-color: var(--white-color);
    transition: var(--transition);
    margin-bottom: 30px;
}

.pt-event-box.pt-style-3.pt-active {
    background-color: var(--primary-color);
}

.pt-event-box.pt-style-3 .pt-event-box-info .pt-event-box-title {
    font-size: 30px;
    line-height: 38px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.pt-event-box.pt-style-3 .pt-event-box-info .pt-event-box-description {
    font-size: 16px;
    line-height: 24px;
    color: var(--secondary-color);
    margin-bottom: 0;
    transition: var(--transition);
}

.pt-event-box.pt-style-3.pt-active .pt-event-box-info .pt-event-box-description {
    color: var(--dark-color);
}

@media (max-width:767px) {
    .pt-event-box.pt-style-3 {
        padding: 30px 15px;
    }

    .pt-event-box.pt-style-3 .pt-event-box-info .pt-event-box-title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 15px;
    }
}

@media (max-width:767px) {
    .pt-event-box.pt-style-3 .pt-event-box-info .pt-event-box-title {
        font-size: 22px;
        line-height: 30px;
    }
}

/*================================================
Banner 
================================================*/
@media (max-width:767px) {
    .pt-banner-img-1 img{
        height: 300px;
        object-fit: cover;
    }
}

/* ++++++++++ Banner style -1 ++++++++++*/

.pt-banner.pt-style-1 {
    position: relative;
}

.pt-banner.pt-style-1 .pt-banner-container {
    display: grid;
    grid-template-columns: 40% calc(60% - 45px);
    gap: 45px;
}

.pt-banner.pt-style-1 .pt-banner-container>div {
    display: flex;
    align-items: center;
    height: 100%;
}

.pt-banner-info-1 .pt-banner-title {
    font-size: 68px;
    line-height: 76px;
    margin-bottom: 45px;
}

.pt-banner-info-1 .pt-banner-title .pt-title-last-word{
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

.pt-banner-info-1 .pt-banner-title .pt-title-last-word svg{
    background-color: var(--primary-color);
    z-index: -1
}

.pt-banner-info-1 .pt-banner-title .pt-title-last-word::before,
.pt-banner-info-1 .pt-banner-title .pt-title-last-word::after,
.pt-banner-info-1 .pt-banner-title .pt-title-last-word .pt-svg-dot::after,
.pt-banner-info-1 .pt-banner-title .pt-title-last-word .pt-svg-dot::before {
    content: "";
    position: absolute;
    background: var(--dark-color);
    height: 10px;
    width: 10px;
    border-radius: 100%;
    z-index: 1;
}

.pt-banner-info-1 .pt-banner-title .pt-title-last-word::before {
    right: -5px;
    bottom: -5px;
}

.pt-banner-info-1 .pt-banner-title .pt-title-last-word::after {
    left: -5px;
    top: -5px;
}

.pt-banner-info-1 .pt-banner-title .pt-title-last-word .pt-svg-dot::after {
    bottom: -5px;
    left: -5px;
}

.pt-banner-info-1 .pt-banner-title .pt-title-last-word .pt-svg-dot::before {
    top: -5px;
    right: -5px;
}

.pt-banner-info-1 .pt-counter.pt-counter-style-1 {
    margin-top: 100px;
    padding: 0;
    background-color: transparent;
}


.pt-banner.pt-style-1 .pt-thumbs-column-inner {
    height: 100% !important;
}

.pt-banner.pt-style-1 .slick-track {
    margin: 0;
}

.pt-banner.pt-style-1 .pt-thumbs-column .slick-track {
    width: 100% !important;
    margin: 0 0 30px 7.5%;
}

.pt-banner.pt-style-1 .slick-slide {
    width: 100% !important;
    margin: 0;
}

.pt-banner-info-2 .pt-image-box img {
    width: 100%;
}

@media (max-width:1279px) {
    .pt-banner-info-1 .pt-banner-title {
        font-size: 62px;
        line-height: 70px;
    }

    .pt-banner-info-1 .pt-counter.pt-counter-style-1 {
        margin-top: 60px;
    }
}

@media (max-width:1023px) {
    .pt-banner-info-1 .pt-banner-title {
        font-size: 50px;
        line-height: 58px;
    }

    .pt-banner-info-1 .pt-counter.pt-counter-style-1 {
        margin-top: 45px;
    }

    .pt-banner.pt-style-1 .pt-thumbs-column .slick-track {
        margin: 0;
    }
}

@media (max-width:979px) {
    .pt-banner.pt-style-1 .pt-banner-container {
        display: block;
    }

    .pt-banner-info-1 .pt-banner-title {
        font-size: 60px;
        line-height: 68px;
    }

    .pt-banner.pt-style-1 .pt-thumbs-column .slick-track {
        margin: 0;
    }

    .pt-banner-info-2 .pt-image-box {
        margin-top:30px;
    }
}


@media (max-width:767px) {
    .pt-banner-info-1 .pt-banner-title {
        font-size: 50px;
        line-height: 58px;
    }
}

@media (max-width:397px) {
    .pt-banner-info-1 .pt-banner-title {
        font-size: 36px;
        line-height: 44px;
    }
    .pt-banner.pt-style-1 .pt-banner-container>div{
        display: block;
    }
    .pt-counter.pt-counter-style-1 .pt-counter-info .pt-timer-tilte{
        text-align: left;
    }
}


/*================================================
Service Box
================================================*/

/* ++++++++++ service box style - 1 ++++++++++*/

.pt-service-box.pt-style-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.pt-service-box.pt-style-1 .pt-service-info {
    position: relative;
    overflow: hidden;
    z-index: 2;
    grid-column: 1;
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 30px;
    padding: 45px 30px;
    align-items: center;
    border-bottom: 1px solid #D9D9D9;
    transition: var(--transition);
}

.pt-service-box.pt-style-1.pt-active .pt-service-info {
    background-color: var(--primary-color);
}

.pt-service-box.pt-style-1 .pt-service-title {
    font-size: 28px;
    line-height: 36px;
    position: relative;
    transition: var(--transition);
}

.pt-service-box.pt-style-1 .pt-service-description {
    line-height: 28px;
}

.pt-service-box.pt-style-1 .pt-icon {
    font-size: 20px;
    line-height: 60px;
    width: 60px;
    height: 60px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 100%;
    transition: var(--transition);
    position: relative;
}

.pt-service-box.pt-style-1 .pt-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    --n: 16;
    --d: 12deg;
    --t: 2px;
    --c: var(--dark-color);
    padding: var(--t);
    background: var(--c);
    mask: linear-gradient(#0000 0 0) content-box,
          repeating-conic-gradient(from calc(var(--d)/2),
            #000 0 calc(360deg/var(--n) - var(--d)),
            #0000 0 calc(360deg/var(--n)));
    mask-composite: intersect;
    transition: var(--transition);
}

.pt-service-box.pt-style-1.pt-active .pt-icon::before {
    --c: var(--white-color);
}

.pt-service-box.pt-style-1.pt-active .pt-icon {
    background-color: var(--dark-color);
    color: var(--primary-color);
}

.pt-service-box.pt-style-1 .pt-service-box-img {
    position: absolute;
    right: 50px;
    top: 30px;
    transform-origin: 100% 0;
    transform: scale(1) rotate(-3deg);
    opacity: 1;
    width: 44%;
}

.pt-service-box.pt-style-1.pt-active .pt-service-box-img {
    background: linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x, linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x, linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y, linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y;
    background-size: 12px 2px, 12px 2px, 2px 12px, 2px 12px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
}

.pt-service-box.pt-style-1 .pt-service-box-img img {
    transform-origin: 100% 0;
    transform: scale(1) rotate(0deg) translateX(50px) translateY(-30px);
    opacity: 0;
    transition: var(--transition);
}

.pt-service-box.pt-style-1.pt-active .pt-service-box-img img {
    transform: scale(1) rotate(3deg) translateX(50px) translateY(-30px);
    opacity: 1;
}

@media (max-width:1279px) {
    .pt-service-box.pt-style-1 .pt-service-info {
        display: block;
    }

    .pt-service-box.pt-style-1 .pt-active {
        padding: 30px;
    }

    .pt-service-box.pt-style-1 .pt-service-info .pt-service-description {
        width: 90%;
        margin-top: 20px;
        display: inline-block;
    }

    .pt-service-box.pt-style-1 .pt-icon {
        position: absolute;
        top: 30px;
        right: 30px;
        line-height: 50px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width:1023px) {
    .pt-service-box.pt-style-1 {
        grid-template-columns: 1fr;
    }

    .pt-service-box.pt-style-1.pt-active .pt-service-box-img {
        display: none;
    }

}

@media (max-width:767px) {
    .pt-service-box.pt-style-1 .pt-service-info{
        padding: 30px 15px;
    }
    .pt-service-box.pt-style-1 .pt-icon{
        right: 15px;
        top: 30px;
    }
}


@media (max-width:397px) {
    .pt-service-box.pt-style-1 .pt-icon {
        margin-left: 0;
        line-height: 45px;
        width: 45px;
        height: 45px;
        font-size: 20px;
        top: 23px;
    }

    .pt-service-box.pt-style-1 .pt-service-title {
        font-size: 24px;
        line-height: 32px
    }
}

/*================================================
Contact Form
================================================*/

/* ++++++++++ Contact Form Style -1 ++++++++++*/
.pt-contact-form.pt-style-1 .wpcf7-form-control-wrap input {
    position: relative;
    z-index: 9;
}

.pt-contact-form.pt-style-1 .pt-button {
    color: var(--dark-color) !important;
}

.pt-contact-form.pt-style-1 .pt-button:hover {
    color: var(--white-color) !important;
}

.pt-contact-form.pt-style-1 p {
    margin-bottom: 0;
}

.pt-contact-form.pt-style-1 .wpcf7-form-control-wrap .wpcf7-form-control {
    margin-bottom: 30px;
    background-color: var(--white-color);
    font-size: 18px;
    line-height: 26px;
    font-family: var(--body-fonts);
}


/* ++++++++++ blog  Single page Form  ++++++++++*/
.form-submit .submit {
    background: linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y;
    background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    transition: background-position 0.3s linear;
    background-color: var(--primary-color) !important;
    color: var(--dark-color) !important;
    transition: var(--transition);
}

.form-submit .submit:hover {
    background: linear-gradient(90deg, var(--white-color) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--white-color) 50%, transparent 0) repeat-x,
        linear-gradient(0deg, var(--white-color) 50%, transparent 0) repeat-y,
        linear-gradient(0deg, var(--white-color) 50%, transparent 0) repeat-y;
        background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px;
        background-position: 0 0, 0 100%, 0 0, 100% 0;
        background-color: var(--dark-color) !important;
        color: var(--white-color) !important;
}

.form-submit .submit:hover {
    animation: dash-move 0.5s linear infinite;
}

@keyframes dash-move {
    0% {
        background-position: 0 0, 0 100%, 0 0, 100% 0;
    }

    100% {
        background-position: 15px 0, -15px 100%, 0 -15px, 100% 15px;
    }
}


/*================================================
Footer 
================================================*/

/* ++++++++++ footer style- 1  ++++++++++*/

footer#pt-footer .pt-footer-style-1 .pt-footer-top {
    padding: 0 ;
}

/* ++++++++++ FooteR Top list ++++++++++ */
footer#pt-footer .pt-footer-style-1 .pt-footer-top-block {
    border-bottom: 1px solid var(--light-white);
}

footer#pt-footer .pt-footer-style-1 {
    background: var(--dark-color);
    display: inline-block;
    width: 100%;
    float: left;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-top-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-top-list .pt-footer-items {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-right: 1px solid var(--light-white);
    justify-content: center;
    padding: 30px 0;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-top-list .pt-footer-items:last-child {
    border-right: 0;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-top-list .pt-footer-items:first-child {
    justify-content: flex-start;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-top-list .pt-footer-items i {
    font-size: 40px;
    line-height: 48px;
    color: var(--primary-color);
}


footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-top-list .pt-footer-items .pt-footer-items-info h4,
footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-top-list .pt-footer-items .pt-footer-items-info span {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--white-color);
    text-transform: capitalize;
}

@media (max-width:979px) {
    footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-top-list .pt-footer-items {
        padding: 45px 0px;
    }
}

@media (max-width:767px) {
    footer#pt-footer .pt-footer-style-1 .pt-footer-top-block {
        border-bottom: none;
    }

    footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-top-list {
        grid-template-columns: 1fr;
    }

    footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-top-list .pt-footer-items {
        border-bottom: 1px solid var(--light-white);
        justify-content: flex-start;
        border-right: none;
    }
}

/* ++++++++++ FooteR Bottom list ++++++++++ */

footer#pt-footer .pt-footer-style-1 .widget {
    margin-bottom: 0;
}

footer#pt-footer .pt-footer-style-1 .widget img {
    height: 75px;
    margin-bottom: 30px;
}

footer#pt-footer .pt-footer-style-1 .widget p {
    color: var(--white-color);
    margin-bottom: 0;
    max-width: 410px;
}

footer#pt-footer .pt-footer-style-1 .widget .footer-title {
    margin-bottom: 15px;
    padding: 0;
    font-size: 26px;
    line-height: 34px;
    position: relative;
    color: var(--white-color);
}

footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-bottom-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 45px;
    margin: 45px 0;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-bottom-list .pt-footer-column-2 .menu-footer-menu-container ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-bottom-list .pt-footer-column-2 .menu-footer-menu-container ul li a {
    font-size: 18px;
    line-height: 26px;
    color: var(--white-color);
    position: relative;
    transition: var(--transition);
    padding-left: 15px;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-bottom-list .pt-footer-column-2 .menu-footer-menu-container ul li a:hover {
    padding-left: 20px;
    color: var(--primary-color);
}

footer#pt-footer .pt-footer-style-1 .widget ul.menu li a:before {
    content: inherit !important;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-bottom-list .pt-footer-column-2 .menu-footer-menu-container ul li a::after {
    content: "\e64a";
    font-family: 'themify';
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 16px;
    line-height: 24px;
    transform: translate(-50%, -50%) rotate(177deg);
    display: inline-block;
    margin: auto 0;
    color: var(--grey-color);
}

footer#pt-footer .pt-footer-style-1 .widget .pt-subscribe p {
    margin-bottom: 20px;
}

footer#pt-footer .pt-footer-style-1 .widget .pt-subscribe-from .mc4wp-form-fields {
    display: inline-block;
    width: 100%;
    position: relative;
    color: var(--white-color);
}

footer#pt-footer .pt-footer-style-1 .widget .pt-subscribe-from .mc4wp-form-fields input {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white-color);
    border: none;
    height: 60px;
    line-height: 60px;
}

footer#pt-footer .pt-footer-style-1 .widget .pt-subscribe-from .mc4wp-form-fields input.submit {
    background: transparent;
    border: transparent;
    font-size: 0;
    padding: 0;
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
}

footer#pt-footer .pt-footer-style-1 .widget .pt-subscribe-from .mc4wp-form-fields .pt-form-icon {
    font-size: 24px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--dark-color);
    background-color: var(--primary-color);
}

@media (max-width:1099px) {
    footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-bottom-list {
        grid-template-columns: 1fr 1fr;
        gap: 45px 75px;
    }
}

@media (max-width:767px) {
    footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-bottom-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width:767px) {
    footer#pt-footer .pt-footer-style-1 .pt-footer-top .pt-footer-bottom-list .pt-footer-column-2 .menu-footer-menu-container ul {}
}


/* ++++++++++ Copyright-footer ++++++++++ */

footer#pt-footer .pt-footer-style-1 .pt-copyright-footer {
    padding: 15px 0;
    background: var(--dark-color);
    text-align: center;
    color: var(--white-color);
    border-top: 1px solid var(--light-white);
}

footer#pt-footer .pt-footer-style-1 .pt-copyright-footer .pt-footer-social ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

footer#pt-footer .pt-footer-style-1 .pt-copyright-footer .pt-footer-social ul li{
    margin-right: 5px;
}

footer#pt-footer .pt-footer-style-1 .pt-copyright-footer .pt-footer-social ul li a i {
    font-size: 20px;
    line-height: 28px;
    color: var(--white-color);
    transition: var(--transition);
    transform: scale(1);
}

footer#pt-footer .pt-footer-style-1 .pt-copyright-footer .pt-footer-social ul li a i:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

footer#pt-footer .pt-footer-style-1 .pt-copyright-footer .pt-copyright {
    font-size: 18px;
    line-height: 28px;
    color: var(--white-color);
    text-align: right;
}
@media(max-width:1023px) {
    footer#pt-footer .pt-footer-style-1 .pt-copyright-footer .pt-footer-social ul{
        justify-content: center;
    }

    footer#pt-footer .pt-footer-style-1 .pt-copyright-footer .pt-copyright{
        text-align: center;
    }
}


/*================================================
Border svg
================================================*/

.svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 200ms linear;
}

.svg path {
    stroke-dasharray: 8px, 8px;
    stroke-width: 4px;
    stroke: var(--dark-color);
}


/*================================================
OWL Carousel
================================================*/

.owl-carousel .owl-nav.disabled {
    display: none;
}

.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    cursor: inherit;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    position: relative;
    font-size: 24px;
    width: 50px;
    height: 50px;
    line-height:2;
    background: var(--primary-color);
    padding: 0 !important;
    margin: 0 5px;
    border: none;
    border-radius: 100%;
    color: var(--white-color);
}

.owl-carousel .owl-nav button:hover {
    color: var(--white-color);
    background: var(--dark-color);
}

.pt-dark-bg .owl-carousel .owl-nav button:hover {
    color: var(--primary-color);
    background: var(--white-color);
}


.owl-carousel .owl-nav button.owl-prev {
    margin-left: -100px;
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: -100px;
}


/*++++++++++++++++ Dots +++++++++++*/
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-dots {
    margin-top: 30px;
    line-height: normal;
    position: relative;
    width: 100%;
    text-indent: inherit;
    text-align: center;
    cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot {
    box-shadow: none;
    outline: none;
    background: transparent;
    border: 1px solid var(--dark-color);
    display: inline-block;
    padding: 0;
    margin: 0px 5px;
    height: 15px;
    width: 15px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    cursor: pointer;
    border-radius: 100%;
}

.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

.owl-carousel .owl-dots .owl-dot:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 1;
}


/*================================================
Header 
================================================*/

header {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 99;
    top: 0;
}

/*++++++++++ Header Logo ++++++++++*/
header .navbar-brand img {
    height: 55px;
}

@media(max-width:379px) {
    header .navbar-brand img {
        height: 45px;
    }
}

/*++++++++++ Header Bottom  ++++++++++*/

header .pt-bottom-header {
    padding: 0 20px;
    background-color: var(--white-color);
}

/*++++++++++ Header Bottom Sticky  ++++++++++*/

header .pt-bottom-header.pt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background: var(--white-color);
    -webkit-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    border-bottom: none;
}

header .pt-bottom-header .pt-container-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    position: relative;
}

header .pt-bottom-header .pt-container-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: var(--grey-color);
}


.admin-bar header .pt-bottom-header.pt-header-sticky {
    top: 32px;
}

@media(max-width: 782px) {
    .admin-bar header .pt-bottom-header.pt-header-sticky {
        top: 46px;
    }
}

@media(max-width: 600px) {
    .admin-bar header .pt-bottom-header.pt-header-sticky {
        top: 0;
    }
}

/*++++++++++ Toggle ++++++++++*/
#mega-menu-wrap-primary .mega-menu-toggle {
    border-radius: 0px;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 {
    width: 60px;
    height: 60px;
    margin: 0 !important;
    justify-content: center;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
    width: 18px;
    height: 18px;
    transform: none;
    display: inline-block;
    position: relative;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
    width: 0;
    height: 0;
    position: initial;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box::after,
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box::before,
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner:after,
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--dark-color);
    border-radius: 0;
    transition: var(--transition);
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box::after {
    left: 0;
    top: 0;
}

#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-box::after {
    transform: translate(-4px, -4px);
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box::before {
    right: 0;
    top: 0;
}

#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-box::before {
    transform: translate(4px, -4px);
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner:after {
    left: 0;
    bottom: 0;
    top: initial;
}

#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
    transform: translate3d(-4px, 4px, 0) rotate(0deg)
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
    right: 0;
    bottom: 0;
    top: initial;
}

#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
    opacity: 1;
    transform: rotate(0deg) translate3d(4px, 4px, 0);
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
    width: 0;
    height: 0;
    position: initial;
}

#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
    transform: none;
}

/*++++++++++ Mega-menu ++++++++++*/

.pt-middle-menu {
    position: relative;
}

.pt-middle-menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--border-light-black) 50%, transparent 0) repeat-x;
    background-size: 15px 2.2px;
    background-position: 0 0;
    position: absolute;
    bottom: 15%;
    left: 0;
}

#mega-menu-wrap-primary #mega-menu-primary {
    display: flex;
    gap: 20px;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item::before,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item::before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--dark-color);
    position: absolute;
    bottom: 15%;
    left: 0;
    transition: var(--transition);
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item:hover::before,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor::before,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-toggle-on::before {
    width: 100%;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    padding: 0 0 0 20px;
    position: relative;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0);
    left: 0;
    transition: var(--transition);
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item:hover>a.mega-menu-link::before,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link::before,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-toggle-on>a.mega-menu-link::before {
    transform: translateY(-50%) scale(1);
}

/*++++++++++ Header Right ++++++++++*/

.pt-header-right .pt-header-icon {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.pt-header-right .pt-header-icon .pt-header-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
}

.pt-header-right .pt-header-icon .pt-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
    line-height: 52px;
    text-align: center;
    background: var(--grey-color);
    color: var(--dark-color);
    display: inline-block;
}

/*++++++++++ Search ++++++++++*/
.pt-header-right .pt-header-icon .pt-search-button {
    font-size: 24px;
    line-height: 35px;
    text-align: center;
    color: var(--primary-color);
    display: inline-block;
}

/*++++++++++ Offcanvas search ++++++++++*/
.admin-bar .pt-search-button .offcanvas {
    top: 32px;
}

.pt-search-button .offcanvas {
    padding: 45px;
    height: auto;
    bottom: inherit;
    transition: all 0.5s ease;
}

.pt-search-button .offcanvas .btn-close {
    opacity: 1;
    background: none;
    color: var(--white-color);
    font-size: 0;
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
    line-height: normal;
    padding: 0;
    box-shadow: none;
    width: 54px;
    height: 54px;
    line-height: 54px;
}

.pt-search-button .offcanvas .btn-close:before {
    content: "\e646";
    font-family: "themify";
    font-size: 18px;
    color: var(--dark-color);
    transition: var(--transition);
}

.pt-search-button .offcanvas .btn-close:hover:before{
    color: var(--white-color);
}

.pt-search-button .offcanvas .btn-close:after {
    content: "";
    background: var(--primary-color);
    width: 54px;
    height: 54px;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.pt-search-button .offcanvas .btn-close:hover:after {
    background: var(--dark-color);
}

.pt-search-button .offcanvas .btn-close:hover {
    color: var(--white-color);
}

.pt-search-button .offcanvas .search-form {
    margin: 0 auto;
    width: 60%;
}

.pt-search-button .offcanvas .search-form .search-field {
    border: none;
    color: var(--dark-color);
    background: var(--grey-color);
    padding-left: 30px;
    font-family: var(--body-fonts);
}

.pt-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-decoration,
.pt-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-cancel-button,
.pt-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-button,
.pt-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.pt-search-button .offcanvas .search-form .search-field:focus {
    color: var(--dark-color);
}

.pt-search-button .offcanvas .search-form .search-submit {
    background: transparent;
    color: var(--secondary-color) !important;
}

.pt-search-button .offcanvas .search-form .search-submit:hover {
    color: var(--dark-color) !important;
}

/*++++++++++ Bottom header style - 1 ++++++++++*/

.pt-bottom-header .pt-header-right .pt-header-icon .pt-search-button a {
    width: 52px;
    height: 52px;
    font-size: 20px;
    line-height: 52px;
    text-align: center;
    background: var(--grey-color);
    color: var(--dark-color);
    display: inline-block;
}

/*++++++ Header Toggle Icon ++++++*/

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a {
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    align-content: center;
    text-align: center;
    position: relative;
}

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a .pt-toggle-btn-line,
header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a .pt-toggle-btn-line::after,
header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a .pt-toggle-btn-line::before {
    width: 30px;
    height: 3px;
    background-color: var(--white-color);
    position: absolute;
    transform-origin: right;
    right: 15px;
    transition: var(--transition);
}

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a .pt-toggle-btn-line::before {
    content: "";
    height: 3px;
    top: -9px;
    right: 0px;
    transform: scaleX(0.7);
}

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a .pt-toggle-btn-line::after {
    content: "";
    height: 3px;
    top: 8px;
    right: 0;
    transform: scaleX(0.6);
}

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a svg rect {
    transition: var(--transition);
    transition-duration: 0.3s;
}

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a svg rect:nth-child(1) {
    transform: translate(4px, 4px);
}

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a svg rect:nth-child(2) {
    transform: translate(4px, -4px);
}

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a svg rect:nth-child(3) {
    transform: translate(-4px, 4px);
}

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a svg rect:nth-child(4) {
    transform: translate(-4px, -4px);
}

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a:hover svg rect,
header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a:focus svg rect {
    transform: translate(0, 0);
}

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a svg path {
    transform-origin: right;
    stroke-width: 0.8px;
    transition: var(--transition);
    fill: var(--white-color);
    stroke: var(--white-color);
}

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a svg path:nth-child(3) {
    transform: scaleX(0.7);
}

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a:hover svg path:nth-child(1) {
    transform: scaleX(1.5);
}

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a:hover svg path:nth-child(2) {
    transform: scaleX(0.6);
}

header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn a:hover svg path:nth-child(3) {
    transform: scaleX(1);
}

@media(max-width: 1679px) {

    header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-header-contact {
        display: none;
    }
}

@media(max-width:1399px) {

    header .pt-bottom-header {
        padding: 0;
    }
}

@media(max-width: 1279px) {

    header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-btn-container {
        display: none;
    }
}

@media(max-width:1199px) {

    header .pt-bottom-header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
        left: inherit;
        right: 100%;
    }

    header .pt-bottom-header .pt-container-wrapper {
        padding: 15px 0;
        position: relative;
        gap: 30px;
    }

    header .pt-bottom-header .pt-header-right {
        margin-left: auto;
    }

    header .pt-bottom-header .pt-middle-menu {
        order: 99;
    }

    header #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
        padding: 0 15px;
    }

    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item::before,
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item::before {
        display: none;
    }

    header#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
    header#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
    header#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link,
    header#mega-menu-wrap-primary #mega-menu-primary>li.mega-toggle-on>a.mega-menu-link,
    header#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover {
        color: var(--white-color);
    }

    header#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover {
        background-color: var(--primary-color);
    }

    header#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-dropdown>a.mega-menu-link>span.mega-indicator {
        display: inline-block;
    }

    header#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator::after {
        font-weight: 400;
        vertical-align: middle;
    }

    header#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:before {
        display: none;
    }

    header#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item {
        margin-right: 0;
    }

    header#mega-menu-wrap-primary {
        padding: 0px;
    }

    header#mega-menu-wrap-primary::before {
        display: none;
    }

    header .pt-bottom-header .pt-container-wrapper .pt-header-right .pt-toggle-btn {
        display: none;
    }
}

@media(max-width: 767px) {

    header#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner,
    header#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::before,
    header#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::after {
        width: 35px;
        height: 3px;
    }

    header#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-box {
        width: 35px;
    }
}

@media(max-width: 575px) {

    header .pt-bottom-header .pt-container-wrapper {
        gap: 15px;
    }
}

@media(max-width: 479px) {

    .pt-header-right .pt-header-icon .pt-search-button {
        display: none;
    }
}


/*===== Header Style 3 =====*/

header.pt-header-style-3 {
    position: absolute;
}

.admin-bar header.pt-header-style-3 {
    top: 32px;
}

/*++++++++++ Header Bottom Sticky  ++++++++++*/

header.pt-header-style-3 .pt-bottom-header.pt-header-sticky {
    background: var(--dark-color);
}

header.pt-header-style-3 .pt-bottom-header {
    background-color: transparent;
    padding: 0 45px;
}

header.pt-header-style-3 .pt-bottom-header .pt-container-wrapper::before {
    display: none;
}

header.pt-header-style-3 .pt-middle-menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--white-color) 50%, transparent 0) repeat-x;
    background-size: 15px 2.2px;
    background-position: 0 0;
    position: absolute;
    bottom: 15%;
    left: 0;
}

header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link,
header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-toggle-on>a.mega-menu-link,
header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover,
header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:focus,
header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link {
    color: var(--white-color);
}

header.pt-header-style-3 #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item::before {
    border-bottom: 2px solid var(--primary-color);
}

header.pt-header-style-3 .pt-header-right .pt-header-icon .pt-header-contact a span {
    color: var(--white-color);
}

@media (max-width: 1399px) {
    header.pt-header-style-3 .pt-bottom-header {
        padding: 0;
    }
}

@media(max-width: 782px) {
    .admin-bar header.pt-header-style-3 {
        top: 46px;
    }
}

@media(max-width: 600px) {

    .admin-bar header.pt-header-style-3 .admin-bar header .pt-bottom-header.pt-header-sticky {
        top: 0;
    }
}

/*===== Header SideBar =====*/

.pt-background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    z-index: 100;
    opacity: 0.8;
    display: none;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pt-siderbar-open .pt-background-overlay {
    display: block;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pt-siderbar-open .pt-sidebar {
    right: 30px;
    opacity: 1;
}

.pt-sidebar {
    width: 410px;
    background: var(--white-color);
    opacity: 0;
    display: block;
    position: fixed;
    top: 50%;
    right: -100%;
    height: auto;
    z-index: 101;
    transform: translateY(-50%);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pt-sidebar .pt-close-btn .pt-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--dark-color);
    font-size: 20px;
}

.pt-sidebar .pt-close-btn .pt-close:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

.pt-sidebar-block {
    padding: 30px;
    height: 100%;
}

.pt-sidebar-header .pt-sidebar-logo {
    height: 50px;
    width: auto;
    margin-bottom: 30px;
}

.pt-sidebar h4.pt-sidebar-heading {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px;
}

.pt-sidebar h4.pt-sidebar-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
}

.pt-sidebar .pt-sidebar-contact {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.pt-sidebar .pt-sidebar-contact .pt-contact-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
}

.pt-sidebar ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pt-sidebar ul li {
    list-style: none;
    margin: 0;
    display: flex;
    gap: 15px;
    color: var(--dark-color);
}

.pt-sidebar-contact li a {
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.pt-sidebar-contact li i {
    height: 18px;
    line-height: 1;
    display: inline-block;
}

.pt-sidebar-social ul {
    display: inline-block;
    width: 100%;
}

.pt-sidebar-social ul li {
    display: inline-block;
    padding: 0;
    margin: 0;
    margin-right: 5px;
}

.pt-sidebar-social ul li:last-child {
    margin-right: 0;
}

.pt-sidebar-social ul li a {
    background: var(--grey-color);
    color: var(--dark-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    display: inline-block;
    text-align: center;
    position: relative;
}

.pt-sidebar-social ul li a:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.pt-sidebar .widget {
    background: transparent;
    padding: 0;
    border: none;
    margin-bottom: 45px;
}

.pt-sidebar .widget .wp-block-image {
    margin-bottom: 0;
}

.pt-sidebar .widget img {
    margin-bottom: 0 !important;
}

@media(max-width:1023px) {
    .pt-sidebar {
        display: none;
    }
}

/*++++++++++ Header Top ++++++++++*/
.pt-top-header.top-style-1 {
    background: var(--dark-color);
    font-size: 16px;
    font-family: var(--body-fonts);
    padding: 0 45px;
}

.pt-top-header.top-style-1 .top-header-row {
    display: grid;
    align-items: center;
    justify-items: stretch;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 10px 0;
}

.pt-header-social ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.pt-header-social ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pt-header-social ul li a {
    color: var(--white-color);
    transition: var(--transition);
}

.pt-header-social ul li a:hover {
    color: var(--primary-color);
}

.pt-top-header.top-style-1 .pt-topbar-middle {
    display: flex;
    justify-content: center;
}

.pt-topbar-middle .pt-header-contain {
    display: flex;
    align-items: center;
}

.pt-topbar-middle .pt-header-contain .pt-contain-title {
    font-size: 18px;
    line-height: 26px;
    color: var(--white-color);
    text-transform: capitalize;
    font-family: var(--body-fonts);
    overflow: hidden;
    margin-right: 10px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.pt-topbar-middle .pt-header-contain .pt-contain-link a {
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);
}

.pt-top-header.top-style-1 .pt-header-contact {
    display: flex;
    justify-content: flex-end;
}

.pt-header-contact ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.pt-header-contact ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pt-header-contact ul li,
.pt-header-contact ul li a {
    color: var(--white-color);
}

.pt-header-contact ul li a:hover {
    color: var(--primary-color);
}

.pt-header-contact ul li a i,
.pt-header-contact ul li i {
    margin-right: 8px;
}

.pt-header-contact ul li a i::before,
.pt-header-contact ul li i::before {
    vertical-align: middle;
}

@media (max-width:767px) {
    .pt-top-header.top-style-1 {
        display: none;
    }
}

@media (max-width: 1499px) {
    .pt-top-header.top-style-1 .top-header-row {
        display: flex;
        justify-content: space-between;
    }
}

@media (max-width: 1279px) {
    .pt-top-header.top-style-1 .pt-topbar-middle {
        display: none;
    }
}

@media (max-width: 767px) {
    .pt-top-header.top-style-1 {
        display: none;
    }
}


/*================================================
Landing Header
================================================*/

.pt-header-landing .pt-header-icon ul{
    list-style: none;
}

.pt-header-landing  .pt-header-right .pt-btn-container{
    margin-top: 5px;
}


/*++++++++++ Landing Mega-menu ++++++++++*/

#mega-menu-wrap-landing #mega-menu-landing {
    display: flex;
    gap: 30px;
}

#mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item::before,
#mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item::before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--dark-color);
    position: absolute;
    bottom: 15%;
    left: 0;
    transition: var(--transition);
}

#mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item:hover::before,
#mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item.pt-active::before,
#mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item.mega-toggle-on::before {
    width: 100%;
}

#mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item>a.mega-menu-link {
    padding: 0 0 0 20px;
    position: relative;
}

#mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item>a.mega-menu-link::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0);
    left: 0;
    transition: var(--transition);
}

#mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item:hover>a.mega-menu-link::before,
#mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item.pt-active>a.mega-menu-link::before,
#mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item.mega-toggle-on>a.mega-menu-link::before {
    transform: translateY(-50%) scale(1);
}

#mega-menu-wrap-landing #mega-menu-landing > li.mega-menu-item.pt-active > a.mega-menu-link{
    color: var(--primary-color);

}

@media (max-width:1199px) {
    #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item>a.mega-menu-link::before,
    header .pt-bottom-header .pt-container-wrapper::before,
    #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item::before, #mega-menu-wrap-landing #mega-menu-landing>li.mega-menu-item::before{
        content: inherit;
    }  
}

/*++++++++++ Toggle ++++++++++*/

#mega-menu-wrap-landing .mega-menu-toggle{
    border-radius: 0px;
}
#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 {
    width: 60px;
    height: 60px;
    margin: 0 !important;
    justify-content: center;
}

#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
    width: 18px;
    height: 18px;
    transform: none;
    display: inline-block;
    position: relative;
}

#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
    width: 0;
    height: 0;
    position: initial;
}

#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box::after,
#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box::before,
#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner:after,
#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--dark-color);
    border-radius: 0;
    transition: var(--transition);
}

#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box::after {
    left: 0;
    top: 0;
}

#mega-menu-wrap-landing .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-box::after {
    transform: translate(-4px, -4px);
}

#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box::before {
    right: 0;
    top: 0;
}

#mega-menu-wrap-landing .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-box::before {
    transform: translate(4px, -4px);
}

#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner:after {
    left: 0;
    bottom: 0;
    top: initial;
}

#mega-menu-wrap-landing .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
    transform: translate3d(-4px, 4px, 0) rotate(0deg)
}

#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
    right: 0;
    bottom: 0;
    top: initial;
}

#mega-menu-wrap-landing .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
    opacity: 1;
    transform: rotate(0deg) translate3d(4px, 4px, 0);
}

#mega-menu-wrap-landing .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
    width: 0;
    height: 0;
    position: initial;
}

#mega-menu-wrap-landing .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
    transform: none;
}


/*================================================
Dashed border
================================================*/

.pt-bg-primary {
    background-color: var(--primary-color);
}

.pt-border {
    position: relative;
    width: 300px;
    height: 200px;
    background: linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y;
    background-size: 12px 2.2px, 12px 2.2px, 2.2px 12px, 2.2px 12px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    transition: background-position 0.5s linear;
}

.pt-border:hover {
    animation: dash-move 0.5s linear infinite;
}

@keyframes dash-move {
    0% {
      background-position: 0 0, 0 100%, 0 0, 100% 0;
    }
    100% {
      background-position: 15px 0,-15px 100%, 0 -15px, 100% 15px;
    }
  }

/*  +++++ svg border CSS  +++++  */

.pt-before-border {
    position: relative;
}

.pt-before-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y;
    background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
}


/*================================================
Pagination
================================================*/

.pt-pagination {
    margin-top: 45px;
}

.pt-pagination .page-numbers {
    display: flex;
    gap: 5px;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0;
}

.pt-pagination .page-numbers li:first-child .page-numbers {
    margin-left: 0;
}

.pt-pagination .page-numbers li {
    list-style: none;
}

.pt-pagination .page-numbers li .page-numbers {
    position: relative;
    display: block;
    height: 50px;
    width: 50px;
    padding: 0 15px;
    text-align: center;
    line-height: 50px;
    color: var(--white-color);
    background-color: var(--dark-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    text-transform: capitalize;
}

.pt-pagination .page-numbers li .next.page-numbers {
    padding: 0 20px;
}

.pt-pagination .page-numbers li .page-numbers:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    z-index: 2;
}

.pt-pagination .page-numbers li .page-numbers:not(:disabled) {
    cursor: pointer
}

.pt-pagination .page-numbers li .page-numbers.current {
    color: var(--dark-color);
    background: var(--primary-color);
    z-index: 1;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.pt-pagination .page-numbers li .next.page-numbers,
.pt-pagination .page-numbers li .prev.page-numbers {
    width: auto;
}

@media(max-width:767px) {
    .pt-pagination .page-numbers li .next.page-numbers,
    .pt-pagination .page-numbers li .prev.page-numbers {
        width: auto;
        display: none;
    }
}

/*================================================
Custom Class Css
================================================*/

.pt-img-border {
    position: relative;
    z-index: 1;
}

.pt-img-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px dashed var(--dark-color);
    transform: translate(-30px, 35px) rotate(-3deg);
    z-index: -1;
}

@media(max-width:1023px) {
    .pt-img-border::before {
        content: inherit;
    }
}

.pt-mr-45 {
    margin-right: 45px;
}


@media (max-width: 1023px) {
    .pt-mr-45 {
        margin-right: 0;
        margin-bottom: 45px;
    }
}

@media (max-width: 1023px) {
    .pt-mr-45 {
        margin-bottom: 30px;
    }
}


@media (max-width: 1460px) {
    .elementor-element.elementor-top-column>.elementor-widget-wrap.elementor-element-populated {
        margin-left: initial !important;
        margin-right: initial !important;
        border-radius: 0 !important;
    }

    .elementor-element>.elementor-widget-wrap.elementor-element-populated>.elementor-inner-section {
        border-radius: 0 !important;
    }
}

/*================================================
Isotope Portfolio
================================================*/

.pt-grid-item.visible_item,
.pt-masonry-item.visible_item {
    display: none;
}

.pt-filters .pt-filter-button-group ul {
    margin: 0 0 45px;
    padding: 0;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.pt-filters .pt-filter-button-group ul li {
    font-family: var(--title-fonts);
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    list-style: none;
    color: var(--dark-color);
    display: inline-block;
    cursor: pointer;
    padding: 12px 30px;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pt-filters .pt-filter-button-group ul li:last-child {
    margin-right: 0;
}

.pt-filters .pt-filter-button-group ul li.active,
.pt-filters .pt-filter-button-group ul li.active:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-filters .pt-filter-button-group ul li:hover {
    color: var(--dark-color);
}

.pt-grid {
    display: inline-block;
    width: 100%;
    float: left;
}

.pt-grid:after {
    content: '';
    display: block;
    clear: both;
}

.pt-col-3 {
    width: 25%;
    padding: 0 15px 30px;
}

.pt-col-6 {
    width: 50%;
    padding: 0 15px 30px;
}

.pt-col-4 {
    width: 33.33%;
    padding: 0 15px 30px;
}

.pt-grid.no-padding .pt-grid-item,
.pt-masonry.no-padding .pt-masonry-item {
    padding: 0;
}

.pt-btn-load-container {
    margin-top: 30px;
    display: inline-block;
    width: 100%;
}

.pt-btn-load-container a.pt-button {
    cursor: pointer;
}

.pt-grid.style-2 .pt-portfoliobox-1 .pt-portfolio-img {
    overflow: hidden;
}

.pt-grid.style-2 .pt-portfoliobox-1 .pt-portfolio-info {
    position: relative;
    bottom: 0;
    left: 0;
    background: transparent;
    padding-left: 0;
    padding-bottom: 0;
    opacity: 1;
}

.pt-grid.style-2 .pt-portfoliobox-1 a.pt-portfolio-icon-bg {
    display: none;
}

.pt-grid.style-2 .pt-grid-item:nth-child(1) .pt-portfoliobox-1 {
    margin-top: 60px;
}

.pt-grid.style-2 .pt-col-6 {
    padding: 0 30px 45px;
    padding-bottom: 45px;
}

/*===== Portfolio Masonry =====*/

.pt-masonry {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pt-masonry .ipt-lg-6 {
    width: 50%;
    padding: 0 15px 30px;
}

.pt-masonry .ipt-lg-3 {
    width: 25%;
    padding: 0 15px 30px;
}

.pt-masonry .ipt-lg-4 {
    width: 33.333%;
    padding: 0 15px 30px;
}

.pt-masonry.no-padding .ipt-lg-6,
.pt-masonry.no-padding .ipt-lg-3 {
    padding: 0;
}

.pt-masonry.no-padding .pt-portfoliobox-1,
.pt-masonry.no-padding .pt-portfoliobox-1 .pt-portfolio-img img {
    border-radius: 0;
}

/*===== layout 2 =====*/

.pt-masonry .ipt-lg-4 {
    width: 33.333%;
    padding: 0 15px 30px;
}

.pt-masonry .ipt-lg-8 {
    width: 66.666%;
    padding: 0 15px 30px;
}

.pt-masonry .ipt-lg-12 {
    width: 100%;
    padding: 0 15px 30px;
}

@media(max-width:1365px) {
    .pt-col-3 {
        width: 33.33%;
    }

    .pt-masonry .ipt-lg-6 {
        width: 50%;
    }

    .pt-masonry .ipt-lg-3 {
        width: 33.33%;
    }

    .pt-masonry .ipt-lg-4 {
        width: 50%;
    }

    .pt-masonry .ipt-lg-8 {
        width: 50%;
    }

    .pt-filters .pt-filter-button-group ul li {
        margin-right: 10px;
    }

    .pt-col-3,
    .pt-col-4,
    .pt-masonry .ipt-lg-3 {
        width: 50%;
    }
}

@media(max-width:767px) {
    .pt-filters .pt-filter-button-group ul li {
        margin-right: 0;
        font-size: 14px;
        padding: 5px 15px;
    }

    .pt-col-6,
    .pt-col-4,
    .pt-col-3,
    .pt-masonry .ipt-lg-3,
    .pt-masonry .ipt-lg-6 {
        width: 100%;
        padding: 0 0 30px;
    }

    .pt-masonry .ipt-lg-4 {
        width: 100%;
        padding: 0 0 30px;
    }

    .pt-masonry .ipt-lg-8 {
        width: 100%;
    }

    .pt-grid.style-2 .pt-grid-item:nth-child(1) .pt-portfoliobox-1 {
        margin-top: 0;
    }

    .pt-grid.style-2 .pt-col-6 {
        padding: 0 0 30px;
    }
}

@media(max-width:479px) {
    .pt-filters .pt-filter-button-group ul li {
        margin-bottom: 15px;
    }
}

.pt-grid-item {
    float: left;
}

/*================================================
Progress Bar
================================================*/

/*++++++++++ ProgressBar-style-1 ++++++++++*/

.pt-progressbar-style-1 {
    display: inline-block;
    width: 100%;
}

.pt-progressbar-style-1 .pt-progressbar-content {
    margin-bottom: 30px;
    display: inline-block;
    float: left;
    width: 100%;
}

.pt-progressbar-style-1 .pt-progressbar-content .sonny_progressbar {
    margin-bottom: 0;
}

.pt-progressbar-style-1 .pt-progressbar-content .bar-container {
    height: 8px;
}

.pt-progressbar-style-1 .pt-progressbar-content:last-child {
    margin-bottom: 0;
}

.pt-progressbar-style-1 .progress-title {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    font-family: var(--title-fonts);
    color: var(--dark-color);
    text-transform: capitalize;
}

.pt-progressbar-style-1 .progress-value {
    color: var(--primary-color);
    margin: 0;
    float: right;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--title-fonts);
    color: var(--dark-color);
    text-transform: capitalize;
}

.pt-progressbar-style-1 .pt-progress-bar span {
    display: inline-block;
    background: var(--grey-color);
    float: left;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pt-progressbar-style-1 .pt-progress-bar span.bar {
    background: var(--primary-color) !important;
}

/*================================================
Event
================================================*/

.etn-container {
    max-width: 1400px;
}

/*++++++++++ Schedule Tab ++++++++++*/

.schedule-tab-wrapper .etn-nav {
    display: grid;
    grid-template-columns: repeat(3, 240px);
}

.schedule-tab-wrapper .etn-nav li {
    border-top: 1px solid var(--border-light-black);
    border-bottom: 1px solid var(--border-light-black);
    border-right: 1px solid var(--border-light-black);
}

.schedule-tab-wrapper .etn-nav li:first-child {
    border-left: 1px solid var(--border-light-black);
}

.schedule-tab-wrapper .etn-nav li a {
    border-bottom: none;
    padding: 18px 30px;
    width: 100%;
    transition: var(--transition);
}

.schedule-tab-wrapper .etn-nav li a span {
    padding: 0;
}

.schedule-tab-wrapper .etn-nav li a.etn-active {
    background-color: var(--dark-color);
}

.schedule-tab-wrapper .etn-nav li a:after {
    display: none;
}

.schedule-tab-wrapper .etn-nav li a .etn-date {
    font-family: var(--title-fonts);
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
    transition: var(--transition);
}

.schedule-tab-wrapper .etn-nav li a .etn-day {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--body-fonts);
    text-transform: uppercase;
    text-align: left;
    transition: var(--transition);
    margin-top: 5px;
}

.schedule-tab-wrapper .etn-nav li a.etn-active .etn-date,
.schedule-tab-wrapper .etn-nav li a.etn-active .etn-day {
    color: var(--white-color);
}

.schedule-tab-wrapper .etn-tab.tab-active {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item {
    border: 1px solid var(--border-light-black);
    display: grid;
    grid-template-columns: 7fr 4fr 3fr;
    padding: 0;
    align-items: center;
}

.schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item>* {
    max-width: 100%;
    border-right: 1px solid var(--border-light-black);
    padding: 40px 30px;
    height: 100%;
    align-content: center;
}

.schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item>*:last-child {
    border-right: none;
}

.schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
}

.schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info span {
    padding: 40px 30px;
    font-family: var(--body-fonts);
    font-size: 18px;
    line-height: 26px;
    color: var(--secondary-color);
    font-weight: 400;
    align-content: center;
}

.schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info span.etn-schedule-location {
    border-left: 1px solid var(--border-light-black);
}

.schedule-tab-wrapper .etn-schedule-wrap .etn-schedule-info .etn-schedule-location i {
    display: none;
}

.schedule-tab-wrapper .etn-schedule-wrap .etn-schedule-content .etn-title {
    font-family: var(--body-fonts);
    font-size: 18px;
    line-height: 26px;
    color: var(--secondary-color);
    font-weight: 400;
    margin: 0;
    text-transform: capitalize;
}

.schedule-tab-wrapper .etn-schedule-speaker .etn-schedule-single-speaker img {
    display: none;
}

.schedule-tab-wrapper .etn-schedule-speaker .etn-schedule-single-speaker .etn-schedule-speaker-title {
    background: none;
    font-family: var(--body-fonts);
    font-size: 18px;
    line-height: 26px;
    color: var(--secondary-color);
    font-weight: 400;
    left: 0;
    margin: 0;
    opacity: 1;
    padding: 0;
    position: initial;
    top: 0;
    visibility: visible;
}

.schedule-tab-wrapper .etn-schedule-right-content .etn-schedule-speaker {
    margin-top: 0;
}

.schedule-tab-wrapper .etn-schedule-speaker .etn-schedule-single-speaker {
    display: flex;
    margin: 0;
}

.schedule-tab-wrapper .etn-schedule-speaker .etn-schedule-single-speaker .etn-schedule-speaker-title:after {
    display: none;
}

@media (max-width: 1023px) {

    .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item>* {
        padding: 30px;
    }

    .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info span {
        padding: 30px;
    }
}

@media(max-width: 992px) {

    .etn-schedule-wrap .etn-schedule-info .etn-schedule-location {
        margin-bottom: 0;
    }
}

@media(max-width: 767px) {

    .schedule-tab-wrapper .etn-nav {
        grid-template-columns: repeat(3, 180px);
    }

    .schedule-tab-wrapper .etn-nav li a {
        padding: 20px;
    }

    .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item {
        grid-template-columns: 4fr 3fr 2fr;
    }

    .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item>* {
        padding: 30px 20px;
    }

    .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info span {
        padding: 0;
    }

    .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info span.etn-schedule-location {
        border-left: none;
    }
}

@media (max-width: 575px) {

    .schedule-tab-wrapper .etn-nav {
        grid-template-columns: repeat(1, 100%);
    }

    .schedule-tab-wrapper .etn-nav li {
        border-top: 1px solid var(--border-light-black);
        border-right: 1px solid var(--border-light-black);
        border-left: 1px solid var(--border-light-black);
        border-bottom: none;
    }

    .schedule-tab-wrapper .etn-nav li:last-child {
        border-bottom: 1px solid var(--border-light-black);
    }

    .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px;
    }

    .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info,
    .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item>* {
        padding: 0;
        border-right: none;
    }
}

@media (max-width: 479px) {
    .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item {
        padding: 30px 15px;
    }
}

/*++++++++++ Schedule Tab Style - 2 ++++++++++*/

.schedule-tab-pt-style-2 .schedule-tab-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-nav li {
    border: 1px solid var(--border-light-black);
}

.schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-nav li:last-child {
    border-bottom: 1px solid var(--border-light-black);
}

.schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item {
    border: 1px solid var(--border-light-black);
    display: grid;
    grid-template-columns: 7fr 4fr 3fr;
    padding: 0;
    align-items: center;
}

.schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info {
    grid-template-columns: 4fr 3fr;
}


@media(max-width: 1023px) {
    .schedule-tab-pt-style-2 .schedule-tab-wrapper {
        grid-template-columns: 180px 1fr;
    }

    .schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-nav {
        grid-template-columns: repeat(3, 180px);
    }

    .schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-nav li a {
        padding: 20px;
    }

    .schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item {
        grid-template-columns: 4fr 3fr 2fr;
    }

    .schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item>* {
        padding: 30px 20px;
    }

    .schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info span {
        padding: 0;
    }

    .schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info span.etn-schedule-location {
        border-left: none;
    }
}

@media(max-width: 767px) {
    .schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-nav {
        grid-template-columns: repeat(1, 100%);
    }

    .schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-nav li {
        border-top: 1px solid var(--border-light-black);
        border-right: 1px solid var(--border-light-black);
        border-left: 1px solid var(--border-light-black);
    }

    .schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-nav li:last-child {
        border-bottom: 1px solid var(--border-light-black);
    }

    .schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px;
    }

    .schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info,
    .schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item>* {
        padding: 0;
        border-right: none;
    }
}

@media(max-width: 575px) {
    .schedule-tab-pt-style-2 .schedule-tab-wrapper {
        grid-template-columns: 1fr;
    }

    .schedule-tab-pt-style-2 .schedule-tab-wrapper .etn-nav {
        margin: 0;
    }
}

/*--- Schedule Tab - Single Page ------*/

.etn-event-single-content-wrap .etn-event-meta .etn-event-category>span a {
    border: none;
    border-radius: 0;
    padding: 4px 8px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-size: 16px;
    line-height: 24px;
    font-family: var(--body-fonts);
    text-transform: uppercase;
}

.etn-event-single-content-wrap .etn-event-entry-title {
    font-weight: 500;
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.etn-event-single-content-wrap .etn-single-event-media {
    margin-bottom: 30px;
}

.etn-event-single-content-wrap .etn-event-tag-list h4 {
    margin-bottom: 10px;
}

.etn-event-single-content-wrap .etn-event-tag-list a {
    border: none;
    border-radius: 0;
    padding: 4px 8px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-size: 16px;
    line-height: 24px;
    font-family: var(--body-fonts);
    text-transform: uppercase;
    font-weight: 400;
}

.etn-event-single-wrap .etn-event-single-content-wrap,
.etn-event-single-wrap .etn-tag-wrapper,
.etn-event-single-wrap .schedule-tab-wrapper {
    padding: 0;
    box-shadow: none;
    margin-bottom: 30px;
}

.etn-event-single-wrap .schedule-tab-wrapper .etn-nav {
    margin-bottom: 30px;
}

.etn-event-single-wrap .schedule-tab-wrapper .etn-tab.tab-active {
    gap: 20px;
}

.etn-event-single-wrap .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item {
    grid-template-columns: 4fr 3fr;
}

.etn-event-single-wrap .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item>* {
    padding: 30px;
}

.etn-event-single-wrap .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info {
    grid-template-columns: 1fr 180px;
    padding: 0;
}

.etn-event-single-wrap .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info span {
    margin: 0;
    height: 130px;
    background-color: transparent;
    padding: 30px;
}

.etn-event-single-wrap .schedule-tab-wrapper .etn-schedule-speaker {
    margin-top: 15px;
}

.etn-event-single-wrap .etn-event-single-content-wrap {
    margin-bottom: 10px;
}

.etn-event-single-wrap .etn-event-tag-list {
    display: none;
}

@media (max-width: 767px) {
    .etn-event-single-wrap .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 10px;
    }

    .etn-event-single-wrap .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info span {
        height: auto;
        padding: 0 30px;
    }
}

@media (max-width: 575px) {
    .etn-event-single-wrap .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item {
        grid-template-columns: 1fr;
    }

    .etn-event-single-wrap .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item>* {
        padding: 0;
    }

    .etn-event-single-wrap .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item .etn-schedule-info span {
        padding: 0;
    }
}


@media (max-width: 479x) {
    .schedule-tab-wrapper .etn-schedule-wrap .etn-single-schedule-item {
        padding: 30px 15px;
    }
}

/*++++++++++ EventSidebar ++++++++++*/

.etn-sidebar .etn-widget {
    box-shadow: none;
    padding: 30px;
    background-color: var(--grey-color);
}

.etn-sidebar .etn-event-meta-info ul li {
    border-bottom: 1px solid var(--border-light-black);
}

.etn-sidebar .etn-event-meta-info ul li span {
    font-weight: 600;
}

.etn-sidebar .etn-single-event-ticket-wrap .ant-card {
    border-radius: 0px;
    box-shadow: none;
    border: none;
}

.etn-sidebar .etn-single-event-ticket-wrap .ant-card .ant-card-body {
    padding: 30px;
    border-radius: 0px;
    background-color: var(--grey-color);
}

.etn-sidebar .etn-single-event-ticket-wrap .ant-card .ant-card-body .etn-purchase-ticket-title {
    font-size: 24px !important;
    line-height: 32px !important;
    font-weight: 500 !important;
    font-family: var(--title-fonts);
    color: var(--dark-color) !important;
}

.etn-sidebar .etn-single-event-ticket-wrap .ant-card .ant-card-body .etn-ticket-container {
    background-color: var(--white-color);
    padding: 30px 15px;
    border-radius: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.etn-sidebar .etn-single-event-ticket-wrap .ant-card .ant-card-body .etn-ticket-container .etn-ticket-header {
    padding: 0;
    border-bottom: 1px dashed var(--border-light-black);
}

.etn-sidebar .etn-single-event-ticket-wrap .ant-card .ant-card-body .etn-ticket-container .etn-ticket-header .etn-ticket-title {
    color: var(--dark-color) !important;
    font-weight: 500;
    font-family: var(--title-fonts);
    text-transform: uppercase;
}

.etn-sidebar .etn-single-event-ticket-wrap .ant-card .ant-card-body .etn-ticket-container .etn-ticket-header .etn-ticket-title .etn-remaining-seats {
    font-weight: 400;
    font-family: var(--body-fonts);
}

:where(.css-5gkvuh).ant-col {
    font-family: var(--title-fonts);
    font-size: 16px;
    box-sizing: border-box;
}

:where(.css-5gkvuh).ant-col .etn-purchase-ticket-total-amount-text-span{
    color: var(--dark-color) !important;
}

.etn-purchase-ticket-submit-btn.css-ftv64b,
.eventin-card .eventin-submit-button,
.wc-block-components-button {
    position: relative;
    width: auto;
    background-color: var(--primary-color) !important;
    color: var(--dark-color) !important;
    text-transform: uppercase;
    color: var(--dark-color);
    font-family: var(--title-fonts);
    font-size: 18px;
    padding: 12px 45px;
    line-height: 2;
    font-weight: 400;
    vertical-align: middle;
    border: none !important;
    display: inline-block;
    overflow: hidden;
    transition: var(--transition);
    z-index: 9;
    width: 100% !important;
    height: 100% !important;
}
.etn-purchase-ticket-submit-btn,
.eventin-card .eventin-submit-button,
.wc-block-components-button {
    background: linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y !important;
    background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px !important;
    background-position: 0 0, 0 100%, 0 0, 100% 0 !important;
    transition: all 0.5s linear !important;
    background-color: var(--primary-color) !important;
    color: var(--dark-color) !important;

}
.etn-purchase-ticket-submit-btn,
.eventin-card .eventin-submit-button,
.wc-block-components-button{
    transition: var(--transition);
}

.etn-purchase-ticket-submit-btn:hover,
.eventin-card .eventin-submit-button:hover {
        background-color: var(--primary-color);
        animation: dash-move 0.5s linear infinite !important;
        border-radius: 0px;
}

.eventin-card .eventin-submit-button:hover {
    color: var(--white-color) !important;
    background-color: var(--dark-color) !important;
}
.eventin-card .eventin-submit-button:hover,
.wc-block-components-button:hover {
    background: linear-gradient(90deg, var(--white-color) 50%, transparent 0) repeat-x,
    linear-gradient(90deg, var(--white-color) 50%, transparent 0) repeat-x,
    linear-gradient(0deg, var(--white-color) 50%, transparent 0) repeat-y,
    linear-gradient(0deg, var(--white-color) 50%, transparent 0) repeat-y !important;
    background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px !important;
    background-position: 0 0, 0 100%, 0 0, 100% 0 !important;
    transition: all 0.3s linear !important;
    background-color: var(--dark-color) !important;
    animation: dash-move 0.5s linear infinite;
    color: var(--white-color) ip !important;
}

:where(.css-5gkvuh).ant-form-item .ant-form-item-label >label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before{
    content: inherit !important;
}

.wc-block-components-button:hover  .wc-block-components-button__text{
    color: var(--white-color);
}
.eventin-billing-form-container .ant-input-outlined {
    border: none;
    border-radius: 0;
}
.eventin-billing-form-container .ant-col.ant-form-item-control .ant-input-affix-wrapper{
    padding: 0;
}
.eventin-billing-form-container .ant-col.ant-form-item-control .ant-input-affix-wrapper .ant-input{
    background: var(--grey-color);
    font-family: var(--body-fonts);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    font-size: 16px;
    padding: 12px 25px;
    height: 56px;
    line-height: 56px;
    outline: none;
}

.ant-steps.ant-steps-small .ant-steps-item-title,
.eventin-billing-form-container .ant-form-item-required,
.ant-form.ant-form-vertical .eventin-billing-title,
.ant-col.eventin-summary-col .ant-typography.eventin-title,
.ant-col.eventin-summary-col .ant-typography.eventin-date-time,
.ant-col.eventin-summary-col .ant-typography.eventin-booking-summary-title,
.ant-col.eventin-summary-col .eventin-ticket-info,
.eventin-ticket-price,
.wc-block-components-address-address-wrapper .wc-block-components-address-card__address-section{
    color: var(--dark-color) !important;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-item__label{
    font-weight: 500;
    color: var(--dark-color);
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity,
.wc-block-components-order-summary .wc-block-components-order-summary__button-text,
.wc-block-components-formatted-money-amount{
    color: var(--dark-color) !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-item__value{
    color:var(--dark-color);
    font-weight: 500;
}


.ant-typography.eventin-title,
.ant-typography.eventin-event-title,
.ant-typography.eventin-total-label,
.ant-typography.eventin-text{
    color:var(--dark-color) !important;
    font-weight: 500;
}

.eventin-order-table-body span{
    color: var(--secondary-color);
}

.ant-btn-lg.eventin-go-back-btn{
    position: relative;
    width: auto;
    background-color: var(--primary-color) !important;
    text-transform: uppercase;
    color: var(--dark-color) !important;
    font-family: var(--title-fonts);
    font-size: 18px;
    padding: 12px 45px;
    line-height: 2;
    vertical-align: middle;
    border: none;
    display: inline-block;
    overflow: hidden;
    transition: var(--transition);
    z-index: 9;
    height: 100%;
    border: none !important;
    border-radius: 0;

}

.ant-btn-lg.eventin-go-back-btn {
    background: linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y;
    background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    transition: all 0.3s linear;
}

.ant-btn-lg.eventin-go-back-btn:hover {
    background: linear-gradient(90deg, var(--white-color) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--white-color) 50%, transparent 0) repeat-x,
        linear-gradient(0deg, var(--white-color) 50%, transparent 0) repeat-y,
        linear-gradient(0deg, var(--white-color) 50%, transparent 0) repeat-y !important;
        background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px !important;
        background-position: 0 0, 0 100%, 0 0, 100% 0 !important;
        background-color: var(--dark-color) !important;
        color: var(--white-color) !important;
}

.ant-btn-lg.eventin-go-back-btn:hover {
    animation: dash-move 0.5s linear infinite;
}

@keyframes dash-move {
    0% {
        background-position: 0 0, 0 100%, 0 0, 100% 0;
    }

    100% {
        background-position: 15px 0, -15px 100%, 0 -15px, 100% 15px;
    }
}

.ant-btn-lg.eventin-back-button{
    font-size: 18px;
    padding: 10px 30px !important;
    line-height: 2;
    font-weight: 400 !important;
    color: var(--dark-color) !important;
    background-color: var(--primary-color);

    border: none;
    border-radius:0;
    background: linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y !important;
    background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px !important;
    background-position: 0 0, 0 100%, 0 0, 100% 0 !important;
    transition: all 0.3s linear !important;
    background-color: var(--primary-color) !important;
}

.ant-btn-lg.eventin-back-button:hover{
    border: none !important;
    color: var(--white-color) !important;
    background-color: var(--dark-color) !important;
    background: linear-gradient(90deg, var(--white-color) 50%, transparent 0) repeat-x,
    linear-gradient(90deg, var(--white-color) 50%, transparent 0) repeat-x,
    linear-gradient(0deg, var(--white-color) 50%, transparent 0) repeat-y,
    linear-gradient(0deg, var(--white-color) 50%, transparent 0) repeat-y !important;
    background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px !important;
    background-position: 0 0, 0 100%, 0 0, 100% 0   !important;
    transition: background-position 0.3s linear !important;
    background-color: var(--dark-color) !important;
    animation: dash-move 0.5s linear infinite;
}

.ant-steps-item-icon svg path{
    fill: var(--primary-color);
}

.eventin-total span{
    font-weight: 500;
}

.etn-sidebar .etn-single-event-ticket-wrap .ant-card .ant-card-body .etn-ticket-container .etn-ticket-price-col *,
.etn-sidebar .etn-single-event-ticket-wrap .ant-card .ant-card-body .etn-ticket-container .etn-ticket-quantity-col *,
.etn-sidebar .etn-single-event-ticket-wrap .ant-card .ant-card-body .etn-ticket-container .etn-ticket-subtotal-col * {
    font-weight: 600;
    font-family: var(--body-fonts);
    font-size: 14px;
    align-content: center;
}

@media (max-width: 479px) {
    .etn-sidebar .etn-widget {
        padding: 30px 15px;
    }

    .etn-sidebar .etn-single-event-ticket-wrap .ant-card .ant-card-body {
        padding: 30px 15px;
    }
}


/*++++++++++ Event List ++++++++++*/

.event-tab-wrapper .etn-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.event-tab-wrapper .etn-nav li .etn-tab-a {
    border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    color: var(--dark-color);
    display: block;
    margin: 0;
    padding: 10px 45px;
    background-color: var(--white-color);
    font-size: 18px;
    line-height: 2;
    font-family: var(--title-fonts);
    text-transform: uppercase;
    border: none;
}

.event-tab-wrapper .etn-nav li .etn-tab-a {
    background: linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y;
    background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    transition: background-position 0.3s linear;
}

.event-tab-wrapper .etn-nav li .etn-tab-a.etn-active {
        background-color: var(--primary-color);
        color: var(--dark-color);
        animation: dash-move 0.5s linear infinite;
}


.pt-event-bg-grey .event-tab-wrapper .etn-nav li .etn-tab-a {
    background-color: var(--grey-color);
}

.event-tab-wrapper .etn-nav li .etn-tab-a.etn-active {
    background-color: var(--primary-color);
}

.event-tab-wrapper .etn-event-wrapper {
    gap: 30px;
}

.etn-event-wrapper [class*="etn-col-"] {
    background-color: var(--white-color);
}

.pt-event-list .etn-event-wrapper [class*="etn-col-"] {
    flex: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 15px;
}

.pt-event-bg-grey .etn-event-wrapper [class*="etn-col-"] {
    background-color: var(--grey-color);
}

.etn-event-item {
    display: flex;
    gap: 30px;
    flex-direction: column;
    border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    box-shadow: none;
    background:
        linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y;
    background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
}

.pt-event-list .etn-event-item {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    align-items: center;
}

.etn-event-item .etn-event-thumb {
    margin: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
}

.etn-event-item .etn-event-thumb img {
    border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
}

.pt-event-list .etn-event-item .etn-event-thumb img {
    object-fit: cover;
}

.etn-event-item .etn-event-thumb .etn-event-category span {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--body-fonts);
    text-transform: uppercase;
    border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    font-weight: 400;
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.etn-event-item .etn-event-location{
    color: var(--dark-color) !important;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 26px;
}

.etn-event-item .etn-event-content .etn-title a {
    font-size: 32px;
    line-height: 40px;
    color: var(--dark-color);
    font-weight: 500;
}

.etn-event-item:hover .etn-event-content .etn-title a {
    color: var(--primary-color);
}

.etn-event-item .etn-event-content p {
    margin-bottom: 15px;
}

.etn-event-item .etn-event-content .etn-event-footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: var(--dark-color);
    text-transform: uppercase;
}

.etn-event-item .etn-event-content .etn-event-footer .etn-event-date {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--body-fonts);
    font-weight: 400;
}

.etn-event-item .etn-event-content .etn-event-footer .etn-atend-btn {
    background: var(--primary-color);
    width: max-content;
}

.etn-event-item .etn-event-content .etn-event-footer .etn-atend-btn a {
    position: relative;
    width: auto;
    text-transform: uppercase;
    color: var(--dark-color);
    font-family: var(--title-fonts);
    font-size: 18px;
    padding: 12px 45px;
    line-height: 2;
    vertical-align: middle;
    border: none;
    display: inline-block;
    overflow: hidden;
    transition: var(--transition);
    z-index: 9;
    font-weight: 400;
    border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    background:
        linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y;
    background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
}

.etn-event-item:hover .etn-event-content .etn-event-footer .etn-atend-btn a {
    animation: linearGradientMove .5s infinite linear;
}

@keyframes linearGradientMove {
    100% {
        background-position: 15px 0, -15px 100%, 0 -15px, 100% 15px;
    }
}

@media (max-width: 1023px) {
    .etn-event-item .etn-event-content .etn-title a {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width: 767px) {
    .pt-event-list .etn-event-wrapper .etn-event-item {
        grid-template-columns: 1fr;
    }

    .etn-event-item .etn-event-content .etn-title a {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 479px) {
    .etn-event-item {
        padding: 30px 15px;
        gap: 20px;
    }

    .etn-event-item .etn-event-category {
        left: 15px;
        top: 15px;
    }

}

/*++++++++++ Related Events ++++++++++*/

.etn-event-single-wrap .etn-event-related-post .related-post-title {
    margin-bottom: 15px;
}

.etn-event-single-wrap .etn-event-related-post .etn-event-item .etn-event-content .etn-title a {
    font-size: 28px;
    line-height: 36px;
}

@media (max-width: 991px) {
    .etn-event-related-post {
        margin-top: 30px;
    }
}

/*================================================
Breadcrum
================================================*/

.pt-breadcrumb-style-1 {
    padding-top: 75px;
    position: relative;
    text-align: center;
    margin: 0 15px;
}

.pt-breadcrumb-style-1 .pt-breadcrumb-title {
    margin-bottom: 60px;
}

.pt-breadcrumb-style-1 .pt-breadcrumb-title h1 {
    font-size: 56px;
    line-height: 64px;
}

.pt-breadcrumb-style-1 .pt-breadcrumb-container {
    display: none;
}


@media(max-width: 1399px) {
    .pt-breadcrumb-style-1 {
        margin: 0;
    }
}

@media(max-width:1023px) {
    .pt-breadcrumb-style-1 .pt-breadcrumb-title h1 {
        font-size: 42px;
        line-height: 50px;
    }
}

@media(max-width:767px) {

    .pt-breadcrumb-style-1 {
        padding-top: 45px;
    }

    .pt-breadcrumb-style-1 .pt-breadcrumb-title {
        margin-bottom: 30px;
    }

    .pt-breadcrumb-style-1 .pt-breadcrumb-title h1 {
        font-size: 36px;
        line-height: 44px;
    }
    .pt-breadcrumb-style-1 .pt-breadcrumb-media img{
        height: 230px;
        object-fit: cover;
    }
}

@media(max-width:479px) {
    .pt-breadcrumb-style-1 .pt-breadcrumb-title h1 {
        font-size: 32px;
        line-height: 40px;
    }
}


/*================================================
FAQ
================================================*/

/* ++++++++++ Accordion box ++++++++++*/

.pt-accordion-block .pt-accordion-box {
    background: var(--white-color);
    margin-bottom: 30px;
    position: relative;
    padding: 30px;
    border: 1px solid var(--light-black);
}

.pt-accordion-block .pt-accordion-box.pt-active {
    background-color: var(--grey-color);
    border: none;
}

.pt-accordion-block .pt-accordion-box:last-child {
    margin-bottom: 0;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title {
    cursor: pointer;
    width: 85%;
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title {
    margin-bottom: 15px;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title i {
    position: absolute;
    top:26px;
    right: 30px;
    opacity: 1;
    color: var(--dark-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    border: var(--border);
    background: var(--grey-color);
    text-align: center;
    font-size: 18px;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title i.inactive {
    opacity: 0;
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title i {
    opacity: 0;
    color: var(--dark-color);
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title i.inactive {
    opacity: 1;
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title i {
    color: var(--dark-color);
    background: var(--primary-color);
}

.pt-accordion-block .pt-accordion-box .pt-accordion-details {
    width: 85%;
}

.pt-accordion-block .pt-accordion-box .pt-accordion-details p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 28px;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title .ad-title-text {
    font-size: 25px;
    line-height: 33px;
}

.pt-grey-bg .pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title {
    background: var(--dark-color);
    border: 1px solid var(--dark-color);
}

.pt-accordion-box .svg path {
    opacity: 0;
}

.pt-accordion-box:not(.svg-animation) .svg path {
    stroke-dashoffset: 0 !important;
}

.pt-accordion-box.pt-active .svg path {
    opacity: 1;
}

@media(max-width:767px) {
    .pt-accordion-block .pt-accordion-box {
        padding: 30px 15px;
    }

    .pt-accordion-block .pt-accordion-box .pt-ad-title,
    .pt-accordion-block .pt-accordion-box .pt-accordion-details {
        padding: 0px;
    }

    .pt-accordion-block .pt-accordion-box .pt-ad-title i {
        right: 15px;
        width: 43px;
        height: 43px;
        line-height: 43px;
    }
}

@media(max-width:397px) {
    .pt-accordion-block .pt-accordion-box {
        padding: 15px;
    }

    .pt-accordion-block .pt-accordion-box .pt-ad-title .ad-title-text {
        font-size: 20px;
        line-height: 28px;
    }

    .pt-accordion-block .pt-accordion-box .pt-ad-title i {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

/*================================================
Image Box
================================================*/

/* ++++++++++ Image Box Style -1 ++++++++++*/

.pt-imgbox.pt-style-1 .pt-media{
    position: relative;

}
.pt-imgbox.pt-style-1 .pt-img-info .pt-img-title{
    font-size: 32px;
    line-height: 40px;
    margin-top: 20px;   
    text-align: center;
    transition: var(--transition);
}

.pt-imgbox.pt-style-1:hover .pt-img-info .pt-img-title{
    color: var(--primary-color);

}

 .pt-imgbox.pt-style-1 .svg {
    display: none;
}

.pt-imgbox.pt-style-1 .pt-media{
    background: linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y,
        linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y;
    background-size: 15px 2.2px, 15px 2.2px, 2.2px 15px, 2.2px 15px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    transition: background-position 0.3s linear;
    padding: 5px;
} 

 .pt-imgbox.pt-style-1:hover .pt-media{
    animation: dash-move 0.5s linear infinite;
}

@keyframes dash-move {
    0% {
        background-position: 0 0, 0 100%, 0 0, 100% 0;
    }

    100% {
        background-position: 15px 0, -15px 100%, 0 -15px, 100% 15px;
    }
}


@media (max-width:1023px) {
    .pt-imgbox.pt-style-1 .pt-img-info .pt-img-title {
        font-size: 28px;
        line-height: 36px;
    }
}

.pt-imgbox.pt-style-1 .pt-media img{
    width: 100%;
    max-height: 630px;
    object-fit: cover;
}


/* ++++++++++ Image Box Style - 2 ++++++++++*/

.pt-imgbox.pt-style-2{
    text-align: center;
}

.pt-imgbox.pt-style-2 .pt-media{
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}

.pt-imgbox.pt-style-2 .pt-media{
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: var(--grey-color);
}
.pt-imgbox.pt-style-2 .pt-img-info .pt-img-title {
    font-size: 24px;
    line-height: 33px;
}

.pt-imgbox.pt-style-2 .pt-media:not(.svg-animation) .svg path {
    stroke-dashoffset: 0 !important;
}


/*================================================
Image 
================================================*/

.pt-elementor-img .pt-images.pt-style-2{
    padding: 30px;
    max-height: 480px;
    object-fit: cover;
    width: 100%;
}

.pt-elementor-img .pt-images.pt-style-2 img{
    height: 100%;
}

.pt-images.pt-style-2{
    background-color: var(--grey-color);
    padding: 15px;
    position: relative;
    display: inline-block;
    text-align: center;
}

.pt-images.pt-style-2:not(.svg-animation) .svg path {
    stroke-dashoffset: 0 !important;
}

@media (max-width: 767px) {
    .pt-elementor-img .pt-images.pt-style-2{
        padding: 15px;
    }
    
}

/*================================================
Marquee
================================================*/

.pt-updown-marquee.pt-style-2 {
    display: flex;
    gap: 30px;
    width: 100vw;
    flex-direction: column;
}

.pt-updown-marquee.pt-style-2 .pt-marquee {
    display: flex;
    gap: 30px;
}

.pt-updown-marquee.pt-style-2 .pt-marquee img {
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    width: 500px;
}

.pt-updown-marquee.pt-style-2 .pt-marquee.up-marquee {
    animation: slideleft 20s linear infinite;
    transform: translateY(-100%);
    width: calc((1650px / 2) +((100vw - 1650px) / 2) - 45px);
}

.pt-updown-marquee.pt-style-2 .pt-marquee.down-marquee {
    animation: slideright 20s linear infinite;
}

@keyframes slideleft {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0%);
	}
}

@keyframes slideright {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-100%);
	}
}


@media (max-width: 1400px) {
    .pt-updown-marquee.pt-style-2 {
        width: calc((100vw / 2 ) - 30px);
    }
}

@media (max-width: 1023px) {

    .pt-updown-marquee.pt-style-2 .pt-marquee.up-marquee {
        animation: slideleft 15s linear infinite;
    }
    
    .pt-updown-marquee.pt-style-2 .pt-marquee.down-marquee {
        animation: slideright 15s linear infinite;
    }
}

@media (max-width: 767px) {

    .pt-updown-marquee.pt-style-2 .pt-marquee.up-marquee {
        animation: slideleft 10s linear infinite;
    }
    
    .pt-updown-marquee.pt-style-2 .pt-marquee.down-marquee {
        animation: slideright 10s linear infinite;
    }
}
