/*

Template: Medicate - Health & Medical WordPress Theme
Author: Peacefulqode.com
Version: 3.0
Design and Developed by: Peacefulqode

NOTE: This is main stylesheet of template, This file contains the styling for the actual Template. Please do not change anything here! write in a custom.css file if required!

*/

/*+++++++++++++++++++++++++++++++++++++++++++++++
[  Table of contents  ]
+++++++++++++++++++++++++++++++++++++++

--> Moz Selection
--> General
--> Loading
--> Back to Top
--> WordPress Core
--> Button Core
--> Dummy data
--> Blog Sidebar
--> Blog
--> Pagination
--> Error
--> Header
--> Sidebar Menu
--> Breadcrumb
--> Footer Subscribe
--> Footer
--> Section Title
--> OWL Carousel
--> info box
--> Service
--> Counter
--> Fancy Box
--> Progressbar
--> isotope Portfolio
--> Porfolio Box
--> Team
--> Apoointment
--> Testimonial
--> Client
--> Tabs
--> pricebox
--> FAQ
--> Process Step
--> Working hours
--> Video Popup
--> KeyFrames
--> Comments Box

++++++++++++++++++++++++++++++++++++
[ End table content ]
+++++++++++++++++++++++++++++++*/

/*++++++++++++++++++++
Moz Selection
++++++++++++++++++++++*/
:root {
    --body-fonts: "Montserrat", sans-serif;
    --dark-color: #18100f;
    --grey-color: #f4f6f9;
    --primary-color: #2490eb;
    --primary-dark-color: #14457b;
    --secondary-color: #666;
    --title-fonts: "Quicksand", sans-serif;
    --white-color: #fff;
}

::-moz-selection {
    color: #fff;
    background: var(--primary-color);
    text-shadow: none;
}

::-moz-selection {
    color: #fff;
    background: var(--primary-color);
    text-shadow: none;
}

::selection {
    color: #fff;
    background: var(--primary-color);
    text-shadow: none;
}

/*+++++++++++++++++++++++++++++++++++++++++
General
++++++++++++++++++++++++++++++++++++++++*/
body {
    overflow-x: hidden;

    font-family: var(--body-fonts);
    font-size: 1rem;
    font-style: normal;
    font-weight: normal;
    line-height: 2;

    color: var(--secondary-color);
    background: var(--white-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;

    font-family: var(--title-fonts);
    font-style: normal;
    font-weight: 600;

    text-transform: capitalize;
    -ms-word-wrap: break-word;
        word-wrap: break-word;

    color: var(--dark-color);
}

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 {
    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    text-decoration: none;

    color: var(--primary-color);
    outline: none !important;
}

a:focus,
a:hover {
    text-decoration: none !important;

    color: var(--primary-color);
    outline: none;
}

p {
    margin-bottom: 30px;
}

img {
    height: auto;
    max-width: 100%;
}

pre {
    padding: 15px;

    border: 1px solid var(--grey-color);
    background: var(--white-color);
}

hr {
    padding: 0;
    margin: 0;

    border-top: 0;
    border-bottom: 1px solid #e0e0e0;
}

b,
strong {
    font-weight: 600;
}

/*+++++++++++++ Lists (Nested) ++++++++++++++*/
ol,
ul {
    padding-left: 25px;
    margin-bottom: 1em;
}

ol li {
    list-style: decimal;
}

ol ol {
    padding-left: 25px;
}

ul li {
    list-style: inherit;
}

/*+++++++++++++ Definition Lists ++++++++++++++*/
dl dd {
    margin-bottom: 15px;
}

dl dd:last-child {
    margin-bottom: 0;
}

/*+++++++++++++ Table ++++++++++++++*/
table {
    width: 100%;
    margin-bottom: 20px;

    border: 2px solid var(--grey-color);
}

table td,
table th {
    padding: 8px;

    text-align: center;

    border: 2px solid var(--grey-color);
}

/*+++++++++++++ Input Textarea ++++++++++++++*/
input,
input.form-control {
    float: left;
    width: 100%;
    height: 54px;
    padding: 0 15px;

    font-size: 16px;
    font-weight: 400;
    line-height: 54px;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;

    color: var(--dark-color);
    border: 1px solid var(--grey-color);
    border-radius: 3px;
    outline: none;
    background: var(--grey-color);
}

input::placeholder {
    color: var(----dark-color);
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: none;
}

input[type="radio"],
input[type="checkbox"] {
    float: none;
    width: auto;
    height: auto;
    margin-right: 5px;
}

textarea {
    float: left;
    width: 100%;
    padding: 10px 15px;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;

    color: var(--dark-color);
    border: 1px solid var(--grey-color);
    border-radius: 3px;
    outline: none;
    background: var(--grey-color);
}

textarea::placeholder {
    color: var(----dark-color);
}

/*+++++++++++++ Select ++++++++++++++*/
select,
select.form-control {
    float: left;
    width: 100%;
    height: 54px;
    padding: 0 30px 0 15px;

    line-height: 54px;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;

    color: var(--dark-color);
    border: 1px solid var(--grey-color);
    border-radius: 3px;
    outline: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23999999' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px bottom 50%;
    background-size: 20px 20px;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

/*+++++++++++++ Container ++++++++++++++*/
.container,
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1300px;
}

.content-area .site-main {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 130px 0;
    overflow: hidden;
}

/*+++++++++++++ Text meant only for screen readers ++++++++++++++*/
.screen-reader-text {
    position: absolute !important;

    width: 1px;
    height: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);

    white-space: nowrap;
}

.screen-reader-text:focus {
    top: 5px;
    left: 5px;
    z-index: 100000;

    display: block;
    width: auto;
    height: auto;
    padding: 15px 23px 14px;
    clip: auto !important;

    font-size: 14px;
    font-size: .875rem;
    font-weight: 600;
    line-height: normal;

    text-decoration: none;

    color: #21759b;
    border-radius: 3px;
    background-color: var(--grey-color);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
}

/*+++++++++++++ Gallery ++++++++++++++*/
.gallery-item .gallery-caption {
    font-size: 14px;
    line-height: 22px;
}

.gallery-size-thumbnail .gallery-item {
    display: inline-block;
    width: 18.4%;
    margin-right: 2%;
    margin-bottom: 2%;

    vertical-align: top;
}

.gallery.gallery-size-thumbnail {
    display: inline-block;
    width: 100%;
}

.gallery-size-thumbnail .gallery-item img {
    margin-bottom: 10px;
}

.gallery-columns-1 .gallery-item {
    width: 100%;
    margin-right: 0;
}

.gallery-columns-2 .gallery-item {
    width: 48%;
}

.gallery-columns-3 .gallery-item {
    width: 31.3%;
}

.gallery-columns-4 .gallery-item {
    width: 23%;
}

.gallery-columns-5 .gallery-item {
    width: 18%;
}

.gallery-columns-6 .gallery-item {
    width: 14.6%;
}

.gallery-columns-7 .gallery-item {
    width: 12.2%;
}

.gallery-columns-8 .gallery-item {
    width: 10.5%;
}

.gallery-columns-9 .gallery-item {
    width: 9.1%;
}

/*+++++++++++++ Calendar ++++++++++++++*/
.pt-blog-contain .wp-block-calendar {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.wp-block-calendar table caption,
.wp-block-calendar table tbody {
    color: var(--secondary-color);
}

.wp-calendar-table {
    margin-bottom: 0;
}

.wp-calendar-table caption {
    padding: 0 0 15px;

    caption-side: top;

    text-align: center;

    color: var(--dark-color);
}

.wp-calendar-nav .wp-calendar-nav-prev {
    display: inline-block;
    float: left;
    width: 50%;
    padding: 4px;

    text-align: center;
    text-decoration: none;

    color: var(--secondary-color);
    border: 1px solid var(--grey-color);
    border-top: 0;
    border-right: 0;
    background: var(--white-color);
}

.wp-calendar-nav .wp-calendar-nav-next {
    display: inline-block;
    float: left;
    width: 50%;
    padding: 4px;

    text-align: center;
    text-decoration: none;

    color: var(--secondary-color);
    border: 1px solid var(--grey-color);
    border-top: 0;
    background: var(--white-color);
}

.wp-calendar-nav .pad {
    display: none;
}

.wp-calendar-nav span a {
    text-decoration: none;

    color: var(--secondary-color);
}

.wp-calendar-nav span a:hover {
    color: var(--primary-color);
}

/*+++++++++++++ Tags ++++++++++++++*/
.wp-block-tag-cloud .tag-cloud-link {
    display: inline-block;
    float: left;
    padding: 5px 15px;
    margin: 0 10px 10px 0;

    font-size: 14px !important;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;

    color: var(--dark-color);
    border: 1px solid var(--white-color);
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: var(--white-color);
}

.wp-block-tag-cloud .tag-cloud-link:hover {
    color: var(--white-color);
    border-color: var(--primary-color);
    background: var(--primary-color);
}

/*+++++++++++++ Blog Page Link ++++++++++++++*/
.page-links {
    margin: 15px 0 15px;
    clear: both;
}

.pt-blog-contain .page-links a,
.page-links > span.page-number,
.page-links a,
.page-links .post-page-numbers {
    display: inline-block;
    width: 45px;
    height: 45px;
    padding: 0;
    margin-left: 5px;

    line-height: 45px;

    text-align: center;

    color: var(--dark-color);
    border: none;
    border: 2px solid var(--grey-color);
    border-radius: 3px;
    background: var(--white-color);
}

.pt-blog-contain .page-links a:hover,
.page-links .post-page-numbers.current {
    text-decoration: none;

    color: var(--white-color);
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.pt-blog-contain .page-links > span.page-number,
.page-links > span.page-number {
    color: var(--white-color);
    background: var(--primary-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;
    padding-top: 30px;
    margin-bottom: 0;
}

article.hentry.format-audio .pt-post-media p {
    padding-left: 30px;
    margin-bottom: 0;
}

article.hentry.format-audio .pt-post-media p {
    padding-left: 30px;
    margin-bottom: 0;
}

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%;
}

/*+++++++++++++++++++++++++++++++++++++++++
Loading
++++++++++++++++++++++++++++++++++++++++*/
#pt-loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;

    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;

    background: var(--white-color);

    align-items: center;
    justify-content: center;
}

#pt-loading img {
    width: auto;
    height: 60px;

    border-radius: 0;
}

/*+++++++++++++++++++++++++++++++++++++++++
Back to Top
++++++++++++++++++++++++++++++++++++++++*/
#back-to-top .top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;

    width: 50px;
    height: 50px;
    margin: 0;

    font-size: 16px;
    line-height: 50px;

    text-align: center;

    color: var(--white-color);
    border-radius: 3px;
    background: var(--primary-color);
}

#back-to-top .top:hover {
    background: var(--dark-color);
}

/*+++++++++++++++++++++++++++++++++++++++++
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-right: auto;
    margin-left: auto;
}

.wp-caption {
    max-width: 96%;
    padding: 5px;

    text-align: center;

    border: 1px solid var(--grey-color);
    background: #fff;
}

.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 {
    width: auto;
    height: auto;
    max-width: 98.5%;
    padding: 0;
    margin: 0;

    border: 0 none;
}

.wp-caption p.wp-caption-text {
    padding: 0 4px 5px;
    margin: 0;

    font-size: 11px;
    line-height: 17px;
}

.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 {
    padding: .5rem;
    margin: 0;

    font-size: 14px;
    line-height: 1.6;

    text-align: center;
}

.wp-block-gallery figcaption.blocks-gallery-caption {
    margin-bottom: 10px;
}

.bypostauthor {
    display: block;
}

.wp-caption-text {
    margin: 4px 0 0;

    font-size: 14px;
    line-height: normal;
}

/*+++++++++++++++++++++++++++++++++++++++++
Button Core
++++++++++++++++++++++++++++++++++++++++*/
[type="button"],
[type="reset"],
[type="submit"] {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 12px 30px;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 2;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--white-color) !important;
    border: none;
    background: var(--primary-color);
}

[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
    background: var(--dark-color);
}

.pt-button {
    position: relative;

    display: inline-block;
    width: auto;
    padding: 12px 30px;
    overflow: hidden;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 2;

    vertical-align: middle;
    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--white-color);
    border: none;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: var(--primary-color);
}

.pt-button .pt-button-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    align-items: center;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    -ms-flex-align: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.pt-button span {
    position: relative;
    z-index: 9;

    margin-right: 10px;
}

.pt-button:hover,
.pt-button:focus {
    color: var(--white-color);
    background: var(--dark-color);
}

/*+++++++++++++ Button link++++++++++++++*/
.pt-button.pt-button-link {
    padding: 0;

    color: var(--primary-color);
    background: transparent;
}

.pt-button.pt-button-link i {
    border-color: var(--primary-color);
}

.pt-button.pt-button-link:hover {
    color: var(--dark-color);
}

.pt-button.pt-button-link:hover i {
    border-color: var(--secondary-color);
}

/*+++++++++++++ Button outline ++++++++++++++*/
.pt-button.pt-button-outline {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: transparent;
}

.pt-button.pt-button-outline:hover {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

/*+++++++++++++++++++++++++++++++++++++++++
Dummy data
++++++++++++++++++++++++++++++++++++++++*/
.pt-sticky-post-label {
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 15px;

    color: var(--white-color);
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: var(--primary-color);
}

.pt-sticky-post-label i {
    margin-right: 5px;
}

.wp-block-button__link,
.wp-block-file a.wp-block-file__button {
    font-size: 16px;

    color: var(--white-color) !important;
    background: var(--primary-color);
}

.wp-block-button__link:hover,
.wp-block-file a.wp-block-file__button:hover {
    color: var(--white-color);
    background: var(--dark-color);
}

.is-style-outline .wp-block-button__link,
.wp-block-button__link.is-style-outline {
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.is-style-outline .wp-block-button__link:hover,
.wp-block-button__link.is-style-outline:hover {
    color: var(--dark-color) !important;
    border-color: var(--dark-color);
    background: transparent;
}

.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 {
    padding: 15px 30px;
    margin-bottom: 45px;

    border-left: 5px solid var(--primary-color);
    border-radius: 3px;
    background: var(--grey-color);
}

blockquote cite {
    font-family: var(--title-fonts);
    font-style: italic;
    font-weight: 600;

    text-transform: uppercase;

    color: var(--primary-color);
}

blockquote strong {
    font-family: var(--title-fonts);
    font-style: italic;
    font-weight: 600;

    color: var(--primary-color);
}

.pt-blog-post .pt-blog-contain blockquote p {
    margin-bottom: 0;
}

.post-password-form input {
    float: none;
}

.pt-blog-post .pt-blog-contain table td,
.pt-blog-post .pt-blog-contain table th,
.pt-comment-area table td,
.pt-comment-area table th {
    border-color: var(--grey-color);
    background: var(--white-color);
}

.pt-comment-area {
    display: inline-block;
    width: 100%;
}

.pt-blog-contain .wp-block-archives,
.pt-blog-contain .wp-block-archives-dropdown,
.pt-blog-contain .wp-block-categories,
.pt-blog-contain .wp-block-latest-posts,
.pt-blog-contain .wp-block-tag-cloud,
.pt-blog-contain .wp-block-search {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 0;
    margin: 0 0 30px;
}

.pt-blog-contain .wp-block-archives li {
    list-style-type: none;
}

.has-dates .wp-block-latest-comments__comment,
.has-excerpts .wp-block-latest-comments__comment,
.wp-block-latest-comments__comment {
    display: inline-block;
    width: 100%;
    margin-bottom: 0;

    line-height: 2;
}

ol.wp-block-latest-comments {
    padding: 0;
    margin: 0;
}

ol.wp-block-latest-comments li a {
    color: var(--dark-color);
}

ol.wp-block-latest-comments li a.wp-block-latest-comments__comment-link {
    color: var(--primary-color);
}

ol.wp-block-latest-comments li a:hover {
    color: var(--primary-color);
}

.wp-block-latest-comments__comment-excerpt p {
    font-size: 16px;
}

/*+++++++++++++++++++++++++++++++++++++++++
Blog Sidebar
++++++++++++++++++++++++++++++++++++++++*/
.widget {
    position: relative;

    display: inline-block;
    float: left;
    width: 100%;
    padding: 30px;
    margin-bottom: 45px;

    border-radius: 3px;
    background: var(--grey-color);
}

.widget:last-child {
    margin-bottom: 0;
}

.widget h2 {
    margin-bottom: 15px;

    font-size: 24px;
    line-height: 32px;
}

/*+++++++++++++ SideBar-Search ++++++++++++++*/
.widget.widget_search {
    background: var(--primary-color);
}

.widget.widget_search .widget-title {
    display: none;
}

.widget.widget_search input {
    padding: 0 15px;

    border: 1px solid var(--grey-color);
    border-radius: 3px;
    background: var(--white-color);
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
    padding: 0 15px;

    border: 1px solid var(--grey-color);
    border-radius: 3px;
    background: var(--white-color);
}

.widget.widget_search .wp-block-search label {
    display: none;
}

.wp-block-search .wp-block-search__inside-wrapper {
    position: relative;
}

.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {
    padding: 0 15px;

    border: 1px solid var(--grey-color);
    border-radius: 3px;
    background: var(--white-color);
}

.wp-block-search .wp-block-search__button {
    position: absolute;
    right: 0;

    width: 54px;
    height: 54px;
    padding: 0;
    padding: 0;
    margin-left: 0;

    font-size: 0;
    line-height: 54px;

    border: none;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    background: var(--primary-dark-color);
}

.wp-block-search .wp-block-search__button:before {
    font-family: "themify";
    font-size: 20px;
    font-weight: 400;

    content: "\e610";
}

.wp-block-search .wp-block-search__button:hover {
    outline: none;
    background: var(--dark-color);
}

.search-form {
    position: relative;
}

.search-form label {
    float: left;
    width: 100%;
    width: 100%;
    margin-bottom: 0;
}

.search-submit {
    position: absolute;
    top: 0;
    right: 0;

    width: 54px;
    height: 54px;
    padding: 0;

    line-height: 54px;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    text-align: center;

    color: var(--white-color) !important;
    border: none;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    background: var(--primary-dark-color);
}

.search-submit:before {
    font-family: "themify";
    font-size: 20px;
    font-weight: 400;

    content: "\e610";
}

.search-submit:hover {
    outline: none;
    background: var(--dark-color);
}

/*+++++++++++++ widget-menu ++++++++++++++*/
.widget ul {
    padding: 0;
    margin: 0;
}

.widget ul li {
    margin: 0 0 10px 0;

    list-style: none;
}

.widget ul li:last-child {
    margin-bottom: 0;
}

.widget ul ul.children {
    padding-left: 25px;
}

.widget ul li a {
    position: relative;

    padding: 0 0 0 15px;

    text-transform: capitalize;
    -ms-word-wrap: break-word;
        word-wrap: break-word;

    color: var(--dark-color);
}

.widget ul li a:hover {
    text-decoration: none;

    color: var(--primary-color);
}

.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 .wp-block-page-list .wp-block-pages-list__item a.wp-block-pages-list__item__link:before {
    position: absolute;
    top: 5px;
    left: 0;

    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 600;
    line-height: normal;

    content: "\f054";

    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 #recentcomments li.recentcomments a {
    padding-left: 0;

    color: var(--primary-color);
}

.widget.widget_recent_comments #recentcomments li.recentcomments a:hover {
    padding-left: 0;

    text-decoration: underline !important;

    color: var(--primary-color);
}

/*+++++++++++++ SideBar - Recent post ++++++++++++++*/
.pt-footer-recent-post {
    display: flex;
    padding-bottom: 24px;
    padding-bottom: 24px;
    margin-bottom: 24px;

    border-bottom: 1px solid rgba(15, 40, 81, .1);

    align-items: flex-start;
}

.pt-footer-recent-post:last-child {
    padding: 0;
    margin-bottom: 0;

    border: none;
}

.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: 3px;
}

.pt-footer-recent-post .pt-footer-recent-post-info {
    align-self: center;
    flex: 1;
}

.pt-footer-recent-post .pt-footer-recent-post-info .pt-post-date {
    font-family: var(--title-fonts);
    font-size: 12px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-footer-recent-post .pt-footer-recent-post-info .pt-post-date i {
    margin-right: 8px;
}

.pt-footer-recent-post .pt-footer-recent-post-info h6 {
    margin-bottom: 0;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.pt-footer-recent-post .pt-footer-recent-post-info h6 a:hover {
    color: var(--primary-color);
}

/*+++++++++++++ SideBar Calendar ++++++++++++++*/
.widget_calendar table caption {
    padding: 0 0 10px;

    font-weight: 500;
    caption-side: inherit;

    color: var(--dark-color);
}

.widget_calendar table#wp-calendar {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;

    text-align: center;

    background: var(--white-color);
}

.widget_calendar table#wp-calendar a {
    font-weight: 600;
}

.widget_calendar .calendar_wrap td#today {
    font-weight: 600;

    color: var(--white-color);
    background: var(--primary-color);
}

.widget_calendar .calendar_wrap td#today a {
    color: var(--white-color);
}

.widget_calendar table#wp-calendar td#today {
    font-weight: 600;

    color: var(--white-color);
    background: var(--primary-color);
}

.widget_calendar table#wp-calendar td#today a {
    color: var(--white-color);
    background: var(--primary-color);
}

.widget_calendar .calendar_wrap table th {
    font-weight: 600;

    color: var(--dark-color);
    background: var(--white-color);
}

.widget_calendar .calendar_wrap table th,
.widget_calendar .calendar_wrap table td {
    padding: 8px;

    text-align: center;
}

/*+++++++++++++ SideBar Categories List ++++++++++++++*/
.widget_categories ul li,
.widget_archive ul li {
    font-weight: 400;

    color: var(--dark-color);
}

.widget_categories ul li a,
.widget_archive ul li a {
    font-weight: 400;

    color: var(--dark-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-family: var(--title-fonts);
    font-size: 16px;
    font-weight: 600;

    color: var(--dark-color);
}

.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 {
    display: inline-block;
    width: 100%;
    margin-top: 5px;

    font-weight: 600;
}

.widget.widget_rss ul li .rss-date {
    display: inline-block;
    float: left;
    width: 100%;
    margin: 5px 0;

    font-size: 14px;
    line-height: 1;

    color: var(--primary-color);
}

ul.wp-block-rss .wp-block-rss__item-title a {
    padding: 0;
}

/*+++++++++++++ widget Nav Menu ++++++++++++++*/
.widget.widget_nav_menu ul li,
.widget ul.menu li {
    margin-bottom: 0;
}

.widget.widget_nav_menu ul > li {
    margin-bottom: 5px;
}

.widget.widget_nav_menu ul > li .sub-menu li {
    margin-bottom: 0;
}

.widget.widget_nav_menu ul li .sub-menu,
.widget ul.menu li .sub-menu {
    display: block !important;
    padding-left: 20px;
}



.widget.widget_nav_menu ul li a,
.widget ul.menu li a {
    width: 100%;
}

/*+++++++++++++ SideBar - widget Recent Entries ++++++++++++++*/
.widget_recent_entries ul li .post-date {
    font-weight: 600;

    color: var(--dark-color);
}

/*+++++++++++++ SideBar - Tags ++++++++++++++*/
.widget_tag_cloud .tag-cloud-link {
    display: inline-block;
    float: left;
    padding: 5px 15px;
    margin: 0 10px 10px 0;

    font-size: 14px !important;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    text-transform: capitalize;

    color: var(--dark-color);
    border: 1px solid var(--white-color);
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: var(--white-color);
}

.widget_tag_cloud .tag-cloud-link:hover {
    color: var(--white-color);
    border-color: var(--primary-color);
    background: var(--primary-color);
}

@media(max-width:1023px) {
    .sidebar.widget-area {
        margin-top: 45px;
    }
}

/*++++++++++++++++ New monster widget ++++++++++++++++++++*/

/*+++++ SideBar +++++*/
.wp-block-calendar table {
    background: var(--white-color);
}

.wp-block-calendar table th {
    padding: 8px;

    font-weight: 600;

    color: var(--dark-color);
    background: transparent;
}

.wp-block-calendar table td {
    padding: 8px;
}

.wp-block-calendar table td a {
    font-weight: 600;

    text-decoration: none;
}

.wp-block-calendar table td#today {
    font-weight: 600;

    color: var(--white-color);
    background: var(--primary-color);
}

ul.wp-block-social-links li {
    margin-bottom: 0;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
    padding: 0;

    border: none;
}

.wp-block-search .wp-block-search__button svg {
    display: none;
}

.widget .wp-block-loginout input.input {
    margin-bottom: 15px;

    background: var(--white-color);
}

.widget .wp-block-loginout .login-remember {
    margin-bottom: 15px;
}

.entry-content h2 + ul,
.entry-content h2 + ol {
    margin-top: 1em;
}

/*+++++++++++++++++++++++++++++++++++++++++
Blog
++++++++++++++++++++++++++++++++++++++++*/
.pt-blog .owl-carousel .pt-blog-post {
    margin-bottom: 0;

    box-shadow: none;
}

.single-post .pt-blog-post {
    margin-bottom: 0;
}

.pt-blog-post {
    margin-bottom: 30px;

    border-radius: 3px;
    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
}

.pt-light-bg .pt-blog-post {
    background: var(--grey-color);
}

.pt-blog-post .pt-post-media {
    position: relative;

    margin-bottom: 0;
    overflow: hidden;
}

.pt-blog-post .pt-post-media img {
    width: 100%;

    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    -webkit-transform: scale(1);
            transform: scale(1);

    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
            border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
            border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius-bottomright: 0;
            border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-bottomleft: 0;
            border-bottom-left-radius: 0;
}

.pt-blog-post:hover .pt-post-media img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.pt-blog-post .pt-post-media .pt-post-date {
    position: absolute;
    bottom: 15px;
    left: 15px;

    padding: 4px 8px;

    font-family: var(--title-fonts);
    line-height: normal;

    text-align: center;
    text-transform: capitalize;

    color: var(--white-color);
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: var(--primary-color);
}

.pt-blog-post .pt-post-media .pt-post-date a {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--white-color);
}

.pt-blog-post .pt-blog-contain {
    position: relative;

    display: inline-block;
    width: 100%;
    padding: 30px;
}

.pt-blog-post .pt-blog-contain .pt-blog-title {
    margin: 0 0 5px;

    font-size: 24px;
    line-height: 32px;
}

.description-hide .pt-blog-post .pt-blog-contain .pt-blog-title {
    margin-bottom: 15px;
}

.pt-blog-post .pt-post-meta ul {
    display: flex;
    width: 100%;
    padding: 0 0 15px;
    margin: 0 0 15px;

    border-bottom: 1px solid #ededed;
}

.pt-blog-post .pt-post-meta ul li {
    display: inline-block;
    float: left;
    margin-right: 20px;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    list-style: none;

    letter-spacing: .04em;
    text-transform: uppercase;
}

.pt-blog-post .pt-post-meta ul li:last-child {
    margin-right: 0;
}

.pt-blog-post .pt-post-meta ul li a {
    text-decoration: none;

    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: 10px;

    color: var(--primary-color);
}

.single-post .content-area .site-main {
    padding-bottom: 210px;
}

@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:1023px) {
    .single-post .content-area .site-main {
        padding-bottom: 170px;
    }
}

@media(max-width:767px) {
    .single-post .content-area .site-main {
        padding-bottom: 140px;
    }

    .commentlist ol.children {
        padding-left: 30px;
    }

    .commentlist .pt-comment-info {
        padding: 15px;
    }

    .commentlist .pt-comment-info .reply a {
        top: 15px;
        right: 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;
        width: 100%;

        align-items: inherit;
        -ms-flex-align: start;
    }

    .commentlist .pt-comment-avatar {
        margin: 0 0 15px 0;
    }

    .pt-blog-post .pt-blog-contain {
        padding: 15px;
    }

    .pt-blog-post .pt-post-meta ul {
        display: inline-block !important;
        margin: 0;
    }

    .pt-blog-post .pt-post-meta ul li {
        margin-bottom: 5px;

        font-size: 14px;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++
Pagination
++++++++++++++++++++++++++++++++++++++++*/
.pt-pagination {
    margin-top: 15px;
}

.pt-pagination .page-numbers {
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    padding-left: 0;
    margin: 0;

    list-style: none;
}

.pt-pagination .page-numbers li:first-child .page-numbers {
    margin-left: 0;
}

.pt-pagination .page-numbers li .page-numbers {
    position: relative;

    display: block;
    width: 45px;
    height: 45px;
    padding: 0 15px;
    margin: 0 5px;

    line-height: 45px;

    text-align: center;

    color: var(--dark-color);
    border: 2px solid var(--grey-color);
    border-radius: 3px;
    background-color: var(--white-color);
}

.pt-pagination .page-numbers li .page-numbers:hover {
    z-index: 2;

    text-decoration: none;

    color: var(--white-color);
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.pt-pagination .page-numbers li .page-numbers:focus {
    z-index: 2;

    outline: 0;
    box-shadow: none;
}

.pt-pagination .page-numbers li .page-numbers:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.pt-pagination .page-numbers li .page-numbers.current {
    z-index: 1;

    -webkit-transition: all .5s ease-out 0s;
       -moz-transition: all .5s ease-out 0s;
        -ms-transition: all .5s ease-out 0s;
         -o-transition: all .5s ease-out 0s;
            transition: all .5s ease-out 0s;

    color: var(--white-color);
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.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 {
        display: none;
        width: auto;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++
Error
++++++++++++++++++++++++++++++++++++++++*/
.pt-error-block {
    padding-bottom: 80px;

    text-align: center;
}

.pt-error-block .pt-errot-text {
    margin-bottom: 30px;

    font-family: var(--title-fonts);
    font-size: 420px;
    font-style: normal;
    font-weight: 600;
    line-height: .8;

    text-transform: uppercase;

    color: var(--primary-color);
}

@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;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++
Header
++++++++++++++++++++++++++++++++++++++++*/
.animated {
    -webkit-animation-duration: 1.25s;
            animation-duration: 1.25s;
}

.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInLeft {
    from {
        transform: translate3d(-100%, 0, 0);

        opacity: 0;
    }

    to {
        transform: none;

        opacity: 1;
    }
}

header#pt-header {
    position: relative;
    z-index: 99;

    display: inline-block;
    width: 100%;
    clear: both;

    background: var(--white-color);
}

header#pt-header.pt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;

    display: inline-block;
    width: 100%;

    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
       -moz-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
            box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
}

/*+++++++++++++ Header Top Bar++++++++++++++*/
header#pt-header .pt-top-header {
    padding: 0;

    font-size: 14px;

    background: var(--primary-dark-color);
}

header#pt-header .pt-top-header .pt-header-contact.text-right ul {
    float: right;
}

header#pt-header .pt-top-header .pt-header-contact ul {
    padding: 0;
    margin: 0;
}

header#pt-header .pt-top-header .pt-header-contact ul li {
    display: inline-block;
    float: left;
    padding: 10px 20px;

    list-style: none;

    color: var(--white-color);
    border-left: 1px solid rgba(255, 255, 255, .1);
}

header#pt-header .pt-top-header .pt-header-contact ul li:last-child {
    margin-right: 0;

    border-right: 1px solid rgba(255, 255, 255, .1);
}

header#pt-header .pt-top-header .pt-header-contact ul li i {
    margin-right: 10px;
}

header#pt-header .pt-top-header .pt-header-contact ul li a {
    font-family: var(--title-fonts);
    font-weight: 600;

    color: var(--white-color);
}

header#pt-header .pt-top-header .pt-header-contact ul li a:hover {
    color: var(--white-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 {
    padding: 0;
    margin: 0;
}

header#pt-header .pt-top-header .pt-header-social ul li {
    display: inline-block;
    float: left;

    list-style: none;

    border-left: 1px solid rgba(255, 255, 255, .1);
}

header#pt-header .pt-top-header .pt-header-social ul li a {
    display: inline-block;
    padding: 10px 20px;

    color: var(--white-color);
}

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, .1);
}

/*+++++++++++++ Logo++++++++++++++*/
header#pt-header .pt-bottom-header .navbar .navbar-brand {
    line-height: 80px;
}

header#pt-header .pt-bottom-header .navbar .navbar-brand img {
    width: auto;
    height: 50px;

    border-radius: 0;
}

/*+++++++++++++ Header Navbar Bar++++++++++++++*/
header#pt-header .pt-bottom-header {
    min-height: 90px;
}

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;

    font-family: var(--title-fonts);
    font-weight: 400;
    line-height: 90px;

    color: var(--dark-color);
}

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 {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    text-transform: uppercase;

    color: var(--dark-color);
}

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:hover a,
header#pt-header .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor a {
    color: var(--primary-color);
}

/*+++++++++++++ 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 {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;

    display: block;
    display: inline-block;
    width: 210px;
    padding-left: 0;

    background: var(--white-color);
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
       -moz-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
            box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li {
    display: inline-block;
    width: 100%;
    padding: 0;
    margin: 0;

    line-height: 2;

    color: var(--secondary-color);
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li i {
    margin-left: 10px;

    font-size: 12px;

    color: var(--secondary-color);
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li a {
    display: inline-block;
    width: 100%;
    padding: 10px 15px;

    font-size: 14px;
    line-height: 2;

    text-transform: capitalize;

    color: var(--secondary-color);
}

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 {
    color: var(--white-color);
    background: var(--primary-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;
    display: inline-block;
    width: 250px;
    padding-left: 0;

    background: var(--white-color);
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children > .pt-submenu-icon {
    position: absolute;
    top: 12px;
    right: 15px;

    font-size: 12px;
    line-height: 2;

    -webkit-transform: rotate(270deg);
       -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
         -o-transform: rotate(270deg);
            transform: rotate(270deg);

    opacity: 1;
    color: var(--secondary-color);
}

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 {
    color: var(--white-color);
    background: var(--primary-color);
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children:hover > a {
    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;

    color: var(--white-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 {
    display: inline-block;
    width: 18px;

    font-size: 20px;

    color: var(--dark-color);
}

header#pt-header .pt-search-form {
    position: absolute;
    top: 59px;
    right: -30px;
    z-index: 999;

    display: none;
    width: 350px;
    padding: 15px;

    border: 2px solid var(--grey-color);
    border-radius: 3px;
    background: var(--white-color);
    background: var(--white-color);
}

header#pt-header .pt-button:hover .pt-button-line-left {
    width: calc(15px - 1px);
}

.pt-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-decoration,
.pt-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-cancel-button,
.pt-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-button,
.pt-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.pt-search-button .offcanvas .search-form .search-field:focus {
    color: var(--dark-color);
}

/*+++++++++++++Header Default++++++++++++++*/
header#pt-header.pt-header-default .pt-bottom-header.pt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;

    display: inline-block;
    width: 100%;

    background: var(--white-color);
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
       -moz-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
            box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
}

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 {
    background: var(--primary-color);
}

header#pt-header.pt-header-default .pt-btn-container .pt-button:hover {
    color: var(--white-color);
    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;
    width: 52px;
    height: 52px;
    padding: 0;

    font-size: 38px;
    line-height: 52px;

    text-align: center;

    color: #fff;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: var(--primary-color);
}

header#pt-header.pt-header-default .pt-menu-search-block {
    margin: 0 0 0 30px;
}

header#pt-header.pt-header-default .pt-bottom-header .navbar .navbar-nav li .sub-menu li:hover > .sub-menu {
    right: 100%;
    left: inherit;
}

/*+++++++++++++ Header Style-2 ++++++++++++++*/
header#pt-header.pt-header-style-2 .pt-top-header a.pt-header-contact {
    border: none;
}

header#pt-header.pt-header-style-2 .pt-top-header {
    background: var(--primary-dark-color);
}

header#pt-header.pt-header-style-2 .pt-top-header .text-left .pt-header-social {
    display: inline-block;
    padding-top: 11px;

    color: var(--white-color);
}

header#pt-header.pt-header-style-2 .pt-header-diff-block .navbar-brand img {
    width: auto;
    height: 60px;

    border-radius: 0;
}

header#pt-header.pt-header-style-2 {
    position: relative;
    left: 0;

    display: inline-block;
    width: 100%;
    padding: 0;

    background: var(--white-color);
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
       -moz-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
            box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
}

header#pt-header.pt-header-style-2 .no-gutters {
    margin-right: 0;
    margin-left: 0;
}

header#pt-header.pt-header-style-2 .no-gutters > .col,
header#pt-header.pt-header-style-2 .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

header#pt-header.pt-header-style-2 .navbar-brand {
    display: inline-block;
    width: 100%;
    padding: 16px 30px;
    margin: 0;

    line-height: 4.6666;

    text-align: center;

    background: var(--primary-color);
}

header#pt-header.pt-header-style-2 .pt-bottom-header {
    min-height: auto;
}

header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li {
    line-height: 75px;
}

header#pt-header.pt-header-style-2 .pt-header-info-box {
    display: flex;
}

header#pt-header.pt-header-style-2 .pt-menu-search-block {
    padding: 0 30px;

    font-size: 20px;
    line-height: 76px;

    color: #fff;
    border-right: 1px solid var(--grey-color);
    border-left: 1px solid var(--grey-color);
    background: var(--white-color);
}

header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
    top: 75px;
}

header#pt-header.pt-header-style-2 .pt-search-form {
    top: 77px;
}

/*+++++++++++++Header Style-2 sticky++++++++++++++*/
header#pt-header.pt-header-style-2.pt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;

    display: inline-block;
    width: 100%;
}

header#pt-header.pt-header-style-2.pt-header-sticky .pt-top-header {
    display: none;
}

header#pt-header.pt-header-style-2.pt-header-sticky .navbar-brand {
    line-height: 2.44444;
}

header#pt-header.pt-header-style-2.pt-header-sticky .pt-header-diff-block .navbar-brand img {
    height: 55px;
}

header#pt-header.pt-header-style-2.pt-header-sticky .pt-menu-search-block {
    line-height: 85px;
}

header#pt-header.pt-header-style-2.pt-header-sticky .pt-toggle-btn {
    padding: 25px;
}

/*+++++++++++++Toggle Side Bar++++++++++++++*/
header#pt-header.pt-header-style-2 .pt-toggle-btn {
    padding: 22px 25px;

    line-height: 75px;

    cursor: pointer;

    color: #fff;
    background: var(--primary-color);
}

header#pt-header.pt-header-style-2 .pt-toggle-btn a:before,
header#pt-header.pt-header-style-2 .pt-toggle-btn a:after {
    transform-origin: 50% 0;
}

.buttons ol li:before {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;

    display: block;
    width: 23vw;
    height: 20vw;

    content: "";

    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .05);
       -moz-box-shadow: 0 0 20px rgba(0, 0, 0, .05);
            box-shadow: 0 0 20px rgba(0, 0, 0, .05);
}

.buttons ol li:after {
    position: absolute;
    top: 38%;
    right: 7vw;
    z-index: 1;

    display: block;
    width: 30px;
    height: 30px;

    font-family: Helvetica;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;

    content: counter(list-counter, decimal-leading-zero);
    transition: color .35s;
    transform: rotate(-90deg);
    text-align: center;

    opacity: .15;

    will-change: color;
}

header#pt-header.pt-header-style-2 .pt-toggle-btn a {
    position: relative;
    top: 15px;

    display: block;
    width: 30px;
    height: 2px;
    margin: 0 auto;

    font-size: 0;

    cursor: pointer;
    transition: .35s;

    color: inherit;
    border: none;
    background: currentColor;
}

header#pt-header.pt-header-style-2 .pt-toggle-btn a:before,
header#pt-header.pt-header-style-2 .pt-toggle-btn a:after {
    position: absolute;
    top: 0;
    left: 50%;

    display: block;
    width: 100%;
    height: 2px;

    content: "";
    transition: transform .35s;

    background: currentColor;
}

header#pt-header.pt-header-style-2 .pt-toggle-btn a:before {
    transform: translate(-50%, -10px);
}

header#pt-header.pt-header-style-2 .pt-toggle-btn a:after {
    transform: translate(-50%, 10px);
}

/*+++++ Header Style-3 +++++*/
header#pt-header.pt-header-style-3.pt-header-sticky .pt-top-header {
    display: none;
}

header#pt-header.pt-header-style-3 .pt-header-info-box {
    display: flex;
    padding: 0 0 0 30px;

    align-items: center;
}

header#pt-header.pt-header-style-3 .pt-header-info-box .info-icon i {
    font-size: 34px;

    color: var(--primary-color);
}

header#pt-header.pt-header-style-3 .pt-header-info-box .info-icon-content p {
    margin-bottom: 0;

    font-size: 14px;
}

header#pt-header.pt-header-style-3 .pt-header-info-box .info-icon-content h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
}

header#pt-header.pt-header-style-3 .pt-header-info-box .info-icon-content {
    padding-left: 15px;
}

/*+++++ Header Style-4 +++++*/
header#pt-header.pt-header-style-4.pt-header-sticky {
    position: relative;
}

header#pt-header.pt-header-style-4 .pt-header-top-wrapper {
    display: flex;
    padding: 20px 0;

    align-items: center;
    justify-content: space-between;
}

header#pt-header.pt-header-style-4 .pt-header-top-wrapper .pt-site-logo a.navbar-brand img {
    height: 50px;
}

header#pt-header.pt-header-style-4 .site-header-menu {
    background: var(--primary-color);
}

header#pt-header.pt-header-style-4 .site-header-menu a.navbar-brand img {
    display: none;
}

header#pt-header.pt-header-style-4 .pt-header-top-wrapper .pt-top-info-content .pt-header-info {
    display: flex;

    justify-content: flex-end;
}

header#pt-header.pt-header-style-4 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box {
    display: flex;
    padding: 0 30px;

    align-items: center;
}

header#pt-header.pt-header-style-4 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box.address {
    width: 30%;
    padding: 0;
}

header#pt-header.pt-header-style-4 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box.address i {
    margin-right: -5px;
}

header#pt-header.pt-header-style-4 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box.address p {
    display: -webkit-box;
    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

header#pt-header.pt-header-style-4 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box:last-child {
    padding-right: 0;
}

header#pt-header.pt-header-style-4 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box .info-icon-content {
    padding-left: 15px;
}

header#pt-header.pt-header-style-4 .pt-header-info-box .info-icon i {
    font-size: 34px;

    color: var(--primary-color);
}

header#pt-header.pt-header-style-4 .pt-header-info-box .info-icon-content h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
}

header#pt-header.pt-header-style-4 .pt-header-info-box .info-icon-content p {
    margin-bottom: 0;

    font-size: 14px;
}

header#pt-header.pt-header-style-4 .site-header-menu {
    position: relative;
}

header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-brand {
    margin: 0;
}

header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav {
    float: none;
    padding-left: 0;
}

header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav li a {
    color: var(--white-color);
}

header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav li i {
    color: var(--white-color);
}

header#pt-header.pt-header-style-4 .pt-menu-search-block {
    padding: 0 30px;

    font-size: 20px;
    line-height: 65px;
}

header#pt-header.pt-header-style-4 .pt-menu-search-block a {
    font-size: 22px;

    color: var(--white-color);
}

header#pt-header.pt-header-style-4 .pt-search-form {
    top: 66px;
    right: 0;
}

header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav li {
    margin-right: 40px;

    line-height: 65px;
}

header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav li:last-child {
    margin-right: 0;
}

header#pt-header.pt-header-style-4 .pt-toggle-btn {
    display: none;
}

header#pt-header.pt-header-style-4 .pt-bottom-header .pt-button {
    padding: 20px 30px;

    border-radius: 0;
    background: var(--dark-color);
}

header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav li i {
    color: var(--white-color);
}

header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav li a {
    color: var(--white-color);
}

.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;
}


header#pt-header.pt-header-style-5 .pt-bottom-header {
    padding: 0 45px;
}

header#pt-header.pt-header-style-5 .pt-bottom-header .navbar .navbar-nav {
    float: none;

    justify-content: center;
}


header#pt-header.pt-header-style-5.pt-header-sticky .pt-top-header {
    display: none;
}

header#pt-header.pt-header-style-5 .pt-bottom-header .pt-header-info-box {
    display: flex;

    align-items: center;
}


header#pt-header.pt-header-style-5 .pt-toggle-btn {
    padding: 22px 0;
    margin-left: 30px;

    line-height: 75px;

    cursor: pointer;

    color: var(--dark-color);
}

header#pt-header.pt-header-style-5 .pt-toggle-btn a {
    position: relative;
    top: 0;

    display: block;
    width: 30px;
    height: 2px;
    margin: 0 auto;

    font-size: 0;

    cursor: pointer;
    transition: .35s;

    color: inherit;
    border: none;
    background: var(--dark-color);
}

header#pt-header.pt-header-style-5 .pt-toggle-btn a:before,
header#pt-header.pt-header-style-5 .pt-toggle-btn a:after {
    position: absolute;
    top: 0;
    left: 50%;

    display: block;
    width: 100%;
    height: 2px;

    content: "";
    transition: transform .35s;

    background: var(--dark-color);
}

header#pt-header.pt-header-style-5 .pt-toggle-btn a:before {
    transform: translate(-50%, -10px);
}

header#pt-header.pt-header-style-5 .pt-toggle-btn a:after {
    transform: translate(-50%, 10px);
}


header#pt-header.pt-header-style-6 .pt-top-header a.pt-header-contact {
    border: none;
}

header#pt-header.pt-header-style-6 .pt-bottom-header.pt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;

    display: inline-block;
    width: 100%;

    border-bottom: 1px solid rgba(72, 78, 80, .2);
    background: var(--dark-color);
}

header#pt-header.pt-header-style-6 .pt-bottom-header.pt-header-sticky .navbar {
    background: transparent;
}

/*+++++++++++++++*/
header#pt-header.pt-header-style-6 {
    position: absolute;

    background: transparent;
}

header#pt-header.pt-header-style-6.pt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;

    display: inline-block;
    width: 100%;

    background: var(--white-color);
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
       -moz-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
            box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
}

.admin-bar header#pt-header.pt-header-style-6.pt-header-sticky {
    top: 32px;
}

header#pt-header.pt-header-style-6 .pt-top-header {
    background: transparent;
}

header#pt-header.pt-header-style-6 .pt-bottom-header {
    min-height: inherit;
}

header#pt-header.pt-header-style-6.pt-header-sticky .pt-top-header {
    display: none;
}

header#pt-header.pt-header-style-6 .pt-top-header .pt-header-contact ul li {
    padding: 15px 0;
    padding-right: 30px;

    border: none;
}

header#pt-header.pt-header-style-6 .pt-top-header .pt-header-contact ul li:last-child {
    border: none;
}

header#pt-header.pt-header-style-6 .pt-top-header .pt-header-contact ul li i {
    margin-right: 10px;

    color: var(--white-color);
}

header#pt-header.pt-header-style-6 .pt-top-header .pt-header-social ul li {
    padding: 15px 12px;

    border: none;
}

header#pt-header.pt-header-style-6 .pt-top-header .pt-header-social ul li a {
    padding: 0;
}

header#pt-header.pt-header-style-6 .pt-top-header .pt-header-social ul li:last-child {
    padding-right: 0;

    border: none;
}

header#pt-header.pt-header-style-6 .pt-top-header ul li a:hover {
    color: var(--primary-color);
    background: transparent;
}

header#pt-header.pt-header-style-6 .pt-bottom-header .navbar {
    border-radius: 3px;
    background: var(--white-color);
}

header#pt-header.pt-header-style-6 .pt-bottom-header .navbar .navbar-brand {
    padding-left: 15px;
}

header#pt-header.pt-header-style-6 .pt-bottom-header.pt-header-sticky .navbar .navbar-brand {
    padding-left: 0;
}

header#pt-header.pt-header-style-6 .pt-bottom-header .navbar .navbar-brand {
    line-height: normal;
}

header#pt-header.pt-header-style-6 .pt-bottom-header .navbar .navbar-nav li {
    line-height: 70px;
}

header#pt-header.pt-header-style-6 .pt-menu-search-block {
    margin: 0 0 0 30px;
}

header#pt-header.pt-header-style-6 .pt-search-form {
    top: 50px;
}

header#pt-header.pt-header-style-6 .dropdown-menu-mini-cart,
header#pt-header.pt-header-style-6 .dropdown-menu[data-bs-popper] {
    top: 71px;
}

header#pt-header.pt-header-style-6 .pt-btn-container {
    margin: 0 0 0 30px;
}

header#pt-header.pt-header-style-6 .pt-btn-container .pt-button {
    padding: 22px 30px;

    border-radius: 0;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
            border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomright: 3px;
            border-bottom-right-radius: 3px;
}

header#pt-header.pt-header-style-6.pt-header-sticky .pt-btn-container .pt-button {
    border-radius: 0;
}

header#pt-header.pt-header-style-6 .pt-btn-container .pt-button:hover {
    background: var(--primary-dark-color);
}

header#pt-header.pt-header-style-6 .pt-shop-btn .pt-cart > a {
    line-height: 70px;
}

header#pt-header.pt-header-style-6 .pt-toggle-btn {
    padding: 0;
    margin: 0 0 0 30px;
}

header#pt-header.pt-header-style-6 .pt-toggle-btn a {
    position: relative;

    display: inline-block;
    width: 52px;
    height: 52px;
    padding: 0;

    font-size: 38px;
    line-height: 52px;

    text-align: center;

    color: #fff;
    background: var(--primary-color);
}


header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li .sub-menu li:hover > .sub-menu {
    right: 100%;
    left: inherit;
}


/*================================================
admin bar login
================================================*/


.admin-bar header#pt-header.pt-header-style-6 .pt-bottom-header.pt-header-sticky {
    top: 32px;
}

@media(max-width:600px) {
    .admin-bar header#pt-header.pt-header-style-6 .pt-bottom-header.pt-header-sticky {
        top: 0;
    }
}

@media(max-width:767px) {
    .admin-bar header#pt-header.pt-header-sticky,
    .admin-bar header#pt-header {
        top: 0;
    }
}

@media only screen and (min-device-width:601px) and (max-device-width:768px) {
    .admin-bar header#pt-header.pt-header-sticky,
    .admin-bar header#pt-header.pt-header-default .pt-bottom-header.pt-header-sticky {
        top: 46px;
    }

    .admin-bar header#pt-header.pt-header-style-6 .pt-bottom-header.pt-header-sticky {
        top: 46px !important;
    }

    .admin-bar header#pt-header.pt-header-style-6.pt-header-sticky {
        top: 46px !important;
    }
}

@media(max-width:1599px) {
    header#pt-header .pt-bottom-header .navbar .navbar-nav li {
        margin-right: 20px;
    }
}

@media(max-width:1399px) {
    header#pt-header .pt-bottom-header .navbar .navbar-nav li {
        margin-right: 20px;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li:hover > .sub-menu {
        right: 100%;
        left: inherit;
    }

    header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav li .sub-menu li:hover > .sub-menu {
        right: inherit;
        left: 100%;
    }
}

@media(max-width:1365px) {
    header#pt-header .pt-bottom-header .navbar .navbar-nav li {
        margin-right: 15px;

        font-size: 12px;
    }

    header#pt-header .pt-top-header .pt-header-social ul li a {
        padding: 10px 15px;

        font-size: 12px;
    }

    header#pt-header .pt-top-header .pt-header-contact ul li {
        padding: 12px 15px;

        font-size: 12px;
    }

    header#pt-header.pt-header-default .pt-btn-container {
        margin: 0 0 0 15px;
    }

    header#pt-header.pt-header-default .pt-toggle-btn {
        margin: 0 0 0 15px;
    }

    header#pt-header.pt-header-style-2 .pt-menu-search-block {
        padding: 0 20px;
    }

    header#pt-header.pt-header-style-2 .pt-header-diff-block .navbar-brand img {
        height: 40px;
    }

    header#pt-header.pt-header-style-2 .navbar-brand {
        line-height: 4.444444;
    }
}

@media(max-width:1199px) {
    header#pt-header .pt-bottom-header .navbar .navbar-brand img {
        height: 35px;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li {
        margin-right: 8px;
    }

    header#pt-header.pt-header-style-4 .pt-header-top-wrapper .pt-site-logo a.navbar-brand img {
        height: 35px;
    }

    header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav li {
        margin-right: 20px;
    }

    header#pt-header.pt-header-style-4 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box {
        padding: 0 6px;
    }

    header#pt-header.pt-header-style-4 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box .info-icon-content {
        padding-left: 10px;
    }
}

@media(max-width:1099px) {
    header#pt-header.pt-header-style-6 .pt-bottom-header .navbar .navbar-nav li {
        margin-right: 7px;
    }

    header#pt-header.pt-header-style-6 .pt-menu-search-block {
        margin: 0 0 0 10px;
    }
}





@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 {
        float: right;
        padding: 12px 18px;
        margin: 0 0 0 15px;

        font-size: 20px;
        line-height: normal;

        -webkit-border-radius: 3px;
           -moz-border-radius: 3px;
                border-radius: 3px;
        outline: none;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;
        max-height: 330px;
        overflow-x: hidden;
        overflow-y: scroll;

        background: #fff;
        -webkit-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
           -moz-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
                box-shadow: 0 5px 15px 0 rgba(0, 33, 85, .1);
    }

    header#pt-header .pt-bottom-header {
        min-height: 60px;
    }

    header#pt-header .pt-search-form {
        top: 51px;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav {
        display: inline-block;
        float: left;
        width: 100%;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li {
        position: relative;
        position: relative;

        display: inline-block;
        float: left;
        width: 100%;

        font-size: 16px;
        line-height: normal;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li a {
        display: inline-block;
        width: 100%;
        padding: 15px;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li i {
        position: absolute;
        top: 0;
        right: 0;

        padding: 22px;
        margin-top: 0;
        margin-left: 0;

        font-size: 12px;

        -webkit-transform: none;
           -moz-transform: none;
            -ms-transform: none;
             -o-transform: none;
                transform: none;

        opacity: 1;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        position: relative;
        top: 0;
        left: 0;

        display: inline-block;
        width: 100%;
        padding-left: 0;

        background: #f5f5f5;
        box-shadow: none;
    }

    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 {
        position: absolute;
        top: 0;
        right: 0;

        padding: 12px 30px;

        font-size: 12px;
        line-height: 2;

        -webkit-transform: none;
           -moz-transform: none;
            -ms-transform: none;
             -o-transform: none;
                transform: none;

        opacity: 1;
    }

    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 {
        color: var(--white-color);
        background: var(--primary-color);
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor > a {
        color: var(--white-color);
        background: var(--primary-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;

        display: inline-block;
        float: left;
        width: 100%;

        background: transparent;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu > li > a {
        color: var(--secondary-color);
        background: #f5f5f5;
    }

    header#pt-header .pt-top-header .pt-header-contact ul li {
        padding: 10px 10px;
    }

    header#pt-header.pt-header-default .pt-bottom-header .navbar .navbar-nav li .sub-menu li:hover > .sub-menu {
        left: 0;
    }

    header#pt-header.pt-header-default .pt-menu-search-block {
        margin-left: auto !important;
    }

    header#pt-header.pt-header-default .pt-toggle-btn {
        display: none;
    }

    header#pt-header.pt-header-style-2 .pt-header-diff-block .navbar-brand img {
        height: 40px;
    }

    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li {
        line-height: normal;
    }

    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        top: 0;
    }

    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar {
        justify-content: flex-end;
    }

    header#pt-header.pt-header-style-2 .pt-toggle-btn {
        display: none;
    }

    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar-toggler {
        margin: 0 20px;
    }

    header#pt-header.pt-header-style-3 .pt-header-info-box {
        padding-right: 15px;
        margin-left: auto;
    }

    header#pt-header.pt-header-style-4 .pt-header-top-wrapper {
        display: none;
    }

    header#pt-header.pt-header-style-4 .site-header-menu a.navbar-brand img {
        display: inline-block;
    }

    header#pt-header.pt-header-style-4 .site-header-menu {
        background: var(--white-color);
    }

    header#pt-header.pt-header-style-4 .pt-header-info-box {
        margin-left: auto;
    }

    header#pt-header.pt-header-style-4 .site-header-menu {
        bottom: inherit;

        background: var(--white-color);
    }

    header#pt-header.pt-header-style-4 .pt-bottom-header .navbar {
        background: var(--white-color);
    }

    header#pt-header.pt-header-style-4 .pt-menu-search-block a {
        color: var(--dark-color);
    }

    header#pt-header.pt-header-style-4 .pt-bottom-header .pt-button {
        padding: 15px 24px;
    }

    header#pt-header.pt-header-style-4 .pt-bottom-header .navbar-toggler:focus {
        box-shadow: none;
    }

    header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav {
        padding-left: 0;
    }

    header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav li {
        line-height: normal;
    }

    header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav li a {
        color: var(--dark-color);
    }

    header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor > a {
        color: var(--white-color);
    }

    header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav li:hover > a {
        color: var(--white-color);
    }

    header#pt-header.pt-header-style-4 .pt-bottom-header .navbar .navbar-nav li i {
        color: var(--dark-color);
    }


    header#pt-header.pt-header-style-5 .pt-bottom-header {
        padding: 0 15px;
    }

    header#pt-header.pt-header-style-5 .pt-bottom-header .pt-header-info-box {
        margin-left: auto;
    }

    header#pt-header.pt-header-style-5 .pt-toggle-btn {
        display: none;
    }

    header#pt-header.pt-header-style-5 .pt-bottom-header .navbar-toggler {
        margin: 0 0 0 30px;
    }


    header#pt-header.pt-header-style-6 .pt-bottom-header .navbar .navbar-brand {
        line-height: 60px;
    }

    header#pt-header.pt-header-style-6 .pt-bottom-header .navbar .navbar-nav li {
        line-height: normal;
    }

    header#pt-header.pt-header-style-6 .pt-menu-search-block {
        margin-left: auto;
    }

    header#pt-header.pt-header-style-6 .pt-shop-btn .pt-cart > a {
        line-height: 60px;
    }

    header#pt-header.pt-header-style-6 .pt-toggle-btn {
        display: none;
    }

    header#pt-header.pt-header-style-6 .pt-header-info-box {
        margin-left: auto;
    }

    header#pt-header.pt-header-style-6 .pt-btn-container .pt-button {
        border-radius: 0;
    }

    header#pt-header.pt-header-style-6 .pt-bottom-header .navbar-toggler {
        margin: 0 15px 0 30px;
    }

    header#pt-header.pt-header-style-6 .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        position: relative;
        top: 0;
        left: 0;

        display: inline-block;
        width: 100%;
        padding-left: 0;

        background: unset;
        box-shadow: none;
    }
}

@media(max-width:991px) {
    header#pt-header.pt-header-style-2 .pt-top-header {
        display: none;
    }

    header#pt-header.pt-header-style-2 .navbar-brand {
        padding: 15px 10px;

        line-height: normal;
    }

    header#pt-header.pt-header-style-2 .pt-top-header a.pt-header-contact {
        display: none;
    }

    header#pt-header.pt-header-style-2 .pt-header-diff-block .navbar-brand img {
        height: 60px;
    }

    header#pt-header.pt-header-style-2 .pt-menu-search-block {
        height: 90px;
        padding-right: 5px;

        line-height: 90px;

        border: none;
    }

    header#pt-header.pt-header-style-3 .pt-top-header {
        display: none;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu > li.menu-item-has-children:hover {
        background: unset;
    }
}

@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-header-default .pt-top-header,
    header#pt-header.pt-header-default .pt-btn-container,
    header#pt-header.pt-header-style-5 .pt-top-header {
        display: none !important;
    }

    header#pt-header.pt-header-style-2 .navbar-brand {
        width: auto;
        padding: 15px;
    }

    header#pt-header.pt-header-style-2 .pt-menu-search-block {
        margin-top: -90px;
    }

    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar-toggler {
        margin-top: -90px;
    }

    header#pt-header.pt-header-style-2 .pt-top-header {
        display: none;
    }

    header#pt-header.pt-header-style-4 .pt-top-header {
        display: none;
    }

    header#pt-header.pt-header-style-4 .pt-btn-container {
        display: none;
    }

    header#pt-header.pt-header-style-4 .pt-bottom-header .navbar-toggler {
        margin-left: 0;
    }

    header#pt-header.pt-header-style-5 .pt-shop-btn {
        margin-right: 0;
        margin-left: 30px;
    }

    header#pt-header.pt-header-style-6 .pt-top-header,
    header#pt-header.pt-header-style-6 .pt-btn-container {
        display: none !important;
    }

    .admin-bar header#pt-header.pt-header-style-6 {
        top: 56px;
    }
}

@media(max-width:600px) {
    .admin-bar header#pt-header.pt-header-sticky,
    .admin-bar header#pt-header.pt-header-default .pt-bottom-header.pt-header-sticky {
        top: 0;
    }

    .admin-bar header#pt-header.pt-header-style-6.pt-header-sticky {
        top: 0;
    }
}

@media(max-width:576px) {
    header#pt-header.pt-header-style-3 .pt-header-info-box {
        display: none;
    }
}

@media(max-width:420px) {
    header#pt-header .pt-search-form {
        width: 230px;
        padding: 5px;
    }
}

@media(max-width:480px) {
    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-2 .pt-bottom-header .navbar-toggler {
        margin-top: -68px;
    }

    header#pt-header.pt-header-style-2 .pt-header-diff-block .navbar-brand img {
        width: 150px;
        height: auto;
    }

    header#pt-header.pt-header-style-2.pt-header-sticky .pt-header-diff-block .navbar-brand img {
        height: auto;
    }

    header#pt-header.pt-header-style-4 .pt-menu-search-block {
        display: none;
    }


    header#pt-header.pt-header-style-6 .pt-menu-search-block {
        margin-top: 4px;
    }

    header#pt-header.pt-header-style-6 .pt-shop-btn {
        display: none;
    }

    header#pt-header.pt-header-style-6 .pt-bottom-header .navbar-toggler {
        margin: 0 15px 0 15px;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++
Sidebar Menu
++++++++++++++++++++++++++++++++++++++++*/
.pt-background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;

    display: none;
    width: 100%;
    height: 100%;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;

    opacity: .8;
    background: var(--dark-color);
}

.pt-siderbar-open .pt-background-overlay {
    display: block;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
}

.pt-siderbar-open .pt-sidebar {
    right: 0;

    opacity: 1;
}

.pt-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 101;

    display: block;
    width: 410px;
    height: 100%;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;

    opacity: 0;
    background: var(--white-color);
}

.pt-sidebar .pt-close-btn .pt-close {
    position: absolute;
    top: 90px;
    left: -45px;

    width: 60px;
    height: 60px;

    font-size: 20px;
    line-height: 60px;

    text-align: center;

    color: #fff;
    background: var(--primary-color);
}

.pt-sidebar-block {
    height: 100%;
    padding: 60px 30px 30px 30px;
}

.pt-sidebar-header .pt-sidebar-logo {
    height: 60px;
    margin-bottom: 15px;
}

.pt-sidebar h5,
.pt-sidebar h4 {
    margin-bottom: 15px;

    font-size: 30px;
    line-height: 38px;
}

.pt-sidebar .pt-sidebar-form span.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 30px;
}

.pt-sidebar .pt-sidebar-form .wpcf7-form-control {
    float: none;
}

.pt-sidebar ul {
    padding: 0;
    margin: 0;
}

.pt-sidebar ul li {
    padding: 0 0 10px;
    margin: 0;

    list-style: none;
}

.pt-sidebar ul li a {
    color: var(--dark-color);
}

.pt-sidebar-contact {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}

.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-social ul {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}

.pt-sidebar-social ul li {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.pt-sidebar-social ul li:last-child {
    margin-right: 0;
}

.pt-sidebar-social ul li a {
    display: inline-block;
    width: 50px;
    height: 50px;

    line-height: 50px;

    text-align: center;

    color: #fff;
    border-radius: 3px;
    background: var(--primary-dark-color);
}

.pt-sidebar-social ul li a:hover {
    background: var(--primary-color);
}

.pt-sidebar .widget {
    padding: 0;

    border: none;
    background: transparent;
}

.pt-sidebar .widget .wp-block-image {
    margin-bottom: 30px;
}

@media(max-width:991px) {
    .pt-sidebar {
        display: none;
    }

    header#pt-header.pt-header-style-2 .pt-toggle-btn {
        display: none;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++
Breadcrumb
++++++++++++++++++++++++++++++++++++++++*/
.pt-breadcrumb {
    position: relative;

    padding: 130px 0;

    color: var(--white-color);
    background: var(--grey-color);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.pt-breadcrumb nav {
    position: relative;
}

.pt-breadcrumb .pt-breadcrumb-title h1 {
    margin-bottom: 15px;

    font-size: 56px;
    line-height: 64px;

    color: var(--dark-color);
}

.pt-breadcrumb-container .breadcrumb {
    padding: 0;
    margin: 0;

    background: transparent;

    justify-content: flex-start;
}

.pt-breadcrumb-container .breadcrumb li {
    padding-left: 0;
    margin-right: 15px;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    list-style-type: none;

    letter-spacing: .04em;
    text-transform: uppercase;
}

.pt-breadcrumb-container .breadcrumb li.active {
    color: var(--primary-color);
}

.pt-breadcrumb-container .breadcrumb li a {
    color: var(--secondary-color);
}

.pt-breadcrumb-container .breadcrumb li a i {
    margin-right: 10px;
}

.pt-breadcrumb-container .breadcrumb li a:hover {
    color: var(--primary-color);
}

.pt-breadcrumb-container .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    float: none;
    padding-right: 15px;

    font-family: "Ionicons";
    font-size: 12px;

    content: "\f125";

    color: var(--secondary-color);
}

.pt-yoest-breadcumbs #breadcrumbs {
    padding: 0;
    margin: 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 {
    padding-left: 5px;

    font-weight: 400;
}

@media(max-width:1023px) {
    .pt-breadcrumb {
        text-align: center;
    }

    .pt-breadcrumb .pt-breadcrumb-title h1 {
        font-size: 42px;
        line-height: 50px;
    }

    .pt-breadcrumb-container .breadcrumb {
        display: inline-flex;
    }

    .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 li {
        margin-right: 10px;
    }

    .pt-breadcrumb-container .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        padding-right: 10px;

        font-size: 12px;
    }
}

@media(max-width:479px) {
    .pt-breadcrumb .pt-breadcrumb-title h1 {
        font-size: 30px;
        line-height: 38px;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++
Footer Subscribe
++++++++++++++++++++++++++++++++++++++++*/
.pt-subscribe {
    position: relative;
    z-index: 10;

    display: inline-block;
    width: 100%;
    margin-top: -80px;
}

.pt-subscribe-bg {
    padding: 45px;

    color: var(--white-color);
    border-radius: 3px;
    background: var(--primary-color);
}

.pt-subscribe-block {
    display: flex;
    margin-bottom: 10px;

    align-items: center;
}

.pt-subscribe-block .pt-subscribe-img {
    width: 55px;

    color: var(--primary-color);
}

.pt-subscribe-block .pt-subscribe-details {
    padding-right: 50px;
    margin-left: 30px;

    color: var(--white-color);

    flex: 1;
}

.pt-subscribe-block .pt-subscribe-details h5 {
    font-size: 28px;
    line-height: 36px;

    color: var(--white-color);
}

.pt-subscribe-from .mc4wp-form-fields {
    display: flex;
}

.pt-subscribe-from input {
    border: none;
}

.pt-subscribe-from input.form-control {
    width: 76%;

    color: var(--white-color);
    background: rgba(255, 255, 255, .1);
}

.pt-subscribe-from input.form-control::-webkit-input-placeholder {
    color: var(--white-color);
}

.pt-subscribe-from input.submit {
    height: 54px;
    margin-left: 30px;

    color: var(--dark-color) !important;
    background: var(--white-color);
}

.pt-subscribe-from input.submit:hover {
    color: var(--white-color) !important;
    background: var(--dark-color);
}

.pt-subscribe-white.pt-subscribe-from .mc4wp-form-fields {
    justify-content: center;
}

.pt-subscribe-white.pt-subscribe-from input.form-control {
    color: var(--dark-color);
    background: var(--white-color);
}

.pt-subscribe-white.pt-subscribe-from input.submit {
    color: var(--white-color) !important;
    background: var(--primary-color);
}

.pt-subscribe-white.pt-subscribe-from input.submit:hover {
    background: var(--dark-color);
}

.pt-subscribe-white.pt-subscribe-from input.form-control::-webkit-input-placeholder {
    color: var(--dark-color);
}

.pt-subscribe-white.pt-subscribe-from input.form-control:-ms-input-placeholder {
    color: var(--dark-color);
}

.pt-subscribe-white.pt-subscribe-from input.form-control::placeholder {
    color: var(--dark-color);
}


/*+++++++++++++++++++++++++++++++++++++++++
Footer
++++++++++++++++++++++++++++++++++++++++*/
footer#pt-footer {
    position: relative;

    display: inline-block;
    float: left;
    width: 100%;
}

footer#pt-footer:before {
    position: absolute;
    top: 0;
    left: 0;

    display: inline-block;
    width: 100%;
    height: 100%;

    content: "";

    opacity: .05;
    background-repeat: repeat;
    background-position: center;
    background-size: 60% auto;
}

footer#pt-footer .pt-footer-style-1 {
    color: var(--white-color);
    background: var(--primary-dark-color);
}

footer#pt-footer .pt-footer-top {
    position: relative;
    z-index: 9;

    padding: 70px 0 0;
}

footer#pt-footer .pt-copyright-footer {
    position: relative;

    padding: 15px 0;

    border-top: 1px solid rgba(255, 255, 255, .1);
}

footer#pt-footer .pt-copyright-footer .pt-copyright {
    position: relative;
    z-index: 9;

    display: inline-block;
    width: 100%;
}

footer#pt-footer .pt-copyright-footer .pt-copyright a {
    color: var(--white-color);
}

footer#pt-footer .pt-copyright-footer .pt-copyright a:hover {
    text-decoration: underline;

    color: var(--white-color);
}

/*+++++++++++Footer Widget ++++++++++++++++*/
footer#pt-footer .widget {
    padding: 0;
    margin-bottom: 45px;

    border: none;
    background: transparent;
    box-shadow: none;
}

footer#pt-footer .widget .footer-title {
    position: relative;

    padding: 0;
    margin-bottom: 30px;

    font-size: 26px;
    line-height: 34px;

    color: var(--white-color);
}

footer#pt-footer .widget ul li {
    margin: 0 0 15px 0;
}

footer#pt-footer .widget ul li a {
    display: inline-block;
    padding: 0 0 0 15px;
}

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: 20px;
}

footer#pt-footer .widget #recentcomments--1 .recentcomments a {
    padding: 0;

    color: var(--primary-color);
}

footer#pt-footer .widget #recentcomments--1 .recentcomments a:hover {
    color: var(--white-color);
}

footer#pt-footer .widget #recentcomments--1 .recentcomments span.comment-author-link a {
    color: var(--white-color);
}

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 {
    color: var(--primary-color);
}

footer#pt-footer table td,
footer#pt-footer table th {
    border: 1px solid var(--white-color);
}

footer#pt-footer table.wp-calendar-table a {
    font-weight: 600;

    color: var(--white-color);
}

footer#pt-footer .calendar_wrap table caption {
    padding: 0 0 10px;

    font-family: var(--title-fonts);
    font-weight: 400;

    color: var(--white-color);
}

footer#pt-footer .calendar_wrap td#today {
    font-weight: 600;

    color: var(--white-color);
    background: var(--primary-color);
}

footer#pt-footer .calendar_wrap td#today a {
    color: var(--white-color);
}

footer#pt-footer ul li a.rsswidget {
    padding-left: 0;

    font-family: var(--title-fonts);
    font-size: 16px;
    font-weight: 400;

    color: var(--dark-color);
}

footer#pt-footer ul li .rss-date {
    display: inline-block;
    float: left;
    width: 100%;
    margin: 5px 0;

    font-size: 14px;
    line-height: 1;

    color: var(--primary-color);
}

footer#pt-footer ul li cite {
    display: inline-block;
    width: 100%;
    margin-top: 5px;

    font-weight: 400;
}

footer#pt-footer .search-form {
    position: relative;
}

footer#pt-footer .search-form .search-submit {
    background: var(--primary-color);
}

footer#pt-footer .search-form input {
    border-color: var(--white-color);
    border-top-right-radius: 25px;
    background: var(--white-color);
}

footer#pt-footer .tagcloud .tag-cloud-link {
    display: inline-block;
    float: left;
    padding: 2px 12px;
    margin: 0 10px 10px 0;

    font-size: 14px !important;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;

    color: var(--dark-color);
    border: 1px solid var(--white-color);
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: var(--white-color);
}

footer#pt-footer .tagcloud .tag-cloud-link:hover {
    color: var(--white-color);
    border-color: var(--primary-color);
    background: var(--primary-color);
}

footer#pt-footer .widget ul.menu li a,
footer#pt-footer .pt-widget-menu .pt-service li a {
    position: relative;

    display: inline-block;
    width: 100%;
    padding: 0 0 0 15px;

    border: none;
}

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 .widget ul.menu li a:before {
    position: absolute;
    top: 4px;
    bottom: 0;
    left: 0;

    display: inline-block;
    width: auto;
    height: auto;
    margin: auto 0;

    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: 900;

    content: "\f054";

    background: transparent;
}

footer#pt-footer .pt-footer-recent-post {
    margin-right: 30px;

    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

footer#pt-footer .pt-footer-recent-post:last-child {
    border: none;
}

footer#pt-footer .pt-footer-recent-post .pt-footer-recent-post-info .pt-post-date {
    color: var(--white-color);
}

footer#pt-footer .wp-calendar-nav .wp-calendar-nav-prev,
footer#pt-footer .wp-calendar-nav .wp-calendar-nav-next {
    border: 1px solid var(--white-color);
    border-top: 0;
    background: transparent;
}

footer#pt-footer .calendar_wrap .wp-calendar-nav .wp-calendar-nav-prev,
footer#pt-footer .calendar_wrap .wp-calendar-nav .wp-calendar-nav-next,
footer#pt-footer .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev,
footer#pt-footer .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next {
    border-top: 1px solid var(--white-color);
}

footer#pt-footer .wp-calendar-nav .wp-calendar-nav-prev a,
footer#pt-footer .wp-calendar-nav .wp-calendar-nav-next a {
    color: var(--white-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 {
    position: absolute;
    top: 18px;
    bottom: 0;
    left: 0;

    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0;

    content: "";

    background: var(--primary-color);
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul {
    padding: 0;
    margin: 0;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul li {
    float: left;
    margin-right: 10px;

    list-style: none;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul li:last-child {
    margin-right: 0;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul li a {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 0;

    line-height: 50px;

    text-align: center;

    color: var(--white-color);
    border-radius: 3px;
    background: rgba(255, 255, 255, .1);
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul li a:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

footer#pt-footer .widget ul#menu-useful-links.menu li {
    display: inline-block;
    width: 49%;
    margin: 0 0 12px 0;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-recent-post .pt-footer-recent-post-info h6 {
    color: var(--white-color);
}

footer#pt-footer .widget:first-child {
    margin-bottom: 45px;
}

footer#pt-footer .pt-footer-logo {
    width: auto;
    height: 50px;
    margin-bottom: 30px;

    border-radius: 0;
}

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 Widget dummy ++++++++++++++++*/
footer#pt-footer .widget h2 {
    color: var(--white-color);
}

footer#pt-footer .widget ul.wp-block-latest-posts__list li > a:before,
footer#pt-footer .widget ul.wp-block-archives-list li > a:before,
footer#pt-footer .widget ul.wp-block-categories-list li > a:before,
footer#pt-footer .widget.widget_archive ul li > a:before,
footer#pt-footer .widget.widget_categories ul li > a:before,
footer#pt-footer .widget.widget_pages ul li > a:before,
footer#pt-footer .widget.widget_meta ul li > a:before,
footer#pt-footer .widget.widget_recent_entries ul li > a:before,
footer#pt-footer .widget.widget_nav_menu ul li > a:before,
footer#pt-footer .widget .wp-block-page-list .wp-block-pages-list__item a.wp-block-pages-list__item__link:before {
    position: absolute;
    top: 9px;
    left: 0;

    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 600;
    line-height: normal;

    content: "\f054";

    color: var(--white-color);
}

footer#pt-footer .wp-block-calendar table caption,
footer#pt-footer .wp-block-calendar table tbody {
    color: var(--white-color);
}

footer#pt-footer .wp-block-calendar table {
    border: 1px solid var(--white-color);
    background: transparent;
}

footer#pt-footer .wp-block-calendar table th {
    color: var(--white-color);
}

footer#pt-footer table#wp-calendar td#today {
    font-weight: 600;

    color: var(--dark-color);
    background: var(--white-color);
}

footer#pt-footer ol.wp-block-latest-comments li a {
    color: var(--white-color);
}

footer#pt-footer ol.wp-block-latest-comments li a.wp-block-latest-comments__comment-link {
    color: var(--primary-color);
}

footer#pt-footer ol.wp-block-latest-comments li a.wp-block-latest-comments__comment-link:hover {
    color: var(--white-color);
}

footer#pt-footer .wp-block-search__input {
    padding: 0 15px;

    border: 1px solid var(--grey-color);
    border-radius: 3px;
    background: var(--white-color);
}

footer#pt-footer .widget ul.wp-block-rss.wp-block-rss .wp-block-rss__item a {
    padding-left: 0;
}

footer#pt-footer .widget ul.wp-block-social-links li a {
    padding: 0;
}

footer#pt-footer .widget ul.wp-block-social-links li {
    width: 36px;
    height: 36px;
    padding: 0;
    margin-bottom: 0;

    line-height: 36px;

    text-align: center;
}

footer#pt-footer .widget ul.wp-block-social-links li a {
    display: inline-block;
}

footer#pt-footer .widget ul.wp-block-social-links li a:hover {
    color: var(--white-color);
}

footer#pt-footer .wp-block-search .wp-block-search__button {
    background: var(--primary-color);
}

footer#pt-footer .wp-block-search .wp-block-search__button:hover {
    background: var(--dark-color);
}

footer#pt-footer .widget_calendar table#wp-calendar {
    border: 1px solid var(--white-color);
    background: transparent;
}

footer#pt-footer .widget_calendar .calendar_wrap table th {
    font-weight: 600;

    color: var(--white-color);
    background: transparent;
}

@media(max-width:1190px) {
    footer#pt-footer .pt-footer-recent-post {
        margin-right: 0;
    }

    footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items {
        padding: 15px;
    }

    .pt-subscribe-block .pt-subscribe-details {
        padding-right: 0;
    }
}

@media(max-width:1190px) {
    footer#pt-footer .pt-footer-top .pt-footer-bottom-list [class*="col-"] {
        margin-top: 30px;
    }
}

@media(max-width:991px) {
    footer#pt-footer .pt-footer-recent-post {
        margin-right: 45px;
    }

    .pt-subscribe-bg {
        padding: 30px !important;
    }

    .pt-subscribe-from {
        margin-bottom: 30px;
    }
}

@media(max-width:767px) {
    footer#pt-footer .pt-footer-recent-post {
        margin-right: 0;
    }
}

@media(max-width:576px) {
    .pt-subscribe-from .mc4wp-form-fields {
        display: block;
    }

    .pt-subscribe-from input.form-control {
        float: none;
        width: 100%;
    }

    .pt-subscribe-from input.submit {
        float: none;
        width: 100%;
        margin-top: 15px;
        margin-left: 0;
    }

    footer#pt-footer .widget ul#menu-useful-links.menu li {
        width: 100%;
    }
}

/*+++++++++++++++++++++++++++++++++++
Section Title
+++++++++++++++++++++++++++++++++++++++*/
.pt-section.pt-style-1.text-center {
    padding: 0 15em;
    margin-bottom: 60px;
}

.pt-section.pt-style-1 .pt-section-sub-title {
    position: relative;

    display: inline-block;
    padding: 4px 8px;
    margin: 0 0 10px;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: #d3e9fb;
}

.pt-section.pt-style-1 .pt-section-title {
    position: relative;
    z-index: 9;

    display: block;
    padding: 0;
    margin: 0 0;

    font-size: 48px;
    font-weight: 600;
    line-height: 56px;

    color: var(--dark-color);
}

.pt-section.pt-style-1 .pt-section-description {
    position: relative;
    z-index: 9;

    margin: 5px 0 0;

    font-family: var(--body-fonts);
    font-size: 16px;
    font-weight: 400;
}

@media(max-width:1199px) {
    .pt-section.pt-style-1.text-center {
        padding: 0;
    }
}

@media(max-width:1023px) {
    .pt-section.pt-style-1 .pt-section-title {
        font-size: 44px;
        line-height: 52px;
    }
}

@media(max-width:767px) {
    .pt-section.pt-style-1 .pt-section-title {
        font-size: 36px;
        line-height: 44px;
    }

    .pt-section.pt-style-1.text-center {
        margin-bottom: 30px;
    }
}

@media(max-width:479px) {
    .pt-section.pt-style-1 .pt-section-title {
        font-size: 28px;
        line-height: 36px;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
OWL Carousel
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.owl-carousel .owl-nav {
    position: relative;
    z-index: 99;

    margin-top: 45px;

    cursor: pointer;
    text-align: center;
}

.owl-carousel .owl-nav button.owl-prev {
    position: relative;

    padding: 20px 25px !important;
    margin: 0 10px;

    font-size: 16px;
    line-height: 1;

    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    text-align: center;
    text-indent: inherit;

    color: var(--white-color);
    border-radius: 3px;
    outline: none;
    background: var(--secondary-color);
}

.owl-carousel .owl-nav button.owl-next {
    position: relative;

    padding: 20px 25px !important;
    margin: 0 10px;

    font-size: 16px;
    line-height: 1;

    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    text-align: center;
    text-indent: inherit;

    color: var(--white-color);
    border-radius: 3px;
    outline: none;
    background: var(--primary-color);
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary-color);
}

/*+++++++++++++Dots++++++++++++++*/
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-dots {
    position: relative;

    width: 100%;
    margin-top: 30px;

    line-height: normal;

    cursor: pointer;
    text-align: center;
    text-indent: inherit;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 25px;
    height: 3px;
    padding: 0;
    margin: 0 5px;

    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;

    opacity: .5;
    border: none;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    outline: none;
    background: var(--dark-color);
    box-shadow: none;
}

.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

.owl-carousel .owl-dots .owl-dot:hover {
    opacity: 1;
    background: var(--primary-color);
}

.owl-carousel .owl-dots .owl-dot.active {
    opacity: 1;
    background: var(--primary-color);
}

.pt-fancy-slider-dot .owl-carousel .owl-dots .owl-dot {
    background: var(--white-color);
}

.pt-fancy-slider-dot .owl-carousel .owl-dots .owl-dot.active {
    background: var(--primary-color);
}

#rev_slider_19_1 .pt-button i,
#rev_slider_15_1 .pt-button i,
#rev_slider_21_1 .pt-button i,
#rev_slider_33_1 .pt-button i {
    font-size: 13px !important;

    vertical-align: middle;
}

#rev_slider_19_1_wrapper .metis.tparrows,
#rev_slider_15_1_wrapper .metis.tparrows,
#rev_slider_21_1_wrapper .metis.tparrows,
#rev_slider_27_1_wrapper .metis.tparrows,
#rev_slider_30_1_wrapper .metis.tparrows,
#rev_slider_31_1_wrapper .metis.tparrows {
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
}

/*+++++++++++++++++++++++++++++++++++++++++
info box
++++++++++++++++++++++++++++++++++++++++*/
.pt-info-box.pt-style-1 {
    background: var(--primary-color);
}

.pt-info-box {
    padding: 45px 30px;

    color: var(--white-color);
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
}

.pt-info-box .pt-info-box-right-icon {
    position: absolute;
    top: 30px;
    right: 0;

    transition: all .5s ease;

    opacity: .1999;
}

.pt-info-box:hover .pt-info-box-right-icon {
    right: 15px;
}

.pt-info-box .pt-info-box-right-icon i {
    font-size: 80px;
    line-height: 88px;
}

.pt-info-box .pt-info-box-icon i {
    font-size: 80px;
    line-height: 88px;
}

.pt-info-box .pt-info-title {
    margin-top: 15px;
    margin-bottom: 5px;

    font-size: 28px;
    line-height: 36px;

    color: var(--white-color);
}

.pt-info-call {
    display: flex;
    margin-bottom: 5px;

    align-items: center;
}

.pt-info-call i {
    width: 45px;
    height: 45px;

    font-size: 20px;
    line-height: 45px;

    text-align: center;

    color: var(--primary-color);
    border-radius: 100%;
    background: var(--white-color);
}

.pt-info-call .cpt-call-number {
    margin-left: 15px;

    color: var(--white-color);
}

.pt-info-box.pt-style-2 {
    background: var(--primary-dark-color);
}

.pt-info-box.pt-style-2 .pt-button-outline {
    padding: 8px 24px;

    color: var(--white-color);
    border-color: var(--white-color);
}

.pt-info-box.pt-style-2 .pt-button-outline:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.pt-info-box.pt-style-3 {
    background: var(--primary-color);
}

.pt-info-box.pt-style-3 .pt-list-info {
    padding: 0;
    margin: 0;
    margin-top: 15px;

    list-style-type: none;
}

.pt-info-box.pt-style-3 .pt-list-info li {
    display: flex;
    padding-bottom: 5px;
    margin-bottom: 5px;

    border-bottom: 1px solid #fff29;

    justify-content: space-between;
}

.pt-info-box.pt-style-3 .pt-list-info li:last-child {
    margin-bottom: 0;

    border: none;
}

/*+++++++++++++++++++++++++++++++++++++++++
service 
++++++++++++++++++++++++++++++++++++++++*/
.pt-service-box.pt-style-1 {
    padding: 30px 30px;

    border-radius: 3px;
    background: var(--grey-color);
}

.pt-service-box.pt-style-1 .pt-service-img {
    overflow: hidden;

    border-radius: 3px;
}

.pt-service-box.pt-style-1 .pt-service-img img {
    width: 100%;

    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    -webkit-transform: scale(1);
            transform: scale(1);
}

.pt-service-box.pt-style-1:hover .pt-service-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.pt-service-box.pt-style-1 .pt-service-box-info {
    position: relative;

    display: flex;
    margin-top: 20px;

    align-items: center;
    justify-content: space-between;
}

.pt-service-box.pt-style-1 .pt-service-sub-title {
    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-service-box.pt-style-1 .pt-service-icon {
    position: absolute;
    top: 5px;
    right: 0;

    transition: all .5s ease;
}

.pt-service-box.pt-style-1:hover .pt-service-icon {
    transform: rotateY(180deg);
}

.pt-service-box.pt-style-1 .pt-service-icon i {
    font-size: 56px;
    line-height: 64px;

    color: var(--primary-color);
}

.pt-whitebg .pt-service-box.pt-style-1 {
    padding: 15px !important;

    background: #fff !important;
}

.pt-service-box.pt-style-2 .pt-service-img {
    overflow: hidden;

    border-radius: 3px;
}

.pt-service-box.pt-style-2 .pt-service-img img {
    width: 100%;

    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    -webkit-transform: scale(1);
            transform: scale(1);
}

.pt-service-box.pt-style-2:hover .pt-service-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.pt-service-box.pt-style-2 .pt-service-img .pt-service-icon {
    position: relative;
    position: absolute;
    top: 30px;
    right: 30px;

    width: 70px;
    height: 70px;

    font-size: 48px;
    line-height: 78px;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    text-align: center;

    color: var(--white-color);
    border-radius: 3px;
    background-color: var(--primary-color);
}

.pt-service-box.pt-style-2 .pt-service-box-info {
    position: relative;

    padding: 20px 15px;
    margin: 0 30px;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    -webkit-transform: translate(-30px);
       -moz-transform: translate(-30px);
        -ms-transform: translate(-30px);
         -o-transform: translate(-30px);
            transform: translateY(-30px);
            transform: translateY(-30px);
    text-align: center;

    border-radius: 3px;
    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
}


.pt-service-box.pt-style-2 .pt-service-box-info .pt-service-sub-title {
    display: inline-block;
    width: 100%;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-service-box.pt-style-3 .pt-service-block {
    position: relative;

    width: 100%;
    height: 420px;
}

.pt-service-box.pt-style-3 .pt-service-block .pt-service-img {
    position: absolute;

    width: 100%;
    overflow: hidden;

    transition: all .5s ease;
}

.pt-service-box.pt-style-3 .pt-service-block .pt-service-img.front {
    -webkit-transform: rotateY(0deg);
       -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
         -o-transform: rotateY(0deg);
            transform: rotateY(0deg);
}

.pt-service-box.pt-style-3 .pt-service-block .pt-service-img.back {
    -webkit-transform: rotateY(180deg);
       -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
         -o-transform: rotateY(180deg);
            transform: rotateY(180deg);

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.pt-service-box.pt-style-3 .pt-service-img.back .pt-service-title {
    margin-bottom: 20px;
}

.pt-service-box.pt-style-3:hover .pt-service-block .pt-service-img.front {
    -webkit-transform: rotateY(-180deg);
       -moz-transform: rotateY(-180deg);
        -ms-transform: rotateY(-180deg);
         -o-transform: rotateY(-180deg);
            transform: rotateY(-180deg);

    transform-style: preserve-3d;
}

.pt-service-box.pt-style-3:hover .pt-service-block .pt-service-img.back {
    -webkit-transform: rotateY(0deg);
       -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
         -o-transform: rotateY(0deg);
            transform: rotateY(0deg);
}


.pt-service-box.pt-style-3 .pt-service-img:before {
    position: absolute;
    z-index: 1;

    width: 100%;
    height: 100%;

    content: "";

    opacity: .6;
    background: var(--primary-dark-color);
}

.pt-service-box.pt-style-3 .pt-service-img img {
    width: 100%;

    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    -webkit-transform: scale(1);
            transform: scale(1);
}


.pt-service-box.pt-style-3 .pt-service-box-info {
    position: absolute;
    top: 50%;
    z-index: 2;

    padding: 0 45px;
    margin: 0 auto;

    transform: translateY(-50%);
    text-align: center;
}

.pt-service-box.pt-style-3 .pt-service-icon {
    margin-bottom: 15px;
}

.pt-service-box.pt-style-3 .pt-service-icon i {
    font-size: 52px;
    line-height: 60px;

    color: var(--white-color);
}

.pt-service-box.pt-style-3 .pt-service-title {
    font-size: 24px;
    line-height: 32px;

    color: var(--white-color);
}


@media(max-width:1024px) {
    .pt-service-box.pt-style-3 .pt-service-block {
        height: 470px;
    }
}

@media(max-width:767px) {
    .pt-service-box.pt-style-3 .pt-service-block {
        height: auto;
    }

    .pt-service-box.pt-style-3 .pt-service-block .pt-service-img {
        position: relative;
    }

    .pt-service-box.pt-style-3 .pt-service-block .pt-service-img.front {
        -webkit-transform: rotateY(-180deg);
           -moz-transform: rotateY(-180deg);
            -ms-transform: rotateY(-180deg);
             -o-transform: rotateY(-180deg);
                transform: rotateY(-180deg);

        transform-style: preserve-3d;
    }

    .pt-service-box.pt-style-3 .pt-service-block .pt-service-img.back {
        -webkit-transform: rotateY(0deg);
           -moz-transform: rotateY(0deg);
            -ms-transform: rotateY(0deg);
             -o-transform: rotateY(0deg);
                transform: rotateY(0deg);
    }

    .pt-service-box.pt-style-3 .pt-service-block .pt-service-img.front {
        display: none;
    }
}

@media (min-width:1024px) and (max-width:1199px) {
    .pt-service-box.pt-style-1 .pt-service-title {
        font-size: 18px;
        line-height: 26px;
    }

    .pt-service-box.pt-style-1 .pt-service-sub-title {
        font-size: 12px;
        line-height: 20px;
    }

    .pt-service-box.pt-style-1 .pt-service-icon i {
        font-size: 48px;
        line-height: 56px;
    }
}

@media(max-width:360px) {
    .pt-service-box.pt-style-1 .pt-service-title {
        font-size: 18px;
        line-height: 26px;
    }

    .pt-service-box.pt-style-1 .pt-service-sub-title {
        font-size: 12px;
        line-height: 20px;
    }

    .pt-service-box.pt-style-1 .pt-service-icon i {
        font-size: 48px;
        line-height: 56px;
    }
}

/*+++++++++++++service detail++++++++++++++*/
.widget.widget-port {
    background: var(--grey-color);
    box-shadow: none;
}

.widget.widget-port .page-title {
    margin: 0 0 20px 0;
}

.widget.widget-port .menu li {
    margin: 0 0 10px 0;
}

.widget.widget-port .menu li:last-child {
    margin-bottom: 0;
}

.widget.widget-port .menu li a {
    position: relative;

    display: block;
    padding: 15px 24px;

    font-family: var(--title-fonts);
    font-size: 16px;
    font-weight: 500;

    -webkit-transition: none;
            transition: all .5s linear;
    text-transform: capitalize;

    color: var(--dark-color);
    border: none;
    border-radius: 3px;
    background-color: var(--white-color);
}

.widget.widget-port .menu li.current-menu-item a {
    color: var(--white-color);
    background: var(--primary-color);
}

.widget.widget-port:nth-child(2),
.widget.widget-port:nth-child(3) {
    padding: 0;

    background: unset;
}

.widget.widget-port .menu li > a:before {
    position: absolute;
    top: 24px;
    right: 24px;
    left: auto;

    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight: 600;
    line-height: normal;

    content: "\f054";

    color: inherit;
}

.widget.widget-port img {
    border-radius: 3px;
}

.widget.widget-port a.wp-block-button__link {
    padding: 12px 30px;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;

    letter-spacing: .04em;
}

/*++++++++++++++++++++++++++++++++++++++
 Counter
+++++++++++++++++++++++++++++++++++++++*/
.pt-counter.pt-style-1 .pt-counter-media {
    margin-right: 20px;
}

.pt-counter.pt-style-1 .pt-counter-media i {
    display: inline-block;

    font-size: 72px;
    line-height: normal;

    text-align: center;

    color: var(--white-color);
    border-radius: 0;
}

.pt-counter.pt-style-1 .pt-counter-info h5 {
    display: inline-block;

    font-size: 48px;
    line-height: 56px;

    color: var(--white-color);
}

.pt-counter.pt-style-1 .pt-counter-info .pt-counter-prefix {
    font-family: var(--title-fonts);
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;

    color: var(--white-color);
}

.pt-counter.pt-style-1 .pt-counter-info p {
    margin-top: 5px;
    margin-bottom: 0;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--white-color);
}

/*+++top icon++*/
.pt-top-icon .pt-counter.pt-style-1 .pt-counter-contain {
    display: block;
}

.pt-top-icon .pt-counter.pt-style-1 .pt-counter-contain .pt-counter-media {
    margin-right: 0;
}

.pt-top-icon .pt-counter-info {
    margin-top: 15px;
}

/*+++left icon++*/
.pt-left-icon .pt-counter.pt-style-1 .pt-counter-contain {
    display: flex;
}

.pt-left-icon .pt-counter.pt-style-1 .pt-counter-contain .pt-counter-media {
    margin-top: 10px;
}

/*+++style 2++*/
.pt-counter.pt-style-2 .pt-counter-num-prefix {
    display: inline-flex;
}

.pt-counter.pt-style-2 .pt-counter-num-prefix.pt-prefix-top {
    position: absolute;
    top: -10px;
    left: 50%;

    transform: translateX(-50%);
}

.pt-counter.pt-style-2 .pt-counter-num-prefix.pt-prefix-top h5,
.pt-counter.pt-style-2 .pt-counter-num-prefix.pt-prefix-top .pt-counter-prefix {
    font-size: 62px;
    line-height: 70px;

    opacity: .03;

    -webkit-text-stroke-color: var(--white-color);
    -webkit-text-stroke-width: 1px;
}

.pt-counter.pt-style-2 .pt-counter-info {
    position: relative;

    padding-top: 30px;
}

.pt-counter.pt-style-2 .pt-counter-info h5 {
    display: inline-block;

    font-size: 46px;
    line-height: 46px;

    color: var(--white-color);
}

.pt-counter.pt-style-2 .pt-counter-info .pt-counter-prefix {
    font-family: var(--title-fonts);
    font-size: 46px;
    font-weight: 600;
    line-height: 46px;

    color: var(--white-color);
}

.pt-counter.pt-style-2 .pt-counter-info p {
    margin-top: 5px;
    margin-bottom: 0;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--white-color);
}

.pt-primary-bg .pt-counter.pt-style-2 .pt-counter-num-prefix.pt-prefix-top .pt-counter-prefix {
    opacity: .07;
}

/*+++counter icon bg++*/
.pt-icon-bg .pt-counter.pt-style-1 .pt-counter-media i {
    font-size: 60px;
}

.pt-icon-bg .pt-counter.pt-style-1 .pt-counter-media {
    margin-right: 0;
    margin-bottom: 20px;
}

.pt-icon-bg .pt-counter.pt-style-1 .pt-counter-media i {
    width: 100px;
    height: 100px;
    padding: 15px;

    background: rgba(255, 255, 255, .11);
}

@media(max-width:1024px) {
    .pt-countbg {
        background-color: #f4f6f9 !important;
        background-image: linear-gradient(90deg, #f4f6f9 50%, #f4f6f9 50%) !important;
    }
}

/*++++++++++++++++++++++++++++++++++++++
Fancybox
+++++++++++++++++++++++++++++++++++++++*/
.pt-fancy-box.pt-style-1 {
    padding: 45px 30px;

    transition: all .5s ease;
}

.pt-fancy-box.pt-style-1 .pt-fancy-box-title {
    margin-top: 15px;
    margin-bottom: 5px;

    font-weight: 600;

    text-transform: capitalize;
}

.pt-fancy-box.pt-style-1 .pt-fancy-box-icon i {
    display: inline-block;

    font-size: 64px;
    line-height: 72px;

    transition: all .5s ease;

    color: var(--primary-color);
}

.pt-fancy-box.pt-style-1:hover .pt-fancy-box-icon i {
    transition: all .5s ease;
    transform: rotateY(180deg);
}

.pt-fancy-box.pt-style-1 .pt-fancybox-description {
    margin-bottom: 15px;
}

.pt-fancy-box.pt-style-2 .pt-fancy-img {
    position: relative;

    overflow: hidden;

    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.pt-fancy-box.pt-style-2 .pt-fancy-img img {
    width: 100%;

    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    -webkit-transform: scale(1);
            transform: scale(1);

    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.pt-fancy-box.pt-style-2:hover .pt-fancy-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.pt-fancy-box.pt-style-2 .pt-fancy-box-icon {
    position: relative;
    position: absolute;
    bottom: 0;
    left: 30px;

    width: 80px;
    height: 80px;

    font-size: 48px;
    line-height: 88px;

    transition: all .5s ease;
    text-align: center;

    color: var(--white-color);
    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
            border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
            border-top-right-radius: 3px;
    background-color: var(--primary-color);
}

.pt-fancy-box.pt-style-2 .pt-fancy-box-info {
    padding: 30px;

    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
}

.pt-fancy-box.pt-style-2 .pt-fancybox-description {
    margin-top: 5px;
    margin-bottom: 15px;
}

.pt-fancy-box.pt-style-3 {
    position: relative;

    padding: 45px 30px;
    overflow: hidden;

    transition: all .5s ease;

    border-radius: 3px;
    background: var(--white-color);
}

.pt-fancy-box.pt-style-3 .pt-fancy-box-hoverbg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;

    opacity: 0;
}

.pt-fancy-box.pt-style-3 .pt-fancy-box-hoverbg:before {
    position: absolute;
    left: 0;

    width: 100%;
    height: 100%;

    content: "";
    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;

    opacity: .9;
    background: var(--primary-color);
}

.pt-fancy-box.pt-style-3:hover .pt-fancy-box-hoverbg {
    opacity: 1;
}

.pt-fancy-box.pt-style-3 .pt-fancy-box-info {
    position: relative;
}

.pt-fancy-box.pt-style-3:hover,
.pt-active .pt-fancy-box.pt-style-3 {
    background: var(--primary-color);
}

.pt-fancy-box.pt-style-3 .pt-fancy-box-icon i {
    display: inline-block;

    font-size: 64px;
    line-height: 72px;

    transition: all .5s ease;

    color: var(--primary-color);
}

.pt-fancy-box.pt-style-3:hover .pt-fancy-box-icon i {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);

    color: var(--white-color);
}

.pt-fancy-box.pt-style-3:hover .pt-fancybox-link,
.pt-active .pt-fancy-box.pt-style-3 .pt-fancybox-link {
    color: var(--white-color);
    border-color: var(--white-color);
}

.pt-fancy-box.pt-style-3 .pt-fancy-box-title {
    margin-top: 15px;
    margin-bottom: 5px;

    font-weight: 600;

    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
    text-transform: capitalize;

    color: var(--dark-color);
}

.pt-fancy-box.pt-style-3 .pt-fancybox-description {
    margin-bottom: 15px;

    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
}

.pt-fancy-box.pt-style-3 .pt-fancy-box-info .pt-button {
    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: none;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
}

.pt-fancy-box.pt-style-3:hover .pt-fancy-box-title {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-3:hover .pt-fancybox-description {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-3:hover .pt-button.pt-button-link {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-3:hover .pt-button.pt-button-link i {
    border-color: var(--white-color);
}

.pt-fancy-box.pt-style-4 {
    position: relative;

    padding: 45px;

    transition: all .5s ease;

    border-radius: 3px;
    background: var(--white-color);
}

.pt-fancy-box.pt-style-4 .pt-fancy-box-icon {
    margin-bottom: 30px;
}

.pt-fancy-box.pt-style-4 .pt-fancy-box-title {
    padding-bottom: 15px;
    margin-top: 5px;

    font-weight: 600;

    text-transform: capitalize;

    border-bottom: 2px solid var(--grey-color);
}

.pt-fancy-box.pt-style-4 .pt-fancy-box-subtitle {
    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-fancy-box.pt-style-4 .pt-fancy-box-icon i {
    display: inline-block;

    font-size: 64px;
    line-height: 72px;

    transition: all .5s ease;

    color: var(--primary-color);
}

.pt-fancy-box.pt-style-4:hover .pt-fancy-box-icon i {
    transition: all .5s ease;
    transform: rotateY(180deg);
}

.pt-fancy-box.pt-style-4 .pt-fancybox-description {
    margin-top: 15px;
}

.pt-fancy-box.pt-style-4 .pt-fancy-box-number {
    position: absolute;
    top: 30px;
    right: 30px;

    font-family: var(--title-fonts);
    font-size: 64px;
    font-weight: 600;
    line-height: 72px;

    transition: all .5s ease;
    text-align: right;

    opacity: .2;
}

.pt-fancy-box.pt-style-4:hover .pt-fancy-box-number {
    right: 45px;

    transition: all .5s ease;
}

@media (min-width:1024px) and (max-width:1199px) {
    .pt-fancy-box.pt-style-4 {
        padding: 30px;
    }
}

@media(max-width:360px) {
    .pt-fancy-box.pt-style-4 {
        padding: 30px;
    }
}


.pt-fancy-box.pt-style-5 {
    position: relative;

    padding: 45px;
    overflow: hidden;

    transition: all .5s ease;

    border-radius: 3px;
    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgb(0 20 9 / 10%);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgb(0 20 9 / 10%);
}

.pt-fancy-box.pt-style-5 .pt-fancy-box-hoverbg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;

    opacity: 0;
}

.pt-fancy-box.pt-style-5 .pt-fancy-box-hoverbg:before {
    position: absolute;
    left: 0;

    width: 100%;
    height: 100%;

    content: "";
    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;

    opacity: .9;
    background: var(--primary-color);
}

.pt-fancy-box.pt-style-5:hover .pt-fancy-box-hoverbg {
    opacity: 1;
}

.pt-fancy-box.pt-style-5 .pt-fancy-box-hoverbg img {
    width: 100%;
}

.pt-fancy-box.pt-style-5 .pt-fancy-box-info {
    position: relative;
}

.pt-fancy-box.pt-style-5:hover,
.pt-active .pt-fancy-box.pt-style-5 {
    background: var(--primary-color);
}

.pt-fancy-box.pt-style-5 .pt-fancy-media {
    position: relative;

    display: inline-flex;
}

.pt-fancy-box.pt-style-5 .pt-fancy-box-icon i {
    display: inline-block;
    margin-right: 30px;

    font-size: 64px;
    line-height: 72px;

    transition: all .5s ease;

    color: var(--primary-color);
}

.pt-fancy-box.pt-style-5:hover .pt-fancy-box-icon i {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);

    color: var(--white-color);
}

.pt-fancy-box.pt-style-5:hover .pt-fancybox-link,
.pt-active .pt-fancy-box.pt-style-5 .pt-fancybox-link {
    color: var(--white-color);
    border-color: var(--white-color);
}

.pt-fancy-box.pt-style-5 .pt-fancy-box-title {
    margin-top: 15px;
    margin-bottom: 5px;

    font-weight: 600;

    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
    text-transform: capitalize;

    color: var(--dark-color);
}

.pt-fancy-box.pt-style-5 .pt-fancybox-description {
    position: relative;

    margin-bottom: 15px;

    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
}

.pt-fancy-box.pt-style-5 .pt-button {
    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: none;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
}

.pt-fancy-box.pt-style-5:hover .pt-fancy-box-title {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-5:hover .pt-fancybox-description {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-5:hover .pt-button.pt-button-link {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-5:hover .pt-button.pt-button-link i {
    border-color: var(--white-color);
}

.pt-fancy-box.pt-style-5 .pt-btn-container {
    position: relative;
}


.pt-fancy-box.pt-style-6 {
    position: relative;

    padding: 30px;
    overflow: hidden;

    transition: all .5s ease;

    border-radius: 3px;
    background: var(--dark-color);
    -webkit-box-shadow: 0 0 30px 0 rgb(0 20 9 / 10%);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgb(0 20 9 / 10%);
}

.pt-fancy-box.pt-style-6 .pt-fancy-box-hoverbg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;

    opacity: 1;
}

.pt-fancy-box.pt-style-6 .pt-fancy-box-hoverbg:before {
    position: absolute;
    left: 0;

    width: 100%;
    height: 100%;

    content: "";
    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;

    opacity: .9;
    background: var(--primary-dark-color);
}

.pt-fancy-box.pt-style-6 .pt-fancy-box-hoverbg img {
    width: 100%;
}

.pt-fancy-box.pt-style-6 .pt-fancy-box-content {
    position: relative;

    display: flex;
}

.pt-fancy-box.pt-style-6 .pt-fancy-box-icon i {
    display: inline-block;
    margin-right: 30px;

    font-size: 52px;
    line-height: 60px;

    transition: all .5s ease;

    color: var(--primary-color);
}

.pt-fancy-box.pt-style-6:hover .pt-fancy-box-icon i {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);

    color: var(--white-color);
}

.pt-fancy-box.pt-style-6.active .pt-fancy-box-hoverbg:before {
    background: var(--primary-color);
}

.pt-fancy-box.pt-style-6 .pt-fancy-box-title {
    margin-bottom: 5px;

    font-weight: 600;

    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
    text-transform: capitalize;

    color: var(--dark-color);
}

.pt-fancy-box.pt-style-6 .pt-fancybox-description {
    position: relative;

    margin-bottom: 15px;

    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
}

.pt-fancy-box.pt-style-6 .pt-button {
    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: none;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
}

.pt-fancy-box.pt-style-6 .pt-button.pt-button-link {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-6:hover .pt-fancy-box-title {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-6:hover .pt-fancybox-description {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-6:hover .pt-button.pt-button-link {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-6:hover .pt-button.pt-button-link i {
    border-color: var(--white-color);
}

.pt-fancy-box.pt-style-6 .pt-btn-container {
    position: relative;
}


.pt-fancy-box.pt-style-7 {
    position: relative;

    padding: 45px;
    overflow: hidden;

    transition: all .5s ease;

    border-radius: 3px;
    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgb(0 20 9 / 10%);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgb(0 20 9 / 10%);
}

.pt-fancy-box.pt-style-7 .pt-fancy-box-hoverbg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;

    opacity: 0;
}

.pt-fancy-box.pt-style-7 .pt-fancy-box-hoverbg:before {
    position: absolute;
    left: 0;

    width: 100%;
    height: 100%;

    content: "";
    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;

    opacity: .9;
    background: var(--primary-color);
}

.pt-fancy-box.pt-style-7:hover .pt-fancy-box-hoverbg {
    opacity: 1;
}

.pt-fancy-box.pt-style-7 .pt-fancy-box-hoverbg img {
    width: 100%;
}

.pt-fancy-box.pt-style-7 .pt-fancy-box-info {
    position: relative;
}

.pt-fancy-box.pt-style-7 .pt-fancy-box-info .pt-fancy-box-subtitle {
    position: relative;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-fancy-box.pt-style-7:hover .pt-fancy-box-info .pt-fancy-box-subtitle {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-7:hover,
.pt-active .pt-fancy-box.pt-style-7 {
    background: var(--primary-color);
}

.pt-fancy-box.pt-style-7 .pt-fancy-media {
    position: relative;

    display: inline-flex;

    align-items: center;
}

.pt-fancy-box.pt-style-7 .pt-fancy-media .pt-fancy-box-icon {
    position: relative;
}

.pt-fancy-box.pt-style-7 .pt-fancy-media .pt-fancy-box-icon:before {
    position: absolute;
    top: 50%;
    right: 20px;

    width: 1px;
    height: 60%;

    content: "";
    transform: translateY(-50%);

    background: rgba(0, 0, 0, .08);
    ;
}

.pt-fancy-box.pt-style-7:hover .pt-fancy-media .pt-fancy-box-icon:before {
    background: rgba(255, 255, 255, .3);
}

.pt-fancy-box.pt-style-7 .pt-fancy-box-icon i {
    display: inline-block;
    margin-right: 45px;

    font-size: 64px;
    line-height: 72px;

    transition: all .5s ease;

    color: var(--primary-color);
}

.pt-fancy-box.pt-style-7:hover .pt-fancy-box-icon i {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);

    color: var(--white-color);
}

.pt-fancy-box.pt-style-7:hover .pt-fancybox-link,
.pt-active .pt-fancy-box.pt-style-7 .pt-fancybox-link {
    color: var(--white-color);
    border-color: var(--white-color);
}

.pt-fancy-box.pt-style-7 .pt-fancy-box-title {
    margin-bottom: 5px;

    font-weight: 600;

    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
    text-transform: capitalize;

    color: var(--dark-color);
}

.pt-fancy-box.pt-style-7 .pt-fancybox-description {
    position: relative;

    margin-top: 20px;
    margin-bottom: 15px;

    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
}

.pt-fancy-box.pt-style-7 .pt-button {
    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: none;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
}

.pt-fancy-box.pt-style-7:hover .pt-fancy-box-title {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-7:hover .pt-fancybox-description {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-7:hover .pt-button.pt-button-link {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-7:hover .pt-button.pt-button-link i {
    border-color: var(--white-color);
}

.pt-fancy-box.pt-style-7 .pt-btn-container {
    position: relative;
}


.pt-fancy-box.pt-style-8 {
    position: relative;

    padding: 45px 30px;
    overflow: hidden;

    transition: all .5s ease;

    border-radius: 3px;
    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
}

.pt-fancy-box.pt-style-8 .pt-fancy-box-top {
    display: flex;

    align-items: center;
}

.pt-fancy-box.pt-style-8 .pt-fancy-box-top i {
    display: inline-block;
    width: 70px;
    height: 70px;
    padding: 5px;

    font-size: 40px;
    line-height: 70px;

    transition: all .5s ease;
    text-align: center;

    color: var(--dark-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 100%;
}

.pt-fancy-box.pt-style-8 .pt-fancy-box-top .pt-fancy-box-title {
    margin-left: 20px;
}

.pt-fancy-box.pt-style-8 .pt-fancybox-description {
    margin-top: 20px;
    margin-bottom: 20px;
}

.pt-fancy-box.pt-style-8 .pt-fancy-box-list ul {
    padding: 0;
    margin: 0;

    list-style-type: none;
}

.pt-fancy-box.pt-style-8 .pt-fancy-box-list li {
    padding-bottom: 4px;

    font-weight: 500;

    color: var(--dark-color);
}

.pt-fancy-box.pt-style-8 .pt-fancy-box-list li:last-child {
    padding-bottom: 0;
}

.pt-fancy-box.pt-style-8 .pt-fancy-box-list li i {
    margin-right: 5px;

    color: var(--primary-color);
}


.pt-fancy-box.pt-style-9 {
    position: relative;

    padding: 30px 24px;

    transition: all .5s ease;

    border-radius: 3px;
    background: var(--white-color);
}

.pt-fancy-box.pt-style-9 .pt-fancy-box-media {
    display: flex;
    padding-bottom: 15px;

    border-bottom: 1px solid #e9e9e9;

    align-items: center;
    justify-content: space-between;
}


.pt-fancy-box.pt-style-9 .pt-fancy-box-icon i {
    display: inline-block;

    font-size: 60px;
    line-height: 68px;

    transition: all .5s ease;

    color: var(--primary-color);
}

.pt-fancy-box.pt-style-9:hover .pt-fancy-box-icon i {
    transition: all .5s ease;
    transform: rotateY(180deg);
}

.pt-fancy-box.pt-style-9 .pt-fancybox-description {
    margin-top: 15px;
    margin-bottom: 0;
}


.pt-fancy-box.pt-style-10 {
    position: relative;

    padding: 30px;
    overflow: hidden;

    transition: all .5s ease;

    border-radius: 3px;
    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgb(0 20 9 / 10%);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgb(0 20 9 / 10%);
}

.pt-fancy-box.pt-style-10 .pt-fancy-box-title {
    margin-bottom: 30px;
}

.pt-fancy-box.pt-style-10 .pt-fancy-box-icon {
    position: relative;

    display: inline-block;
}

.pt-fancy-box.pt-style-10 .pt-fancy-box-icon:before {
    position: absolute;
    top: -10px;
    left: 20px;

    width: 80px;
    height: 80px;

    content: "";
    transition: all .5s ease;

    opacity: .1;
    border-radius: 100%;
    background: var(--primary-color);
}

.pt-fancy-box.pt-style-10:hover .pt-fancy-box-icon:before {
    top: -20px;
}

.pt-fancy-box.pt-style-10 .pt-fancy-box-icon i {
    position: relative;

    display: inline-block;

    font-size: 76px;
    line-height: 76px;

    transition: all .5s ease;

    color: var(--primary-color);
}

.pt-fancy-box.pt-style-10 .pt-fancybox-description {
    position: relative;

    margin-top: 15px;
    margin-bottom: 15px;
}


.pt-fancy-box.pt-style-11 {
    position: relative;

    display: flex;
    padding: 45px 30px;
    overflow: hidden;

    transition: all .5s ease;

    border-radius: 3px;
    background: var(--white-color);

    align-items: center;
    justify-content: space-between;
}

.pt-fancy-box.pt-style-11 .pt-fancy-box-right {
    width: 40%;
}

.pt-fancy-box.pt-style-11 .pt-fancy-box-right img {
    border-radius: 100%;
}

.pt-fancy-box.pt-style-11 .pt-fancy-box-icon {
    position: relative;

    display: inline-block;
}

.pt-fancy-box.pt-style-11 .pt-fancy-box-icon:before {
    position: absolute;
    bottom: 0;
    left: 20px;

    width: 48px;
    height: 48px;

    content: "";
    transition: all .5s ease;

    opacity: .1;
    border-radius: 100%;
    background: var(--primary-color);
}

.pt-fancy-box.pt-style-11 .pt-fancy-box-icon i {
    position: relative;

    display: inline-block;

    font-size: 64px;
    line-height: 72px;

    transition: all .5s ease;

    color: var(--primary-color);
}

.pt-fancy-box.pt-style-11 .pt-fancy-box-title {
    margin: 15px 0;

    font-size: 22px;
    line-height: 30px;
}

.pt-fancy-box.pt-style-11 .pt-fancy-box-list ul {
    padding: 0;
    margin: 0;
    margin-bottom: 15px;

    list-style-type: none;
}

.pt-fancy-box.pt-style-11 .pt-fancy-box-list li {
    padding-bottom: 4px;

    font-weight: 400;

    color: var(--dark-color);
}

.pt-fancy-box.pt-style-11 .pt-fancy-box-list li i {
    margin-right: 5px;

    color: var(--primary-color);
}

.pt-fancy-box.pt-style-12 {
    position: relative;

    padding: 45px;
    overflow: hidden;

    transition: all .5s ease;

    border-radius: 0;
    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgb(0 20 9 / 10%);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgb(0 20 9 / 10%);
}

.pt-fancy-box.pt-style-12.active {
    background: var(--primary-color);
}

.pt-fancy-box.pt-style-12.active .pt-fancy-box-title,
.pt-fancy-box.pt-style-12.active .pt-fancybox-description {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-12.active .pt-button.pt-button-link:hover {
    color: var(--white-color);
}

.pt-fancy-box.pt-style-12.active .pt-fancy-box-icon:before {
    background: var(--white-color);
}

.pt-fancy-box.pt-style-12 .pt-fancy-media {
    display: flex;
}

.pt-fancy-box.pt-style-12 .pt-fancy-box-icon {
    position: relative;

    margin-right: 45px;
}

.pt-fancy-box.pt-style-12 .pt-fancy-box-icon:before {
    position: absolute;
    top: -10px;
    left: 20px;

    width: 80px;
    height: 80px;

    content: "";
    transition: all .5s ease;

    opacity: .1;
    border-radius: 100%;
    background: var(--primary-color);
}

.pt-fancy-box.pt-style-12 .pt-fancy-box-icon i {
    position: relative;

    display: inline-block;

    font-size: 76px;
    line-height: 76px;

    transition: all .5s ease;

    color: var(--primary-color);
}

.pt-fancy-box.pt-style-12 .pt-fancybox-description {
    margin-top: 10px;
    margin-bottom: 20px;
}


@media(max-width:1200px) {
    .pt-fancy-box.pt-style-5 {
        padding: 30px;
    }

    .pt-fancy-box.pt-style-5 .pt-fancy-box-icon i {
        margin-right: 15px;

        font-size: 56px;
        line-height: 64px;
    }

    .pt-fancy-box.pt-style-5 .pt-fancy-box-title {
        font-size: 22px;
    }

    .pt-fancy-box.pt-style-6 {
        padding: 30px;
    }

    .pt-fancy-box.pt-style-6 .pt-fancy-box-icon i {
        margin-right: 15px;

        font-size: 56px;
        line-height: 64px;
    }

    .pt-fancy-box.pt-style-6 .pt-fancy-box-title {
        font-size: 22px;
    }
}


@media(max-width:479px) {
    .pt-fancy-box.pt-style-11 {
        display: block;
    }

    .pt-fancy-box.pt-style-11 .pt-fancy-box-right {
        margin: 0 auto;
        margin-top: 45px;
    }
}

/*+++++++++++++++++++++++++++++++++
Progressbar
+++++++++++++++++++++++++++++++++++++++++*/

/*---ProgressBar-style-1------*/

.pt-progressbar-style-1 .pt-progressbar-content {
    display: inline-block;
    float: left;
    width: 100%;
    padding-bottom: 20px;
}

.pt-progressbar-style-1 .pt-progressbar-content .sonny_progressbar {
    margin-bottom: 0;
}

.pt-progressbar-style-1 .pt-progressbar-content .bar-container {
    height: 12px;
}

.pt-progressbar-style-1 .pt-progressbar-content:last-child {
    margin-bottom: 0;
}

.pt-progressbar-style-1 .progress-title {
    margin: 0;

    font-family: var(--title-fonts);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;

    color: var(--dark-color);
}

.pt-progressbar-style-1 .progress-value {
    float: right;
    margin: 0;

    font-size: 16px;
    font-weight: 600;
    line-height: 24px;

    color: var(--secondary-color);
}

.pt-progressbar-style-1 .pt-progress-bar {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 0;
    margin-top: 5px;

    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: #14457b;
}

.pt-progressbar-style-1 .pt-progress-bar span {
    display: inline-block;
    float: left;

    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: var(--primary-color);
}

.pt-progressbar-box .pt-progressbar-content .pt-progress-bar span {
    height: 10px;

    line-height: 10px;

    background: var(--primary-color) !important;
}


.pt-darkbg-progressbar .pt-progressbar-style-1 .progress-title {
    color: var(--white-color);
}

.pt-darkbg-progressbar .pt-progressbar-style-1 .progress-value {
    color: var(--white-color);
}

.pt-progressbar-style-1 .pt-progress-bar {
    background: var(--grey-color);
}

.pt-darkbg-progressbar .pt-progressbar-style-1 .pt-progress-bar span {
    display: inline-block;

    background: var(--primary-color);
}

.pt-darkbg-progressbar .pt-progressbar-box .pt-progressbar-content .pt-progress-bar span {
    background: var(--primary-color) !important;
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
isotope Portfolio
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-grid-item.visible_item,
.pt-masonry-item.visible_item {
    display: none;
}

.pt-filters .pt-filter-button-group ul {
    display: inline-block;
    width: 100%;
    padding: 0;
    margin: 0 0 45px;

    text-align: center;
}

.pt-filters .pt-filter-button-group ul li {
    display: inline-block;
    padding: 10px 30px;

    font-family: var(--title-fonts);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    list-style: none;

    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    text-transform: capitalize;

    color: var(--dark-color);
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: var(--white-color);
}

.pt-filters .pt-filter-button-group ul li:last-child {
    margin-bottom: 0;
}

.pt-filters .pt-filter-button-group ul li:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.pt-filters .pt-filter-button-group ul li.active,
.pt-filters .pt-filter-button-group ul li.active:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.pt-grid {
    display: inline-block;
    float: left;
    width: 100%;
}

.pt-grid:after {
    display: block;
    clear: both;

    content: "";
}

.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 {
    display: inline-block;
    width: 100%;
    margin-top: 0;
}

.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.no-padding .ipt-lg-6,
.pt-masonry.no-padding .ipt-lg-3 {
    padding: 0;
}

@media(max-width:1365px) {
    .pt-col-3 {
        width: 33.33%;
    }

    .pt-masonry .ipt-lg-6 {
        width: 66.66%;
    }

    .pt-masonry .ipt-lg-3 {
        width: 33.33%;
    }

    .pt-filters .pt-filter-button-group ul li {
        margin-right: 10px;
    }

    .pt-masonry .ipt-lg-6 {
        width: 100%;
    }

    .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 {
        padding: 5px 15px;
        margin-right: 0;

        font-size: 14px;
    }

    .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;
    }
}

@media(max-width:479px) {
    .pt-filters .pt-filter-button-group ul li {
        margin-bottom: 15px;
    }
}

.pt-grid-item {
    float: left;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Portfoliobox
++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-portfoliobox-main .owl-filter-bar a {
    display: block;
    padding: 12px 30px;
    margin: 0 15px 25px 15px;

    font-family: var(--title-fonts);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    list-style: none;

    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    text-align: center;
    text-transform: capitalize;

    color: var(--secondary-color);
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: var(--white-color);
}

.pt-portfoliobox-main .owl-filter-bar a:last-child {
    margin-bottom: 0;
}

.pt-portfoliobox-main .owl-filter-bar a:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.pt-portfoliobox-main .owl-filter-bar a.current {
    color: var(--white-color);
    background: var(--primary-color);
}

.pt-portfoliobox.pt-style-1 {
    position: relative;

    display: inline-block;
    float: left;
    width: 100%;
    overflow: hidden;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;

    border-radius: 3px;
}

.pt-portfoliobox.pt-style-1 .pt-portfolio-img img {
    width: 100%;
    height: 100%;

    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);

    border-radius: 3px;
}

.pt-portfoliobox.pt-style-1 .pt-portfolio-img {
    position: relative;
}

.pt-portfoliobox.pt-style-1 .pt-portfolio-img:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;

    display: inline-block;
    width: 100%;
    height: 100%;

    content: "";
    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;

    opacity: 0;
    background: var(--secondary-color);
}

.pt-portfoliobox.pt-style-1:hover .pt-portfolio-img:before {
    opacity: .2;
}

.pt-portfoliobox.pt-style-1 .pt-portfolio-info span,
.pt-portfoliobox.pt-style-1 .pt-portfolio-info .pt-portfolio-link a {
    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-portfoliobox.pt-style-1:hover .pt-portfolio-img img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}

.pt-portfoliobox.pt-style-1 .pt-portfolio-info {
    position: absolute;
    right: 30px;
    bottom: -15px;
    left: 30px;

    padding: 30px;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    text-align: center;

    opacity: 0;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: var(--white-color);
}

.pt-portfoliobox.pt-style-1:hover .pt-portfolio-info {
    bottom: 30px;
    z-index: 10;

    opacity: 1;
}

.pt-portfoliobox.pt-style-1 .pt-portfolio-info h5 a {
    color: var(--dark-color);
}

.pt-portfoliobox.pt-style-1 .pt-portfolio-info h5 a:hover {
    color: var(--primary-color);
}

.pt-portfoliobox.pt-style-1 .pt-portfolio-icon {
    position: absolute;
    top: 30px;
    right: 30px;

    display: -ms-flexbox;
    display: -webkit-flex;
    display:         flex;
    width: 60px;
    height: 60px;
            flex-direction: row;

    transition: all 300ms linear 0s;

    opacity: 0;

    align-items: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
    justify-content: center;
}

.pt-portfoliobox.pt-style-1:hover .pt-portfolio-icon {
    z-index: 9;

    transform: scale(1);

    opacity: 1;
}

.pt-portfoliobox.pt-style-1 .pt-portfolio-icon i {
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display:         inline-flex;
    width: 54px;
    height: 54px;

    font-size: 16px;
    line-height: 24px;

    transition: all .5s ease;

    color: var(--white-color);
    border-radius: 3px;
    background-color: var(--primary-color);

    align-items: center;
    justify-content: center;
}

.pt-portfoliobox.pt-style-1 .pt-portfolio-icon i:hover {
    background: var(--dark-color);
}

.pt-portfoliobox .owl-nav {
    position: absolute;
    top: -136px;
    right: 0;

    margin-top: 0;

    text-align: center;
}

@media(max-width:1023px) {
    .pt-portfoliobox .owl-nav {
        top: -120px;
    }

    .pt-portfoliobox-main .owl-filter-bar a {
        padding: 12px 5px;
    }
}

@media(max-width:991px) {
    .pt-portfoliobox .owl-nav {
        display: none;
    }

    .pt-portfoliobox-main .owl-filter-bar {
        text-align: center;
    }

    .pt-portfoliobox-main .owl-filter-bar a {
        display: inline-block;
        padding: 12px 30px;
        margin: 0 5px 25px 5px;
    }
}

@media(max-width:767px) {
    .pt-portfoliobox-main .owl-filter-bar a:last-child {
        margin-bottom: 25px;
    }
}

@media(max-width:479px) {
    .pt-portfoliobox-main .owl-filter-bar a {
        display: block;
        margin: 0 5px 10px 5px;
    }
}

/*+++++++++++++ portfolio single ++++++++++++++*/
.pt-portfolio-info-box {
    display: inline-block;
    width: 100%;
}

.pt-porfolio-info-header h5 {
    margin-bottom: 0;

    font-size: 32px;
    line-height: 40px;
}

.pt-porfolio-info .pt-info-list {
    padding: 0;
    margin: 0;
}

.pt-porfolio-info .pt-info-list li {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 0 0 15px;
    margin: 0 0 15px;

    list-style: none;

    border-bottom: 1px solid var(--grey-color);
}

.pt-porfolio-info .pt-info-list li h5 {
    display: inline-block;

    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.pt-porfolio-info .pt-info-list li span {
    float: right;

    color: var(--primary-color);
}

.Projects-dts .pt-portfolio-block .pt-portfolio-info {
    padding-bottom: 0;
}

.pt-porfolio-info .pt-info-list li:last-child {
    border-bottom: none;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Team
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-team-box.pt-style-1 .owl-carousel .owl-dots {
    margin-top: 0;
}

.pt-team-box.pt-style-1 .pt-team-img {
    position: relative;

    overflow: hidden;

    border-radius: 3px;
}

.pt-team-box.pt-style-1 .pt-team-img img {
    width: 100%;
}

.pt-team-box.pt-style-1 .pt-team-social ul {
    position: absolute;
    top: -100px;
    right: 15px;

    display: inline-block;
    width: 60px;
    padding: 0;
    margin: 0;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;

    opacity: 0;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomright: 3px;
            border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
            border-bottom-left-radius: 3px;
    background: var(--primary-color);
}

.pt-team-box.pt-style-1:hover .pt-team-social ul {
    top: 0;

    opacity: 1;
}

.pt-team-box.pt-style-1 .pt-team-social ul li {
    display: inline-flex;

    list-style: none;
}

.pt-team-box.pt-style-1 .pt-team-social ul li:last-child {
    margin: 0;
}

.pt-team-box.pt-style-1 .pt-team-social ul li a {
    width: 60px;
    height: 60px;

    line-height: 60px;

    text-align: center;

    color: var(--white-color);
}

.pt-team-box.pt-style-1 .pt-team-social ul li a:hover {
    background: var(--dark-color);
}

.pt-team-box.pt-style-1 .pt-team-social ul li:last-child a {
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomright: 3px;
            border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
            border-bottom-left-radius: 3px;
}

.pt-team-box.pt-style-1 .pt-team-info {
    position: relative;

    padding: 20px 15px;
    margin: 0 8%;

    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    -webkit-transform: translate(-30px);
       -moz-transform: translate(-30px);
        -ms-transform: translate(-30px);
         -o-transform: translate(-30px);
            transform: translateY(-30px);
            transform: translateY(-30px);
    text-align: center;

    border-radius: 3px;
    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
}

.pt-team-box.pt-style-1:hover .pt-team-info {
    -webkit-transform: translate(-60px);
       -moz-transform: translate(-60px);
        -ms-transform: translate(-60px);
         -o-transform: translate(-60px);
            transform: translateY(-60px);
            transform: translateY(-60px);
}

.pt-team-box.pt-style-1 .pt-team-info h5 a {
    color: var(--dark-color);
}

.pt-team-box.pt-style-1 .pt-team-info h5 a:hover {
    color: var(--primary-color);
}

.pt-team-box.pt-style-1 .pt-team-info .pt-team-designation {
    display: inline-block;
    width: 100%;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-team.pt-team-style-1 .owl-carousel .owl-dots {
    margin-top: 0;
}

.pt-team-box.pt-style-2 {
    border-radius: 3px;
}

.pt-team-box.pt-style-2 .pt-team-img {
    position: relative;

    overflow: hidden;
}

.pt-team-box.pt-style-2 .pt-team-img img {
    width: 100%;

    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.pt-team-box.pt-style-2 .pt-team-social ul {
    position: absolute;
    top: -100px;
    right: 15px;

    display: inline-block;
    width: 60px;
    padding: 0;
    margin: 0;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;

    opacity: 0;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomright: 3px;
            border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
            border-bottom-left-radius: 3px;
    background: var(--primary-color);
}

.pt-team-box.pt-style-2:hover .pt-team-social ul {
    top: 0;

    opacity: 1;
}

.pt-team-box.pt-style-2 .pt-team-social ul li {
    display: inline-flex;

    list-style: none;
}

.pt-team-box.pt-style-2 .pt-team-social ul li:last-child {
    margin: 0;
}

.pt-team-box.pt-style-2 .pt-team-social ul li a {
    width: 60px;
    height: 60px;

    line-height: 60px;

    text-align: center;

    color: var(--white-color);
}

.pt-team-box.pt-style-2 .pt-team-social ul li a:hover {
    background: var(--dark-color);
}

.pt-team-box.pt-style-2 .pt-team-social ul li:last-child a {
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomright: 3px;
            border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
            border-bottom-left-radius: 3px;
}

.pt-team-box.pt-style-2 .pt-team-info {
    position: relative;
    position: relative;

    padding: 20px 15px;

    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    text-align: center;

    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
}

.pt-team-box.pt-style-2 .pt-team-info:before {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 0;

    content: "";
    transition: all .3s ease-in-out;

    background: var(--primary-color);
}

.pt-team-box.pt-style-2:hover .pt-team-info:before {
    height: 100%;
}

.pt-team-box.pt-style-2:hover .pt-member-name,
.pt-team-box.pt-style-2:hover .pt-team-info .pt-team-designation {
    color: var(--white-color);
}

.pt-team-box.pt-style-2 .pt-team-info h5 {
    position: relative;

    margin: 0;

    font-size: 24px;
    line-height: 32px;

    text-transform: capitalize;

    color: var(--dark-color);
}

.pt-team-box.pt-style-2 .pt-team-info h5 a:hover {
    color: var(--white-color);
}

.pt-team-box.pt-style-2 .pt-team-info .pt-team-designation {
    position: relative;

    display: inline-block;
    width: 100%;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-team-box.pt-style-3 .owl-carousel .owl-dots {
    margin-top: 0;
}

.pt-team-box.pt-style-3 .pt-team-img {
    position: relative;

    display: inline-block;
    width: 60%;
    overflow: hidden;

    border-radius: 100%;
}

.pt-team-box.pt-style-3 .pt-team-img:before {
    position: absolute;
    left: 0;

    width: 100%;
    height: 100%;

    content: "";
    transition: all .5s ease;

    opacity: 0;
    background: var(--primary-color);
}

.pt-team-box.pt-style-3:hover .pt-team-img:before {
    opacity: .8;
}

.pt-team-box.pt-style-3 .pt-team-social ul {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;

    display: inline-block;
    padding: 0;
    margin: 0;
    margin: 0 auto;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    transform: translateY(-50%);

    opacity: 0;
}

.pt-team-box.pt-style-3:hover .pt-team-social ul {
    opacity: 1;
}

.pt-team-box.pt-style-3 .pt-team-social ul li {
    display: inline-flex;

    list-style: none;
}

.pt-team-box.pt-style-3 .pt-team-social ul li:last-child {
    margin: 0;
}

.pt-team-box.pt-style-3 .pt-team-social ul li a {
    width: 40px;
    height: 40px;

    line-height: 40px;

    text-align: center;

    color: var(--white-color);
}

.pt-team-box.pt-style-3 .pt-team-social ul li a:hover {
    color: var(--dark-color);
    background: transparent;
}

.pt-team-box.pt-style-3 .pt-team-social ul li:last-child a {
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomright: 3px;
            border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
            border-bottom-left-radius: 3px;
}

.pt-team-box.pt-style-3 .pt-team-info {
    position: relative;

    padding: 15px 0;

    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    text-align: center;
}

.pt-team-box.pt-style-3 .pt-team-info h5 a {
    color: var(--dark-color);
}

.pt-team-box.pt-style-3 .pt-team-info h5 a:hover {
    color: var(--primary-color);
}

.pt-team-box.pt-style-3 .pt-team-info .pt-team-designation {
    display: inline-block;
    width: 100%;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-team.pt-team-style-1 .owl-carousel .owl-dots {
    margin-top: 0;
}


@media(max-width:1023px) {
    .pt-blue-section-side-right:before {
        display: none;
    }

    .pt-gray-bg {
        background: var(--grey-color);
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Apoointment
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-blue-section-side-right:before {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1;

    display: inline-block;
    width: 1000%;
    height: 100%;

    content: "";

    background: var(--primary-color);
}

.pt-applyform .wpcf7-form-control-wrap input {
    margin-bottom: 30px;

    color: var(--white-color);
    border: none;
    background: rgba(255, 255, 255, .14);
}

.pt-applyform .wpcf7-form-control-wrap input::placeholder {
    color: var(--white-color);
}

.pt-applyform .wpcf7-submit {
    color: var(--dark-color) !important;
    background: var(--white-color);
}

.pt-applyform .wpcf7-submit:hover {
    color: var(--white-color) !important;
    background: var(--secondary-color);
}

.pt-applyform-whitebg .pt-applyform .wpcf7-form-control-wrap input,
.pt-applyform-whitebg .pt-applyform .wpcf7-form-control-wrap textarea {
    color: var(----dark-color);
    border: 1px solid var(--grey-color);
    border-radius: 3px;
    background: var(--grey-color);
}

.pt-applyform-whitebg .pt-applyform .wpcf7-form-control-wrap input:hover,
.pt-applyform-whitebg .pt-applyform .wpcf7-form-control-wrap textarea:hover,
.pt-applyform-whitebg .pt-applyform .wpcf7-form-control-wrap input:focus,
.pt-applyform-whitebg .pt-applyform .wpcf7-form-control-wrap textarea:focus {
    border-color: var(--primary-color);
}

.pt-applyform-whitebg .pt-applyform .wpcf7-form-control-wrap input::placeholder,
.pt-applyform-whitebg .pt-applyform .wpcf7-form-control-wrap textarea::placeholder {
    color: var(----dark-color);
}

.pt-applyform-whitebg .pt-applyform .wpcf7-form-control-wrap textarea {
    height: 150px;
    margin-bottom: 30px;
}

.pt-applyform-whitebg .pt-applyform .wpcf7-submit {
    color: var(--white-color) !important;
    background: var(--primary-color);
}

.pt-applyform-whitebg .pt-applyform .wpcf7-submit:hover {
    background: var(--dark-color);
}

.pt-white-input .pt-applyform-whitebg .pt-applyform .wpcf7-form-control-wrap input,
.pt-white-input .pt-applyform-whitebg .pt-applyform .wpcf7-form-control-wrap textarea {
    border: 1px solid var(--white-color);
    background: var(--white-color);
}

@media(max-width:767px) {
    .pt-blue-section-side-right:before {
        display: none;
    }
}

.pt-appointment label {
    display: inline-block;
    width: 100%;
}

.pt-appointment-title {
    display: inline-block;
    margin-bottom: 5px;

    font-weight: 500;

    color: var(--dark-color);
}

.pt-appointment .wpcf7-form-control-wrap input,
.pt-appointment .wpcf7-form-control-wrap select {
    margin-bottom: 15px;

    border-radius: 3px;
    background-color: var(--white-color);
}

.pt-appointment textarea {
    height: 100px;
    margin-bottom: 15px;

    border-radius: 3px;
    background-color: var(--white-color);
}

.pt-appointment p {
    margin: 0;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Testimonial
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-testimonial-box.pt-style-1 {
    padding: 45px;

    border-radius: 3px;
    background: var(--grey-color);
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media {
    position: relative;

    display: flex;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-img img {
    width: 80px;
    height: 80px;

    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-img {
    margin-right: 15px;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-meta {
    z-index: 2;

    align-self: center;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-meta span {
    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-icon i {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;

    font-size: 64px;
    line-height: 72px;

    opacity: .1;
    color: var(--primary-color);
}

.pt-testimonial-border .pt-testimonial-box.pt-style-1 .pt-testimonial-content p {
    padding-bottom: 20px;
    margin-bottom: 30px;

    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.pt-testimonial-border .pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-icon i {
    opacity: .8;
    color: var(--white-color);
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-img img {
    display: inline-block;
    width: 120px;
    height: 120px;

    border: 5px solid var(--white-color);
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-info p {
    margin-top: 30px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-meta span {
    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-testimonial-arrow .pt-testimonial {
    padding: 0;
}

.pt-testimonial-arrow .owl-carousel .owl-nav {
    position: static;

    margin: 0;
}

.pt-testimonial-arrow .owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;

    margin: 0;

    transform: translateY(-50%);

    color: var(--secondary-color) !important;
    border-radius: 3px;
    background: var(--white-color);
}

.pt-testimonial-arrow .owl-carousel .owl-nav button.owl-prev {
    left: -100px;
}

.pt-testimonial-arrow .owl-carousel .owl-nav button.owl-next {
    right: -100px;
}

.pt-testimonial-whitebg .pt-testimonial-box.pt-style-1 {
    padding: 30px;

    background: #fff;
}

.pt-testimonial-whitebg.pt-testimonial-border .pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-icon i {
    color: var(--grey-color);
}

.pt-testimonial-box.pt-style-3 {
    padding: 45px;

    border-radius: 3px;
    background: var(--white-color);
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-media {
    position: relative;

    display: flex;
    margin-top: 30px;

    align-items: center;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-media .pt-testimonial-img img {
    width: 80px;
    height: 80px;

    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-media .pt-testimonial-img {
    margin-right: 15px;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-media .pt-testimonial-meta {
    align-self: center;
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-media .pt-testimonial-meta span {
    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-media .pt-testimonial-icon i {
    position: absolute;
    right: 0;
    bottom: 110px;
    z-index: 1;

    font-size: 64px;
    line-height: 72px;

    opacity: .1;
    color: var(--primary-color);
}

.pt-testimonial-box.pt-style-3 .pt-testimonial-star {
    margin-bottom: 15px;

    font-size: 14px;
    line-height: 22px;

    letter-spacing: .1em;

    color: #ff9529;
}

.pt-testimonial.pt-testimonial-style-3 .owl-nav {
    margin-top: -30px;
    margin-right: 60px;

    text-align: right;
}

.pt-home4-testimonial-dot .pt-testimonial.pt-testimonial-style-3 .owl-dots {
    width: 90%;
    margin-top: -60px;

    text-align: right;
}

.pt-testimonial-greybg .pt-testimonial-box.pt-style-3 {
    padding: 30px;

    border-radius: 3px;
    background: var(--grey-color);
}

.pt-testimonial-greybg .pt-testimonial-box.pt-style-3 .pt-testimonial-media .pt-testimonial-icon i {
    bottom: 0;

    font-size: 56px;
    line-height: 64px;
}

.pt-testimonial-bg-transparent .pt-testimonial-box.pt-style-3 {
    padding: 0;

    color: var(--white-color);
    border-radius: 3px;
    background: transparent;
}

.pt-testimonial-bg-transparent .pt-testimonial-box.pt-style-3 .pt-testimonial-media .pt-testimonial-icon i {
    color: var(--white-color);
}

.pt-testimonial-bg-transparent .pt-testimonial.pt-testimonial-style-3 .owl-carousel .owl-dots {
    text-align: left;
}

.pt-testimonial-bg-transparent .pt-testimonial.pt-testimonial-style-3 .owl-carousel .owl-dots .owl-dot {
    background-color: var(--white-color);
}

.pt-testimonial-bg-transparent .pt-testimonial.pt-testimonial-style-3 .owl-carousel .owl-dots .owl-dot.active {
    background: var(--primary-color);
}

@media(max-width:1023px) {
    .pt-testimonial-arrow .pt-testimonial {
        padding: 0 30px;
    }

    .pt-testimonial-arrow .owl-carousel .owl-nav button.owl-prev {
        display: none;
    }

    .pt-testimonial-arrow .owl-carousel .owl-nav button.owl-next {
        display: none;
    }

    .pt-dark-section-left:before {
        display: none;
    }
}

@media(max-width:767px) {
    .pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-img img {
        width: 80px;
        height: 80px;
    }
}

@media(max-width:479px) {
    .pt-testimonial-box.pt-style-1 {
        padding: 30px 15px;
    }

    .pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-icon i {
        display: none;
    }
}

@media screen and (max-width:360px) {
    .pt-testimonial-box.pt-style-3 .pt-testimonial-media .pt-testimonial-meta span {
        font-size: 12px;
        line-height: 20px;
    }

    .pt-testimonial-box.pt-style-3 .pt-testimonial-media .pt-testimonial-meta h5 {
        font-size: 16px;
        line-height: 24px;
    }

    .pt-home4-testimonial-dot .pt-testimonial.pt-testimonial-style-3 .owl-dots {
        margin-top: -45px;
    }
}

.pt-dark-section-left:before {
    position: absolute;
    top: 0;
    right: 100%;

    display: inline-block;
    width: 1000%;
    height: 100%;

    content: "";

    background: var(--primary-color);
}

.pt-white-section-right:after {
    position: absolute;
    top: 0;
    left: 100%;

    display: inline-block;
    width: 1000%;
    height: 100%;

    content: "";

    background: var(--white-color);
}

.pt-grey-section-right:after {
    position: absolute;
    top: 0;
    left: 100%;

    display: inline-block;
    width: 1000%;
    height: 100%;

    content: "";

    background: var(--grey-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Client
++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-clientbox.pt-style-1 img {
    border-radius: 0;
}

.pt-clientbox.pt-style-1 .pt-client-img {
    position: relative;

    display: block;
    width: auto;
    margin: 0 auto;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
}

.pt-clientbox.pt-style-1 a:hover .pt-client-img {
    opacity: 0;
}

.pt-clientbox.pt-style-1 .pt-client-hover-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: auto;
    margin: 0 auto;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;

    opacity: 0;
}

.pt-clientbox.pt-style-1 a:hover .pt-client-hover-img {
    opacity: 1;
}

.pt-primary-section-side-left:before {
    position: absolute;
    top: 0;
    right: 100%;
    z-index: 1;

    display: inline-block;
    width: 1000%;
    height: 100%;

    content: "";

    background: var(--primary-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Tabs
++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-tabs-1 .nav-tabs {
    display: flex;

    border: none;
}

.pt-tabs-1 .nav-tabs .nav-item {
    position: relative;

    padding: 20px 15px;
    margin-right: 30px;

    font-size: 20px;
    font-weight: 600;
    line-height: 20px;

    transition: none;

    color: var(--primary-color);
    border: none;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: var(--grey-color);

    flex: 1;
}

.pt-tabs-1 .nav-tabs .nav-item:last-child {
    margin-right: 0;
}

.pt-tabs-1 .nav-tabs .nav-item i {
    display: inline-block;

    font-size: 62px;
    line-height: 70px;
}

.pt-tabs-1 .nav-tabs .nav-item span {
    display: inline-block;
    width: 100%;

    font-family: var(--title-fonts);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;

    color: var(--dark-color);
}

.pt-tabs-1 .nav-tabs .nav-item.active {
    position: relative;

    color: var(--white-color);
    background: var(--primary-color);
}

.pt-tabs-1 .nav-tabs .nav-item.active span {
    color: var(--white-color);
}

.pt-tabs-1 .nav-tabs .nav-item:after {
    position: absolute;
    top: 100%;
    left: 50%;

    width: 0;
    height: 0;
    margin-left: -15px;

    content: "";
    transition: none;
    pointer-events: none;

    opacity: 0;
    border: solid transparent;
    border-width: 15px;
    border-color: rgba(255, 75, 54, 0);
    border-top-color: var(--white-color);
}

.pt-tabs-1 .nav-tabs .nav-item.active:after {
    opacity: 1;
    border-top-color: var(--primary-color);
}

.pt-tabs-1 .tab-content {
    margin-top: 60px;
}

.pt-tabs-1 .tab-content img.pt-full-width {
    width: 100%;
    height: auto;

    border-radius: 3px;
}

.pt-tabs-1 .tab-content .pt-tab-info {
    padding-left: 20px;
}

.pt-tabs-1 .tab-content .pt-tab-info h2 {
    margin-bottom: 15px;

    font-size: 40px;
    line-height: 48px;
}

.pt-tabs-1 .tab-content .pt-tab-info ul {
    padding: 0;
    margin: 0;
}

.pt-tabs-1 .tab-content .pt-tab-info ul li {
    padding: 0 0 10px;
    margin: 0;

    list-style: none;
}

.pt-tabs-1 .tab-content .pt-tab-info ul li:before {
    margin-right: 10px;

    font-family: "Ionicons";

    content: "\f382";

    color: var(--primary-color);
}

.pt-tabs-1 .tab-content .pt-tab-info .pt-button-block {
    margin: 30px 0 0;
}

.pt-tabs-border .pt-tabs-1 .nav-tabs {
    border-bottom: 1px solid var(--grey-color);
}

.pt-tabs-border .pt-tabs-1 .nav-tabs .nav-item {
    display: inline-flex;

    color: var(--dark-color);
    border-radius: 0;
    background: transparent;

    align-items: center;
}

.pt-tabs-1 .nav-tabs .nav-item.active {
    border-bottom: 1px solid var(--primary-color);
}

.pt-tabs-border .pt-tabs-1 .nav-tabs .nav-item i {
    font-size: 44px;
    line-height: 52px;
}

.pt-tabs-border .pt-tabs-1 .nav-tabs .nav-item span {
    margin-left: 15px;

    text-align: left;
}

.pt-tabs-border .pt-tabs-1 .nav-tabs .nav-item.active,
.pt-tabs-border .pt-tabs-1 .nav-tabs .nav-item.active span {
    color: var(--dark-color);
}

.pt-tabs-border .pt-tabs-1 .nav-tabs .nav-item.active {
    color: var(--primary-color);
}

.pt-tabs-border .pt-tabs-1 .nav-tabs .nav-item:after {
    display: none;
}

@media(max-width:1365px) {
    .pt-tabs-1 .nav-tabs .nav-item {
        padding: 15px;
    }
}

@media(max-width:1023px) {
    .pt-tabs-1 .tab-content .pt-tab-info {
        margin-top: 30px;
    }

    .pt-tabs-1 .tab-content .pt-tab-info h2 {
        font-size: 38px;
        line-height: 46px;
    }

    .pt-tabs-1 .nav-tabs .nav-item {
        margin-right: 10px;
    }

    .pt-tabs-1 .nav-tabs .nav-item span {
        font-size: 16px;
        line-height: 24px;
    }
}

@media(max-width:991px) {
    .pt-tabs-1 .tab-content .pt-tab-info {
        padding-left: 0;
    }
}

@media(max-width:767px) {
    .pt-tabs-1 .nav-tabs .nav-item:after {
        display: none;
    }

    .pt-tabs-1 .nav-tabs .nav-item {
        padding: 15px;
        margin: 0 10px 10px 0;
    }

    .pt-tabs-1 .nav-tabs .nav-item i {
        font-size: 40px;
        line-height: 48px;
    }

    .pt-tabs-1 .nav-tabs .nav-item span {
        font-size: 14px;
        line-height: 22px;
    }

    .pt-tabs-1 .tab-content .pt-tab-info h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .pt-tabs-border .pt-tabs-1 .nav-tabs {
        border: none;
    }

    .pt-tabs-border .pt-tabs-1 .nav-tabs .nav-item {
        width: 50%;
    }
}

@media(max-width:479px) {
    .pt-tabs-1 .nav-tabs .nav-item i {
        font-size: 30px;
        line-height: 38px;
    }

    .pt-tabs-border .pt-tabs-1 .nav-tabs {
        display: block;
    }

    .pt-tabs-border .pt-tabs-1 .nav-tabs .nav-item {
        width: 100%;
    }

    .pt-tabs-border .pt-tabs-1 .nav-tabs .nav-item span {
        font-size: 16px;
        line-height: 24px;
    }
}

/*+++++++++++++fullwidth img++++++++++++++*/
@media(max-width:1024px) {
    .pt-possition-img {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;

        width: 100%;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++
Pricing box
++++++++++++++++++++++++++++++++++++++++*/
.pt-pricing-plan.pt-style-1 {
    padding-bottom: 45px;

    text-align: center;

    border-radius: 3px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
}

.pt-pricing-plan.pt-style-1 .pt-pricing-head {
    font-family: var(--title-fonts);
}

.pt-pricing-plan.pt-style-1 .pt-pricing-head .pt-title {
    display: block;
    padding: 45px 30px;
    padding-bottom: 90px;

    font-size: 28px;
    font-weight: 600;
    line-height: 36px;

    color: var(--white-color);
    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
            border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
            border-top-right-radius: 3px;
    background: var(--primary-dark-color);
}

.pt-pricing-plan.pt-style-1 .pt-pricing-head .pt-service-media i {
    display: inline-block;
    width: 110px;
    height: 110px;
    margin-top: -90px;

    font-size: 48px;
    line-height: 110px;

    color: var(--primary-dark-color);
    border: 2px solid var(--grey-color);
    border-radius: 900px;
    background: var(--white-color);
}

.pt-pricing-plan.pt-style-1 .pt-pricing-head .price {
    position: relative;

    display: flex;
    margin: 30px 0 30px;

    font-weight: 600;

    color: var(--dark-color);

    align-items: flex-end;
    justify-content: center;
}

.pt-pricing-plan.pt-style-1 .pt-pricing-head .price .pt-amount {
    font-size: 64px;
    line-height: 72px;
}

.pt-pricing-plan.pt-style-1 .pt-pricing-head .price .pt-price-dollar {
    margin: 0 5px;

    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

    color: var(--dark-color);
}

.pt-pricing-plan.pt-style-1 .pt-pricing-head .price .price-month {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

    text-transform: capitalize;

    color: var(--dark-color);
}

.pt-pricing-plan.pt-style-1 ul.pt-pricing-list {
    padding: 0;

    list-style: none;
}

.pt-pricing-plan.pt-style-1 ul.pt-pricing-list li {
    margin: 0 0 10px;

    line-height: 34px;

    text-transform: capitalize;
}

.pt-pricing-plan.pt-style-1 ul.pt-pricing-list li i {
    margin-right: 5px;

    font-size: 14px;

    color: var(--primary-color);
}

.pt-pricing-plan.pt-style-1 ul.pt-pricing-list li.active i {
    color: #f00;
}

.pt-pricing-plan.pt-style-1 ul.pt-pricing-list li:last-child {
    margin-bottom: 0;
}

.pt-pricing-plan.pt-style-1 .pt-btn-container {
    margin: 30px 0 0;

    text-align: center;
}

.pt-pricing-plan.pt-style-1.active .pt-pricing-head .pt-title {
    background: var(--primary-color);
}

.pt-pricing-plan.pt-style-1.active .pt-pricing-head .pt-service-media i {
    color: var(--primary-color);
}

.pt-pricing-plan.pt-style-2 {
    padding: 45px;

    text-align: center;

    border-radius: 3px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
}

.pt-pricing-plan.pt-style-2 .pt-title {
    display: block;

    font-size: 28px;
    font-weight: 600;
    line-height: 36px;

    text-transform: capitalize;

    color: var(--primary-dark-color);
}

.pt-pricing-plan.pt-style-2 .price {
    position: relative;

    display: inline-flex;
    margin: 30px 0 30px;

    font-weight: 600;

    color: var(--primary-color);

    justify-content: center;
}

.pt-pricing-plan.pt-style-2 .price .pt-amount {
    font-size: 64px;
    line-height: 72px;

    color: var(--primary-color);
}

.pt-pricing-plan.pt-style-2 .price .pt-price-dollar {
    display: inline-flex;
    margin-right: 5px;

    font-size: 22px;
    font-weight: 400;
    line-height: 30px;

    color: var(--primary-color);

    align-items: flex-start;
}

.pt-pricing-plan.pt-style-2 .price .price-month {
    display: inline-flex;

    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

    text-transform: capitalize;

    color: var(--primary-color);

    align-items: flex-end;
}

.pt-pricing-plan.pt-style-2.active {
    color: #fff;
    background: var(--primary-color);
}

.pt-pricing-plan.pt-style-2.active .pt-title,
.pt-pricing-plan.pt-style-2.active .price .pt-price-dollar,
.pt-pricing-plan.pt-style-2.active .price .price-month,
.pt-pricing-plan.pt-style-2.active .price .pt-amount {
    color: var(--white-color);
}

.pt-pricing-plan.pt-style-2 ul.pt-pricing-list {
    padding: 0;

    list-style: none;
}

.pt-pricing-plan.pt-style-2 ul.pt-pricing-list li {
    margin: 0 0 10px;

    line-height: 34px;

    text-transform: capitalize;
}

.pt-pricing-plan.pt-style-2 ul.pt-pricing-list li i {
    margin-right: 5px;

    font-size: 14px;

    color: var(--primary-color);
}

.pt-pricing-plan.pt-style-2 ul.pt-pricing-list li.active i {
    color: #f00;
}

.pt-pricing-plan.pt-style-2.active ul.pt-pricing-list li.active i {
    color: #f00;
}

.pt-pricing-plan.pt-style-2 ul.pt-pricing-list li:last-child {
    margin-bottom: 0;
}

.pt-pricing-plan.pt-style-2 .pt-btn-container {
    margin: 45px 0 0;

    text-align: center;
}

.pt-pricing-plan.pt-style-2.active .pt-pricing-head .pt-title {
    background: var(--primary-color);
}

.pt-pricing-plan.pt-style-2.active .pt-pricing-head .pt-service-media i {
    color: var(--primary-color);
}

@media screen and (max-width:360px) {
    .pt-pricing-plan.pt-style-2 .price .pt-amount {
        font-size: 56px;
        line-height: 64px;
    }
}

.pt-pricing-plan.pt-style-3 {
    padding-bottom: 45px;

    text-align: center;

    border-radius: 3px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
}

.pt-pricing-plan.pt-style-3 .pt-title {
    display: block;
    padding: 20px;
    margin-bottom: 5px;

    font-family: var(--title-fonts);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;

    text-transform: capitalize;

    color: var(--primary-dark-color);
    border-bottom: 1px solid #e7ebf1;
    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
            border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
            border-top-right-radius: 3px;
}

.pt-pricing-plan.pt-style-3 .price {
    position: relative;

    display: flex;
    margin: 15px 0 30px;

    font-weight: 600;

    color: var(--primary-color);

    align-items: flex-end;
    justify-content: center;
}

.pt-pricing-plan.pt-style-3 .price .pt-price-dollar {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;

    color: var(--primary-color);
}

.pt-pricing-plan.pt-style-3 .price .pt-amount {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;

    color: var(--primary-color);
}

.pt-pricing-plan.pt-style-3 .price .price-month {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

    text-transform: capitalize;

    color: var(--dark-color);
}

.pt-pricing-plan.pt-style-3 ul.pt-pricing-list {
    padding: 0;

    list-style: none;
}

.pt-pricing-plan.pt-style-3 ul.pt-pricing-list li {
    margin: 0 0 10px;

    line-height: 34px;

    text-transform: capitalize;
}

.pt-pricing-plan.pt-style-3 ul.pt-pricing-list li i {
    margin-right: 5px;

    font-size: 14px;

    color: var(--primary-color);
}

.pt-pricing-plan.pt-style-3.active ul.pt-pricing-list li i {
    color: var(--white-color);
}

.pt-pricing-plan.pt-style-3 ul.pt-pricing-list li.active i {
    color: #f00;
}

.pt-pricing-plan.pt-style-3 .pt-btn-container {
    margin-top: 45px;
}

.pt-pricing-plan.pt-style-3.active .pt-title {
    color: var(--white-color);
}

.pt-pricing-plan.pt-style-3 .pt-pricing-head {
    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
            border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
            border-top-right-radius: 3px;
    background: var(--grey-color);
}

.pt-pricing-plan.pt-style-3.active .pt-pricing-head {
    background-color: var(--primary-dark-color);
}

.pt-pricing-plan.pt-style-3 .pt-service-media {
    margin-top: 45px;
}

.pt-pricing-plan.pt-style-3 .pt-service-media i {
    font-size: 60px;
    line-height: 68px;

    color: var(--primary-dark-color);
}

.pt-pricing-plan.pt-style-4 {
    padding-bottom: 45px;

    text-align: center;

    border-radius: 3px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
}

.pt-pricing-plan.pt-style-4.active .pt-pricing-head {
    background: var(--primary-dark-color);
}

.pt-pricing-plan.pt-style-4 .pt-pricing-head {
    padding: 30px;

    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
            border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
            border-top-right-radius: 3px;
    background: var(--primary-color);
}

.pt-pricing-plan.pt-style-4 .pt-title {
    display: block;
    margin-bottom: 15px;

    font-family: var(--title-fonts);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;

    text-transform: capitalize;

    color: var(--white-color);
    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
            border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
            border-top-right-radius: 3px;
}

.pt-pricing-plan.pt-style-4 .price .pt-price-dollar {
    font-size: 34px;
    font-weight: 600;
    line-height: 42px;

    color: var(--primary-color);
}

.pt-pricing-plan.pt-style-4 .price .pt-amount {
    font-size: 34px;
    font-weight: 600;
    line-height: 42px;

    color: var(--white-color);
}

.pt-pricing-plan.pt-style-4 .price .price-month {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

    text-transform: capitalize;

    color: var(--white-color);
}

.pt-pricing-plan.pt-style-4 ul.pt-pricing-list {
    padding: 30px;
    margin: 0;

    list-style: none;
}

.pt-pricing-plan.pt-style-4 ul.pt-pricing-list li {
    margin: 0 0 10px;

    line-height: 34px;

    text-transform: capitalize;
}

.pt-pricing-plan.pt-style-4 ul.pt-pricing-list li i {
    margin-left: 5px;

    color: var(--primary-color);
}

.pt-pricing-plan.pt-style-4 ul.pt-pricing-list li:last-child {
    margin-bottom: 0;
}


/*================================================
Advance Tab
================================================*/
.pt-advance-tab {
    display: inline-block;
    width: 100%;

    text-align: center;
}

.pt-advance-tab .nav-tabs {
    display: inline-block;

    text-align: center;

    border: none;
    -webkit-border-radius: 9000px;
       -moz-border-radius: 9000px;
            border-radius: 9000px;
    background: var(--primary-dark-color);
}

.pt-advance-tab .nav-tabs .pt-tabs.nav-link {
    display: inline-block;
    padding: 12px 45px;
    margin: 0;

    font-weight: 600;
    line-height: 2;

    text-align: center;

    color: var(--white-color);
    border: none;
    -webkit-border-radius: 9000px;
       -moz-border-radius: 9000px;
            border-radius: 9000px;
}

.pt-advance-tab .nav-tabs .pt-tabs.nav-link.active {
    color: var(--white-color);
    background: var(--primary-color);
}

.pt-advance-tab .tab-content {
    margin: 45px 0 0;
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
FAQ
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-accordion-block .pt-accordion-box {
    position: relative;

    margin-bottom: 30px;

    background: var(--white-color);
}

.pt-accordion-block .pt-accordion-box:last-child {
    margin-bottom: 0;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title {
    position: relative;

    padding: 15px 30px;

    cursor: pointer;

    border: 1px solid var(--grey-color);
    border-radius: 3px;
    background: var(--grey-color);
}

.pt-accordion-block .pt-accordion-box .pt-ad-title .ad-title-text {
    font-size: 16px;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title i {
    position: absolute;
    top: 20px;
    right: 30px;

    font-size: 16px;

    opacity: 1;
    color: var(--dark-color);
}

.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: 50%;
    right: 30px;

    transform: translateY(-50%);

    opacity: 0;
    color: var(--dark-color);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title i.inactive {
    opacity: 1;
    border-radius: 3px;
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title i {
    color: var(--white-color);
}

.pt-accordion-block .pt-accordion-box .pt-accordion-details {
    padding: 15px 30px;

    border: 1px solid var(--grey-color);
    border-top: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pt-accordion-block .pt-accordion-box .pt-accordion-details p {
    margin-bottom: 0;
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title {
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: var(--primary-color);
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title .ad-title-text {
    color: var(--white-color);
}

/**border**/
.pt-accordion-border .pt-accordion-block .pt-accordion-box .pt-ad-title {
    border: 1px solid #eee;
    background: transparent;
}

.pt-accordion-border .pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title .ad-title-text {
    color: var(--primary-color);
}

.pt-accordion-border .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 i {
        right: 15px;
    }

    .pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title i {
        right: 15px;
    }
}

@media(max-width:479px) {
    .pt-accordion-block .pt-accordion-box .pt-ad-title {
        padding: 15px 30px 15px 15px;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Process Step
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-process-step.pt-process-style-1 {
    position: relative;

    padding: 0 15px;

    text-align: center;
}

.pt-process-step.pt-process-style-1:before {
    position: absolute;
    top: 75px;
    left: -50px;

    width: 30%;

    content: "";

    border: 1px dashed var(--white-color);
}

.pt-before-border .pt-process-step.pt-process-style-1:before {
    border: none;
}

.pt-process-step.pt-process-style-1 .pt-process-media {
    position: relative;

    display: inline-block;
    margin-bottom: 30px;
}

.pt-process-step.pt-process-style-1 .pt-process-icon {
    width: 150px;
    height: 150px;

    line-height: 150px;

    text-align: center;

    border-radius: 100%;
    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
}

.pt-process-step.pt-process-style-1 .pt-process-icon i {
    display: inline-block;
    margin-top: 5px;

    font-size: 56px;

    color: var(--primary-color);
}

.pt-process-step.pt-process-style-1 .pt-process-media .pt-process-number {
    position: absolute;
    right: -5px;
    bottom: 20px;

    width: 48px;
    height: 48px;

    font-family: var(--title-fonts);
    font-size: 16px;
    font-weight: 600;
    line-height: 48px;

    text-align: center;

    color: var(--white-color);
    border-radius: 100%;
    background: var(--primary-color);
}

.pt-process-step.pt-process-style-1 .pt-process-media:before {
    position: absolute;
    top: 50%;
    left: 100%;

    content: "";

    border-top: 1px dashed var(--white-color);
}

.pt-process-step.pt-process-style-1 .pt-process-description {
    margin-top: 10px;

    color: var(--grey-color);
}

.pt-process-step.pt-process-style-1 .pt-process-title {
    font-family: var(--title-fonts);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;

    color: var(--white-color);
}

@media(max-width:1023px) {
    .pt-process-step.pt-process-style-1:before {
        border: none;
    }
}

/*+++++++++++++process style  2++++++++++++++*/
.pt-process-step.pt-process-style-2 {
    position: relative;

    padding: 30px;
}

.pt-process-step.pt-process-style-2 .pt-process-media {
    position: relative;

    display: inline-block;
    margin-bottom: 30px;
}

.pt-process-step.pt-process-style-2 .pt-process-media .pt-process-img img {
    width: 200px;

    border-radius: 100%;
}

.pt-process-step.pt-process-style-2 .pt-process-media .pt-process-number {
    position: absolute;
    top: 20px;
    left: -5px;

    width: 48px;
    height: 48px;

    font-size: 16px;
    font-weight: 600;
    line-height: 48px;

    text-align: center;

    color: var(--white-color);
    border-radius: 100%;
    background: var(--primary-color);
}

.pt-process-step.pt-process-style-2 .pt-process-description p {
    margin-bottom: 0;
}

@media(max-width:1023px) {
    .pt-step2-arrow {
        background-image: unset !important;
    }
}

.pt-process-step.pt-style-3 {
    position: relative;

    margin-bottom: 20px;

    text-align: center;
}

.pt-process-step.pt-style-3 .pt-step-number {
    display: inline-block;
    width: 48px;
    height: 48px;

    line-height: 48px;

    color: var(--white-color);
    border-radius: 50%;
    background: var(--primary-color);
}

.pt-process-step.pt-style-3 .pt-step-number:before {
    position: absolute;
    top: 18%;
    left: 58%;

    display: inline-block;
    width: 100%;

    content: "";

    border: 2px dashed #fff;
}

.pt-process-step.pt-style-3 .pt-process-info {
    margin-top: 15px;
}

.pt-process-step.pt-style-3 .pt-process-info .pt-process-title {
    font-family: var(--title-fonts);
    font-weight: 600;

    color: var(--white-color);
}

.pt-before-border .pt-process-step.pt-style-3 .pt-step-number:before {
    border: none;
}

@media(max-width:1024px) {
    .pt-process-step.pt-style-3 .pt-step-number:before {
        border: none;
    }
}


/*+++++++++++++ Process style 4 ++++++++++++++*/
.pt-process-step.pt-style-4 .pt-process-number {
    width: 40px;
    height: 40px;
    margin-bottom: 30px;
    margin-left: 15px;

    font-family: var(--title-fonts);
    font-weight: 600;
    line-height: 40px;

    text-align: center;

    color: var(--white-color);
    border-radius: 900px;
    background: var(--primary-color);
}

.pt-process-step.pt-style-4 .pt-process-icon-box {
    position: relative;

    padding: 45px 30px;
    margin: 0;
    margin-bottom: 0;

    border-radius: 3px;
    background: var(--white-color);
}

.pt-process-step.pt-style-4 .pt-process-icon-box:after {
    position: absolute;
    bottom: 100%;
    left: 35px;

    width: 0;
    height: 0;
    margin-left: -15px;

    content: "";
    pointer-events: none;

    border: solid transparent;
    border-width: 15px;
    border-color: rgba(213, 203, 200, 0);
    border-bottom-color: var(--white-color);
}


.pt-process-step.pt-style-4.down .pt-process-number {
    margin-top: 30px;
    margin-bottom: 0;
}

.pt-process-step.pt-style-4.down .pt-process-icon-box:after {
    position: absolute;
    top: 100%;
    left: 35px;

    width: 0;
    height: 0;
    margin-left: -15px;

    content: "";
    pointer-events: none;

    border: solid transparent;
    border-width: 15px;
    border-color: rgba(213, 203, 200, 0);
    border-top-color: var(--white-color);
}


.pt-process-step.pt-style-4 .pt-process-icon i {
    margin-bottom: 20px;

    font-size: 58px;
    line-height: normal;

    color: var(--primary-color);
}

.pt-process-step.pt-style-4 .pt-process-contain .pt-process-title {
    margin-bottom: 5px;
}

.pt-process-step.pt-style-4 .pt-process-contain p {
    margin-bottom: 0;
}


.pt-process-step.pt-process-style-5 .pt-process-img,
.pt-process-step.pt-process-style-5 .pt-process-img img {
    position: relative;

    border-radius: 100%;
}

.pt-process-step.pt-process-style-5 .pt-process-img:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    width: 100%;
    height: 100%;

    content: "";

    opacity: .8;
    border-radius: 100%;
    background: var(--primary-dark-color);
}

.pt-process-step.pt-process-style-5 .pt-process-media {
    position: relative;

    width: 75%;
    margin: 0 auto;
}

.pt-process-step.pt-process-style-5 .pt-process-media .pt-process-icon {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    z-index: 2;

    margin: 0 auto;

    font-size: 64px;
    line-height: 72px;

    transform: translateY(-50%);
    text-align: center;

    color: var(--white-color);
}

.pt-process-step.pt-process-style-5 .pt-process-media .pt-process-number {
    position: absolute;
    right: 0;
    bottom: -26px;
    left: 0;
    z-index: 2;

    width: 52px;
    height: 52px;
    margin: 0 auto;

    font-size: 20px;
    font-weight: 600;
    line-height: 52px;

    text-align: center;

    color: var(--white-color);
    border-radius: 100%;
    background: var(--primary-color);
}

.pt-process-step.pt-process-style-5 .pt-process-step-info {
    text-align: center;
}

.pt-process-step.pt-process-style-5 .pt-process-step-info .pt-process-title {
    margin-top: 45px;
}

.pt-process-style-5-line:before {
    position: absolute;
    top: 40%;
    right: 0;
    left: 0;

    width: 80%;
    height: 1px;
    margin: 0 auto;

    content: "";
    transform: translateY(-50%);

    background: rgba(0, 0, 0, .15);
}

.pt-process-step.pt-process-style-6 .pt-step-bg {
    position: absolute;
    top: 30%;
    left: 50%;
}

.pt-process-last .pt-process-step.pt-process-style-6 .pt-step-bg {
    display: none;
}

.pt-process-step.pt-process-style-6 .pt-process-number {
    margin-bottom: 20px;

    font-family: var(--title-fonts);
    font-size: 20px;
    font-weight: 600;

    color: var(--dark-color);
}

.pt-process-step.pt-process-style-6 .pt-process-icon {
    display: inline-block;
    display: inline-block;
    width: 120px;
    height: 120px;
    margin-bottom: 30px;

    line-height: 140px;

    text-align: center;

    border: 2px dotted var(--dark-color);
    border-radius: 100%;
    border-radius: 100%;
}

.pt-process-step.pt-process-style-6 .pt-process-icon i {
    font-size: 68px;

    color: var(--primary-color);
}

.pt-process-step.pt-process-style-6 .pt-process-title {
    padding-right: 60px;
    margin-bottom: 10px;
}

.pt-process-step.pt-process-style-6 .pt-process-description p {
    margin-bottom: 0;
}

.pt-grey-section-side-right:before {
    position: absolute;
    top: 0;
    left: 60%;
    z-index: 1;

    display: inline-block;
    width: 1000%;
    height: 100%;

    content: "";

    background: var(--grey-color);
}


@media(max-width:1024px) {
    .pt-primary-dark {
        background-color: var(--primary-dark-color) !important;
        background-image: none !important;
    }

    .pt-grey-bg {
        background-color: var(--grey-color) !important;
        background-image: none !important;
    }

    .pt-white-bg {
        background-color: var(--white-color) !important;
        background-image: none !important;
    }

    .pt-process-style-5-line:before {
        display: none;
    }

    .pt-process-step.pt-process-style-6 .pt-step-bg {
        display: none;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
 Working hours
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.mptt-shortcode-wrapper .mptt-navigation-tabs li:after {
    position: absolute;
    top: 100%;
    left: 50%;

    width: 0;
    height: 0;
    margin-left: -15px;

    content: "";
    transition: none;
    pointer-events: none;

    opacity: 0;
    border: solid transparent;
    border-width: 15px;
    border-color: rgba(255, 75, 54, 0);
    border-top-color: var(--white-color);
}

.mptt-shortcode-wrapper .mptt-navigation-tabs li.active:after {
    opacity: 1;
    border-top-color: var(--primary-color);
}

.mptt-shortcode-wrapper .mptt-shortcode-table.mptt-theme-mode tbody tr:nth-child(2n+2) td.event {
    background: #fff;
}

.mptt-shortcode-wrapper .mptt-navigation-tabs {
    display: inline-block;
    width: 100%;
    padding: 0;

    text-align: center;
}

.mptt-shortcode-wrapper .mptt-navigation-tabs li {
    position: relative;

    margin-right: 30px;

    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;

    border-radius: 3px;
    background: #ffff;
}

.mptt-shortcode-wrapper .mptt-navigation-tabs li a {
    display: inline-block;
    padding: 10px 30px;

    font-family: var(--title-fonts);
    font-weight: 600;

    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
    text-transform: uppercase;

    color: #404040;
}

.mptt-shortcode-wrapper .mptt-navigation-tabs li.active,
.mptt-shortcode-wrapper .mptt-navigation-tabs li:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.mptt-shortcode-wrapper .mptt-navigation-tabs li.active a,
.mptt-shortcode-wrapper .mptt-navigation-tabs li:hover a {
    color: var(--white-color);
}

.mptt-shortcode-wrapper .mptt-shortcode-table {
    margin-bottom: 0;
}

.mptt-shortcode-wrapper .mptt-shortcode-table tr.mptt-shortcode-row th {
    padding: 15px 0;

    font-family: var(--title-fonts);

    text-align: center;
    text-transform: uppercase;

    border: 1px solid var(--grey-color);
    border-top: 0;
    border-bottom: 0;
}

.mptt-shortcode-wrapper.mptt-table-responsive .mptt-shortcode-table tbody td,
.mptt-shortcode-wrapper.mptt-table-responsive .mptt-shortcode-table.mptt-theme-mode tbody td.event {
    padding: 15px !important;

    text-align: center;

    border: 1px solid var(--grey-color);
    background: var(--white-color);
}

.mptt-shortcode-wrapper.mptt-table-responsive .mptt-shortcode-table tbody .mptt-event-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    transition: all .5s ease;

    outline: none;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    -ms-flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
}

.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-title {
    margin: 0;

    font-family: var(--title-fonts);
    font-size: 18px;
    font-weight: 600;

    -webkit-transition: all 0s ease-in-out;
       -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
         -o-transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
            transition: all 0s ease-in-out;
    text-decoration: none;
    letter-spacing: 0;
}

.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-title:hover,
.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container:hover .event-title {
    /* color: var(--white-color);*/
    text-decoration: none;
}

.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-description,
.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-subtitle {
    position: relative;

    margin: 5px 0 0;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;
}

.mptt-shortcode-wrapper .mptt-column-title {
    width: 100%;
    margin: 0 0 10px !important;

    font-size: 1.2em;

    text-align: center;
    text-transform: uppercase;
}

.mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list {
    padding: 0;
    margin: 0;
}

.mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .mptt-list-event {
    padding: 15px;
    margin: 0;

    border: 0;
    border-bottom: 1px solid var(--white-color);
    background: var(--grey-color);
}

.mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .mptt-list-event .event-description,
.mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .mptt-list-event .event-subtitle {
    float: right;
    margin: 0;
}

.mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .mptt-list-event .mptt-event-title {
    color: var(--dark-color);
}

.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container p {
    color: #777;
}

.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container:hover p {
    color: var(--white-color);
}

.timeslots-title {
    margin: 30px 0 0;
}

.timeslot {
    padding-bottom: 15px;
    margin: 15px 0 0;

    border-bottom: 1px solid var(--grey-color);
}

.timeslot .timeslot-user img {
    margin-right: 15px;
}

.timeslot .timeslot-link {
    font-family: var(--title-fonts);
    font-size: 16px;
    font-weight: 800;
    line-height: 24px;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.timeslot time {
    font-size: 14px;
    font-style: italic;
}

.mp-event .pt-blog-post {
    margin-bottom: 0;
}

@media(max-width:1023px) {
    .mptt-shortcode-wrapper .mptt-shortcode-table tr.mptt-shortcode-row th,
    .mptt-shortcode-wrapper.mptt-table-responsive .mptt-shortcode-table tbody td,
    .mptt-shortcode-wrapper.mptt-table-responsive .mptt-shortcode-table.mptt-theme-mode tbody td.event,
    .mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-description,
    .mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-title {
        font-size: 12px;

        letter-spacing: 0;
    }

    .mptt-shortcode-wrapper.mptt-table-responsive .mptt-shortcode-table tbody td {
        padding: 5px 5px !important;
    }

    .mptt-shortcode-wrapper .mptt-navigation-tabs li {
        padding: 10px 15px;
        margin-right: 5px;

        font-size: 14px;
    }

    .mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .mptt-list-event .event-description {
        float: none;
    }

    .mptt-shortcode-wrapper .mptt-navigation-tabs li:after {
        margin-left: -10px;

        border-width: 12px;
    }
}

@media(max-width:767px) {
    .mptt-shortcode-wrapper .mptt-navigation-tabs li {
        margin-bottom: 15px;
    }
}

.mptt-navigation-tabss .mptt-shortcode-table {
    border-top: 1px solid rgb(255 255 255 / .2);
}

.mptt-navigation-tabss .mptt-navigation-tabs li a {
    color: var(--white-color);
}

.mptt-navigation-tabss .mptt-shortcode-wrapper.mptt-table-responsive .mptt-shortcode-table tbody td,
.mptt-navigation-tabss .mptt-shortcode-wrapper.mptt-table-responsive .mptt-shortcode-table tr th,
.mptt-navigation-tabss .mptt-shortcode-wrapper .mptt-shortcode-table tbody tr:nth-child(2n+2) {
    color: var(--white-color);
    background: var(--dark-color);
}

.mptt-navigation-tabss .mptt-shortcode-wrapper.mptt-table-responsive .mptt-shortcode-table tbody .mptt-event-container {
    color: var(--white-color) !important;
    background: var(--dark-color) !important;
}

.mptt-navigation-tabss .mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-subtitle {
    color: var(--white-color);
}

/*+++++++++++++before after++++++++++++++*/
.pt-before-after .beer-reveal {
    border-right: 1px solid rgba(255, 255, 255, .5);
}

/*+++++++++++++++++++++++++++++++++++++++++
Video Popup
++++++++++++++++++++++++++++++++++++++++*/
.pt-popup-video-block .pt-video-icon {
    text-align: center;
}

.pt-video-left .pt-popup-video-block .pt-video-icon {
    text-align: left;
}

.pt-popup-video-block .pt-video-icon a {
    display: inline-block;
    width: 90px;
    height: 90px;
    margin: auto;

    font-size: 28px;
    line-height: 90px;

    -webkit-animation: ripple 1s linear infinite;
            animation: ripple 1s linear infinite;
    text-align: center;
    text-decoration: none;

    color: var(--white-color);
    border-radius: 90%;
    background-color: var(--primary-color);
}

.pt-video-icon a.primary {
    -webkit-animation: rippleprimary 1s linear infinite;
            animation: rippleprimary 1s linear infinite;
}

/*+++++++++++++++++++++++++++++++++++++++++
Update pages
++++++++++++++++++++++++++++++++++++++++*/

.pt-primary-dark-section-side-right:before {
    position: absolute;
    top: 60px;
    left: 60%;
    z-index: 1;

    display: inline-block;
    width: 1000%;
    height: 100%;

    content: "";

    background: var(--primary-dark-color);
}

.pt-primary-dark-section-side-left:before {
    position: absolute;
    top: 0;
    right: 100%;
    z-index: 1;

    display: inline-block;
    width: 1000%;
    height: 100%;

    content: "";

    background: var(--primary-color);
}


@media(max-width:767px) {
    .pt-primary-dark-section-side-right:before,
    .pt-primary-dark-section-side-left:before {
        display: none;
    }

    .pt-primary-dark-section-side-right:before {
        display: none;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++
KeyFrames
++++++++++++++++++++++++++++++++++++++++*/
@-webkit-keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .2), 0 0 0 5px rgba(255, 255, 255, .2), 0 0 0 20px rgba(255, 255, 255, .2), 0 0 0 35px rgba(255, 255, 255, .2);
                box-shadow: 0 0 0 0 rgba(255, 255, 255, .2), 0 0 0 5px rgba(255, 255, 255, .2), 0 0 0 20px rgba(255, 255, 255, .2), 0 0 0 35px rgba(255, 255, 255, .2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, .2), 0 0 0 20px rgba(255, 255, 255, .2), 0 0 0 35px rgba(255, 255, 255, .2), 0 0 0 45px rgba(255, 255, 255, 0);
                box-shadow: 0 0 0 5px rgba(255, 255, 255, .2), 0 0 0 20px rgba(255, 255, 255, .2), 0 0 0 35px rgba(255, 255, 255, .2), 0 0 0 45px rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .2), 0 0 0 5px rgba(255, 255, 255, .2), 0 0 0 20px rgba(255, 255, 255, .2), 0 0 0 35px rgba(255, 255, 255, .2);
                box-shadow: 0 0 0 0 rgba(255, 255, 255, .2), 0 0 0 5px rgba(255, 255, 255, .2), 0 0 0 20px rgba(255, 255, 255, .2), 0 0 0 35px rgba(255, 255, 255, .2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, .2), 0 0 0 20px rgba(255, 255, 255, .2), 0 0 0 35px rgba(255, 255, 255, .2), 0 0 0 45px rgba(255, 255, 255, 0);
                box-shadow: 0 0 0 5px rgba(255, 255, 255, .2), 0 0 0 20px rgba(255, 255, 255, .2), 0 0 0 35px rgba(255, 255, 255, .2), 0 0 0 45px rgba(255, 255, 255, 0);
    }
}

@-webkit-keyframes rippleprimary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, .2), 0 0 0 5px rgba(255, 75, 52, .2), 0 0 0 20px rgba(255, 75, 52, .2), 0 0 0 35px rgba(255, 75, 52, .2);
                box-shadow: 0 0 0 0 rgba(255, 75, 52, .2), 0 0 0 5px rgba(255, 75, 52, .2), 0 0 0 20px rgba(255, 75, 52, .2), 0 0 0 35px rgba(255, 75, 52, .2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 75, 52, .2), 0 0 0 20px rgba(255, 75, 52, .2), 0 0 0 35px rgba(255, 75, 52, .2), 0 0 0 45px rgba(255, 75, 52, 0);
                box-shadow: 0 0 0 5px rgba(255, 75, 52, .2), 0 0 0 20px rgba(255, 75, 52, .2), 0 0 0 35px rgba(255, 75, 52, .2), 0 0 0 45px rgba(255, 75, 52, 0);
    }
}

@keyframes rippleprimary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, .2), 0 0 0 5px rgba(255, 75, 52, .2), 0 0 0 20px rgba(255, 75, 52, .2), 0 0 0 35px rgba(255, 75, 52, .2);
                box-shadow: 0 0 0 0 rgba(255, 75, 52, .2), 0 0 0 5px rgba(255, 75, 52, .2), 0 0 0 20px rgba(255, 75, 52, .2), 0 0 0 35px rgba(255, 75, 52, .2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 75, 52, .2), 0 0 0 20px rgba(255, 75, 52, .2), 0 0 0 35px rgba(255, 75, 52, .2), 0 0 0 45px rgba(255, 75, 52, 0);
                box-shadow: 0 0 0 10px rgba(255, 75, 52, .2), 0 0 0 20px rgba(255, 75, 52, .2), 0 0 0 35px rgba(255, 75, 52, .2), 0 0 0 45px rgba(255, 75, 52, 0);
    }
}

/*+++++++++++++++++++++++++++++++++++++++++
Comments Box
++++++++++++++++++++++++++++++++++++++++*/
.comment-respond {
    display: inline-block;
    width: 100%;
    margin-top: 0;
}

.pt-comment-area .comments-title,
.comment-respond .comment-reply-title {
    position: relative;

    padding-top: 30px;
    padding-bottom: 0;
    margin: 0;
}

.comment-respond .comment-reply-title a {
    margin-left: 30px;

    font-size: 60%;
    font-weight: 600;

    color: var(--primary-color);
}

.comment-respond .comment-reply-title a:hover {
    text-decoration: none;

    color: var(--primary-color);
}

.commentlist {
    padding: 0;
    margin: 0;

    list-style: none;
}

.commentlist .comment {
    padding: 0;
    margin-top: 30px;
    margin-bottom: 0;

    list-style: none;

    vertical-align: top;
}

.commentlist .pt-comment-info {
    position: relative;

    padding: 30px;

    border: 1px solid var(--grey-color);
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: var(--grey-color);
}

.commentlist ol.children {
    padding-left: 60px;
}

.commentlist .pt-comment-wrap {
    display: -ms-flexbox;
    display: flex;

    align-items: flex-start;
    -ms-flex-align: start;
}

.commentlist .pt-comment-avatar {
    padding-right: 15px;
}

.commentlist .pt-comment-avatar img {
    width: 70px;
}

.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;
    top: 30px;
    right: 30px;

    margin: 0;

    font-family: var(--title-fonts);
    font-size: 14px;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;
}

.commentlist .pt-comment-info .reply a:hover {
    text-decoration: none;

    color: var(--primary-color);
}

.no-comments,
.comment-awaiting-moderation {
    margin: 15px 0;

    font-style: italic;
}

/*+++++++++++++ Comments Form++++++++++++++*/
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
    padding: 0;
    margin: 0 0 30px;
}

.comment-respond .comment-form-comment {
    display: inline-block;
    float: left;
    width: 100%;
    margin-top: 0;
    margin-bottom: 30px;
}

.comment-respond .comment-form-author,
.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
    display: inline-block;
    float: left;
    width: 32.6%;
    margin: 0 15px 30px 0;
}

.comment-respond .comment-form-url {
    margin-right: 0;
}

.comment-respond .form-submit {
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 0;
}

.commentlist .comment-respond .comment-form-author,
.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
    float: left;
    width: 31.7%;
}

ol.commentlist .pingback,
ol.commentlist .trackback {
    margin-left: 25px;
}

/* update page */
.pt-icon-shadow .elementor-icon {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 20, 9, .2);
       -moz-box-shadow: 0 0 10px 0 rgba(0, 20, 9, .2);
            box-shadow: 0 0 10px 0 rgba(0, 20, 9, .2);
}

.pt-applyform-whitebg.input-white .pt-applyform .wpcf7-form-control-wrap input,
.pt-applyform-whitebg.input-white .pt-applyform .wpcf7-form-control-wrap textarea {
    background: var(--white-color);
}


/* landing page */
.page-id-15310 #pt-header,
.page-id-15310 #pt-footer {
    display: none;
}

.intro-img .elementor-image-box-img img {
    -webkit-box-shadow: 10px 0 30px 0 rgba(21, 21, 21, .1);
       -moz-box-shadow: 10px 0 30px 0 rgba(21, 21, 21, .1);
            box-shadow: 10px 0 30px 0 rgba(21, 21, 21, .1);
}

.intro-features figure.elementor-image-box-img {
    width: 120px !important;
    height: 120px;

    line-height: 120px;

    border-radius: 900px;
    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgb(0 20 9 / 10%);
}

.intro-features figure.elementor-image-box-img img {
    width: 60px;
}

.pt-applyform-darkbg .pt-applyform {
    padding: 45px;
    padding-bottom: 15px;

    border-radius: 3px;
    background: var(--primary-dark-color);
}

.pt-applyform-darkbg .pt-applyform .wpcf7-form-control-wrap input::placeholder {
    color: var(--dark-color);
}

.pt-applyform-darkbg .pt-applyform .wpcf7-form-control-wrap input {
    background: var(--white-color);
}

.pt-applyform-darkbg .wpcf7-form-control-wrap input {
    color: var(--dark-color);
}

.pt-applyform-darkbg .pt-applyform .wpcf7-submit {
    width: 100%;

    color: var(--white-color) !important;
    background: var(--primary-color);
}

.pt-applyform-darkbg .pt-applyform .wpcf7-submit:hover {
    background: var(--dark-color);
}

.pt-applyform-darkbg select,
select.form-control {
    margin-bottom: 30px;
}

.pt-form-btn .pt-button {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

@media(max-width:479px) {
    .pt-applyform-darkbg .pt-applyform {
        padding: 30px;
        padding-bottom: 0;

        background: var(--primary-dark-color);
    }
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0, -100%, 0);

        opacity: 0;
    }

    to {
        transform: none;

        opacity: 1;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

/*+++++++++++++++++++++++++++++++++++++++++
Comments Box
++++++++++++++++++++++++++++++++++++++++++*/
.easyappointments-iframe {
    height: 800px !important;
}

/*.fontawesome-i2svg-complete body { background: transparent; }*/
.easyappointments-iframe #book-appointment-wizard #header {
    background: var(--primary-dark-color) !important;
}


.pt-shop-banner.pt-style-1 {
    position: relative;

    overflow: hidden;
}

.pt-shop-banner.pt-style-1 img {
    width: 100%;

    cursor: pointer;
    transition: all .6s ease;
}

.pt-shop-banner.pt-style-1:hover img {
    transform: scale(1.1);
}

.pt-shop-banner.pt-style-1 .shop-banner-content {
    position: absolute;
    top: 0;
    top: 50%;
    left: 5%;

    width: 100%;
    width: auto;
    padding: 30px;

    transform: translateY(-50%);
    text-align: center;
    text-align: left;
}

.pt-shop-banner.pt-style-1 .shop-banner-subtitle {
    font-size: 16px;
    line-height: 24px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-shop-banner.pt-style-1 .shop-banner-title {
    margin-top: 5px;
}

.pt-shop-banner.pt-style-1 .pt-button.pt-button-flat,
.pt-shop-banner.pt-style-1 .pt-button.pt-button-link {
    margin-top: 30px;
}

.pt-shop-banner.pt-style-1 .pt-button.pt-button-outline {
    margin-top: 30px;

    color: var(--dark-color);
    border: 1px solid var(--dark-color);
}

.pt-shop-banner.pt-style-1 .pt-button.pt-button-outline:hover {
    color: var(--white-color);
    border-color: var(--dark-color);
    background: var(--dark-color);
}

.pt-shop-banner.pt-style-1 .pt-button.pt-button-outline .pt-button span {
    margin-right: 0;
}

.pt-shop-banner.pt-style-1 .pt-button.pt-button-flat span {
    margin-right: 0;
}


@media(max-width:575px) {
    .pt-shop-banner.pt-style-1 .shop-banner-content {
        padding: 15px;
    }

    .pt-shop-banner.pt-style-1 .shop-banner-subtitle {
        margin-bottom: 0;

        font-size: 14px;
        line-height: 22px;
    }

    .pt-shop-banner.pt-style-1 .shop-banner-title {
        font-size: 24px;
        line-height: 32px;
    }

    .pt-shop-banner.pt-style-1 .pt-button.pt-button-outline {
        padding: 2px 10px;
        margin-top: 20px;

        font-size: 14px;
    }

    .pt-shop-banner.pt-style-1 .pt-button.pt-button-flat {
        padding: 7px 15px;
        margin-top: 20px;

        font-size: 9px;
        line-height: 17px;
    }

    .pt-shop-banner.pt-style-1 .pt-button.pt-button-flat span {
        margin-right: 0;
    }
}


@media(max-width: 360px) {
    .pt-shop-banner.pt-style-1 .shop-banner-subtitle {
        margin-bottom: 0;

        font-size: 9px;
        line-height: 17px;
    }

    .pt-shop-banner.pt-style-1 .shop-banner-title {
        font-size: 16px;
        line-height: 24px;
    }

    .pt-shop-banner.pt-style-1 .pt-button.pt-button-outline {
        padding: 2px 10px;
        margin-top: 12px;

        font-size: 14px;
    }

    .pt-shop-banner.pt-style-1 .pt-button.pt-button-flat {
        padding: 7px 15px;
        margin-top: 12px;

        font-size: 9px;
        line-height: 17px;
    }

    .pt-shop-banner.pt-style-1 .pt-button.pt-button-flat span {
        margin-right: 0;
    }
}


/*+++++ Wishlist +++++*/
.wishlist-title.wishlist-title-with-form h2:hover {
    background: transparent;
}

table.wishlist_table {
    font-size: inherit;
}

table.wishlist_table thead th {
    border: none;
}

.woocommerce .wishlist-title h2 {
    font-size: 30px;
    line-height: 38px;
}

.woocommerce table.shop_table td.product-add-to-cart a.add_to_cart {
    display: inline-block !important;
    min-width: 115px;
    padding: 10px 25px;

    font-size: 14px;

    text-transform: capitalize;

    color: var(--white-color);
    background: var(--dark-color);
}

.woocommerce table.shop_table td.product-add-to-cart a.add_to_cart:hover {
    background: var(--primary-color);
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    color: var(--white-color);
}

.woocommerce #content table.wishlist_table.cart a.remove:hover {
    background: var(--grey-color);
}

.wishlist_table .product-add-to-cart a.button {
    padding: 0 20px !important;

    color: var(--white-color);
    background: var(--dark-color);
}

.wishlist_table .product-add-to-cart a.button:hover {
    background: var(--primary-color);
}

.wishlist_table .product-add-to-cart a.button:hover {
    color: var(--white-color);
}

.woocommerce table.wishlist_table td.product-thumbnail {
    width: 250px;

    text-align: center;
}

.woocommerce table.wishlist_table td.product-thumbnail a {
    display: inline-block;
}

.yith-wcwl-share h4.yith-wcwl-share-title {
    font-size: 30px;
    line-height: 38px;
}

.entry-content .yith-wcwl-share ul li:first-child {
    margin-left: 0;
}

.entry-content .yith-wcwl-share ul li {
    margin: 0 10px;
}

.yith-wcwl-share ul li a {
    min-width: inherit;
    min-height: inherit;
    padding: 0;

    line-height: normal;

    color: var(--secondary-color);
    background: transparent !important;
}

.yith-wcwl-share ul li a:hover {
    color: var(--dark-color);
}

.yith-wcwl-share ul li a i {
    font-family: FontAwesome;
}

/*+++++ Cart +++++*/
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    color: var(--secoundary-color);
    border-top: none;
}

.woocommerce-message {
    display: flex;
    width: 100%;
    padding: 15px;

    align-items: center;
    justify-content: space-between;
}

.woocommerce-message::before,
.woocommerce-info::before {
    display: none;
}

.woocommerce .woocommerce-message a.button {
    float: none;

    font-weight: 600;
    line-height: normal;

    color: var(--white-color);
    border-radius: 3px;
    background: var(--dark-color);

    order: 1;
}

.woocommerce .woocommerce-message a.button:hover {
    background: var(--secondary-color);
}

.woocommerce-info {
    padding: 0;

    background: transparent;
}

.woocommerce-info a {
    text-decoration: none;

    color: var(--dark-color);
}

.woocommerce table.shop_table thead > tr {
    border-radius: 3px;
    background: var(--grey-color);
}

.woocommerce .woocommerce-notices-wrapper table.shop_table thead > tr {
    border-radius: 3px;
}

.woocommerce table.shop_table th {
    padding: 15px 30px;

    font-size: 16px;
    font-weight: 500;

    text-align: center;
    text-transform: capitalize;

    color: var(--dark-color);
    border-bottom: 1px solid var(--grey-color);
}

.woocommerce table.shop_table {
    border-collapse: collapse;

    border: none;
    border-radius: 0;
}

.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;
    width: 25px;
    height: 25px;

    font-size: 28px;
    line-height: 26px;

    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 {
    font-weight: 400;

    color: var(--dark-color) !important;
}

.woocommerce a.remove:hover {
    color: var(--dark-color) !important;
    background: var(--grey-color);
}

.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 {
    position: relative;

    display: inline-block;
    float: none;
    margin-right: 10px;

    transition: all .5s ease-in-out;

    border: 1px solid var(--grey-color);
    border-radius: 3px;
    background: var(--grey-color);
}

.woocommerce table.shop_table td.product-quantity div.quantity:hover {
    color: var(--white-color);
    border-color: var(--dark-color);
    background: var(--dark-color);
}

.woocommerce table.shop_table td.product-quantity div.quantity:hover input {
    color: var(--white-color);
}

.woocommerce table.shop_table td.product-quantity div.quantity [type="button"] {
    width: 40px;
    padding: 0;
    padding-bottom: 5px;

    font-size: 30px;
    line-height: normal;

    vertical-align: middle;

    color: var(--secoundary-color) !important;
    background: none;
}

.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: 20px;
}

.woocommerce table.shop_table td.product-quantity div.quantity .input-text {
    float: none;
    width: 50px;
    height: 50px;
    padding: 0;

    line-height: 50px;

    text-align: center;

    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;

    -webkit-appearance: none;
    -webkit-appearance: none !important;
}

.woocommerce table.shop_table td.product-quantity div.quantity .pt-qty-btn {
    position: absolute;
    left: 0;

    width: 50px;
    height: 50px;

    font-size: 20px;
    line-height: 50px;

    cursor: pointer;
    text-align: center;
}

.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 {
    font-weight: 500;

    color: var(--dark-color);
}

.woocommerce table.shop_table td.actions {
    padding: 30px 0;

    border-bottom: none;
}

.woocommerce table.shop_table td.actions .coupon {
    display: flex;
    width: 50%;
}

.woocommerce-page #content table.cart td.actions .coupon .input-text {
    width: 70%;
    padding-left: 15px;
    margin: 0;

    border: 1px solid var(--grey-color);
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    background: var(--grey-color);
}

.woocommerce-page #content table.cart td.actions .coupon .input-text:focus {
    border: 1px solid var(--dark-color);
}

.woocommerce-page #content table.cart td.actions .coupon .button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.woocommerce-page #content table.cart td.actions .button {
    height: 54px;
    padding: 0 30px;

    line-height: 54px;

    text-transform: uppercase;

    border-radius: 3px;
}

.woocommerce-page #content table.cart td.actions .button:hover {
    color: var(--white-color);
    background: var(--dark-color);
}

.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
    margin-top: 45px;
}

.woocommerce .cart-collaterals .cart_totals {
    float: none;
    width: 100%;
}

.woocommerce .cart-collaterals .cart_totals h2 {
    float: left;
    width: 25%;
    padding-top: 20px;
    margin: 0;

    font-size: 30px;
    line-height: 38px;
}

.woocommerce-cart .cart-collaterals table.shop_table {
    float: right;
    width: 45%;
    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 {
    color: var(--secondary-color);
    border-top: none;
}

.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 {
    font-weight: 500;

    color: var(--dark-color);
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total td strong {
    font-weight: 500;
}

.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
    float: right;
    width: 45%;
    padding: 0;
    clear: both;
}

.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout a.button.alt {
    margin: 0;

    text-transform: uppercase;
}

.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 {
    padding: 0 30px;

    font-size: inherit;
    font-weight: 400;

    text-transform: uppercase;

    color: var(--white-color);
    border-radius: 0;
    background: var(--dark-color);
}

.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 {
    position: relative;

    display: inline-block;
    height: 50px;
    margin-right: 15px;

    transition: all .5s ease-in-out;

    border: 1px solid var(--grey-color);
    border-radius: 5px;
    background: var(--grey-color);
}

.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 {
    margin-bottom: 30px;

    font-size: 14px;
    line-height: 22px;

    color: var(--dark-color);
    border: 1px solid var(--grey-color);
    border-right: 0;
    border-left: 0;
}

.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:hover {
    color: var(--white-color);
    border-color: var(--dark-color);
    background: var(--dark-color);
}

.woocommerce div.product form.cart div.quantity:hover input {
    transition: .5 s ease-in-out;

    color: var(--white-color);
}

.woocommerce div.product form.cart div.quantity [type="button"] {
    width: 40px;
    padding: 0;
    padding-bottom: 5px;

    font-size: 30px;
    font-weight: 400;
    line-height: 46px;

    transition: none;
    vertical-align: top;

    color: var(--secoundary-color) !important;
    background: none;
}

.woocommerce div.product form.cart div.quantity .plus[type="button"] {
    font-size: 20px;
    line-height: 46px;

    color: var(--secoundary-color) !important;
}

.woocommerce div.product form.cart div.quantity [type="button"]:hover {
    color: var(--dark-color);
}

.woocommerce div.product form.cart div.quantity .input-text {
    float: none;
    width: 40px;
    height: 50px;
    padding: 0;

    line-height: 50px;

    text-align: center;
    vertical-align: top;

    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;

    -webkit-appearance: none;
    -webkit-appearance: none !important;
}

.woocommerce div.product form.cart div.quantity .pt-qty-btn {
    position: absolute;
    left: 0;

    width: 50px;
    height: 50px;

    font-size: 20px;
    line-height: 50px;

    cursor: pointer;
    text-align: center;
}

.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-size: 16px;
        font-weight: 500;

        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 {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 0 15px;
}

.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 {
    height: 50px;
    padding: 0 30px;

    font-weight: 400;
    line-height: 50px;

    text-transform: capitalize;

    color: var(--white-color);
    border-radius: 0;
    background: var(--dark-color);
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--primary-color);
}

.woocommerce-checkout .woocommerce-additional-fields {
    display: none;
}

.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 {
    height: 40px;
    padding: 0 15px;

    font-size: 14px;
    line-height: 40px;

    color: var(--dark-color);
    background: var(--grey-color);
}

.woocommerce div.product form.cart table.group_table td a.button {
    height: 40px;
    padding: 0 15px;

    line-height: 40px;
}

.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 {
    padding: 15px 10px;

    text-align: left;

    border-top: none;
}

.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: 500;

    color: var(--dark-color);
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    float: none;
}

.woocommerce form .form-row textarea {
    height: 8em;
    padding: 20px;
}

.select2-container--default .select2-selection--single {
    height: 54px;
    padding: 0 0;

    border: 1px solid var(--grey-color);
    border-radius: 3px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
}

.select2-container--default .select2-selection--single:hover {
    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;

    border: 1px solid var(--primary-color);
}

.select2-container--default.select2-container--open .select2-selection--single {
    border: 1px solid var(--dark-color);
}

.select2-container--open .select2-dropdown {
    border: 1px solid var(--dark-color);
    border-top: 0;
    border-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 15px;
    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 {
    font-size: 16px;

    text-transform: capitalize;
}

.woocommerce ul.order_details li strong {
    margin-top: 5px;

    font-size: 16px;
    font-size: 20px;
    font-weight: 400;

    color: var(--dark-color);
}

.woocommerce-order h2 {
    margin-bottom: 20px;

    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
}

.woocommerce table.shop_table.woocommerce-table th,
.woocommerce table.shop_table.woocommerce-table td {
    text-align: left;
}

.woocommerce ul.order_details {
    padding: 30px;

    background: var(--grey-color);
}

.woocommerce .woocommerce-order-details table.shop_table tfoot th {
    font-weight: 500;

    border-top: none;
}

.woocommerce .woocommerce-order-details table.shop_table tfoot td {
    border-top: none;
}

.woocommerce .woocommerce-customer-details address {
    padding: 30px;
}


.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    font-weight: 400;

    opacity: 1;
}

.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 {
    margin-left: 5px;

    font-family: var(--body-font);
    font-weight: 400;

    color: var(--secondary-color);
}

.woocommerce div.product .product_meta > span {
    display: block;

    font-weight: 500;

    color: var(--dark-color);
}

.product_meta .sku_wrapper a,
.product_meta .posted_in a,
.product_meta .tagged_as a {
    margin-left: 5px;

    font-family: var(--body-font);
    font-weight: 400;

    text-transform: capitalize;

    color: var(--secondary-color);
}

.woocommerce ul.products li.product .price del {
    opacity: 1;
}


.woocommerce ul.products li.product .price ins {
    font-weight: 400;

    text-decoration: none;
}

.woocommerce ul.products li.product .price ins span.woocommerce-Price-amount.amount {
    font-weight: 400;

    text-decoration: none;

    color: var(--primary-color);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    margin: 0;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}


.woocommerce div.product .pt-single-product-share {
    display: flex;

    align-items: center;
}

.woocommerce div.product .pt-single-product-share .pt-share-name {
    display: inline-block;
    margin-right: 10px;

    font-weight: 500;

    color: var(--dark-color);
}

.woocommerce div.product .pt-single-product-share .pt-share-itmes {
    padding: 0;
    margin: 0;

    list-style-type: none;
}

.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 {
    display: inline-block;
    width: 40px;
    height: 40px;

    line-height: 40px;

    text-align: center;

    color: var(--dark-color);
    border-radius: 50%;
    background: var(--grey-color);
}

.woocommerce div.product .pt-single-product-share .pt-share-itmes li a:hover {
    transition: .5 s ease-in-out;

    color: var(--white-color);
    background: var(--primary-color);
}

.woocommerce div.product .pt-single-product-share .pt-share-itmes li a i:hover {
    color: var(--white-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);
}

@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;
    }
}

.woocommerce-shop.woocommerce nav.woocommerce-pagination {
    margin-bottom: 80px;
}


/*update page home 9 css */


.pt-testimonial-nav .pt-testimonial.pt-testimonial-style-3 .owl-nav {
    position: absolute;
    top: -30%;
    right: 0;

    margin-top: 0;
    margin-right: 0;

    text-align: right;
}

.pt-testimonial-nav .pt-testimonial.pt-testimonial-style-3 .owl-carousel .owl-nav button.owl-prev {
    color: var(--dark-color) !important;
    background: var(--white-color);
}

.pt-testimonial-nav .pt-testimonial.pt-testimonial-style-3 .owl-carousel .owl-nav button:hover {
    color: var(--white-color) !important;
    background: var(--primary-color);
}

@media(max-width:799px) {
    .pt-testimonial-nav .pt-testimonial.pt-testimonial-style-3 .owl-nav {
        display: none;
    }
}


.pt-service-box.pt-style-4 .pt-service-box-info {
    display: flex;
    padding: 10px 30px;

    transition: .5s ease-in-out;

    background: var(--primary-dark-color);

    align-items: center;
    justify-content: space-between;
}

.pt-service-box.pt-style-4 .pt-service-icon {
    transition: .5s ease-in-out;
    text-align: center;

    color: var(--white-color);
}

.pt-service-box.pt-style-4 .pt-service-icon i {
    font-size: 28px;
    line-height: 36px;
    line-height: inherit;

    transition: all .5s ease;
    vertical-align: middle;
}

.pt-service-box.pt-style-4 .pt-service-title {
    width: 100%;

    font-size: 22px;
    line-height: 30px;

    transition: .5s ease-in-out;

    color: var(--white-color);
}


.pt-service-box.pt-style-4 .pt-service-img img {
    width: 100%;

    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    -webkit-transform: scale(1);
            transform: scale(1);
}

.pt-service-box.pt-style-4 .pt-service-img {
    overflow: hidden;
}

.pt-service-box.pt-style-4:hover .pt-service-img img {
    -webkit-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    -webkit-transform: scale(1);
            transform: scale(1.2);
}

.pt-service-style-2:hover .pt-service-title {
    transition: .5s ease-in-out;

    color: var(--white-color);
    background: var(--primary-color);
}

.pt-service-style-2:hover .pt-service-icon {
    transition: .5s ease-in-out;

    background: var(--dark-color);
}

.pt-service-box.pt-style-4:hover .pt-service-box-info {
    background: var(--primary-color);
}


.pt-process-step.pt-style-7 {
    position: relative;

    padding: 45px;
    margin: 0;
    margin-bottom: 0;

    border-radius: 3px;
    background: var(--white-color);
}

.pt-process-step.pt-style-7 .pt-process-number {
    margin-bottom: 15px;

    font-family: var(--title-fonts);
    font-size: 64px;
    font-weight: 600;
    line-height: 72px;

    color: var(--primary-color);

    -webkit-text-stroke: 2px var(--primary-color);
}

.pt-process-step.pt-style-7 .pt-process-title {
    padding-bottom: 5px;
}

.pt-process-step.pt-style-7 .pt-process-icon {
    position: absolute;
    top: 30px;
    right: 30px;

    display: inline;
}

.pt-process-step.pt-style-7 p {
    margin-bottom: 0;
}


.pt-popup-video-block.pt-style-2 .pt-video-icon a {
    border-radius: 0;
}

.pt-icon-box-border {
    position: relative;
}

.pt-icon-box-border:after {
    position: absolute;
    top: 75px;
    right: 0;

    width: 1px;
    height: 150px;

    content: "";

    background: var(--grey-color);
}

@media(max-width: 1024px) {
    .pt-icon-box-border:after {
        top: 190px;

        height: 130px;
    }
}

@media(max-width: 767px) {
    .pt-icon-box-border:after {
        top: 30px;
        right: 30px;
        left: 30px;

        width: 95%;
        height: 1px;
    }
    .pt-border-none.pt-icon-box-border:after {
        display: none;
    }
}


.pt-service-primary-bg .pt-fancy-box.pt-style-1:hover {
    background: var(--primary-color);
}


.mfp-wrap .mfp-close {
    position: absolute;
    top: -50px;

    width: 50px;
    height: 50px;
    padding: 0;

    font-size: 24px;
    line-height: 50px;

    text-align: center;
    letter-spacing: 0;

    opacity: 1;
    color: var(--white-color);
    background-color: var(--primary-color);
}

.mfp-wrap .mfp-close:hover {
    background: var(--dark-color);
}

.mfp-wrap .mfp-close:focus {
    outline: none;
}


/* update page home 10 css*/


.pt-fancy-box.pt-style-13 {
    position: relative;

    padding: 45px;
    overflow: hidden;

    transition: all .5s ease;

    border-radius: 3px;
    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
}

.pt-fancy-box.pt-style-13 .pt-fancy-box-icon {
    position: relative;
}

.pt-fancy-box.pt-style-13 .pt-fancy-box-icon:before {
    position: absolute;
    top: -5px;
    left: -30px;

    width: 60px;
    height: 60px;

    content: "";
    transition: all .5s ease;

    opacity: .1;
    border-radius: 100%;
    background: var(--primary-color);
}

.pt-fancy-box.pt-style-13:hover .pt-fancy-box-icon:before {
    left: -20px;
}

.pt-fancy-box.pt-style-13 .pt-fancy-box-icon i {
    position: relative;

    display: inline-block;
    margin-right: 30px;
    margin-bottom: 10px;

    font-size: 64px;
    line-height: 72px;

    transition: all .5s ease;

    color: var(--primary-color);
}

.pt-fancy-box.pt-style-13 .pt-fancy-box-title {
    margin-bottom: 5px;

    font-size: 26px;
    line-height: 34px;
}


.pt-testimonial-box.pt-style-4 {
    padding: 45px;

    border-radius: 3px;
    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-media {
    position: relative;

    display: flex;

    align-items: center;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-media .pt-testimonial-img {
    width: 90px;
    margin-right: 30px;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-media .pt-testimonial-img img {
    border-radius: 100%;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-meta .pt-testimonial-star i {
    font-size: 12px;

    color: var(--primary-color);
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-meta h5 {
    font-size: 22px;
    line-height: 30px;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-media .pt-testimonial-meta span {
    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-content {
    padding-top: 20px;
    margin-top: 30px;

    border-top: 1px solid var(--grey-color);
}

.pt-testimonial.pt-testimonial-style-4 .owl-stage-outer {
    overflow: visible;
}

.pt-testimonial.pt-testimonial-style-4 .owl-stage-outer .owl-item {
    opacity: 0;
}

.pt-testimonial.pt-testimonial-style-4 .owl-stage-outer .owl-item.active {
    opacity: 1;
}

@media(max-width:767px) {
    .pt-testimonial-box.pt-style-4 {
        padding: 30px;
    }
}


.pt-counter.pt-style-3 .pt-counter-num-prefix {
    display: block;
    margin-bottom: 10px;
}

.pt-counter.pt-style-3 .pt-counter-info h5 {
    display: inline-block;

    font-size: 62px;
    line-height: 70px;

    color: var(--white-color);
}

.pt-counter.pt-style-3 .pt-counter-info .pt-counter-prefix {
    font-family: var(--title-fonts);
    font-size: 62px;
    font-weight: 600;
    line-height: 70px;

    color: var(--white-color);
}

.pt-counter.pt-style-3 .pt-counter-info p {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 5px;
    margin-bottom: 0;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--white-color);
    border: 1px solid var(--primary-color);
}

.pt-team-box.pt-style-4 .pt-team-img {
    position: relative;

    overflow: hidden;

    border-radius: 3px;
}

.pt-team-box.pt-style-4 .pt-team-img img {
    width: 100%;
}

.pt-team-box.pt-style-4 .pt-team-info-icon {
    position: absolute;
    top: 30px;
    right: 30px;
}

.pt-team-box.pt-style-4 .pt-team-info-icon .pt-team-share-icon {
    position: relative;

    width: 40px;
    height: 40px;

    line-height: 40px;

    cursor: pointer;
    transition: all .5s ease;
    text-align: center;

    color: var(--primary-color);
    border-radius: 100%;
    background: var(--white-color);
}

.pt-team-box.pt-style-4 .pt-team-info-icon .pt-team-share-icon:hover {
    color: var(--white-color);
    background: var(--primary-dark-color);
}

.pt-team-box.pt-style-4 .pt-team-social ul {
    position: absolute;
    top: 55px;
    left: 50%;

    display: inline-block;
    visibility: hidden;
    width: 60px;
    padding: 0;
    margin: 0;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    transform: translateX(-50%);

    opacity: 0;
}

.pt-team-box.pt-style-4 .pt-team-info-icon .pt-team-share-icon:hover .pt-team-social ul {
    visibility: visible;

    opacity: 1;
}

.pt-team-box.pt-style-4 .pt-team-social ul li {
    display: inline-flex;
    margin: 0 0 15px;

    list-style: none;
}

.pt-team-box.pt-style-4 .pt-team-social ul li a {
    width: 40px;
    height: 40px;

    line-height: 40px;

    text-align: center;

    color: var(--white-color);
    border-radius: 100%;
    background: var(--primary-dark-color);
}

.pt-team-box.pt-style-4 .pt-team-social ul li a:hover {
    background: var(--primary-color);
}

.pt-team-box.pt-style-4 .pt-team-info {
    position: relative;

    padding-top: 30px;

    text-align: center;

    border-radius: 3px;
}

.pt-team-box.pt-style-4 .pt-team-info .pt-team-designation {
    display: inline-block;
    width: 100%;
    margin-top: 8px;

    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-color);
}

.pt-team-box.pt-style-4 .pt-team-info .pt-team-work-since {
    font-family: var(--title-fonts);
    font-style: normal;
    font-weight: 600;

    text-transform: capitalize;

    color: var(--primary-dark-color);
}


.pt-pricing-plan.pt-style-5 {
    padding: 45px;
    padding-bottom: 0;

    text-align: center;

    border-radius: 3px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
       -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
            box-shadow: 0 0 30px 0 rgba(0, 20, 9, .1);
}

.pt-pricing-plan.pt-style-5 .pt-title {
    display: block;

    font-size: 28px;
    font-weight: 600;
    line-height: 36px;

    text-transform: capitalize;

    color: var(--primary-dark-color);
}

.pt-pricing-plan.pt-style-5 .price {
    position: relative;
    position: relative;

    display: inline-flex;
    padding-bottom: 45px;
    margin: 30px 0 40px;

    font-weight: 600;

    color: var(--primary-color);

    justify-content: center;
}

.pt-pricing-plan.pt-style-5 .price:before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 60px;
    height: 2px;
    margin: 0 auto;

    content: "";

    background: var(--primary-color);
}

.pt-pricing-plan.pt-style-5.active .price:before {
    background: var(--white-color);
}

.pt-pricing-plan.pt-style-5 .price .pt-amount {
    font-size: 64px;
    line-height: 72px;

    color: var(--primary-color);
}

.pt-pricing-plan.pt-style-5 .price .pt-price-dollar {
    display: inline-flex;
    margin-right: 5px;

    font-size: 22px;
    font-weight: 600;
    line-height: 30px;

    color: var(--primary-color);

    align-items: flex-start;
}

.pt-pricing-plan.pt-style-5 .price .price-month {
    display: inline-flex;

    font-size: 16px;
    font-weight: 600;
    line-height: 24px;

    text-transform: capitalize;

    color: var(--primary-color);

    align-items: flex-end;
}

.pt-pricing-plan.pt-style-5.active {
    color: var(--white-color);
    background: var(--primary-color);
}

.pt-pricing-plan.pt-style-5.active .pt-title,
.pt-pricing-plan.pt-style-5.active .price .pt-price-dollar,
.pt-pricing-plan.pt-style-5.active .price .price-month,
.pt-pricing-plan.pt-style-5.active .price .pt-amount {
    color: var(--white-color);
}

.pt-pricing-plan.pt-style-5 ul.pt-pricing-list {
    padding: 0;

    list-style: none;
}

.pt-pricing-plan.pt-style-5 ul.pt-pricing-list li {
    margin: 0 0 10px;

    font-weight: 500;
    line-height: 34px;

    text-transform: capitalize;

    color: var(--primary-dark-color);
}

.pt-pricing-plan.pt-style-5.active ul.pt-pricing-list li {
    color: var(--white-color);
}

.pt-pricing-plan.pt-style-5 ul.pt-pricing-list li:last-child {
    margin-bottom: 0;
}

.pt-pricing-plan.pt-style-5 .pt-btn-container {
    margin: 45px 0 0;

    text-align: center;
}

.pt-pricing-plan.pt-style-5 .pt-btn-container a.pt-button {
    border-radius: 0;
    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
            border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
            border-top-right-radius: 3px;
}

@media(max-width:360px) {
    .pt-pricing-plan.pt-style-5 .price .pt-amount {
        font-size: 56px;
        line-height: 64px;
    }
}

.pt-cost-calculator {
    padding: 60px;

    border-radius: 3px;
    background: var(--white-color);
}

.pt-cost-calculator .pt-cost-title {
    display: inline-block;
    margin-bottom: 5px;

    font-weight: 500;

    color: var(--dark-color);
}

.pt-cost-calculator .form-control {
    margin-bottom: 30px;

    background-color: var(--grey-color);
}





.pt-cost-calculator ul.time {
    padding: 0;
    margin: 0;

    list-style-type: none;
}

.pt-cost-calculator ul.time li {
    display: inline-block;
    padding: 5px 15px;

    cursor: pointer;
    transition: all .5s ease;

    border: 1px solid var(--grey-color);
    background: var(--grey-color);
}

.pt-cost-calculator ul.time li:hover,
.pt-cost-calculator ul.time li.active {
    color: var(--white-color);
    background: var(--primary-color);
}

.pt-cost-calculator ul.time li + li {
    margin-left: 5px;
}

.pt-cost-calculator .pt-appointment-time {
    display: flex;
    margin-top: 15px;
    margin-bottom: 20px;

    align-items: center;
}

.pt-cost-calculator .pt-appointment-time .appointment {
    margin-right: 10px;
}

.pt-cost-calculator .pt-calculator-price {
    display: flex;

    align-items: center;
}

.pt-cost-calculator .pt-calculator-price .pt-total-title {
    padding-right: 15px;
}

.pt-cost-calculator .pt-calculator-price .pt-cost-value {
    display: inline-block;

    font-size: 36px;
    font-weight: 600;
    line-height: 44px;

    color: var(--primary-color);
}

@media(max-width:767px) {
    .pt-cost-calculator {
        padding: 30px;
    }
}


.pt-lable-new {
    display: inline-block;
    padding: 0 5px;
    margin-left: 5px;

    font-size: 12px;
    line-height: 21px;

    text-transform: capitalize;

    color: var(--white-color);
    border-radius: 2px;
    background: var(--primary-dark-color);
}
