/*
Template: Hotelzo - Luxury Hotel WordPress Theme
Author: peacefulqode.co.in
Version: 1.2
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
==> Breadcrumb
==> Footer
==> Section Title
==> Booking Form
==> OWL Carousel
==> Video Popup
==> Fancy Box
==> Process Step
==> Testimonial
==> Home Blog
==> Contact Form
==> Counter
==> Service Box
==> Progressbar
==> Gallery
==> Team
==> Pricebox
==> FAQ
==> Tabs
==> Menu Price


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

/*================================================
Moz Selection
================================================*/


:root {
    --primary-color: #00a9ae;
    --primary-dark-color: #004a5b;
    --dark-color: #19130b;
    --secondary-color: #666666;
    --grey-color: #f6f8fb;
    --grey-dark-color: #f6f8fb;
    --white-color: #ffffff;
    --body-fonts: 'Jost', sans-serif;
    --title-fonts: 'Cormorant Garamond', sans-serif;
    --sub-title-fonts: 'Jost', sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

p {
    margin-bottom: 30px;
}

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

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

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

b,
strong {
    font-weight: 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: 0px;
}

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

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

/*===== Input Textarea =====*/
input,
input.form-control {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--secondary-color);
    width: 100%;
    float: left;
    padding: 0 15px;
    height: 54px;
    line-height: 54px;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    text-transform: capitalize;
    font-family: var(--sub-title-fonts);
    font-weight: 400;


}

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

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

textarea {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--secondary-color);
    width: 100%;
    float: left;
    padding: 10px 15px;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    text-transform: capitalize;
    font-family: var(--sub-title-fonts);
    font-weight: 400;

}

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

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

.content-area .site-main {
    padding: 130px 0;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    float: left;
}

/*================================================
Loading
================================================*/
#pt-loading {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: var(--white-color);
}

#pt-loading img {
    height: 60px;
}

/*================================================
Back to Top
================================================*/
#back-to-top .top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    margin: 0px;
    color: var(--white-color);
    background: var(--primary-color);
    z-index: 999;
   
    font-size: 26px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border: 2px solid transparent;
}

#back-to-top .top:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease;
}
#back-to-top .top:hover:before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
    border-color: var(--dark-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-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

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

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

.bypostauthor {
    display: block;
}

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

/*===== Text meant only for screen readers =====*/
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    white-space: nowrap;
    height: 0px;
    width: 1px;
    overflow: hidden;
}

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


/*================================================
Button Core
================================================*/
[type="button"],
[type="reset"],
[type="submit"] {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    background: var(--primary-color);
    font-family: var(--sub-title-fonts);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white-color);
    display: inline-block;
    border: none;
    width: auto;
    height: auto;
    line-height: 2;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

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

.pt-button {
    position: relative;
    width: auto;
    background: var(--primary-color);
    color: var(--white-color);

    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2em;
    padding: 12px 30px;
    text-transform: uppercase;
    line-height: 2;
    vertical-align: middle;
    border: none;
    display: inline-block;
    border: 2px solid transparent;

}


.pt-button span {
    z-index: 9;
    position: relative;
    display: inline-block;

}

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

/*+++++++++++++ Button flat++++++++++++++*/
.pt-button.pt-button-flat:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease;
}

.pt-button.pt-button-flat:hover:before {

    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;

    border-color: var(--primary-dark-color);
}
.pt-white-button .pt-button.pt-button-flat:before{border: 1px solid var(--primary-color);  }
.pt-white-button .pt-button.pt-button-flat:hover:before{border-color: var(--primary-dark-color);}

.pt-white-border.pt-button.pt-button-flat:hover:before{ border-color: var(--white-color); }
.pt-white-border .pt-button.pt-button-flat:hover:before{ border-color: var(--white-color); }


/*+++++++++++++ Button link++++++++++++++*/
.pt-button.pt-button-link {
    padding: 0;
    background: transparent;
    color: var(--primary-color);
}

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

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

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

.pt-button.pt-button-link:hover:after {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: .3s cubic-bezier(.48, .05, .50, .94);
    -o-transition: .3s cubic-bezier(.47, .05, .50, .94);
    transition: .3s cubic-bezier(.47, .05, .50, .94);
}


/*+++++++++++++ Button outline ++++++++++++++*/
.pt-button.pt-button-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.pt-button.pt-button-outline:hover {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color)
}

/*================================================
Dummy data
================================================*/
.pt-sticky-post-label {
    padding: 5px 15px;
    background: var(--primary-color);
    color: var(--white-color);
    margin-bottom: 15px;
    display: inline-block;
}

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

.wp-block-button__link,
.wp-block-file a.wp-block-file__button {
    background: var(--primary-color);
    color: var(--white-color) !important;
    font-family: var(--sub-title-fonts);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.2em;
    padding: 12px 30px;
    text-transform: uppercase;
    line-height: 2;
    border-radius: 0;
    display: inline-block;
}

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

ul.wp-block-archives-list li a {
    color: var(--dark-color);
}

ul.wp-block-archives-list li a:hover {
    color: var(--primary-color);
}

.wp-block-group.has-background {
    padding: 15px;
}

.wp-block-separator {
    border-top: none;
}

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

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

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

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

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

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

blockquote cite {
    font-family: var(--title-fonts);
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-style: italic;
}

blockquote strong {
    font-family: var(--title-fonts);
    color: var(--primary-color);
    font-style: italic;
    font-weight: 600;
       display: block;
    font-size: 20px;
    line-height: 28px;
    margin-top: 10px;
}

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

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

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

.pt-blog-contain .wp-block-archives 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: 20px;
}

.wp-block-latest-posts__post-author {
    padding-bottom: 5px;
}

.wp-block-latest-comments__comment-date,
.wp-block-latest-posts__post-date {
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: var(--sub-title-fonts);
    color: var(--dark-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*===== 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;
    color: var(--dark-color);
    text-align: center;
    caption-side: top;
}

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

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

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

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

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

/*=====  Tags =====*/
.wp-block-tag-cloud .tag-cloud-link {
    font-size: 12px !important;
    font-family: var(--sub-title-fonts);
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: var(--white-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    float: left;
    color: var(--secoundary-color);
    padding: 4px 8px;
    border: 1px solid var(--grey-dark-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;


}

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

/*=====  Blog Page Link =====*/
.page-links {
    margin: 15px 0 10px;
    clear: both;
}

.pt-blog-contain .page-links a,
.page-links>span.page-number,
.page-links a,
.page-links .post-page-numbers {

    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    background: var(--primary-color);
    margin-left: 5px;
    padding: 0px;
    display: inline-block;
    color: var(--white-color);position: relative;
}

.page-links .post-page-numbers { border:2px solid transparent; }


.page-links .post-page-numbers:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease;
}

.page-links .post-page-numbers:hover:before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
    border-color: var(--primary-dark-color);
}




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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*===== Widget Title =====*/
.widget {
    margin-bottom: 45px;
    display: inline-block;
    width: 100%;
    float: left;
    position: relative;
    padding: 30px;
    background: var(--grey-color);
}

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

.widget h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 15px;
}

/*===== SideBar - Search =====*/
.widget.widget_search {
    background: var(--primary-color);
}

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

.widget.widget_search input {
    background: var(--white-color);
    border: 1px solid var(--grey-color);
    padding: 0 15px;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
    background: var(--white-color);
    border: 1px solid var(--grey-color);
    padding: 0 15px;
}

.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 {
    background: var(--white-color);
    border: 1px solid var(--grey-color);
    padding: 0 15px;
    text-transform: capitalize;
    font-family: var(--sub-title-fonts);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.2em;
}

.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input::placeholder {
    color: var(--dark-color);
    font-family: var(--body-fonts);
}

.wp-block-search .wp-block-search__button {
    background: transparent;
    border: none;
    padding: 0;
    margin-left: 0;
    padding: 0;
    width: 54px;
    height: 54px;
    line-height: 54px;
    position: absolute;
    right: 0;
    font-size: 0;
    color: var(--dark-color);
}

.wp-block-search .wp-block-search__button:focus {
    outline: none;
}

.widget_search .search-form .search-submit {
    background: transparent;
}

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

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

.wp-block-search .wp-block-search__button:hover {
    outline: none;
}

.search-form {
    position: relative;
}

.search-form label {
    width: 100%;
    margin-bottom: 0;
    float: left;
    width: 100%;
}
.search-form .search-field { font-size: 14px; }

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

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


.search-submit:hover {
    background: var(--primary-dark-color);
    outline: none;
    color: var(--white-color) !important;
}

.search-submit:focus {
    outline: none;
}

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

/*===== widget-menu =====*/
.widget ul {
    padding: 0;
    margin: 0;
}

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

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

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

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

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

.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;
    content: '\f054';
    left: 0;
    font-size: 10px;
    top: 6px;
    font-family: "Font Awesome 5 Free";
    line-height: normal;
    font-weight: 600;
    color: var(--primary-color);
}

ul.wp-block-latest-posts__list>li {
    padding-bottom: 10px;
}

/*===== 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 {
    color: var(--primary-color);
    padding-left: 0;
}

.widget.widget_recent_comments #recentcomments li.recentcomments a:hover {
    color: var(--primary-color);
    text-decoration: underline !important;
    padding-left: 0;
}

/*=====  SideBar Calendar  =====*/
.widget_calendar table caption {
    caption-side: inherit;
    padding: 0 0 10px;
    color: var(--dark-color);
    font-weight: 500;
}

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

.widget_calendar table#wp-calendar a {
    font-weight: 600;
}

.widget_calendar .calendar_wrap td#today {
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: 500;
}

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

.widget_calendar table#wp-calendar td#today {
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: 500;
}

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

.widget_calendar .calendar_wrap table th {
    background: var(--white-color);
    color: var(--dark-color);
    font-weight: 500;
}

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

/*=====  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-size: 16px;
    color: var(--dark-color);
    font-weight: 600;
    font-family: var(--title-fonts);
}

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

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

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

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

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 .sub-menu li a,
.widget ul.menu li .sub-menu li a {}

.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 {
    font-size: 12px !important;
    font-family: var(--sub-title-fonts);
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: var(--white-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    float: left;
    color: var(--secoundary-color);
    padding: 5px 12px;
    border: 1px solid var(--grey-dark-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

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

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

/*===== Comments Box =====*/
.comment-respond {
    margin-top: 0;
    display: inline-block;
    width: 100%;
}

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

.comment-respond .comment-reply-title a {
  color: var(--primary-color);
    
    margin-left: 30px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing:0.2em;

    text-transform: uppercase;
    font-family: var(--body-fonts);
}

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

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

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

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

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

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

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

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

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

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

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

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

.commentlist .pt-comment-info .reply a {
    position: absolute;
    right: 30px;
    top: 30px;
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing:0.2em;

    text-transform: uppercase;
}

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

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

/*===== Comments Form =====*/
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
    padding: 0;
    margin: 0 0 30px;
}

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

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

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

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

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

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


@media(max-width:479px) {

    .pt-comment-area .comments-title,
    .comment-respond .comment-reply-title {
        font-size: 26px;
        line-height: 34px;
    }
}


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

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

.wp-block-calendar table th {
    background: transparent;
    font-weight: 500;
    color: var(--dark-color);
    padding: 8px;
}

.wp-block-calendar tbody td,
.wp-block-calendar th {
    border-color: var(--grey-dark-color);
}

.wp-block-calendar table td {
    padding: 8px;
}

.wp-block-calendar table td a {
    text-decoration: none;
    font-weight: 500;
}

.wp-block-calendar table td#today {
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: 500;
}

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

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

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

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

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

.entry-content h2+ul,
.entry-content h2+ol {
    margin-top: 1em;
}

.wp-block-button a.wp-block-button__link {
    font-family: var(--sub-title-fonts);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.2em;
    padding: 12px 30px;
    text-transform: uppercase;
    line-height: 2;
    border: 2px solid transparent;position: relative;
}

.wp-block-button a.wp-block-button__link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease;
}

.wp-block-button.is-style-outline a.wp-block-button__link:before{border: 1px solid var(--dark-color);}

.wp-block-button a.wp-block-button__link:hover:before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
    border-color: var(--primary-dark-color);
}


.wp-block-gallery.alignleft .blocks-gallery-item:nth-of-type(2n)>figure {
    margin-right: 30px !important;
}

.wp-block-embed .wp-block-embed__wrapper iframe {
    width: 100%;
}


/*================================================
Blog
================================================*/
.pt-blog .owl-carousel .pt-blog-post {
    margin-bottom: 0;
}

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

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

.pt-blog-post .pt-post-media {
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
}

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

.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 {
    font-weight: 500;
    font-family: var(--sub-title-fonts);
    background: var(--primary-color);
    padding: 5px 15px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 14px;
    color: var(--white-color);
    text-align: center;
    position: absolute;
    bottom: 0;
    right: 0;
}

.pt-blog-post .pt-post-media .pt-post-date a {
    color: var(--white-color);
}

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


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

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

}

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

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


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


}

.pt-blog-post .pt-post-meta ul li {

    list-style: none;
    float: left;
    display: inline-block;
    margin-right: 15px;
    align-self: center !important;


    font-family: var(--sub-title-fonts);
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 0.2em;

}

.pt-blog-post .pt-post-meta ul li+li {
    position: relative;
    padding-left: 15px;
}

.pt-blog-post .pt-post-meta ul li+li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: rgba(0, 0, 0, .1);
}

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

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

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

.pt-light-bg .pt-blog-post {
    background: var(--white-color);
}

@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:979px) {
    .pt-blog-post .pt-post-meta ul {
        display: inline-block !important;
    }


}

@media(max-width:767px) {
    .commentlist ol.children {
        padding-left: 30px;
    }

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

    .commentlist .pt-comment-info .reply a {
        right: 15px;
        top: 15px;
    }

    .comment-respond .comment-form-author,
    .comment-respond .comment-form-email,
    .comment-respond .comment-form-url {
        width: 100%;
        margin-right: 0;
    }

    .commentlist .pt-comment-avatar {
        width: 90px;
    }
}

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

    .commentlist .pt-comment-avatar {
        margin: 0 0 15px 0;
    }

    .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 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    #rev_slider_2_1 .pt-button i,
    #rev_slider_4_1 .pt-button i,
    #rev_slider_5_1 .pt-button i,
    #rev_slider_6_1 .pt-button i {
        font-size: 10px !important;
    }
}

/*================================================
Pagination
================================================*/
.pt-pagination {
    margin-top: 15px;
}

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

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

.pt-pagination .page-numbers li .page-numbers {
    position: relative;
    display: block;
    padding: 0px 15px;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 40px;
    margin: 0 5px;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-family: var(--sub-title-fonts);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 2px solid transparent;
}

.pt-pagination .page-numbers li .page-numbers:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease;
}
.pt-pagination .page-numbers li span.page-numbers.current{ color: var(--white-color);background: var(--primary-dark-color);}

.pt-pagination .page-numbers li span.page-numbers.current:before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
    border-color: var(--primary-dark-color);
}






.pt-pagination .page-numbers li .page-numbers:hover:before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
    border-color: var(--primary-dark-color);
}





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

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

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

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

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

@media(max-width:767px) {

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


/*================================================
Error
================================================*/
.error404 .content-area .site-main {
    padding-top: 0;
}

.pt-error-block {
    text-align: center;
}
.pt-error-block h2{    font-family: var(--body-fonts);font-weight: 500;}

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

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

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

    .pt-error-block h2 {
        font-size: 26px;
        line-height: 34px;
    }
}

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

/*================================================
Header
================================================*/
.animated {
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
}

.fadeInDown {
    animation-name: fadeInDown
}

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

    to {
        opacity: 1;
        transform: none
    }
}

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

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

/*===== Header Top Bar =====*/
header#pt-header .pt-top-header {
    background: var(--primary-dark-color);
    padding: 0;
    font-size: 16px;
}

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

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

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

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

header#pt-header .pt-top-header .pt-header-contact ul li i {
    margin-right: 10px;
}

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

header#pt-header .pt-top-header .pt-header-contact ul li a:hover {
    color: var(--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 {
    margin: 0;
    padding: 0;
}

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

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

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

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

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

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

/*===== Header Navbar Bar =====*/
header#pt-header .pt-bottom-header {
    min-height: 90px;
}

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

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

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

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

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

header#pt-header .pt-bottom-header .navbar .navbar-nav li a {
    color: var(--dark-color);
    font-family: var(--sub-title-fonts);
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

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 {
    display: block;
    background: var(--white-color);
    position: absolute;
    top: 100%;
    left: 0;
    padding-left: 0;
    display: inline-block;
    width: 250px;
    z-index: 999;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

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

header#pt-header .pt-bottom-header .navbar .navbar-nav li i {
    margin-left: 5px;
    font-size: 12px;
    color: var(--dark-color);

}

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

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

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

/*===== Navigation Sub Menu =====*/
header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li>.sub-menu {
    display: none;
}

header#pt-header.pt-header-default .pt-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
    right: 100%;
    left: inherit;
}

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

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

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover>.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 {
    background: var(--primary-color);
    color: var(--white-color);
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children:hover>a {
    color: var(--white-color);
    transition: all 0s ease-in-out;
    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;
    -webkit-transition: all 0s ease-in-out;
}

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

header#pt-header .pt-menu-search-block a {
    color: var(--dark-color);
    font-size: 20px;
    width: 18px;
    display: inline-block;
}

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

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

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

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

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

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

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

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


/*+++++++++++++ Header Style-2 ++++++++++++++*/
header#pt-header.pt-header-style-1 .pt-top-header a.pt-header-contact { border: none; }
header#pt-header.pt-header-style-1 .pt-top-header { background: var(--primary-dark-color); }
header#pt-header.pt-header-style-1 .pt-top-header .text-left .pt-header-social { padding-top: 11px; color: var(--white-color); display: inline-block;padding: 0 30px; }
header#pt-header.pt-header-style-1 .pt-header-diff-block .navbar-brand img { height: 60px; width: auto; border-radius: 0; }
header#pt-header.pt-header-style-1 { position: relative; left: 0; display: inline-block; width: 100%; background: var(--white-color); padding: 0; -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1); -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1); box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1); }
header#pt-header.pt-header-style-1 .no-gutters { margin-right: 0; margin-left: 0; }
header#pt-header.pt-header-style-1 .no-gutters>.col, header#pt-header.pt-header-style-1 .no-gutters>[class*="col-"] { padding-right: 0; padding-left: 0; }
header#pt-header.pt-header-style-1 .navbar-brand { background: var(--primary-color); padding: 16px 30px; margin: 0; line-height: 4.7777; text-align: center; width: 100%; display: inline-block; }
header#pt-header.pt-header-style-1 .pt-bottom-header { min-height: auto; }
header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li { line-height: 75px; }
header#pt-header.pt-header-style-1 .pt-header-info-box { display: flex;align-items: center; padding-right: 10px;}
header#pt-header.pt-header-style-1 .pt-menu-search-block { line-height: 76px; padding: 0 30px; background: transparent; border-left: 1px solid var(--grey-color); color: #fff; font-size: 20px; }
header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu { top: 75px; }
header#pt-header.pt-header-style-1 .pt-search-form { top: 100%; }

/*+++++++++++++Header Style-2 sticky++++++++++++++*/
header#pt-header.pt-header-style-1.pt-header-sticky { position: fixed; top: 0; left: 0; display: inline-block; width: 100%; }
header#pt-header.pt-header-style-1.pt-header-sticky .pt-top-header { display: none; }
header#pt-header.pt-header-style-1.pt-header-sticky .navbar-brand { line-height: 2.44444; }
header#pt-header.pt-header-style-1.pt-header-sticky .pt-header-diff-block .navbar-brand img { height: 55px; }
header#pt-header.pt-header-style-1.pt-header-sticky .pt-menu-search-block { line-height: 85px; }
header#pt-header.pt-header-style-1.pt-header-sticky .pt-toggle-btn { padding: 25px; }

/*+++++++++++++Toggle Side Bar++++++++++++++*/
header#pt-header.pt-header-style-1 .pt-toggle-btn { line-height: 75px; padding: 26px 14px; background: var(--primary-dark-color); color: #fff; cursor: pointer;    margin-left: 20px; position: relative;border: 2px solid transparent;}
header#pt-header.pt-header-style-1 .pt-toggle-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease;
}

header#pt-header.pt-header-style-1 .pt-toggle-btn:hover:before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
    border-color: var(--primary-dark-color);
}


header#pt-header.pt-header-style-1 .pt-toggle-btn a:before, header#pt-header.pt-header-style-1 .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, 0.05); -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); }
.buttons ol li:after { position: absolute; top: 38%; right: 7vw; transform: rotate(-90deg); z-index: 1; display: block; width: 30px; height: 30px; text-align: center; content: counter(list-counter, decimal-leading-zero); font-family: Helvetica; font-size: 20px; line-height: 30px; font-weight: 300; opacity: 0.15; transition: color 0.35s; will-change: color; }
header#pt-header.pt-header-style-1 .pt-toggle-btn a { position: relative; display: block; top: 0; width: 30px; height: 2px; margin: 0 auto; border: none; cursor: pointer; background: currentColor; color: inherit; font-size: 0; transition: 0.35s; }
header#pt-header.pt-header-style-1 .pt-toggle-btn a:before, header#pt-header.pt-header-style-1 .pt-toggle-btn a:after { position: absolute; top: 0; left: 50%; display: block; width: 100%; height: 2px; background: currentColor; content: ""; transition: transform 0.35s; }
header#pt-header.pt-header-style-1 .pt-toggle-btn a:before { transform: translate(-50%, -10px); }
header#pt-header.pt-header-style-1 .pt-toggle-btn a:after { transform: translate(-50%, 10px); }



header#pt-header.pt-header-style-2 .pt-top-header a.pt-header-contact { border: none; }
header#pt-header.pt-header-style-2 .pt-header-top-wrapper { padding: 30px 0; display: flex; justify-content: space-between; align-items: center; padding-bottom: 5px; }
header#pt-header.pt-header-style-2 .pt-top-header .text-left .pt-header-social { padding-top: 11px; color: var(--white-color); display: inline-block; }
header#pt-header.pt-header-style-2 .pt-header-top-wrapper .pt-site-logo a.navbar-brand img { height: 50px; }
header#pt-header.pt-header-style-2 .site-header-menu a.navbar-brand img { display: none; }
header#pt-header.pt-header-style-2 .pt-header-top-wrapper .pt-top-info-content .pt-header-info { display: flex;justify-content: flex-end; }
header#pt-header.pt-header-style-2 .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-2 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box.address{ width: 30%;padding: 0; }
header#pt-header.pt-header-style-2 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box.address p{ display: -webkit-box;overflow: hidden;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
header#pt-header.pt-header-style-2 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box:last-child { padding-right: 0; }
header#pt-header.pt-header-style-2 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box .info-icon-content { padding-left: 10px; }
header#pt-header.pt-header-style-2 .pt-header-info-box .info-icon i { font-size: 34px; color: var(--primary-color); }
header#pt-header.pt-header-style-2 .pt-header-info-box .info-icon-content h4 { font-size: 20px; line-height: 22px; }
header#pt-header.pt-header-style-2 .pt-header-info-box .info-icon-content p { margin-bottom: 0;font-size: 14px; }
header#pt-header.pt-header-style-2 .site-header-menu { position: relative; bottom: -30px; }
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar { background: var(--primary-color); }
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav { float: none; padding-left: 15px; }
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li a { color: var(--white-color); }
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li i { color: var(--white-color); }
header#pt-header.pt-header-style-2 .pt-menu-search-block { line-height: 65px; padding: 0 30px; font-size: 20px; }
header#pt-header.pt-header-style-2 .pt-menu-search-block a { color: var(--white-color); font-size: 22px; }
header#pt-header.pt-header-style-2 .pt-search-form { top: 66px; right: 0; }
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li { margin-right: 40px; line-height: 65px; }
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li:last-child { margin-right: 0; }
header#pt-header.pt-header-style-2 .pt-toggle-btn { display: none; }
header#pt-header.pt-header-style-2 .pt-bottom-header .pt-button { background: var(--primary-dark-color ); padding: 18px 30px; }
header#pt-header.pt-header-style-2 .pt-bottom-header .pt-button:hover { background: var(--dark-color); }
header#pt-header.pt-header-style-2 .pt-bottom-header .pt-button.pt-button-flat:before{display: none;}


/*+++++ Header Style-4 +++++*/
header#pt-header.pt-header-style-3 .pt-header-info-box { display: flex; align-items: center; padding: 0 30px; }
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; }
header#pt-header.pt-header-style-3 .pt-header-info-box .info-icon-content h4 { font-size: 18px; font-weight: 500; line-height: 26px;font-family: var(--body-fonts); }
header#pt-header.pt-header-style-3 .pt-header-info-box .info-icon-content { padding-left: 15px; }
header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li{margin-right: 15px;}
header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li:last-child{margin-right: 0;}


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



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

@media(max-width:1599px) {
    header#pt-header .pt-bottom-header .navbar .navbar-nav li {
        margin-right: 20px;
    }
}


@media(max-width:1499px) {
 header#pt-header.pt-header-style-1 .pt-header-diff-block .navbar-brand img{ height: 53px; }

}

@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 {
        left: inherit;
        right: 100%;
    }

}

@media(max-width:1365px) {
    header#pt-header .pt-bottom-header .navbar .navbar-nav li {
        font-size: 14px;
        margin-right: 15px;
    }

    header#pt-header .pt-top-header .pt-header-social ul li a {
      
        padding: 10px 15px;
    }

    header#pt-header .pt-top-header .pt-header-contact ul li {
       
        padding: 10px 15px;
    }

    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-1 .pt-header-diff-block .navbar-brand img { height: 50px; }
    header#pt-header.pt-header-style-1 .navbar-brand { line-height: 4.8888; }


}

@media(max-width:1265px) {
header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li { margin-right: 10px; }
header#pt-header.pt-header-style-3 .pt-header-info-box {  padding: 0 15px; }
header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li a { font-size: 13px; }
}


@media(max-width:1199px) {
header#pt-header.pt-header-style-1 .pt-header-diff-block .navbar-brand img{ height: 40px; }
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li { margin-right: 20px; }
header#pt-header.pt-header-style-2 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box { padding: 0 6px; }
header#pt-header.pt-header-style-2 .pt-header-top-wrapper .pt-top-info-content .pt-header-info-box .info-icon-content { padding-left: 10px; }
header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li{ margin-right: 10px; }
header#pt-header.pt-header-style-3 .pt-header-info-box { display: none; }
header#pt-header.pt-header-style-3 .pt-btn-container {margin-left: auto;padding-left: 15px;}



}



@media(max-width:1140px) {
header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li {    margin-right: 8px;}
header#pt-header.pt-header-style-1 .pt-menu-search-block{ padding: 0 20px; }
header#pt-header.pt-header-style-1 .pt-header-info-box .pt-button{ padding:12px 20px;  }
header#pt-header .pt-bottom-header .navbar .navbar-nav li a{ font-size: 13px; }
}

@media(max-width:1024px) {
header#pt-header.pt-header-style-1 .navbar-brand{ padding: 15px; }
header#pt-header.pt-header-style-1 .navbar-brand{ line-height:4.8888; }
header#pt-header.pt-header-style-1 .pt-menu-search-block{ line-height: 70px; }
header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li a{ font-size: 12px; }


}


@media(max-width:1023px) {

    /*===== Button Toggler =====*/
    .navbar-expand-lg .navbar-toggler {
        display: block;
    }

    .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }

    .navbar-expand-lg {
        justify-content: space-between;
    }
    header#pt-header .pt-top-header{ font-size: 14px; }

    header#pt-header .pt-bottom-header .navbar-toggler {
        letter-spacing: 0;
        font-size: 20px;
        padding: 15px 18px;
        color: var(--white-color);
        line-height: normal;
        float: right;
        outline: none;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        margin: 0 0 0 15px;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-collapse {
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%;
        background: #fff;
        -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        max-height: 330px;
        overflow-y: scroll;
        overflow-x: hidden;
    }

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

    header#pt-header .pt-bottom-header {
        min-height: 60px;
    }

    header#pt-header .pt-search-form {
        top: 51px;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav {
        float: left;
        width: 100%;
        display: inline-block;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li {
        float: left;
        width: 100%;
        display: inline-block;
        line-height: normal;
        position: relative;
        font-size: 16px;
        position: relative;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li a {
        width: 100%;
        display: inline-block;
        padding: 15px;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li i {
        margin-left: 0;
        opacity: 1;
        font-size: 12px;
        position: absolute;
        right: 0;
        margin-top: 0;
        top: 0;
        padding: 22px;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        position: relative;
        top: 0;
        left: 0;
        padding-left: 0;
        background: #f5f5f5;
        box-shadow: none;
        display: inline-block;
        width: 100%;
    }

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

    header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.pt-submenu-icon {
        opacity: 1;
        position: absolute;
        top: 0;
        right: 0;
        line-height: 2;
        font-size: 12px;
        padding: 12px 30px;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li a {
        padding: 10px 30px;
    }

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

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

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


    header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
        position: relative;
        top: 0;
        left: 0;
        background: transparent;
        display: inline-block;
        width: 100%;
        float: left;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu>li>a {
        background: #f5f5f5;
        color: var(--secondary-color);
    }

    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,



    header#pt-header.pt-header-default .pt-btn-container {
        margin-left: auto;
    }

    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-1 .pt-menu-search-block { border: none; padding: 0 20px;}
header#pt-header.pt-header-style-1 .navbar-brand{    line-height: 4.44444;}
header#pt-header.pt-header-style-1 .pt-header-diff-block .navbar-brand img { height: 40px; }
header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li { line-height: normal; }
header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu { top: 0; }
header#pt-header.pt-header-style-1 .pt-bottom-header .navbar { justify-content: flex-end; }
header#pt-header.pt-header-style-1 .pt-toggle-btn { display: none; }
header#pt-header.pt-header-style-1 .pt-bottom-header .navbar-toggler { margin: 0 20px; }
header#pt-header.pt-header-style-1 .pt-header-info-box{ padding-right: 0; }
header#pt-header.pt-header-style-1 .pt-bottom-header .navbar-toggler{ padding: 14px 20px; }
header#pt-header.pt-header-style-2 .pt-header-top-wrapper { display: none; }
header#pt-header.pt-header-style-2 .site-header-menu a.navbar-brand img { display: inline-block; }
header#pt-header.pt-header-style-2 .pt-header-info-box { margin-left: auto; }
header#pt-header.pt-header-style-2 .site-header-menu { bottom: inherit;background: var(--white-color); }
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar { background: var(--white-color);  }
header#pt-header.pt-header-style-2 .pt-menu-search-block a { color: var(--dark-color); }
header#pt-header.pt-header-style-2 .pt-bottom-header .pt-button {padding: 14px 30px;}
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar-toggler:focus { box-shadow: none;}
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav{ padding-left: 0; }
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 a{ color: var(--dark-color); }
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>a{ color: var(--white-color); }
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li:hover>a{color: var(--white-color); }
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li i{ color: var(--dark-color); }
header#pt-header.pt-header-style-2 .pt-menu-search-block { padding: 0 15px; }
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li a{ font-size: 12px; }
header#pt-header.pt-header-style-3 .pt-bottom-header .navbar .navbar-nav li {margin-right: 0;display: block;}
 


}


@media(max-width:991px) {
    header#pt-header.pt-header-style-1 .pt-top-header { display: none; }
    header#pt-header.pt-header-style-1 .navbar-brand { padding: 15px 10px; line-height: normal; }
    header#pt-header.pt-header-style-1 .pt-top-header a.pt-header-contact { display: none; }
    header#pt-header.pt-header-style-1 .pt-header-diff-block .navbar-brand img { height: 60px; }
    header#pt-header.pt-header-style-1 .pt-menu-search-block { height: 90px; line-height: 90px; }
}


@media(max-width:767px) {

    header#pt-header.pt-header-default .pt-top-header,
    header#pt-header.pt-header-default .pt-btn-container {
        display: none !important;
    }

  

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

header#pt-header.pt-header-style-1 .navbar-brand { width: auto; padding: 15px; }
header#pt-header.pt-header-style-1 .pt-menu-search-block { margin-top: -90px;padding: 0; }
header#pt-header.pt-header-style-1 .pt-bottom-header .navbar-toggler { margin-top: -90px; }
header#pt-header.pt-header-style-1 .pt-header-info-box .pt-btn-container { display: none; }
header#pt-header.pt-header-style-2 .pt-top-header { display: none; }
header#pt-header.pt-header-style-2 .pt-btn-container { display: none; }
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar-toggler { margin-left: 0; }
header#pt-header.pt-header-style-3 .pt-top-header{ display: none; }
header#pt-header.pt-header-style-3 .pt-header-info-box{ display: none; }
header#pt-header.pt-header-style-3 .pt-btn-container{ display: none; }


}

@media(max-width:480px) {
header#pt-header .pt-bottom-header .navbar .navbar-brand img {height: 40px;}
header#pt-header.pt-header-style-1 .pt-menu-search-block { display: none; }
header#pt-header.pt-header-style-1 .pt-shop-btn { display: none; }
header#pt-header.pt-header-style-1 .pt-bottom-header .navbar-toggler { margin-top: -74px; }
header#pt-header.pt-header-style-1 .pt-header-diff-block .navbar-brand img { height: auto; width: 150px; }
header#pt-header.pt-header-style-1.pt-header-sticky .pt-header-diff-block .navbar-brand img { height: auto; }
header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-brand { padding-top: 10px; padding-bottom: 10px; }
header#pt-header.pt-header-style-2 .pt-menu-search-block { display: none; }

}



/*+++++++++++++++++++++++++++++++++++++++++
Sidebar Menu
++++++++++++++++++++++++++++++++++++++++*/
.pt-background-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--dark-color); z-index: 100; opacity: 0.8; display: none; transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; }
.pt-siderbar-open .pt-background-overlay { display: block; transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; }
.pt-siderbar-open .pt-sidebar { right: 0; opacity: 1; }
.pt-sidebar { width: 410px; background: var(--white-color); opacity: 0; display: block; position: fixed; top: 0; right: -100%; height: 100%; z-index: 101; transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; }
.pt-sidebar .pt-close-btn .pt-close { position: absolute; left: -45px; background: var(--primary-color); width: 50px; height: 50px; line-height: 50px; text-align: center; color: #fff; top: 90px; font-size: 18px;border: 2px solid transparent; }
.pt-sidebar .pt-close-btn .pt-close:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease;
}
.pt-sidebar .pt-close-btn .pt-close:hover:before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
    border-color: var(--primary-dark-color);
}
.pt-sidebar .pt-close-btn .pt-close:hover{ background: var(--primary-dark-color); }


.pt-sidebar-block { padding: 60px 30px 30px 30px; height: 100%; }
.pt-sidebar-header .pt-sidebar-logo { margin-bottom: 15px; height: 60px; }
.pt-sidebar h5, .pt-sidebar h4 { font-size: 30px; line-height: 38px; margin-bottom: 15px; }
.pt-sidebar .pt-foote-recent-post .pt-foote-recent-post-info .pt-post-date:hover {
    color: var(--primary-color);
}

.pt-sidebar .pt-sidebar-form span.wpcf7-form-control-wrap { margin-bottom: 30px; display: block; }
.pt-sidebar .pt-sidebar-form .wpcf7-form-control { float: none; }
.pt-sidebar ul { margin: 0; padding: 0; }
.pt-sidebar ul li { list-style: none; margin: 0; padding: 0 0 10px; }
.pt-sidebar ul li a { color: var(--dark-color); }
.pt-sidebar-contact { margin-top: 30px; display: inline-block; width: 100%; }
.pt-sidebar-contact li { display: flex; align-items: flex-start; }
.pt-sidebar-contact li i { line-height: 2; color: var(--primary-color); }
.pt-sidebar-contact li span { margin-left: 15px; flex: 1; }
.pt-sidebar-social ul { margin-top: 30px; display: inline-block; width: 100%; }
.pt-sidebar-social ul li { display: inline-block; padding: 0; margin: 0;     margin-right: 5px;}
.pt-sidebar-social ul li:last-child { margin-right: 0; }
.pt-sidebar-social ul li a { background: var(--primary-color); color: #fff; width: 50px; height: 50px; line-height: 50px; display: inline-block; text-align: center; border-radius: 3px;border: 2px solid transparent;position:relative; }

.pt-sidebar-social ul li a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease;
}
.pt-sidebar-social ul li a:hover:before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
    border-color: var(--primary-dark-color);
}

.pt-sidebar-social ul li a:hover { background: var(--primary-dark-color); }
.pt-sidebar .widget { background: transparent; padding: 0; border: none; }
.pt-sidebar .widget .wp-block-image { margin-bottom: 30px; }
@media(max-width:991px) {
    .pt-sidebar { display: none; }

}



/*================================================
Breadcrumb
================================================*/
.pt-breadcrumb {
    background: var(--grey-color);
    color: var(--white-color);
    padding:60px 0;
    position: relative;
    text-align: left;
  background-position: center center;
    background-repeat: repeat;
    background-size: 40% auto;

}


.pt-breadcrumb:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grey-color);
    opacity: 0.95;

}

.pt-breadcrumb .pt-breadcrumb-title h1 {
    font-size: 56px;
    line-height: 64px;
    margin-bottom: 15px;
}

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

.pt-breadcrumb-container .breadcrumb li {
    list-style-type: none;
    margin-right: 15px;
    padding-left: 0;
}

.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:hover {
    color: var(--primary-color);
}

.pt-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "\f125";
    font-size: 12px;
    font-family: "Ionicons";
    padding-right: 15px;
}

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

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

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

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

@media(max-width:1023px) {


    .pt-breadcrumb .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{ padding: 60px 0; }
    .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: 32px;
        line-height: 40px;
    }
}


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


footer#pt-footer.style-1 {
    margin-top: 60px;
}

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

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

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

footer#pt-footer .pt-footer-top .pt-footer-logo-info {
    padding-bottom: 60px;
}

footer#pt-footer .pt-footer-top .pt-footer-logo-info .container {
    border: none;
    padding-top: 0;
    padding-bottom: 0;
}

footer#pt-footer .pt-footer-logo-info .pt-footer-img {
    width: 18%;
    display: inline-block;
}

footer#pt-footer .pt-footer-logo-info .pt-footer-img img {
    height: 52px;
}

footer#pt-footer .pt-footer-logo-info .pt-footer-description {
    width: 52%;
    display: inline-block;
    vertical-align: middle;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 60px;
}

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

footer#pt-footer .pt-footer-logo-info .pt-footer-right {
    width: 28%;
    display: inline-block;
    text-align: right;
}

footer#pt-footer .pt-footer-logo-info .pt-footer-right ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

footer#pt-footer .pt-footer-logo-info .pt-footer-right ul li {
    display: inline-block;
    margin-right: 5px;
}

footer#pt-footer .pt-footer-logo-info .pt-footer-right ul li:last-child {
    margin: 0;
}

footer#pt-footer .pt-footer-logo-info .pt-footer-right ul li a {
    color: var(--white-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    background: var(--primary-color);
    font-size: 14px;
        border: 2px solid transparent;
        position: relative;
}

footer#pt-footer .pt-footer-logo-info .pt-footer-right ul li a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease;
}
footer#pt-footer .pt-footer-logo-info .pt-footer-right ul li a:hover:before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
    border-color: var(--white-color);
}

footer#pt-footer .pt-footer-logo-info .pt-footer-right ul li a:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

footer#pt-footer .pt-footer-top .container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
    padding-bottom: 15px;
}


footer#pt-footer .pt-footer-left-block,
footer#pt-footer .pt-footer-center-block,
footer#pt-footer .pt-footer-right-block {
    padding-top: 90px;
    padding-bottom: 90px;
    clear: both;
    overflow: hidden;
}

footer#pt-footer .widget ul#menu-useful-link.menu li {
    width: 49%;
    display: inline-block;
    margin: 0 0 12px 0;
}

footer#pt-footer .pt-footer-center-block {
    border-left: 1px solid rgba(255, 255, 255, 0.17);
    border-right: 1px solid rgba(255, 255, 255, 0.17);
}

footer#pt-footer .pt-footer-center-block {
    text-align: center;
    padding-right: 30px;
    height: 100%;
}

footer#pt-footer .pt-footer-center-block .widget:first-child {
    margin-bottom: 0;
}

footer#pt-footer .widget.widget-port-1 {
    margin-bottom: 20px;
}

footer#pt-footer .widget.widget-port-1+.widget.widget-port-1 {
    margin-bottom: 0;
}


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

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

footer#pt-footer .widget ul.pt-contact li {
    display: flex;
    align-items: center;
    margin: 0 0 20px 0;
}

footer#pt-footer .widget ul.pt-contact li i {
    margin-right: 10px;
    color: var(--primary-color);
}

footer#pt-footer .widget ul.pt-contact li.pt-footer-phone {
    font-size: 28px;
    font-family: var(--title-fonts);
    font-weight: 600;
}

footer#pt-footer .widget ul.pt-contact li.pt-footer-phone i {
    font-size: 24px;
}

footer#pt-footer .pt-footer-right-block {
    border: none;
    padding-left: 15px;
}

footer#pt-footer .pt-footer-right-block h2 {
    color: var(--white-color);
    margin-bottom: 15px;
    padding: 0;
    font-size: 28px;
    position: relative;
    line-height: 36px;
}

footer#pt-footer .pt-footer-right-block .widget:first-child {
    margin-bottom: 0;
}


footer#pt-footer .pt-copyright-footer {
    padding: 20px 0;
    background: var(--blue-color);
    position: relative;
    z-index: 9;
}

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

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

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

/*======= Footer Top list =======*/
footer#pt-footer .pt-footer-bottom-list {
    padding: 0 0 60px;
    margin-top: -60px;
    position: relative;
    z-index: 9;
}

footer#pt-footer .pt-footer-bottom-list .row {
    background: var(--white-color);
    -webkit-box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 0.1);
}

footer#pt-footer .pt-footer-bottom-list .row .col-lg-4 {
    border-right: 1px solid var(--grey-color);
}

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

footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items {
    padding: 30px;
    display: flex;
    align-items: flex-start;
}

footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items i {
    align-self: center;
    font-size: 48px;
    line-height: 56px;
    color: var(--primary-color);
}

footer#pt-footer .pt-footer-top .pt-footer-bottom-list .pt-footer-items h4 {
    font-size: 24px;
    float: left;
    line-height: 32px;
    width: 100%;
    display: inline-block;
}

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

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

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

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

footer#pt-footer .widget .wp-block-gallery {
    clear: both;
    overflow: hidden;
}

footer#pt-footer .widget .wp-block-gallery .wp-block-image {
    float: left;
}

footer#pt-footer .widget .wp-block-gallery .wp-block-image {
    margin-right: 10px;
    margin-bottom: 10px;
}

footer#pt-footer .widget .wp-block-gallery .wp-block-image:nth-child(3),
footer#pt-footer .widget .wp-block-gallery .wp-block-image:nth-child(6) {
    margin: 0;
}

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

footer#pt-footer .widget ul li a {
    padding: 0 0 0 15px;
    display: inline-block;
}

footer#pt-footer .widget ul li a:before {
    position: absolute;
    content: '\f054';
    left: 0;
    font-size: 10px;
    top: 8px;
    font-family: "Font Awesome 5 Free";
    line-height: normal;
    font-weight: 600;
    color: var(--primary-color);


}

footer#pt-footer .widget #recentcomments--1 .recentcomments a {
    padding: 0;
    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 #recentcomments--1 .comment-author-link+a {
    color: var(--primary-color);
}

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 rgba(255, 255, 255, 0.5);
    color: var(--white-color);
}

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

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

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

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

footer#pt-footer ul li .rss-date {
    color: var(--primary-color);
    line-height: 1;
    float: left;
    display: inline-block;
    width: 100%;
    margin: 5px 0;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: var(--sub-title-fonts);
}

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

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

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

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

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

footer#pt-footer .search-form input {
    background: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--dark-color);
}

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

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

footer#pt-footer .widget ul.menu li a,
footer#pt-footer .pt-widget-menu .pt-service li a {
    position: relative;
    border: none;
    padding: 0 0 0 15px;
    display: inline-block;
    width: 100%;
}

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;
    content: '\f054';
    left: 0;
    font-size: 10px;
    top: 8px;
    font-family: "Font Awesome 5 Free";
    line-height: normal;
    font-weight: 600;
    color: var(--primary-color);


}

footer#pt-footer .wp-calendar-nav .wp-calendar-nav-prev,
footer#pt-footer .wp-calendar-nav .wp-calendar-nav-next {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 0;
}

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

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

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

/*=========*/
footer#pt-footer .pt-footer-style-1 .pt-footer-social {
    display: inline-block;
    float: right;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul {
    margin: 0;
    padding: 0
}

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

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul li a {
    color: var(--white-color);
    text-align: center;
    display: inline-block;
}

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

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

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

footer#pt-footer .pt-footer-logo {
    height: 60px;
    margin-bottom: 30px;
    width: auto;
}

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


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

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

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

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

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

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

.pt-foote-recent-post .pt-foote-recent-post-media img {
    width: 80px;
    height: 80px;
}

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

.pt-foote-recent-post .pt-foote-recent-post-info .pt-post-date {
    
    width: 100%;
    display: inline-block;
    font-family: var(--sub-title-fonts);
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 0.2em;
}

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


.pt-foote-recent-post .pt-foote-recent-post-info h6 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


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

footer#pt-footer .widget.widget_archive:first-child {
    padding-top: 30px;
}

footer#pt-footer .widget.widget_archive select,
footer#pt-footer .widget.widget_categories select.postform,
footer#pt-footer .widget form select {
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    color: var(--dark-color);
}

footer#pt-footer .widget.widget_archive select option,
footer#pt-footer .widget.widget_categories select.postform option,
footer#pt-footer .widget form select option {
    color: var(--dark-color);
}

footer#pt-footer .widget_calendar table caption {
    color: var(--white-color);
}

footer#pt-footer .widget_calendar table#wp-calendar {
    background: transparent;
}

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 .wp-block-latest-comments__comment-date {
    color: var(--white-color);
}

footer#pt-footer .wp-block-latest-posts__post-date {
    color: var(--white-color);
}

footer#pt-footer .widget .wp-block-loginout input.input {
  background: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--dark-color);
}

footer#pt-footer .widget ul li.wp-block-social-link a {
    padding: .25em;
    color: var(--white-color);
}

footer#pt-footer .widget ul li.wp-block-social-link a:before {
    display: none;
}

footer#pt-footer .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {
    background: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--dark-color);
}

footer#pt-footer .wp-block-search .wp-block-search__button {
    color: var(--dark-color);
}

footer#pt-footer .wp-block-search .wp-block-search__button:hover {
    color: var(--primary-color);
}


footer#pt-footer .widget_tag_cloud .tag-cloud-link {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}

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

footer#pt-footer .widget_calendar .calendar_wrap table th {
    background: transparent;
}


@media(max-width:1199px) {
    footer#pt-footer .pt-footer-center-block {
        padding-right: 0;
    }

    footer#pt-footer .pt-footer-logo {
        height: 45px;
    }


}

@media(max-width:1190px) {
    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-top {
        padding: 60px 0;
        padding-bottom: 10px;
    }

    footer#pt-footer .pt-footer-center-block {
        border-right: none;
    }

    footer#pt-footer .pt-footer-left-block,
    footer#pt-footer .pt-footer-center-block,
    footer#pt-footer .pt-footer-right-block {
        padding: 60px 0;
    }

    footer#pt-footer .widget .wp-block-gallery {
        margin-bottom: 0;
    }
}


@media(max-width:767px) {
    footer#pt-footer .pt-copyright-footer {
        text-align: center;
    }

    footer#pt-footer .pt-footer-style-1 .pt-footer-social {
        margin-top: 15px;
        float: none;
    }

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

    footer#pt-footer .pt-footer-center-block,
    footer#pt-footer .pt-footer-right-block {
        padding-top: 0;
        border: none;
    }

    footer#pt-footer .pt-footer-center-block {
        text-align: left;
    }

    footer#pt-footer .widget.widget-port-1 .pt-contact {
        padding: 0;
    }
     footer#pt-footer .pt-footer-logo-info .pt-footer-img{width: 25%;}
    footer#pt-footer .pt-footer-logo-info .pt-footer-description{ width: 70%; }
    footer#pt-footer .pt-footer-logo-info .pt-footer-right{display: block;
    width: 100%;
    margin-top: 30px;
    text-align: left; }
}


@media(max-width:767px) {
    footer#pt-footer .pt-footer-top {
        padding-top: 45px;
    }

    footer#pt-footer .pt-footer-left-block,
    footer#pt-footer .pt-footer-center-block,
    footer#pt-footer .pt-footer-right-block {
        padding-top: 45px;
    }

    footer#pt-footer .pt-footer-left-block,
    footer#pt-footer .pt-footer-center-block {
        padding-bottom: 0;
    }

    footer#pt-footer .pt-footer-right-block {
        padding-bottom: 30px;
    }

}


@media(max-width:576px) {
footer#pt-footer .pt-footer-logo-info .pt-footer-img{width: 100%;}
footer#pt-footer .pt-footer-logo-info .pt-footer-description{width: 100%;padding-left: 0;border: none;margin-top: 20px;}



}



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

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

.pt-section-title.pt-section-title-style-1.text-center .pt-section-sub-title:after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    border-bottom: 1px solid var(--primary-color);
}

.pt-section-title.pt-section-title-style-1 .pt-section-sub-title {
    font-family: var(--sub-title-fonts);
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 0.2em;
    margin: 0 0 10px;
    display: inline-block;
    position: relative;
    padding-left: 60px;
}

.pt-section-title.pt-section-title-style-1 .pt-section-sub-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    border-bottom: 1px solid var(--primary-color);
}

.pt-section-title.pt-section-title-style-1 .pt-section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    z-index: 9;
    color: var(--dark-color);
    padding: 0;
    margin: 0 0;
    position: relative;
    display: block;
    text-transform: capitalize;

}

.pt-section-title.pt-section-title-style-1 .pt-section-description {


    z-index: 9;
    position: relative;
    margin: 15px 0 0;
}

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

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

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

    .pt-section-title.pt-section-title-style-1.text-center {
        margin-bottom: 30px;
    }
}

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


/*================================================
Booking Form
================================================*/
.pt-booking-form {
    clear: both;
    overflow: hidden;
}

.pt-booking-form .pt-booking-field {
    position: relative;
}

.pt-booking-form .wpcf7-form-control-wrap input {
    background: var(--white-color);
    border: 1px solid var(--white-color);
    float: none;
}

.pt-booking-form .wpcf7-form-control-wrap input.wpcf7-date::-webkit-calendar-picker-indicator {
    color: var(--primary-color);
}

.pt-booking-form .wpcf7-form-control-wrap select {
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    color: var(--secondary-color);
}

.pt-booking-form .wpcf7-form-control-wrap select::placeholder {}

.pt-booking-form .pt-booking-block .pt-booking-field p, .pt-booking-form .pt-booking-block .pt-booking-submit p { margin-bottom: 0;}

.pt-booking-form .pt-booking-block {
    float: left;
    width: 20%;
    padding: 0 15px;
}

.pt-booking-form .pt-booking-label label {
    margin-bottom: 12px;
}

.pt-booking-form .pt-booking-submit input[type="submit"] {
    width: 100%;
    display: block;
    margin-top: 40px;
}

.pt-booking-form .pt-booking-submit .wpcf7-spinner {
    display: none !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    text-align: center;
}

.pt-booking-full .pt-booking-form .pt-booking-block {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
}

.pt-booking-full .pt-booking-form .pt-booking-submit input[type="submit"] {
    margin-top: 10px;
}

.pt-booking-full .pt-booking-block.check-bt {
    margin-bottom: 0;
}

.pt-booking-form.pt-label-hide .pt-booking-submit input[type="submit"]{margin-top: 0;}


@media(max-width:1024px) {
    .pt-booking-form .pt-booking-block {
        width: 33.3%;
    }

    .pt-booking-block.adults {
        margin-bottom: 30px;
    }

}

@media(max-width:767px) {
    .pt-booking-form .pt-booking-block {
        width: 50%;
    }

    .pt-booking-block.adults,
    .pt-booking-block.children {
        margin-top: 30px;
    }

    .pt-booking-form .pt-booking-block.check-bt {
        width: 100%;
    }

    .pt-booking-form .pt-booking-submit input[type="submit"] {
        margin-top: 10px;
    }
}

@media(max-width:479px) {
    .pt-booking-form .pt-booking-block {
        width: 100%;
    }

    .pt-booking-block.departure {
        margin-top: 20px;
    }

    .pt-booking-block.adults {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .pt-booking-block.children {
        margin-top: 0;
        margin-bottom: 20px;
    }
}


/*================================================
OWL Carousel
================================================*/
.owl-carousel .owl-nav.disabled {
    display: none;
}

.owl-carousel .owl-nav {
    position: relative;
    cursor: pointer;
    z-index: 99;
    margin-top: 30px;
    text-align: center;
}

.owl-carousel .owl-nav button.owl-prev {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    line-height: 1;
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding: 0 !important;
    margin: 0 10px;
    background: var(--primary-color);
    color: var(--white-color);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    border: 2px solid transparent;position: relative;
}

.owl-carousel .owl-nav button.owl-next {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    line-height: 1;
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding: 0 !important;
    margin: 0 10px;
    background: var(--primary-color);
    color: var(--white-color);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    border: 2px solid transparent;position: relative;
}



.owl-carousel .owl-nav button:before{content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease;  }
.owl-carousel .owl-nav button:hover:before {
        height: calc(100% + 10px);
    width: calc(100% + 10px);

    left: -5px;
    top: -5px;
    
    border-color: var(--primary-color);
}

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

.owl-carousel .owl-nav button span {
    display: inline-block;
    font-size: 32px;
    line-height: 36px;
}

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

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

.owl-carousel .owl-dots .owl-dot {
    box-shadow: none;
    outline: none;
    background: var(--dark-color);
    opacity: 0.4;
    display: inline-block;
    padding: 0;
    margin: 0px 5px;
    height: 18px;
    width: 18px;
    border: none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    cursor: pointer;border: 2px solid transparent;position: relative;
}
.owl-carousel .owl-dots .owl-dot:before{content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--white-color);
    transition: all 0.5s ease;  }
.owl-carousel .owl-dots .owl-dot:hover:before {
        height: calc(100% + 8px);
    width: calc(100% + 8px);

    left: -4px;
    top: -4px;
    
    border-color: var(--primary-color);
}

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

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

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

/* nav */
.owl-carousel .owl-nav button.owl-next i,
.owl-carousel .owl-nav button.owl-prev i {
    letter-spacing: 0;
}

/*================================================
Video Popup
================================================*/
.pt-popup-video-block .pt-video-icon {
    text-align: center;
}

.pt-popup-video-block .pt-video-icon a {
    margin: auto;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 28px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    display: inline-block;
    background-color: var(--white-color);
    border-radius: 100%;
        border: 2px solid transparent;
}

.pt-popup-video-block .pt-video-icon a:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height:  calc(100% - 8px);
    border: 1px solid var(--primary-color);
    border-radius: 100%;
    transition: all 0.5s ease;
}

.pt-popup-video-block .pt-video-icon a:hover:before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
    border-color: var(--white-color);
}

.pt-popup-video-block .pt-video-icon a:hover {
    background:var(--primary-color);
    color: var(--white-color);
}

.pt-popup-video-block {
    width: 30%;
    position: relative;
    margin: 0 auto;
    height: 260px;


}

.pt-popup-video-block .pt-video-icon {
    display: inline-block;

    position: relative;
    top: 50%;
    left: 50%;
    font-size: 14px;
    text-transform: uppercase;
    transform: translateY(-50%) translateX(-50%);

}

.mfp-wrap .mfp-close {
    padding: 0;
    top: -50px;
    font-size: 24px;
    opacity: 1;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    position: absolute;
    letter-spacing: 0;
}

.mfp-wrap .mfp-close:hover {
    background: var(--dark-color);
}

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


/*================================================
Fancy Box
================================================*/
.pt-fancy-box.pt-style-1 {
    background: var(--white-color);
    padding: 60px 30px;
    transition: all 0.5s ease;
}

.pt-fancy-box.pt-style-1 .pt-icon {
    margin-bottom: 10px;
}

.pt-fancy-box.pt-style-1 .pt-icon i {
    font-size: 72px;
    line-height: 80px;
    color: var(--primary-color);
}

.pt-fancy-box.pt-style-1 .pt-fancybox-description {
    margin-bottom: 0;
    margin-top: 10px;
}

.pt-fancy-box.pt-style-1:hover {
    transform: translateY(-10px);
}

/****style 2*****/
.pt-fancy-box.pt-style-2 .pt-fancy-box-top {
    display: flex;
    align-items: center;
}

.pt-fancy-box.pt-style-2 .pt-icon {
    font-size: 56px;
    line-height: 64px;
    margin-right: 30px;
    position: relative;
    color: var(--white-color);
}

.pt-fancy-box.pt-style-2 .pt-icon i {
    position: relative;
}

.pt-fancy-box.pt-style-2 .pt-icon:before {
    position: absolute;
    content: "";
    right: -10px;
    top: -5px;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 100%;
    transition: all 0.5s ease;
}

.pt-fancy-box.pt-style-2:hover .pt-icon:before {
    width: 40px;
    height: 40px;
}

.pt-fancy-box.pt-style-2 .pt-fancy-box-title {
    font-size: 26px;
    line-height: 34px;
    color: var(--white-color);
}

.pt-fancy-box.pt-style-2 .pt-fancybox-description {
    color: var(--white-color);
    margin-top: 10px;
    margin-bottom: 0;
}
.pt-fancy-box.pt-style-3 { padding:45px 30px; position: relative;}
.pt-fancy-box.pt-style-3 .pt-icon {
    font-size: 56px;
    line-height: 64px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.pt-fancy-box.pt-style-3 .pt-right-icon{ position: absolute;width: 100%;text-align: center;font-size: 150px;line-height: 158px;left: 0; top: 50%;transform: translateY(-50%);color: var(--secondary-color);opacity: 0.05; }

.pt-fancy-box.pt-style-3 .pt-fancy-box-info{ position: relative; }
.pt-fancy-box.pt-style-3 .pt-fancy-box-title {
    font-size: 26px;
    line-height: 34px;

}
.pt-fancy-box.pt-style-3 .pt-fancybox-description {
   margin-bottom: 0;
    margin-top: 10px;
 
}





/*================================================
Room Box
================================================*/

/****style 1*****/
.pt-room-box.pt-style-1 {
    background: var(--white-color);
    padding: 30px;
    margin-bottom: 30px;
}
.pt-room-box-slider .pt-room-box.pt-style-1{ margin-bottom: 0; }

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

.pt-room-box.pt-style-1 .pt-room-title {
    font-size: 28px;
    line-height: 36px;
}

.pt-room-box.pt-style-1 .pt-room-price-main {
    color: var(--primary-color);
    margin-top: 5px;
    margin-bottom: 20px;
    display: block;
    text-transform: capitalize;
        font-size: 18px;
        line-height: 26px;
}

.pt-room-box.pt-style-1 .pt-room-img {
    margin-bottom: 30px;
    overflow: hidden;
}

.pt-room-box.pt-style-1 .pt-room-img img {
    transition: all 0.5s ease;
    width: 100%;
}

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

/****style 2*****/
.pt-room-box.pt-style-2{margin-bottom: 30px;}
.pt-room-box-slider .pt-room-box.pt-style-2{ margin-bottom: 0; }
.pt-room-box.pt-style-2 .pt-room-img {
    overflow: hidden;
}

.pt-room-box.pt-style-2 .pt-room-img img {
    transition: all 0.5s ease;
    width: 100%;
}

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

.pt-room-box.pt-style-2 .pt-room-info {
    background: var(--grey-color);
    padding: 45px 30px;
    position: relative;
}

.pt-room-box.pt-style-2 .pt-room-price {
    position: absolute;
    content: "";
    right: 30px;
    top: -55px;
    width: 110px;
    height: 110px;
    text-align: center;
    background: var(--white-color);
    border-radius: 100%;
    padding-top: 26px;

    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: var(--primary-color);
}

.pt-room-box.pt-style-2 .pt-room-price .pt-room-day {
    display: block;
    font-size: 16px;
    color: var(--dark-color);
    text-transform: capitalize;
    line-height:24px;
}

.pt-room-box.pt-style-2 .pt-room-icons ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pt-room-box.pt-style-2 .pt-room-icons li {
    display: inline-block;
    margin-right: 20px;
}

.pt-room-box.pt-style-2 .pt-room-icons li i {
    font-size: 32px;
    line-height: 40px;
    color: var(--primary-color);
}

.pt-room-box.pt-style-2 .pt-room-title {
    font-size: 28px;
    line-height: 36px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/****Style Listing*****/

.pt-blog-listing .pt-room-box.pt-style-2 {
    display: flex;
    align-items: center;
    background: var(--grey-color);
}

.pt-blog-listing .pt-room-box.pt-style-2 .pt-room-price {
    right: 30px;

}

.pt-blog-listing .pt-room-box.pt-style-2 .pt-room-img {
    width: 45%;
}

.pt-blog-listing .pt-room-box.pt-style-2 .pt-room-info {
    width: 55%;
    padding: 45px;
}

/****style 3*****/
.pt-room-box.pt-style-3{margin-bottom: 30px;}
.pt-room-box-slider .pt-room-box.pt-style-3{ margin-bottom: 0; }
.pt-room-box.pt-style-3 .pt-room-img {
    overflow: hidden;
}

.pt-room-box.pt-style-3 .pt-room-img img {
    transition: all 0.5s ease;
    width: 100%;
}

.pt-room-box.pt-style-3:hover .pt-room-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pt-room-box.pt-style-3 .pt-room-info {
    background: var(--white-color);
    padding: 45px 30px;
    padding-top: 60px;
    position: relative;
}

.pt-room-box.pt-style-3 .pt-room-info .pt-room-icons{ margin-top: -90px;text-align: center;background: var(--primary-color);
    padding: 10px 0; }

.pt-room-box.pt-style-3 .pt-room-price {
  
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
     color: var(--dark-color);
}
.pt-room-box.pt-style-3 .pt-room-price span{ display: inline-block; }

.pt-room-box.pt-style-3 .pt-room-price .pt-room-day {
    display: inline-block;
    font-size: 16px;
    color: var(--dark-color);
    text-transform: capitalize;
    line-height:24px;
    padding-left: 5px;
}

.pt-room-box.pt-style-3 .pt-room-icons ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;justify-content: center;padding: 0 30px;
    justify-content: space-between;
}

.pt-room-box.pt-style-3 .pt-room-icons li {
    display: inline-block;
    
}

.pt-room-box.pt-style-3 .pt-room-icons li i {
    font-size: 32px;
    line-height: 40px;
    color: var(--white-color);
}

.pt-room-box.pt-style-3 .pt-room-title {
    font-size: 28px;
    line-height: 36px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.pt-room-box.pt-style-3 p{ margin-bottom: 15px; }

.pt-room-box.pt-style-4 .pt-room-img img{width: 100%;}

.pt-room-box.pt-style-4 .pt-room-img img {
    transition: all 0.5s ease;
    width: 100%;
}

.pt-room-box.pt-style-4:hover .pt-room-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pt-room-box.pt-style-4 .pt-room-img {
    overflow: hidden;
        position: relative;
}
.pt-room-box.pt-style-4 .pt-room-info{ position: absolute;bottom: -48px;width: 100%;
background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .1) 20%, rgb(0 0 0) 90%);padding: 30px;transition: all 0.5s ease;  }

.pt-room-box.pt-style-4:hover .pt-room-img .pt-room-info{ bottom: 0; }


.pt-room-box.pt-style-4 .pt-room-title {
    font-size: 32px;
    line-height: 40px;
    margin-top: 5px;
    margin-bottom: 15px;
    color: var(--white-color);
}
.pt-room-box.pt-style-4 .pt-room-title a{ color: var(--white-color); }

.pt-room-box.pt-style-4 .pt-room-price {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--white-color);
    text-transform: capitalize;
}
.pt-room-box.pt-style-4 .pt-room-price span {
    display: inline-block;
}
.pt-room-box.pt-style-4 .pt-room-price .pt-room-day {
    display: inline-block;
    padding-left: 5px;
}

.pt-room-box.pt-style-4 .pt-room-icons{ opacity: 0;transition: all 0.5s ease; }
.pt-room-box.pt-style-4:hover .pt-room-icons{ opacity: 1; }

.pt-room-box.pt-style-4 .pt-room-icons ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    
   
}

.pt-room-box.pt-style-4 .pt-room-icons li {
   margin-right: 10px;display: inline-flex;align-items: center;
    
}

.pt-room-box.pt-style-4 .pt-room-icons li i {
    font-size: 20px;
    line-height: 28px;
    color: var(--white-color);
}
.pt-room-box.pt-style-4 .pt-room-icons .pt-value{ color: var(--white-color); font-size: 14px;    margin-left: 5px;}


.pt-room-box.pt-style-5 .pt-room-img img{width: 100%;}

.pt-room-box.pt-style-5 .pt-room-img img {
    transition: all 0.5s ease;
    width: 100%;
}

.pt-room-box.pt-style-5:hover .pt-room-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pt-room-box.pt-style-5 .pt-room-img {
    overflow: hidden;
        position: relative;
}
.pt-room-box.pt-style-5 .pt-room-info{ padding: 30px;background: var(--white-color); position: relative;}
.pt-room-box.pt-style-5 .pt-room-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.pt-room-box.pt-style-5 p{margin-bottom: 20px;}


.pt-room-box.pt-style-5 .pt-room-price {
    position: absolute;
   right: 30px;top: 40px;
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-color);
    text-transform: capitalize;
}
.pt-room-box.pt-style-5 .pt-room-price span {
    display: inline-block;
}
.pt-room-box.pt-style-5 .pt-room-price .pt-room-day {
    display: inline-block;
    padding-left: 5px;
}
.pt-room-box.pt-style-5 .pt-room-icons ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pt-room-box.pt-style-5 .pt-room-icons li {
   margin-right: 10px;display: inline-flex;align-items: center;
}
.pt-room-box.pt-style-5 .pt-room-icons li i {
    font-size: 22px;
    line-height: 30px;
    color: var(--primary-color);
}
.pt-room-box.pt-style-5 .pt-room-icons .pt-value{  font-size: 14px;    margin-left: 5px;}







.pt-room-box.pt-style-6 .pt-room-img img{width: 100%;}

.pt-room-box.pt-style-6 .pt-room-img img {
    transition: all 0.5s ease;
    width: 100%;
}

.pt-room-box.pt-style-6:hover .pt-room-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pt-room-box.pt-style-6 .pt-room-img {
    overflow: hidden;
        position: relative;
}
.pt-room-box.pt-style-6 .pt-room-info{ padding: 30px;background:transparent; position: relative;}
.pt-room-box.pt-style-6 .pt-room-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 10px;
    color: var(--white-color);
}


.pt-room-box.pt-style-6  .pt-room-price {
    font-size: 18px;
    line-height: 26px;
    color: var(--white-color);
    text-transform: capitalize;
}

.pt-room-box.pt-style-6  .pt-room-price .pt-room-day {
    display: inline-block;
    padding-left: 5px;
}
.pt-room-box.pt-style-6  .pt-room-icons ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pt-room-box.pt-style-6  .pt-room-icons li {
   margin-right: 10px;display: inline-flex;align-items: center;
}
.pt-room-box.pt-style-6  .pt-room-icons li i {
    font-size: 22px;
    line-height: 30px;
    color: var(--white-color);
}
.pt-room-box.pt-style-6  .pt-room-icons .pt-value{  font-size: 14px;    margin-left: 5px; color: var(--white-color);}












@media(max-width:767px) {
.pt-blog-listing .pt-room-box.pt-style-2{display: block;}
.pt-blog-listing .pt-room-box.pt-style-2 .pt-room-img{width: 100%;}
.pt-blog-listing .pt-room-box.pt-style-2 .pt-room-info{width: 100%;padding: 45px 30px 30px;}

}
@media(max-width:479px) {
.pt-room-box.pt-style-5 .pt-room-price{position: relative;top: 0;right: 0;}


}



/*+++++++++++++++++++++++++++++++++++++++++++++++
Portfolio
++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-portfoliobox.pt-portfoliobox-style-1:before{ content: "";position: absolute;width: 70%;height: 70%; left: 0;right: 0;margin: 0 auto;bottom: 0;background: var(--grey-color); }
.pt-portfoliobox-1 {
   
    overflow: hidden;
    position: relative;
}

.pt-portfoliobox-1 .pt-portfolio-img   {
    position: relative;
    overflow: hidden;
}

.pt-portfoliobox-1 .pt-portfolio-img  img {
    width: 100%;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.pt-portfoliobox-1:hover .qwords-portfolio-img img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.pt-portfoliobox-1 .pt-portfolio-info {
    padding: 30px 0 0;text-align: center;
    opacity: 0;transition: all 0.5s ease;transform: translateY(-30px);
}


.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-item.active.center .pt-portfolio-info {opacity: 1;transform: translateY(0px);}

.pt-portfoliobox-1 .pt-portfolio-info .pt-portfolio-style-1-title {
    font-size: 32px;line-height: 40px;
   margin-bottom: 5px;
}



.pt-portfoliobox-1 .pt-portfolio-info p {
    margin-bottom: 0;
}

.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav{  width: 70%;margin: 0 auto;display: flex;justify-content: space-between; padding: 0 45px;}
.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav button{    transform: translateY(-50px);}

.pt-portfolio-info-box + img{ width: 100%; }
.pt-portfolio-info-box{ display: flex;align-items: center;border-bottom: 1px solid var(--grey-color);  padding-bottom: 20px;
    margin-bottom: 30px;
}
.pt-portfolio-info-box .left-info{ width: 75%; }
.pt-portfolio-info-box .pt-porfolio-info-title{ font-size: 32px;line-height: 40px;    margin-bottom: 15px; }
.pt-portfolio-info-box .pt-rating-stars{ padding-right: 20px;display: inline-block; }
.pt-portfolio-info-box .pt-rating-stars i{ font-size: 14px;color:#ffc122; }
.pt-portfolio-info-box .right-info{ width: 25%;    text-align: right; }
.pt-portfolio-info-box .pt-price-form{    color: var(--dark-color);
    font-size: 20px;
    line-height: 28px;}
.pt-portfolio-info-box .pt-price-form-price{color: var(--primary-color);
    text-transform: capitalize;
    font-size: 18px;
    line-height: 26px;margin-top: 5px;}
.pt-portfolio-info-box .pt-portfolio-details{ display: flex;align-items: center; }
.pt-portfolio-info-box .pt-icon-box {    margin-top: 5px;  }
.pt-portfolio-info-box .pt-icon-box .pt-icon{ margin-right: 5px; font-size: 28px;
    line-height: 36px;vertical-align: middle;    color: var(--dark-color);}
.pt-portfolio-info-box .pt-icon-box .pt-icon i { color: var(--primary-color); }
.pt-portfolio-info-box .pt-icon-box span.pt-value{ margin-right: 15px; }


@media(max-width:767px) {
.pt-portfoliobox.pt-portfoliobox-style-1:before{width: 100%;}
.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav{width: 100%;}
.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav{padding: 0 30px;}

}
@media(max-width:767px) {
.pt-portfolio-info-box{display: block;}
.pt-portfolio-info-box .left-info{width: 100%;}
.pt-portfolio-info-box .right-info{width: 100%;text-align: left;margin-top: 15px;}
.pt-portfolio-info-box .pt-portfolio-details{ display: block; }
.pt-portfolio-info-box .pt-icon-box{ margin-top: 15px; }
}

@media(max-width:576px) {
.pt-portfoliobox.pt-portfoliobox-style-1 .owl-carousel .owl-nav { display: none; }
.pt-portfoliobox.pt-portfoliobox-style-1:before {display: none;}
.pt-portfoliobox-1 .pt-portfolio-info{ background: var(--grey-color);padding: 30px 0;transform: none;opacity: 1; }


}

/*+++++++++++++++++++++++++++++++++++++++++++++++
Process Step
++++++++++++++++++++++++++++++++++++++++++++++++*/
.pt-process-step.pt-process-style-1 {
    padding: 45px;
    position: relative;
    overflow: hidden;
    background: var(--grey-color);

}

.pt-process-style-1 .pt-process-media {
    position: relative;
    margin-bottom: 15px;
}

.pt-process-style-1 .pt-process-media .pt-process-img img {
    border-radius: 100%;
    width: 225px;
    height: 225px;
    border: 15px solid #fff;
}

.pt-process-style-1 .pt-process-media .pt-process-icon i {
    font-size: 72px;
    line-height: 80px;
    color: var(--primary-color);

    display: inline-block;
    transition: all 0.5s ease;
}

.pt-process-style-1:hover .pt-process-media .pt-process-icon i {
    transform: rotateY(180deg);
}

.pt-process-style-1 .pt-process-media .pt-process-number {
    position: absolute;
    top: 0;
    right: -10px;
    font-size: 56px;
    line-height: 64px;
    text-align: center;
    opacity: 0.1;
    -webkit-text-stroke-width: 2px;
}

.pt-process-style-1 .pt-process-title {
    font-size: 28px;
    line-height: 36px;
}


.pt-process-style-1 .pt-process-description p {
    margin-bottom: 20px;
    margin-top: 10px;

}

/****style 2*****/
.pt-process-step.pt-process-style-2 {
    padding: 45px;
    position: relative;
    overflow: hidden;
   border: 1px solid rgba(0,0,0,.05);

}

.pt-process-style-2 .pt-process-media {
    position: relative;
    margin-bottom: 10px;
}

.pt-process-style-2 .pt-process-media .pt-process-img img {
    border-radius: 100%;
    width: 225px;
    height: 225px;
    border: 15px solid #fff;
}

.pt-process-style-2 .pt-process-media .pt-process-icon i {
    font-size: 64px;
    line-height: 72px;
    color: var(--primary-color);

    display: inline-block;
    transition: all 0.5s ease;
}

.pt-process-style-2:hover .pt-process-media .pt-process-icon i {
    transform: rotateY(180deg);
}

.pt-process-style-2 .pt-process-media .pt-process-number {
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 100px;
    line-height: 108px;
    text-align: center;
    opacity: 0.08;
    -webkit-text-stroke-width: 4px;
}

.pt-process-style-2 .pt-process-title {
    font-size: 28px;
    line-height: 36px;
}


.pt-process-style-2 .pt-process-description p {
    margin-bottom: 0;
    margin-top: 10px;

}



@media(max-width:576px) {
    .pt-process-step.pt-process-style-1 {
        padding: 30px;
    }
     .pt-process-step.pt-process-style-2 {
        padding: 30px;
    }

}


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

.pt-testimonial-box.pt-style-1 {
    background: var(--grey-color);
    padding: 60px 45px;

}


.pt-testimonial-box.pt-style-1 .pt-testimonial-media {
    display: flex;
    position: relative;

    align-items: center;
}

.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-img img {
    width: 80px;
    height: 80px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}


.pt-testimonial-box.pt-style-1 .pt-testmonial-title {
    font-size: 28px;
    line-height: 36px;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-meta span {
    color: var(--primary-color);
    letter-spacing: 0.2em;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    font-family: var(--sub-title-fonts);
    text-transform: uppercase;
}

.pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-icon i {
    color: transparent;
    font-size: 64px;
    line-height: 72px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.08;
    -webkit-text-stroke: 2px var(--primary-color);
}

.pt-testimonial-withoutbg .pt-testimonial-box.pt-style-1{background: transparent;padding: 0;color: var(--white-color);}
.pt-testimonial-withoutbg .pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-meta span{  color: var(--white-color);}
.pt-testimonial-withoutbg .owl-carousel .owl-dots{ text-align: right;margin-top: -60px;margin-bottom: 60px; }
.pt-testimonial-withoutbg .owl-carousel .owl-dots .owl-dot:before {     border: 1px solid var(--dark-color); }
.pt-testimonial-withoutbg .owl-carousel .owl-dots .owl-dot.active:before{  border: 1px solid var(--white-color); }
.pt-testimonial-withoutbg .pt-testimonial-box.pt-style-1 .pt-testimonial-media .pt-testimonial-icon i{ display: none; }









/*====style 2=====*/

.pt-testimonial-box.pt-style-2 .pt-testimonial-content {
    background: var(--white-color);
    padding: 60px 45px;
    position: relative;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-content:before {
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    left: 30px;
    bottom: -30px;
    border: solid transparent;
    border-top-color: var(--white-color);
    border-width: 15px;
}

.pt-testimonial-box.pt-style-2 .pt-head-testimonial-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-content .pt-testimonial-icon i {
    color:transparent;
    font-size: 52px;
    line-height: 60px;
    position: absolute;
    right: 30px;
    top: 45px;
    z-index: 1;
   opacity: 0.08;
    -webkit-text-stroke: 2px var(--primary-color);
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-content .pt-testimonial-description {
    margin-bottom: 0;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-media {
    margin-top: 45px;
    display: flex;
    position: relative;

    align-items: center;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-img {
    margin-right: 15px;
}

.pt-testimonial-box.pt-style-2 .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-2 .pt-testmonial-title {
    font-size: 28px;
    line-height: 36px;
}

.pt-testimonial-box.pt-style-2 .pt-testimonial-media .pt-testimonial-meta span {
    color: var(--primary-color);
    letter-spacing: 0.2em;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    font-family: var(--sub-title-fonts);
    text-transform: uppercase;
}

/*====style 3=====*/
.pt-testimonial-box.pt-style-3 .pt-head-testimonial-title{ font-size: 26px;
    line-height: 34px; margin-bottom: 5px; }
.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%;
    display: inline-block;
    margin-bottom: 15px;
}

.pt-testimonial-box.pt-style-3 .pt-testmonial-title {
    font-size: 28px;
    line-height: 36px;
}
.pt-testimonial-box.pt-style-3 .pt-testimonial-description{ margin-bottom:20px;padding: 0 30px; }
.pt-testimonial-box.pt-style-3 .pt-testimonial-meta span {
    color: var(--primary-color);
    letter-spacing: 0.2em;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    font-family: var(--sub-title-fonts);
    text-transform: uppercase;

}

/*====style 4=====*/



.pt-testimonial-box.pt-style-4 {margin-top: 60px;}
.pt-testimonial-box.pt-style-4 .pt-testimonial-content {
    background: var(--white-color);
    padding: 60px 45px;
    padding-bottom: 30px;
    position: relative;
    
     box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  

}

.pt-testimonial-box.pt-style-4 .pt-testimonial-content:before {
   content: "";
    height: 15px;
    width: 15px;
    position: absolute;
    left: 30px;
    bottom: -8px;
    border-left: 1px solid var(--white-color);
    border-top: 1px solid var(--white-color);
    transform: rotate(225deg);
    background: var(--white-color);
}

.pt-testimonial-box.pt-style-4 .pt-head-testimonial-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
}
.pt-testimonial-box.pt-style-4 .pt-testimonial-content .pt-testimonial-icon{margin-top: -90px;margin-bottom: 20px;}

.pt-testimonial-box.pt-style-4 .pt-testimonial-content .pt-testimonial-icon i {
    color:transparent;
    font-size: 24px;
    line-height: 60px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    z-index: 1;
   opacity: 1;
    -webkit-text-stroke: 1px var(--white-color);
}



.pt-testimonial-box.pt-style-4 .pt-testimonial-content .pt-testimonial-description {
    margin-bottom: 0;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-media {
    margin-top: 45px;
    display: flex;
    position: relative;

    align-items: center;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-media .pt-testimonial-img {
    margin-right: 15px;
}

.pt-testimonial-box.pt-style-4 .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-4 .pt-testmonial-title {
    font-size: 28px;
    line-height: 36px;
}

.pt-testimonial-box.pt-style-4 .pt-testimonial-media .pt-testimonial-meta span {
    color: var(--primary-color);
    letter-spacing: 0.2em;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    font-family: var(--sub-title-fonts);
    text-transform: uppercase;
}


@media(max-width:1024px) {
.pt-testimonial-box.pt-style-3 .pt-testimonial-description{padding: 0; }
}

@media(max-width:767px) {
    .pt-testimonial-box.pt-style-2 .pt-testimonial-content {
        padding: 30px;
    }

}

@media(max-width:576px) {
    .pt-testimonial-box.pt-style-1 {
        padding: 30px;
    }

}

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

.pt-blog.pt-blog-single .pt-blog-contain {
    text-align: center;
    padding: 45px 60px;
}

.pt-blog.pt-blog-single .pt-blog-post .pt-post-meta ul {
    justify-content: center;
}

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


.pt-blog.pt-blog-listing .pt-blog-post {
    display: flex;
    align-items: center;
}

.pt-blog.pt-blog-listing .pt-post-media img {
    width: 335px;
    height: 186px;
    object-fit: cover;
}

.pt-blog.pt-blog-listing .pt-blog-contain .pt-blog-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 0;
}


@media(max-width:576px) {
    .pt-blog.pt-blog-listing .pt-blog-post {
        display: block;
    }

    .pt-blog.pt-blog-listing .pt-post-media img {
        width: 100%;
        height: auto;
    }

}


/*================================================
Contact Form
================================================*/


.pt-contactform .wpcf7-form-control-wrap input,
.pt-contactform .wpcf7-form-control-wrap select,
.pt-contactform textarea {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    margin-bottom: 20px;
}

.pt-contactform .wpcf7-form-control-wrap input:hover,
.pt-contactform .wpcf7-form-control-wrap input:focus,
.pt-contactform .wpcf7-form-control-wrap select:hover,
.pt-contactform .wpcf7-form-control-wrap select:focus,
.pt-contactform textarea:hover,
.pt-contactform textarea:focus {
    border-color: var(--primary-color);
}

.pt-contactform .wpcf7-form-control-wrap input::placeholder,
.pt-contactform textarea::placeholder {
    color: var(--dark-color);
}

.pt-contactform textarea {
    height: 100px;
}

.pt-contactform input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}


.pt-primaryform .pt-contactform input.wpcf7-submit {
    background: var(--dark-color);
}

.pt-white-form .pt-contactform .wpcf7-form-control-wrap input,
.pt-white-form .pt-contactform .wpcf7-form-control-wrap select,
.pt-white-form .pt-contactform textarea {
    background: var(--white-color);
    border: 1px solid var(--white-color);
    margin-bottom: 20px;
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
}

/*================================================
Counter
================================================*/
.pt-counter.pt-style-1 {
    position: relative;
}

.pt-counter.pt-style-1 .pt-counter-top {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.pt-counter.pt-style-1 .pt-counter-top i {
    font-size: 42px;
    line-height: 50px;
    margin-right: 15px;
    color: var(--primary-dark-color);
}

.pt-counter.pt-style-1 .pt-counter-num-prefix .timer {
    font-size: 42px;
    line-height: 50px;
    display: inline-block;
    font-family: var(--body-fonts);
    font-weight: 500;
}

.pt-counter.pt-style-1 .pt-counter-num-prefix .pt-counter-prefix {
    font-size: 42px;
    line-height: 50px;
    color: var(--dark-color);
    font-family: var(--body-fonts);
    font-weight: 500;
}

.pt-counter.pt-style-1 .pt-counter-title {
    font-size: 22px;
    line-height: 30px;
}

.pt-counter.pt-style-1 .pt-counter-description {
    margin-bottom: 0;
}


/*====style 2=====*/
.pt-counter.pt-style-2 {
    background: var(--grey-color);
    padding: 45px;
    padding-top: 30px;
}

.pt-counter.pt-style-2 .pt-counter-icon {
    font-size: 112px;
    line-height: 120px;
    position: absolute;
    left: 15px;
    top: 15px;
   opacity: 0.06;
    color: var(--primary-color);
}

.pt-counter.pt-style-2 .pt-counter-num-prefix {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(25, 19, 11, 0.07);
    margin-bottom: 15px;
}

.pt-counter.pt-style-2 .pt-counter-num-prefix .timer {
    font-size: 52px;
    line-height: 60px;
    display: inline-block;
        font-family: var(--body-fonts);
    font-weight: 500;
}

.pt-counter.pt-style-2 .pt-counter-num-prefix .pt-counter-prefix {
    font-size: 52px;
    line-height: 60px;
    color: var(--dark-color);
       font-family: var(--body-fonts);
    font-weight: 500;
}

.pt-counter.pt-style-2 .pt-counter-description {
    font-size: 18px;
}

.pt-counter.pt-style-2 .pt-counter-description {
    font-family: var(--sub-title-fonts);
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0;
    color: var(--primary-color);
}

.pt-icon-top .pt-counter.pt-style-2 {
    background: transparent;
    padding: 0;
}

.pt-icon-top .pt-counter.pt-style-2 .pt-counter-icon {
    position: relative;
    margin-bottom: 30px;
    font-size: 80px;
    line-height: 88px;
    opacity: 1;
    color: var(--white-color);
}

.pt-icon-top .pt-counter.pt-style-2 .pt-counter-num-prefix {
    padding: 0;
    border: none;
}
.pt-counter.pt-style-3 .pt-counter-icon {
  
    margin-bottom: 15px;
    font-size: 80px;
    line-height: 88px;
  
}
.pt-counter.pt-style-3 .pt-counter-num-prefix {

    margin-bottom: 10px;
}
.pt-counter.pt-style-3 .pt-counter-num-prefix .timer {
    font-size: 52px;
    line-height: 60px;
    display: inline-block;
    font-family: var(--body-fonts);
    font-weight: 500;
}
.pt-counter.pt-style-3 .pt-counter-num-prefix .pt-counter-prefix {
    font-size: 52px;
    line-height: 60px;
    color: var(--dark-color);
    font-family: var(--body-fonts);
    font-weight: 500;
}

.pt-counter.pt-style-3 .pt-counter-description {
    font-family: var(--sub-title-fonts);
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0;
    color: var(--primary-color);
}





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

.pt-service-box.pt-service-box-style-1 {
    position: relative;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    overflow: hidden;
    text-align: center;
}

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

.pt-service-box.pt-service-box-style-1 .pt-service-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: var(--primary-color);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    opacity: 0;
}

.pt-service-box.pt-service-box-style-1:hover .pt-service-img:before {
    opacity: 0.9;
}

.pt-service-box.pt-service-box-style-1 .pt-service-info {
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: inline-block;
    margin: 0px;
    z-index: 9;
    transform: translateY(calc(130px + 1em));
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pt-service-box.pt-service-box-style-1 .pt-service-info .pt-service-icon {
    margin-bottom: 10px;
}

.pt-service-box.pt-service-box-style-1 .pt-service-info .pt-service-icon i {
    font-size: 72px;
    line-height: 80px;
    display: inline-block;
    text-align: center;
    color: var(--white-color);
}

.pt-service-box.pt-service-box-style-1 .pt-service-info .pt-service-title {
    color: var(--white-color);
}

.pt-service-box.pt-service-box-style-1 .pt-service-info p {
    margin-bottom: 20px;
    margin-top: 10px;
    color: var(--white-color);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pt-service-box.pt-service-box-style-1 .pt-service-info .pt-btn-container a {
    opacity: 0;
    color: var(--white-color);
}

.pt-service-box.pt-service-box-style-1:hover .pt-service-info p,
.pt-service-box.pt-service-box-style-1:hover .pt-service-info .pt-btn-container a {
    opacity: 1;
}

.pt-service-box.pt-service-box-style-1 .pt-btn-container .pt-button-link:after,
.pt-service-box.pt-service-box-style-1 .pt-btn-container .pt-button-link:before {
    background: var(--white-color);
}

.pt-service-box.pt-service-box-style-1:hover .pt-service-info {
    transform: translateY(-22%);
}
.pt-service-box.pt-service-box-style-2 .pt-service-info .pt-service-icon {
    margin-bottom: 10px;position: relative;display: inline-block;
}
.pt-service-box.pt-service-box-style-2 .pt-service-info .pt-service-icon:before {
    position: absolute;
    content: "";
    left: -20px;
    top: -5px;
    width: 50px;
    height: 50px;
    background: var(--grey-color);
    border-radius: 100%;
    transition: all 0.5s ease;
}
.pt-service-box.pt-service-box-style-2:hover .pt-service-info .pt-service-icon:before {
  
    left: -30px;
  
}
.pt-service-box.pt-service-box-style-2 .pt-service-info .pt-service-icon i {
    font-size: 72px;
    line-height: 80px;
    display: inline-block;
    text-align: center;
    color: var(--primary-color);position: relative;
}
.pt-service-box.pt-service-box-style-2 .pt-service-info p {
    margin-bottom: 20px;
    margin-top: 10px;
}

.pt-service-box.pt-service-box-style-3{ padding:45px 30px;background: var(--white-color); }
.pt-service-box.pt-service-box-style-3 .pt-service-info .pt-service-icon {
    margin-bottom: 10px;position: relative;display: inline-block;
}

.pt-service-box.pt-service-box-style-3 .pt-service-info .pt-service-icon i {
    font-size: 72px;
    line-height: 80px;
    display: inline-block;
    text-align: center;
    color: var(--primary-color);position: relative;
}
.pt-service-box.pt-service-box-style-3 .pt-service-info p {
    margin-bottom: 20px;
    margin-top: 10px;
}


.pt-service-box.pt-service-box-style-4 {
    position: relative;
    overflow: hidden;
}
.pt-service-box.pt-service-box-style-4 .pt-service-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.5s ease;
}

.pt-service-box.pt-service-box-style-4 .pt-service-info{
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 15px;

    transition: all 0.5s ease;
}
.pt-service-box.pt-service-box-style-4:hover .pt-service-info {
    bottom: 60px;
    opacity: 1;
    visibility: visible;
}
.pt-service-box.pt-service-box-style-4 .pt-service-title{  font-size: 28px;line-height: 36px;color: var(--white-color);margin-bottom: 10px; }
.pt-service-box.pt-service-box-style-4  .pt-btn-container{  opacity: 0;visibility: hidden;height: 0;transition: all 0.5s ease;}
.pt-service-box.pt-service-box-style-4:hover  .pt-btn-container{ opacity: 1;visibility: visible; }







@media(max-width:767px) {
    .pt-service-box.pt-service-box-style-1 .pt-service-img:before {
        display: none;
    }

    .pt-service-box.pt-service-box-style-1 .pt-service-info {
        transform: translateY(calc(0px + 0px));
        position: relative;
        background: var(--primary-color);
    }

    .pt-service-box.pt-service-box-style-1 .pt-service-info p,
    .pt-service-box.pt-service-box-style-1 .pt-service-info .pt-button {
        opacity: 1;
    }

}


@media(max-width:359px) {
    .pt-service-box.pt-service-box-style-1 .pt-service-info .pt-service-title {
        font-size: 24px;
        line-height: 32px;
    }
}

@media(max-width:1024px) {
    .pt-img-right {
        position: relative !important;
    }
}


/*================================================
Progressbar
================================================*/

/*====style 1=====*/

.pt-progressbar-style-1 .pt-progressbar-content {
    padding-bottom: 30px;
    display: inline-block;
    float: left;
    width: 100%;
    font-family: var(--title-fonts);
    color: var(--dark-color);

    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
}

.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-value {


    float: right;
    font-family: var(--body-fonts);
    font-weight: 500;
    font-size: 20px;
}

.pt-progressbar-style-1 .pt-progress-bar {
    display: inline-block;
    width: 100%;
    padding: 0;
    float: left;
    margin-top: 10px;
}

.pt-progressbar-style-1 .pt-progress-bar span {
    display: inline-block;
    background: var(--primary-color);
    float: left;
}

.pt-progressbar-style-1 .pt-progressbar-content .pt-progress-bar span {
    height: 8px;
    line-height: 8px;
}

.pt-progressbar-style-1 .pt-progress-bar {
    background: var(--grey-color);
}


/*====side bg full width=====*/

.pt-sidebg-right:before {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    display: inline-block;
    width: 1000%;
    height: 100%;
    z-index: 1;
}

.pt-sidebg-left:before {
    content: "";
    position: absolute;
    right: 40%;
    top: 0;
    display: inline-block;
    width: 1000%;
    height: 100%;
    z-index: 1;
}
.pt-sidebg-left.pt-primary:before {
    background: var(--primary-color);
}
.pt-sidebg-left.pt-primary-dark:before {
    background: var(--primary-dark-color);
}


.pt-sidebg-right.pt-primary:before {
    background: var(--primary-color);
}



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

.pt-gallery.pt-style-1 {
    clear: both;
    overflow: hidden;
}

.pt-gallery.pt-style-1 .pt-gallery-block {
    position: relative;
    overflow: hidden;
    width: 25%;
    float: left;
}

.pt-gallery.pt-style-1 .pt-gallery-block:before {
    opacity: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: var(--primary-color);
    z-index: 1;
    transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.pt-gallery.pt-style-1 .pt-gallery-block:hover:before {
    opacity: 0.8;
}

.pt-gallery.pt-style-1 .pt-gallery-block .pt-gallery-info {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: grid;
    align-items: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
    opacity: 0;
    -moz-transform: translate(0px, 30px);
    -webkit-transform: translate(0px, 30px);
    -o-transform: translate(0px, 30px);
    -ms-transform: translate(0px, 30px);
    transform: translate(0px, 30px);
    -webkit-transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
    transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
}


.pt-gallery.pt-style-1 .pt-gallery-info .pt-gallery-title a {
    color: var(--white-color);
    font-size: 28px;
    line-height: 36px;
}

.pt-gallery.pt-style-1 .pt-gallery-block:hover .pt-gallery-info {
    opacity: 1;
    -moz-transform: translate(0px, 0);
    -webkit-transform: translate(0px, 0);
    -o-transform: translate(0px, 0);
    -ms-transform: translate(0px, 0);
    transform: translate(0px, 0);
}

@media(max-width:1024px) {
    .pt-gallery.pt-style-1 .pt-gallery-block {
        width: 50%;
    }

}

@media(max-width:479px) {
    .pt-gallery.pt-style-1 .pt-gallery-block {
        width: 100%;
    }
}

/*================================================
Team
================================================*/
.pt-team-box.pt-style-1 {
    position: relative;
    overflow: hidden;
}

.pt-team-box.pt-style-1 .pt-team-img img {
    width: 100%;
}

.pt-team-box.pt-style-1:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.5s ease;
}

.pt-team-box.pt-style-1:hover:before {
    top: 0;
    visibility: visible;
    opacity: 1;
}

.pt-team-box.pt-style-1 .pt-team-info {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.pt-team-box.pt-style-1:hover .pt-team-info {
    bottom: 45px;
    opacity: 1;
    visibility: visible;
}

.pt-team-box.pt-style-1 .pt-team-info .pt-member-name {
    color: var(--white-color);
}

.pt-team-box.pt-style-1 .pt-team-info .pt-team-designation {
    letter-spacing: 0.2em;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: var(--sub-title-fonts);
    margin-bottom: 15px;
}

.pt-team-box.pt-style-1 .pt-team-social ul {
    padding: 0;
    margin: 0;
}

.pt-team-box.pt-style-1 .pt-team-social ul li {
    list-style: none;
    display: inline-block;
}

.pt-team-box.pt-style-1 .pt-team-social ul li {
    margin-right: 15px;
}

.pt-team-box.pt-style-1 .pt-team-social ul li:last-child {
    margin-right: 0;
}

.pt-team-box.pt-style-1 .pt-team-social ul li a {
    color: var(--white-color);
    text-align: center;
    transition: all 0.5s ease;
    display: inline-block;
}

.pt-team-box.pt-style-1 .pt-team-social ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}


/*================================================
Pricebox
================================================*/

.pt-pricebox.pt-pricebox-style-1 {
    background: var(--grey-color)
}

.pt-pricebox .pt-pricebox-style-1 .text-center {
    background: var(--white-color);
}

.pt-pricebox-style-1.active .pt-price-detail {
    background: var(--primary-dark-color);
    color: var(--white-color);
}

.pt-pricebox-style-1.active .pt-price-detail .price {
    color: var(--white-color);
}

.pt-pricebox-style-1 .pt-price-detail {
    position: relative;
    padding: 45px 30px;
    font-family: var(--title-fonts);
    background: var(--primary-color);
    z-index: 9;
    color: var(--white-color);
    overflow: hidden;
}

.pt-pricebox-style-1 .pt-price-detail:before{background-position: center center;
    background-repeat: repeat;
    background-size: 100% auto;
    opacity: 0.1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;}

.pt-pricebox-style-1 .pt-price-detail .pt-price-title {
    display: inline-block;
    width: 100%;
    letter-spacing: 0.2em;
    font-family: var(--sub-title-fonts);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
        font-family: var(--body-fonts);
}

.pt-pricebox-style-1 .pt-price-detail .price {
    font-size: 52px;
    line-height: 60px;
    color: var(--white-color);
    margin-bottom: 5px;
     font-family: var(--body-fonts);
}

.pt-pricebox-style-1 .pt-price-detail .pt-price-duration {
    margin-bottom: 0;
    font-size: 16px;
    font-family: var(--body-fonts);
}

.pt-pricebox-style-1 .pt-price-detail .pt-bg-effect {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.1;
}
.pt-pricebox-style-1 .pt-price-detail .pt-bg-effect img{ height: 100%; }

.pt-pricebox-style-1 .pt-list-info {
    margin: 0;
    padding: 30px;
}

.pt-pricebox-style-1 .pt-list-info li {
    list-style: none;
    line-height: 45px;
}

.pt-pricebox-style-1 .pt-button {
    margin-bottom: 45px;
}


.pt-pricebox.pt-pricebox-style-2 {
    background: var(--white-color)
}

.pt-pricebox.pt-pricebox-style-2 .pt-price-img img {width: 100%;}

.pt-pricebox .pt-pricebox-style-2 .text-center {
    background: var(--white-color);
}

.pt-pricebox-style-2.active .pt-price-detail {
    background: var(--primary-dark-color);
    color: var(--white-color);
}

.pt-pricebox-style-2.active .pt-price-detail .price {
    color: var(--white-color);
}

.pt-pricebox-style-2 .pt-price-detail {
    position: relative;
    padding: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-family: var(--title-fonts);
    background: var(--white-color);
    z-index: 9;
    color: var(--white-color);
    overflow: hidden;
}



.pt-pricebox-style-2 .pt-price-detail .pt-price-title {
    display: inline-block;
    width: 100%;
    letter-spacing: 0.2em;
 
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
  
        font-family: var(--body-fonts);
}

.pt-pricebox-style-2 .pt-price-detail .price {
    font-size: 52px;
    line-height: 60px;
    color: var(--white-color);

    display: inline-block;
    font-family: var(--body-fonts);
    margin-top: 15px;
}

.pt-pricebox-style-2 .pt-price-detail .pt-price-duration {
    margin-bottom: 0;
    font-size: 16px;
    font-family: var(--body-fonts);display: inline-block;padding-left: 5px;
}

.pt-pricebox-style-2 .pt-price-detail .pt-bg-effect {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.1;
}

.pt-pricebox-style-2 .pt-list-info {
    margin: 0;
    padding: 30px;
}

.pt-pricebox-style-2 .pt-list-info li {
    list-style: none;
    line-height: 45px;
}

.pt-pricebox-style-2 .pt-button {
    margin-bottom: 45px;
}

/*====style 3=====*/


.pt-pricebox-style-3{display: flex; border: 1px solid rgba(0,0,0,0.05); padding: 15px; align-items: center;}

.pt-pricebox-style-3 .pt-pricebox-progressbar{width: 35%;}
.pt-pricebox-style-3 .pt-pricebox-list {width: 40%;}
.pt-pricebox-style-3 .pt-price-detail  {width: 25%;}
.pt-pricebox-style-3 .pt-circle-progress {
    display: flex;
    margin-left: 30px;
}
.pt-pricebox-style-3 .pt-pricebox-list ul{
    margin: 0;
    padding-left: 45px;
    padding-right: 20px;
}
.pt-pricebox-style-3 .pt-pricebox-list li {
    list-style: none;
    margin: 0;
    line-height: 45px;
 
}


.pt-pricebox-style-3 .pt-circle-progress .pt-circle-progress-bar {
    position: relative;display: inline-block;
}
.pt-pricebox-style-3 .pt-circle-progress .pt-progress-details {
    margin-left: 30px;
   
    align-self: center !important;
    flex: 1;
}


.pt-pricebox-style-3 .pt-circle-progress .pt-progress-count {
    color: var(--dark-color);
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.pt-pricebox-style-3 .pt-circle-progress .pt-progress-details .pt-progress-title {
    font-size: 32px;
    line-height: 40px;

    color: var(--dark-color);
}
.pt-pricebox-style-3 .pt-circle-progress .pt-progress-details .pt-progress-title-tag {
    font-family: var(--sub-title-fonts);
    font-weight: 500;
    letter-spacing: 0.2em;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    text-transform: uppercase;
    color: var(--primary-color);


}
.pt-pricebox-style-3 .pt-price-detail {
    background: var(--grey-color);
    padding: 30px 15px 45px 15px;
    text-align: center;
   
}


.pt-pricebox-style-3 .price {
    display: inline-block;
        font-family: var(--body-fonts);
    font-size: 52px;
    line-height: 60px;

}
.pt-pricebox-style-3 .pt-price-duration {
 
    margin-bottom: 0;
    font-size: 16px;
    padding-left: 5px;
    text-transform: capitalize;
    font-family: var(--body-fonts);
}
.pt-pricebox-style-3  .pt-btn-container {
    margin-top: 20px;
}


@media(max-width:1024px) {
.pt-pricebox-style-3 .pt-price-detail {width: 35%;}
.pt-pricebox-style-3 .pt-circle-progress { display:block;margin: 0;text-align: center; }
.pt-pricebox-style-3 .pt-circle-progress .pt-progress-details { text-align: center; }
.pt-pricebox-style-3 .pt-pricebox-list {width: 50%;}

}

@media(max-width:767px) {
.pt-pricebox-style-3 { display: block;    padding: 45px 30px; }
.pt-pricebox-style-3 .pt-pricebox-progressbar, .pt-pricebox-style-3 .pt-pricebox-list, .pt-pricebox-style-3 .pt-price-detail {width: 100%;text-align: center;}
.pt-pricebox-style-3 .pt-pricebox-list{ margin-top: 10px;margin-bottom: 15px; }
.pt-pricebox-style-3 .pt-pricebox-list ul { padding: 0;}
}




/*================================================
FAQ
================================================*/
.pt-accordion-block .pt-accordion-box {
    background: var(--white-color);
    margin-bottom: 30px;
    position: relative;
}

.pt-accordion-block .pt-accordion-box:last-child {
    margin-bottom: 0;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title .ad-title-text {
    font-size: 22px;
}

.pt-accordion-block .pt-accordion-box .pt-ad-title i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    opacity: 1;
    color: var(--dark-color);
    font-size: 22px;
}

.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%;
    transform: translateY(-50%);
    right: 30px;
    opacity: 0;
    color: var(--dark-color);
}

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

.pt-accordion-block .pt-accordion-box .pt-accordion-details p {
    margin-bottom: 0;
}

.pt-accordion-block .pt-accordion-box.pt-active .pt-ad-title {
    background: var(--primary-color);
    border: 1px solid 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 {
    background: transparent;
    border: 1px solid #eee;
}

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


/*================================================
Tabs
================================================*/
.pt-advance-tab .nav-tabs {
    border-bottom: unset;
}

.nav-tabs .nav-link {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    margin-bottom: 0;
}

.pt-advance-tab .nav-tabs .nav-item {
    background: var(--white-color);
    color: var(--dark-color);
    padding: 30px 0px;
    border: none;
    margin-right: 30px;
    position: relative;
    flex: 1;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-family: var(--title-fonts);
}

.pt-advance-tab .nav-tabs .nav-item i {
    color: var(--primary-color);
}

.pt-advance-tab .nav-tabs .nav-item:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(198, 168, 125, 0);
    border-top-color: var(--secondary-color);
    border-width: 15px;
    margin-left: -15px;
    margin-top: -2px;
    opacity: 0;
    z-index: 9;
    transition: none;

}

.pt-advance-tab .nav-tabs .nav-item.active:after {
    opacity: 1;
    border-top-color: var(--primary-color);
}


.pt-advance-tab .nav-tabs .nav-item i {
    font-size: 56px;
    line-height: 64px;
    display: inline-block;
}

.pt-advance-tab .nav-tabs .nav-item.active {
    background: var(--primary-color);
    color: var(--white-color);
    position: relative;
}

.pt-advance-tab .nav-tabs .nav-item.active i {
    color: var(--white-color);
}


@media(max-width:1365px) {
    .pt-advance-tab .nav-tabs .nav-item {
        padding: 15px;
    }
}

@media(max-width:1023px) {
    .pt-advance-tab .tab-content .pt-tab-info {
        margin-top: 30px;
    }

    .pt-advance-tab .tab-content .pt-tab-info h2 {
        font-size: 38px;
        line-height: 46px;
    }

    .pt-advance-tab .nav-tabs .nav-item {
        margin-right: 10px;
        font-size: 16px;
        line-height: 24px;
    }


}

@media(max-width:991px) {
    .pt-advance-tab .tab-content .pt-tab-info {
        padding-left: 0;
    }
}

@media(max-width:767px) {
    .pt-advance-tab .nav-tabs .nav-item {

        margin: 0 10px 15px 0;
    }

    .pt-advance-tab .nav-tabs .nav-item i {
        font-size: 40px;
        line-height: 48px;
    }

    .pt-advance-tab .tab-content .pt-tab-info h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media(max-width:479px) {
    .pt-advance-tab .nav-tabs .nav-item i {
        font-size: 30px;
        line-height: 38px;
    }
}



/*================================================
Menu Price
================================================*/
.pt-food-price-item {
    clear: both;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.pt-food-price-item:last-child {
    margin-bottom: 0;
}


.pt-food-price-content {
    padding: 10px 15px 0px 0px;
}

.pt-food-price-top {
    display: flex;
    justify-content: space-between;
}

.pt-food-title {
    font-size: 22px;
    line-height: 30px;
}

.pt-food-price-line {
    height: 1px;
    width: 100%;
    border-bottom: 1px solid var(--dark-color);
    flex: 1;
    margin-top: 10px;
    margin: 0 10px;
    position: relative;
    bottom: -15px;
    opacity: 0.1;
}

.pt-food-price-main {

    font-size: 18px;

    color: var(--primary-color);
    line-height: 26px;
}

.pt-dubble-line .pt-food-price-content {
    padding: 10px 15px 0px 15px;
}

.pt-dubble-line .pt-food-price-line:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    border: 1;
    border-bottom: 1px solid var(--primary-color);
    bottom: -8px;
}

@media(max-width:767px) {
    .pt-food-price-item .pt-food-price-hoverimg {
        display: none;
    }

}

@media(max-width:479px) {
    .pt-food-price-line {
        display: none;
    }

    .pt-food-price-top {
        display: block;
    }

}


/*====Intro css=====*/

.custom-image-box-effect > .elementor-container{
    margin-left: -250px;
    margin-right: -280px;
}

.custom-image-box-effect-02 > .elementor-container {
   margin-right: -130px; 
    margin-left: 100px;
   
}

.intro-features figure.elementor-image-box-img {
    width: 120px !important;
    height: 120px;
    line-height: 120px;
    background: var(--white-color);
    border-radius: 900px;
  
}
.intro-features .elementor-image-box-img img {
    width: 60px;
}

.intro-img .elementor-image-box-img img {
box-shadow: 0px 0px 30px 0px rgb(0,0,0,0.1);
}
.intro-img-border:before{ position: absolute;content: "";width: 38px;height: 80%;top: 50%;transform: translateY(-50%);right: 0;background:var(--primary-color);  transition: all 0.1s ease;animation: topbottom 5s infinite;}
@keyframes topbottom {
  from {top: 50%;}
  50% {top: 55%;}
  to {top: 50%;}
}
.intro-img-border.left:before{ right: inherit;left: 0; }
.intro-subtitle-center .pt-section-title.pt-section-title-style-1.text-center .pt-section-sub-title:after{border-color: var(--white-color);}

.pt-home-layout .pt-image-box-img{ overflow: hidden;position: relative;     box-shadow: 0px 0px 30px 0px rgb(0,0,0,0.1);}
.pt-home-layout .pt-image-box-img img {
 
    transition: all 0.5s ease;
    width: 100%;
      
}

.pt-home-layout .pt-image-box-img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.pt-home-layout .pt-btn-container{ position: absolute;bottom: -100px;text-align: center;  transition: all 0.5s ease;width: 100%;z-index: 2;}
.pt-home-layout .pt-image-box-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: var(--dark-color);
   transition: all 0.5s ease;
    opacity: 0;
    z-index: 1;
}
.pt-home-layout .pt-image-box-img:hover:before{ opacity: 0.4; }
.pt-home-layout .pt-image-box-img:hover .pt-btn-container{ bottom: 30px; }
.pt-home-layout .pt-section-title{ text-align: center;font-size: 28px;line-height: 36px;margin-top: 15px; }



@media(max-width:1024px) {
.custom-image-box-effect > .elementor-container{ margin-left: 0;
    margin-right: 0;}
.custom-image-box-effect-02 > .elementor-container{margin-right: 0;
    margin-left: 0;}
}
