/*
Template: Melipona - Beekeeping and Honey Shop WordPress Theme
Author: peacefulqode.com
Version: 1.5
Design and Developed by: Peacefulqode

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

*/


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

==> Moz Selection
==> General
==> Loading
==> Back to Top
==> WordPress Core
==> Button Core
==> Banner
==> Blog
==> Blog Single Post
==> Pagination
==> Error
==> Dummy data
==> OWL Carousel
==> Section Title
==> Breadcrump
==> Header
==> Sidebar Menu
==> Footer
==> Service Box
==> Testimonial
==> Counter
==> Process Step
==> Fancy Box
==> Image Box
==> Video Popup
==> Social Sharebox
==> Team
==> Contact Form
==> FAQ
==> Porfolio Box
==> Shop

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


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

:root {
    --primary-color: #FFB606;
    --dark-color: #000000;
    --secondary-color: #6A6A6A;
    --grey-color: #F7F7F7;
    --white-color: #ffffff;
    --subtitle-fonts: 'Rum Raisin', sans-serif;
    --title-fonts: 'Quicksand', sans-serif;
    --body-fonts: 'Quicksand', sans-serif;
}

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

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

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


/*+++++++++++++++++++++++++++++++++++++++++++++++
General
++++++++++++++++++++++++++++++++++++++++++++++++*/

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

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

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

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

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

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

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

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

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


/*++++++++++++++++ HTML Tags +++++++++++*/

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

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

p {
    margin-bottom: 30px;
}

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

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

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

b,
strong {
    font-weight: 700;
}


/*+++++++++++++ Lists (Nested) ++++++++++++++*/

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

ol li {
    list-style: decimal;
}

ol ol {
    padding-left: 25px;
}

ul li {
    list-style: none;
}


/*+++++++++++Definition Lists ++++++++++*/

dl dd {
    margin-bottom: 15px;
}

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


/*+++++++++++++ Table ++++++++++++++*/

table {
    border: 1px solid var(--grey-color);
    width: 100%;
    margin-bottom: 20px;
}

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


/*++++++++++Input Textarea +++++++++++++*/

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

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

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

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


/*+++++++++++++ Select +++++++++++++++*/

select,
select.form-control {
    border: 1px solid var(--grey-color);
    color: var(--secondary-color);
    width: 100%;
    float: none;
    padding: 0 30px 0 15px;
    height: 54px;
    line-height: 54px;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23999999\' height=\'24\' viewBox=\'0 0 24 24\' width=\'24\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M7 10l5 5 5-5z\'/><path d=\'M0 0h24v24H0z\' fill=\'none\'/></svg>');
    background-color: var(--grey-color);
    background-repeat: no-repeat;
    background-position: right 10px bottom 50%;
    background-size: 20px 20px;
    border-radius: 5px;
}

select:focus,
select.form-control:focus {
    background-color: var(--grey-color);
    border-color: var(--primary-color);
}


/*++++++++++++++++ Container +++++++++++*/

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

.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(--white-color);
    background: var(--primary-color);
    z-index: 999;
    font-size: 26px;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    animation: backtotop 2s infinite;
    border-radius: 5px;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

#back-to-top .top:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

#back-to-top.active .top {
    transform: scale(1);
}

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


/*+++++++++++++++++++++++++++++++++++++++++++++++
WordPress Core
++++++++++++++++++++++++++++++++++++++++++++++++*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bypostauthor {
    display: block;
}

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


/*++++++++++++++++ Text meant only for screen readers +++++++++++*/

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    white-space: nowrap;
    height: 0px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: var(--grey-color);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}


/*+++++++++++++++++++++++++++++++++++++
Button Core
++++++++++++++++++++++++++++++++++++++++*/

[type="button"],
[type="reset"],
[type="submit"] {
    font-family: var(--title-fonts);
    overflow: inherit;
    position: relative;
    width: auto;
    background: var(--primary-color);
    color: var(--white-color);
    text-transform: capitalize;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    font-weight: 600;
    line-height: 2;
    vertical-align: middle;
    border: none;
    display: inline-block;
    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;
    height: auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

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

.pt-button {
    font-family: var(--title-fonts);
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    line-height: 2;
    font-size: 16px;
    padding: 12px 24px;
    position: relative;
    width: auto;
    background: var(--primary-color);
    color: var(--white-color);
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none;
    fill: var(--white-color);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

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

.pt-button .pt-button-block .icon {
    margin-left: 10px;
    display: inline-block;
    margin-top: -10px;
    width: 26px;
    height: 30px;
    overflow: hidden;
}

.pt-button .pt-button-block .icon .pt-normal,
.pt-button .pt-button-block .icon .pt-hover {
    transition: all 0.5s ease;
    display: block;
}

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

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

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


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

.pt-button.pt-button-link {
    padding: 0;
    background: transparent;
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.pt-button.pt-button-link .pt-button-block .icon svg path {
    fill: currentColor;
}


/*===== Button icon =====*/

.pt-button.pt-button-icon {
    padding: 0;
    background: transparent;
    color: var(--dark-color);
    transition: all 0.5s ease;
}

.pt-button.pt-button-icon span {
    margin-right: 0px;
    text-indent: -130px;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.5s ease, margin-right 0.5s ease-out, text-indent 0.5s ease-out, opacity 0.5s ease;
}

.pt-button.pt-button-icon:hover span {
    text-indent: 0;
    opacity: 1;
    margin-right: 5px;
    visibility: visible;
    transition: visibility 0.5s ease, margin-right 0.5s ease-out, text-indent 0.5s ease-out, opacity 0.5s ease;
}

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

.pt-button.pt-button-icon i {
    color: var(--dark-color);
    margin-top: 5px;
}

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


/*===== 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 {
    background: transparent;
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
}

.pt-button.pt-btn-outline i {
    fill: var(--primary-color);
}

.pt-button.pt-btn-outline:hover i {
    fill: var(--dark-color);
}


/*+++++++++++++++++++++++++++++++++++++++++++++++
Banner
++++++++++++++++++++++++++++++++++++++++++++++++*/

.rs-module-wrap {
    left: 0 !important;
}

.sr7-mask {
    left: 0 !important;
}

.pt-button.pt-button-flat.rev-btn .pt-button-block .icon {
    margin-top: 0;
    height: 25px;
}

.pt-white-bt.pt-button.pt-button-flat.rev-btn .pt-button-block .icon svg path {
    fill: var(--primary-color);
}

@media(max-width:777px) {
    .pt-button.pt-button-flat.rev-btn .pt-button-block .icon {
        height: 27px;
    }
}

@media(max-width:479px) {
    .pt-button.pt-button-flat.rev-btn .pt-button-block .icon {
        height: 22px;
        margin-left: 5px;
    }
    .pt-button.pt-button-flat.rev-btn .pt-button-block .icon svg {
        height: 20px;
    }
}

@media(max-width:320px) {
    .pt-button.pt-button-flat.rev-btn .pt-button-block .icon svg {
        width: 16px;
    }
}


/*++++++++++++++++++++++++++++++++++++++++++++++
Blog
++++++++++++++++++++++++++++++++++++++++++++++++++*/

.owl-carousel .pt-blog-post .pt-blog-contain .pt-blog-title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 10px;
}

.owl-carousel .pt-blog-post .pt-blog-contain {
    padding: 20px 20px 0 0;
}

.owl-carousel .pt-blog-post .pt-blog-contain p {
    margin-bottom: 15px;
}

.owl-carousel .pt-blog-post .pt-blog-contain .pt-post-category {
    margin-top: 0;
    margin-bottom: 10px
}

.owl-carousel .pt-blog-post .pt-blog-contain .pt-post-category a {
    background: transparent;
    padding: 0;
    color: var(--primary-color);
}

.owl-carousel .pt-blog-post .pt-post-meta ul {
    margin-left: 2px;
}

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

.pt-blog-post {
    margin-bottom: 45px;
    background: var(--grey-color);
    display: inline-block;
    width: 100%;
    border-radius: 5px;
}

.pt-blog-post .pt-post-media {
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

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

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

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

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

.pt-blog-post .pt-blog-contain .pt-post-meta+p a,
.pt-blog-post .pt-blog-contain ul li a,
.pt-blog-post .pt-blog-contain ol li a {
    color: var(--secondary-color);
}

.pt-blog-post .pt-blog-contain .pt-post-meta+p a:hover,
.pt-blog-post .pt-blog-contain ul li a:hover,
.pt-blog-post .pt-blog-contain ol li a:hover {
    color: var(--primary-color);
}

.pt-blog-post .pt-blog-contain .wp-block-archives-list li a {
    color: var(--secondary-color);
    padding-left: 15px;
    position: relative;
}

.pt-blog-post .pt-blog-contain .wp-block-categories-list.wp-block-categories li a {
    padding-left: 15px;
    position: relative;
}

.pt-blog-post .pt-blog-contain .wp-block-latest-posts__list.wp-block-latest-posts li a {
    padding-left: 15px;
    position: relative;
}

.pt-blog-post .pt-blog-contain .wp-block-page-list li.wp-block-pages-list__item a {
    padding-left: 15px;
    position: relative;
}

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

.pt-blog-post .pt-blog-contain .pt-post-category {
    margin-bottom: 30px;
    margin-top: -45px;
}

.pt-blog-post .pt-blog-contain .pt-post-category a {
    display: inline-block;
    background: var(--dark-color);
    color: var(--white-color);
    padding: 2px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: var(--title-fonts);
}

.pt-blog-post .pt-blog-contain .pt-post-category a+a {
    margin-bottom: 5px;
}

.pt-blog-post .pt-blog-contain .pt-blog-title {
    font-size: 28px;
    line-height: 36px;
    margin-top: 0;
}

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

.pt-blog-post .pt-blog-contain a.pt-button.pt-button-link .pt-button-text {
    transition: all 0.5s ease;
}

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

.pt-blog-post .pt-post-meta ul li {
    list-style: none;
    float: left;
    display: inline-block;
    margin-right: 15px;
    align-self: center !important;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.pt-blog-post .pt-post-meta ul li {
    position: relative;
}

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

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

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

.pt-blog-post .pt-post-meta ul li i {
    margin-right: 8px;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-color);
}

.pt-blog-post .pt-post-media .pt-post-date {
    background: var(--primary-color);
    padding: 15px;
    text-transform: capitalize;
    color: var(--white-color);
    width: 75px;
    text-align: center;
    line-height: 1.3;
    position: absolute;
    right: 15px;
    bottom: 15px;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-blog-post .pt-post-media .pt-post-date a {
    color: var(--white-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.pt-blog-post .pt-post-media .pt-post-date span {
    display: inline-block;
    width: 100%;
}

@media(max-width:1365px) {
    .comment-respond .comment-form-author,
    .comment-respond .comment-form-email,
    .comment-respond .comment-form-url {
        float: left;
        width: 31.66%;
    }
}

@media(max-width:767px) {
    .commentlist ol.children {
        padding-left: 30px;
    }
    .commentlist .pt-comment-info {
        padding: 15px;
    }
    .commentlist .pt-comment-info .reply a {
        right: 15px;
        top: 15px;
    }
    .comment-respond .comment-form-author,
    .comment-respond .comment-form-email,
    .comment-respond .comment-form-url {
        width: 100%;
        margin-right: 0;
    }
    .commentlist .pt-comment-avatar {
        width: 90px;
    }
}

@media(max-width:479px) {
    .commentlist .pt-comment-wrap {
        display: -ms-flexbox;
        display: inline-block;
        -ms-flex-align: start;
        align-items: inherit;
        width: 100%;
    }
    .commentlist .pt-comment-avatar {
        margin: 0 0 15px 0;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++
Blog Single Post
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.pt-single-post-bottom-holder {
    margin: 0;
    padding: 45px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    border-bottom: 1px solid var(--grey-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-size: 18px;
    line-height: 26px;
    font-family: var(--title-fonts);
    color: var(--dark-color);
    text-transform: capitalize;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 1px;
}

.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(--white-color);
    margin: 0;
    display: inline-block;
    float: left;
    color: var(--dark-color);
    padding: 4px 16px;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    border-radius: 5px;
}

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


/*++++++++++*/

.pt-single-post-bottom-holder .pt-single-post-social-title {
    font-size: 18px;
    line-height: 26px;
    font-family: var(--title-fonts);
    color: var(--dark-color);
    text-transform: capitalize;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 1px;
}

.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(--white-color);
    color: var(--dark-color);
    display: inline-block;
    text-align: center;
    line-height: 50px;
    border-radius: 5px;
}

.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 {
    padding: 0 30px 30px;
}

.pt-single-post-usernav .pt-user {
    background: var(--white-color);
    padding: 30px;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

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

.pt-single-post-usernav .pt-user .pt-user-media img {
    width: 250px;
    border-radius: 5px;
}

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

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

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

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

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

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

@media(max-width:767px) {
    .pt-single-post-bottom-holder {
        display: block;
    }
    .pt-single-post-social-share {
        margin-bottom: 30px;
    }
    .pt-single-post-usernav .pt-user {
        align-items: flex-start;
        padding: 15px;
    }
}

@media(max-width:479px) {
    .pt-single-post-bottom-holder {
        padding-top: 0px;
        padding-bottom: 20px;
    }
    .pt-single-post-usernav .pt-user {
        display: block;
    }
    .pt-single-post-usernav .pt-user .pt-user-media img {
        width: 80px;
    }
    .pt-single-post-usernav .pt-user .pt-user-media {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .pt-single-post-bottom-holder ul.pt-single-post-tags-list li {
        margin-bottom: 5px;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++
Pagination
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pt-pagination {
    margin-top: 15px;
}

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

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

.pt-pagination .page-numbers li .page-numbers {
    position: relative;
    display: block;
    padding: 0px 15px;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    margin: 0 5px;
    color: var(--dark-color);
    background-color: var(--grey-color);
    border-radius: 5px;
}

.pt-pagination .page-numbers li .page-numbers:hover {
    color: var(--white-color);
    text-decoration: none;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 2;
}

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

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

.pt-pagination .page-numbers li .page-numbers.current {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 1;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

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

@media(max-width:767px) {
    .pt-pagination .page-numbers li .next.page-numbers,
    .pt-pagination .page-numbers li .prev.page-numbers {
        width: auto;
        display: none;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++
Error
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pt-error-block {
    text-align: center;
}

.pt-error-block .pt-errot-text {
    font-size: 420px;
    font-family: var(--title-fonts);
    color: var(--primary-color);
    line-height: 0.8;
    margin-bottom: 30px;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 700;
}

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

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

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


/*+++++++++++++++++++++++++++++++++++++++++++++++
Dummy Data
++++++++++++++++++++++++++++++++++++++++++++++++*/

.widget {
    margin-bottom: 30px;
    position: relative;
    padding: 30px;
    background: var(--grey-color);
    border-radius: 5px;
}

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


/*===== Widget Title =====*/

.widget .widget-title,
.widget .widget-title,
.widget.widget_block h2 {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 32px;
}


/*===== Widget List =====*/

.widget ul {
    padding: 0;
    margin: 0;
}

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

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

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

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

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


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

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

.search-form {
    position: relative;
}

.search-form label {
    display: block;
}

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

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

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

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

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

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


/*===== SideBar - Recent Comments =====*/

.widget.widget_recent_comments #recentcomments li.recentcomments span a,
.widget.widget_recent_comments #recentcomments--1 li.recentcomments span a {
    color: var(--secondary-color);
}

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

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

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


/*===== SideBar - Archives dropdown =====*/

.widget_archive select,
.widget_categories select,
.widget select {
    background-color: var(--white-color);
}

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


/*=====  SideBar Calendar  =====*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*=====  Latest Comments  =====*/

.wp-block-latest-comments {
    padding: 0;
    margin: 0;
}

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

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


/*===== Login Form =====*/

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

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

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

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


/*===== social links =====*/

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

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


/*===== Search common =====*/

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

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

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

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

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

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

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
    border: 1px solid transparent;
    padding: 0 15px;
    border-radius: 5px;
}

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

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

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


/*=====  Tags =====*/

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

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

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


/*===== widget Nav Menu =====*/

.widget.widget_nav_menu ul li,
.widget ul.menu li {
    margin-bottom: 0;
}

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

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


/*=====  SideBar Categories List  =====*/

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

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


/*=====  Meta - widget RSS =====*/

.widget.widget_rss ul li {
    margin-bottom: 30px;
}

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

.widget.widget_rss ul li a {
    padding-left: 0;
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 700;
    font-family: var(--title-fonts);
    line-height: 24px;
    letter-spacing: 1px;
}

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

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

.widget.widget_rss ul li cite {
    font-weight: 700;
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}

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


/*=====  SideBar - widget Recent Entries =====*/

.widget_recent_entries ul li .post-date {
    font-weight: 700;
    color: var(--dark-color);
}


/*=====  woocommerce =====*/

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

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

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

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

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

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

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

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


/*++++++++++++++++ Dummy data backend page +++++++++++*/

.pt-sticky-post-label {
    padding: 5px 15px;
    font-size: 14px;
    line-height: 22px;
    background: var(--primary-color);
    color: var(--white-color);
    margin-bottom: 15px;
    display: inline-block;
    border-radius: 5px;
}

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

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

.wp-block-button__link:hover,
.wp-block-file a.wp-block-file__button:hover,
.wp-block-file a:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

.is-style-outline .wp-block-button__link,
.wp-block-button__link.is-style-outline {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

.is-style-outline .wp-block-button__link:hover,
.wp-block-button__link.is-style-outline:hover {
    background: transparent;
    border-color: var(--dark-color);
    color: var(--dark-color) !important;
}

.is-style-squared .wp-block-button__link {
    border-radius: 0;
}

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

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

blockquote {
    background: var(--white-color);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

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

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

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

.wp-block-avatar img,
.wp-block-post-author__avatar img {
    border-radius: 5px;
}

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

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

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

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

.pt-blog-contain .wp-block-archives-dropdown select {
    background-color: var(--white-color);
}

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

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

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


/*===== Gallery =====*/

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

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

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

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

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

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

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

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

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

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

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

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

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


/*=====  Blog Page Link =====*/

.page-links {
    margin: 15px 0 10px;
    clear: both;
}

.pt-blog-contain .page-links a,
.page-links>span.page-number,
.page-links a,
.page-links .post-page-numbers {
    border: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--white-color);
    margin-left: 5px;
    padding: 0px;
    display: inline-block;
    color: var(--dark-color);
    border-radius: 5px;
}

.pt-blog-contain .page-links a:hover,
.page-links .post-page-numbers.current {
    text-decoration: none;
    border-color: transparent;
    background: var(--primary-color);
    color: var(--white-color);
}

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

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

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

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

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

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

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

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

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

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

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

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


/*===== Comments Box =====*/

.comment-respond {
    margin-top: 0;
    display: inline-block;
    width: 100%;
}

.woocommerce #review_form #respond.comment-respond {
    display: block;
}

.pt-comment-area .comments-title,
.comment-respond .comment-reply-title {
    position: relative;
    margin: 0;
    padding-bottom: 0;
    font-size: 24px;
    line-height: 32px;
}

.comment-respond .comment-reply-title {
    padding-top: 40px;
}

.comment-respond .comment-reply-title a {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    margin-left: 30px;
    text-transform: capitalize;
    font-family: var(--title-fonts);
}

.comment-respond .comment-reply-title a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.commentlist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.commentlist .comment {
    margin-top: 15px;
    margin-bottom: 0;
    vertical-align: top;
    padding: 0;
    list-style: none;
}

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

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

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

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

.commentlist .pt-comment-avatar img {
    width: 70px;
    border-radius: 5px;
}

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

.commentlist .pt-comment-box .title {
    font-size: 20px;
    line-height: 28px;
}

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

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

.commentlist .pt-comment-info .reply a {
    position: absolute;
    right: 30px;
    top: 30px;
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--title-fonts);
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
}

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

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

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    border-color: var(--grey-color);
    border-radius: 0;
}


/*===== Comments Form =====*/

.comment-respond .comment-notes,
.comment-respond .logged-in-as {
    padding: 0;
    margin: 0 0 30px;
}

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

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

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

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

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

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

.pt-blog-post .post-password-form input[type="password"] {
    background: var(--white-color);
}

.pt-blog-post .post-password-form input[type="submit"] {
    vertical-align: bottom;
}

.pt-blog-post .pt-blog-contain p iframe {
    width: 100%;
}

.pt-blog-post .pt-blog-contain .pt-post-meta+.wp-caption {
    margin-top: 30px;
}

@media(max-width:1199px) {
    .comment-respond .comment-form-author,
    .comment-respond .comment-form-email,
    .comment-respond .comment-form-url {
        width: 31.6%;
    }
}

@media(max-width:767px) {
    .comment-respond .comment-form-author,
    .comment-respond .comment-form-email,
    .comment-respond .comment-form-url {
        width: 100%;
        margin-right: 0;
    }
}

@media(max-width:576px) {
    .pt-blog-post .post-password-form label {
        display: block;
        margin-bottom: 15px;
    }
}

@media(max-width:479px) {
    .commentlist .pt-comment-info {
        padding: 15px;
    }
    .commentlist .pt-comment-info .reply a {
        right: 15px;
        top: 15px;
    }
    .pt-comment-area .comments-title,
    .comment-respond .comment-reply-title {
        font-size: 24px;
        line-height: 32px;
    }
}


/*===== Comments Form =====*/

ol.commentlist .pingback,
ol.commentlist .trackback {
    margin-left: 25px;
}

#comments ol.commentlist .depth-1 p a {
    color: var(--secondary-color);
}

#comments ol.commentlist .depth-1 p a:hover {
    color: var(--primary-color);
}


/*===== foter dummy  =====*/

footer#pt-footer .widget .footer-title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
}

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

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

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

footer#pt-footer .widget ul li .comment-author-link a {
    padding: 0;
}

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

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

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

footer#pt-footer label input#rememberme {
    vertical-align: middle;
}

footer#pt-footer .login-submit .button {
    background: var(--primary-color);
}

footer#pt-footer ul.wp-block-social-links li.wp-social-link {
    margin-bottom: 0;
}

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

footer#pt-footer .wc-block-grid__product .wc-block-grid__product-add-to-cart a.wp-block-button__link {
    background: var(--primary-color);
}

footer#pt-footer .wc-block-product-search .wc-block-product-search__button {
    background: var(--primary-color);
}

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

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

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

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

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

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

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

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

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

footer#pt-footer .search-form .search-submit {
    background: var(--primary-color);
    border: none;
    position: absolute;
    text-align: center;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

footer#pt-footer .search-form .search-submit:before {
    content: "\e610";
    font-family: 'themify';
    font-weight: 400;
}

footer#pt-footer .search-form .search-submit:hover {
    outline: none;
}

footer#pt-footer .search-form input {
    background: var(--white-color);
    border-color: var(--white-color);
    padding: 8px;
}

footer#pt-footer .tagcloud .tag-cloud-link {
    font-size: 14px !important;
    color: var(--dark-color);
    background: var(--white-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    float: left;
    padding: 4px 16px;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    line-height: 22px;
}

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

footer#pt-footer .woocommerce-product-search button {
    background: var(--primary-color);
}

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

footer#pt-footer .widget ul.menu li a,
footer#pt-footer .pt-widget-menu .pt-service li a {
    position: relative;
    border: none;
    width: 100%;
    text-transform: capitalize;
}

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

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

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

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

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

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


/*=========*/

footer#pt-footer .pt-footer-style-1 .pt-footer-social {
    margin: 0;
    padding: 0;
    margin-top: 24px;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social li {
    list-style: none;
    float: left;
    margin-bottom: 0;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social li+li {
    margin-left: 10px;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social li a {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    padding: 0;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

footer#pt-footer .pt-footer-style-1 .pt-foote-recent-post .pt-foote-recent-post-info h6 {
    color: var(--white-color);
}


/*=========*/

footer#pt-footer .widget:first-child {
    margin-bottom: 45px;
}

footer#pt-footer .pt-footer-logo~p {
    margin-bottom: 0;
}

footer#pt-footer .widget .footer-title {
    color: var(--white-color);
}

footer#pt-footer .widget .wp-block-heading {
    color: var(--white-color);
    margin-bottom: 30px;
    padding: 0;
    font-size: 26px;
    position: relative;
    line-height: 34px;
}

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

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


/*++++++++++++++++ Updated Dummy data backend page +++++++++++*/

.wp-block-file {
    margin-top: 20px;
}

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

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

.pt-blog-post .pt-blog-contain .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
    color: var(--dark-color);
    font-weight: 500;
}

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

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

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

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

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

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

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

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

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

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

.pt-blog-post .pt-blog-contain .wp-block-query-pagination .page-numbers.current,
.pt-blog-post .pt-blog-contain .wp-block-query-pagination .wp-block-query-pagination-next.current {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 1;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

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

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

.wp-block-post-navigation-link>a {
    display: inline-block;
    font-family: var(--title-fonts);
    font-weight: 600;
    text-transform: capitalize;
    line-height: 2;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 5px;
    position: relative;
    width: auto;
    background: var(--primary-color);
    color: var(--white-color);
    letter-spacing: 1px;
}

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

.wp-block-read-more {
    position: relative;
    margin-bottom: 20px;
    font-family: var(--title-fonts);
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*+++++++++++++++++++++++++++++++++++++++++++++++
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 {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    position: relative;
    font-size: 24px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--primary-color);
    padding: 0 !important;
    margin: 0 5px;
    border: none;
    color: var(--white-color);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.owl-carousel .owl-nav button.owl-next {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    position: relative;
    font-size: 24px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--primary-color);
    padding: 0 !important;
    margin: 0 5px;
    border: none;
    color: var(--white-color);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.owl-carousel .owl-nav button:hover {
    color: var(--white-color);
    background: var(--dark-color);
}

.owl-carousel .owl-nav button.owl-prev {
    margin-left: -130px;
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: -130px;
}


/*++++++++++++++++ Dots +++++++++++*/

.owl-carousel .owl-dots.disabled {
    display: none;
}

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

.owl-carousel .owl-dots .owl-dot {
    box-shadow: none;
    outline: none;
    background: var(--grey-color);
    border: 1px solid var(--grey-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%;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

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


/*+++++++++++++++++++++++++++++++++++
Section Title
+++++++++++++++++++++++++++++++++++++++*/

.pt-section-title.pt-style-1.text-center {
    padding: 0 15em;
    margin-bottom: 60px;
}

.pt-section-title.pt-style-1.text-center .pt-section-sub-title {
    padding: 0 30px;
}

.pt-section-title.pt-style-1 .pt-section-sub-title {
    font-family: var(--subtitle-fonts);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    position: relative;
    text-transform: capitalize;
    color: var(--primary-color);
    margin: 0 0 10px;
    display: inline-block;
    letter-spacing: 1px;
}

.pt-section-title.pt-style-1 .pt-section-sub-title span.pt-left {
    padding-right: 10px;
    display: inline-block;
}

.pt-section-title.pt-style-1 .pt-section-sub-title span.pt-right {
    padding-right: 10px;
    display: none;
    transform: rotateY(160deg);
}

.pt-section-title.pt-style-1.text-center .pt-section-sub-title span.pt-right {
    display: inline-block;
}

.pt-section-title.pt-style-1 .pt-section-main-title {
    font-weight: 700;
    font-size: 52px;
    line-height: 60px;
    z-index: 9;
    color: var(--dark-color);
    padding: 0;
    margin: 0 0;
    position: relative;
    display: block;
}

.pt-section-title.pt-style-1 .pt-section-description {
    font-family: var(--body-fonts);
    font-size: 16px;
    font-weight: 400;
    z-index: 9;
    position: relative;
    margin: 10px 0 0 0;
}

@media(max-width:1199px) {
    .pt-section-title.pt-style-1.text-center {
        padding: 0;
    }
}

@media(max-width:1023px) {
    .pt-section-title.pt-style-1 .pt-section-main-title {
        font-size: 44px;
        line-height: 52px;
    }
}

@media(max-width:767px) {
    .pt-section-title.pt-style-1 .pt-section-main-title {
        font-size: 36px;
        line-height: 44px;
    }
    .pt-section-title.pt-style-1.text-center {
        margin-bottom: 30px;
    }
}

@media(max-width:479px) {
    .pt-section-title.pt-style-1 .pt-section-main-title {
        font-size: 28px;
        line-height: 36px;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++
Breadcrump
++++++++++++++++++++++++++++++++++++++++++++++++*/

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

.pt-breadcrumb:before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: linear-gradient(60deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, 0) 65%);
    left: 0;
    top: 0;
    z-index: 1;
    position: absolute;
    opacity: 1;
}

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

.pt-breadcrumb nav {
    position: relative;
    z-index: 9;
}

.pt-breadcrumb .pt-breadcrumb-title h1 {
    font-size: 56px;
    line-height: 64px;
    margin-bottom: 15px;
    text-align: left;
    color: var(--white-color);
}

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

.pt-breadcrumb-container .breadcrumb li {
    list-style-type: none;
    padding: 0px 8px;
    text-transform: capitalize;
}

.pt-breadcrumb-container .breadcrumb li:first-child {
    padding-left: 0;
}

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

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

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

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

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

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

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

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

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

@media(max-width:1023px) {
    .pt-breadcrumb {
        text-align: center;
        padding: 90px 0;
        padding-top: 180px;
    }
    .pt-breadcrumb .pt-breadcrumb-title h1 {
        font-size: 42px;
        line-height: 50px;
    }
    .pt-breadcrumb-img.text-right {
        text-align: center !important;
    }
}

@media(max-width:767px) {
    .pt-breadcrumb .pt-breadcrumb-title h1 {
        font-size: 34px;
        line-height: 42px;
    }
    .pt-breadcrumb-container .breadcrumb li,
    .pt-breadcrumb-container .breadcrumb li i {
        font-size: 14px;
    }
    .pt-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
        font-size: 12px;
    }
}

@media(max-width:479px) {
    .pt-breadcrumb {
        padding-top: 140px;
    }
    .pt-breadcrumb:before {
        background-image: linear-gradient(60deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, 0) 85%);
    }
    .pt-breadcrumb .pt-breadcrumb-title h1 {
        font-size: 30px;
        line-height: 38px;
    }
    .pt-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
        padding-right: 8px;
    }
}


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

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

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

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

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

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

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

header#pt-header.pt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}


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

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

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

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

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

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

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

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

header#pt-header .pt-top-header .pt-header-contact ul li {
    list-style: none;
    display: inline-block;
    color: var(--white-color);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 30px;
    float: left;
}

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

header#pt-header .pt-top-header .pt-header-contact ul li i {
    margin-right: 8px;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-color);
}

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

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

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

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

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

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

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

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


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

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

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


/*++++++ Header Navbar Bar +++++*/

header#pt-header .pt-bottom-header {
    min-height: 90px;
    transition: all 0.8s ease;
}

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

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

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

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

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

header#pt-header .pt-bottom-header .navbar .navbar-nav li a {
    color: var(--dark-color);
    font-size: 16px;
    text-transform: capitalize;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

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

header#pt-header .pt-bottom-header .navbar .navbar-nav>li>a {
    position: relative;
    padding-bottom: 5px;
}

header#pt-header .pt-bottom-header .navbar .navbar-nav>li>a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.5s ease;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    opacity: 0;
}

header#pt-header .pt-bottom-header .navbar .navbar-nav>li>a:hover:before,
header#pt-header .pt-bottom-header .navbar .navbar-nav>li.current-menu-ancestor>a:before,
header#pt-header .pt-bottom-header .navbar .navbar-nav>li.current-menu-item>a:before {
    width: 100%;
    opacity: 1;
}


/*++++++++ Sub Menu Bar ++++++++*/

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

header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
    display: block;
    background: var(--white-color);
    position: absolute;
    top: 100%;
    left: 0;
    padding-left: 0;
    display: inline-block;
    width: 220px;
    z-index: 999;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

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

header#pt-header .pt-bottom-header .navbar .navbar-nav li i {
    margin-left: 10px;
    font-size: 12px;
    transition: all 0.5s ease;
    color: var(--dark-color);
    display: none;
}

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

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

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

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


/*+++++++ Navigation Sub Menu +++++++++++++*/

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li>.sub-menu {
    display: none;
}

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

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

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

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

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu>li.current-menu-ancestor>a,
header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu>li.current-menu-ancestor.menu-item-has-children .pt-submenu-icon {
    color: var(--white-color);
    background: var(--primary-color);
}


/*+++++++++++++ Navigation search ++++++++++++++++*/

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

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

header#pt-header .pt-menu-search-block a:hover {
    color: var(--primary-color);
}

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

header#pt-header .pt-button:hover .pt-button-line-left {
    width: calc(15px - 1px);
}


/*+++++++++++++ Header Default +++++++++++++++++*/

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

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

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

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

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

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

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

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

header#pt-header .pt-bottom-header .navbar .navbar-nav li a:focus {
    color: var(--primary-color);
}

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


/*+++++ Header cart Sidebar +++++*/

.pt-cart-button .offcanvas {
    padding: 0px 30px;
    border: 0;
    display: block;
}

.admin-bar .pt-cart-button .offcanvas {
    padding: 32px 30px;
}

.pt-cart-button .offcanvas .pt-cart-header {
    margin-left: -30px;
    margin-right: -30px;
}

.pt-cart-button .offcanvas .pt-cart-header h3.modal-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    padding: 15px 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.pt-cart-button .widget_shopping_cart_content {
    height: calc(100vh - 275px);
}

.admin-bar .pt-cart-button .widget_shopping_cart_content {
    height: calc(100vh - 320px);
}

.pt-cart-button .widget_shopping_cart_content .product_list_widget {
    height: 100%;
    overflow: auto;
}

.pt-cart-button ul.product_list_widget li.mini_cart_item {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
    display: inline-block;
    width: 100%;
    position: relative;
}

.pt-cart-button ul.cart_list li img,
ul.product_list_widget li img {
    width: 80px;
    float: left;
    margin-left: 0;
    margin-right: 15px;
}

.pt-cart-button ul.cart_list li a {
    display: block;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 700;
    padding-right: 30px;
    line-height: normal;
}

.pt-cart-button ul.product_list_widget a.remove {
    float: right;
    right: 15px;
    top: 3px;
    left: inherit;
    margin: auto 0;
    font-size: 20px;
    font-weight: 400;
    position: absolute;
    padding: 0;
    line-height: 1;
    height: 1em;
    width: 1em;
    color: var(--secondary-color);
    text-align: center;
    background: transparent;
}

.pt-cart-button ul.product_list_widget a.remove:hover {
    color: var(--dark-color);
}

.pt-cart-button .woocommerce-mini-cart__total.total {
    margin-bottom: 15px;
    margin-top: 15px;
}

.pt-cart-button .woocommerce-mini-cart__total.total strong {
    font-weight: 700;
    color: var(--dark-color);
}

.pt-cart-button .woocommerce-mini-cart__total.total .woocommerce-Price-amount.amount {
    float: right;
    color: var(--dark-color);
    font-weight: 700;
}

.pt-cart-button .woocommerce-mini-cart__buttons .button {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    border: 1px solid transparent;
}

.pt-cart-button .woocommerce-mini-cart__buttons .button:hover,
.pt-cart-button .woocommerce-mini-cart__buttons .button:focus {
    background: var(--dark-color);
    color: var(--white-color);
}

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

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

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

.pt-cart-button .btn-close {
    line-height: 1;
    padding: 0;
    color: var(--dark-color);
    font-size: 26px;
    float: right;
    opacity: 1;
    background: transparent;
    padding-top: 15px;
    box-shadow: none;
}


/**top header 1**/

header#pt-header .pt-top-header.top-style-1 {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 5px 0;
}

header#pt-header .pt-top-header.top-style-1 .marquee {
    overflow: hidden;
    width: 100%;
    display: block;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
}

header#pt-header .pt-top-header.top-style-1 .marquee span {
    position: relative;
    animation: marquee 18s linear infinite;
}

header#pt-header .pt-top-header.top-style-1 .marquee span:hover {
    animation-play-state: paused
}


/* Make it move */

@keyframes marquee {
    0% {
        left: 80%;
    }
    100% {
        left: -20%;
    }
}


/**header 1**/

header#pt-header.pt-header-style-1 {
    position: absolute;
}

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

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

header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav {
    float: none;
    justify-content: center;
}

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

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

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

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

header#pt-header.pt-header-style-2 {
    position: absolute;
    background: transparent;
}

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

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

header#pt-header.pt-header-style-2 .pt-button {
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    width: 70px;
    height: 70px;
    line-height: 70px;
    padding: 0;
}

header#pt-header.pt-header-style-2 .pt-button .pt-button-block {
    justify-content: center;
}

header#pt-header.pt-header-style-2 .pt-button .pt-button-block .icon {
    margin-left: 0;
    margin-top: 0;
    overflow: visible;
}

header#pt-header.pt-header-style-3 {
    position: absolute;
}

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

header#pt-header.pt-header-style-4 {
    position: absolute;
}

header#pt-header.pt-header-style-4 .pt-top-header {
    padding: 0 30px;
}

header#pt-header.pt-header-style-4 .pt-bottom-header {
    padding: 0 30px;
}

header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav {
    float: none;
    justify-content: center;
}

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

@media(max-width:1599px) {}

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

@media(max-width:1365px) {
    header#pt-header.pt-header-default .pt-bottom-header .navbar .navbar-nav li {
        margin-right: 20px;
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li {
        font-size: 14px;
    }
    header#pt-header .pt-top-header .pt-header-social ul li a {
        font-size: 12px;
        padding: 10px 15px;
    }
    header#pt-header .pt-top-header a.pt-header-contact {
        padding: 7px 0;
    }
    header#pt-header .pt-top-header .pt-header-contact ul li {
        font-size: 12px;
        padding: 10px 15px;
    }
    header#pt-header.pt-header-default .pt-btn-container {
        margin: 0 0 0 15px;
    }
    header#pt-header.pt-header-default .pt-menu-search-block {
        margin: 0 0 0 15px;
    }
    header#pt-header.pt-header-default .pt-toggle-btn {
        margin: 0 0 0 15px;
    }
}

@media(max-width:1299px) {
    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li {
        margin-right: 20px;
    }
    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li:last-child {
        margin-right: 0;
    }
}

@media(max-width:1199px) {
    header#pt-header .pt-top-header .pt-header-contact ul li {
        padding: 10px;
    }
    header#pt-header.pt-header-default .pt-bottom-header .navbar .navbar-nav li:last-child {
        margin-right: 0;
    }
    header#pt-header.pt-header-style-1 .pt-top-header {
        padding: 0 15px;
    }
    header#pt-header.pt-header-style-1 .pt-bottom-header {
        padding: 0 15px;
    }
    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav {
        justify-content: end;
    }
    header#pt-header.pt-header-style-1 .pt-menu-search-block {
        margin-left: 30px;
    }
    header#pt-header.pt-header-style-1 .pt-bottom-header .pt-btn-container {
        display: none;
    }
    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar {
        padding: 0 15px;
    }
    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li {
        margin-right: 15px;
    }
    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li:last-child {
        margin-right: 0;
    }
    header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li {
        margin-right: 15px;
    }
    header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li:last-child {
        margin-right: 0;
    }
    header#pt-header.pt-header-style-3 .pt-btn-container {
        display: none;
    }
    header#pt-header.pt-header-style-4 .pt-bottom-header .pt-btn-container {
        display: none;
    }
}

@media(max-width:1023px) {
    /*++++++++++++++ Button Toggler +++++++++++++*/
    .navbar-expand-lg .navbar-toggler {
        display: block;
    }
    .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }
    header#pt-header .pt-bottom-header .navbar-toggler {
        font-size: 20px;
        padding: 0;
        line-height: normal;
        float: right;
        outline: none;
        margin: 0 0 0 15px;
        width: 50px;
        height: 50px;
        color: var(--white-color);
        box-shadow: none;
        background: var(--dark-color);
    }
    header#pt-header .pt-bottom-header .navbar-toggler:hover {
        color: var(--white-color);
        background: var(--primary-color);
    }
    header#pt-header .pt-bottom-header .navbar .navbar-collapse {
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%;
        background: #fff;
        -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        max-height: 330px;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    header#pt-header .pt-bottom-header .navbar .navbar-brand {
        line-height: 60px;
    }
    header#pt-header .pt-bottom-header {
        min-height: 60px;
    }
    header#pt-header .pt-bottom-header .navbar .navbar-brand img {
        height: 54px;
    }
    header#pt-header .pt-search-form {
        top: 57px;
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav {
        float: left;
        width: 100%;
        display: inline-block;
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li {
        float: left;
        width: 100%;
        display: inline-block;
        line-height: normal;
        position: relative;
        font-size: 16px;
        position: relative;
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li a {
        width: 100%;
        display: inline-block;
        padding: 15px;
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li i {
        margin-left: 0;
        opacity: 1;
        font-size: 12px;
        position: absolute;
        right: 0;
        margin-top: 0;
        top: 0;
        padding: 22px;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        position: relative;
        top: 0;
        left: 0;
        padding-left: 0;
        background: var(--grey-color);
        box-shadow: none;
        display: inline-block;
        width: 100%;
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children:hover>a {
        background: var(--primary-color);
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.pt-submenu-icon {
        opacity: 1;
        position: absolute;
        top: 0;
        right: 0;
        line-height: 2;
        font-size: 12px;
        padding: 12px 30px;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li a {
        padding: 10px 30px;
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li>a:hover,
    header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover>a {
        background: var(--primary-color);
        color: var(--dark-color);
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
        background: var(--primary-color);
        color: var(--white-color);
    }
    header#pt-header.pt-header-default .pt-bottom-header .navbar .navbar-nav>li.current-menu-ancestor>a,
    header#pt-header.pt-header-default .pt-bottom-header .navbar .navbar-nav>li.current-menu-item>a {
        color: var(--white-color);
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>.pt-submenu-icon,
    header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover>.pt-submenu-icon {
        color: var(--white-color);
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
        position: relative;
        top: 0;
        left: 0;
        background: transparent;
        display: inline-block;
        width: 100%;
        float: left;
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu>li>a {
        background: var(--grey-color);
        color: var(--dark-color);
    }
    header#pt-header .pt-top-header .pt-header-contact ul li {
        padding: 10px 10px;
    }
    header#pt-header.pt-header-default .pt-shop-btn+.pt-btn-container {
        margin-left: 0;
    }
    header#pt-header.pt-header-default .pt-menu-search-block {
        margin-left: auto;
    }
    header#pt-header.pt-header-default .pt-toggle-btn {
        display: none;
    }
    header#pt-header.pt-header-default .pt-bottom-header .navbar .navbar-nav>li>a {
        padding-bottom: 15px;
    }
    header#pt-header.pt-header-default .pt-bottom-header .navbar .navbar-nav>li>a:before {
        display: none;
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li i {
        display: inline-block;
    }
    header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover>a {
        color: var(--white-color);
    }
    header#pt-header.pt-header-default .pt-bottom-header .navbar .navbar-nav>li:hover>a {
        color: var(--white-color);
    }
    header#pt-header .pt-bottom-header .navbar-toggler {
        background: var(--primary-color);
    }
    header#pt-header .pt-bottom-header .navbar-toggler:hover {
        background: var(--dark-color);
        color: var(--white-color);
    }
    header#pt-header.pt-header-style-1 .pt-menu-search-block {
        margin-left: auto;
    }
    header#pt-header.pt-header-style-1 .pt-toggle-btn {
        display: none;
    }
    header#pt-header.pt-header-style-1 .pt-shop-btn {
        margin-right: 20px;
    }
    header#pt-header.pt-header-style-1 .pt-top-header {
        padding: 0;
    }
    header#pt-header.pt-header-style-1 .pt-bottom-header {
        padding: 0;
    }
    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav {
        margin-left: 0;
    }
    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-brand img {
        margin-left: 0;
    }
    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-brand img {
        height: 50px;
    }
    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li:hover>a {
        color: var(--white-color);
    }
    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
        color: var(--white-color);
    }
    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li i {
        color: var(--dark-color);
    }
    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>.pt-submenu-icon,
    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li:hover>.pt-submenu-icon {
        color: var(--white-color);
    }
    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li a:hover {
        color: var(--white-color);
    }
    header#pt-header.pt-header-style-2 .pt-menu-search-block {
        margin-left: auto;
    }
    header#pt-header.pt-header-style-2 .pt-btn-container {
        display: none;
    }
    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar-toggler {
        margin-left: 10px;
    }
    header#pt-header.pt-header-style-3 .pt-menu-search-block {
        margin-left: auto;
    }
    header#pt-header.pt-header-style-4 .pt-bottom-header {
        padding: 0;
    }
    header#pt-header.pt-header-style-4 .pt-menu-search-block {
        margin-left: auto;
    }
}

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

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

@media(max-width:767px) {
    header#pt-header .pt-top-header {
        display: none;
    }
    header#pt-header.pt-header-default .pt-btn-container {
        display: none;
    }
}

@media(max-width:479px) {
    header#pt-header .pt-bottom-header .navbar .navbar-brand img {
        height: 46px;
    }
    header#pt-header.pt-header-default .pt-btn-container {
        display: none;
    }
    header#pt-header.pt-header-default .pt-menu-search-block {
        display: none;
    }
    header#pt-header.pt-header-style-1 .pt-menu-search-block {
        display: none;
    }
    header#pt-header.pt-header-style-1 .pt-shop-btn {
        display: none;
    }
    header#pt-header.pt-header-style-2 .pt-menu-search-block {
        display: none;
    }
    header#pt-header.pt-header-style-2 .pt-shop-btn {
        display: none;
    }
    header#pt-header.pt-header-style-3 .pt-menu-search-block {
        display: none;
    }
    header#pt-header.pt-header-style-3 .pt-shop-btn {
        display: none;
    }
}

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

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

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

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

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

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

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

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


/*++++++++++++++++ Header Search +++++++++++*/

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

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

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

.pt-menu-search-block .offcanvas .btn-close:before {
    font-size: 14px;
    content: "\e646";
    font-family: 'themify';
}

.pt-menu-search-block .offcanvas .btn-close:after {
    content: "";
    background: var(--dark-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease;
    border-radius: 100%;
    z-index: -1;
}

.pt-menu-search-block .offcanvas .btn-close:hover:after {
    background: var(--primary-color);
}

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

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

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

.pt-menu-search-block .offcanvas .search-form #search-clear {
    display: none;
}

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

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

.pt-menu-search-block .offcanvas .search-form .search-submit {
    background: transparent;
    color: var(--dark-color) !important;
    top: 0;
}

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

@media(max-width:767px) {
    .pt-menu-search-block .offcanvas {
        padding-right: 90px;
    }
    .pt-menu-search-block .offcanvas .search-form {
        width: 80%;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++
Sidebar Menu
++++++++++++++++++++++++++++++++++++++++*/

.pt-background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    z-index: 100;
    opacity: 0.8;
    display: none;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pt-siderbar-open .pt-background-overlay {
    display: block;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

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

.pt-sidebar {
    width: 410px;
    background: var(--white-color);
    opacity: 0;
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    z-index: 101;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pt-sidebar .pt-close-btn .pt-close {
    position: absolute;
    left: -50px;
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--white-color);
    top: 90px;
    font-size: 24px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pt-sidebar .pt-close-btn .pt-close:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

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

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

.pt-sidebar h5,
.pt-sidebar h4 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
}

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

.pt-sidebar .pt-sidebar-form span.wpcf7-form-control-wrap {
    margin-bottom: 30px;
    display: block;
}

.pt-sidebar .pt-sidebar-form .wpcf7-form-control {
    float: none;
}

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

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

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

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

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

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

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

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

.pt-sidebar-contact ul li a:hover {
    color: var(--dark-color);
}

.pt-sidebar-social ul {
    margin-top: 30px;
    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;
    display: inline-block;
    text-align: center;
    position: relative;
    border-radius: 5px;
}

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

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

.pt-sidebar .widget .wp-block-image {
    margin-bottom: 30px;
}

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


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

footer#pt-footer .pt-footer.style-1 {
    padding-top: 90px;
}

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

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

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

footer#pt-footer .widget:first-child {
    margin-bottom: 45px;
}


/*======= Footer Top list =======*/

footer#pt-footer .pt-footer-bottom-list {
    padding: 0px 0 90px 0;
    position: relative;
    z-index: 9;
}

footer#pt-footer .pt-footer-bottom-list .row {
    background: transparent;
}

footer#pt-footer .pt-footer-img {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

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

footer#pt-footer .pt-footer-bottom-list .pt-footer-items:before {
    position: absolute;
    right: 20px;
    top: 50%;
    content: "";
    background: rgba(0, 0, 0, 0.1);
    width: 1px;
    height: 45%;
    transform: translateY(-50%);
}

footer#pt-footer .pt-footer-bottom-list .row .col-lg-4:last-child .pt-footer-items:before {
    display: none;
}

footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items {
    padding: 15px 0;
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

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

footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items h5 {
    font-size: 20px;
    line-height: 32px;
}

footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items a:hover {
    color: var(--primary-color);
}

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

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

footer#pt-footer .pt-footer-logo img {
    height: 60px;
    width: auto;
}

footer#pt-footer .pt-footer-top .pt-footer-usefull {
    padding-left: 30px;
}

footer#pt-footer .pt-footer-top .pt-footer-address {
    padding-right: 30px;
}

footer#pt-footer .widget .menu-useful-links-container ul.menu li a {
    padding-left: 0;
}


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

.pt-subscribe {
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 10;
}

.pt-subscribe-bg {
    padding-top: 90px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pt-subscribe-block {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

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

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

.pt-subscribe-block .pt-subscribe-details span {
    text-transform: capitalize;
    display: block;
    margin-bottom: 5px;
}

.pt-subscribe-block .pt-subscribe-details h5 {
    color: var(--white-color);
    font-size: 28px;
    line-height: 36px;
}

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

.pt-subscribe-from input {
    border: none;
}

.pt-subscribe-from input.form-control {
    width: 76%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 0;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

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

.pt-subscribe-from input.submit {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 0;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 8px 30px;
}

.pt-subscribe-from input.submit:hover {
    background: var(--white-color);
    color: var(--dark-color);
}

@media(max-width:1190px) {
    .pt-subscribe-block .pt-subscribe-details {
        padding-right: 0;
    }
}

@media(max-width: 1024px) {
    .pt-subscribe-block .pt-subscribe-details h5 {
        font-size: 24px;
        line-height: 32px;
    }
}

@media(max-width:991px) {
    .pt-subscribe-bg {
        padding-top: 60px;
        padding-bottom: 30px;
    }
    .pt-subscribe-from {
        margin-bottom: 30px;
    }
    .pt-subscribe-from input.form-control {
        width: 85%;
    }
}

@media(max-width:767px) {
    .pt-subscribe-bg {
        padding-bottom: 15px;
    }
    footer#pt-footer .pt-footer-top {
        padding: 45px 0 0px 0px;
    }
    footer#pt-footer .pt-copyright-footer>.container {
        padding: 20px 0;
    }
}

@media(max-width:576px) {
    footer#pt-footer {
        padding: 0 10px;
    }
    .pt-subscribe-bg {
        padding-top: 45px;
    }
    .pt-subscribe-from .mc4wp-form-fields {
        display: block;
    }
    .pt-subscribe-from input.form-control {
        float: none;
        width: 100%;
    }
    .pt-subscribe-from input.submit {
        margin-left: 0;
        margin-top: 15px;
        float: none;
        width: 100%;
    }
}

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

footer#pt-footer .pt-copyright-footer>.container {
    padding: 30px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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


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

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

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

footer#pt-footer .widget ul#menu-service-menu-footer li a {
    padding-left: 24px;
}

footer#pt-footer .widget ul#menu-service-menu-footer li a:before {
    content: "";
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 10px;
    color: inherit;
    line-height: normal;
    color: var(--primary-color);
    width: 15px;
    height: 2px;
    background: var(--primary-color);
}

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

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

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

.pt-footer-recent-post .pt-footer-recent-post-media img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
}

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

.pt-footer-recent-post .pt-footer-recent-post-info .pt-post-date {
    font-family: var(--title-fonts);
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: var(--primary-color);
}

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

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

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

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

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

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

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

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

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

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

footer#pt-footer .widget ul.pt-contact>li i {
    margin-right: 15px;
    color: transparent;
    -webkit-text-stroke: 1px var(--white-color);
}

footer#pt-footer .widget select {
    border: 1px solid var(--white-color);
    color: var(--dark-color);
}

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

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

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

footer#pt-footer .widget ul li .comment-author-link a {
    padding: 0;
}

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

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

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

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

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

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

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

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

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

footer#pt-footer .search-form .search-submit:before {
    content: "\e610";
    font-family: 'themify';
    font-weight: 400;
}

footer#pt-footer .search-form .search-submit:hover {
    color: var(--primary-color);
    outline: none;
}

footer#pt-footer .search-form input {
    background: var(--white-color);
    border-color: var(--white-color);
    padding: 8px;
}

footer#pt-footer .tagcloud .tag-cloud-link {
    font-size: 14px !important;
    color: var(--dark-color);
    background: var(--white-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    float: left;
    padding: 4px 16px;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    line-height: 22px;
}

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


/*=========*/

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

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

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

@media(max-width:1199px) {
    footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items {
        height: 100%;
    }
    footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items .pt-footer-items-info span {
        font-size: 14px;
        line-height: 22px;
    }
    footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items h4 {
        font-size: 20px;
        line-height: 28px;
    }
    footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items i {
        font-size: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    footer#pt-footer .pt-footer-top .pt-footer-address {
        padding-right: 0;
    }
    footer#pt-footer .pt-footer-style-1 .pt-footer-social li a {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}

@media(max-width:1023px) {
    footer#pt-footer .pt-footer-bottom-list .pt-footer-items:before {
        display: none;
    }
}

@media(max-width:991px) {
    .pt-subscribe-block {
        margin-bottom: 30px;
    }
    footer#pt-footer .pt-footer-top .pt-footer-usefull {
        padding-left: 0;
    }
    footer#pt-footer .pt-footer-img {
        padding: 15px 0;
    }
    footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items .pt-footer-items-info span {
        font-size: 16px;
        line-height: 24px;
    }
}

@media(max-width:767px) {
    footer#pt-footer .pt-copyright-footer {
        text-align: center;
    }
    .pt-subscribe-from .mc4wp-form-fields {
        margin-right: 0;
    }
    footer#pt-footer .pt-copyright-footer .pt-footer-social {
        display: inline-block;
        margin-bottom: 10px;
    }
}

@media(max-width:600px) {
    footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items {
        display: block;
    }
    footer#pt-footer .pt-footer-logo {
        margin: 30px 0;
    }
    footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items {
        padding-top: 0;
        padding-bottom: 45px;
    }
    footer#pt-footer .pt-footer-bottom-list {
        padding: 0px 0 45px 0;
    }
    footer#pt-footer .widget .wp-block-heading {
        margin-bottom: 15px;
    }
    footer#pt-footer .widget .footer-title {
        margin-bottom: 15px;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++
Service Box
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pt-service-box.pt-style-1 {
    padding: 45px;
    background: var(--white-color);
    border-radius: 5px;
}

.pt-service-box.pt-style-1 .pt-service-icon {
    background: var(--primary-color);
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    position: relative;
    font-size: 56px;
    color: var(--white-color);
    transition: all 0.5s ease;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-service-box.pt-style-1:hover .pt-service-icon {
    transform: rotateY(180deg);
}

.pt-service-box.pt-style-1 .pt-service-box-title {
    margin-top: 30px;
    margin-bottom: 5px;
    font-size: 26px;
    line-height: 34px;
}

.pt-service-box.pt-style-1 .pt-service-box-description {
    margin-bottom: 20px;
}

.pt-grey-bg .pt-service-box.pt-style-1 {
    background: var(--grey-color);
}

.pt-service-slider.pt-slider-1 .slick-arrow {
    display: none !important;
}

.pt-service-slider.pt-slider-1 .pt-thumbs-column {
    margin-right: 30px;
    margin-top: 45px;
}

.pt-service-slider.pt-slider-1 .pt-thumbs-column .pt-btn-container {
    margin-top: 30px;
    margin-left: 20px;
}

.pt-service-slider.pt-slider-1 .slick-slider-thumb .item h5 {
    color: var(--white-color);
    font-size: 28px;
    line-height: 36px;
    cursor: pointer;
    display: inline-block;
}

.pt-service-slider.pt-slider-1 .pt-thumbs-column .slick-slider .slick-track {
    transform: translate(0) !important;
    width: auto !important;
}

.pt-service-slider.pt-slider-1 .pt-thumbs-column .slick-slider .slick-slide {
    width: 100% !important;
    margin-left: 0;
    padding: 20px;
    border-radius: 5px;
    background: transparent;
    transition: all 0.5s ease;
    cursor: pointer;
}

.pt-service-slider.pt-slider-1 .pt-thumbs-column .slick-slider .slick-current.slick-slide {
    background: var(--white-color);
}

.pt-service-slider.pt-slider-1 .slick-slider-thumb .slick-current .item span.pt-service-number {
    color: var(--primary-color);
}

.pt-service-slider.pt-slider-1 .slick-slider-thumb .slick-current h5 {
    color: var(--primary-color);
}

.pt-service-slider.pt-slider-1 .slick-slider-thumb .item span.pt-service-number {
    margin-right: 10px;
    font-size: 28px;
    color: var(--white-color);
    font-weight: 700;
    line-height: 36px;
}

.pt-service-slider.pt-slider-1 .slick-slider-main .slick-slide {
    padding-right: 30px;
}

.pt-service-slider.pt-slider-1 .slick-slider-main .item {
    position: relative;
}

.pt-service-slider.pt-slider-1 .slick-slider-main .item>img {
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-service-slider.pt-slider-1 .slick-slider-main .item>img.pt-service-small {
    position: absolute;
    right: -45px;
    bottom: 0;
    width: 200px;
}

.pt-service-box.pt-style-3 {
    display: flex;
    align-items: center;
}

.pt-service-box.pt-style-3.pt-even {
    flex-direction: row-reverse;
}

.pt-service-box.pt-style-3 .pt-service-icon {
    background: var(--primary-color);
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    position: relative;
    font-size: 56px;
    color: var(--white-color);
    transition: all 0.5s ease;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-service-box.pt-style-3 .pt-service-box-info {
    margin-left: 30px;
}

.pt-service-box.pt-style-3.pt-even .pt-service-box-info {
    margin-left: 0;
    margin-right: 30px;
    text-align: right;
}

.pt-service-box.pt-style-3 .pt-service-box-title {
    margin-bottom: 5px;
    font-size: 26px;
    line-height: 34px;
}

.pt-service-box.pt-style-3 .pt-service-box-description {
    margin-bottom: 10px;
}

.pt-service-slider.pt-slider-4 .slick-arrow {
    display: none !important;
}

.pt-service-slider.pt-slider-4 .pt-thumbs-column {
    margin-left: 30px;
    margin-top: 10px;
}

.pt-service-slider.pt-slider-4 .slick-slider-thumb .item h5 {
    margin-bottom: 5px;
    cursor: pointer;
    display: inline-block;
}

.pt-service-slider.pt-slider-4 .slick-slider-thumb .item .pt-service-box-description {
    margin-bottom: 0;
}

.pt-service-slider.pt-slider-4 .pt-thumbs-column .slick-slider .slick-track {
    transform: translate(0) !important;
    width: auto !important;
}

.pt-service-slider.pt-slider-4 .pt-thumbs-column .slick-slider .slick-slide {
    width: 100% !important;
    margin-left: 0;
    padding: 20px 30px;
    border-radius: 5px;
    background: transparent;
    transition: all 0.5s ease;
    cursor: pointer;
    margin-bottom: 15px;
}

.pt-service-slider.pt-slider-4 .slick-slider-main .slick-slide {
    margin: 0;
}

.pt-service-slider.pt-slider-4 .slick-slider-main .item>img {
    border-radius: 5px;
}

.pt-service-slider.pt-slider-4 .pt-thumbs-column .slick-slider .slick-current.slick-slide {
    background: var(--primary-color);
}

.pt-service-slider.pt-slider-4 .slick-slider-thumb .slick-current .item .pt-service-box-title {
    color: var(--white-color);
}

.pt-service-slider.pt-slider-4 .slick-slider-thumb .slick-current .item .pt-service-box-description {
    color: var(--white-color);
}

.pt-service-slider.pt-slider-4 .pt-service-box.pt-style-4 {
    background: transparent;
}

.pt-service-box.pt-style-5 {
    position: relative;
}

.pt-service-box.pt-style-5 .pt-service-img {
    position: relative;
}

.pt-service-box.pt-style-5 .pt-service-img img {
    width: 85%;
    border-radius: 5px;
}

.pt-service-box.pt-style-5 .pt-service-box-info {
    position: absolute;
    background: var(--white-color);
    padding: 30px;
    left: 40%;
    border-radius: 5px;
    bottom: 90px;
}

.pt-service-box.pt-style-5 .pt-service-box-info .pt-service-box-title {
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 36px;
}

.pt-service-box.pt-style-5 .pt-service-box-info .pt-service-box-description {
    margin-bottom: 20px;
}

.pt-service-slider.pt-slider-6 .slick-arrow {
    display: none !important;
}

.pt-service-slider.pt-slider-6 .pt-thumbs-column {
    margin-right: 100px;
    margin-top: 30px;
}

.pt-service-slider.pt-slider-6 .slick-slider-thumb .item {
    padding: 30px;
    position: relative;
}

.pt-service-slider.pt-slider-6 .slick-slider-thumb .item .pt-service-shape {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    position: absolute;
    right: -17px;
    z-index: 999;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    opacity: 0;
    transition: all 0.5s ease;
    top: 50%;
    transform: translateY(-50%);
}

.pt-service-slider.pt-slider-6 .pt-thumbs-column .slick-slider .slick-slide.slick-current .item .pt-service-shape {
    opacity: 1;
}

.pt-service-slider.pt-slider-6 .pt-thumbs-column .slick-list {
    overflow: visible;
}

.pt-service-slider.pt-slider-6 .slick-slider-thumb .item h5 {
    color: var(--dark-color);
    font-size: 30px;
    line-height: 38px;
    cursor: pointer;
    display: inline-block;
}

.pt-service-slider.pt-slider-6 .pt-thumbs-column .slick-slider .slick-track {
    transform: translate(0) !important;
    width: auto !important;
}

.pt-service-slider.pt-slider-6 .pt-thumbs-column .slick-slider .slick-slide {
    width: 100% !important;
    margin-left: 0;
    padding: 0;
    border-radius: 5px;
    background: transparent;
    transition: all 0.5s ease;
    cursor: pointer;
}

.pt-service-slider.pt-slider-6 .pt-thumbs-column .slick-slider .slick-slide.slick-current {
    background: var(--white-color);
}

.pt-service-slider.pt-slider-6 .slick-slider-thumb .slick-current h5 {
    color: var(--primary-color);
}

.pt-service-slider.pt-slider-6 .slick-slider-main .slick-slide {
    padding-right: 30px;
}

.pt-service-slider.pt-slider-6 .slick-slider-main .item {
    position: relative;
}

.pt-service-slider.pt-slider-6 .slick-slider-main .item .pt-service-img img {
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-service-slider.pt-slider-6 .slick-slider-main .item .pt-service-icon {
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    width: 180px;
    height: 180px;
    line-height: 180px;
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    font-size: 72px;
    position: absolute;
    right: -22px;
    top: 15px;
}

@media(max-width: 1024px) {
    .pt-service-slider.pt-slider-1 .pt-thumbs-column {
        margin-right: 0;
        margin-top: 10px;
    }
    .pt-service-slider.pt-slider-1 .slick-slider-main .slick-slide {
        margin: 0;
        padding-right: 0;
    }
    .pt-service-slider.pt-slider-1 .slick-slider-main .item>img.pt-service-small {
        right: 0;
    }
    .pt-service-slider.pt-slider-1 .pt-thumbs-column .slick-slider .slick-slide {
        margin-bottom: 0;
    }
    .pt-service-slider.pt-slider-1 .slick-slider-thumb .item span.pt-service-number,
    .pt-service-slider.pt-slider-1 .slick-slider-thumb .item h5 {
        font-size: 22px;
    }
    .pt-service-slider.pt-slider-1 .pt-thumbs-column .slick-slider .slick-slide {
        padding: 15px;
    }
    .pt-service-box.pt-style-3.pt-even {
        flex-direction: revert;
    }
    .pt-service-box.pt-style-3.pt-even .pt-service-box-info {
        margin-left: 30px;
        margin-right: 0;
        text-align: left;
    }
    .pt-service-slider.pt-slider-6 .pt-thumbs-column {
        margin-right: 0;
        margin-top: 10px;
    }
    .pt-service-slider.pt-slider-6 .slick-slider-main .slick-slide {
        margin: 0;
        padding-right: 0;
    }
    .pt-service-slider.pt-slider-6 .slick-slider-main .item>img.pt-service-small {
        right: 0;
    }
    .pt-service-slider.pt-slider-6 .pt-thumbs-column .slick-slider .slick-slide {
        margin-bottom: 0;
    }
    .pt-service-slider.pt-slider-6 .slick-slider-thumb .item span.pt-service-number,
    .pt-service-slider.pt-slider-6 .slick-slider-thumb .item h5 {
        font-size: 22px;
    }
}

@media(max-width: 991px) {
    .pt-service-slider.pt-slider-4 .pt-thumbs-column {
        margin-left: 0;
    }
}

@media(max-width: 767px) {
    .pt-service-slider.pt-slider-1 .pt-thumbs-column {
        margin-bottom: 30px;
    }
    .pt-service-box.pt-style-1 {
        padding: 30px;
    }
    .pt-service-slider.pt-slider-4 .pt-thumbs-column {
        margin-left: 0;
    }
    .pt-service-slider.pt-slider-6 .pt-thumbs-column {
        margin-bottom: 30px;
    }
    .pt-service-slider.pt-slider-6 .slick-slider-main .item .pt-service-icon {
        right: 0;
    }
}

@media(max-width: 479px) {
    .pt-service-slider.pt-slider-1 .pt-thumbs-column .slick-slider .slick-slide {
        padding: 10px;
    }
    .pt-service-slider.pt-slider-1 .slick-slider-thumb .item span.pt-service-number,
    .pt-service-slider.pt-slider-1 .slick-slider-thumb .item h5 {
        font-size: 18px;
    }
    .pt-service-slider.pt-slider-6 .pt-thumbs-column .slick-slider .slick-slide {
        padding: 10px;
    }
    .pt-service-slider.pt-slider-6 .slick-slider-thumb .item span.pt-service-number,
    .pt-service-slider.pt-slider-6 .slick-slider-thumb .item h5 {
        font-size: 18px;
    }
}


/*++++++++++++++++++++++++++++++++++++++
Testimonials
+++++++++++++++++++++++++++++++++++++++*/

.pt-testimonial-box-slider.pt-slider-1 .slick-arrow {
    display: none !important;
}

.pt-testimonial-box.pt-style-1 {
    background: var(--white-color);
    padding: 45px 130px;
    text-align: center;
    border-radius: 5px;
    position: relative;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-star {
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

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

.pt-testimonial-box.pt-style-1 .pt-testimonial-quote {
    position: absolute;
    right: 130px;
    bottom: 10px;
    font-size: 60px;
    color: var(--grey-color);
}

.pt-testimonial-box-slider.pt-slider-1 .slick-slider-thumb {
    margin-top: 45px;
    margin-right: 90px;
    margin-left: 90px;
}

.pt-testimonial-box-slider.pt-slider-1 .pt-testimonial-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: transparent;
    border-radius: 5px;
    cursor: pointer;
}

.pt-testimonial-box-slider.pt-slider-1 .pt-testimonial-img {
    margin-right: 20px;
}

.pt-testimonial-box-slider.pt-slider-1 .pt-testimonial-img img {
    width: 90px;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-testimonial-box-slider.pt-slider-1 .pt-testmonial-title {
    font-size: 26px;
    line-height: 34px;
}

.pt-testimonial-box-slider.pt-slider-1 .pt-testimonial-info span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--title-fonts);
}

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

.pt-testimonial-box-slider.pt-slider-1 .slick-slider-thumb .slick-current.slick-active .pt-testimonial-meta {
    background: var(--primary-color);
}

.pt-testimonial-box-slider.pt-slider-1 .slick-slider-thumb .slick-current.slick-active .pt-testmonial-title {
    color: var(--white-color);
}

.pt-testimonial-box-slider.pt-slider-1 .slick-slider-thumb .slick-current.slick-active .pt-testimonial-info span {
    color: var(--white-color);
}

.pt-testimonial-box-slider.pt-slider-1 .slick-slider-thumb .slick-track {
    transform: translate(0) !important;
    width: auto !important;
}

.pt-testimonial-box-slider.pt-slider-1 .slick-slider-thumb .slick-slide {
    width: 33.3% !important;
}

.pt-testimonial-box.pt-style-2 {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    align-items: center;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-img img {
    border-radius: 5px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-info {
    padding-left: 45px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-meta {
    margin-top: 30px;
    margin-bottom: 10px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-meta h5 {
    font-size: 26px;
    line-height: 34px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-meta span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.pt-testimonial-box-slider.pt-style-2 .owl-nav {
    display: inline-block;
    top: inherit;
    text-align: right;
    bottom: 5px;
    transform: none;
}

.pt-testimonial-box-slider.pt-style-2 .owl-carousel .owl-dots {
    position: absolute;
    right: 0;
    bottom: 0px;
    margin-top: 0;
    text-align: right;
}

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

.pt-testimonial-box-slider.pt-style-2 .owl-carousel .owl-nav button.owl-prev {
    margin-left: 0;
    color: var(--white-color);
}

.pt-testimonial-box-slider.pt-style-2 .owl-carousel .owl-nav button.owl-next {
    margin-right: 0px;
    color: var(--white-color);
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-star i {
    color: var(--primary-color);
}

.pt-testimonial-box.pt-style-3 {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    align-items: center;
    background: var(--white-color);
    padding: 45px;
    border-radius: 5px;
}

.pt-bg-none .pt-testimonial-box.pt-style-3 {
    padding: 0;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-media {
    position: relative;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-media .pt-testimonial-quote {
    position: absolute;
    right: 0;
    top: 30px;
    z-index: 9;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-media .pt-testimonial-img img {
    border-radius: 5px;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-info {
    padding-left: 45px;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-info p {
    font-size: 20px;
    line-height: 40px;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-meta {
    margin-top: 30px;
    margin-bottom: 10px;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-meta h5 {
    font-size: 26px;
    line-height: 34px;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-meta span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-quote {
    width: 90px;
    height: 90px;
    line-height: 100px;
    text-align: center;
    background: var(--primary-color);
    border-radius: 100%;
    font-size: 32px;
    color: transparent;
    -webkit-text-stroke: 1px var(--white-color);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-testimonial-box-slider.pt-style-3 .owl-nav {
    display: inline-block;
    top: inherit;
    text-align: right;
    bottom: 45px;
    right: 45px;
    transform: none;
}

.pt-testimonial-box-slider.pt-style-3 .owl-carousel .owl-dots {
    position: absolute;
    right: 0;
    bottom: 0px;
    margin-top: 0;
    text-align: right;
}

.pt-testimonial-box-slider.pt-style-3 .owl-nav.disabled {
    display: none;
}

.pt-testimonial-box-slider.pt-style-3 .owl-carousel .owl-nav button.owl-prev {
    margin-left: 0;
    color: var(--white-color);
}

.pt-testimonial-box-slider.pt-style-3 .owl-carousel .owl-nav button.owl-next {
    margin-right: 0px;
    color: var(--white-color);
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-star i {
    color: var(--primary-color);
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-description {
    margin-bottom: 20px;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-media {
    display: flex;
    position: relative;
    align-items: center;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-media .pt-testimonial-img {
    margin-right: 15px;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-media .pt-testimonial-img img {
    width: 80px;
}

.pt-testimonial-box.pt-style-4 .pt-testmonial-title {
    font-size: 22px;
    line-height: 30px;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-media .pt-testimonial-meta span {
    color: var(--primary-color);
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--title-fonts);
    text-transform: capitalize;
}

.pt-leftfull-bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background: var(--primary-color);
}

@media(max-width:1024px) {
    .pt-testimonial-box.pt-style-1 {
        padding: 45px;
    }
    .pt-testimonial-box.pt-style-1 .pt-testimonial-quote {
        right: 45px;
        bottom: 0;
    }
    .pt-testimonial-box-slider.pt-slider-1 .slick-slider-thumb {
        margin-top: 30px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .pt-testimonial-box-slider.pt-slider-1 .pt-testimonial-meta {
        padding: 10px;
    }
    .pt-testimonial-box-slider.pt-slider-1 .pt-testimonial-img img {
        width: 70px;
    }
    .pt-testimonial-box-slider.pt-slider-1 .pt-testmonial-title {
        font-size: 22px;
        line-height: 30px;
    }
    .pt-testimonial-box-slider.pt-slider-1 .pt-testimonial-info span {
        font-size: 16px;
    }
    .pt-testimonial-box.pt-style-3 .pt-testimonial-quote {
        width: 70px;
        height: 70px;
        line-height: 80px;
        font-size: 22px;
    }
    .pt-leftfull-bg:before {
        display: none;
    }
}

@media(max-width:767px) {
    .pt-testimonial-box.pt-style-1 .pt-testimonial-description {
        font-size: 18px;
        line-height: 30px;
    }
    .pt-testimonial-box-slider.pt-slider-1 .slick-slider-thumb {
        margin-left: 0;
    }
    .pt-testimonial-box-slider.pt-slider-1 .pt-testimonial-meta {
        padding: 15px;
    }
    .pt-testimonial-box-slider.pt-slider-1 .slick-slider-thumb .slick-slide {
        width: 100% !important;
    }
    .pt-testimonial-box.pt-style-2 {
        display: block;
    }
    .pt-testimonial-box-slider.pt-style-2 .owl-nav {
        display: none;
    }
    .pt-testimonial-box.pt-style-2 .pt-testimonial-info {
        padding-left: 0;
        margin-top: 30px;
    }
    .pt-testimonial-box.pt-style-3 {
        display: block;
        padding: 30px;
    }
    .pt-testimonial-box.pt-style-3 .pt-testimonial-info p {
        font-size: 16px;
        line-height: 30px;
    }
    .pt-testimonial-box.pt-style-3 .pt-testimonial-info {
        padding-left: 0;
        margin-top: 30px;
    }
    .pt-testimonial-box-slider.pt-style-3 .owl-nav {
        display: none;
    }
}


/*++++++++++++++++++++++++++++++++++++++
 Counter
+++++++++++++++++++++++++++++++++++++++*/

.pt-counter.pt-style-1 .pt-counter-media {
    background: var(--primary-color);
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    position: relative;
    font-size: 56px;
    color: var(--white-color);
    margin: 0 auto;
    margin-bottom: 30px;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-counter.pt-style-1 .pt-counter-media:before {
    position: absolute;
    content: "";
    border-right: 25px solid var(--primary-color);
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    left: -25px;
}

.pt-counter.pt-style-1 .pt-counter-media:after {
    position: absolute;
    content: "";
    border-left: 25px solid var(--primary-color);
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    right: -25px;
}

.pt-counter.pt-style-1 .pt-counter-info h5 {
    font-size: 46px;
    line-height: 54px;
    display: inline-block;
    color: var(--dark-color);
}

.pt-counter.pt-style-1 .pt-counter-info .pt-counter-prefix {
    font-size: 46px;
    line-height: 54px;
    font-family: var(--title-fonts);
    font-weight: 700;
    color: var(--dark-color);
}

.pt-counter.pt-style-1 .pt-counter-description {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary-color);
    text-transform: capitalize;
}

.pt-counter.pt-style-2 {
    text-align: center;
}

.pt-counter.pt-style-2 .pt-counter-info {
    background: var(--grey-color);
    width: 300px;
    height: 300px;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-counter-primary .pt-counter.pt-style-2 .pt-counter-info {
    background: var(--primary-color);
}

.pt-counter-primary .pt-counter.pt-style-2 .pt-counter-info h5 {
    color: var(--white-color);
}

.pt-counter-primary .pt-counter.pt-style-2 .pt-counter-info .pt-counter-prefix {
    color: var(--white-color);
}

.pt-counter-primary .pt-counter.pt-style-2 .pt-counter-description {
    color: var(--white-color);
}

.pt-counter.pt-style-2 .pt-counter-info h5 {
    font-size: 46px;
    line-height: 54px;
    display: inline-block;
    color: var(--dark-color);
}

.pt-counter.pt-style-2 .pt-counter-info .pt-counter-prefix {
    font-size: 46px;
    line-height: 54px;
    font-family: var(--title-fonts);
    font-weight: 700;
    color: var(--dark-color);
}

.pt-counter.pt-style-2 .pt-counter-description {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-transform: capitalize;
}

.pt-border-line:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 24%;
    transform: translateY(-50%);
    height: 1px;
    width: 75%;
    border: 1px dotted rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

@media(max-width:1024px) {
    .pt-border-line:before {
        display: none;
    }
}

@media(max-width:767px) {
    .pt-counter.pt-style-1 .pt-counter-media {
        margin-bottom: 10px;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++
Process Step
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pt-process-step.pt-style-1 {
    position: relative;
}

.pt-process-step.pt-style-1 .pt-process-media span {
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white-color);
    text-align: center;
    border-radius: 100%;
    position: absolute;
    left: -77px;
    font-size: 40px;
    font-weight: 700;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    background: var(--primary-color);
}

.pt-process-step.pt-style-1.pt-even .pt-process-media span {
    left: inherit;
    right: -77px;
}

.pt-process-step.pt-style-1 .pt-process-info {
    margin-left: 80px;
}

.pt-process-step.pt-style-1.pt-even .pt-process-info {
    margin-left: 0;
    margin-right: 80px;
}

.pt-process-step.pt-style-1 .pt-process-title {
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 34px;
}

.pt-process-step.pt-style-1 .pt-process-info p {
    margin-bottom: 0;
}

.pt-process-border-line:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background: var(--primary-color);
}

.pt-process-step.pt-style-2 {
    text-align: center;
}

.pt-process-step.pt-style-2 .pt-process-number {
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--title-fonts);
    font-size: 34px;
    line-height: 42px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.pt-process-step.pt-style-2 .pt-process-media {
    background: var(--primary-color);
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    position: relative;
    font-size: 64px;
    color: var(--white-color);
    transition: all 0.5s ease;
    margin: 0 auto;
    margin-top: -18px;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-process-step.pt-style-2 .pt-process-info {
    padding: 0 30px;
}

.pt-process-step.pt-style-2 .pt-process-title {
    margin-top: 15px;
    margin-bottom: 5px;
}

.pt-process-step.pt-style-2 .pt-process-info p {
    margin-bottom: 0;
}

.pt-process-step.pt-style-3 {
    text-align: center;
}

.pt-process-step.pt-style-3 .pt-process-number {
    font-weight: 700;
    font-family: var(--title-fonts);
    font-size: 62px;
    line-height: 70px;
    letter-spacing: 1px;
    margin-top: 20px;
    display: inline-block;
    opacity: 0.2;
}

.pt-process-step.pt-style-3 .pt-process-media {
    background: var(--primary-color);
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    position: relative;
    font-size: 64px;
    color: var(--white-color);
    transition: all 0.5s ease;
    margin: 0 auto;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-process-step.pt-style-3 .pt-process-info {
    padding: 0 30px;
}

.pt-process-step.pt-style-3 .pt-process-title {
    margin-top: 10px;
    margin-bottom: 5px;
}

.pt-process-step.pt-style-3 .pt-process-info p {
    margin-bottom: 0;
}

.pt-process-step.pt-style-4 .pt-process-media {
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-process-step.pt-style-4 .pt-process-media img {
    transition: all 0.5s ease;
    width: 100%;
}

.pt-process-step.pt-style-4 .pt-process-media:hover img {
    transform: scale(1.1);
}

.pt-process-step.pt-style-4 .pt-process-number {
    font-weight: 700;
    font-family: var(--title-fonts);
    font-size: 62px;
    line-height: 70px;
    letter-spacing: 1px;
    margin-top: -61px;
    display: inline-block;
    color: var(--primary-color);
    position: absolute;
    right: 5px;
    top: 100px;
    z-index: 9;
}

.pt-process-step.pt-style-4 .pt-process-title {
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 26px;
    line-height: 34px;
}

@media(max-width: 1024px) {
    .pt-process-step.pt-style-1 .pt-process-media span {
        left: 0;
    }
    .pt-process-step.pt-style-1 .pt-process-info {
        margin-left: 120px;
    }
    .pt-process-border-line:before {
        display: none;
    }
    .pt-process-step.pt-style-1.pt-even .pt-process-info {
        margin-right: 0;
        margin-left: 120px;
    }
    .pt-process-step.pt-style-1.pt-even .pt-process-media span {
        left: 0;
        right: inherit;
    }
}

@media(max-width: 767px) {
    .pt-process-step.pt-style-1 .pt-process-media span {
        display: none;
    }
    .pt-process-step.pt-style-1 .pt-process-info {
        margin-left: 0;
    }
    .pt-process-step.pt-style-1.pt-even .pt-process-info {
        margin-left: 0;
    }
    .pt-process-step.pt-style-4 .pt-process-number {
        right: 90px;
    }
}


/*+++++++++++++++++++++++++++++++++++++
Fancy Box
++++++++++++++++++++++++++++++++++++++*/

.pt-fancy-box.pt-style-1 {
    position: relative;
}

.pt-fancy-box.pt-style-1 .pt-fancy-media img {
    border-radius: 5px;
}

.pt-fancy-box.pt-style-1 .pt-fancy-box-info {
    text-align: center;
    background: transparent;
    border-radius: 5px;
    transition: all 0.5s ease;
    padding: 0 90px 30px 90px;
    position: absolute;
    left: 5%;
    right: 5%;
    margin: 0 auto;
}

.pt-fancy-box.pt-style-1:hover .pt-fancy-box-info {
    background: var(--white-color);
    margin-top: -130px;
}

.pt-fancy-box.pt-style-1 .pt-fancy-box-info .pt-fancy-box-icon {
    width: 90px;
    height: 90px;
    color: var(--white-color);
    font-size: 52px;
    line-height: 90px;
    text-align: center;
    background: var(--primary-color);
    display: inline-block;
    margin-top: -60px;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-fancy-box.pt-style-1 .pt-fancy-box-title {
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 26px;
    line-height: 34px;
    opacity: 0;
    transition: all 0.5s ease;
}

.pt-fancy-box.pt-style-1:hover .pt-fancy-box-title {
    opacity: 1;
}

.pt-fancy-box-slider.pt-style-1 .owl-stage-outer {
    padding-bottom: 45px;
    z-index: 1;
}

.pt-fancy-box-slider.pt-style-1 .owl-nav {
    top: 44%;
}

.pt-grey-bg .pt-fancy-box.pt-style-1:hover .pt-fancy-box-info {
    background: var(--grey-color);
}


/*+++++++++++++++++++++++++++++++++++++++++++++++
Client
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pt-client-box.pt-style-1 {
    display: block;
    overflow: hidden;
    position: relative;
    margin: 0 30px;
}

.pt-client-box.pt-style-1 .pt-client-img {
    position: relative;
    display: block;
    width: auto;
    margin: 0 auto;
    -webkit-transition: -webkit-transform .3s ease;
    -moz-transition: -moz-transform .3s ease;
    transition: transform .3s ease;
    opacity: 0.8;
}

.pt-client-box.pt-style-1 a:hover .pt-client-img {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%)
}

.pt-client-box.pt-style-1 a:hover .pt-client-hover-img {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.pt-client-box.pt-style-1 .pt-client-hover-img {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    opacity: 1;
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    -webkit-transition: -webkit-transform .3s ease;
    -moz-transition: -moz-transform .3s ease;
    transition: transform .3s ease
}

.pt-client-box.pt-client-style-1 .owl-dots {
    margin-top: 45px;
}

.pt-rotate-animation img {
    animation: rotation 5s infinite linear;
}

.pt-updown-animation img {
    animation: updown 1s infinite linear;
    animation-direction: alternate;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

@keyframes updown {
    0% {
        transform: translateY(30px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media(max-width: 575px) {
    .pt-rotate-animation.pt-hide img {
        display: none;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Image Box
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

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

.pt-image-box.pt-style-1 img {
    border-radius: 5px;
}

.pt-image-box.pt-style-1 .pt-image-box-title {
    font-size: 24px;
    line-height: 32px;
    margin-top: 30px;
}

.pt-image-box.pt-style-2 .pt-image-box-img {
    position: relative;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-image-box.pt-style-2 .pt-image-box-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease;
    border-radius: 5px;
}

.pt-image-box.pt-style-2:hover .pt-image-box-img:before {
    visibility: visible;
    opacity: 1;
}

.pt-image-box.pt-style-2 .pt-image-box-title {
    position: absolute;
    top: 60%;
    left: 50%;
    transition: all 0.5s ease;
    text-align: center;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.pt-image-box.pt-style-2:hover .pt-image-box-title {
    top: 50%;
    opacity: 1;
}

.pt-image-box.pt-style-2 .pt-image-box-title a {
    font-size: 26px;
    line-height: 34px;
    color: var(--primary-color);
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
bee animation
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.bee-animation-1 {
    animation: bee-animation-1 18s infinite linear;
}

.bee-animation-2 {
    animation: bee-animation-2 18s infinite linear;
}

@keyframes bee-animation-1 {
    from {
        left: 80%;
    }
    to {
        left: 0%;
    }
}

@keyframes bee-animation-2 {
    from {
        left: 10%;
    }
    to {
        left: 80%;
    }
}

@media(max-width: 1024px) {
    .bee-animation-1,
    .bee-animation-2 {
        display: none;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++
Video Popup
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pt-popup-video-block.pt-popup-style-1 .pt-video-icon a {
    margin: auto;
    text-decoration: none;
    background: var(--white-color);
    color: var(--primary-color);
    font-size: 28px;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    transition: 0.5s ease-in-out;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-popup-video-block.pt-popup-style-1:hover .pt-video-icon a {
    background: var(--primary-color);
    color: var(--white-color);
}

.pt-popup-video-block.pt-popup-style-1 {
    position: relative;
    text-align: center;
}

.pt-popup-video-block.pt-popup-style-1 .pt-video-icon {
    position: relative;
}

.mfp-wrap .mfp-close {
    padding: 0;
    top: -50px;
    right: 0;
    font-size: 26px;
    opacity: 1;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    position: absolute;
    letter-spacing: 0;
    font-weight: 400;
}

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

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

@media(max-width: 479px) {
    .pt-popup-video-block.pt-popup-style-1 .pt-video-icon a {
        width: 90px;
        height: 90px;
        line-height: 90px;
        font-size: 18px;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Social Icons
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

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

.pt-common-social.pt-style-1 ul li {
    display: inline-block;
    padding: 0;
    margin: 0;
    margin-right: 5px;
}

.pt-common-social.pt-style-1 ul li a {
    background: var(--primary-color);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    position: relative;
    border-radius: 5px;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-common-social.pt-style-1 ul li a:hover {
    background: var(--dark-color);
    color: var(--white-color);
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Team
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.pt-team-box.pt-style-1 {
    position: relative;
    overflow: hidden;
}

.pt-team-box.pt-style-1 .team-inner-img img {
    width: 100%;
    border-radius: 5px;
}

.pt-team-box.pt-style-1:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.5s ease;
    border-radius: 5px;
}

.pt-team-box.pt-style-1:hover:before {
    visibility: visible;
    opacity: 1;
}

.pt-team-box.pt-style-1 .pt-team-info {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.pt-team-box.pt-style-1:hover .pt-team-info {
    bottom: 45px;
    opacity: 1;
    visibility: visible;
}

.pt-team-box.pt-style-1 .pt-team-info .pt-member-name {
    color: var(--white-color);
}

.pt-team-box.pt-style-1 .pt-team-info .pt-team-designation {
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    text-transform: capitalize;
    color: var(--primary-color);
    font-family: var(--title-fonts);
    margin-bottom: 10px;
}

.pt-team-box.pt-style-1 .pt-team-icons ul {
    padding: 0;
    margin: 0;
}

.pt-team-box.pt-style-1 .pt-team-icons ul li {
    list-style: none;
    display: inline-block;
}

.pt-team-box.pt-style-1 .pt-team-icons ul li {
    margin-right: 15px;
}

.pt-team-box.pt-style-1 .pt-team-icons ul li:last-child {
    margin-right: 0;
}

.pt-team-box.pt-style-1 .pt-team-icons ul li a {
    color: var(--white-color);
    text-align: center;
    transition: all 0.5s ease;
    display: inline-block;
}

.pt-team-box.pt-style-1 .pt-team-icons ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.pt-team-box.pt-style-2 .team-inner-img {
    position: relative;
    overflow: hidden;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    height: 400px;
}

.pt-team-box.pt-style-2 .team-inner-img img {
    width: 100%;
    border-radius: 5px;
}

.pt-team-box.pt-style-2 .team-inner-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.5s ease;
    border-radius: 5px;
}

.pt-team-box.pt-style-2 .team-inner-img:hover:before {
    visibility: visible;
    opacity: 1;
}

.pt-team-box.pt-style-2 .pt-team-icons {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.pt-team-box.pt-style-2 .team-inner-img:hover .pt-team-icons {
    bottom: 45px;
    opacity: 1;
    visibility: visible;
}

.pt-team-box.pt-style-2 .pt-team-icons ul {
    padding: 0;
    margin: 0;
}

.pt-team-box.pt-style-2 .pt-team-icons ul li {
    list-style: none;
    display: inline-block;
}

.pt-team-box.pt-style-2 .pt-team-icons ul li {
    margin-right: 15px;
}

.pt-team-box.pt-style-2 .pt-team-icons ul li:last-child {
    margin-right: 0;
}

.pt-team-box.pt-style-2 .pt-team-icons ul li a {
    color: var(--white-color);
    text-align: center;
    transition: all 0.5s ease;
    display: inline-block;
}

.pt-team-box.pt-style-2 .pt-team-icons ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.pt-team-box.pt-style-2 .pt-team-info {
    margin-top: 10px;
}

.pt-team-box.pt-style-2 .pt-member-name {
    font-size: 28px;
    line-height: 36px;
}

.pt-team-box.pt-style-2 .pt-team-info .pt-team-designation {
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    text-transform: capitalize;
    color: var(--primary-color);
    font-family: var(--title-fonts);
}

@media(max-width:1024px) {
    .pt-team-box.pt-style-2 .team-inner-img {
        height: 270px;
    }
}

@media(max-width:767px) {
    .pt-team-box.pt-style-2 .team-inner-img {
        height: 500px;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Contact Form
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.pt-contact-form p {
    margin-bottom: 0;
}

.pt-contact-form .wpcf7-form-control {
    margin-bottom: 20px;
}

.pt-contact-form.pt-white-bg select,
.pt-contact-form.pt-white-bg textarea,
.pt-contact-form.pt-white-bg select.wpcf7-form-control,
.pt-contact-form.pt-white-bg input.wpcf7-form-control {
    background-color: var(--white-color);
    color: var(--dark-color);
}

.pt-contact-form textarea {
    height: 130px;
}

.pt-contact-form.pt-white-bg select.wpcf7-form-control::-webkit-input-placeholder {
    color: red;
}

.pt-contact-form.pt-white-bg select.wpcf7-form-control:hover {
    border-color: var(--primary-color);
}

.pt-contact-form.pt-white-bg input.wpcf7-form-control.wpcf7-submit {
    background: var(--primary-color);
    color: var(--white-color);
    margin-bottom: 0;
}

.pt-contact-form.pt-white-bg input.wpcf7-form-control.wpcf7-submit:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

.pt-contact-form.pt-white-bg select.wpcf7-form-control {
    color: var(--secondary-color);
}

.pt-textarea-height .pt-contact-form.pt-white-bg textarea {
    height: 150px;
}

.pt-contact-form.pt-white-bg .wpcf7-spinner {
    position: absolute;
}


/*+++++++++++++++++++++++++++++++++++++++++++++++
FAQ
++++++++++++++++++++++++++++++++++++++++++++++++*/

.pt-accordion-block .pt-accordion-box {
    background: transparent;
    position: relative;
}

.pt-accordion-block .pt-accordion-box:last-child {
    margin-bottom: 0;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 30px 30px 0;
    cursor: pointer;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title i {
    opacity: 1;
    color: var(--white-color);
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: transparent;
    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 {
    position: absolute;
    top: 18px;
    right: 25px;
    opacity: 0;
    color: var(--dark-color);
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title i.inactive {
    opacity: 1;
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title i {
    color: var(--white-color);
    background: transparent;
}

.pt-accordion-block .pt-accordion-box .pt-accordion-details {
    padding: 0px 30px 25px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pt-accordion-block .pt-accordion-box .pt-accordion-details p {
    margin-bottom: 0;
    color: var(--white-color);
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title {
    background: transparent;
    border: none;
    padding-bottom: 15px;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title .ad-title-text {
    font-size: 22px;
    line-height: 30px;
    color: var(--white-color);
}

.pt-accordion-block .pt-accordion-box .pt-ad-title .ad-title-text .pt-number {
    margin-right: 10px;
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title .ad-title-text {
    color: var(--primary-color);
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title i {
    color: var(--primary-color);
}

.pt-grey-bg .pt-accordion-block .pt-accordion-box {
    margin-bottom: 15px;
}

.pt-grey-bg .pt-accordion-block .pt-accordion-box:last-child {
    margin-bottom: 0;
}

.pt-grey-bg .pt-accordion-block .pt-accordion-box .pt-ad-title {
    background: var(--grey-color);
    padding: 20px;
    border-radius: 5px;
}

.pt-grey-bg .pt-accordion-block .pt-accordion-box .pt-ad-title .ad-title-text {
    font-size: 20px;
    line-height: 28px;
    color: var(--dark-color);
}

.pt-grey-bg .pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title .ad-title-text {
    color: var(--white-color);
}

.pt-grey-bg .pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title {
    background: var(--dark-color);
    border: 1px solid var(--dark-color);
    border-radius: 0;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.pt-grey-bg .pt-accordion-block .pt-accordion-box .pt-ad-title .pt-icon-right {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--dark-color);
    color: var(--white-color);
    float: right;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    text-align: center;
    margin-top: -7px;
}

.pt-grey-bg .pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title .pt-icon-right {
    background: var(--primary-color);
}

.pt-grey-bg .pt-accordion-block .pt-accordion-box .pt-accordion-details {
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 0;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background: var(--grey-color);
}

.pt-grey-bg .pt-accordion-block .pt-accordion-box .pt-accordion-details p {
    color: var(--secondary-color);
}

.pt-grey-bg .pt-accordion-block .pt-accordion-box .pt-ad-title i {
    font-size: 18px;
    color: var(--white-color);
}

.pt-grey-bg .pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title i.inactive {
    color: var(--white-color);
}

.pt-grey-bg.pt-contact .pt-accordion-block .pt-accordion-box .pt-ad-title {
    background: var(--white-color);
}

.pt-grey-bg.pt-contact .pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title {
    background: var(--dark-color);
}

.pt-grey-bg.pt-contact .pt-accordion-block .pt-accordion-box .pt-accordion-details {
    background: var(--white-color);
}

.pt-style-2.pt-grey-bg .pt-accordion-block .pt-accordion-box .pt-ad-title {
    background: var(--white-color);
}

.pt-style-2.pt-grey-bg .pt-accordion-block .pt-accordion-box .pt-accordion-details {
    background: var(--white-color);
    border: none;
    padding: 0 20px 20px 20px;
}

.pt-style-2.pt-grey-bg .pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title {
    background: var(--white-color);
    border: transparent;
}

.pt-style-2.pt-grey-bg .pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title .ad-title-text {
    color: var(--primary-color);
}

.pt-style-2.pt-grey-bg .pt-accordion-block .pt-accordion-box .pt-ad-title .pt-icon-right {
    background: transparent;
}

.pt-style-2.pt-grey-bg .pt-accordion-block .pt-accordion-box .pt-ad-title i {
    color: var(--dark-color);
}

.pt-style-2.pt-grey-bg .pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title i {
    color: var(--primary-color);
}

@media(max-width:767px) {
    .pt-accordion-block .pt-accordion-box .pt-ad-title,
    .pt-accordion-block .pt-accordion-box .pt-accordion-details {
        padding: 15px;
    }
    .pt-accordion-block .pt-accordion-box .pt-ad-title .ad-title-text {
        font-size: 16px;
        line-height: 24px;
    }
    .pt-accordion-block .pt-accordion-box .pt-ad-title i {
        font-size: 18px;
        top: 10px;
    }
}

@media(max-width:479px) {
    .pt-accordion-block .pt-accordion-box .pt-ad-title {
        padding: 15px 30px 15px 15px;
    }
}


/*++++++++++++++++++++++++++++++++++++++
Portfoliobox
++++++++++++++++++++++++++++++++++++++++*/

.pt-portfoliobox-1 {
    background: var(--white-color);
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.pt-portfoliobox-1 .pt-portfolio-img {
    position: relative;
    overflow: hidden;
}

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

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

.pt-portfoliobox-1 .pt-portfolio-info {
    padding: 20px 0 0;
}

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

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

.pt-portfoliobox-1 .pt-portfolio-info p {
    margin-bottom: 0;
}

.pt-portfoliobox-1 .pt-portfolio-info .pt-button {
    margin-top: 30px;
}


/*===== Portfoliobox Hover Follow  =====*/

.pt-portfoliobox-1.pt-hover-follow {
    position: relative;
    overflow: inherit;
}

.pt-hover-follow .pt-portfolio-info {
    position: absolute;
    left: 105%;
    display: none;
    background: var(--dark-color);
    padding: 20px 30px;
    border-radius: 3px;
    min-width: 300px;
    z-index: 999;
}

.pt-hover-follow .pt-portfolio-info:hover {
    display: none !important;
}

.pt-hover-follow:hover .pt-portfolio-info {
    display: block;
}

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


/*===== Portfoliobox Hover fade  =====*/

.pt-portfoliobox-1.pt-hover-fade {
    text-align: center;
}

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

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

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

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

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

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

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

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


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

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

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


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

.pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info {
    padding: 30px;
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 1;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}

.pt-portfoliobox-1.pt-hover-slide:hover .pt-portfolio-info {
    opacity: 1;
}

.pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info h5 a,
.pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info .pt-portfolio-style-1-title a {
    color: var(--dark-color);
    position: relative;
    padding: 5px 15px;
}

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

.pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info .pt-portfolio-style-1-tag a {
    color: var(--dark-color);
    position: relative;
    padding: 5px 15px;
}

.pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info .pt-portfolio-style-1-tag a:after,
.pt-portfoliobox-1.pt-hover-slide .pt-portfolio-info h5 a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    background: var(--white-color);
    height: 100%;
    z-index: -1;
    transition: all 0.5s ease-in-out;
    border-radius: 5px;
}

.pt-portfoliobox-1.pt-hover-slide:hover .pt-portfolio-info .pt-portfolio-style-1-tag a:after,
.pt-portfoliobox-1.pt-hover-slide:hover .pt-portfolio-info h5 a:after {
    width: 100%;
}

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

.pt-portfoliobox-space .pt-grid-item {
    padding: 0 30px 45px;
    padding-bottom: 60px;
}

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


/*===== Portfoliobox Nav =====*/

.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav.disabled {
    display: none !important;
}

.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav button svg {
    fill: var(--dark-color);
}

.pt-portfolio-info-box {
    display: inline-block;
    width: 100%;
    background: var(--grey-color);
    padding: 30px;
}

.pt-porfolio-info-header h5 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 0;
}

.pt-porfolio-info .pt-info-list {
    margin: 0;
    padding: 0;
    display: flex;
}

.pt-porfolio-info .pt-info-list li {
    list-style: none;
    float: left;
    margin: 0;
    padding: 0;
    display: inline-block;
    width: 100%;
}

.pt-porfolio-info .pt-info-list li h5 {
    font-size: 22px;
    line-height: 30px;
}

.pt-porfolio-info .pt-info-list li span {
    color: var(--secondary-color);
    font-size: 16px;
}

.Projects-dts .pt-portfolio-block .pt-portfolio-info {
    padding-bottom: 0;
}


/* portfoliobox 2*/

.pt-portfoliobox-2 .protfolio-tabs-item {
    position: relative;
    border-bottom: 1px solid rgb(255, 255, 255, 0.1);
    cursor: pointer;
}

.pt-portfoliobox-2 .protfolio-tabs-item:last-child {
    border: none;
}

.pt-portfoliobox-2 .protfolio-tabs-item:last-child .protfolio-tabs-link {
    padding-bottom: 0;
}

.pt-portfoliobox-2 .protfolio-tabs-item .protfolio-tabs-link {
    width: 100%;
    padding: 60px 0;
    display: grid;
    align-items: center;
    grid-template-columns: 1.5fr 1.5fr 0.8fr;
}

.pt-portfoliobox-2 .protfolio-tabs-item:first-child .protfolio-tabs-link {
    padding-top: 15px;
}

.pt-portfoliobox-2 .pt-portfolio-img {
    position: relative;
}

.pt-portfoliobox-2 .pt-portfolio-img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 140px;
    height: 56px;
    border-radius: 5px;
    background: var(--primary-color);
    transform: scale(0) rotate(-30deg) translateY(-50%);
    transition: all 0.5s ease;
    z-index: 1;
}

.pt-portfoliobox-2 .protfolio-tabs-item:hover .pt-portfolio-img:before,
.pt-portfoliobox-2 .protfolio-tabs-item.active .pt-portfolio-img:before {
    transform: scale(1) rotate(-30deg) translateY(-50%);
}

.pt-portfoliobox-2 .pt-portfolio-img img {
    width: 350px;
    margin: 0 auto;
    display: block;
    border-radius: 5px;
}

.pt-portfoliobox-2 .portfolio-number {
    display: block;
    color: var(--white-color);
    font-weight: 700;
    font-size: 52px;
    line-height: 60px;
    margin-bottom: 10px;
}

.pt-portfoliobox-2 .portfolio-title {
    font-size: 28px;
    line-height: 36px;
    color: var(--white-color);
}

.pt-portfoliobox-2 .pt-btn-container {
    text-align: right;
}

.pt-portfoliobox-2 .pt-btn-container .pt-button.pt-button-icon {
    background: var(--white-color);
    width: 80px;
    height: 80px;
    line-height: 80px;
}

.pt-portfoliobox-2 .pt-btn-container .pt-button.pt-button-icon .pt-button-line {
    width: calc(30px - 1px);
    margin-right: -12px;
    margin-top: -2px;
}

.pt-portfoliobox-2 .pt-button.pt-button-icon i {
    font-size: 40px;
}

.pt-portfoliobox-2 .protfolio-tabs-item:hover .pt-button.pt-button-icon,
.pt-portfoliobox-2 .protfolio-tabs-item.active .pt-button.pt-button-icon {
    background: var(--primary-color);
    color: var(--dark-color);
}

.pt-portfoliobox-2 .protfolio-tabs-item:hover .pt-button.pt-button-icon .pt-button-line,
.pt-portfoliobox-2 .protfolio-tabs-item.active .pt-button.pt-button-icon .pt-button-line {
    background: var(--dark-color);
}

@media(max-width:1099px) {
    .pt-porfolio-info .pt-info-list li h5 {
        font-size: 18px;
        line-height: 26px;
    }
}

@media(max-width:1023px) {
    .pt-porfolio-info .pt-info-list {
        display: inline-block;
        width: 100%;
        margin: 0;
    }
    .pt-porfolio-info .pt-info-list li {
        display: inline-block;
        width: 33.333%;
        margin: 0 0 15px;
    }
    .pt-porfolio-info .pt-info-list li h5 {
        font-size: 22px;
        line-height: 30px;
    }
}

@media(max-width:767px) {
    .pt-portfoliobox-2 .protfolio-tabs-item .protfolio-tabs-link {
        display: block;
    }
    .pt-portfoliobox-2 .pt-portfolio-img {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .pt-portfoliobox-2 .pt-portfolio-img:before {
        display: none;
    }
    .pt-portfoliobox-2 .pt-portfolio-img img {
        width: 100%;
    }
    .pt-portfoliobox-2 .protfolio-tabs-item .protfolio-tabs-link {
        padding: 30px 0;
    }
    .pt-portfoliobox-2 .pt-btn-container {
        text-align: left;
    }
    .pt-porfolio-info .pt-info-list {
        display: inline-block;
        width: 100%;
        margin: 0;
    }
    .pt-porfolio-info .pt-info-list li {
        display: inline-block;
        width: 100%;
        margin: 0 0 15px;
    }
    .pt-porfolio-info .pt-info-list li:last-child {
        margin-bottom: 0;
    }
    .pt-portfoliobox-space .pt-grid-item {
        padding: 0 0 30px;
    }
    .pt-portfoliobox-space .pt-grid-item:nth-child(2) .pt-portfoliobox-1 {
        margin-top: 0;
    }
}

@media(max-width:576px) {
    .pt-portfoliobox-2 .portfolio-number {
        font-size: 42px;
        line-height: 50px;
    }
    .pt-portfoliobox-2 .portfolio-title {
        font-size: 24px;
        line-height: 32px;
    }
    .pt-portfoliobox-2 .pt-btn-container .pt-button.pt-button-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++
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-size: 16px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--title-fonts);
    letter-spacing: 1px;
    text-transform: capitalize;
    list-style: none;
    color: var(--dark-color);
    display: inline-block;
    cursor: pointer;
    padding: 12px 20px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    border-radius: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

.pt-grid.style-2 .pt-portfoliobox-1 .pt-portfolio-img {
    overflow: hidden;
}

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

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

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

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


/*=========*/

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

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

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

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

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

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


/* layout 2 */

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

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

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

@media(max-width:1365px) {
    .pt-col-3 {
        width: 33.33%;
    }
    .pt-masonry .ipt-lg-6 {
        width: 50%;
    }
    .pt-masonry .ipt-lg-3 {
        width: 33.33%;
    }
    .pt-masonry .ipt-lg-4 {
        width: 50%;
    }
    .pt-masonry .ipt-lg-8 {
        width: 50%;
    }
    .pt-filters .pt-filter-button-group ul li {
        margin-right: 10px;
    }
    .pt-col-3,
    .pt-col-4,
    .pt-masonry .ipt-lg-3 {
        width: 50%;
    }
}

@media(max-width:767px) {
    .pt-filters .pt-filter-button-group ul li {
        margin-right: 0;
        font-size: 14px;
        padding: 5px 15px;
    }
    .pt-col-6,
    .pt-col-4,
    .pt-col-3,
    .pt-masonry .ipt-lg-3,
    .pt-masonry .ipt-lg-6 {
        width: 100%;
        padding: 0 0 30px;
    }
    .pt-masonry .ipt-lg-4 {
        width: 100%;
        padding: 0 0 30px;
    }
    .pt-masonry .ipt-lg-8 {
        width: 100%;
    }
    .pt-grid.style-2 .pt-grid-item:nth-child(1) .pt-portfoliobox-1 {
        margin-top: 0;
    }
    .pt-grid.style-2 .pt-col-6 {
        padding: 0 0 30px;
    }
}

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

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


/* single project css */

.single-portfolio .pt-single-post-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    padding: 45px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 45px;
}

.single-portfolio .pt-masonry.pt-single-portfolio {
    margin-top: 45px;
    margin-left: -15px;
}

.pt-single-post-nav-label {
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 400;
    font-family: var(--title-fonts);
}

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

@media(max-width:767px) {
    .single-portfolio .pt-single-post-navigation .pt-single-post-nav-title h4 {
        font-size: 22px;
        line-height: 30px;
    }
    .pt-single-post-nav-label {
        font-size: 14px;
        line-height: 22px;
    }
    .pt-single-post-navigation+h2+.pt-masonry {
        margin-left: 0;
    }
}

@media(max-width:576px) {
    .single-portfolio .pt-single-post-navigation {
        display: block;
    }
    .single-portfolio .pt-single-post-navigation .pt-single-post-nav.pt--next {
        margin-top: 15px;
        display: block;
    }
}


/*=======================
  Timeline style-2 
  ======================*/

.pt-timeline-style-1.pt-timeline-style-1-slider {
    cursor: move;
}

.pt-timeline-style-1.pt-timeline-style-1-slider .pt-timeline-style-1 {
    text-align: center;
    display: grid;
}

.pt-timeline-style-1 .pt-timeline-media.pt-timeline-img img {
    border-radius: 100%;
    display: inline-block;
    width: 200px;
    height: 200px;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    margin-bottom: 45px;
}

.pt-timeline-style-1 .pt-timeline-content .pt-timeline-title {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 5px;
}

.pt-timeline-style-1 .pt-timeline-content {
    margin-top: 15px;
}

.pt-timeline-style-1 .pt-timeline-line {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.pt-timeline-style-1.pt-timeline-style-1-slider .owl-item:nth-of-type(even) .pt-timeline-style-1 .pt-timeline-media.pt-timeline-img {
    order: 2;
}

.pt-timeline-style-1.pt-timeline-style-1-slider .owl-item:nth-of-type(even) .pt-timeline-style-1 .pt-timeline-media.pt-timeline-img img {
    margin-bottom: 0;
    margin-top: 45px;
}

.pt-timeline-style-1 .pt-timeline-line {
    position: absolute;
    z-index: 2;
    width: 100%;
    left: 0;
    bottom: 50%;
}

.pt-timeline-style-1.pt-timeline-style-1-slider .owl-item:nth-of-type(even) .pt-timeline-media.pt-timeline-img {
    position: relative;
    margin-top: 45px;
    margin-bottom: 0;
    margin-top: 0;
}

.pt-timeline-style-1.pt-timeline-style-1-slider .owl-item:nth-of-type(even) .pt-timeline-media.pt-timeline-img:after {
    top: 10px;
}

.pt-timeline-style-1.pt-timeline-style-1-slider .owl-item:nth-of-type(even) .pt-timeline-media.pt-timeline-img:before {
    top: 0px;
}

.pt-timeline-style-1.pt-timeline-style-1-slider .owl-item:nth-of-type(even) .pt-timeline-style-1 .pt-timeline-content {
    margin-top: 0;
}

.pt-timeline-style-1.pt-timeline-style-1-slider .owl-item:nth-of-type(even) .pt-timeline-description {
    padding-bottom: 90px;
}

.pt-timeline-style-1 .pt-timeline-media.pt-timeline-img {
    position: relative;
    margin-bottom: 75px;
}

.pt-timeline-style-1 .pt-timeline-media.pt-timeline-img:before {
    content: '';
    width: 3px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translate(-1px, 30px);
}

.pt-timeline-style-1 .pt-timeline-media.pt-timeline-img:after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 100%;
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9;
}

.pt-timeline-style-1 .pt-timeline-description p {
    margin-bottom: 0;
    padding: 0 20px;
}

.pt-timeline-style-1 .pt-timeline-content {
    margin-top: 15px;
}

.pt-background-img {
    min-height: 695px;
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    transition: opacity .5s .2s;
    opacity: 1;
    background: var(--grey-color);
}

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

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

.pt-background-img-item {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 0;
    z-index: 5;
    height: 100%;
    transition: all 0.9s ease;
    cursor: pointer;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    width: 100px;
    overflow: hidden;
}

.pt-background-img .pt-background-img-item.active {
    width: calc((100vw + 2px) - 400px);
    border-left: 1px solid transparent;
}

.pt-background-link {
    padding: 0;
    position: absolute;
    left: 30px;
    top: 40px;
    transition: all 0.5s ease;
    z-index: 1;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.pt-background-img-number {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    font-family: var(--title-fonts);
    color: var(--dark-color);
}

.pt-background-img-item.active .pt-background-img-number {
    color: var(--white-color);
}

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

.pt-background-img-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 100%;
    right: 0;
    display: block;
    transition: all 0.8s ease;
    cursor: pointer;
    background: var(--primary-color);
}

.pt-background-img-item.active .pt-background-img-info {
    background: var(--primary-color);
}

.pt-background-img-title {
    margin-bottom: 0;
    color: var(--white-color);
    transition: all 0.5s ease;
    transform: rotate(180deg);
    position: absolute;
    bottom: 40px;
    writing-mode: vertical-rl;
    line-height: 36px;
    font-size: 28px;
    left: 30px;
}

.pt-background-img-title a {
    color: var(--dark-color);
}

.pt-background-img-item.active .pt-background-img-title a {
    color: var(--white-color);
}

.pt-background-content {
    align-items: center;
    padding-left: 100px;
    min-width: calc((100vw + 2px) - 415px);
}

.pt-background-leftimg img {
    width: 100%;
}

.pt-background-rightinfo {
    padding: 45px;
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: calc((100vw + 2px) - 515px);
    top: 0;
    background: var(--grey-color);
}

.pt-background-rightinfo .pt-rightinfo-title {
    font-size: 36px;
    line-height: 44px;
}

.pt-background-rightinfo .pt-rightinfo-subtitle {
    display: block;
    font-weight: 600;
    font-size: 24px;
    color: var(--primary-color);
}

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

@media(max-width: 1499px) {
    .pt-background-img {
        min-height: 500px;
    }
    .pt-background-content {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media(max-width: 1199px) {
    .pt-background-img-item {
        width: 80px;
    }
    .pt-background-img-info {
        width: 80px;
    }
    .pt-background-img-title {
        line-height: 32px;
        font-size: 24px;
        left: 24px;
    }
    .pt-background-link {
        left: 24px;
    }
    .pt-background-img .pt-background-img-item.active {
        width: calc((100vw + 2px) - 320px);
    }
    .pt-background-content {
        padding-left: 110px;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-right: 30px;
        min-width: calc((100vw + 2px) - 320px);
        display: block;
    }
    .pt-background-rightinfo {
        padding: 0;
        margin-top: 20px;
    }
}

@media(max-width: 767px) {
    .pt-background-rightinfo .pt-rightinfo-title {
        font-size: 24px;
        line-height: 32px;
    }
    .pt-background-rightinfo .pt-rightinfo-subtitle {
        font-size: 16px;
    }
    .pt-background-rightinfo {
        display: block;
    }
    .pt-background-rightinfo .pt-btn-container {
        margin-top: 10px;
        margin-bottom: 20px;
    }
}

@media(max-width: 479px) {
    .pt-background-content {
        display: none;
    }
    .pt-background-img-item {
        flex: 1;
    }
    .pt-background-img-info {
        width: 100%;
    }
    .pt-background-img-title {
        line-height: 28px;
        font-size: 20px;
        left: 35%;
    }
    .pt-background-link {
        left: 35%;
    }
    .pt-background-img-number {
        font-size: 20px;
        line-height: 28px;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++
Progressbar
++++++++++++++++++++++++++++++++++++++++++++++++*/


/*---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;
    border-radius: 5px;
}

.pt-progressbar-style-1 .pt-progressbar-content .bar-container {
    height: 8px;
    border-radius: 5px;
}

.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);
    font-weight: 700;
    letter-spacing: 1px;
    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: 700;
    font-family: var(--title-fonts);
    letter-spacing: 1px;
    color: var(--dark-color);
}

.pt-progressbar-style-1 .pt-progress-bar {
    display: inline-block;
    width: 100%;
    padding: 0;
    background: var(--primary-color);
    float: left;
    margin-top: 5px;
    border-radius: 5px;
}

.pt-progressbar-style-1 .pt-progress-bar span {
    display: inline-block;
    background: var(--white-color);
    float: left;
    border-radius: 5px;
}


/*+++++++++++++++++++++++++++++++++++++++++
Shop
++++++++++++++++++++++++++++++++++++++++*/

.woocommerce ul.products li.product .price span.woocommerce-Price-currencySymbol {
    margin-right: 3px;
}


/*+++++ Cart +++++*/

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-top: none;
    color: var(--secoundary-color);
}

.woocommerce-message {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.woocommerce-message::before,
.woocommerce-info::before {
    display: none;
}

.woocommerce .woocommerce-message a.button {
    background: var(--dark-color);
    font-weight: 500;
    color: var(--white-color);
    float: none;
    order: 1;
    line-height: normal;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 12px 24px;
}

.woocommerce .woocommerce-message a.button:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.woocommerce-info {
    padding: 0;
    background: transparent;
}

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

.woocommerce table.shop_table thead>tr {
    background: var(--grey-color);
    border-radius: 3px;
}

.woocommerce .woocommerce-notices-wrapper table.shop_table thead>tr {
    border-radius: 3px;
}

.woocommerce table.shop_table th {
    padding: 15px 30px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-color);
    text-align: center;
    border-bottom: 1px solid var(--grey-color);
}

.woocommerce table.shop_table {
    border-radius: 0;
    border: none;
    border-collapse: collapse;
}

.woocommerce table.shop_table td {
    padding: 15px 30px;
    text-align: center;
    border-top: none;
    border-bottom: 1px solid var(--grey-color);
}

.woocommerce table.shop_table td:first-child {
    border-left: none;
}

.woocommerce table.shop_table td a.remove {
    display: inline-block;
    font-size: 26px;
    width: 25px;
    height: 25px;
    line-height: 20px;
    border-radius: 0;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    width: 100px;
}

.woocommerce table.shop_table td a {
    text-decoration: none;
    color: var(--white-color);
}

.woocommerce a.remove {
    color: var(--dark-color) !important;
    font-weight: 400;
}

.woocommerce a.remove:hover {
    background: var(--grey-color);
    color: var(--dark-color) !important;
}

.woocommerce table.shop_table td.product-name .variation {
    text-align: center;
}

.woocommerce table.shop_table td.product-name .variation .variation-Color {
    float: none;
    float: none;
    font-weight: 400;
    color: var(--dark-color);
}

.woocommerce table.shop_table td.product-name .variation .variation-Color+.variation-Color {
    display: inline-block;
    color: var(--secondary-color);
}

.woocommerce table.shop_table td.product-quantity div.quantity {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    position: relative;
    margin-right: 10px;
    float: none;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    margin: 0;
    border-radius: 5px;
}

.woocommerce table.shop_table td.product-quantity div.quantity:hover input {
    color: var(--dark-color);
}

.woocommerce table.shop_table td.product-quantity div.quantity [type="button"] {
    background: none;
    color: var(--dark-color);
    width: 40px;
    font-size: 32px;
    line-height: normal;
    padding: 0;
    vertical-align: middle;
    font-weight: 400;
    vertical-align: middle;
    margin-top: -5px;
    font-family: var(--body-fonts);
}

.woocommerce table.shop_table td.product-quantity div.quantity [type="button"]:hover {
    color: var(--dark-color);
}

.woocommerce table.shop_table td.product-quantity div.quantity .plus[type="button"] {
    font-size: 24px;
    vertical-align: middle;
    margin-top: -4px;
}

.woocommerce table.shop_table td.product-quantity div.quantity .input-text {
    -webkit-appearance: none;
    padding: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 0;
    outline: 0;
    -webkit-appearance: none !important;
    background: transparent;
    border-radius: 0;
    float: none;
    font-weight: 500;
}

.woocommerce table.shop_table td.product-quantity div.quantity .pt-qty-btn {
    position: absolute;
    left: 0;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}

.woocommerce table.shop_table td.product-quantity div.quantity .pt-qty-btn i {
    font-family: "Font Awesome 5 Brands";
}

.woocommerce table.shop_table td.product-quantity div.quantity .pt-qty-btn.quantity-minus {
    right: 0;
    left: auto;
}

.woocommerce table.shop_table td.product-subtotal .woocommerce-Price-amount {
    color: var(--dark-color);
    font-weight: 600;
}

.woocommerce table.shop_table td.actions {
    padding: 30px 0;
    border-bottom: none;
}

.woocommerce table.shop_table td.actions .coupon {
    width: 50%;
    display: flex;
}

.woocommerce-page #content table.cart td.actions .coupon .input-text {
    width: 60%;
    background: var(--grey-color);
    padding-left: 15px;
    margin: 0;
    border: 1px solid var(--grey-color);
    border-radius: 0;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.woocommerce-page #content table.cart td.actions .coupon .input-text:hover,
.woocommerce-page #content table.cart td.actions .coupon .input-text:focus {
    border: 1px solid var(--primary-color);
}

.woocommerce-page #content table.cart td.actions .coupon .button {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.woocommerce-page #content table.cart td.actions .button {
    height: 54px;
    line-height: 54px;
    padding: 0 40px;
    text-transform: capitalize;
}

.woocommerce-page #content table.cart td.actions .button:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
    margin-top: 45px;
}

.woocommerce .cart-collaterals .cart_totals {
    width: 100%;
    float: none;
}

.woocommerce .cart-collaterals .cart_totals h2 {
    margin: 0;
    width: 25%;
    float: left;
    padding-top: 20px;
    font-size: 30px;
    line-height: 38px;
}

.woocommerce-cart .cart-collaterals table.shop_table {
    width: 45%;
    float: right;
    margin-bottom: 30px;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr th,
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr td {
    border-top: none;
    color: var(--secondary-color);
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total th,
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total td {
    color: var(--dark-color);
    font-weight: 600;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total td strong {
    font-weight: 600;
}

.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
    width: 45%;
    float: right;
    clear: both;
    padding: 0;
}

.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout a.button.alt {
    text-transform: capitalize;
    margin: 0;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
    font-weight: 400;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--dark-color);
    color: var(--white-color);
    border-radius: 0;
    font-weight: 400;
    font-size: inherit;
    padding: 0px 30px;
    text-transform: capitalize;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: var(--primary-color);
}

.woocommerce div.product form.cart div.quantity {
    border: 1px solid var(--grey-color);
    background: var(--grey-color);
    position: relative;
    margin-right: 15px;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    padding: 2px 0;
    border-radius: 5px;
}

.woocommerce div.product form.cart div.quantity.hidden {
    display: none;
}

.woocommerce div.product form.cart table div.quantity {
    display: flex;
}

.woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label a {
    text-decoration: none;
    color: inherit;
}

.woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label a:hover {
    color: var(--primary-color);
}

.woocommerce div.product form.cart table.group_table {
    border: 1px solid var(--grey-color);
    margin-bottom: 30px;
    border-right: 0;
    border-left: 0;
    font-size: 14px;
    line-height: 22px;
    color: var(--dark-color);
}

.woocommerce div.product form.cart table.group_table .quantity {
    border: none;
}

.woocommerce div.product form.cart table.group_table tr {
    border-bottom: 1px solid var(--grey-color);
}

.woocommerce div.product form.cart table.group_table tr:last-child {
    border: none;
}

.woocommerce div.product form.cart table.group_table td {
    vertical-align: middle;
}

.woocommerce div.product form.cart table.group_table td {
    padding: 8px 0;
}

.woocommerce div.product form.cart table.group_table td:first-child {
    width: auto;
}

.woocommerce div.product form.cart table.group_table p.stock {
    margin-bottom: 0;
}

.woocommerce div.product form.cart .single-add-to-cart-wrapper {
    display: -webkit-box;
    display: flex;
    justify-content: center;
}

.woocommerce div.product form.cart div.quantity [type="button"] {
    transition: none;
    background: none;
    color: var(--dark-color);
    width: 40px;
    font-weight: 400;
    font-size: 32px;
    line-height: 45px;
    padding: 0;
    vertical-align: middle;
}

.woocommerce div.product form.cart div.quantity .plus[type="button"] {
    font-size: 24px;
}

.woocommerce div.product form.cart div.quantity [type="button"]:hover {
    color: var(--dark-color);
}

.woocommerce div.product form.cart div.quantity .input-text {
    -webkit-appearance: none;
    padding: 0;
    width: 56px;
    height: 50px;
    line-height: 50px;
    vertical-align: top;
    text-align: center;
    float: none;
    border: 0;
    outline: 0;
    -webkit-appearance: none !important;
    background: transparent;
    border-radius: 0;
    text-align: center;
    font-weight: 500;
}

.woocommerce div.product form.cart div.quantity input[type=number]::-webkit-inner-spin-button,
.woocommerce div.product form.cart div.quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    margin: 0;
}

.woocommerce div.product form.cart div.quantity .pt-qty-btn {
    position: absolute;
    left: 0;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}

.woocommerce div.product form.cart div.quantity .pt-qty-btn i {
    font-family: "Font Awesome 5 Brands";
}

.woocommerce div.product form.cart div.quantity .pt-qty-btn.quantity-minus {
    right: 0;
    left: auto;
}

@media (max-width:1199px) {
    .woocommerce-cart .cart-collaterals table.shop_table {
        width: 75%;
    }
    .woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
        width: 75%;
    }
}

@media (max-width:768px) {
    .woocommerce table.shop_table td.actions .coupon {
        width: 100%;
    }
    .woocommerce table.shop_table_responsive tr td::before,
    .woocommerce-page table.shop_table_responsive tr td::before {
        font-weight: 600;
        font-size: 16px;
        color: var(--dark-color);
    }
    .woocommerce .cart-collaterals,
    .woocommerce-page .cart-collaterals {
        margin-top: 0;
    }
    .woocommerce .cart-collaterals .cart_totals h2 {
        float: none;
        width: 100%;
    }
    .woocommerce-cart .cart-collaterals table.shop_table {
        width: 100%;
        margin-top: 30px;
    }
    .woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
        width: 100%;
        margin-left: 0;
    }
}


/*+++++ Checkout +++++*/

.woocommerce form .form-row {
    padding: 0;
    margin: 0 0 15px;
    display: block;
    width: 100%;
}

.woocommerce form.woocommerce-checkout .form-row textarea.input-text {
    height: 150px;
}

.woocommerce form.woocommerce-checkout .form-row textarea:focus,
.woocommerce form.woocommerce-checkout .form-row textarea:hover,
.woocommerce form.woocommerce-checkout .form-row input:focus,
.woocommerce form.woocommerce-checkout .form-row input:hover {
    border: 1px solid var(--primary-color);
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--dark-color);
    color: var(--white-color);
    border-radius: 0;
    font-weight: 400;
    padding: 0px 30px;
    height: 50px;
    line-height: 50px;
    text-transform: capitalize;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--primary-color);
}

.woocommerce .woocommerce-checkout .col2-set .col-1 {
    width: 60%;
}

.woocommerce .woocommerce-checkout .col2-set .col-2 {
    width: 35%;
}

.grouped_form .group_table .add_to_cart_button {
    background: var(--grey-color);
    color: var(--dark-color);
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    padding: 0 15px;
}

.woocommerce div.product form.cart table.group_table td a.button {
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
}

.woocommerce-checkout h3 {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 32px;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table th,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
    text-align: left;
    border-top: none;
    padding: 15px 10px;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table .cart-subtotal th {
    color: var(--secondary-color);
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table .order-total td strong {
    font-weight: 600;
    color: var(--dark-color);
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    float: none;
}

.woocommerce form .form-row textarea {
    padding: 20px;
    height: 8em;
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--grey-color);
    border-radius: 0;
    height: 52px;
    padding: 0px 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
}

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

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

.select2-container--open .select2-dropdown {
    border: 1px solid var(--primary-color);
    border-top: 0;
    border-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 18px;
    right: 15px;
}

.select2-container--default .select2-results>.select2-results__options {
    left: 0;
    display: inline-block;
    width: 100%;
}

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

.woocommerce-checkout #payment {
    background: var(--grey-color);
}

@media(max-width:991px) {
    .woocommerce .woocommerce-checkout .col2-set .col-1 {
        width: 50%;
    }
    .woocommerce .woocommerce-checkout .col2-set .col-2 {
        width: 45%;
    }
}

@media(max-width:767px) {
    .woocommerce .woocommerce-checkout .col2-set .col-1 {
        width: 100%;
    }
    .woocommerce .woocommerce-checkout .col2-set .col-2 {
        width: 100%;
    }
    #order_review_heading {
        margin-top: 30px;
    }
}


/*+++++ Order Received +++++*/

.woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-order-downloads {
    margin-bottom: 45px;
}

.woocommerce ul.order_details li {
    text-transform: capitalize;
    font-size: 16px;
}

.woocommerce .woocommerce-customer-details .woocommerce-column__title {
    margin-bottom: 15px;
}

.woocommerce ul.order_details li strong {
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 400;
    margin-top: 5px;
}

.woocommerce-order h2 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 32px;
}

.woocommerce table.shop_table.woocommerce-table th,
.woocommerce table.shop_table.woocommerce-table td {
    text-align: left;
}

.woocommerce ul.order_details {
    background: var(--grey-color);
    padding: 30px;
}

.woocommerce .woocommerce-order-details table.shop_table tfoot th {
    border-top: none;
    font-weight: 600;
}

.woocommerce .woocommerce-order-details table.shop_table tfoot td {
    border-top: none;
}

.woocommerce .woocommerce-customer-details address {
    padding: 30px;
    border-radius: 0;
    border: 1px solid var(--grey-color);
    border-width: 1px;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    opacity: 1;
    font-weight: 400;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    text-decoration: none;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    font-weight: 400;
}

.product_meta .sku_wrapper,
.product_meta .posted_in,
.product_meta .tagged_as {
    color: var(--dark-color);
}

.product_meta .sku_wrapper span.sku {
    color: var(--secondary-color);
    margin-left: 5px;
    font-weight: 400;
    font-family: var(--body-font);
}

.woocommerce div.product .product_meta>span {
    display: block;
    color: var(--dark-color);
    font-weight: 600;
}

.product_meta .sku_wrapper a,
.product_meta .posted_in a,
.product_meta .tagged_as a {
    color: var(--secondary-color);
    font-family: var(--body-font);
    font-weight: 400;
    text-transform: capitalize;
    margin-left: 5px;
}

.woocommerce ul.products li.product .price del {
    opacity: 1;
}

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

.woocommerce ul.products li.product .price ins span.woocommerce-Price-amount.amount {
    font-weight: 600;
    text-decoration: none;
    color: var(--dark-color);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.woocommerce div.product .pt-single-product-share {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.woocommerce div.product .pt-single-product-share .pt-share-name {
    color: var(--dark-color);
    display: inline-block;
    margin-right: 10px;
    font-weight: 600;
}

.woocommerce div.product .pt-single-product-share .pt-share-itmes {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.woocommerce div.product .pt-single-product-share .pt-share-itmes li {
    display: inline-block;
    margin-right: 10px;
}

.woocommerce div.product .pt-single-product-share .pt-share-itmes li a {
    text-align: center;
    display: inline-block;
    color: var(--secondary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background: var(--grey-color);
    line-height: 40px;
}

.woocommerce div.product .pt-single-product-share .pt-share-itmes li a:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.select2-container--default .selection .select2-selection--single .select2-selection__arrow b {
    top: 30%
}

.woocommerce form.woocommerce-checkout .form-row select:focus,
.woocommerce form.woocommerce-checkout .form-row select:hover,
.woocommerce form.woocommerce-checkout .form-row select.form-control:focus,
.woocommerce form.woocommerce-checkout .form-row select.form-control:hover {
    border: 1px solid var(--primary-color);
}

.woocommerce select:focus,
.woocommerce .form-row select:hover {
    border: 1px solid var(--primary-color);
}

label {
    color: var(--dark-color);
}

.woocommerce div.product div.images .flex-control-thumbs {
    margin-left: -10px;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    padding-left: 10px;
    padding-top: 10px;
}

.woocommerce div.product.product-type-grouped div.images .woocommerce-product-gallery__image:nth-child(n+2) {
    padding: 0;
}

@media(max-width: 1024px) {
    .woocommerce ul.products li.product .pt-product-item .pt-product-img-inner .pt-product-content {
        position: absolute;
        bottom: 0;
        width: 100%;
        opacity: 1;
    }
    .woocommerce ul.products li.product .pt-product-item .pt-product-img-inner .pt-product-content a {
        transform: translateY(0px) !important;
    }
}


/*================================================
intro
================================================*/

.intro-pagination .swiper-pagination {
    bottom: -20px !important;
}

.intro-features figure.elementor-image-box-img {
    width: 120px !important;
    height: 120px;
    line-height: 120px;
    background: var(--white-color);
}

.intro-features figure.elementor-image-box-img img {
    width: 60px;
}

.pt-home-layout .pt-image-box-img {
    overflow: hidden;
    position: relative;
    box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, 0.1);
}

.pt-home-layout .pt-image-box-img img {
    transition: all 0.5s ease;
    width: 100%;
}

.pt-home-layout .pt-image-box-img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pt-home-layout .pt-btn-container {
    position: absolute;
    bottom: -100px;
    text-align: center;
    transition: all 0.5s ease;
    width: 100%;
    z-index: 2;
}

.pt-home-layout .pt-image-box-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: var(--dark-color);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 1;
}

.pt-home-layout .pt-image-box-img:hover:before {
    opacity: 0.4;
}

.pt-home-layout .pt-image-box-img:hover .pt-btn-container {
    bottom: 30px;
}

.pt-home-layout .pt-section-title {
    text-align: center;
    font-size: 28px;
    line-height: 36px;
    margin-top: 20px;
}

.columns-3.footer-gallery .wp-block-image.size-full {
    width: calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px)* .66667);
}

rs-module-wrap {
    left: 0 !important;
}


/*================================================
  home-7,8,9 
================================================*/


/*================================================
service 
================================================*/


/*===== Service Style 7 =====*/

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

.pt-service-box.pt-style-7 {
    position: relative;
}

.pt-service-box.pt-style-7::before {
    content: "";
    position: absolute;
    right: -45px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #0000001f;
}

.pt-service-box.pt-style-7:nth-child(3n)::before {
    display: none;
}

.pt-service-box.pt-style-7 .pt-service-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pt-service-box.pt-style-7 .pt-service-info .pt-service-box-icon {
    font-size: 50px;
    line-height: 58px;
    color: var(--primary-color);
}

.pt-service-box.pt-style-7 .pt-service-info .pt-service-box-title {
    font-size: 28px;
    line-height: 32px;
    transition: all 0.5s ease;
}

.pt-service-box.pt-style-7.pt-active .pt-service-info .pt-service-box-title {
    color: var(--primary-color);
}

.pt-service-box.pt-style-7 .pt-service-box-description {
    margin-bottom: 0;
    padding-bottom: 60px;
}

.pt-service-box.pt-style-7:nth-child(4) .pt-service-box-description,
.pt-service-box.pt-style-7:nth-child(5) .pt-service-box-description,
.pt-service-box.pt-style-7:nth-child(6) .pt-service-box-description {
    padding-bottom: 0;
}

.pt-service-box.pt-style-7 .pt-service-img-hover {
    width: 300px;
    border-radius: 5px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0) rotate(15deg);
    transition: all 0.5s ease;
    overflow: hidden;
}

.pt-service-box.pt-style-7 .pt-service-img-hover img {
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-service-box.pt-style-7.pt-active .pt-service-img-hover,
.pt-service-box.pt-style-7:hover .pt-service-img-hover {
    transform: translate(-50%, -45%) scale(1) rotate(15deg);
}

@media (max-width: 1200px) {
    .pt-service-box-7-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0 90px;
        justify-items: center;
    }
    .pt-service-box.pt-style-7::before {
        content: none;
    }
}

@media (max-width: 767px) {
    .pt-service-box-7-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 45px;
    }
    .pt-service-box.pt-style-7 .pt-service-info .pt-service-box-title {
        font-size: 22px;
        line-height: 30px;
    }
    .pt-service-box.pt-style-7 .pt-service-box-description {
        padding-bottom: 20px;
    }
    .pt-service-box.pt-style-7:nth-child(4) .pt-service-box-description,
    .pt-service-box.pt-style-7:nth-child(5) .pt-service-box-description,
    .pt-service-box.pt-style-7:nth-child(6) .pt-service-box-description {
        padding-bottom: 20px;
    }
    .pt-service-box.pt-style-7 .pt-service-img-hover,
    .pt-service-box.pt-style-7.pt-active .pt-service-img-hover,
    .pt-service-box.pt-style-7:hover .pt-service-img-hover {
        width: auto;
        position: relative;
        top: initial;
        left: initial;
        transform: none;
    }
    .pt-service-box.pt-style-7 .pt-service-img-hover img {
        width: 100%;
        -webkit-mask-position: left;
    }
}


/*===== Service Style 10 =====*/

.pt-10 .pt-service-box {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.pt-10 .pt-service-box .pt-service-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
}

.pt-10 .pt-service-box.pt-even .pt-service-box-info {
    margin-right: 0;
    text-align: left;
}

.pt-10 .pt-service-box .pt-service-box-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 0;
}

@media(max-width: 1024px) {
    .pt-service-box.pt-style-3.pt-even .pt-service-box-info {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }
}

@media(max-width: 1024px) {
    .pt-10 .pt-service-box .pt-service-box-title {
        font-size: 20px;
        line-height: 28px;
    }
}


/*================================================
testimonial
================================================*/


/*===== testimonial-box-slider stle-5 =====*/

.pt-testimonial-box-slider.pt-style-5 .owl-nav {
    display: none;
}

.pt-testimonial-box.pt-style-5 {
    padding: 30px 20px;
    background-color: var(--grey-color);
    border-radius: 5px;
}

.pt-testimonial-box.pt-style-5 .pt-testimonial-star {
    font-size: 20px;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.pt-testimonial-box.pt-style-5 .pt-testimonial-description {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}

.pt-testimonial-box.pt-style-5 .pt-testimonial-media {
    display: flex;
    position: relative;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.pt-testimonial-box.pt-style-5 .pt-testimonial-media .pt-testimonial-img {
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-testimonial-box.pt-style-5 .pt-testimonial-media .pt-testimonial-img img {
    width: 80px;
}

.pt-testimonial-box.pt-style-5 .pt-testmonial-title {
    font-size: 22px;
    line-height: 30px;
}

.pt-testimonial-box.pt-style-5 .pt-testimonial-media .pt-testimonial-meta span {
    color: var(--primary-color);
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--title-fonts);
    text-transform: capitalize;
}

@media(max-width:767px) {
    .pt-testimonial-box.pt-style-5 .pt-testimonial-star {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}


/*=====  Testimonial-box Style 6 =====*/

.pt-testimonial-box.pt-style-6 {
    padding: 45px;
    background-color: var(--white-color);
    border-radius: 5px;
}

.pt-testimonial-box.pt-style-6 .pt-testimonial-content .pt-testimonial-description {
    margin-bottom: 45px;
    margin-top: 60px;
    color: var(--secondary-color);
}

.pt-testimonial-box.pt-style-6 .pt-testimonial-content .pt-testimonial-box-star {
    margin-bottom: 15px;
    color: var(--primary-color);
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.pt-testimonial-box.pt-style-6 .pt-testimonial-media .pt-quote {
    font-size: 55px;
    line-height: 62px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.pt-testimonial-box.pt-style-6 .pt-testimonial-media .pt-testimonial-box-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.pt-testimonial-box.pt-style-6 .pt-testimonial-media .pt-testimonial-box-meta .pt-testimonial-box-designation {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--title-fonts);
}

@media(max-width:767px) {
    .pt-testimonial-box.pt-style-6 {
        padding: 30px 15px;
    }
}

@media(max-width:479px) {
    .pt-testimonial-box.pt-style-6 .pt-testimonial-content .pt-testimonial-description {
        margin-bottom: 20px;
        margin-top: 30px;
    }
}


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


/*===== Service Style - 8 =====*/

.pt-service-box-8-list {
    display: flex;
    flex-wrap: wrap;
    gap: 75px 45px;
    justify-content: center;
}

.pt-service-box.pt-style-8 {
    display: inline-block;
    position: relative;
}

.pt-service-box.pt-style-8 .pt-service-box-info {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pt-service-box.pt-style-8 .pt-service-box-info .pt-service-box-icon {
    position: relative;
    font-size: 60px;
    line-height: 68px;
    color: var(--primary-color);
    transition: all 0.5s ease;
}


/* slash */

.pt-service-box.pt-style-8 .pt-service-box-icon::after {
   color: var(--dark-color);
    content: "";
    position: absolute;
    right: -53%;
    top: 57%;
    height: 45px;
    width: 3px;
    background: #000;
    transform: translate(-50%, -50%) rotate(30deg);
}

.pt-service-box.pt-style-8 .pt-service-box-title {
    font-size: 32px;
    line-height: 40px;
    transition: all 0.5s ease;
}

.pt-service-box.pt-style-8.pt-active .pt-service-box-title {
    color: var(--primary-color);
}

.pt-service-box.pt-style-8 .pt-service-box-media {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    max-width: 80%;
    min-width: 260px;
    transition: all 0.5s ease;
    border-radius: 5px;
    overflow: hidden;
    z-index: 9;
}

.pt-service-box.pt-style-8.pt-active .pt-service-box-media {
    transform: translate(-20%, -30%) scale(1);
}

.pt-service-box.pt-style-8 .pt-service-box-media img {
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

@media(max-width:1023px) {
    .pt-service-box-8-list {
        gap: 60px 45px;
    }
    .pt-service-box.pt-style-8 .pt-service-box-media {
        min-width: 230px;
    }
}

@media(max-width:767px) {
    .pt-service-box.pt-style-8 .pt-service-box-title {
        font-size: 28px;
        line-height: 36px;
    }
    .pt-service-box.pt-style-8 .pt-service-box-media {
        min-width: 200px;
    }
}

@media(max-width:379px) {

    .pt-service-box-8-list {
        justify-content: left;
    }

    .pt-service-box.pt-style-8 .pt-service-box-info {
        gap: 15px;
    }

    .pt-service-box.pt-style-8 .pt-service-box-title {
        font-size: 22px;
        line-height: 30px;
    }
    .pt-service-box-icon::after {
        content: none;
        display: none;
    }

}


/*===== Service Style - 9 =====*/

.pt-service-slick-slider {
    display: grid;
    grid-template-columns: calc(450px) calc(100% - 450px);
    align-items: center;
}

.pt-service-slick-slider .pt-content-column {
    margin-left: 45px;
}

.pt-service-slick-slider .slick-slider-thumb .slick-track {
    width: 100% !important;
    transform: inherit !important;
}

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

.pt-service-slick-slider .slick-slider-thumb .slick-track .slick-slide {
    width: 100% !important;
}

.pt-service-slick-slider .slick-slider-main .slick-arrow {
    display: none !important;
}

.pt-service-main.pt-style-9 {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(13, 13, 13, 0.1);
}

.pt-service-slick-slider .pt-thumbs-column .slick-slide:last-child .pt-service-main.pt-style-9 {
    border-bottom: 1px solid rgba(13, 13, 13, 0.1);
}

.pt-service-main.pt-style-9 .pt-service-box-title {
    transition: all 0.5s ease;
}

.pt-service-main.pt-style-9 .pt-service-box-number {
    font-size: 18px;
    color: var(--dark-color);
    line-height: 1;
    transition: all 0.5s ease;
}

.pt-service-main.pt-style-9 .pt-service-box-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.slick-slide.slick-current .pt-service-main.pt-style-9 .pt-service-box-number,
.slick-slide.slick-current .pt-service-main.pt-style-9 .pt-service-box-title {
    color: var(--primary-color);
}

.slick-slide .pt-button.pt-button-rounded {
    visibility: hidden;
    transform: scale(0);
    transition: all 0.5s ease;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    width: 50px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    align-items: center;
    align-content: center;
    text-align: center;
}

.slick-slide.slick-current .pt-button.pt-button-rounded {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1);
    visibility: visible;
}

.slick-slide.slick-current .pt-button .pt-button-block {
    display: flex;
    justify-content: center;
}

.slick-slide.slick-current .pt-button.pt-button-rounded .pt-button-block .icon {
    width: auto;
    height: auto;
    margin: 0;
}

.slick-slide.slick-current .pt-button.pt-button-rounded:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.pt-service-box.pt-style-9 {
    background: var(--grey-color);
    padding: 30px;
    border-radius: 5px;
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1.1fr;
    position: relative;
    transition: all 0.5s ease;
}

.pt-service-box.pt-style-9 .pt-service-box-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.pt-service-box.pt-style-9 .pt-service-box-info .pt-service-icon {
    width: 90px;
    height: 90px;
    font-size: 40px;
    line-height: 90px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}

.pt-service-box.pt-style-9 .pt-service-box-info .pt-service-icon i::before {
    line-height: inherit;
}

.pt-service-box.pt-style-9 .pt-service-box-info .pt-service-description {
    margin-bottom: 0;
}

.pt-service-box.pt-style-9 .pt-service-box-info .pt-service-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pt-service-box.pt-style-9 .pt-service-box-info .pt-service-list .pt-service-item {
    display: inline-flex;
    align-items: baseline;
    font-size: 16px;
    line-height: 24px;
    padding: 5px 15px;
    color: var(--dark-color);
    background: var(--white-color);
    border-radius: 5px;
}

.pt-service-box.pt-style-9 .pt-service-box-info .pt-service-list .pt-service-item span {
    position: relative;
    padding-left: 20px;
}

.pt-service-box.pt-style-9 .pt-service-box-info .pt-service-list .pt-service-item span::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: var(--primary-color);
    border-radius: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.pt-service-box.pt-style-9 .pt-service-box-info .pt-service-list .pt-service-item i {
    color: var(--primary-color);
}

.pt-service-box.pt-style-9 .pt-service-box-info .pt-service-list .pt-service-item i::before {
    line-height: inherit;
}

.pt-service-box.pt-style-9 .pt-service-box-media {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.pt-service-box.pt-style-9 .pt-service-box-media img {
    /* transform: scale(1); */
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.5s ease;
}


/* .pt-service-box.pt-style-9 .pt-service-box-media:hover img {
    transform: scale(1.1);
} */


/* .pt-service-box.pt-style-9 .pt-service-box-media:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.pt-service-box.pt-style-9 .pt-service-box-media:hover:after {
    height: 250%;
    transition: all 0.4s linear !important;
    background-color: transparent;
} */

@media(max-width:1365px) {
    .pt-service-slick-slider {
        grid-template-columns: calc(380px) calc(100% - 380px);
    }
    .pt-service-box.pt-style-9 {
        gap: 20px;
        grid-template-columns: 1.2fr 1fr;
    }
}

@media(max-width:1023px) {
    .pt-service-slick-slider {
        grid-template-columns: 100% 100%;
        gap: 30px;
    }
    .pt-service-slick-slider .pt-content-column {
        margin-left: 0;
        grid-row: 2;
    }
    .pt-service-box.pt-style-9 {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:767px) {
    .pt-service-box.pt-style-9 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pt-service-main.pt-style-9 .pt-service-box-title {
        font-size: 18px;
        line-height: 26px;
    }
    .pt-service-main.pt-style-9 .pt-button.pt-button-rounded {
        width: 42px;
        height: 42px;
        line-height: 42px;
    }
}

@media(max-width:576px) {
    .pt-service-main.pt-style-9 {
        display: flex;
        gap: 10px;
        padding: 20px 0;
    }
    .pt-service-main.pt-style-9 .pt-service-box-content {
        gap: 10px;
    }
}

@media(max-width:397px) {
    .pt-service-box.pt-style-9 {
        padding: 30px 20px 20px;
    }
    .pt-service-box.pt-style-9 .pt-service-box-info {
        gap: 20px;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Team slider
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .team-inner-img {
    position: relative;
    overflow: hidden;
    -webkit-mask-size: contain;
    -webkit-mask-position: top center;
    -webkit-mask-repeat: no-repeat;
    height: 400px;
}

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .team-inner-img img {
    width: 100%;
    border-radius: 5px;
}

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .team-inner-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.5s ease;
    border-radius: 5px;
}

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .team-inner-img:hover:before {
    visibility: visible;
    opacity: 1;
}

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .pt-team-icons {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .team-inner-img:hover .pt-team-icons {
    bottom: 45px;
    opacity: 1;
    visibility: visible;
}

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .pt-team-icons ul {
    padding: 0;
    margin: 0;
}

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .pt-team-icons ul li {
    list-style: none;
    display: inline-block;
}

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .pt-team-icons ul li {
    margin-right: 15px;
}

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .pt-team-icons ul li:last-child {
    margin-right: 0;
}

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .pt-team-icons ul li a {
    color: var(--white-color);
    text-align: center;
    transition: all 0.5s ease;
    display: inline-block;
}

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .pt-team-icons ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .pt-team-info {
    margin-top: 10px;
    text-align: center;
}

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .pt-member-name {
    font-size: 26px;
    line-height: 34px;
}

.pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .pt-team-info .pt-team-designation {
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    text-transform: capitalize;
    color: var(--primary-color);
    font-family: var(--title-fonts);
}

@media(max-width:1024px) {

        .pt-team-box-slider.pt-team-style-2 .owl-nav {
        display: none;
        }

    .pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .team-inner-img {
        height: 270px;
    }
}

@media(max-width:767px) {
    .pt-team-box-slider.pt-team-style-2 .pt-team-box.pt-style-2 .team-inner-img {
        height: 500px;
    }
}


/*+++++++++++++++++++++++++++++++++
Menu Price
+++++++++++++++++++++++++++++++++++++++++*/

.pt-food-price-item {
    clear: both;
    margin-bottom: 45px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    width: 100%;
}

.pt-food-price-item:last-child {
    margin-bottom: 0;
}

.pt-food-price-item .pt-food-price-hoverimg {
    position: absolute;
    z-index: 9;
    width: 160px;
    height: 160px;
    transition: all 0.5s ease;
    left: 60%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

.pt-food-price-item .pt-food-price-hoverimg img {
    width: 100%;
    height: 100%;
    border: 1px solid rgb(13, 13, 13, 0.1);
}

.pt-food-price-item:hover .pt-food-price-hoverimg {
    opacity: 1;
    left: 50%;
}

.pt-food-price-item .pt-food-price-img {
    float: left;
    width: 80px;
}



.pt-food-price-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 45px;
    border-bottom: 1px solid rgb(13, 13, 13, 0.1);
}

.pt-food-title {
    font-size: 22px;
    line-height: 30px;
}

.pt-food-price-line {
    height: 1px;
    width: 100%;
    border-bottom: 1px solid var(--primary-color);
    flex: 1;
    margin-top: 10px;
    margin: 0 10px;
    position: relative;
    bottom: -15px;
    opacity: 0.7;
    display: none;
}

.pt-food-price-main {
    font-family: var(--title-fonts);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 30px;
}

.pt-dubble-line .pt-food-price-content {
    padding: 10px 15px 0px 15px;
}

.pt-dubble-line .pt-food-price-line:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    border: 1;
    border-bottom: 1px solid var(--primary-color);
    bottom: -8px;
}

@media(max-width:767px) {

    .pt-food-price-item {
        margin-bottom: 30px;
    }

    .pt-food-price-top {
        padding-bottom: 20px;

    }

    .pt-food-price-item .pt-food-price-hoverimg {
        position: relative;
        left: inherit;
        top: inherit;
        transform: translateY(0);
        opacity: 1;
        margin-bottom: 20px;
    }

    .pt-food-price-item:hover .pt-food-price-hoverimg {
    left: inherit;
}
}

@media(max-width:479px) {
    .pt-food-price-line {
        display: none;
    }
    .pt-food-price-top {
        display: block;
    }
}

/* client */

.pt-client-box.pt-client-style-1 .owl-nav {
    display: none;
}

/*------animation------- */


/* animation-1 */

.pt-fly-animation1 {
    pointer-events: none;
    animation: pt-fly 14s ease-in-out infinite;
}

.pt-fly-animation1 {
    animation: pt-fly-io 4s ease-in-out infinite;
}

@keyframes pt-fly-io {
    0% {
        opacity: 1;
        transform: translateX(-120px);
    }
    30% {
        opacity: 1;
        transform: translateY(80px);
    }
    60% {
        opacity: 1;
        transform: translateX(-70);
    }
    100% {
        opacity: 1;
        transform: translateX(120px);
    }
}

/* animation-2 */

.pt-fly-animation2 {
    animation: pt-fly-animation2 18s infinite linear;
}

@keyframes pt-fly-animation2 {
    from {
        left: 30%;
    }
    to {
        left: 10%;
    }
}

/* animation-3 */


.pt-fly-animation3 {
    animation: pt-fly-animation3 5s infinite linear;
}


@keyframes pt-fly-animation3 {
    from {
        right: 10%;
    }
    to {
        right: 20%;
    }
}

/* animation-4 */

.pt-fly-animation4 {
    animation: pt-fly-animation4 5s infinite linear;
}

@keyframes pt-fly-animation4 {
    from {
        left: 10%;
    }
    to {
        left: 20%;
    }
}

@media(max-width: 767px) {
    .pt-fly-animation1,
    .pt-fly-animation2,
    .pt-fly-animation3,
    .pt-fly-animation4  {
        animation: none;
    }
}

/* custom */

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

.pt-hov-svg-color .pt-button:hover .pt-button-block .icon svg path {
    fill: var(--dark-color) !important;
}


/*===== Blog-list =====*/
.pt-blog-post.pt-list {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    padding: 30px;
    border-radius: 5px;
    gap: 30px;
    background-color: var(--white-color);
    border: 1px solid transparent;
    transition: all 0.5s ease;
    margin-bottom: 30px;
}

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

.pt-blog-post.pt-list .pt-post-media img {
    height: 200px;
    object-fit: cover;
}

.pt-blog-post.pt-list .pt-post-media {
    border-radius: 5px;
}

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

.pt-blog-post.pt-list .pt-blog-contain .pt-blog-title {
    font-size: 36px;
    line-height: 44px;
    margin-right: 40px;
    transition: all 0.5s ease;
}

.pt-blog-post.pt-list.pt-active .pt-blog-contain .pt-blog-title {
    color: var(--primary-color);
}

.pt-blog-post.pt-list .pt-btn-container {
    margin-top: 0;
}

.pt-blog-post.pt-list .pt-button {
    position: absolute;
    top: -50px;
    right: -5px;
    padding: 0;
     width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    transition: all 0.5s ease;
}

.pt-blog-post.pt-list .pt-button .pt-button-block {
   justify-content: center;
}

.pt-blog-post.pt-list .pt-button .pt-button-block .icon {
   margin: 0;
   width: auto;
   height: auto;
}

.pt-blog-post.pt-list.pt-active .pt-button {
    transform: rotate(-32deg);
    background: var(--primary-color);
}

@media(max-width: 1279px) {
    .pt-blog-post.pt-list .pt-button {
        position: relative;
        top: inherit;
        right: inherit;
    }
}

@media(max-width: 1023px) {
    .pt-blog-post.pt-list .pt-button {
        position: relative;
        top: inherit;
        right: inherit;
    }
}

@media(max-width: 767px) {


.pt-blog-post.pt-list .pt-blog-contain .pt-blog-title {
    font-size: 20px;
    line-height: 28px;
    margin-right: 0;
}
}

@media(max-width: 575px) {
    .pt-blog-post.pt-list {
        display: block;
        padding: 0;
    }

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

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

/*+++++++++ Process Step  Style - 1 +++++++++*/ 

.pt-process-step-5-list.pt-style-5 {
    display: flex;
    justify-content: space-between;
    margin-top: -110px;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.pt-process-step-5-list.pt-style-5 .pt-process-step.pt-style-5:nth-child(even)  {
    margin-top: 150px;
    flex-direction: column-reverse;
}

.pt-process-step.pt-style-5 {
    padding: 15px;
	background-color: var(--grey-color);
	border-radius: 5px;
	display: flex;
    gap: 30px;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pt-process-step.pt-style-5 .pt-process-top {
    display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 15px;
}

.pt-process-step.pt-style-5 .pt-process-top .pt-process-number  {
	width: 66px;
	height: 66px;
	-webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
	font-size: 24px;
	line-height: 66px;
    color: var(--white-color);
	background-color: var(--primary-color);
	text-align: center;
}

.pt-process-step.pt-style-5 .pt-process-top .pt-process-title {
    font-size: 26px;
	line-height: 34px;
}

.pt-process-step.pt-style-5 .pt-process-media img {
    width: 275px;
    border-radius: 5px;
}

.pt-process-step.pt-style-5 .pt-process-before-img  {
    position: absolute;
    width: 75%;
    height: auto;
    z-index: -1;
}

.pt-process-step.pt-style-5:nth-child(odd) .pt-process-before-img  {
    left: 100%;
    top: 50%;
}

.pt-process-step.pt-style-5:nth-child(even) .pt-process-before-img  {
    left: 100%;
    bottom: 20%;
}

@media(max-width: 1399px) {
    .pt-process-step.pt-style-5 .pt-process-before-img  {
        transform: translateX(calc((((100vw - (307px * 3))  / 2 ) - 100%) / 2));
    }
}

@media(max-width:1279px) {
    .pt-process-step-5-list.pt-style-5  {
        margin-top: 0;
    }
}

@media(max-width:1099px) {
    .pt-process-step.pt-style-5  .pt-process-before-img  {
        display: none;
    }
    
    .pt-process-step-5-list.pt-style-5 .pt-process-step.pt-style-5:nth-child(even)  {
        margin-top: 0;
    }

}

@media(max-width:1023px) {

    .pt-process-step-5-list.pt-style-5 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .pt-process-step-5-list.pt-style-5 .pt-process-step.pt-style-5:nth-child(even)  {
        flex-direction: column;
        margin-top: 0;
    }
    
    .pt-process-step.pt-style-5  .pt-process-media {
        width: auto;
    }

     .pt-process-step.pt-style-5  .pt-process-media img {
        width: 707px;
    }

    .pt-process-step.pt-style-5  .pt-process-before-img {
        display: none;
    }
    
}

@media(max-width:767px) {
    .pt-process-step-5-list.pt-style-5 {
        grid-template-columns: 1fr;
    }
}

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

.pt-subscribe-form-2 .mc4wp-form-fields {
    position: relative;
}

.pt-subscribe-form-2 input {
    border: none;
}

.pt-subscribe-form-2 input.form-control {
    width: 100%;
    background: var(--white-color);
    color: var(--secondary-color);
    border-radius: 900px;
}

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

.pt-subscribe-form-2 input.submit {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 900px;
    padding: 8px 30px;
    position: absolute;
    right: 3px;
    top: 3px;
}

.pt-subscribe-form-2 input.submit:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

@media(max-width:991px) {
    
    .pt-subscribe-form-2 {
        margin-bottom: 30px;
    }
}

@media(max-width:576px) {
    
    .pt-subscribe-form-2 .mc4wp-form-fields {
        display: block;
    }
    .pt-subscribe-form-2 input.form-control {
        float: none;
        width: 100%;
    }
    .pt-subscribe-form-2 pt-input.submit {
        margin-left: 0;
        margin-top: 15px;
        float: none;
        width: 100%;
    }
}



