:root {
    --spacing: 50px;
    --heading-font: EB_Garamond, serif;
    --body-font: Montserrat, sans-serif;
    --secondary-font: Montserrat, sans-serif;
    --sidebar: 300px;
    --site-width: 1200px;
    --sidebar-gap: 70px;
    --primary-color: #dd5903;
    --primary-color-semi: rgba(221, 89, 3, 0.3);
    --secondary-color: #c59764;
    --content-color: #363636;
    --theme-primary-color: var(--primary-color);
    --theme-secondary-color: var(--secondary-color);
    --btn-bg: var(--primary-color);
    --btn-color: #fff;
    --btn-bg-hover: var(--primary-color);
    --btn-color-hover: #fff;
    --hf-weight: 600;
    --hf-letter-spacing: 0;
    --hf-text-transform: none;
    --hf-style: normal;
    --subheading-font: Montserrat, sans-serif;
    --shf-font-size: 13px;
    --shf-weight: 600;
    --shf-letter-spacing: 0.05em;
    --shf-text-transform: uppercase;
    --shf-style: normal;
    --sf-letter-spacing: 0.05em;
    --sf-text-transform: uppercase;
    --sf-style: normal;
    --blog-title-weight: 600;
    --bt-letter-spacing: 0;
    --bt-text-transform: none;
    --bt-style: normal;
    --post-text-size: 18px;
    --post-line-height: 1.66;
    --widget-title-font: Montserrat, sans-serif;
    --widget-title-size: 14px;
    --widget-title-weight: 500;
    --widget-title-spacing: 0.05em;
    --widget-title-trans: uppercase;
    --widget-title-style: normal;
    --nav-font: Montserrat, sans-serif;
    --nav-font-size: 13px;
    --nav-font-weight: 500;
    --nav-font-letter-spacing: 0.05em;
    --nav-font-transform: uppercase;
    --fbnav-font-size: 14px;
    --fbnav-font-weight: 400;
    --fbnav-font-letter-spacing: 0.05em;
    --fbnav-font-transform: uppercase;
    --grid-unit: 25;
    --grid-val: calc(100 / var(--grid-unit));
    --side-padding: calc(var(--grid-val) * 2vw);
    --form-bd-width: 1px;
    --popup-width: 600px;
    --light-bg-color: #fff;
    --light-text-color: #000;
    --light-content-color: #363636;
    --light-link-color: var(--primary-color);
    --light-link-color-hover: var(--primary-color);
    --dark-bg-color: #0e0d0a;
    --dark-text-color: #fff;
    --dark-content-color: #eee;
    --dark-link-color: var(--primary-color);
    --dark-link-color-hover: var(--primary-color);
}
:root .light-color {
    --bg-color: var(--light-bg-color);
    --text-color: var(--light-text-color);
    --content-color: var(--light-content-color);
    --page-title-bg: #f9f9f9;
    --page-title-color: #000;
    --link-color: var(--light-link-color);
    --link-color-hover: var(--light-link-color-hover);
    --text-lighter: #666;
    --form-bd: rgba(0, 0, 0, 0.2);
    --form-bd-focus: rgba(0, 0, 0, 0.8);
    --border-color: rgba(0, 0, 0, 0.1);
    --light-grey: #f9f9f9;
}
:root .dark-color {
    --bg-color: var(--dark-bg-color);
    --text-color: var(--dark-text-color);
    --content-color: var(--dark-content-color);
    --page-title-bg: #151515;
    --page-title-color: #fff;
    --link-color: var(--dark-link-color);
    --link-color-hover: var(--dark-link-color-hover);
    --text-lighter: #aaa;
    --form-bd: rgba(255, 255, 255, 0.35);
    --form-bd-focus: rgba(255, 255, 255, 0.8);
    --border-color: rgba(255, 255, 255, 0.15);
    --light-grey: #151515;
}
@media (min-width: 1025px) {
    :root {
        --grid-unit: 32;
        --spacing: 80px;
    }
}
@-webkit-keyframes stickyHeaderShow {
    0% {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes stickyHeaderShow {
    0% {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes prevArrowMove {
    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    51% {
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
        opacity: 1;
    }
    52% {
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
        opacity: 0;
    }
    53% {
        opacity: 0;
    }
    54% {
        opacity: 1;
    }
}
@keyframes prevArrowMove {
    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    51% {
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
        opacity: 1;
    }
    52% {
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
        opacity: 0;
    }
    53% {
        opacity: 0;
    }
    54% {
        opacity: 1;
    }
}
@-webkit-keyframes nextArrowMove {
    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    51% {
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
        opacity: 1;
    }
    52% {
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
        opacity: 0;
    }
    53% {
        opacity: 0;
    }
    54% {
        opacity: 1;
    }
}
@keyframes nextArrowMove {
    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    51% {
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
        opacity: 1;
    }
    52% {
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
        opacity: 0;
    }
    53% {
        opacity: 0;
    }
    54% {
        opacity: 1;
    }
}
@-webkit-keyframes fade {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}
@keyframes fade {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}
@-webkit-keyframes slideFade {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideFade {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes slideBg {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
        transform: scale(1.15);
    }
}
@keyframes slideBg {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
        transform: scale(1.15);
    }
}
@-webkit-keyframes heartBeat {
    0%,
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.85);
        -ms-transform: scale(0.85);
        transform: scale(0.85);
    }
}
@keyframes heartBeat {
    0%,
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.85);
        -ms-transform: scale(0.85);
        transform: scale(0.85);
    }
}
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}
a {
    background-color: transparent;
}
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
img {
    border-style: none;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
details {
    display: block;
}
summary {
    display: list-item;
}
template {
    display: none;
}
[hidden] {
    display: none;
}
* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
*:focus {
    outline: 0;
}
html {
    width: 100%;
    min-height: 100%;
}
html.touch div {
    background-attachment: scroll !important;
}
body {
    width: 100%;
    height: auto;
    min-height: 100%;
    margin: 0 auto;
    background-color: var(--bg-color);
    color: #000;
}
body#tinymce {
    padding: 20px !important;
    background: #fff;
}
html,
body,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dd,
dl,
dt,
pre,
fieldset,
figure,
hr,
iframe,
legend {
    margin: 0;
    padding: 0;
    border: none;
}
#page {
    position: relative;
    z-index: 2;
    overflow-x: hidden;
    width: 100%;
    height: auto;
}
ul,
ol {
    margin: 0 0 30px 30px;
}
li > ul,
li > ol {
    margin-bottom: 0;
}
dl {
    margin: 0 0 30px;
}
dt {
    font-weight: 700;
}
dd {
    margin: 0 0 30px 30px;
}
figure {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0;
}
figure img {
    display: block;
}
img {
    height: auto;
    max-width: 100%;
    border: 0;
}
hr {
    display: block;
    height: 1px;
    padding: 0;
    margin: 50px auto;
    border: 0;
    border-top: 1px solid #ccc;
}
.dark-color hr {
    background-color: rgba(255, 255, 255, 0.1);
}
hr.lo-divider {
    background: none !important;
}
.hide {
    display: none !important;
}
.container:after,
#page ul:after,
.main:after,
.home-widget .section-content:after,
.posts-wrapper:after,
.entry-content:after,
.single #primary > .post:after,
.post-navigation .nav-links:after,
.image-gallery:after,
.widget_mc4wp_form_widget .fields-container:after,
.widget-area-row:after,
.entry-content .gallery:after,
.comments-area .navigation .nav-links:after,
.widget.widget_archive ul li:after,
.widget.widget_categories ul li:after,
.lo-row:after,
.gallery[class*="gallery-columns-"]:after,
.fields-container:after,
.authors-list:after,
.row:after {
    position: relative;
    display: block;
    content: "";
    clear: both;
}
.says,
.screen-reader-text {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    word-wrap: normal !important;
}
.site .skip-link {
    top: -9999em;
    left: -9999em;
    display: block;
    padding: 15px 23px 14px;
    background-color: #f1f1f1;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
    color: #21759b;
    font-family: Montserrat, "Helvetica Neue", sans-serif;
    font-size: 14px;
    font-weight: 700;
    outline: none;
    text-decoration: none;
    text-transform: none;
}
.logged-in .site .skip-link {
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
    font-family: "Open Sans", sans-serif;
}
.site .skip-link:focus {
    z-index: 100000;
    top: 7px;
    left: 6px;
    clip: auto;
    width: auto;
    height: auto;
}
.alignleft {
    float: left;
    display: inline;
}
.alignleft[class*="wp-block-"] {
    margin-right: 30px;
}
.alignright {
    float: right;
    display: inline;
}
.alignright[class*="wp-block-"] {
    margin-left: 30px;
}
.aligncenter {
    display: block;
    margin-right: auto !important;
    margin-left: auto !important;
}
figure.alignleft,
img.alignleft {
    margin: 0 30px 30px 0;
}
figure.alignright,
img.alignright {
    margin: 0 0 30px 30px;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.button {
    position: relative;
    z-index: 9;
    display: inline-block;
    padding: 0 30px;
    background: var(--btn-bg);
    border: none;
    border-radius: var(--btn-radius);
    color: var(--btn-color);
    font-family: var(--secondary-font);
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 42px;
    text-align: center;
    transition: 0.4s;
    cursor: pointer;
}
.no-touch .button:not(.pt-btn-underline):hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}
.no-touch .button:not(.pt-btn-underline):not(.pt-btn-outline):hover {
    background: var(--btn-bg-hover);
    color: var(--btn-color-hover);
}
.button.pt-btn-outline {
    --btn-bg: var(--text-color);
    --btn-bg-hover: var(--btn-bg);
    --btn-color-hover: var(--bg-color);
    background: none;
    border: 2px solid;
    border-color: var(--btn-bg);
    color: var(--btn-bg);
    line-height: 38px;
}
.no-touch .button.pt-btn-outline:hover {
    background: var(--btn-bg-hover);
    color: var(--btn-color-hover);
    border-color: var(--btn-bg-hover);
}
.button.pt-btn-underline {
    padding: 7px 0;
    background: none;
    color: inherit;
    border-radius: 0;
    line-height: 1;
}
.button.pt-btn-underline:before {
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--btn-bg);
    content: "";
    transition: transform 0.2s ease;
    transform-origin: 100% 0;
}
.no-touch .button.pt-btn-underline:hover {
    color: inherit;
}
.no-touch .button.pt-btn-underline:hover:before {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}
.button.pt-btn-small {
    padding: 0 16px;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 32px;
}
.button.pt-btn-small.pt-btn-outline {
    line-height: 28px;
}
.button.pt-btn-small.pt-btn-underline {
    padding: 7px 0;
    line-height: 1;
}
.button.pt-btn-large {
    padding: 0 25px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 45px;
}
.button.pt-btn-large.pt-btn-outline {
    line-height: 41px;
}
.button.pt-btn-large.pt-btn-underline {
    padding: 7px 0;
    line-height: 1;
}
.button.pt-btn-extra-large {
    padding: 0 35px;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 60px;
}
.button.pt-btn-extra-large.pt-btn-outline {
    line-height: 56px;
}
.button.pt-btn-extra-large.pt-btn-underline {
    padding: 7px 0;
    line-height: 1;
}
.button.pt-btn-color-primary {
    --btn-bg: var(--primary-color);
}
.button.pt-btn-color-secondary {
    --btn-bg: var(--secondary-color);
}
.button.pt-btn-color-black {
    --btn-bg: #000;
}
.button.pt-btn-color-white {
    --btn-bg: #fff;
    --btn-color: #000;
}
.button.pt-btn-color-white.pt-btn-outline {
    --btn-color-hover: #000;
}
.pt-btn-square {
    --btn-radius: 0px;
}
.pt-btn-rounded {
    --btn-radius: 5px;
}
.pt-btn-pill {
    --btn-radius: 999px;
}
.author-photo {
    width: 120px;
}
.author-photo img {
    display: block;
    border-radius: 50%;
}
.tagcloud a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    color: inherit;
}
.tagcloud a {
    background: #f6f6f6;
    padding: 3px 16px;
    border-radius: 99px;
}
.no-touch .tagcloud a:hover,
.tagcloud a:focus {
    background: var(--text-color);
    color: var(--bg-color);
}
.dark-color .tagcloud a {
    background: #333;
}
.close-button {
    z-index: 9;
    display: block;
    width: 40px;
    height: 40px;
    font-size: 0;
    cursor: pointer;
    transition: 0.4s;
}
.close-button:before,
.close-button:after {
    position: absolute;
    top: 19px;
    left: 8px;
    display: block;
    width: 25px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 0.25s;
}
.close-button:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.close-button:after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}
.slick-dots button,
.slick-arrow {
    background: none;
    border: 0;
    box-shadow: none;
    color: inherit;
    font-size: 0;
    pointer-events: auto;
    cursor: pointer;
}
.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 99;
    width: 80px;
    height: 80px;
    margin-top: -30px;
    cursor: pointer;
    font-feature-settings: normal;
    transition: 0.2s;
}
.slick-arrow:before,
.slick-arrow:after {
    position: absolute;
    top: 39px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 0.2s;
}
.no-touch .slick-arrow:hover:before,
.touch .slick-arrow:before {
    transform: rotate(45deg) scaleX(0.5);
}
.no-touch .slick-arrow:hover:after,
.touch .slick-arrow:after {
    transform: rotate(-45deg) scaleX(0.5);
}
.slick-arrow.slick-prev {
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.slick-arrow.slick-prev:before,
.slick-arrow.slick-prev:after {
    transform-origin: 0 0;
}
.slick-arrow.slick-next {
    right: 0;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}
.slick-arrow.slick-next:before,
.slick-arrow.slick-next:after {
    transform-origin: 100% 100%;
}
.slick-dots {
    margin: 50px auto 0;
    text-align: center;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    list-style: none;
    height: 12px;
}
.slider-dots-left .slick-dots {
    text-align: left;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.slider-dots-left .slick-dots li:first-child {
    margin-left: -6px;
}
.slider-dots-right .slick-dots {
    text-align: right;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.slider-dots-right .slick-dots li:last-child {
    margin-right: -6px;
}
.slick-dots li {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    line-height: 0;
}
.slick-dots li button {
    padding: 0 6px;
}
.slick-dots li button:before {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    content: "";
    transition: 0.2s;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    transform-origin: 50% 50%;
    width: 10px;
    height: 10px;
    -webkit-transform: scale(0.64);
    -ms-transform: scale(0.64);
    transform: scale(0.64);
}
.slick-dots li.slick-active button:before {
    width: 10px;
    height: 10px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.slick-dots li:not(.slick-active) button:before {
    opacity: 0.35;
}
.no-touch .slick-dots li:not(.slick-active) button:hover:before {
    opacity: 0.7;
}
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: calc(var(--site-width) + var(--side-padding) * 2);
    padding: 0 var(--side-padding);
    margin-right: auto;
    margin-left: auto;
}
.custom-site-width .container {
    --site-width: var(--custom-site-width);
}
.pt-template-wide .container {
    max-width: 1600px;
}
.site-content {
    position: relative;
    z-index: 9;
}
.site-content > .container {
    margin-top: 50px;
}
.primary {
    padding-bottom: 80px;
}
.primary > *:last-child {
    margin-bottom: 0;
}
.sidebar {
    padding-bottom: 80px;
}
.light-color,
.dark-color {
    color: var(--text-color);
}
.pt-info i {
    margin-right: 8px;
}
.row > * {
    margin-bottom: 30px;
}
.pt-notice {
    padding: 30px;
    background: lightskyblue;
    color: #111;
}
.pt-notice:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    content: "\f05a";
    margin-right: 10px;
}
@media screen and (min-width: 480px) {
    .author-social ul.social-nav li a {
        text-align: left;
    }
}
@media screen and (min-width: 768px) {
    .row {
        margin: 0 -15px;
    }
    .row > * {
        padding: 0 15px;
        float: left;
    }
    .row .col-1-2 {
        width: 50%;
    }
    .row .col-1-3 {
        width: 33.333333%;
    }
}
@media screen and (min-width: 1025px) {
    .site-content[class*="with-sidebar-"] .primary {
        float: left;
        width: calc(100% - var(--sidebar) - var(--sidebar-gap));
    }
    .site-content[class*="with-sidebar-"] .sidebar {
        float: left;
        width: var(--sidebar);
    }
    .site-content[class*="with-sidebar-"] .sidebar-container {
        width: var(--sidebar);
    }
    .site-content[class*="with-sidebar-"].with-sidebar-left .primary {
        float: right;
    }
    .site-content[class*="with-sidebar-"].with-sidebar-right .sidebar {
        float: right;
    }
    .no-touch .slick-arrow.slick-prev:hover {
        left: -25px;
    }
    .no-touch .slick-arrow.slick-next:hover {
        right: -25px;
    }
}
@media screen and (max-width: 1024px) {
    .text-left-tablet {
        text-align: left;
    }
    .text-center-tablet {
        text-align: center;
    }
    .text-right-tablet {
        text-align: right;
    }
}
@media screen and (max-width: 767px) {
    .text-left-mobile {
        text-align: left;
    }
    .text-center-mobile {
        text-align: center;
    }
    .text-right-mobile {
        text-align: right;
    }
}
@media screen and (max-width: 599px) {
    .slick-arrow {
        display: none !important;
    }
    .button:not(.pt-btn-underline) {
        padding: 0 15px;
    }
    .button:not(.pt-btn-underline).pt-btn-small {
        padding: 0 12px;
    }
    .button:not(.pt-btn-underline).pt-btn-large {
        padding: 0 20px;
    }
    .button:not(.pt-btn-underline).pt-btn-extra-large {
        padding: 0 25px;
    }
}
h1,
h2,
h3,
h4,
h5,
h6,
.site-branding .site-title,
.entry-title,
.post-title,
blockquote,
.widget.widget_rss ul li a.rsswidget,
.widget.widget_recent_entries a,
.widget_recent_comments ul li > a {
    font-family: var(--heading-font);
}
nav li {
    font-family: var(--nav-font);
}
body {
    font-family: var(--body-font);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.4s;
}
.entry-content a:not([class*="button"]),
.comment-content a:not([class*="button"]),
.site-footer a:not([class*="button"]) {
    color: var(--link-color);
}
.no-touch .entry-content a:not([class*="button"]):hover,
.no-touch .comment-content a:not([class*="button"]):hover,
.no-touch .site-footer a:not([class*="button"]):hover {
    color: var(--link-color-hover);
}
.entry-content .posts a,
.entry-content .pt-menu a {
    color: inherit;
}
.no-touch .entry-content .pt-menu .primary-menu a:hover,
.no-touch .entry-content .pt-menu .mobile-menu a:hover {
    color: inherit;
}
.no-touch .entry-content a.page-numbers:hover {
    color: inherit;
}
.entry-content {
    color: var(--content-color);
    font-size: var(--post-text-size);
    line-height: var(--post-line-height);
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content form {
    color: var(--text-color);
}
.entry-content > ul li:not(:last-child),
.entry-content > ol li:not(:last-child) {
    margin-bottom: 8px;
}
.entry-content > ul ul,
.entry-content > ul ol,
.entry-content > ol ul,
.entry-content > ol ol {
    margin-top: 8px;
}
.elementor-section {
    color: var(--content-color);
    font-size: var(--post-text-size);
    line-height: var(--post-line-height);
}
.elementor-section h1,
.elementor-section h2,
.elementor-section h3,
.elementor-section h4,
.elementor-section h5,
.elementor-section h6,
.elementor-section form {
    color: var(--text-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--hf-weight);
    letter-spacing: var(--hf-letter-spacing);
    text-transform: var(--hf-text-transform);
    font-style: var(--hf-style);
    line-height: 1.35;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-bottom: 30px;
}
.entry-content * + h1,
.entry-content * + h2,
.entry-content * + h3,
.entry-content * + h4,
.entry-content * + h5,
.entry-content * + h6 {
    margin-top: 50px;
}
.entry-content .elementor-element h1,
.entry-content .elementor-element h2,
.entry-content .elementor-element h3,
.entry-content .elementor-element h4,
.entry-content .elementor-element h5,
.entry-content .elementor-element h6 {
    margin-top: 0;
}
.comment-content * + h1,
.comment-content * + h2,
.comment-content * + h3,
.comment-content * + h4,
.comment-content * + h5,
.comment-content * + h6 {
    margin-top: 30px;
}
.comment-content h1,
.widget-area .widget h1,
.comment-content h2,
.widget-area .widget h2,
.comment-content h3,
.widget-area .widget h3,
.comment-content h4,
.widget-area .widget h4,
.comment-content h5,
.widget-area .widget h5,
.comment-content h6,
.widget-area .widget h6 {
    margin-bottom: 15px;
}
.entry-content h1,
.featured-section.custom-section h1,
.home-widget .section-content h1 {
    font-size: 36px;
    font-size: 2.25rem;
}
.entry-content h2,
.featured-section.custom-section h2,
.home-widget .section-content h2 {
    font-size: 32px;
    font-size: 2rem;
}
.entry-content h3,
.featured-section.custom-section h3,
.home-widget .section-content h3 {
    font-size: 28px;
    font-size: 1.75rem;
}
.entry-content h4,
.featured-section.custom-section h4,
.home-widget .section-content h4 {
    font-size: 24px;
    font-size: 1.5rem;
}
.entry-content h5,
.featured-section.custom-section h5,
.home-widget .section-content h5 {
    font-size: 21px;
    font-size: 1.3125rem;
}
.entry-content h6,
.featured-section.custom-section h6,
.home-widget .section-content h6 {
    font-size: 18px;
    font-size: 1.125rem;
}
.comment-content h1,
.widget-area .widget h1 {
    font-size: 28px;
    font-size: 1.75rem;
}
.comment-content h2,
.widget-area .widget h2 {
    font-size: 24px;
    font-size: 1.5rem;
}
.comment-content h3,
.widget-area .widget h3 {
    font-size: 21px;
    font-size: 1.3125rem;
}
.comment-content h4,
.widget-area .widget h4 {
    font-size: 18px;
    font-size: 1.125rem;
}
.comment-content h5,
.widget-area .widget h5 {
    font-size: 16px;
    font-size: 1rem;
}
.comment-content h6,
.widget-area .widget h6 {
    font-size: 14px;
    font-size: 0.875rem;
}
.entry-title a {
    color: inherit;
}
.entry-header h1.entry-title {
    margin-bottom: 15px;
    font-size: 36px;
    font-size: 2.25rem;
}
.entry-header h1.entry-title:last-child {
    margin-bottom: 0;
}
.posts .post-title,
.page-title-section.post-header-section .entry-title {
    font-weight: var(--blog-title-weight);
    letter-spacing: var(--bt-letter-spacing);
    text-transform: var(--bt-text-transform);
    font-style: var(--bt-style);
}
.widget h5.widget-title,
.widget.widget_block .wp-block-group__inner-container > h2 {
    font-family: var(--widget-title-font);
    font-size: var(--widget-title-size);
    font-weight: var(--widget-title-weight);
    letter-spacing: var(--widget-title-spacing);
    text-transform: var(--widget-title-trans);
    font-style: var(--widget-title-style);
}
.related-posts .related-posts-title,
.comments-area h2.comments-title,
.comment-respond h3.comment-reply-title {
    margin-bottom: 30px;
    font-size: 24px;
    font-size: 1.5rem;
}
.breadcrumbs,
.meta,
.cat-links,
.pagination,
.tagcloud a,
.comment-metadata,
.comments-area .reply,
.author-role,
.nav-links .post-info .text,
.comments-area .navigation .nav-links a {
    font-family: var(--secondary-font);
    letter-spacing: var(--sf-letter-spacing);
    text-transform: var(--sf-text-transform);
    font-style: var(--sf-style);
    font-size: 14px;
    font-size: 0.875rem;
}
.pt-subtitle {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    font-family: var(--subheading-font);
    letter-spacing: var(--shf-letter-spacing);
    text-transform: var(--shf-text-transform);
    font-style: var(--shf-style);
    font-size: var(--shf-font-size);
    font-weight: var(--shf-weight);
    color: var(--primary-color);
}
.pt-subtitle.style-underline {
    border-bottom: 2px solid var(--primary-color);
}
.pt-subtitle.style-bordered {
    max-width: calc(100% - 100px);
}
.pt-subtitle.style-bordered:before,
.pt-subtitle.style-bordered:after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 70px;
    height: 1px;
    background: currentColor;
    content: "";
}
.pt-subtitle.style-bordered:before {
    left: -95px;
}
.pt-subtitle.style-bordered:after {
    right: -95px;
}
.tagcloud a {
    text-transform: none;
    letter-spacing: 0;
}
.meta,
.cat-links {
    font-size: 13px;
    font-size: 0.8125rem;
}
.cat-links {
    font-weight: 500;
}
.breadcrumbs {
    opacity: 0.6;
}
p {
    margin: 0 auto 5px;
    font-size: inherit;
}
blockquote {
    position: relative;
    margin: 0;
}
blockquote p:last-of-type {
    margin-bottom: 0;
}
.entry-content blockquote {
    padding: 0 50px;
    margin: 50px auto;
}
.entry-content blockquote:before {
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 1;
    display: block;
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    font-size: 70px;
    font-size: 4.375rem;
    line-height: 30px;
    content: "\201C";
}
.entry-content blockquote:first-child {
    margin-top: 0;
}
.entry-content blockquote p {
    color: var(--text-color);
}
.entry-content blockquote cite {
    color: inherit;
    font-style: normal;
    font-family: var(--body-font);
}
blockquote p {
    position: relative;
    z-index: 9;
    font-size: 21px;
    font-size: 1.3125rem;
    font-weight: 600;
    font-style: normal;
    line-height: 1.5;
}
.elementor-widget blockquote p {
    font-size: inherit;
}
blockquote cite,
blockquote small {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
}
table {
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px;
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px;
    border-style: solid;
    border-color: var(--border-color);
    background: none;
    color: inherit;
    font-size: 16px;
    font-size: 1rem;
}
table th,
table td {
    padding: 16px;
    vertical-align: top;
    line-height: 1.5;
}
table th {
    font-weight: 600;
    text-align: left;
}
table thead tr th,
table thead tr td {
    border-bottom: 1px solid var(--border-color);
}
table tbody tr:not(:last-child) th,
table tbody tr:not(:last-child) td {
    border-bottom: 1px solid var(--border-color);
}
table tfoot tr td {
    border-top: 1px solid var(--border-color);
}
table caption {
    margin: 15px auto;
    font-size: 12px;
    font-size: 0.75rem;
}
pre,
code,
kbd {
    background-color: #f7f7f7;
    color: #000;
}
pre {
    display: block;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #eee;
    tab-size: 4;
    overflow: auto;
    font-size: 16px;
}
code,
kbd {
    padding: 5px;
    font-size: 14px;
}
fieldset {
    padding: 0;
    margin: 0;
    border: none;
}
dfn,
cite,
em,
i {
    font-style: italic;
}
address {
    margin: 0 0 30px;
    font-style: italic;
}
code,
kbd,
tt,
var,
samp,
pre {
    font-family: Menlo, Consolas, monaco, monospace;
}
abbr,
acronym {
    border-bottom: 1px dotted;
    cursor: help;
}
mark {
    padding: 0;
    background: none;
    color: var(--primary-color);
    text-decoration: none;
}
ins {
    font-style: italic;
}
big {
    font-size: 125%;
}
.smaller {
    font-size: 60%;
}
@media screen and (min-width: 768px) {
    .entry-content blockquote p {
        font-size: 28px;
        font-size: 1.75rem;
    }
    .related-posts .related-posts-title,
    .comments-area h2.comments-title,
    .comment-respond h3.comment-reply-title {
        font-size: 32px;
        font-size: 2rem;
    }
}
@media screen and (max-width: 599px) {
    .entry-content blockquote {
        padding-right: 0;
    }
}
@media screen and (max-width: 480px) {
    table th,
    table td {
        padding-right: 8px;
        padding-left: 8px;
    }
}
nav ul {
    margin: 0;
    list-style: none;
}
.site-branding {
    padding: 0;
    font-size: 0;
}
.site-branding p {
    margin-bottom: 0;
}
.site-branding .site-title {
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}
.site-branding .site-title:last-child {
    margin-bottom: 20px;
}
.site-branding .site-description {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1;
}
.site-branding.hide-title-tagline .site-title,
.site-branding.hide-title-tagline .site-description {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    word-wrap: normal !important;
}
.site-branding a {
    display: inline-block;
    color: inherit;
}
.site-branding img {
    display: block;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .site-branding img {
        width: 100% !important;
    }
}
.menu-toggle {
    position: relative;
    z-index: 999;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: inherit;
    font-size: 0 !important;
    line-height: 40px;
    transition: 0.4s;
    cursor: pointer;
    --line-width: 26px;
    --line-height: 1px;
}
.menu-toggle:before,
.menu-toggle:after {
    position: absolute;
    top: 15px;
    left: 12px;
    display: block;
    width: var(--line-width);
    height: var(--line-height);
    background: currentColor;
    content: "";
}
.menu-toggle:after {
    top: 24px;
}
.no-touch .menu-toggle:hover,
.menu-toggle:focus {
    color: var(--primary-color);
    outline: 0;
}
.site-header {
    position: relative;
    z-index: 999;
    width: 100%;
    height: auto;
}
.site-header > * {
    width: 100%;
}
.site-header .container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .header-top-bar {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 55px;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    font-size: 0.875rem;
}
.site-header .header-top-bar .pt-info + * {
    margin-left: 30px;
}
.site-header .site-header-main {
    position: relative;
    z-index: 3;
    background: #000;
    color: #fff;
}
.site-header .site-header-main.with-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.site-header .header-section {
    position: relative;
    z-index: 2;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.site-header .header-section.branding {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden;
    max-width: calc(100% - 80px);
}
.site-header .header-section.header-left {
    margin-left: 0;
    margin-right: auto;
}
.site-header .header-section.header-right {
    margin-right: 0;
    margin-left: auto;
}
.site-header.site-header-layout-default .header-section.menu,
.touch .site-header.site-header-layout-default .header-section.menu {
    display: none;
}
.site-header.site-header-layout-default.overlap-header:not(.is-sticky):not(.sticky) > * {
    background: transparent;
}
.site-header.site-header-layout-default .site-header-main {
    padding: 20px 0;
}
.touch .site-header.site-header-layout-default .menu-toggle {
    display: block;
}
.site-header.site-header-layout-default .header-section.menu {
    margin: 0 0 0 auto;
}
.site-header.site-header-layout-default .header-section.header-right {
    margin-left: 0;
}
.site-header.site-header-layout-default .header-section.header-right > *:first-child {
    margin-left: 20px;
}
.site-header.overlap-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}
.site-header.sticky .site-header-main,
.site-header.is-sticky .site-header-main {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 999;
}
@media screen and (min-width: 601px) and (max-width: 782px) {
    .logged-in.admin-bar .site-header.sticky .site-header-main,
    .logged-in.admin-bar .site-header.is-sticky .site-header-main {
        top: 46px;
    }
}
@media screen and (min-width: 783px) {
    .logged-in.admin-bar .site-header.sticky .site-header-main,
    .logged-in.admin-bar .site-header.is-sticky .site-header-main {
        top: 32px;
    }
}
.site-header.sticky .site-header-main {
    -webkit-animation: stickyHeaderShow 0.4s ease-out;
    animation: stickyHeaderShow 0.4s ease-out;
}
.site-header.is-sticky .site-header-main {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}
.site-header.is-sticky.show-header .site-header-main {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: transform 0.4s ease-out;
}
.site-header.is-sticky.hide-header .site-header-main {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: transform 0.4s ease-out;
}
.site-header.is-sticky.hide-header ul.sub-menu {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.site-header.custom-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.site-header.custom-sticky-header.is-sticky {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}
.site-header.custom-sticky-header.is-sticky.show-header {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: transform 0.4s ease-out;
}
.site-header.custom-sticky-header.is-sticky.hide-header {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: transform 0.4s ease-out;
}
.site-header.custom-sticky-header.is-sticky.hide-header ul.sub-menu {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
@media screen and (min-width: 601px) and (max-width: 782px) {
    .logged-in.admin-bar .site-header.custom-sticky-header.is-sticky {
        top: 46px;
    }
}
@media screen and (min-width: 783px) {
    .logged-in.admin-bar .site-header.custom-sticky-header.is-sticky {
        top: 32px;
    }
}
@media screen and (min-width: 601px) and (max-width: 782px) {
    .logged-in.admin-bar .site-header.custom-sticky-header.sticky {
        top: 46px;
    }
}
@media screen and (min-width: 783px) {
    .logged-in.admin-bar .site-header.custom-sticky-header.sticky {
        top: 32px;
    }
}
.dropdown-dark,
.sub-menu.dark-color {
    --sub-menu-bg: #090909;
    --sub-menu-color: #fff;
}
.dropdown-light,
.sub-menu.light-color {
    --sub-menu-bg: #fff;
    --sub-menu-color: #000;
}
.primary-menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.primary-menu li {
    position: relative;
}
.primary-menu li.menu-item-has-children > a:after {
    font-family: "ElegantIcons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-size: 14px;
    font-size: 0.875rem;
}
.primary-menu > li {
    white-space: nowrap;
}
.primary-menu > li > a {
    position: relative;
    display: block;
    padding: 0 15px;
    font-size: var(--nav-font-size);
    font-weight: var(--nav-font-weight);
    letter-spacing: var(--nav-font-letter-spacing);
    text-transform: var(--nav-font-transform);
    line-height: 60px;
}
.primary-menu > li > a:before {
    display: block;
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: 2px;
    background: var(--primary-color);
    content: "";
    transition: transform 0.2s ease;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: 0 0;
}
.no-touch .primary-menu > li > a:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.primary-menu > li.menu-item-has-children > a:before {
    width: calc(100% - 50px);
}
.site-header-layout-default .primary-menu > li:last-child > a {
    margin-right: -15px;
}
.primary-menu > li > .sub-menu {
    bottom: 0;
    left: -15px;
    -webkit-transform: translateY(105%);
    -ms-transform: translateY(105%);
    transform: translateY(105%);
}
.primary-menu > li > .sub-menu .sub-menu {
    top: -20px;
    left: 100%;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
}
.primary-menu > li.current-menu-item > a:before,
.primary-menu > li.current-menu-ancestor > a:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.primary-menu > li.menu-item-has-children > a:after {
    margin-left: 5px;
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
    content: "\33";
}
.primary-menu .sub-menu {
    position: absolute;
    z-index: -1;
    display: block;
    min-width: 200px;
    padding: 20px 0;
    margin: 0;
    text-align: left;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    background: var(--sub-menu-bg);
    color: var(--sub-menu-color);
}
.primary-menu .sub-menu li.menu-item-has-children > a:after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    content: "\35";
}
.primary-menu .sub-menu .sub-menu {
    padding-top: 20px;
}
.primary-menu .sub-menu:not(.patiotime-dropdown-menu) li {
    white-space: nowrap;
}
.primary-menu .sub-menu:not(.patiotime-dropdown-menu) a {
    position: relative;
    display: block;
    padding: 0 30px;
    font-size: 15px;
    font-size: 0.9375rem;
    letter-spacing: 0;
    text-transform: capitalize;
    line-height: 36px;
}
.primary-menu .sub-menu:not(.patiotime-dropdown-menu) a span {
    position: relative;
}
.primary-menu .sub-menu:not(.patiotime-dropdown-menu) a span:before {
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    content: "";
    transition: transform 0.2s ease;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: 0 0;
}
.no-touch .primary-menu .sub-menu:not(.patiotime-dropdown-menu) a:hover {
    opacity: 1;
}
.no-touch .primary-menu .sub-menu:not(.patiotime-dropdown-menu) a:hover span:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.primary-menu .sub-menu li.current-menu-item > a span:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.no-touch .primary-menu li:hover > .sub-menu,
.primary-menu li.focus > .sub-menu {
    z-index: 99;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.primary-menu > li:hover > .sub-menu,
.primary-menu > li.focus > .sub-menu {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}
.primary-menu .sub-menu li:hover .sub-menu,
.primary-menu .sub-menu li.focus .sub-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.patiotime-dropdown-menu {
    white-space: normal;
    padding: 0;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}
.primary-menu .patiotime-dropdown-menu.sub-menu {
    padding: 0;
}
.patiotime-dropdown-menu > .container {
    padding: 0;
    max-width: none;
}
.patiotime-dropdown-menu a.button span:before {
    display: none;
}
.patiotime-dropdown-menu.fullwidth {
    width: 100vw;
}
.site-header-search,
.pt-search-toggle {
    display: block;
}
.site-header-search .toggle-button,
.pt-search-toggle .toggle-button {
    z-index: 999;
    display: block;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: inherit;
    font-size: 0;
    line-height: 40px;
    text-align: center;
    transition: 0.4s;
    cursor: pointer;
}
.site-header-search .toggle-button:after,
.pt-search-toggle .toggle-button:after {
    position: relative;
    z-index: 3;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    font-weight: 900;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 40px;
    content: "\f002";
}
ul.social-nav {
    margin: 0;
    line-height: 1;
    list-style: none;
    --icon-space: 16px;
}
ul.social-nav li {
    display: inline-block;
}
ul.social-nav li:not(:last-child) a {
    margin-right: var(--icon-space);
}
ul.social-nav li a {
    display: block;
    padding: 0;
    text-align: center;
    font-size: 0 !important;
}
.no-touch .main ul.social-nav li a:hover {
    color: var(--primary-color);
}
ul.social-nav li a:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    font-size: 18px;
    font-size: 1.125rem;
    content: "\f1e0";
}
.site-header ul.social-nav li a:before {
    font-size: 14px;
    font-size: 0.875rem;
}
ul.social-nav li a[title="website"]:before,
ul.social-nav li a[title="Website"]:before {
    content: "\f0c1";
}
ul.social-nav li a[href*="mailto"]:before {
    content: "\f0e0";
}
ul.social-nav li a[href*="bloglovin"]:before {
    content: "\f004";
}
ul.social-nav li a[href*="twitter"]:before,
ul.social-nav li a[href*="facebook"]:before,
ul.social-nav li a[href*="google"]:before,
ul.social-nav li a[href*="pinterest"]:before,
ul.social-nav li a[href*="instagram"]:before,
ul.social-nav li a[href*="behance"]:before,
ul.social-nav li a[href*="vimeo"]:before,
ul.social-nav li a[href*="youtube"]:before,
ul.social-nav li a[href*="snapchat"]:before,
ul.social-nav li a[href*="medium"]:before,
ul.social-nav li a[href*="linkedin"]:before,
ul.social-nav li a[href*="flickr"]:before,
ul.social-nav li a[href*="etsy"]:before,
ul.social-nav li a[href*="dribbble"]:before,
ul.social-nav li a[href*="tumblr"]:before,
ul.social-nav li a[href*="vine"]:before,
ul.social-nav li a[href*="vk"]:before,
ul.social-nav li a[href*="del.icio"]:before,
ul.social-nav li a[href*="reddit"]:before,
ul.social-nav li a[href*="yelp"]:before,
ul.social-nav li a[href*="soundcloud"]:before,
ul.social-nav li a[href*="500px"]:before,
ul.social-nav li a[href*="digg"]:before,
ul.social-nav li a[href*="foursquare"]:before,
ul.social-nav li a[href*="houzz"]:before,
ul.social-nav li a[href*="tripadvisor"]:before,
ul.social-nav li a[href*="play.google"]:before,
ul.social-nav li a[href*="apple"]:before,
ul.social-nav li a[href*="slack"]:before,
ul.social-nav li a[href*="amazon"]:before,
ul.social-nav li a[href*="codepen"]:before,
ul.social-nav li a[href*="deviantart"]:before,
ul.social-nav li a[href*="github"]:before,
ul.social-nav li a[href*="wordpress"]:before,
ul.social-nav li a[href*="tiktok"]:before,
ul.social-nav li a[href*="unsplash"]:before,
ul.social-nav li a[href*="spotify"]:before,
ul.social-nav li a[href*="wa.me"]:before {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
}
ul.social-nav li a[href*="twitter"]:before {
    content: "\f099";
}
ul.social-nav li a[href*="facebook"]:before {
    content: "\f39e";
}
ul.social-nav li a[href*="google"]:before {
    content: "\f0d5";
}
ul.social-nav li a[href*="pinterest"]:before {
    content: "\f0d2";
}
ul.social-nav li a[href*="instagram"]:before {
    content: "\f16d";
}
ul.social-nav li a[href*="behance"]:before {
    content: "\f1b4";
}
ul.social-nav li a[href*="vimeo"]:before {
    content: "\f27d";
}
ul.social-nav li a[href*="youtube"]:before {
    content: "\f167";
}
ul.social-nav li a[href*="snapchat"]:before {
    content: "\f2ac";
}
ul.social-nav li a[href*="medium"]:before {
    content: "\f3c7";
}
ul.social-nav li a[href*="linkedin"]:before {
    content: "\f0e1";
}
ul.social-nav li a[href*="flickr"]:before {
    content: "\f16e";
}
ul.social-nav li a[href*="etsy"]:before {
    content: "\f2d7";
}
ul.social-nav li a[href*="dribbble"]:before {
    content: "\f17d";
}
ul.social-nav li a[href*="tumblr"]:before {
    content: "\f173";
}
ul.social-nav li a[href*="vine"]:before {
    content: "\f1ca";
}
ul.social-nav li a[href*="/feed/"]:before,
ul.social-nav li a[href*="?feed="]:before {
    content: "\f09e";
}
ul.social-nav li a[href*="vk"]:before {
    content: "\f189";
}
ul.social-nav li a[href*="del.icio"]:before {
    content: "\f1a5";
}
ul.social-nav li a[href*="reddit"]:before {
    content: "\f281";
}
ul.social-nav li a[href*="yelp"]:before {
    content: "\f1e9";
}
ul.social-nav li a[href*="soundcloud"]:before {
    content: "\f1be";
}
ul.social-nav li a[href*="500px"]:before {
    content: "\f26e";
}
ul.social-nav li a[href*="digg"]:before {
    content: "\f1a6";
}
ul.social-nav li a[href*="foursquare"]:before {
    content: "\f180";
}
ul.social-nav li a[href*="houzz"]:before {
    content: "\f27c";
}
ul.social-nav li a[href*="tripadvisor"]:before {
    content: "\f262";
}
ul.social-nav li a[href*="play.google"]:before {
    content: "\f3ab";
}
ul.social-nav li a[href*="apple"]:before {
    content: "\f179";
}
ul.social-nav li a[href*="slack"]:before {
    content: "\f198";
}
ul.social-nav li a[href*="amazon"]:before {
    content: "\f270";
}
ul.social-nav li a[href*="codepen"]:before {
    content: "\f1cb";
}
ul.social-nav li a[href*="deviantart"]:before {
    content: "\f1bd";
}
ul.social-nav li a[href*="github"]:before {
    content: "\f09b";
}
ul.social-nav li a[href*="wordpress"]:before {
    content: "\f411";
}
ul.social-nav li a[href*="tiktok"]:before {
    content: "\e07b";
}
ul.social-nav li a[href*="unsplash"]:before {
    content: "\e07c";
}
ul.social-nav li a[href*="spotify"]:before {
    content: "\f1bc";
}
ul.social-nav li a[href*="wa.me"]:before {
    content: "\f232";
}
.sidemenu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100000;
    display: block;
    width: 100%;
    max-width: 375px;
    height: 100%;
    transition: 0.4s;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.sidemenu:before {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    content: "";
}
.no-touch .sidemenu a:hover {
    opacity: 0.6;
}
.no-touch .sidemenu a.button:hover {
    opacity: 1;
}
.sidemenu .container {
    position: relative;
    z-index: 9;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    padding: 0 30px 60px;
    margin: 0;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-size: 0.875rem;
    overflow: auto;
    transition: transform 0.4s;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.sidemenu .container::-webkit-scrollbar {
    display: none;
}
.sidemenu .container > * {
    margin-bottom: 50px;
}
.sidemenu .container > *:last-child {
    margin-bottom: 0;
}
.sidemenu.slide-from-left {
    right: auto;
    left: 0;
}
.sidemenu.slide-from-left .container {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}
.sidemenu.fade-in .container {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.sidemenu.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.sidemenu.show .container {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.sidemenu.sidemenu-default .sidemenu-header,
.sidemenu.sidemenu-default .sidemenu-footer {
    margin-right: -30px;
    margin-left: -30px;
    width: calc(100% + 60px);
}
.sidemenu .sidemenu-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    margin-bottom: var(--spacing);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sidemenu.sidemenu-custom .sidemenu-header {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    width: auto;
    border: none;
}
.sidemenu.sidemenu-custom .container {
    padding: 0;
}
.sidemenu .sidemenu-footer {
    padding: 50px 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sidemenu .sidemenu-footer > * {
    margin-bottom: 12px;
}
.sidemenu .mobile-menu-logo {
    max-width: 50%;
}
.sidemenu .mobile-menu-logo img {
    display: block;
    max-width: inherit;
}
.sidemenu .close-button {
    position: relative;
    order: 2;
    margin-left: auto;
}
.sidemenu.fullwidth {
    max-width: 100vw;
}
.pt-menu-mobile .mobile-menu {
    display: block;
    --nav-font: var(--body-font);
}
.pt-menu-mobile .mobile-menu li {
    position: relative;
    display: block;
}
.pt-menu-mobile .mobile-menu a {
    position: relative;
    text-transform: capitalize;
}
.pt-menu-mobile .mobile-menu a:before,
.pt-menu-mobile .mobile-menu a:after {
    display: none !important;
}
.pt-menu-mobile .mobile-menu > li {
    padding: 0;
}
.pt-menu-mobile .mobile-menu > li > a {
    display: block;
    padding: 5px 0;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.35;
}
.pt-menu-mobile .mobile-menu li.current-menu-item > a,
.pt-menu-mobile .mobile-menu li.current-menu-ancestor > a {
    color: var(--primary-color);
}
.pt-menu-mobile .mobile-menu ul.sub-menu {
    display: none;
    margin: 0 0 0 30px;
}
.pt-menu-mobile .mobile-menu ul.sub-menu li a {
    padding: 4px 0;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 40px;
}
.pt-menu-mobile .mobile-menu ul.sub-menu .dropdown-toggle {
    top: 0;
}
.dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 36px;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    transition: 0.4s;
}
.dropdown-toggle:before {
    font-family: "ElegantIcons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    display: block;
    font-size: 21px;
    font-size: 1.3125rem;
    content: "\35";
}
.dropdown-toggle.toggled-on:before {
    content: "\33";
}
.dropdown-toggle.toggled-on + ul.sub-menu {
    display: block;
}
@media screen and (min-width: 1025px) {
    .site-header.site-header-layout-default .menu-toggle {
        display: none;
    }
    .site-header.site-header-layout-default .header-section.menu {
        display: block;
        max-width: calc(100% - 300px);
    }
    .pt-menu-mobile .mobile-menu > li > a {
        font-size: 36px;
        font-size: 2.25rem;
    }
    .pt-menu-mobile .mobile-menu .dropdown-toggle {
        top: 7px;
    }
}
@media screen and (max-width: 1024px) {
    .site-header .header-top-bar {
        display: none;
    }
}
.meta-wrap .meta:last-child .meta-item:last-child {
    margin-right: 0;
}
.meta-wrap .meta:last-child .meta-item:last-child:after {
    display: none;
}
.meta {
    display: inline-flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: var(--text-lighter);
}
.meta .meta-item {
    margin-right: 4px;
}
.meta .meta-item:last-child {
    margin-right: 0;
}
.meta .meta-item:after {
    position: relative;
    display: inline-block;
    content: ".";
}
.no-touch .meta .meta-item a:hover {
    color: inherit;
}
.cat-links {
    display: inline-flex;
    color: var(--primary-color);
    flex-wrap: wrap;
}
.post-header-section .cat-links {
    justify-content: center;
}
.cat-links a:after,
.cat-links span:after {
    position: relative;
    display: inline-block;
    content: ",";
}
.cat-links a:last-child:after,
.cat-links span:last-child:after {
    display: none;
}
.cat-links a,
.cat-links span {
    margin-right: 4px;
}
.read-more-btn {
    border: none !important;
}
.read-more-btn:before {
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    content: "";
    transition: transform 0.2s ease;
    transform-origin: 100% 0;
}
.read-more-btn span {
    position: relative;
}
.read-more-btn span:after {
    font-family: "ElegantIcons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\24";
    font-size: 20px;
    font-size: 1.25rem;
    position: absolute;
    right: -6px;
    top: 50%;
    -webkit-transform: translate(70%, -50%);
    -ms-transform: translate(70%, -50%);
    transform: translate(70%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}
.no-touch .posts .post:hover .read-more-btn:before {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}
.no-touch .posts .post:hover .read-more-btn span:after {
    -webkit-transform: translate(100%, -50%);
    -ms-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    opacity: 1;
}
.post-excerpt {
    color: var(--content-color);
    font-size: 16px;
    font-size: 1rem;
}
.posts {
    --post-gap: 35px;
    --img-ratio: 66.6666%;
    --ratio: 0.6666;
}
.posts .posts-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.posts .post,
.posts .featured-img img,
.posts .post-content {
    width: 100%;
}
.posts .post {
    transition: all 0.3s ease-in-out;
}
.no-touch .posts .post:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}
.no-touch .posts .post:hover .featured-img a {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}
.posts.img-ratio-4-3 {
    --img-ratio: 75%;
    --ratio: 0.75;
}
.posts.img-ratio-1-1 {
    --img-ratio: 100%;
    --ratio: 1;
}
.posts.img-ratio-2-3 {
    --img-ratio: 150%;
    --ratio: 1.5;
}
.posts.img-ratio-4-5 {
    --img-ratio: 125%;
    --ratio: 1.25;
}
.posts .meta-wrap {
    margin-bottom: 10px;
}
.posts .post-header,
.posts .post-title,
.posts .post-excerpt {
    margin-bottom: 15px;
}
.posts .post-title {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 1.2;
}
.no-touch .posts .post-title a:hover {
    color: inherit;
    opacity: 0.6;
}
.posts .post-excerpt {
    line-height: 1.35;
}
.posts .post-excerpt:last-child,
.posts .post-excerpt p {
    margin-bottom: 0;
}
.posts .post-header {
    width: 100%;
}
.posts .post-header:last-child,
.posts .post-header > *:last-child {
    margin-bottom: 0;
}
.posts .post {
    position: relative;
    margin-top: var(--post-gap);
    padding-bottom: 15px;
    overflow: hidden;
}
.posts .post:first-child {
    margin-top: 0;
}
.posts .post .featured-img {
    position: relative;
    width: 100%;
    margin: 0 0 20px;
    overflow: hidden;
}
.posts .post .featured-img a,
.posts .post .featured-img img {
    display: block;
}
.posts .post .featured-img a {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
    transition: 0.35s ease-in-out;
}
.posts .post .post-content {
    position: relative;
    width: 100%;
}
.posts .post.sticky .post-title a {
    position: relative;
    padding-left: 20px;
}
.posts .post.sticky .post-title a:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    content: "\f02e";
    color: var(--primary-color);
    font-size: 16px;
    font-size: 1rem;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.posts .overlay-label {
    position: absolute;
    z-index: 9;
    opacity: 0;
    transition: opacity 0.4s;
}
.posts .overlay-label.format-label {
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    line-height: 60px;
    text-align: center;
    opacity: 1;
    pointer-events: none;
}
.posts .overlay-label.format-label span:before {
    font-family: "ElegantIcons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    display: block;
    line-height: 60px;
    font-size: 18px;
}
.posts .overlay-label.format-label.format-video span:before {
    content: "\45";
    font-size: 32px;
}
.posts .overlay-label.format-label.format-gallery span:before {
    content: "\e005";
}
.posts.layout-masonry .masonry-column {
    position: relative;
    width: 100%;
}
.posts.layout-grid .featured-img a,
.posts.layout-list .featured-img a {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-top: var(--img-ratio);
}
.posts.layout-grid .featured-img a img,
.posts.layout-list .featured-img a img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.posts.layout-overlay .post {
    background: #000;
    color: #fff;
    padding-bottom: 0;
}
.posts.layout-overlay .post .featured-img {
    margin-bottom: 0;
}
.posts.layout-overlay .post .post-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    pointer-events: none;
}
.posts.layout-overlay .post .post-content a {
    pointer-events: auto;
}
.posts.layout-overlay .post .meta {
    color: inherit;
}
.posts.layout-overlay .post:not(.has-post-thumbnail) .post-content {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-top: var(--img-ratio);
    padding-bottom: 0;
}
.posts.layout-overlay .featured-img {
    z-index: 1;
}
.posts.layout-overlay .post-header {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 150px 24px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.posts.layout-overlay .post-header > * {
    position: relative;
    z-index: 3;
}
.posts.layout-overlay .post-title {
    color: inherit;
}
.no-touch .posts.layout-overlay .post-title a:hover {
    opacity: 0.9;
}
.posts.layout-overlay .post-title:not(:last-child) {
    margin-bottom: 10px;
}
.posts.layout-overlay .featured-img {
    position: relative;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}
.posts.layout-overlay .no-touch .post:hover .featured-img {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}
.posts.layout-overlay .no-touch .post:hover .featured-img a {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}
.pagination {
    --pagi-size: 42px;
    position: relative;
    width: 100%;
    margin: var(--spacing) 0 0;
    text-align: center;
    font-size: 16px;
    font-size: 1rem;
    line-height: var(--pagi-size);
    clear: both;
}
.pagination .pagination-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
}
.pagination .page-numbers {
    padding: 0;
    height: var(--pagi-size);
    text-align: center;
}
.pagination .page-numbers.current {
    background: var(--primary-color);
    color: #fff;
}
.pagination span.page-numbers.prev,
.pagination span.page-numbers.next {
    opacity: 0.35;
}
.pagination .prev:after,
.pagination .next:after {
    font-family: "ElegantIcons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    line-height: var(--pagi-size);
    position: relative;
    transition: transform 0.3s ease-out;
}
.pagination .prev:after {
    content: "\34";
}
.pagination .next:after {
    content: "\35";
}
.pagination .prev-next {
    font-size: 14px;
    font-size: 0.875rem;
}
.pagination .prev-next .prev,
.pagination .prev-next .next {
    position: relative;
    padding: 0 18px;
    margin: 0 10px;
    width: auto;
}
.pagination .prev-next .prev:after,
.pagination .prev-next .next:after {
    position: absolute;
    top: 0;
}
.pagination .prev-next .prev {
    padding-left: 44px;
}
.pagination .prev-next .prev:after {
    left: 18px;
}
.pagination .prev-next .next {
    padding-right: 44px;
}
.pagination .prev-next .next:after {
    right: 18px;
}
.pagination .with-page-numbers .page-numbers {
    width: var(--pagi-size);
    border-radius: 999px;
}
.pagination .with-page-numbers .page-numbers.prev,
.pagination .with-page-numbers .page-numbers.next {
    font-size: 0;
}
.pagination .with-page-numbers .page-numbers.prev:after,
.pagination .with-page-numbers .page-numbers.next:after {
    font-size: 20px;
    font-size: 1.25rem;
}
.no-touch .pagination .with-page-numbers a:hover {
    opacity: 0.5;
}
.pagination a.load-more-btn {
    position: relative;
    display: block;
    overflow: hidden;
    width: fit-content;
    width: -moz-max-content;
    margin: 0 auto;
    padding: 0 30px;
    background: var(--text-color);
    border-radius: 99px;
    color: var(--bg-color) !important;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0s;
    overflow-anchor: none;
    transition: transform 0.4s;
}
.no-touch .pagination a.load-more-btn:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}
.pagination a.load-more-btn span {
    position: relative;
    z-index: 3;
}
.pagination a.load-more-btn.disabled {
    pointer-events: none;
}
.pagination .load-more .loading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
.pagination .load-more.loading {
    pointer-events: none;
}
.pagination .load-more.loading .btn-text {
    opacity: 0;
}
.pagination .load-more.loading .loading-text {
    opacity: 1;
    -webkit-animation: fade 3s linear infinite;
    animation: fade 3s linear infinite;
}
.pagination .load-more.infinite .loading-text {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.pagination .no-more-posts-message {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.4;
}
.pagination .no-more-posts-message:before,
.pagination .no-more-posts-message:after {
    content: " - ";
}
@media screen and (min-width: 768px) {
    .posts.layout-list .post {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .posts.layout-list .featured-img {
        margin-right: 35px;
        margin-bottom: 0;
        width: 360px;
    }
    .posts.layout-list .post-content {
        padding: 0;
    }
    .posts.layout-list .post-content > * {
        width: 100%;
    }
    .posts.layout-list .featured-img + .post-content {
        padding: 0;
        width: calc(100% - 395px);
    }
    .posts.layout-masonry .posts-wrapper {
        display: block;
        margin-left: calc(0px - var(--post-gap));
    }
    .posts.layout-masonry .masonry-column {
        float: left;
        width: 50%;
        padding-left: var(--post-gap);
    }
    .posts.layout-grid .posts-wrapper {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        margin-left: calc(0px - var(--post-gap));
    }
    .posts.layout-grid .post {
        margin-right: 0;
        margin-left: var(--post-gap);
        width: calc(50% - var(--post-gap));
    }
    .posts.layout-grid .post:nth-child(-n + 2) {
        margin-top: 0 !important;
    }
    .posts.layout-grid.column-3 .post {
        width: calc(33.333333% - var(--post-gap));
    }
    .posts.layout-grid.column-3 .post:nth-child(-n + 3) {
        margin-top: 0 !important;
    }
}
@media screen and (min-width: 1024px) {
    .posts .post-title {
        font-size: 24px;
        font-size: 1.5rem;
    }
    .posts.layout-standard .post-title {
        font-size: 32px;
        font-size: 2rem;
    }
    .posts.layout-masonry.column-3 .masonry-column {
        width: 33.333333%;
    }
}
@media screen and (min-width: 1025px) {
    .posts .post-title {
        font-size: 28px;
        font-size: 1.75rem;
    }
    .site-content[class*="with-sidebar-"] .primary .posts.layout-masonry.column-3 .post-title,
    .site-content[class*="with-sidebar-"] .primary .posts.layout-grid.column-3 .post-title {
        font-size: 24px;
        font-size: 1.5rem;
    }
}
@media screen and (min-width: 1366px) {
    .posts {
        --post-gap: 50px;
    }
}
@media screen and (min-width: 1440px) {
    .site-content[class*="with-sidebar-"] .primary .posts.layout-masonry .post,
    .site-content[class*="with-sidebar-"] .primary .posts.layout-grid .post {
        padding-bottom: 20px;
    }
    .site-content[class*="with-sidebar-"] .primary .posts.layout-grid.layout-overlay .post {
        padding-bottom: 0;
    }
}
.page-title-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    margin-bottom: var(--spacing);
    background: var(--page-title-bg);
    color: var(--page-title-color);
    text-align: center;
    --page-title-weight: var(--hf-weight);
}
.page-title-section.page-title-default {
    padding: 80px 0;
}
.page-title-section.page-title-large {
    padding: 100px 0;
}
.page-title-section .entry-title {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1;
    font-weight: var(--page-title-weight);
}
.page-title-section .entry-title:not(:first-child) {
    margin-top: 20px;
}
.page-title-section .entry-title:not(:last-child) {
    margin-bottom: 20px;
}
.page-title-section p,
.page-title-section .description {
    margin: 0 auto;
    max-width: 800px;
}
.page-title-section .container {
    z-index: 9;
}
.page-title-section .page-title-bg + .container .breadcrumbs {
    opacity: 1;
}
.no-touch .page-title-section .page-title-bg + .container .breadcrumbs a:hover {
    opacity: 0.7;
}
.page-title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.post-header-section .page-title-bg:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.45;
    content: "";
}
.post-header-section .page-title-bg + .container {
    color: #fff;
}
.post-header-section .page-title-bg + .container .cat-links {
    color: #fff;
}
.no-touch .post-header-section .page-title-bg + .container a:hover {
    opacity: 0.7;
}
.post-header-section .page-title-bg + .container .meta {
    color: #ddd;
}
.no-touch .post-header-section .page-title-bg + .container .meta a:hover {
    color: #fff;
    opacity: 1;
}
.overlap-header ~ .contentAjax .site-content .page-title-section .container {
    margin-top: 100px;
}
.single .primary,
.page .primary {
    margin-right: auto;
    margin-left: auto;
}
.single .primary > .post .entry-content > *:last-child,
.page .primary > .post .entry-content > *:last-child {
    margin-bottom: 0;
}
.single-custom_blocks .primary,
.single-custom_site_headers .primary {
    max-width: 100%;
}
.article-footer {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 2px dotted var(--border-color);
    color: var(--text-lighter);
}
.article-footer .post-tag-cloud {
    position: relative;
    padding-left: 25px;
}
.article-footer .post-tag-cloud:not(:only-child) {
    max-width: calc(100% - 250px);
}
.article-footer .post-tag-cloud:before {
    position: absolute;
    top: 0;
    left: 0;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 28px;
    content: "\f02c";
}
.article-footer .post-tag-cloud .tagcloud {
    display: flex;
    flex-wrap: wrap;
    margin: -4px -3px -2px;
}
.article-footer .post-tag-cloud .tagcloud a {
    margin: 4px 3px;
}
.article-share {
    --share-btn-size: 45px;
}
.article-share .article-share-container a {
    position: relative;
    display: inline-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: var(--share-btn-size);
    height: var(--share-btn-size);
    line-height: var(--share-btn-size);
    border-radius: 50%;
    border: 1px solid #f2f2f2;
    color: var(--icon-color);
    text-align: center;
}
.dark-color .article-share .article-share-container a {
    border-color: #393939;
}
.article-share .article-share-container a i {
    line-height: var(--share-btn-size);
}
.no-touch .article-share .article-share-container a:hover {
    color: var(--bg-color);
    background: var(--icon-color);
    border-color: var(--icon-color);
}
.article-share .article-share-container a[title="Like"] {
    --icon-color: #e92e2e;
}
.article-share .article-share-container a[title="Like"] span.like-count {
    position: absolute;
    top: -35px;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
    display: block;
    width: 40px;
    color: var(--text-color);
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    opacity: 0;
    transition: 0.3s;
}
.no-touch .article-share .article-share-container a[title="Like"]:hover span.like-count {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.article-share .article-share-container a[title="Facebook"] {
    --icon-color: #3b5998;
}
.article-share .article-share-container a[title="Twitter"] {
    --icon-color: #1da1f2;
}
.article-share .article-share-container a[title="Pinterest"] {
    --icon-color: #bd081c;
}
.article-share .article-share-container a[title="WhatsApp"] {
    --icon-color: #25d366;
}
.article-share .article-share-container a[title="LinkedIn"] {
    --icon-color: #0077b5;
}
.article-share .article-share-container a span {
    display: none;
}
.article-share:not(:first-child) {
    margin-top: -8px;
    margin-bottom: -8px;
}
.comments-area {
    padding-top: var(--spacing);
}
.comments-area ol.comment-list {
    margin: 0 auto;
    list-style: none;
}
.comments-area ol.comment-list + .comment-respond {
    margin-top: 40px;
}
.comments-area ol.comment-list ol.children {
    margin: 30px 0 0 30px;
}
.comments-area ol.comment-list li.comment,
.comments-area ol.comment-list li.pingback,
.comments-area ol.comment-list li.trackback {
    position: relative;
    padding: 30px 0;
    list-style: none;
    border-top: 1px dotted var(--border-color);
}
.comments-area ol.comment-list li:not(.depth-1):last-of-type {
    padding-bottom: 0;
}
.comments-area ol.comment-list li.pingback,
.comments-area ol.comment-list li.trackback {
    font-weight: 700;
}
.comments-area ol.comment-list li.pingback a,
.comments-area ol.comment-list li.trackback a {
    font-weight: 400;
}
.comments-area ol.comment-list li:last-child {
    margin-bottom: 0 !important;
}
.comments-area ol.comment-list li.comment .comment-body {
    position: relative;
}
.comments-area ol.comment-list li .comment-meta {
    padding-left: 64px;
    margin-bottom: 10px;
}
.comments-area ol.comment-list li .comment-meta .comment-author.vcard {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 30px;
}
.comments-area ol.comment-list li .comment-meta .comment-author.vcard img {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.comments-area ol.comment-list li .comment-meta .comment-author.vcard b.fn {
    font-weight: 600;
}
.no-touch .comments-area ol.comment-list li .comment-meta .comment-author.vcard b.fn a:hover {
    color: var(--primary-color);
}
.comments-area ol.comment-list li .comment-meta .comment-author.vcard .author-label {
    display: none;
}
.comments-area ol.comment-list li .comment-meta .comment-metadata {
    display: block;
    font-size: 12px;
    font-size: 0.75rem;
}
.comments-area ol.comment-list li .comment-meta .comment-metadata a {
    color: var(--text-lighter);
}
.comments-area ol.comment-list li a.comment-edit-link {
    margin-left: 6px;
    font-size: 0;
}
.comments-area ol.comment-list li a.comment-edit-link:before {
    font-family: "ElegantIcons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-size: 12px;
    font-size: 0.75rem;
    content: "\6c";
}
.comments-area ol.comment-list li .comment-content > *:last-child {
    margin-bottom: 0;
}
.comments-area ol.comment-list li .comment-content img.wprm-comment-rating {
    margin: 10px 0;
}
.comments-area ol.comment-list li .comment-content p {
    color: var(--content-color);
    font-size: inherit;
}
.comments-area ol.comment-list li .comment-content p,
.comments-area ol.comment-list li .comment-content dd,
.comments-area ol.comment-list li .comment-content address {
    margin-bottom: 10px;
}
.comments-area ol.comment-list li .comment-content hr {
    margin-top: 30px;
    margin-bottom: 30px;
}
.comments-area ol.comment-list li .comment-content li {
    margin-bottom: 8px;
}
.comments-area ol.comment-list li .comment-content li ul,
.comments-area ol.comment-list li .comment-content li ol {
    margin-top: 8px;
}
.comments-area ol.comment-list li .comment-content blockquote {
    padding: 30px;
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.025);
    border-left: 4px solid var(--primary-color);
}
.comments-area ol.comment-list li .comment-content blockquote p {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.8;
}
.comments-area ol.comment-list li .comment-content blockquote p:last-child {
    margin-bottom: 0;
}
.comments-area ol.comment-list li .comment-content blockquote:last-child {
    margin-bottom: 0;
}
.comments-area ol.comment-list li .reply {
    margin-top: 14px;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}
.comments-area ol.comment-list li .reply a {
    position: relative;
    display: inline-block;
    line-height: 22px;
}
.comments-area ol.comment-list li .reply a:before {
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    content: "";
    transition: transform 0.2s ease;
    transform-origin: 100% 0;
}
.no-touch .comments-area ol.comment-list li .reply a:hover:before {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}
.comments-area ol.comment-list li.bypostauthor > .comment-body b.fn:after {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 4px;
    border-radius: 50%;
    color: var(--primary-color);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    content: "\f005";
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 17px;
    text-align: center;
}
.comments-area ol.comment-list li .comment-respond {
    margin-top: 50px;
}
.comments-area ol.comment-list li .comment-respond #cancel-comment-reply-link {
    padding: 0 15px;
    background: none;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    font-family: var(--body-font);
    opacity: 0.6;
}
.no-touch .comments-area ol.comment-list li .comment-respond #cancel-comment-reply-link:hover {
    opacity: 1;
}
.comments-area ol.comment-list li .comment-respond .comment-reply-title-wrap {
    display: block;
    text-align: left;
}
.comments-area ol.comment-list li .comment-respond .comment-reply-title-wrap .title-decor-line {
    display: none;
}
.comments-area ol.comment-list li .comment-respond .comment-reply-title-wrap .comment-reply-title {
    padding: 0;
    white-space: normal;
}
.comments-area .comment-form {
    color: var(--content-color);
}
.comments-area .navigation {
    margin-top: 20px;
    margin-bottom: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}
.comments-area .navigation .nav-links {
    padding: 15px 0;
    display: flex;
}
.comments-area .navigation .nav-links a {
    display: block;
    color: var(--content-color);
    opacity: 0.7;
    font-size: 12px;
    font-size: 0.75rem;
}
.no-touch .comments-area .navigation .nav-links a:hover {
    opacity: 1;
}
.comments-area .navigation .nav-links .nav-previous {
    margin: 0;
}
.comments-area .navigation .nav-links .nav-next {
    margin: 0 0 0 auto;
}
.comments-area .navigation .nav-links .nav-previous a:before,
.comments-area .navigation .nav-links .nav-next a:after {
    display: inline-block;
    font-family: "ElegantIcons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-size: 12px;
    font-size: 0.75rem;
}
.comments-area .navigation .nav-links .nav-previous a:before {
    content: "\34";
    margin-right: 8px;
}
.comments-area .navigation .nav-links .nav-next a:after {
    content: "\35";
    margin-left: 8px;
}
.comments-area .comments-closed {
    padding: 16px 0;
    margin-bottom: 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-weight: 400;
    opacity: 0.5;
}
.related-posts {
    margin-top: var(--spacing);
}
.author-info-box {
    position: relative;
    padding: 40px;
    margin: 50px 0 0;
    text-align: center;
    background: var(--light-grey);
    color: var(--text-color);
}
.article-footer + .author-info-box {
    margin-top: 30px;
}
.author-info-box .author-photo {
    margin: 0 auto 15px;
}
.author-info-box .author-info .author-role {
    margin-top: 6px;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-color);
}
.author-info-box .author-info .author-name {
    font-size: 24px;
    font-size: 1.5rem;
}
.no-touch .author-info-box .author-info .author-name a:hover {
    opacity: 0.5;
}
.author-info-box .author-info p {
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1rem;
}
.author-info-box .author-info p:first-child {
    margin-top: 10px;
}
.author-social ul.social-nav {
    margin: 0;
}
.author-social ul.social-nav li:not(:last-child) a {
    margin-right: 15px;
}
.author-info-box .author-social ul.social-nav li a:before {
    font-size: 14px;
    font-size: 0.875rem;
}
.page-title-section .author-social {
    margin-top: 15px;
}
.single .post-navigation {
    padding-bottom: 50px;
    border-bottom: 2px solid;
}
.single .post-navigation .nav-links {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
    margin-top: 50px;
}
.single .post-navigation .nav-links a {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    height: 100%;
    transition: 0s;
    overflow: hidden;
}
.single .post-navigation .nav-links a .post-title {
    font-weight: 600;
    font-size: 20px;
    font-size: 1.25rem;
    transition: all 0.4s;
    line-height: 1.2;
}
.single .post-navigation .nav-links a > * {
    margin-left: 0;
}
.no-touch .single .post-navigation .nav-links a:hover .post-title {
    opacity: 0.6;
}
.single .post-navigation .nav-previous:not(:only-child),
.single .post-navigation .nav-next:not(:only-child) {
    width: 50%;
}
.single .post-navigation .nav-previous:not(:only-child) {
    padding-right: 20px;
}
.single .post-navigation .nav-next {
    margin-left: auto;
    text-align: right;
}
.single .post-navigation .nav-next:not(:only-child) {
    padding-left: 20px;
}
.single .post-navigation .nav-next a {
    justify-content: flex-end;
}
.single .post-navigation .post-info span {
    display: block;
    word-break: break-word;
}
.single .post-navigation .post-info span.text {
    margin-bottom: 8px;
    font-size: 12px;
    font-size: 0.75rem;
    opacity: 0.5;
}
.single .post-navigation .nav-previous .post-info span.text:before,
.single .post-navigation .nav-next .post-info span.text:after {
    display: inline-block;
    font-family: "ElegantIcons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-size: 12px;
    font-size: 0.75rem;
}
.single .post-navigation .nav-previous .post-info span.text:before {
    content: "\34";
}
.single .post-navigation .nav-next .post-info span.text:after {
    content: "\35";
}
.search-results .posts .featured-img {
    margin-bottom: 20px;
}
.search-results .posts .featured-img img {
    display: block;
}
.error404 .primary {
    padding-bottom: 0;
}
.page.page-404 .page-404-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    padding: var(--spacing) 0;
    min-height: calc(100vh - 240px);
    text-align: center;
    font-size: var(--post-text-size);
}
.page.page-404 .page-404-content > *:last-child {
    margin-bottom: 0;
}
.page.page-404 .page-404-content .entry-title {
    line-height: 1.2;
    margin-bottom: 15px;
}
.search-no-results .no-results.not-found {
    text-align: center;
    font-size: var(--post-text-size);
}
.search-no-results .no-results.not-found .entry-title {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 30px;
}
.search-no-results .no-results.not-found .search-form {
    margin-right: auto;
    margin-left: auto;
    max-width: 420px;
}
.page-links {
    display: block;
    clear: both;
    --pagi-size: 42px;
    line-height: var(--pagi-size);
    font-size: 15px;
    font-size: 0.9375rem;
}
.page-links .page-links-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.page-links .page-links-title {
    margin-right: 10px;
}
.page-links .post-page-numbers {
    width: var(--pagi-size);
    height: var(--pagi-size);
    border-radius: 999px;
    text-align: center;
    line-height: var(--pagi-size);
}
.page-links .post-page-numbers.current {
    background: var(--primary-color);
    color: #fff;
}
.tribe-events-event-meta.primary {
    margin: 0;
}
.single .tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next {
    margin-left: auto;
}
.single-tribe_events .page-title-section .page-title-bg:not(.page-title-default-background-image):after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.25;
    content: "";
}
.single-tribe_events .page-title-section .page-title-bg:not(.page-title-default-background-image) + .container {
    color: #fff;
}
.tribe-events-content a.button {
    border: none !important;
    transition: all 0.4s;
}
@media screen and (min-width: 600px) {
    .comments-area {
        --cauthor-img: 64px;
        --side-space: calc(var(--cauthor-img) + 20px);
    }
    .comments-area ol.comment-list li.comment .comment-body {
        padding-left: var(--side-space);
    }
    .comments-area ol.comment-list li .comment-meta {
        padding: 0;
    }
    .comments-area ol.comment-list li .comment-meta .comment-author.vcard {
        margin-bottom: 5px;
    }
    .comments-area ol.comment-list li .comment-meta .comment-author.vcard img {
        width: var(--cauthor-img);
        height: var(--cauthor-img);
    }
}
@media screen and (min-width: 768px) {
    .page-title-section.page-title-large .entry-title {
        font-size: 60px;
        font-size: 3.75rem;
    }
    .page-title-section.page-title-large p,
    .page-title-section.page-title-large .description {
        font-size: 18px;
        font-size: 1.125rem;
    }
    .comments-area ol.comment-list ol.children {
        margin-left: var(--side-space);
    }
    .comments-area .comment-respond form.comment-form {
        margin: 0 -15px;
    }
    .comments-area .comment-respond form.comment-form > * {
        padding: 0 15px;
    }
    .comments-area .comment-respond form.comment-form .comment-form-author,
    .comments-area .comment-respond form.comment-form .comment-form-email,
    .comments-area .comment-respond form.comment-form .comment-form-url {
        float: left;
        width: 33.333333%;
    }
    .author-info-box {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        text-align: left;
    }
    .author-info-box .author-photo {
        align-self: flex-start;
        margin: 0 25px 0 0;
    }
    .author-info-box .author-photo + .author-info {
        width: calc(100% - 145px);
    }
    .author-info-box .author-info {
        width: 100%;
    }
    .page.page-404 .page-404-content .entry-title {
        font-size: 48px;
        font-size: 3rem;
    }
}
@media screen and (min-width: 1024px) {
    .comments-area ol.comment-list li .reply {
        position: absolute;
        top: 0;
        right: 0;
        margin-top: 0;
    }
    .related-posts .posts {
        --post-gap: 35px;
    }
    .related-posts .posts .post-title {
        font-size: 24px;
        font-size: 1.5rem;
    }
    .search-no-results .no-results.not-found .entry-title {
        font-size: 48px;
        font-size: 3rem;
    }
}
@media screen and (min-width: 1025px) {
    .page .site-content[class*="with-sidebar-"] .primary,
    .single .site-content[class*="with-sidebar-"] .primary {
        max-width: none;
    }
    .page-title-section .entry-title {
        font-size: 60px;
        font-size: 3.75rem;
    }
    .page-title-section.page-title-default {
        padding: 100px 0;
    }
    .page-title-section.page-title-large {
        padding: 150px 0;
    }
    .page-title-section.page-title-large .entry-title {
        font-size: 80px;
        font-size: 5rem;
    }
    .page-title-section.page-title-small .entry-title {
        font-size: 42px;
        font-size: 2.625rem;
    }
    .comments-area {
        --cauthor-img: 115px;
    }
    .page.page-404 .page-404-content .entry-title {
        font-size: 80px;
        font-size: 5rem;
    }
}
@media screen and (max-width: 480px) {
    .article-footer {
        flex-wrap: wrap;
    }
    .article-footer .post-tag-cloud:not(:only-child) {
        max-width: none;
    }
    .article-share:not(:first-child) {
        margin-top: 8px;
        margin-bottom: 0;
    }
    .author-info-box {
        padding: 30px;
    }
    .author-info-box .author-photo {
        width: 80px;
    }
}
.widget {
    position: relative;
    margin: 0 auto;
}
.widget select {
    display: block;
    width: 100%;
}
.widget.widget_calendar table#wp-calendar {
    margin-bottom: 0;
    border: none;
    border-spacing: 2px;
}
.widget.widget_calendar table#wp-calendar caption {
    margin-top: 0;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
}
.widget.widget_calendar table#wp-calendar th,
.widget.widget_calendar table#wp-calendar td {
    padding: 0 5px;
    text-align: center;
    border: none !important;
}
.widget.widget_calendar table#wp-calendar th {
    font-size: 10px;
    font-size: 0.625rem;
    font-weight: 400;
}
.widget.widget_calendar table#wp-calendar td {
    font-size: 13px;
    font-size: 0.8125rem;
}
.widget.widget_calendar table#wp-calendar tbody td {
    position: relative;
    background: #f7f7f7;
    line-height: 40px;
}
.dark-color .widget.widget_calendar table#wp-calendar tbody td {
    background: #363636;
}
.widget.widget_calendar table#wp-calendar tbody td[colspan="2"],
.widget.widget_calendar table#wp-calendar tbody td[colspan="3"],
.widget.widget_calendar table#wp-calendar tbody td[colspan="4"],
.widget.widget_calendar table#wp-calendar tbody td[colspan="5"],
.widget.widget_calendar table#wp-calendar tbody td[colspan="6"] {
    background: none;
}
.widget.widget_calendar table#wp-calendar tbody td a {
    font-weight: 800;
}
.widget.widget_calendar table#wp-calendar tbody td a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.1;
    content: "";
}
.widget.widget_calendar table#wp-calendar tfoot td {
    line-height: 36px;
    font-size: 11px;
    font-size: 0.6875rem;
    text-transform: uppercase;
}
.widget.widget_calendar table#wp-calendar tfoot td a {
    padding: 2px 10px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    color: inherit;
}
.dark-color .widget.widget_calendar table#wp-calendar tfoot td a {
    border-color: #393939;
}
.no-touch .widget.widget_calendar table#wp-calendar tfoot td a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.widget.widget_calendar .wp-calendar-nav {
    font-size: 0;
}
.widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev,
.widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-next {
    display: inline-block;
    width: 45%;
    text-align: center;
    line-height: 36px;
    font-size: 11px;
    font-size: 0.6875rem;
    text-transform: uppercase;
}
.widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev a,
.widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-next a {
    padding: 2px 10px;
    border: 1px solid #e6e6e6;
    color: inherit;
}
.dark-color .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev a,
.dark-color .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-next a {
    border-color: #393939;
}
.no-touch .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev a:hover,
.no-touch .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-next a:hover {
    background: var(--text-color);
    border-color: var(--text-color);
    color: var(--bg-color);
}
.widget.widget_calendar .wp-calendar-nav .pad {
    display: inline-block;
    width: 10%;
}
.widget.widget_categories ul,
.widget.widget_archive ul,
.widget.widget_nav_menu ul,
.widget.widget_meta ul,
.widget.widget_pages ul,
.widget.widget_rss ul,
.widget.widget_recent_entries ul {
    margin: 0;
    list-style: none;
}
.widget.widget_categories ul li,
.widget.widget_archive ul li,
.widget.widget_nav_menu ul li,
.widget.widget_meta ul li,
.widget.widget_pages ul li,
.widget.widget_rss ul li,
.widget.widget_recent_entries ul li {
    position: relative;
}
.widget.widget_categories ul li:not(:last-child),
.widget.widget_archive ul li:not(:last-child),
.widget.widget_nav_menu ul li:not(:last-child),
.widget.widget_meta ul li:not(:last-child),
.widget.widget_pages ul li:not(:last-child),
.widget.widget_rss ul li:not(:last-child),
.widget.widget_recent_entries ul li:not(:last-child) {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.dark-color .widget.widget_categories ul li:not(:last-child),
.dark-color .widget.widget_archive ul li:not(:last-child),
.dark-color .widget.widget_nav_menu ul li:not(:last-child),
.dark-color .widget.widget_meta ul li:not(:last-child),
.dark-color .widget.widget_pages ul li:not(:last-child),
.dark-color .widget.widget_rss ul li:not(:last-child),
.dark-color .widget.widget_recent_entries ul li:not(:last-child) {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
.widget.widget_categories ul li a,
.widget.widget_archive ul li a,
.widget.widget_nav_menu ul li a,
.widget.widget_meta ul li a,
.widget.widget_pages ul li a,
.widget.widget_rss ul li a,
.widget.widget_recent_entries ul li a {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 30px;
}
.no-touch .widget.widget_categories ul li a:hover,
.no-touch .widget.widget_archive ul li a:hover,
.no-touch .widget.widget_nav_menu ul li a:hover,
.no-touch .widget.widget_meta ul li a:hover,
.no-touch .widget.widget_pages ul li a:hover,
.no-touch .widget.widget_rss ul li a:hover,
.no-touch .widget.widget_recent_entries ul li a:hover {
    color: var(--link-color);
}
.widget.widget_categories ul li ul,
.widget.widget_archive ul li ul,
.widget.widget_nav_menu ul li ul,
.widget.widget_meta ul li ul,
.widget.widget_pages ul li ul,
.widget.widget_rss ul li ul,
.widget.widget_recent_entries ul li ul {
    margin-top: 7.5px;
    margin-left: 20px;
    clear: both;
}
.widget.widget_categories ul li ul li,
.widget.widget_archive ul li ul li,
.widget.widget_nav_menu ul li ul li,
.widget.widget_meta ul li ul li,
.widget.widget_pages ul li ul li,
.widget.widget_rss ul li ul li,
.widget.widget_recent_entries ul li ul li {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}
.widget.widget_archive ul li,
.widget.widget_categories ul li {
    font-size: 14px;
    font-size: 0.875rem;
    text-align: right;
    line-height: 30px;
}
.widget.widget_archive ul li a,
.widget.widget_categories ul li a {
    float: left;
    width: 80%;
    text-align: left;
}
.widget.widget_categories ul ul li:before,
.widget.widget_nav_menu ul ul li:before,
.widget.widget_pages ul ul li:before {
    position: absolute;
    top: 1px;
    left: -20px;
    width: 20px;
    color: inherit;
    font-family: "ElegantIcons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\35";
    line-height: inherit;
    text-align: left;
    color: var(--primary-color);
}
.widget.widget_categories ul li a:not(:last-child) {
    margin-bottom: 6px;
}
.widget.widget_recent_entries ul li a {
    display: block;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
}
.widget.widget_recent_entries .post-date {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    font-size: 0.8125rem;
    opacity: 0.5;
}
.widget.widget_recent_comments ul {
    margin: 0;
    list-style: none;
}
.widget.widget_recent_comments ul li {
    font-size: 14px;
    font-size: 0.875rem;
}
.widget.widget_recent_comments ul li:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.widget.widget_recent_comments ul li > a {
    display: block;
    margin-top: 5px;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
}
.no-touch .widget.widget_recent_comments ul li > a:hover {
    color: var(--primary-color);
}
.widget.widget_rss .widget-title .rsswidget:first-child .rss-widget-icon {
    display: none;
}
.widget.widget_rss .widget-title .rsswidget:first-child:after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    content: "\f09e";
    color: #f7943e;
}
.widget.widget_rss ul li:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.widget.widget_rss ul li a.rsswidget {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
}
.widget.widget_rss ul li .rss-date {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    font-size: 0.8125rem;
    opacity: 0.5;
}
.widget.widget_rss ul li .rssSummary {
    margin-top: 7.5px;
    font-size: 14px;
    font-size: 0.875rem;
}
.widget.widget_rss ul li .rssSummary + cite {
    display: block;
    margin-top: 7.5px;
}
.widget.widget_rss ul li cite {
    font-size: 13px;
    font-size: 0.8125rem;
}
.widget.widget_tag_cloud,
.elementor-widget-wp-widget-tag_cloud {
    font-size: 0;
}
.widget.widget_tag_cloud .tagcloud,
.elementor-widget-wp-widget-tag_cloud .tagcloud {
    display: flex;
    flex-wrap: wrap;
    margin: -4px -3px;
}
.widget.widget_tag_cloud .tagcloud a,
.elementor-widget-wp-widget-tag_cloud .tagcloud a {
    margin: 4px 3px;
    line-height: 28px;
    font-size: 14px !important;
    font-size: 0.875rem !important;
}
.widget.pt-widget_cat .cat,
.elementor-widget-wp-widget-loftocean-widget-category .cat {
    width: 100%;
    margin: 0 0 15px;
    overflow: hidden;
}
.widget.pt-widget_cat .cat a,
.elementor-widget-wp-widget-loftocean-widget-category .cat a {
    position: relative;
    display: block;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0.1);
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: 0s;
}
.widget.pt-widget_cat .cat a .cat-bg,
.elementor-widget-wp-widget-loftocean-widget-category .cat a .cat-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: 0.3s ease;
}
.widget.pt-widget_cat .cat a .cat-meta,
.elementor-widget-wp-widget-loftocean-widget-category .cat a .cat-meta {
    position: relative;
    z-index: 3;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
    padding: 30px;
}
.widget.pt-widget_cat .cat a .category-name,
.elementor-widget-wp-widget-loftocean-widget-category .cat a .category-name {
    position: relative;
    z-index: 3;
    line-height: 1.5;
}
.no-touch .widget.pt-widget_cat .cat a:hover .cat-bg,
.no-touch .elementor-widget-wp-widget-loftocean-widget-category .cat a:hover .cat-bg {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.widget.pt-widget_about p:last-child,
.elementor-widget-wp-widget-loftocean-widget-profile p:last-child {
    margin-bottom: 0;
}
.widget.pt-widget_about .profile-img,
.elementor-widget-wp-widget-loftocean-widget-profile .profile-img {
    position: relative;
    z-index: 3;
    display: block;
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
}
.widget.pt-widget_about .subheading,
.elementor-widget-wp-widget-loftocean-widget-profile .subheading {
    display: block;
    margin: 0 0 15px;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
}
.widget-area .widget.pt-widget_about p,
.widget-area .elementor-widget-wp-widget-loftocean-widget-profile p {
    font-size: 16px;
    font-size: 1rem;
}
.widget.pt-widget_about .socialwidget,
.widget.pt-widget_about a.button,
.elementor-widget-wp-widget-loftocean-widget-profile .socialwidget,
.elementor-widget-wp-widget-loftocean-widget-profile a.button {
    margin-top: 20px;
}
.widget.pt-widget_opening_hours table,
.elementor-widget-wp-widget-loftocean-widget-opening-hours table {
    border: none !important;
    margin-bottom: 0;
}
.widget.pt-widget_opening_hours table th,
.widget.pt-widget_opening_hours table td,
.elementor-widget-wp-widget-loftocean-widget-opening-hours table th,
.elementor-widget-wp-widget-loftocean-widget-opening-hours table td {
    padding: 0;
    border: none !important;
    font-size: inherit;
    line-height: 1.65;
}
.widget.pt-widget_opening_hours table th,
.elementor-widget-wp-widget-loftocean-widget-opening-hours table th {
    font-weight: inherit;
}
.widget.pt-widget_instagram ul,
.elementor-widget-wp-widget-loftocean-widget-instagram ul {
    margin: -5px;
    list-style: none;
}
.widget.pt-widget_instagram ul li,
.elementor-widget-wp-widget-loftocean-widget-instagram ul li {
    float: left;
    width: 33.333333%;
    padding: 5px;
    margin: 0;
    border: none;
}
.widget.pt-widget_instagram ul li a,
.elementor-widget-wp-widget-loftocean-widget-instagram ul li a {
    position: relative;
    display: block;
    overflow: hidden;
    background: #000;
}
.no-touch .widget.pt-widget_instagram ul li a:hover .feed-bg,
.no-touch .elementor-widget-wp-widget-loftocean-widget-instagram ul li a:hover .feed-bg {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
    opacity: 0.8;
}
.widget.pt-widget_instagram ul li .feed-bg,
.elementor-widget-wp-widget-loftocean-widget-instagram ul li .feed-bg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 0;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease-out;
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}
.widget.pt-widget_instagram ul li .feed-video,
.elementor-widget-wp-widget-loftocean-widget-instagram ul li .feed-video {
    margin-bottom: 0;
}
.widget.pt-widget_instagram .ins-follow-btn,
.elementor-widget-wp-widget-loftocean-widget-instagram .ins-follow-btn {
    margin: 15px auto 0;
    text-align: center;
}
.widget.pt-widget_instagram .ins-follow-btn a.button,
.elementor-widget-wp-widget-loftocean-widget-instagram .ins-follow-btn a.button {
    padding: 0 20px;
    line-height: 36px;
}
.widget.pt-widget_instagram.column-4 ul li,
.elementor-widget-wp-widget-loftocean-widget-instagram.column-4 ul li {
    width: 25%;
}
.widget.pt-widget_instagram.column-5 ul li,
.elementor-widget-wp-widget-loftocean-widget-instagram.column-5 ul li {
    width: 20%;
}
.widget.pt-widget_instagram.column-6 ul li,
.elementor-widget-wp-widget-loftocean-widget-instagram.column-6 ul li {
    width: 16.6666%;
}
.widget.pt-widget_instagram.column-7 ul li,
.elementor-widget-wp-widget-loftocean-widget-instagram.column-7 ul li {
    width: 14.285%;
}
.widget.pt-widget_instagram.column-8 ul li,
.elementor-widget-wp-widget-loftocean-widget-instagram.column-8 ul li {
    width: 12.5%;
}
.widget.loftocean-widget_facebook {
    overflow: hidden;
}
.widget.loftocean-widget_facebook > div {
    text-align: center;
}
.widget.pt-widget_posts ul,
.elementor-widget-wp-widget-loftocean-widget-posts ul {
    margin: 0;
    list-style: none;
}
.widget.pt-widget_posts ul li,
.elementor-widget-wp-widget-loftocean-widget-posts ul li {
    position: relative;
    padding: 0;
}
.widget.pt-widget_posts ul li:not(:first-child),
.elementor-widget-wp-widget-loftocean-widget-posts ul li:not(:first-child) {
    margin-top: 20px;
}
.widget.pt-widget_posts .thumbnail,
.widget.pt-widget_posts .post-content,
.elementor-widget-wp-widget-loftocean-widget-posts .thumbnail,
.elementor-widget-wp-widget-loftocean-widget-posts .post-content {
    position: relative;
    z-index: 2;
    pointer-events: none;
}
.widget.pt-widget_posts .thumbnail,
.elementor-widget-wp-widget-loftocean-widget-posts .thumbnail {
    position: relative;
    width: 80px;
    height: 80px;
    margin-right: 15px;
    overflow: hidden;
}
.widget.pt-widget_posts .thumbnail img,
.elementor-widget-wp-widget-loftocean-widget-posts .thumbnail img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9;
    display: block;
    margin: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.widget.pt-widget_posts .post-content,
.elementor-widget-wp-widget-loftocean-widget-posts .post-content {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}
.widget.pt-widget_posts .post-link,
.elementor-widget-wp-widget-loftocean-widget-posts .post-link {
    position: relative;
    z-index: 1;
    display: table;
    width: 100%;
    clear: both;
}
.widget.pt-widget_posts .post-title,
.elementor-widget-wp-widget-loftocean-widget-posts .post-title {
    margin-bottom: 0;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: var(--blog-title-weight);
    letter-spacing: var(--bt-letter-spacing);
    text-transform: var(--bt-text-transform);
    font-style: var(--bt-style);
    transition: color 0.4s;
}
.no-touch .widget.pt-widget_posts .post-link:hover .post-title,
.no-touch .elementor-widget-wp-widget-loftocean-widget-posts .post-link:hover .post-title {
    color: var(--primary-color);
}
.widget.pt-widget_posts .meta,
.elementor-widget-wp-widget-loftocean-widget-posts .meta {
    margin-top: 5px;
    font-size: 12px;
    font-size: 0.75rem;
}
.widget.pt-widget_posts .meta-item,
.elementor-widget-wp-widget-loftocean-widget-posts .meta-item {
    display: inline-block;
    margin-right: 5px;
}
.widget.pt-widget_posts .meta-item:last-child,
.elementor-widget-wp-widget-loftocean-widget-posts .meta-item:last-child {
    margin-right: 0;
}
.widget.pt-widget_posts .meta-item:last-child:after,
.elementor-widget-wp-widget-loftocean-widget-posts .meta-item:last-child:after {
    display: none;
}
.widget.pt-widget_posts.with-post-number ul li,
.elementor-widget-wp-widget-loftocean-widget-posts.with-post-number ul li {
    counter-increment: step-counter;
}
.widget.pt-widget_posts.with-post-number ul li .post-content,
.elementor-widget-wp-widget-loftocean-widget-posts.with-post-number ul li .post-content {
    padding-left: 0;
}
.widget.pt-widget_posts.with-post-number ul li .post-content:before,
.elementor-widget-wp-widget-loftocean-widget-posts.with-post-number ul li .post-content:before {
    display: none;
}
.widget.pt-widget_posts.with-post-number .thumbnail:before,
.widget.pt-widget_posts.with-post-number .thumbnail:after,
.elementor-widget-wp-widget-loftocean-widget-posts.with-post-number .thumbnail:before,
.elementor-widget-wp-widget-loftocean-widget-posts.with-post-number .thumbnail:after {
    transition: opacity 0.4s;
}
.widget.pt-widget_posts.with-post-number .thumbnail:before,
.elementor-widget-wp-widget-loftocean-widget-posts.with-post-number .thumbnail:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    background: #000;
    content: "";
    opacity: 0.2;
}
.widget.pt-widget_posts.with-post-number .thumbnail:after,
.elementor-widget-wp-widget-loftocean-widget-posts.with-post-number .thumbnail:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9;
    display: block;
    width: 28px;
    height: 22px;
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 22px;
    content: counter(step-counter);
    pointer-events: none;
}
.no-touch .widget.pt-widget_posts.with-post-number .post-link:hover .thumbnail:before,
.no-touch .widget.pt-widget_posts.with-post-number .post-link:hover .thumbnail:after,
.no-touch .elementor-widget-wp-widget-loftocean-widget-posts.with-post-number .post-link:hover .thumbnail:before,
.no-touch .elementor-widget-wp-widget-loftocean-widget-posts.with-post-number .post-link:hover .thumbnail:after {
    opacity: 0;
}
.widget .social-nav {
    margin: 0;
}
.wp-block-latest-posts.wp-block-latest-posts__list {
    margin: 0;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.wp-block-latest-posts.wp-block-latest-posts__list li a {
    font-family: var(--heading-font);
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 30px;
}
.wp-block-latest-comments li {
    font-size: 14px;
    font-size: 0.875rem;
}
.wp-block-latest-comments li:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.wp-block-latest-comments li .wp-block-latest-comments__comment-link {
    display: block;
    margin-top: 5px;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--heading-font);
}
.no-touch .wp-block-latest-comments li .wp-block-latest-comments__comment-link:hover {
    color: var(--primary-color);
}
.widget_block.widget_search .wp-block-search__inside-wrapper {
    position: relative;
}
.widget_block.widget_search .wp-block-search__button {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 42px;
    background: none;
    border: none;
    box-shadow: none;
    color: inherit;
    font-size: 0;
}
.widget_block.widget_search .wp-block-search__button:before {
    position: relative;
    z-index: 3;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    font-size: 16px;
    font-size: 1rem;
    line-height: 42px;
    content: "\f002";
}
.widget_block.widget_search .wp-block-search__label {
    font-family: var(--widget-title-font);
    font-size: var(--widget-title-size);
    font-weight: var(--widget-title-weight);
    letter-spacing: var(--widget-title-spacing);
    text-transform: var(--widget-title-trans);
    font-style: var(--widget-title-style);
}
.wp-block-archives,
.wp-block-categories {
    margin: 0;
    list-style: none;
}
.wp-block-archives li,
.wp-block-categories li {
    position: relative;
}
.wp-block-archives li:not(:last-child),
.wp-block-categories li:not(:last-child) {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.dark-color .wp-block-archives li:not(:last-child),
.dark-color .wp-block-categories li:not(:last-child) {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
.wp-block-archives li a,
.wp-block-categories li a {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 30px;
}
.no-touch .wp-block-archives li a:hover,
.no-touch .wp-block-categories li a:hover {
    color: var(--link-color);
}
.wp-block-archives li ul,
.wp-block-categories li ul {
    margin-top: 7.5px;
    margin-left: 20px;
    clear: both;
}
.wp-block-archives li ul li,
.wp-block-categories li ul li {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}
.widget-area .widget p,
.widget-area .widget .textwidget ul,
.widget-area .widget .textwidget ol {
    margin-bottom: 15px;
    font-size: 14px;
    font-size: 0.875rem;
}
.widget-area .widget.widget_search form.search-form {
    max-width: none;
}
.mc4wp-form {
    max-width: 100%;
}
.mc4wp-form .mc4wp-form-fields > * {
    margin-bottom: 15px;
}
.mc4wp-form .mc4wp-form-fields > *:last-child {
    margin-bottom: 0;
}
.mc4wp-form .text-small {
    font-size: 14px;
    font-size: 0.875rem;
}
.mc4wp-form .agree-to-terms {
    position: relative;
    padding-left: 23px;
}
.mc4wp-form .agree-to-terms input[type="checkbox"] {
    position: absolute;
    top: 3px;
    left: 0;
}
.mc4wp-form a {
    text-decoration: underline;
}
.mc4wp-form .fields-container {
    position: relative;
    width: 100%;
    height: 42px;
}
.mc4wp-form .fields-container input[type="email"] {
    border-color: currentColor;
}
.mc4wp-form .fields-container button[type="submit"] {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 15px;
    width: auto;
    height: 42px;
    line-height: 42px;
    padding: 0;
    background: none;
    border: none;
    color: inherit;
}
.pt-form-underline .mc4wp-form .fields-container button[type="submit"] {
    right: 0;
}
.mc4wp-form .fields-container button[type="submit"]:before {
    font-family: "ElegantIcons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\24";
}
.mc4wp-form .fields-container button[type="submit"] .btn-text {
    display: none;
}
.sidebar .widget:not(:first-child) {
    margin-top: 60px;
}
.sidebar .widget:last-child {
    margin-bottom: 0;
}
.site-footer {
    clear: both;
}
.site-footer .widget-area {
    padding: 0 0 50px;
}
.site-footer .widget-area .widget-area-row {
    width: 100%;
    overflow: hidden;
}
.site-footer .widget-area .widget {
    margin-top: 50px;
}
.site-footer .site-footer-bottom {
    padding: 30px 0;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-size: 0.875rem;
    text-align: center;
}
.site-footer .site-footer-bottom a {
    color: inherit;
}
.site-footer .site-footer-bottom .widget.widget_text {
    padding: 10px 0;
}
.site-footer .site-footer-bottom .widget.widget_nav_menu > div {
    font-size: 0;
}
.site-footer .site-footer-bottom .widget.widget_nav_menu ul {
    display: inline-block;
    margin: 10px auto;
}
.site-footer .site-footer-bottom .widget.widget_nav_menu ul li {
    display: inline-block;
    padding: 0;
    margin: 0;
    border: none;
}
.site-footer .site-footer-bottom .widget.widget_nav_menu ul li a {
    display: block;
    padding: 5px 15px;
    font-family: var(--nav-font);
    font-size: var(--fbnav-font-size);
    font-weight: var(--fbnav-font-weight);
    letter-spacing: var(--fbnav-font-letter-spacing);
    text-transform: var(--fbnav-font-transform);
}
.site-footer-instagram .widget.pt-widget_instagram {
    position: relative;
    margin: 0;
    text-align: center;
    overflow: hidden;
}
.site-footer-instagram .widget.pt-widget_instagram .widget-title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 120px;
    height: 120px;
    padding: 0 10px;
    margin-bottom: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    font-family: inherit;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    overflow: hidden;
}
.site-footer-instagram .widget.pt-widget_instagram .widget-title:before {
    display: block;
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    content: "\f16d";
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 5px;
}
.site-footer-instagram .widget.pt-widget_instagram ul li {
    padding: 0;
}
.site-footer-instagram .widget.pt-widget_instagram.column-4 ul li {
    width: 25%;
}
.site-footer-instagram .widget.pt-widget_instagram.column-5 ul li {
    width: 20%;
}
.site-footer-instagram .widget.pt-widget_instagram.column-6 ul li {
    width: 16.666%;
}
.site-footer-instagram .widget.pt-widget_instagram.column-7 ul li {
    width: 14.28%;
}
.site-footer-instagram .widget.pt-widget_instagram.column-8 ul li {
    width: 12.5%;
}
.to-top {
    --to-top-size: 56px;
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 1000;
    display: block;
    width: var(--to-top-size);
    height: var(--to-top-size);
    border-radius: 50%;
    background: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    text-align: center;
    line-height: var(--to-top-size);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.4s, transform 0.4s, background 0.4s, color 0.4s;
}
.to-top:before {
    font-family: "ElegantIcons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\32";
    font-size: 30px;
    font-size: 1.875rem;
    line-height: var(--to-top-size);
}
.to-top.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.no-touch .to-top.show:hover {
    background: var(--text-color);
    color: var(--bg-color);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}
.pt-popup-box {
    position: fixed;
    z-index: 100002;
    top: 0;
    left: 0;
    display: flex;
    padding: 0;
    max-width: 100%;
    background-color: var(--bg-color);
    overflow: hidden;
    transition: 0.4s;
    visibility: hidden;
    transition: visibility 0s 0.35s, opacity 0.3s 0s;
    opacity: 0;
}
.pt-popup-box.pt-popup-fullsize {
    width: 100%;
    height: 100%;
}
.pt-popup-box:not(.pt-popup-fullsize) {
    width: var(--popup-width);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.pt-popup-box.show {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}
.pt-popup-box .screen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.pt-popup-box .close-button {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}
.pt-popup-box.pt-popup-fullsize .close-button {
    top: 40px;
    right: 40px;
}
@media screen and (min-width: 601px) and (max-width: 782px) {
    .logged-in.admin-bar .pt-popup-box.pt-popup-fullsize .close-button {
        top: 86px;
    }
}
@media screen and (min-width: 783px) {
    .logged-in.admin-bar .pt-popup-box.pt-popup-fullsize .close-button {
        top: 72px;
    }
}
.pt-popup-box .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 0;
}
.pt-popup-box .container > * {
    width: 100%;
}
.pt-popup-box .container > .elementor {
    max-height: 100vh;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.pt-popup-box .container > .elementor::-webkit-scrollbar {
    display: none;
}
.pt-cookies-popup {
    position: fixed;
    z-index: 1003;
    left: 50%;
    bottom: 40px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    align-items: center;
    width: auto;
    height: auto;
    background: var(--bg-color);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 6px 32px 0px;
    color: var(--text-color);
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
    overflow: hidden;
    transition: 0.4s;
    visibility: hidden;
    transition: visibility 0s 0.35s, opacity 0.3s 0s;
    opacity: 0;
}
.pt-cookies-popup.show {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}
.pt-cookies-popup .container {
    padding: 10px 20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.pt-cookies-popup .cookies-msg a {
    font-weight: 600;
    color: var(--link-color);
}
.pt-cookies-popup .cookies-buttons {
    margin-left: 10px;
}
.search-screen {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    display: block;
    width: 100vw;
    height: 100%;
    padding: 0;
    background: inherit;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (min-width: 783px) {
    .logged-in.admin-bar .search-screen {
        top: 32px;
        height: calc(100% - 32px);
    }
}
.search-screen.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.search-screen .container {
    width: 100vw;
    height: 100%;
    padding: 0;
}
.search-screen .close-button {
    position: absolute;
    top: 80px;
    right: 30px;
    background: none;
    color: inherit;
}
.search-screen .close-button:before,
.search-screen .close-button:after {
    width: 38px;
    height: 2px;
}
.search-screen .search-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    max-width: 660px;
}
.search-screen .search-form:before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    left: 15px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    font-size: 16px;
    font-size: 1rem;
    line-height: 40px;
    content: "\f002";
}
.search-screen .search-form {
    max-width: 100%;
}
.search-screen .search-form input[type="search"] {
    padding: 0 0 0 50px;
    height: 50px;
    border: none;
    border-bottom: 2px solid;
    border-radius: 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 50px;
}
.search-screen button.search-submit {
    display: none;
}
.heart-beat {
    -webkit-animation: heartBeat 1s infinite;
    animation: heartBeat 1s infinite;
    display: inline-block;
}
#sb_instagram a {
    box-shadow: none;
}
@media screen and (min-width: 1024px) {
    .search-screen .close-button {
        right: 80px;
    }
    .search-screen .search-form:before {
        left: 25px;
        font-size: 20px;
        font-size: 1.25rem;
    }
    .search-screen .search-form input[type="search"] {
        padding: 0 0 0 80px;
        height: 70px;
        font-size: 30px;
        font-size: 1.875rem;
        line-height: 70px;
    }
}
@media screen and (min-width: 1025px) {
    .sidebar {
        padding-bottom: 100px;
    }
    .site-footer .site-footer-bottom:not(.column-single) .container {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .site-footer .site-footer-bottom:not(.column-single) .container > .widget {
        flex: 1;
        flex-grow: 1;
    }
    .site-footer .site-footer-bottom:not(.column-single) .container > .widget:first-child:not(:only-child) {
        text-align: left;
    }
    .site-footer .site-footer-bottom:not(.column-single) .container > .widget:first-child:not(:only-child) ul.menu {
        margin-left: -15px;
    }
    .site-footer .site-footer-bottom:not(.column-single) .container > .widget:last-child:not(:only-child) {
        text-align: right;
    }
    .site-footer .site-footer-bottom:not(.column-single) .container > .widget:last-child:not(:only-child) ul.menu {
        margin-right: -15px;
    }
}
@media screen and (max-width: 600px) {
    .site-footer-instagram .widget.pt-widget_instagram.column-4 ul li {
        width: 50%;
    }
    .site-footer-instagram .widget.pt-widget_instagram.column-5 ul li {
        width: 50%;
    }
    .site-footer-instagram .widget.pt-widget_instagram.column-5 ul li:last-child {
        display: none;
    }
    .site-footer-instagram .widget.pt-widget_instagram.column-6 ul li {
        width: 33.3333%;
    }
    .site-footer-instagram .widget.pt-widget_instagram.column-7 ul li {
        width: 33.3333%;
    }
    .site-footer-instagram .widget.pt-widget_instagram.column-7 ul li:last-child {
        display: none;
    }
    .site-footer-instagram .widget.pt-widget_instagram.column-8 ul li {
        width: 25%;
    }
    .mc4wp-form .fields-container input[type="submit"] {
        width: 120px;
    }
    .mc4wp-form .fields-container input[type="email"] {
        padding-right: 120px;
    }
    .pt-cookies-popup {
        width: calc(100% - 20px);
        bottom: 20px;
    }
}
@media screen and (max-width: 480px) {
    .site-footer .site-footer-bottom .widget.widget_nav_menu ul li a {
        padding-right: 8px;
        padding-left: 8px;
    }
}
::-webkit-input-placeholder {
    color: currentColor;
    opacity: 0.5;
}
.placeholder-normal ::-webkit-input-placeholder {
    opacity: 1;
}
:-moz-placeholder {
    color: currentColor;
    opacity: 0.5;
}
.placeholder-normal :-moz-placeholder {
    opacity: 1;
}
:-ms-input-placeholder {
    color: currentColor;
    opacity: 0.5;
}
.placeholder-normal :-ms-input-placeholder {
    opacity: 1;
}
form * {
    outline: 0;
}
form ul {
    position: relative;
    margin: 0 auto;
    list-style: none;
}
form ul > li > label {
    display: block;
    margin-bottom: 0;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2;
}
form li fieldset {
    padding: 0;
    margin: 0;
    border: none;
}
form button {
    cursor: pointer;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="file"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="search"],
input[type="tel"],
textarea,
select {
    height: 42px;
    padding: 5px var(--form-side-padding);
    background: none;
    border-color: var(--form-bd);
    border-style: solid;
    border-width: var(--form-bd-width);
    border-radius: var(--form-radius);
    color: var(--text-color);
    font-size: 16px;
    font-size: 1rem;
    line-height: 2;
    font-weight: 400;
    transition: 0.3s;
    -webkit-appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="file"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    outline: 0;
    border-color: var(--form-bd-focus);
}
.pt-form-underline input[type="text"],
.pt-form-underline input[type="email"],
.pt-form-underline input[type="url"],
.pt-form-underline input[type="file"],
.pt-form-underline input[type="password"],
.pt-form-underline input[type="number"],
.pt-form-underline input[type="date"],
.pt-form-underline input[type="search"],
.pt-form-underline input[type="tel"],
.pt-form-underline textarea,
.pt-form-underline select {
    border-top: none;
    border-right: none;
    border-left: none;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="file"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="search"],
input[type="tel"],
textarea {
    width: 100%;
}
.pt-form-underline {
    --form-radius: 0px;
    --form-side-padding: 0px;
}
.pt-form-square {
    --form-radius: 0px;
    --form-side-padding: 15px;
}
.pt-form-rounded {
    --form-radius: 5px;
    --form-side-padding: 15px;
}
.pt-form-pill {
    --form-radius: 50px;
    --form-side-padding: 15px;
}
textarea {
    display: block;
    min-height: 120px;
    resize: vertical;
}
input[type="submit"] {
    position: relative;
    z-index: 9;
    display: inline-block;
    padding: 0 30px;
    background: var(--btn-bg);
    border: none;
    border-radius: var(--btn-radius);
    color: var(--btn-color);
    font-family: var(--secondary-font);
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 42px;
    text-align: center;
    transition: 0.4s;
    cursor: pointer;
}
.no-touch input[type="submit"]:not(.pt-btn-underline):hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}
.no-touch input[type="submit"]:not(.pt-btn-underline):not(.pt-btn-outline):hover {
    background: var(--btn-bg-hover);
    color: var(--btn-color-hover);
}
form.post-password-form label {
    position: relative;
    z-index: 9;
    display: inline-block;
    width: 280px;
    height: 40px;
    padding-left: 10px;
    color: #000;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 40px;
    text-align: left;
    vertical-align: bottom;
}
form.post-password-form label input[type="password"] {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 40px;
    padding: 0 0 0 80px;
    line-height: 40px;
}
form.post-password-form input[type="submit"] {
    width: 130px;
    margin: 8px 0 0 0;
    padding: 0;
    line-height: 40px;
}
form.post-password-form input[type="submit"]:not(:hover) {
    background: #000;
}
.search-form {
    position: relative;
    max-width: 600px;
}
.search-form input[type="search"] {
    padding-right: 60px;
    height: 50px;
    font-size: 16px;
    font-size: 1rem;
}
.search-form .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 50px;
    background: none;
    border: none;
    box-shadow: none;
    color: inherit;
}
.search-form .search-submit:before {
    position: relative;
    z-index: 3;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    font-size: 16px;
    font-size: 1rem;
    line-height: 50px;
    content: "\f002";
}
.light-color select option {
    background: #fff;
    color: #000;
}
.dark-color select option {
    background: #000;
    color: #fff;
}
.bbp-search-form input[type="text"] {
    display: inline-block;
    width: auto;
}
#bbpress-forums div.bbp-the-content-wrapper .quicktags-toolbar input[type="button"] {
    letter-spacing: 0;
}
.wpcf7-form select {
    width: 100%;
}
.wpcf7-form .wpcf7-spinner {
    position: absolute;
}
.dark-color .wpcf7-form ::-webkit-calendar-picker-indicator {
    filter: invert(1);
}
.select-wrap {
    position: relative;
}
.select-wrap:after {
    font-family: "ElegantIcons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\33";
    font-size: 16px;
    position: absolute;
    right: 5px;
    top: 0;
    line-height: 42px;
}
@media screen and (min-width: 600px) {
    form.post-password-form input[type="submit"] {
        margin: 0 0 0 8px;
    }
    .form-submit input[type="submit"] {
        padding: 0 45px;
    }
}
@media screen and (min-width: 768px) {
    .select-wrap.col-1-2:after,
    .select-wrap.col-1-3:after {
        right: 20px;
    }
}
.site .avatar {
    border-radius: 50%;
}
.entry-content .wp-smiley,
.comment-content .wp-smiley,
.textwidget .wp-smiley {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    border: none;
}
.comment-content a img,
.textwidget a img {
    display: block;
}
embed,
iframe,
object,
video {
    margin-bottom: 30px;
    max-width: 100%;
    border: none;
    vertical-align: middle;
}
p > embed,
p > iframe,
p > object,
p > video {
    margin-bottom: 0;
}
.fluid-width-video-wrapper {
    margin-bottom: 30px;
}
.fluid-width-video-wrapper iframe {
    margin-bottom: 0;
}
.wp-block-embed-twitter iframe {
    margin-bottom: 0;
}
.wp-video-shortcode {
    margin-bottom: 30px;
}
#page .wp-playlist {
    margin: 0 0 30px;
    padding-bottom: 0;
}
#page .wp-playlist .wp-playlist-tracks {
    margin-top: 0;
}
#page .wp-playlist a {
    border-bottom: none;
    box-shadow: none !important;
}
.wp-playlist-item .wp-playlist-caption {
    padding: 15px 0;
    margin-left: 0;
    color: inherit !important;
}
.wp-playlist-item .wp-playlist-item-length {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.mejs-container a {
    padding-bottom: 0;
    border-bottom: none;
    box-shadow: none !important;
}
.wp-caption {
    margin: 30px 0;
    max-width: 100%;
    clear: both;
}
.wp-caption.aligncenter {
    text-align: center;
}
.wp-caption-text,
figcaption {
    display: block;
    padding: 14px 0;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
    font-size: smaller;
    color: var(--text-lighter);
}
.entry-content p > img.alignnone {
    margin-top: 30px;
    margin-bottom: 30px;
}
.entry-content p > img.alignnone:first-child {
    margin-top: 0;
}
.entry-content p > img.alignnone:last-child {
    margin-bottom: 0;
}
.blocks-gallery-grid + .blocks-gallery-caption {
    padding-top: 0;
}
.blocks-gallery-grid .blocks-gallery-item figcaption {
    opacity: 1;
    font-family: var(--body-font);
    font-size: 14px;
    font-size: 0.875rem;
    font-style: normal;
}
img[class*="wp-image-"] {
    display: block;
    margin-left: 0;
}
img[class*="wp-image-"].aligncenter {
    margin-right: auto;
    margin-left: auto;
}
img[class*="wp-image-"].alignright {
    margin-right: 0;
    margin-left: 30px;
}
.gallery {
    margin: 0 -2px 30px;
}
.gallery .gallery-item {
    float: left;
    display: inline-block;
    width: 100%;
    max-width: 33.33%;
    text-align: center;
    vertical-align: top;
}
.gallery .gallery-item .gallery-icon {
    font-size: 0;
    padding: 0 2px 4px;
}
.gallery .gallery-item .gallery-icon a {
    transition: 0s;
}
.gallery .gallery-item .gallery-icon img {
    margin: 0 auto;
}
.gallery .gallery-item .gallery-caption {
    padding: 6px 10px 20px;
}
.gallery.gallery-columns-1 .gallery-item {
    max-width: 100%;
}
.gallery.gallery-columns-2 .gallery-item {
    max-width: 50%;
}
.gallery.gallery-columns-4 .gallery-item {
    max-width: 25%;
}
.gallery.gallery-columns-5 .gallery-item {
    max-width: 20%;
}
.gallery.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}
.gallery.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}
.gallery.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}
.gallery.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}
.gallery.gallery-columns-1 .gallery-item,
.gallery.gallery-columns-2 .gallery-item:nth-child(2n + 1),
.gallery.gallery-columns-3 .gallery-item:nth-child(3n + 1),
.gallery.gallery-columns-4 .gallery-item:nth-child(4n + 1),
.gallery.gallery-columns-5 .gallery-item:nth-child(5n + 1),
.gallery.gallery-columns-6 .gallery-item:nth-child(6n + 1),
.gallery.gallery-columns-7 .gallery-item:nth-child(7n + 1),
.gallery.gallery-columns-8 .gallery-item:nth-child(8n + 1),
.gallery.gallery-columns-9 .gallery-item:nth-child(9n + 1) {
    clear: left;
}
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
    display: none;
}
.entry-content .twitter-tweet.twitter-tweet-rendered {
    margin-left: 0;
}
@media screen and (max-width: 599px) {
    .gallery:not(.gallery-columns-1):not(.gallery-columns-2) .gallery-item .gallery-caption {
        display: none;
    }
}
.entry-content *[class*="wp-block-"] {
    margin-bottom: 30px;
}
.entry-content *[class*="wp-block-"] *[class*="wp-block-"] {
    margin-bottom: 0;
}
.entry-content .wp-block-group__inner-container > *[class*="wp-block-"],
.entry-content .wp-block-column > *[class*="wp-block-"] {
    margin-bottom: 30px;
}
.entry-content .small-margin h1,
.entry-content .small-margin h2,
.entry-content .small-margin h3,
.entry-content .small-margin h4,
.entry-content .small-margin h5,
.entry-content .small-margin h6 {
    margin-bottom: 7.5px;
}
.entry-content .small-margin h1:last-child,
.entry-content .small-margin h2:last-child,
.entry-content .small-margin h3:last-child,
.entry-content .small-margin h4:last-child,
.entry-content .small-margin h5:last-child,
.entry-content .small-margin h6:last-child {
    margin-bottom: 0;
}
.entry-content .small-margin p {
    margin-bottom: 15px;
}
.entry-content .small-margin p:last-child {
    margin-bottom: 0;
}
.entry-content h1.small-margin,
.entry-content h2.small-margin,
.entry-content h3.small-margin,
.entry-content h4.small-margin,
.entry-content h5.small-margin,
.entry-content h6.small-margin {
    margin-bottom: 7.5px;
}
.entry-content p.small-margin {
    margin-bottom: 15px;
}
.light-color .light-grey[class*="wp-block-"] {
    background-color: #fafafa;
}
.dark-color .light-grey[class*="wp-block-"] {
    background-color: #191919;
}
.dark-color .light-grey[class*="wp-block-"] .wp-block-social-link {
    color: #fff !important;
}
.alignleft[class*="wp-block-"] {
    margin-right: 30px;
}
.alignright[class*="wp-block-"] {
    margin-left: 30px;
}
.aligncenter[class*="wp-block-"] {
    clear: both;
}
.entry-content .wp-block-spacer {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.entry-content .wp-block-spacer + * {
    margin-top: 0 !important;
}
.wp-block-media-text .wp-block-media-text__content {
    width: 100%;
}
.wp-block-media-text .wp-block-media-text__content > * {
    margin-bottom: 15px;
}
.wp-block-media-text .wp-block-media-text__content > *:first-child {
    margin-top: 15px;
}
.wp-block-media-text.has-background .wp-block-media-text__content {
    padding-top: 8%;
    padding-bottom: 8%;
}
.wp-embed-responsive .wp-block-embed[class*="wp-embed-aspect-"] .wp-block-embed__wrapper:before {
    display: none;
}
.no-touch .wp-block-gallery a:hover,
.no-touch .wp-block-button a:hover {
    text-decoration: none;
}
.wp-block-image .alignleft {
    margin-right: 30px;
    margin-bottom: 30px;
}
.wp-block-image .alignright {
    margin-left: 30px;
    margin-bottom: 30px;
}
.wp-block-image.alignnone {
    display: inline-block;
    margin-top: 0 !important;
    width: auto;
}
.wp-block-image img {
    margin: 0;
}
.wp-block-image img[class*="wp-image-"] {
    display: block;
}
.wp-block-image figcaption {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.entry-content .has-small-font-size {
    font-size: 0.8125em;
}
.entry-content .has-normal-font-size,
.entry-content .has-regular-font-size {
    font-size: 1em;
}
.entry-content .has-medium-font-size {
    font-size: 1.25em;
}
.entry-content .has-large-font-size {
    font-size: 2.25em;
}
.entry-content .has-huge-font-size,
.entry-content .has-larger-font-size {
    font-size: 2.625em;
}
.light-color .wp-block-button .wp-block-button__link:not(.has-background) {
    background: #111;
}
.light-color .wp-block-button .wp-block-button__link:not(.has-text-color) {
    color: #fff;
}
.dark-color .wp-block-button .wp-block-button__link:not(.has-background) {
    background: #fff;
}
.dark-color .wp-block-button .wp-block-button__link:not(.has-text-color) {
    color: #111;
}
.wp-block-button.is-style-outline {
    background: none;
    color: inherit;
}
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background) {
    background: none;
}
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
    color: inherit;
}
.no-touch .wp-block-button .wp-block-button__link:hover {
    opacity: 0.7;
}
.wp-block-button.aligncenter {
    text-align: center;
}
.wp-block-button.alignleft,
.wp-block-button.alignright {
    margin-top: 8px;
}
.wp-block-buttons > *:not(:last-child) {
    margin-bottom: 0.5em !important;
}
.wp-block-button__link {
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
}
.wp-block-file * + .wp-block-file__button {
    margin-right: 10px;
}
.wp-block-file .wp-block-file__button {
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
}
.no-touch .wp-block-file .wp-block-file__button:hover {
    box-shadow: none;
    opacity: 0.7;
}
.wp-block-cover,
.wp-block-cover-image {
    color: #fff;
    padding: 50px;
}
.wp-block-cover .wp-block-cover-image-text a,
.wp-block-cover .wp-block-cover-text a,
.wp-block-cover .wp-block-cover__inner-container a,
.wp-block-cover-image .wp-block-cover-image-text a,
.wp-block-cover-image .wp-block-cover-text a,
.wp-block-cover-image .wp-block-cover__inner-container a {
    color: inherit;
}
.no-touch .wp-block-cover .wp-block-cover-image-text a:hover,
.no-touch .wp-block-cover .wp-block-cover-text a:hover,
.no-touch .wp-block-cover .wp-block-cover__inner-container a:hover,
.no-touch .wp-block-cover-image .wp-block-cover-image-text a:hover,
.no-touch .wp-block-cover-image .wp-block-cover-text a:hover,
.no-touch .wp-block-cover-image .wp-block-cover__inner-container a:hover {
    color: #fff;
    text-decoration-color: #fff;
}
.wp-block-cover .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover-image .wp-block-cover-text,
.wp-block-cover-image .wp-block-cover__inner-container {
    width: 100%;
    max-width: 800px;
    line-height: 1.25;
}
.wp-block-cover .wp-block-cover__inner-container > *:last-child,
.wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
    margin-bottom: 0;
}
.wp-block-cover h1,
.wp-block-cover-image h1 {
    margin-top: 0;
}
.wp-block-cover * + h1,
.wp-block-cover * + h2,
.wp-block-cover * + h3,
.wp-block-cover * + h4,
.wp-block-cover * + h5,
.wp-block-cover * + h6,
.wp-block-cover-image * + h1,
.wp-block-cover-image * + h2,
.wp-block-cover-image * + h3,
.wp-block-cover-image * + h4,
.wp-block-cover-image * + h5,
.wp-block-cover-image * + h6 {
    margin-top: 0;
}
.wp-block-cover form,
.wp-block-cover-image form {
    color: inherit;
}
.wp-block-column .wp-block-cover {
    height: auto;
}
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
    margin-top: 8px;
}
.wp-block-group.has-background {
    padding: 50px 20px;
}
.wp-block-group.has-background.alignfull + .wp-block-cover.alignfull,
.wp-block-group.has-background.alignfull + .wp-block-group.has-background.alignfull,
.wp-block-cover.alignfull + .wp-block-group.has-background.alignfull {
    margin-top: -34px;
}
.wp-block-group.alignfull {
    padding: 50px 20px;
}
.entry-content .wp-block-group.light-color a {
    color: #000;
}
.entry-content .wp-block-group.dark-color a {
    color: #fff;
}
.entry-content .wp-block-group.has-text-color a {
    color: inherit;
}
.entry-content .wp-block-group__inner-container > *:last-child {
    margin-bottom: 0;
}
.wp-block-verse {
    padding: 30px;
    background: #f7f7f7;
    border: 1px solid #eee;
    color: #000;
}
.wp-block-quote:not(:first-child) {
    margin-top: 50px;
}
.wp-block-quote:not(:last-child) {
    margin-bottom: 50px;
}
.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
    padding: 0 50px;
    margin-right: auto;
    margin-left: auto;
}
.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
    font-size: 24px;
    font-size: 1.5rem;
    font-style: normal;
    line-height: 1.25;
}
.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer {
    text-align: left;
    font-size: 16px;
    font-size: 1rem;
}
.wp-block-quote.is-large.has-text-align-right cite,
.wp-block-quote.is-large.has-text-align-right footer,
.wp-block-quote.is-style-large.has-text-align-right cite,
.wp-block-quote.is-style-large.has-text-align-right footer {
    text-align: right;
}
.wp-block-quote.is-large.has-text-align-center cite,
.wp-block-quote.is-large.has-text-align-center footer,
.wp-block-quote.is-style-large.has-text-align-center cite,
.wp-block-quote.is-style-large.has-text-align-center footer {
    text-align: center;
}
.wp-block-quote.is-large:not(.has-text-align-center):before,
.wp-block-quote.is-style-large:not(.has-text-align-center):before {
    top: 5px;
}
.wp-block-quote.has-text-align-center {
    padding: 0;
}
.entry-content .wp-block-quote.has-text-align-center:before {
    position: relative;
    top: 0;
    width: 100%;
}
.wp-block-pullquote {
    padding: 35px;
    border-top: 4px solid;
    border-bottom: 4px solid;
}
.wp-block-pullquote blockquote {
    margin-bottom: 0;
    padding: 0;
    max-width: 100%;
    color: inherit;
}
.wp-block-pullquote blockquote:before {
    display: none;
}
.wp-block-pullquote.is-style-solid-color blockquote {
    max-width: 100%;
    margin-left: 0;
}
.wp-block-pullquote.is-style-solid-color blockquote p {
    font-size: 28px;
    font-size: 1.75rem;
}
.wp-block-pullquote p {
    font-size: 24px;
    font-size: 1.5rem;
}
.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright {
    margin-top: 8px;
}
.wp-block-pullquote.alignleft p,
.wp-block-pullquote.alignright p {
    font-size: 20px;
    font-size: 1.25rem;
}
.wp-block-pullquote.alignleft cite,
.wp-block-pullquote.alignright cite {
    font-size: 16px;
    font-size: 1rem;
}
.wp-block-separator {
    margin: 50px auto !important;
    clear: both;
    height: 0;
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
    max-width: 100px;
}
.wp-block-video video {
    margin-bottom: 0;
}
.wp-block-embed .fluid-width-video-wrapper {
    margin-bottom: 0;
}
.wp-block-video figcaption,
.wp-block-embed figcaption,
.wp-block-audio figcaption {
    margin: 0;
    padding-bottom: 0;
}
.wp-block-table table {
    margin-bottom: 0;
}
.wp-block-table tbody th,
.wp-block-table tbody td {
    vertical-align: middle;
}
.wp-block-table.is-style-stripes {
    border: none;
    border-bottom: 1px solid #eee;
}
.wp-block-table.is-style-stripes table {
    border: none;
}
.entry-content .wp-block-latest-posts,
.entry-content .wp-block-categories,
.entry-content .wp-block-archives,
.entry-content .wp-block-latest-comments {
    margin-right: 0;
    margin-left: 0;
    list-style: none;
}
.entry-content .wp-block-latest-posts a,
.entry-content .wp-block-categories a,
.entry-content .wp-block-archives a,
.entry-content .wp-block-latest-comments a {
    padding-bottom: 0;
    border-bottom: none;
    box-shadow: none;
    text-decoration: none;
    font-weight: 600;
}
.entry-content .wp-block-latest-posts a:not(:hover),
.entry-content .wp-block-categories a:not(:hover),
.entry-content .wp-block-archives a:not(:hover),
.entry-content .wp-block-latest-comments a:not(:hover) {
    color: inherit;
}
.entry-content .wp-block-latest-posts li,
.entry-content .wp-block-categories li,
.entry-content .wp-block-archives li,
.entry-content .wp-block-latest-comments li {
    padding-right: 0;
    padding-left: 0;
}
.entry-content .wp-block-latest-posts li:before,
.entry-content .wp-block-categories li:before,
.entry-content .wp-block-archives li:before,
.entry-content .wp-block-latest-comments li:before {
    display: none;
}
.wp-block-latest-posts {
    line-height: 1.3;
}
.wp-block-latest-posts li > a {
    display: block;
    font-size: 18px;
    font-size: 1.125rem;
}
.wp-block-latest-posts .wp-block-latest-posts__post-author,
.wp-block-latest-posts .wp-block-latest-posts__post-date {
    display: inline-block;
    margin-top: 8px;
}
.wp-block-latest-posts .wp-block-latest-posts__post-author + .wp-block-latest-posts__post-date {
    margin-left: 6px;
}
.entry-content .wp-block-latest-posts li:not(:last-child) {
    margin-bottom: 30px;
}
.entry-content .wp-block-latest-posts.is-grid {
    margin-bottom: 0;
}
.entry-content .wp-block-latest-posts.is-grid li {
    margin-bottom: 30px;
}
.wp-block-latest-posts__post-author,
.wp-block-latest-posts__post-date {
    color: inherit;
    opacity: 0.5;
}
.wp-block-latest-posts__post-excerpt {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6;
}
.wp-block-latest-posts__post-excerpt a {
    font-size: 14px;
    font-size: 0.875rem;
}
.entry-content .wp-block-latest-comments li {
    font-size: inherit;
}
.entry-content .wp-block-latest-comments li:not(:last-child) {
    margin-bottom: 15px;
}
.entry-content .wp-block-latest-comments__comment {
    line-height: 1.35;
}
.entry-content .wp-block-latest-comments__comment-author {
    font-weight: 600;
}
.entry-content .wp-block-latest-comments__comment-date {
    margin-top: 5px;
    opacity: 0.5;
}
.wp-block-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    margin: -4px -3px;
}
.wp-block-tag-cloud a {
    margin: 4px 3px;
    padding: 3px 16px;
    background: #f6f6f6;
    border-radius: 99px;
    font-size: 14px !important;
    font-size: 0.875rem !important;
    color: var(--text-color);
}
.no-touch .wp-block-tag-cloud a:hover,
.wp-block-tag-cloud a:focus {
    background: var(--text-color);
    color: var(--bg-color);
}
.entry-content .wp-block-tag-cloud a {
    color: var(--text-color);
}
.no-touch .entry-content .wp-block-tag-cloud a:hover,
.entry-content .wp-block-tag-cloud a:focus {
    color: var(--bg-color);
}
.wp-block-calendar table {
    margin-bottom: 0;
    border: none;
    border-collapse: separate;
    border-spacing: 2px;
}
.wp-block-calendar table a {
    box-shadow: none !important;
    text-decoration: none !important;
}
.wp-block-calendar table caption,
.wp-block-calendar table tbody {
    color: inherit;
}
.wp-block-calendar table caption {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
}
.wp-block-calendar table th,
.wp-block-calendar table td {
    padding: 0 5px;
    text-align: center;
    border: none !important;
}
.wp-block-calendar table th {
    background: none;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}
.wp-block-calendar table td {
    font-size: 16px;
    font-size: 1rem;
}
.wp-block-calendar table tbody td {
    position: relative;
    background: #f7f7f7;
    line-height: 40px;
}
.dark-color .wp-block-calendar table tbody td {
    background: #363636;
}
.wp-block-calendar table tbody td[colspan="2"],
.wp-block-calendar table tbody td[colspan="3"],
.wp-block-calendar table tbody td[colspan="4"],
.wp-block-calendar table tbody td[colspan="5"],
.wp-block-calendar table tbody td[colspan="6"] {
    background: none;
}
.wp-block-calendar table tbody td a {
    font-weight: 800;
}
.wp-block-calendar table tbody td a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.1;
    content: "";
}
.wp-block-calendar table tfoot td {
    line-height: 36px;
    font-size: 11px;
    font-size: 0.6875rem;
    text-transform: uppercase;
}
.wp-block-calendar table tfoot td a {
    padding: 2px 10px;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    color: inherit !important;
}
.dark-color .wp-block-calendar table tfoot td a {
    border-color: #393939;
}
.no-touch .wp-block-calendar table tfoot td a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff !important;
}
.wp-block-calendar .wp-calendar-nav {
    font-size: 0;
}
.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev,
.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next {
    line-height: 36px;
    font-size: 11px;
    font-size: 0.6875rem;
    text-transform: uppercase;
}
.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev a,
.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next a {
    display: inline-block;
    padding: 2px 10px;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    color: inherit !important;
    box-shadow: none !important;
    text-decoration: none !important;
    line-height: 1.5;
}
.dark-color .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev a,
.dark-color .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next a {
    border-color: #393939;
}
.no-touch .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev a:hover,
.no-touch .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff !important;
}
.wp-block-calendar .wp-calendar-nav .pad {
    display: inline-block;
    width: 10%;
}
.wp-block-search {
    position: relative;
    margin-bottom: 30px;
}
.wp-block-search .wp-block-search__label {
    font-weight: 700;
}
.wp-block-search input[type="search"] {
    width: auto;
}
.wp-block-search .wp-block-search__button {
    padding: 0 10px;
    background: #000;
    border: none;
    color: #fff;
    font-size: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
}
.wp-block-search .wp-block-search__button svg path {
    fill: #fff;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
    padding: 4px;
    border: 1px solid #949494;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
    border: none;
}
.wp-block-rss {
    margin: 0 0 30px;
    list-style: none;
}
#page .wp-block-rss a:not(:hover) {
    color: inherit;
}
.wp-block-rss .wp-block-rss__item {
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.dark-color .wp-block-rss .wp-block-rss__item {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}
.wp-block-rss .wp-block-rss__item:not(:last-child) {
    margin-bottom: 20px;
}
.wp-block-rss .wp-block-rss__item-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 600;
}
.wp-block-rss .wp-block-rss__item-publish-date,
.wp-block-rss .wp-block-rss__item-author {
    display: inline-block;
    margin-top: 8px;
    color: inherit;
    opacity: 0.5;
}
.wp-block-rss .wp-block-rss__item-publish-date + .wp-block-rss__item-author:before {
    margin-right: 5px;
    content: ".";
}
.wp-block-rss .wp-block-rss__item-excerpt {
    margin-top: 8px;
    font-size: 16px;
    font-size: 1rem;
}
.wp-block-social-links.is-style-logos-only .wp-social-link.wp-social-link.wp-social-link {
    margin: 0;
}
.wp-block-social-links:not(.aligncenter):not(.items-justified-center) {
    margin-left: -10px;
}
.wp-social-link a,
.wp-social-link a:active,
.wp-social-link a:hover,
.wp-social-link a:visited,
.wp-social-link svg {
    color: currentColor !important;
}
.wp-block-gallery:not(.alignleft):not(.alignright) {
    clear: both;
}
.entry-content .wp-block-gallery.alignright {
    margin-left: 30px;
}
.entry-content .wp-block-gallery.alignleft {
    margin-right: 30px;
}
.entry-content .wp-block-gallery > li,
.entry-content .wp-block-gallery ul > li {
    padding: 0;
}
.entry-content .wp-block-gallery > li:before,
.entry-content .wp-block-gallery ul > li:before {
    display: none;
}
.entry-content > .wp-block-gallery {
    margin-bottom: 20px;
}
.entry-content > .wp-block-gallery li:not(:last-child) {
    margin-bottom: 16px;
}
.blocks-gallery-grid .blocks-gallery-image a + figcaption,
.blocks-gallery-grid .blocks-gallery-item a + figcaption,
.wp-block-gallery .blocks-gallery-image a + figcaption,
.wp-block-gallery .blocks-gallery-item a + figcaption {
    pointer-events: none;
}
.entry-content .blocks-gallery-item figcaption a {
    color: inherit;
}
.entry-content .alignfull {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    margin: 0 0 30px;
    clear: both;
}
.entry-content .alignfull.gallery-slider,
.entry-content .alignfull.gallery-justified {
    width: 100vw;
    max-width: 100vw;
}
.entry-content .alignfull.wp-block-cover.has-parallax {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-left: -50vw;
}
.entry-content *[class*="wp-block-"] *.alignfull {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 100%;
    max-width: 100%;
}
.entry-content .wp-block-query .wp-block-post-featured-image {
    margin-bottom: 15px;
}
.entry-content .wp-block-query .wp-block-post-title {
    margin-top: 0;
}
.entry-content .wp-block-query .wp-block-post-date {
    margin-top: 15px;
}
.entry-content .wp-block-query ul {
    margin: 0;
}
p.has-drop-cap:not(:focus):first-letter {
    margin: 11px 10px 0 0;
    font-size: 3.6em;
    font-weight: 400;
}
.has-drop-cap:not(:focus):after {
    display: none;
}
.entry-content .wp-block-column,
.entry-content .wp-block-column:last-child > *:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 600px) {
    .wp-block-group.alignfull,
    .wp-block-group.has-background {
        padding-right: 30px;
        padding-left: 30px;
    }
    .wp-block-columns.alignfull {
        padding-right: 30px;
        padding-left: 30px;
    }
    .wp-block-column:nth-last-child(2) > *:last-child {
        margin-bottom: 0;
    }
    .entry-content *.alignwide {
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: calc(100vw - 60px);
        max-width: 1400px;
    }
    .entry-content *.alignwide.wp-block-cover.has-parallax {
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin-left: calc(0px - var(--grid-val) * 1vw);
    }
    .entry-content *[class*="wp-block-"] *.alignwide {
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        width: 100%;
        max-width: 100%;
    }
    .entry-content .wp-block-cover.alignfull *.alignwide,
    .entry-content .wp-block-cover.alignwide *.alignwide {
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: calc(100vw - 60px);
        max-width: calc(var(--site-width) - 60px);
    }
    .entry-content .wp-block-cover.alignwide *.alignwide {
        max-width: 1008px;
    }
}
@media screen and (min-width: 782px) {
    .wp-block-column > *:last-child {
        margin-bottom: 0;
    }
}
@media screen and (min-width: 860px) {
    .entry-content .wp-block-cover.has-parallax.alignwide {
        margin-left: calc(0px - (100vw - 860px) / 2);
    }
}
@media screen and (min-width: 1024px) {
    .wp-block-quote.is-large p,
    .wp-block-quote.is-style-large p {
        font-size: 32px;
        font-size: 2rem;
    }
}
@media screen and (min-width: 1025px) {
    .site-content[class*="with-sidebar"] .entry-content *.alignfull,
    .site-content[class*="with-sidebar"] .entry-content *.alignwide {
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        width: auto;
        max-width: none;
    }
    .site-content[class*="with-sidebar"] .entry-content *.alignfull.wp-block-cover.has-parallax,
    .site-content[class*="with-sidebar"] .entry-content *.alignwide.wp-block-cover.has-parallax {
        margin-left: 0;
    }
    .wp-block-group.has-background {
        padding: 50px;
    }
    .wp-block-group.alignfull {
        padding: 50px 0;
    }
    .wp-block-group.alignfull .wp-block-group__inner-container {
        max-width: var(--site-width);
        padding: 0 30px;
        margin-right: auto;
        margin-left: auto;
    }
}
@media screen and (min-width: 1260px) {
    .entry-content .wp-block-cover.has-parallax.alignwide {
        margin-left: -170px;
    }
}
@media screen and (max-width: 1024px) {
    .entry-content > .wp-block-group.alignfull:not(.has-background):first-child {
        padding-top: 0;
    }
}
@media screen and (max-width: 599px) {
    .wp-block-pullquote.alignleft,
    .wp-block-pullquote.alignright {
        width: calc(50% - 30px);
    }
    .wp-block-quote.is-large,
    .wp-block-quote.is-style-large {
        padding-right: 0;
    }
    .wp-block-cover,
    .wp-block-cover-image {
        padding-right: 20px;
        padding-left: 20px;
    }
}
@media screen and (max-width: 480px) {
    blockquote.tiktok-embed {
        padding: 0;
    }
    blockquote.tiktok-embed:before {
        display: none;
    }
}
@media screen and (max-width: 400px) {
    .wp-block-pullquote.alignleft,
    .wp-block-pullquote.alignright {
        width: 100%;
        max-width: 100%;
        margin: 0 0 30px;
    }
}
.elementor-section.elementor-section-boxed.pt-section-content-fullwidth > .elementor-container,
.elementor-section.elementor-section-full_width.pt-section-content-fullwidth > .elementor-container {
    max-width: calc(var(--site-width) + var(--side-padding) * 2);
    padding: 0 var(--side-padding);
}
.elementor-editor-active .elementor-edit-area-active .elementor-widget-container {
    --primary-color: var(--theme-primary-color);
    --secondary-color: var(--theme-secondary-color);
}
.pt-template-wide .site-content .elementor-section-full_width,
.custom_blocks-template-default .elementor-section-full_width,
.site-footer-main .elementor-section-full_width,
.pt-section-content-fullwidth {
    position: relative;
    width: 100vw;
    left: calc(50% - 50vw);
}
.pt-template-wide .site-content .elementor-section .elementor-section-full_width,
.elementor-section .elementor-section-full_width {
    width: 100%;
    left: auto;
}
.pt-template-wide.elementor-page .primary {
    padding-bottom: 0;
}
.single-custom_site_headers .container {
    padding: 0;
}
.single-custom_site_headers .entry-content a:not(.button) {
    color: inherit;
}
.elementor-align-center {
    margin-right: auto;
    margin-left: auto;
}
.elementor-text-editor > *:last-child,
.elementor-widget-text-editor .elementor-widget-container > *:last-child,
.elementor-text-editor p:last-child {
    margin-bottom: 0;
}
.elementor-editor-preview .pt-popup-box.pt-popup-fullsize .close-button,
.elementor-editor-active .pt-popup-box.pt-popup-fullsize .close-button {
    right: 80px;
}
.color-primary,
.entry-content .color-primary,
.elementor-section .color-primary {
    color: var(--primary-color);
}
.color-secondary,
.entry-content .color-secondary,
.elementor-section .color-secondary {
    color: var(--secondary-color);
}
.color-black,
.entry-content .color-black,
.elementor-section .color-black {
    color: #000;
}
.color-white,
.entry-content .color-white,
.elementor-section .color-white {
    color: #fff;
}
.pt-elementor-simulator-scheme-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99;
}
.pt-elementor-simulator-scheme-dark,
.pt-elementor-simulator-scheme-light {
    background: #999;
    color: #000;
    padding: 2px 6px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}
.pt-elementor-simulator-scheme-dark.active,
.pt-elementor-simulator-scheme-light.active {
    background: #fff;
}
.pt-elementor-simulator-scheme-dark {
    margin-bottom: 2px;
}
.loftocean-library-modal-btn {
    margin-left: 5px;
    background: #000;
    vertical-align: top;
    font-size: 0 !important;
}
.loftocean-library-modal-btn:before {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../../images/loftocean-white.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.elementor-element a:not([class*="button"]):not(:hover) {
    color: inherit;
}
.elementor-editor-active .site-header.overlap-header {
    pointer-events: none;
}
.elementor-editor-active .site-header:not(.overlap-header):not(.sticky):not(.is-sticky) {
    z-index: 1;
}
.elementor-widget-pt_logo {
    font-size: 0;
}
.elementor-widget-pt_logo .pt-notice {
    font-size: 16px;
    font-size: 1rem;
    color: #161616;
}
.elementor-widget-pt_logo a {
    display: inline-block;
}
.elementor-widget-pt_logo img {
    display: block;
}
.elementor-widget-pt_button.elementor-align-justify .button {
    width: 100%;
    padding: 0;
}
.pt-menu {
    --item-padding: 15px;
}
.pt-menu > ul > li > a {
    font-family: var(--nav-font);
}
.pt-menu.text-left .menu {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.pt-menu.text-center .menu {
    -webkit-justify-content: center;
    justify-content: center;
}
.pt-menu.text-right .menu {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.pt-menu .primary-menu > li > a {
    padding: 0 var(--item-padding);
}
.pt-menu .primary-menu > li > a:before {
    left: var(--item-padding);
    width: calc(100% - var(--item-padding) * 2);
}
.pt-menu .primary-menu > li.menu-item-has-children > a:before {
    width: calc(100% - var(--item-padding) * 2 - 20px);
}
.pt-menu .primary-menu > li > .sub-menu {
    left: calc(var(--item-padding) - 30px);
}
.pt-menu.footer-menu .menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.pt-menu.footer-menu li a {
    display: block;
    padding: 5px var(--item-padding);
    font-family: var(--nav-font);
    font-size: var(--fbnav-font-size);
    font-weight: var(--fbnav-font-weight);
    letter-spacing: var(--fbnav-font-letter-spacing);
    text-transform: var(--fbnav-font-transform);
}
.pt-menu.pt-menu-inline .menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.pt-menu.pt-menu-inline .menu li {
    padding: 5px var(--item-padding);
}
.pt-menu.pt-menu-inline .menu a {
    white-space: nowrap;
}
.pt-menu.pt-menu-inline.text-left .menu li:first-child {
    padding-left: 0;
}
.pt-menu.pt-menu-inline.text-right .menu li:last-child {
    padding-right: 0;
}
.pt-menu.pt-menu-inline .sub-menu {
    position: absolute;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-size: 1rem;
    line-height: 30px;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.pt-menu.pt-menu-inline .sub-menu:before {
    font-family: "ElegantIcons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-size: 14px;
    font-size: 0.875rem;
    content: "\35";
    padding: 5px 0;
    line-height: 30px;
}
.no-touch .pt-menu.pt-menu-inline li:hover > ul.sub-menu {
    z-index: 99;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.elementor-widget-pt_title .pt-subtitle-wrap {
    position: relative;
    overflow: hidden;
}
.elementor-widget-pt_title .pt-title-text {
    margin-top: 20px;
}
.elementor-widget-pt_title .pt-title-text:first-child {
    margin-top: 0;
}
.elementor-widget-pt_title .pt-title-text p {
    margin-bottom: 20px;
}
.elementor-widget-pt_title .pt-title-text > *:last-child {
    margin-bottom: 0;
}
.elementor-widget-pt_title .pt-title-btn {
    margin-top: 20px;
}
.elementor-widget-pt_title .pt-title-btn .button.pt-btn-underline {
    margin-bottom: 2px;
}
.pt-title,
.entry-content .pt-title {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1;
}
.pt-title small,
.entry-content .pt-title small {
    font-weight: 300;
    font-size: 100%;
}
.pt-title-wrap.text-left {
    margin-right: auto;
}
.pt-title-wrap.text-center {
    margin-right: auto;
    margin-left: auto;
}
.pt-title-wrap.text-right {
    margin-left: auto;
}
h1.pt-title {
    font-size: 52px;
    font-size: 3.25rem;
}
h2.pt-title {
    font-size: 48px;
    font-size: 3rem;
}
h3.pt-title {
    font-size: 42px;
    font-size: 2.625rem;
}
h4.pt-title {
    font-size: 38px;
    font-size: 2.375rem;
}
h5.pt-title {
    font-size: 32px;
    font-size: 2rem;
}
h6.pt-title {
    font-size: 28px;
    font-size: 1.75rem;
}
.pt-slider .slick-dots {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
}
.pt-slider .slick-arrow.slick-prev {
    margin-left: 100px;
}
.pt-slider .slick-arrow.slick-next {
    margin-right: 100px;
}
.pt-slider .pt-slider-wrap > .pt-slider-item {
    opacity: 0;
}
.pt-slider .slick-initialized .pt-slider-item .elementor-section:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    content: "";
    transition: 0s;
}
.pt-slider .slick-initialized .pt-slider-item.current-item .elementor-section:before {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    transition: transform 10s linear 0s;
}
.pt-slider .slick-initialized .pt-slider-item.slick-current .elementor-widget > * > * {
    -webkit-animation: slideFade 0.7s ease-out;
    animation: slideFade 0.7s ease-out;
}
.pt-rounded-image {
    position: relative;
    overflow: hidden;
    --rounded: 25vw;
    max-width: 100%;
}
.pt-rounded-image img {
    display: block;
    width: 100%;
}
.pt-rounded-image .slick-dots {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    color: #fff;
}
.elementor-col-100 > .elementor-widget-wrap > .elementor-widget-pt_rounded_image .pt-rounded-image,
.elementor-column[data-col="100"] > .elementor-widget-wrap > .elementor-widget-pt_rounded_image .pt-rounded-image {
    --rounded: 50vw;
}
.pt-rounded-image .pt-gallery img {
    width: 100%;
}
.elementor-align-left .pt-rounded-image {
    margin-right: auto;
    margin-left: 0;
}
.elementor-align-center .pt-rounded-image {
    margin-right: auto;
    margin-left: auto;
}
.elementor-align-right .pt-rounded-image {
    margin-right: 0;
    margin-left: auto;
}
.pt-divider {
    position: relative;
    color: #dfdbdc;
}
.pt-divider .pt-d-line {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 6px;
}
.pt-divider .pt-d-line:before,
.pt-divider .pt-d-line:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    background: currentColor;
    content: "";
}
.pt-divider .pt-d-line:before {
    width: 100%;
    height: 1px;
}
.pt-divider .pt-d-line:after {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.pt-divider .pt-d-icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    width: 33px;
    color: #c8c4c5;
}
.pt-divider .pt-d-icon.icon-start {
    left: 0;
}
.pt-divider .pt-d-icon.icon-end {
    right: 0;
}
.pt-divider .pt-d-icon svg {
    display: block;
}
.pt-divider .pt-d-icon svg > * {
    fill: currentColor;
}
.pt-divider.divider-star .pt-d-icon {
    width: 22px;
}
.pt-divider.divider-star .pt-d-line {
    width: calc(100% - 50px);
}
.pt-divider.divider-grass .pt-d-line {
    width: calc(100% - 20px);
}
.pt-divider.divider-grass .pt-d-icon.icon-start {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}
.pt-divider.divider-grass .pt-d-icon.icon-end {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}
.pt-vertical-divider {
    color: #dfdbdc;
    height: 200px;
}
.pt-vertical-divider > * {
    margin: 0 auto;
}
.pt-vertical-divider .pt-vd-line {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 6px;
    height: 100%;
}
.pt-vertical-divider .pt-vd-line:before,
.pt-vertical-divider .pt-vd-line:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    background: currentColor;
    content: "";
}
.pt-vertical-divider .pt-vd-line:before {
    width: 1px;
    height: 100%;
}
.pt-vertical-divider .pt-vd-line:after {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.pt-vertical-divider .pt-vd-icon {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 3;
    width: 33px;
    color: #c8c4c5;
}
.pt-vertical-divider .pt-vd-icon.icon-start {
    top: 0;
}
.pt-vertical-divider .pt-vd-icon.icon-end {
    bottom: 0;
}
.pt-vertical-divider .pt-vd-icon svg {
    display: block;
}
.pt-vertical-divider .pt-vd-icon svg > * {
    fill: currentColor;
}
.pt-vertical-divider.divider-star .pt-vd-icon {
    width: 22px;
}
.pt-vertical-divider.divider-star .pt-vd-line {
    height: calc(100% - 50px);
}
.pt-vertical-divider.divider-star .pt-vd-icon.icon-end {
    -webkit-transform: translateX(-50%) rotate(180deg);
    -ms-transform: translateX(-50%) rotate(180deg);
    transform: translateX(-50%) rotate(180deg);
}
.pt-vertical-divider.divider-grass .pt-vd-line {
    height: calc(100% - 20px);
}
.pt-vertical-divider.divider-grass .pt-vd-icon.icon-end {
    -webkit-transform: translateX(-50%) rotate(180deg);
    -ms-transform: translateX(-50%) rotate(180deg);
    transform: translateX(-50%) rotate(180deg);
}
.elementor-widget-pt_vertical_divider.full-height,
.elementor-widget-pt_vertical_divider.full-height .elementor-widget-container,
.elementor-widget-pt_vertical_divider.full-height .pt-vertical-divider {
    height: 100%;
}
.pt-tabs .elementor-tabs-wrapper {
    text-align: center;
}
.pt-tabs .elementor-tab-desktop-title {
    display: inline-flex;
    font-family: var(--secondary-font);
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: var(--spacing);
}
.pt-tabs .elementor-tab-desktop-title a {
    position: relative;
    margin: 0 15px;
    color: inherit;
}
.pt-tabs .elementor-tab-desktop-title a:before {
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    content: "";
    transition: transform 0.2s ease;
    transform-origin: 100% 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}
.pt-tabs .elementor-tab-desktop-title.elementor-active a:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.pt-food-menu .pt-food-menu {
    position: relative;
}
.pt-food-menu .pt-food-menu-item {
    display: table;
    width: 100%;
}
.pt-food-menu .pt-food-menu-img {
    position: relative;
    width: 72px;
    max-width: 72px;
    margin-right: 15px;
    overflow: hidden;
}
.pt-food-menu .pt-food-menu-main {
    display: table-cell;
    width: inherit;
    min-width: 100%;
    vertical-align: middle;
}
.pt-food-menu .pt-food-menu-header > * {
    display: table-cell;
}
.pt-food-menu .pt-food-menu-title {
    padding-right: 15px;
    margin-bottom: 0;
    width: 1%;
    white-space: nowrap;
    font-size: 24px;
    font-size: 1.5rem;
}
.pt-food-menu .pt-food-menu-title a {
    color: inherit;
    white-space: inherit;
}
.pt-food-menu .pt-food-menu-title .title-wrap {
    white-space: inherit;
}
.pt-food-menu .pt-food-menu-title .title-wrap.pen:not([data-elementor-inline-editing-toolbar="advanced"]) {
    white-space: nowrap !important;
}
.pt-food-menu .pt-food-menu-title .menu-label {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    display: inline-block;
    padding: 4px 5px;
    border-radius: 3px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--secondary-font);
    font-size: 10px;
    font-size: 0.625rem;
    text-transform: uppercase;
}
.pt-food-menu .pt-food-menu-lines {
    position: relative;
    width: 98%;
}
.pt-food-menu .pt-food-menu-group {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    font-size: 0.75rem;
    transform: translateY(-150%);
}
.pt-food-menu .pt-food-menu-group span {
    margin-right: 20px;
    border: 2px solid;
    padding: 0 3px;
}
.pt-food-menu .pt-food-menu-group span:last-child {
    margin: 0;
}
.pt-food-menu .pt-food-menu-price {
    padding-left: 15px;
    width: 1%;
    font-size: 20px;
    font-size: 1.25rem;
    white-space: nowrap;
}
.pt-food-menu .pt-food-menu-price del {
    font-size: 18px;
    font-size: 1.125rem;
    opacity: 0.35;
}
.pt-food-menu .pt-food-menu-price.multi-price .pt-price {
    margin-right: 20px;
}
.pt-food-menu .pt-food-menu-price.multi-price .pt-price:last-child {
    margin: 0;
}
.pt-food-menu .pt-food-menu-details {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.6;
    color: var(--content-color);
}
.pt-food-menu.food-menu-style-1 .pt-food-menu-item {
    padding: 0 0 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dark-color .pt-food-menu.food-menu-style-1 .pt-food-menu-item {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}
.pt-food-menu.food-menu-style-2 .pt-food-menu-item {
    margin: 0 0 30px;
}
.pt-food-menu.food-menu-style-2 .pt-food-menu-lines {
    top: 21px;
    background-position: top;
    background-image: linear-gradient(to right, #000 25%, rgba(255, 255, 255, 0) 0%);
    background-size: 8px 2px;
    background-repeat: repeat-x;
}
.dark-color .pt-food-menu.food-menu-style-2 .pt-food-menu-lines {
    background-image: linear-gradient(to right, #fff 25%, rgba(255, 255, 255, 0) 0%);
}
.pt-food-menu.food-menu-style-3 .pt-food-menu-item {
    margin: 0 0 30px;
}
.pt-food-menu.food-menu-style-3 .pt-food-menu-lines {
    top: 17px;
    border-top: 1px solid;
    color: var(--border-color);
}
.pt-food-menu.food-menu-style-4 .pt-food-menu-item {
    margin: 0 0 30px;
}
.pt-food-menu.food-menu-style-4 .pt-food-menu-lines {
    position: relative;
    top: 14px;
    border-top: 1px solid;
    color: var(--border-color);
}
.pt-food-menu.food-menu-style-4 .pt-food-menu-lines:before {
    position: absolute;
    top: 4px;
    display: block;
    width: 100%;
    height: 1px;
    border-top: 1px solid;
    content: "";
}
.pt-food-menu.food-menu-style-5 {
    margin: calc(0px - var(--gap));
}
.pt-food-menu.food-menu-style-5.gap-10 {
    --gap: 10px;
}
.pt-food-menu.food-menu-style-5.gap-20 {
    --gap: 20px;
}
.pt-food-menu.food-menu-style-5.gap-32 {
    --gap: 32px;
}
.pt-food-menu.food-menu-style-5 .pt-food-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
.pt-food-menu.food-menu-style-5 .pt-food-menu-header > * {
    display: block;
    white-space: normal;
    width: auto;
}
.pt-food-menu.food-menu-style-5 .pt-food-menu-header .pt-food-menu-lines {
    display: none;
}
.pt-food-menu.food-menu-style-5 .pt-food-menu-item {
    display: block;
    padding: var(--gap);
}
.pt-food-menu.food-menu-style-5 .pt-food-menu-title {
    line-height: 1.35;
}
.pt-food-menu.food-menu-style-5 .pt-food-menu-details {
    margin-top: 10px;
    line-height: 1.35;
}
.pt-food-menu.food-menu-style-5 .pt-food-menu-img {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
}
.pt-food-menu.food-menu-style-5 .pt-food-menu-img img {
    display: block;
}
.pt-food-menu.food-menu-style-6 .pt-food-menu-item {
    margin: 0 0 30px;
}
.pt-food-menu.food-menu-style-6 .pt-food-menu-lines {
    opacity: 0;
}
.pt-food-menu .pt-food-menu-item:last-child {
    margin-bottom: 0;
}
.pt-food-card {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
}
.pt-food-card .pt-fc-img,
.pt-food-card .pt-fc-img + .pt-fc-info {
    width: 50%;
}
.pt-food-card:not(.column-reverse) .pt-fc-img {
    display: flex;
    justify-content: flex-end;
}
.pt-food-card .pt-fc-img + .pt-fc-info {
    padding: 0 60px;
}
.pt-food-card .pt-fc-info-title {
    margin: 0;
    line-height: 1.2;
    font-size: 40px;
}
.pt-food-card .pt-fc-info-title + .pt-fc-info-text {
    margin-top: 20px;
}
.pt-food-card .pt-fc-info-text {
    line-height: 1.25;
    font-size: 21px;
}
.pt-food-card .pt-fc-info-text > *:last-child {
    margin-bottom: 0;
}
.pt-food-card .pt-fc-info-text:not(:last-child) {
    margin-bottom: 30px;
}
.pt-food-card .pt-fc-info-extra {
    display: flex;
    margin-top: 20px;
}
.pt-food-card .pt-fc-info-extra .info-label {
    display: inline-block;
    margin-right: 45px;
    font-size: 14px;
    font-size: 0.875rem;
    text-transform: uppercase;
    border: 2px solid;
    padding: 3px 15px;
    line-height: 24px;
    text-align: center;
    min-width: 130px;
}
.pt-food-card .pt-fc-info-extra .info-content {
    display: inline-block;
    font-size: 36px;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1;
}
.pt-food-card.column-reverse {
    flex-direction: row-reverse;
}
.pt-food-card.column-reverse .pt-fc-info {
    display: flex;
    justify-content: flex-end;
}
.pt-testimonials .pt-testimonial:before {
    position: relative;
    display: block;
    margin-bottom: 5px;
    width: 100%;
    height: 50px;
    color: var(--primary-color);
    font-size: 100px;
    font-size: 6.25rem;
    font-weight: 400;
    line-height: 1;
    content: "\201C";
}
.pt-testimonials .pt-testimonial-content {
    font-family: var(--heading-font);
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.5;
}
.pt-testimonials .pt-testimonial-content + .pt-testimonial-rating {
    margin-top: 10px;
}
.pt-testimonials .pt-testimonial-meta {
    margin-top: 20px;
}
.pt-testimonials .elementor-testimonial-image img {
    display: inline;
    width: 100px;
    border-radius: 50%;
}
.pt-testimonials .pt-testimonial-rating:first-child {
    margin-bottom: 10px;
}
.pt-testimonials .pt-testimonial-stars {
    display: block;
}
.pt-testimonials .pt-testimonial-stars:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    content: "\f005\f005\f005\f005\f005";
    color: #ffc107;
    font-size: 12px;
    letter-spacing: 4px;
}
.pt-testimonials.hide-mark .pt-testimonial:before {
    display: none;
}
.pt-testimonials.elementor-testimonial-image-position-aside .pt-testimonial-meta .elementor-testimonial-meta-inner {
    width: fit-content;
    text-align: left;
}
.pt-testimonials.elementor-testimonial-image-position-aside .pt-testimonial-meta .elementor-testimonial-image,
.pt-testimonials.elementor-testimonial-image-position-aside .pt-testimonial-meta .elementor-testimonial-details {
    display: inline-block;
    vertical-align: middle;
}
.pt-testimonials.elementor-testimonial-image-position-aside .pt-testimonial-meta .elementor-testimonial-image {
    margin-right: 16px;
}
.pt-testimonials.elementor-testimonial-image-position-aside.text-center .elementor-testimonial-meta-inner {
    margin: 0 auto;
}
.pt-testimonials .elementor-testimonial-job {
    font-size: 14px;
    font-size: 0.875rem;
    opacity: 0.6;
}
.pt-testimonials.testimonial-style-1 .pt-testimonial {
    margin: 0 auto;
    max-width: 660px;
}
.pt-testimonials.testimonial-style-1 .slick-dots {
    max-width: 660px;
}
.pt-testimonials.testimonials-grid {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -30px;
}
.pt-testimonials.testimonials-grid .pt-testimonial {
    padding: 30px;
}
.pt-testimonials.testimonials-grid .pt-testimonial:before {
    font-size: 50px;
    font-size: 3.125rem;
    height: 30px;
}
.pt-testimonials.testimonials-grid .pt-testimonial-content {
    font-size: 21px;
    font-size: 1.3125rem;
}
.pt-testimonials.testimonials-slider > .pt-ts-wrap > .pt-ts-item {
    display: none;
}
.pt-testimonials.testimonials-slider > .pt-ts-wrap > .pt-ts-item:first-child {
    display: block;
}
.pt-testimonials.testimonials-slider[data-column="2"] .pt-testimonial:before,
.pt-testimonials.testimonials-slider[data-column="3"] .pt-testimonial:before {
    font-size: 50px;
    font-size: 3.125rem;
    height: 30px;
}
.pt-testimonials.testimonials-slider[data-column="2"] .pt-testimonial-content,
.pt-testimonials.testimonials-slider[data-column="3"] .pt-testimonial-content {
    font-size: 21px;
    font-size: 1.3125rem;
}
.elementor-section-full_width .pt-testimonials.testimonials-slider .slick-arrow.slick-prev {
    margin-left: 100px;
}
.elementor-section-full_width .pt-testimonials.testimonials-slider .slick-arrow.slick-next {
    margin-right: 100px;
}
.pt-gallery img {
    display: block;
    margin: 0 auto;
}
.pt-gallery.gap-0 {
    --gallery-gap: 0;
}
.pt-gallery.gap-2 {
    --gallery-gap: 2px;
}
.pt-gallery.gap-5 {
    --gallery-gap: 5px;
}
.pt-gallery.gap-10 {
    --gallery-gap: 10px;
}
.pt-gallery.gap-16 {
    --gallery-gap: 16px;
}
.pt-gallery.gap-20 {
    --gallery-gap: 20px;
}
.pt-gallery.gap-32 {
    --gallery-gap: 32px;
}
.pt-gallery .pt-gallery-item {
    position: relative;
}
.pt-gallery.gallery-grid .pt-gallery-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: calc(0px - var(--gallery-gap));
}
.pt-gallery.gallery-grid .pt-gallery-item {
    padding: var(--gallery-gap);
}
.pt-gallery.gallery-grid.grid-col-2 .pt-gallery-item {
    width: 50%;
}
.pt-gallery.gallery-grid.grid-col-3 .pt-gallery-item {
    width: 33.33%;
}
.pt-gallery.gallery-grid.grid-col-4 .pt-gallery-item {
    width: 25%;
}
.pt-gallery.gallery-grid.grid-col-5 .pt-gallery-item {
    width: 20%;
}
.pt-gallery.gallery-grid.grid-col-6 .pt-gallery-item {
    width: 16.6666%;
}
.pt-gallery.gallery-grid.align-middle-v .pt-gallery-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.pt-gallery.gallery-grid.align-bottom-v .pt-gallery-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.pt-gallery.gallery-carousel .slick-list {
    margin: 0 calc(0px - var(--gallery-gap));
}
.pt-gallery.gallery-carousel .pt-gallery-item {
    padding: 0 var(--gallery-gap);
}
.pt-gallery.gallery-carousel.align-middle-v .slick-track {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.pt-gallery.gallery-carousel.align-bottom-v .slick-track {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.pt-gallery.gallery-carousel.slider-height-full .pt-gallery-item {
    height: 100vh;
}
.pt-gallery.gallery-carousel.slider-height-full .pt-gallery-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pt-gallery.gallery-carousel > .pt-gallery-wrap > .pt-gallery-item {
    display: none;
    opacity: 0;
}
.pt-gallery.gallery-carousel > .pt-gallery-wrap > .pt-gallery-item:first-child {
    display: block;
}
.pt-gallery.slider-dots-overlap .slick-dots {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    color: #fff;
}
.elementor-section-full_width .pt-gallery .slick-arrow.slick-prev {
    margin-left: 100px;
}
.elementor-section-full_width .pt-gallery .slick-arrow.slick-next {
    margin-right: 100px;
}
.pt-instagram .pt-instagram-title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 256px;
    height: 256px;
    padding: 0 30px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
}
.pt-instagram ul {
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.pt-instagram li {
    position: relative;
    overflow: hidden;
}
.pt-instagram.small-gap ul {
    gap: 8px;
}
.pt-instagram.column-4 ul {
    grid-template-columns: repeat(4, 1fr);
}
.pt-instagram.column-5 ul {
    grid-template-columns: repeat(5, 1fr);
}
.pt-instagram .feed-bg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 0;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease-out;
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}
.pt-instagram .feed-video {
    margin-bottom: 0;
}
.pt-instagram li a {
    position: relative;
    display: block;
    overflow: hidden;
    background: #000;
}
.no-touch .pt-instagram li a:hover .feed-bg {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
    opacity: 0.8;
}
.pt-cta .pt-cta-wrap {
    position: relative;
    overflow: hidden;
}
.pt-cta .pt-cta-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
}
.pt-cta .pt-cta-img {
    position: relative;
    overflow: hidden;
    transition: 0.35s ease-in-out;
}
.pt-cta .pt-cta-img img {
    display: block;
    width: 100%;
}
.pt-cta .pt-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: 0.35s;
}
.pt-cta .pt-cta-content {
    z-index: 9;
    width: 100%;
    pointer-events: none;
}
.elementor-editor-active .pt-cta .pt-cta-content {
    pointer-events: auto;
}
.pt-cta .pt-cta-content > * {
    margin-bottom: 10px;
}
.pt-cta .pt-cta-content .pt-subtitle-wrap:last-child {
    margin-bottom: 0;
}
.pt-cta .pt-cta-content a {
    pointer-events: auto;
}
.elementor-editor-active .pt-cta .pt-cta-content a {
    pointer-events: none;
}
.elementor-editor-active .pt-cta .pt-cta-content a .pt-btn-text {
    pointer-events: auto;
}
.pt-cta .pt-cta-text p {
    margin-bottom: 0;
}
.pt-cta.cta-layout-text-overlap .pt-cta-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px;
}
.no-touch .pt-cta.cta-hover-img-zoom:hover .pt-cta-img {
    -webkit-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
}
.pt-cta.cta-hover-img-zoom-out .pt-cta-img {
    -webkit-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
}
.no-touch .pt-cta.cta-hover-img-zoom-out:hover .pt-cta-img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.pt-cta.content-top .pt-cta-content {
    justify-content: flex-start;
}
.pt-cta.content-middle .pt-cta-content {
    justify-content: center;
}
.pt-cta.content-bottom .pt-cta-content {
    justify-content: flex-end;
}
.pt-cta.text-hover-to-show .pt-cta-content {
    opacity: 0;
    transition: opacity 0.4s;
}
.no-touch .pt-cta.text-hover-to-show:hover .pt-cta-content {
    opacity: 1;
}
.pt-cta.text-hover-to-hide .pt-cta-content {
    transition: opacity 0.4s;
}
.no-touch .pt-cta.text-hover-to-hide:hover .pt-cta-content {
    opacity: 0;
}
.pt-cta.with-inner-border .pt-cta-content:before,
.pt-cta.with-inner-border .pt-cta-content:after {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    content: "";
    transition: opacity 0.35s, transform 0.35s;
}
.pt-cta.with-inner-border .pt-cta-content:before {
    border-top: 1px solid;
    border-bottom: 1px solid;
}
.pt-cta.with-inner-border .pt-cta-content:after {
    border-right: 1px solid;
    border-left: 1px solid;
}
.pt-cta.with-inner-border.text-hover-to-show .pt-cta-content:before,
.pt-cta.with-inner-border.text-hover-to-show .pt-cta-content:after {
    opacity: 0;
}
.pt-cta.with-inner-border.text-hover-to-show .pt-cta-content:before {
    transform: scale(0, 1);
}
.pt-cta.with-inner-border.text-hover-to-show .pt-cta-content:after {
    transform: scale(1, 0);
}
.no-touch .pt-cta.with-inner-border.text-hover-to-show:hover .pt-cta-content:before,
.no-touch .pt-cta.with-inner-border.text-hover-to-show:hover .pt-cta-content:after {
    opacity: 1;
    transform: scale(1);
}
.no-touch .pt-cta.with-inner-border.text-hover-to-hide:hover .pt-cta-content:before,
.no-touch .pt-cta.with-inner-border.text-hover-to-hide:hover .pt-cta-content:after {
    opacity: 0;
}
.no-touch .pt-cta.with-inner-border.text-hover-to-hide:hover .pt-cta-content:before {
    transform: scale(0, 1);
}
.no-touch .pt-cta.with-inner-border.text-hover-to-hide:hover .pt-cta-content:after {
    transform: scale(1, 0);
}
.pt-block-links {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.pt-block-links .pt-bl-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 400px;
    flex-grow: 2;
    transition: width 0.8s cubic-bezier(0.36, 0.33, 0, 1);
}
.no-touch .pt-block-links .pt-bl-item:hover .pt-bl-item-bg {
    opacity: 1;
}
.pt-block-links .pt-bl-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease-out;
}
.pt-block-links .pt-bl-item-bg .pt-bl-item-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.pt-block-links .pt-bl-item-inner {
    position: relative;
    z-index: 3;
    padding: 80px 30px;
    text-align: center;
}
.pt-block-links .pt-text,
.pt-block-links .button {
    margin-top: 20px;
}
.pt-block-links .pt-text p {
    margin-bottom: 20px;
}
.pt-block-links .pt-text p:last-child {
    margin-bottom: 0;
}
.pt-block-links .pt-bl-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}
.no-touch .pt-block-links.hover-text-white .pt-bl-item:hover {
    color: #fff !important;
}
.no-touch .pt-block-links.hover-text-white .pt-bl-item:hover .pt-subtitle,
.no-touch .pt-block-links.hover-text-white .pt-bl-item:hover .pt-title,
.no-touch .pt-block-links.hover-text-white .pt-bl-item:hover .pt-text {
    color: inherit !important;
}
.no-touch .pt-block-links.hover-text-white .pt-bl-item:hover .button.pt-btn-outline {
    --btn-bg: #fff;
}
.elementor-editor-active .pt-block-links .pt-bl-link {
    pointer-events: none;
}
.pt-countdown .countdown-item {
    position: relative;
    display: inline-flex;
    flex: 0 1;
    flex-direction: column;
    margin: 0 2%;
    padding: 10px 0;
    min-width: 100px;
    text-align: center;
    font-size: 0;
}
.pt-countdown .countdown-amount {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.2;
}
.pt-countdown .countdown-period {
    font-size: 18px;
    font-size: 1.125rem;
}
.pt-countdown.amount-color-primary .countdown-amount,
.pt-countdown.period-color-primary .countdown-period {
    color: var(--primary-color);
}
.pt-countdown.amount-color-secondary .countdown-amount,
.pt-countdown.period-color-secondary .countdown-period {
    color: var(--secondary-color);
}
.pt-countdown.amount-color-black .countdown-amount,
.pt-countdown.period-color-black .countdown-period {
    color: #000;
}
.pt-countdown.amount-color-white .countdown-amount,
.pt-countdown.period-color-white .countdown-period {
    color: #fff;
}
.pt-video-btn {
    font-size: 0;
}
.pt-video-btn .video-play-btn {
    position: relative;
    display: inline-block;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid;
    cursor: pointer;
    transition: 0.25s;
}
.pt-video-btn .video-play-btn:hover {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}
.pt-video-btn .video-play-btn svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-left: 3px;
}
.pt-video-btn .video-play-btn svg path {
    fill: currentColor;
}
.elementor-widget-pt_social a,
.entry-content .elementor-widget-pt_social a {
    color: inherit;
}
.pt-info-box img {
    display: block;
}
.pt-info-box.text-center img {
    margin: 0 auto;
}
.pt-info-box.text-right img {
    margin-left: auto;
}
.pt-info-box.gap-2 {
    --gallery-gap: 2px;
}
.pt-info-box.gap-5 {
    --gallery-gap: 5px;
}
.pt-info-box.gap-10 {
    --gallery-gap: 10px;
}
.pt-info-box.gap-16 {
    --gallery-gap: 16px;
}
.pt-info-box.gap-32 {
    --gallery-gap: 32px;
}
.pt-info-box.gap-64 {
    --gallery-gap: 64px;
}
.pt-info-box .pt-info-box-img {
    margin-bottom: 30px;
}
.pt-info-box .pt-info-box-title {
    font-size: 28px;
    font-size: 1.75rem;
}
.pt-info-box .pt-info-box-title + .pt-info-box-text,
.pt-info-box .pt-info-box-btn {
    margin-top: 15px;
}
.pt-info-box .pt-info-box-text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.35;
}
.pt-info-box .pt-info-box-text p {
    margin-bottom: 15px;
}
.pt-info-box .pt-info-box-text p:last-child {
    margin-bottom: 0;
}
.pt-info-box.info-box-carousel .pt-info-box-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 calc(0px - var(--gallery-gap));
}
.pt-info-box.info-box-carousel .pt-info-box-item {
    padding: 10px var(--gallery-gap);
}
.pt-info-box.info-box-carousel > .pt-info-box-wrap > .pt-info-box-item {
    display: none;
    opacity: 0;
}
.pt-info-box.info-box-carousel > .pt-info-box-wrap > .pt-info-box-item:first-child {
    display: block;
}
.pt-team {
    position: relative;
    overflow: hidden;
}
.pt-team .pt-team-photo {
    margin-bottom: 15px;
}
.pt-team .pt-team-photo img {
    display: block;
}
.pt-team.text-left .pt-team-photo img {
    margin-right: auto;
}
.pt-team.text-center .pt-team-photo img {
    margin: 0 auto;
}
.pt-team.text-right .pt-team-photo img {
    margin-left: auto;
}
.pt-team .pt-team-position {
    display: block;
    margin-bottom: 7.5px;
}
.pt-team .pt-title.pt-team-name {
    font-size: 30px;
    font-size: 1.875rem;
    margin-bottom: 15px;
}
.pt-team .pt-team-text {
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1rem;
}
.pt-team .pt-team-text p {
    margin-bottom: 15px;
}
.pt-team .pt-team-text p:last-child {
    margin-bottom: 0;
}
.pt-team .pt-team-social a {
    color: inherit;
}
.pt-team > *:last-child {
    margin-bottom: 0;
}
.pt-team.style-overlay .pt-team-photo {
    margin-bottom: 0;
}
.pt-team.style-overlay .pt-team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 30px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    color: #fff;
}
.pt-team.style-overlay .pt-team-name {
    color: inherit;
}
.pt-list {
    list-style: none;
    margin: 0;
}
.pt-list li {
    position: relative;
}
.pt-list .list-icon {
    margin-right: 20px;
}
.pt-list .list-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.pt-list.with-border {
    border-top: 1px solid var(--border-color);
}
.pt-list.with-border li {
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}
.pt-list.pt-list-type-none .list-icon {
    display: none;
    margin: 0;
}
.pt-list.pt-list-type-ordered {
    counter-reset: item;
}
.pt-list.pt-list-type-ordered .list-icon:before {
    counter-increment: item;
}
.pt-list.type-decimal .list-icon:before {
    content: counter(item, decimal) ".";
}
.pt-list.type-decimal-leading-zero .list-icon:before {
    content: counter(item, decimal-leading-zero) ".";
}
.pt-list.type-upper-roman .list-icon:before {
    content: counter(item, upper-roman) ".";
}
.pt-list.type-lower-roman .list-icon:before {
    content: counter(item, lower-roman) ".";
}
.elementor-editor-active .pt-list a {
    pointer-events: none;
}
.pt-open-table .field-wrap > * {
    width: 100%;
}
.pt-open-table.wide .pt-otf-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}
.pt-open-table.wide .pt-otf-wrap .pt-otf-field {
    width: 100%;
    padding: 0 16px;
    margin-bottom: 30px;
}
.pt-open-table.wide .pt-otf-wrap .pt-otf-field:last-child {
    margin-bottom: 0;
}
.pt-open-table.standard .pt-otf-wrap .pt-otf-field {
    width: 100%;
    margin-bottom: 30px;
}
.pt-open-table.standard .pt-otf-wrap .pt-otf-field:last-child {
    margin-bottom: 0;
}
.pt-open-table .field-wrap {
    position: relative;
}
.pt-open-table .pt-otf-field {
    position: relative;
}
.pt-open-table .pt-otf-field.otf-restaurant .field-wrap:after,
.pt-open-table .pt-otf-field.otf-size .field-wrap:after,
.pt-open-table .pt-otf-field.otf-date .field-wrap:after,
.pt-open-table .pt-otf-field.otf-time .field-wrap:after {
    font-family: "ElegantIcons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\33";
    font-size: 16px;
    position: absolute;
    right: 5px;
    top: 0;
    line-height: 42px;
}
.pt-open-table select {
    -webkit-appearance: none !important;
}
.theme-patiotime .ui-datepicker {
    background-color: #f1f2f4;
    border: 0.0625rem solid #d8d9db;
    border-radius: 0;
    padding: 16px;
}
.theme-patiotime .ui-datepicker .ui-datepicker-header {
    padding: 0;
    border: none;
    background: none;
}
.theme-patiotime .ui-datepicker .ui-datepicker-title {
    line-height: 32px;
}
.theme-patiotime .ui-datepicker .ui-datepicker-prev,
.theme-patiotime .ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 0;
    width: 32px;
    height: 32px;
}
.theme-patiotime .ui-datepicker .ui-datepicker-prev span,
.theme-patiotime .ui-datepicker .ui-datepicker-next span {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 50%;
    box-sizing: border-box;
    border: 0.0625rem solid #d8d9db;
    background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205.24%208.07%22%3E%3Cg%3E%3Cpath%20style%3D%22fill%3A%2523333%22%20d%3D%22M5.09%203.68L4.39%203%201.56.15a.5.5%200%200%200-.71%200l-.7.7a.5.5%200%200%200%200%20.71L2.62%204%20.15%206.51a.5.5%200%200%200%200%20.71l.71.71a.5.5%200%200%200%20.71%200L4.39%205.1l.71-.71a.5.5%200%200%200-.01-.71z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 0.375rem 0.5rem;
}
.theme-patiotime .ui-datepicker .ui-datepicker-prev.ui-state-hover,
.theme-patiotime .ui-datepicker .ui-datepicker-next.ui-state-hover {
    background: none;
    border: none;
}
.theme-patiotime .ui-datepicker .ui-datepicker-prev.ui-state-hover span,
.theme-patiotime .ui-datepicker .ui-datepicker-next.ui-state-hover span {
    border: 2px solid #da3743;
}
.theme-patiotime .ui-datepicker .ui-datepicker-prev {
    left: 0;
}
.theme-patiotime .ui-datepicker .ui-datepicker-prev span {
    transform: scaleX(-1);
}
.theme-patiotime .ui-datepicker .ui-datepicker-next {
    right: 0;
}
.theme-patiotime .ui-datepicker table {
    border: none;
}
.theme-patiotime .ui-datepicker table th {
    padding: 8px 0;
    font-weight: 500;
    font-size: 12px;
}
.theme-patiotime .ui-datepicker table td {
    padding: 0;
}
.theme-patiotime .ui-datepicker table td span,
.theme-patiotime .ui-datepicker table td a {
    text-align: center;
}
.theme-patiotime .ui-datepicker table td {
    border: none;
    line-height: 2rem;
    border: 0.0625rem solid #d8d9db;
}
.theme-patiotime .ui-datepicker table .ui-state-default,
.theme-patiotime .ui-datepicker table .ui-widget-content .ui-state-default {
    background: #fff;
    color: #000;
    border: none;
    padding: 0;
}
.theme-patiotime .ui-datepicker table td.ui-state-disabled {
    color: #d8d9db;
    opacity: 1;
}
.theme-patiotime .ui-datepicker table td.ui-state-disabled .ui-state-default {
    color: inherit;
}
.theme-patiotime .ui-datepicker table td a.ui-state-active,
.theme-patiotime .ui-datepicker table td a:hover {
    position: relative;
}
.theme-patiotime .ui-datepicker table td a.ui-state-active:before,
.theme-patiotime .ui-datepicker table td a:hover:before {
    border: 2px solid #da3743;
    box-sizing: border-box;
    content: "";
    height: calc(100% + 2px);
    left: 0;
    margin: -0.0625rem;
    position: absolute;
    width: calc(100% + 2px);
}
.pt-widget_opening_hours {
    font-size: 16px;
    font-size: 1rem;
}
.pt-widget_opening_hours table {
    font-size: inherit;
}
.pt-widget_opening_hours table td:last-child {
    width: 1px;
    white-space: nowrap;
}
.elementor-widget-pt_signup.elementor-align-left form {
    margin-right: auto;
    margin-left: 0;
}
.elementor-widget-pt_signup.elementor-align-center form {
    margin-right: auto;
    margin-left: auto;
}
.elementor-widget-pt_signup.elementor-align-right form {
    margin-right: 0;
    margin-left: auto;
}
.elementor-widget-pt_menu_toggle .menu-toggle {
    min-width: 40px;
    width: fit-content;
    padding: 0 6px;
}
.elementor-widget-pt_menu_toggle .menu-toggle-text {
    font-size: 12px;
    font-size: 0.75rem;
    padding-left: var(--line-width);
    padding-right: 6px;
    margin-left: 15px;
    text-transform: uppercase;
    line-height: 40px;
}
.elementor-widget-pt_menu_toggle .menu-toggle.style-2:before,
.elementor-widget-pt_menu_toggle .menu-toggle.style-2:after {
    display: none;
}
.elementor-widget-pt_menu_toggle .menu-toggle.style-2 .menu-toggle-icon:before,
.elementor-widget-pt_menu_toggle .menu-toggle.style-2 .menu-toggle-icon:after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 12px;
    display: block;
    width: var(--line-width);
    border: 1px solid currentColor;
    border-width: var(--line-height);
    background: none;
    content: "";
}
.elementor-widget-pt_menu_toggle .menu-toggle.style-2 .menu-toggle-icon:before {
    height: 16px;
    border-right: none;
    border-left: none;
    transition: height 0.3s;
}
.elementor-widget-pt_menu_toggle .menu-toggle.style-2 .menu-toggle-icon:after {
    height: 1px;
    border-top: none;
    border-right: none;
    border-left: none;
}
.no-touch .elementor-widget-pt_menu_toggle .menu-toggle.style-2:hover .menu-toggle-icon:before {
    height: 12px;
}
.elementor-widget-pt_menu_toggle .menu-toggle.style-3:before,
.elementor-widget-pt_menu_toggle .menu-toggle.style-3:after,
.elementor-widget-pt_menu_toggle .menu-toggle.style-3 .menu-toggle-icon {
    transform-origin: 0 0;
    transition: transform 0.4s;
}
.elementor-widget-pt_menu_toggle .menu-toggle.style-3:before {
    top: 14px;
}
.elementor-widget-pt_menu_toggle .menu-toggle.style-3:after {
    bottom: 14px;
    top: auto;
    -webkit-transform: scaleX(0.6);
    -ms-transform: scaleX(0.6);
    transform: scaleX(0.6);
}
.elementor-widget-pt_menu_toggle .menu-toggle.style-3 .menu-toggle-icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 12px;
    width: var(--line-width);
    height: var(--line-height);
    background: currentColor;
    -webkit-transform: translateY(-50%) scaleX(0.8);
    -ms-transform: translateY(-50%) scaleX(0.8);
    transform: translateY(-50%) scaleX(0.8);
}
.no-touch .elementor-widget-pt_menu_toggle .menu-toggle.style-3:hover:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.no-touch .elementor-widget-pt_menu_toggle .menu-toggle.style-3:hover .menu-toggle-icon {
    -webkit-transform: translateY(-50%) scaleX(1);
    -ms-transform: translateY(-50%) scaleX(1);
    transform: translateY(-50%) scaleX(1);
}
.elementor-widget-pt_menu_toggle .text-icon-reverse .menu-toggle-text {
    padding-right: var(--line-width);
    padding-left: 6px;
    margin-right: 15px;
    margin-left: 0;
}
.elementor-widget-pt_menu_toggle .text-icon-reverse:before,
.elementor-widget-pt_menu_toggle .text-icon-reverse:after,
.elementor-widget-pt_menu_toggle .text-icon-reverse.menu-toggle.style-2 .menu-toggle-icon:before,
.elementor-widget-pt_menu_toggle .text-icon-reverse.menu-toggle.style-2 .menu-toggle-icon:after,
.elementor-widget-pt_menu_toggle .text-icon-reverse.menu-toggle.style-3 .menu-toggle-icon {
    right: 12px;
    left: auto;
}
.parallax-img-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}
.parallax-img-container img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
}
.pt-parallax-on-scroll {
    overflow: hidden;
}
.fadeInUp.pt-animation-small-offset {
    animation-name: fadeInUpSmall;
}
.fadeInUp.pt-animation-medium-offset {
    animation-name: fadeInUpMedium;
}
.fadeInUp.pt-animation-large-offset {
    animation-name: fadeInUpLarge;
}
@keyframes fadeInUpSmall {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInUpMedium {
    from {
        opacity: 0;
        transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInUpLarge {
    from {
        opacity: 0;
        transform: translate3d(0, 150px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInDown.pt-animation-small-offset {
    animation-name: fadeInDownSmall;
}
.fadeInDown.pt-animation-medium-offset {
    animation-name: fadeInDownMedium;
}
.fadeInDown.pt-animation-large-offset {
    animation-name: fadeInDownLarge;
}
@keyframes fadeInDownSmall {
    from {
        opacity: 0;
        transform: translate3d(0, -50px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInDownMedium {
    from {
        opacity: 0;
        transform: translate3d(0, -100px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInDownLarge {
    from {
        opacity: 0;
        transform: translate3d(0, -150px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInLeft.pt-animation-small-offset {
    animation-name: fadeInLeftSmall;
}
.fadeInLeft.pt-animation-medium-offset {
    animation-name: fadeInLeftMedium;
}
.fadeInLeft.pt-animation-large-offset {
    animation-name: fadeInLeftLarge;
}
@keyframes fadeInLeftSmall {
    from {
        opacity: 0;
        transform: translate3d(-50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInLeftMedium {
    from {
        opacity: 0;
        transform: translate3d(-100px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInLeftLarge {
    from {
        opacity: 0;
        transform: translate3d(-150px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInRight.pt-animation-small-offset {
    animation-name: fadeInRightSmall;
}
.fadeInRight.pt-animation-medium-offset {
    animation-name: fadeInRightMedium;
}
.fadeInRight.pt-animation-large-offset {
    animation-name: fadeInRightLarge;
}
@keyframes fadeInRightSmall {
    from {
        opacity: 0;
        transform: translate3d(50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInRightMedium {
    from {
        opacity: 0;
        transform: translate3d(100px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInRightLarge {
    from {
        opacity: 0;
        transform: translate3d(150px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@media screen and (min-width: 480px) {
    .pt-gallery.gallery-carousel:not(.gallery-carousel[data-column="1"]) > .pt-gallery-wrap > .pt-gallery-item {
        width: 50%;
    }
    .pt-testimonials.testimonials-slider[data-column="2"] .pt-testimonial,
    .pt-testimonials.testimonials-slider[data-column="3"] .pt-testimonial {
        padding: 0 30px;
    }
}
@media screen and (min-width: 600px) {
    .pt-open-table.wide .pt-otf-wrap .pt-otf-field {
        width: 50%;
    }
    .pt-open-table.wide .pt-otf-wrap .pt-otf-field:nth-child(3) {
        /*margin-bottom: 0;*/
    }
}
@media screen and (min-width: 768px) {
    h1.pt-title {
        font-size: 80px;
        font-size: 5rem;
    }
    h2.pt-title {
        font-size: 60px;
        font-size: 3.75rem;
    }
    h3.pt-title {
        font-size: 48px;
        font-size: 3rem;
    }
    h4.pt-title {
        font-size: 42px;
        font-size: 2.625rem;
    }
    h5.pt-title {
        font-size: 36px;
        font-size: 2.25rem;
    }
    h6.pt-title {
        font-size: 32px;
        font-size: 2rem;
    }
    .pt-food-menu.food-menu-style-5 {
        display: flex;
        flex-wrap: wrap;
    }
    .pt-food-menu.food-menu-style-5.column-2 .pt-food-menu-item,
    .pt-food-menu.food-menu-style-5.column-4 .pt-food-menu-item {
        width: 50%;
    }
    .pt-food-menu.food-menu-style-5.column-3 .pt-food-menu-item {
        width: 33.3333%;
    }
    .pt-instagram.column-6 ul {
        grid-template-columns: repeat(6, 1fr);
    }
    .pt-instagram.column-7 ul {
        grid-template-columns: repeat(7, 1fr);
    }
    .pt-instagram.column-8 ul {
        grid-template-columns: repeat(8, 1fr);
    }
    .pt-instagram.column-mosaic ul {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .pt-instagram.column-mosaic ul li:first-child {
        grid-column: 1 / span 2;
        grid-row: 1 / span 2;
    }
    .pt-instagram.column-mosaic ul li:nth-child(4) {
        grid-column: 5 / span 2;
        grid-row: 1 / span 2;
    }
    .pt-instagram.column-mosaic ul li:nth-child(9) {
        grid-column: 3 / span 2;
        grid-row: 3 / span 2;
    }
    .pt-instagram.column-mosaic.mosaic-2 ul li:first-child {
        grid-row: 1 / 2;
    }
    .pt-instagram.column-mosaic.mosaic-2 ul li:nth-child(2) {
        grid-column: 3 / span 2;
        grid-row: 1 / span 2;
    }
    .pt-instagram.column-mosaic.mosaic-2 ul li:nth-child(4) {
        grid-column: 5 / span 1;
        grid-row: 1 / span 1;
    }
    .pt-instagram.column-mosaic.mosaic-2 ul li:nth-child(7) {
        grid-column: 5 / span 2;
        grid-row: 2 / 3;
    }
    .pt-instagram.column-mosaic.mosaic-2 ul li:first-child .feed-bg,
    .pt-instagram.column-mosaic.mosaic-2 ul li:nth-child(7) .feed-bg,
    .pt-instagram.column-mosaic.mosaic-2 ul li:nth-child(12) .feed-bg {
        padding-top: 50%;
    }
    .pt-instagram.column-mosaic.mosaic-2 ul li:nth-child(8) {
        grid-column: 1 / span 2;
        grid-row: 3 / span 2;
    }
    .pt-instagram.column-mosaic.mosaic-2 ul li:nth-child(9) {
        grid-column: revert;
        grid-row: revert;
    }
    .pt-instagram.column-mosaic.mosaic-2 ul li:nth-child(11) {
        grid-column: 5 / span 2;
        grid-row: 3 / span 2;
    }
    .pt-instagram.column-mosaic.mosaic-2 ul li:nth-child(12) {
        grid-column: 3 / span 2;
        grid-row: 4 / 5;
    }
    .pt-instagram.column-mosaic.mosaic-2.small-gap ul li:first-child .feed-bg,
    .pt-instagram.column-mosaic.mosaic-2.small-gap ul li:nth-child(7) .feed-bg,
    .pt-instagram.column-mosaic.mosaic-2.small-gap ul li:nth-child(12) .feed-bg {
        padding-top: calc(50% - 2px);
    }
    .pt-block-links {
        flex-wrap: nowrap;
    }
    .pt-block-links .pt-bl-item {
        width: 50%;
    }
    .no-touch .pt-block-links .pt-bl-item:hover {
        width: 60%;
    }
    .pt-block-links .pt-bl-item-inner {
        padding: 100px 40px;
    }
    .pt-block-links.height-full .pt-bl-item {
        height: 100vh;
    }
    .pt-countdown .countdown-amount {
        font-size: 60px;
        font-size: 3.75rem;
    }
    .pt-countdown .countdown-period {
        font-size: 20px;
        font-size: 1.25rem;
    }
    .pt-gallery.gallery-carousel[data-column="3"] > .pt-gallery-wrap > .pt-gallery-item,
    .pt-gallery.gallery-carousel[data-column="4"] > .pt-gallery-wrap > .pt-gallery-item,
    .pt-gallery.gallery-carousel[data-column="5"] > .pt-gallery-wrap > .pt-gallery-item,
    .pt-gallery.gallery-carousel[data-column="6"] > .pt-gallery-wrap > .pt-gallery-item {
        width: 33.3333%;
    }
    .info-box-carousel:not([data-column="1"]) > .pt-info-box-wrap > .pt-info-box-item {
        width: 50%;
    }
    .pt-testimonials.testimonials-grid.grid-col-2 .pt-testimonial {
        width: 50%;
    }
    .pt-testimonials.testimonials-grid.grid-col-2 .pt-testimonial-content {
        font-size: 24px;
        font-size: 1.5rem;
    }
    .pt-testimonials.testimonials-grid.grid-col-3 .pt-testimonial {
        width: 33.33%;
    }
    .pt-testimonials.testimonials-slider[data-column="2"] .pt-testimonial-content {
        font-size: 24px;
        font-size: 1.5rem;
    }
}
@media screen and (min-width: 1024px) {
    h1.pt-title {
        font-size: 98px;
        font-size: 6.125rem;
    }
    h2.pt-title {
        font-size: 80px;
        font-size: 5rem;
    }
    h3.pt-title {
        font-size: 52px;
        font-size: 3.25rem;
    }
    h4.pt-title {
        font-size: 48px;
        font-size: 3rem;
    }
    .pt-open-table.wide .pt-otf-wrap .pt-otf-field {
        width: 33.33%;
        margin-bottom: 15px;
    }
    .pt-open-table.wide .pt-otf-wrap .pt-otf-text {
        width: 100%;
        margin-bottom: 15px;
    }
    .pt-open-table.wide.multi-restaurants .pt-otf-wrap .pt-otf-field {
        width: 20%;
    }
    .pt-food-menu.food-menu-style-5.column-4 .pt-food-menu-item {
        width: 25%;
    }
    .pt-countdown .countdown-amount {
        font-size: 80px;
        font-size: 5rem;
    }
    .pt-countdown .countdown-period {
        font-size: 24px;
        font-size: 1.5rem;
    }
    .pt-gallery.gallery-carousel[data-column="4"] > .pt-gallery-wrap > .pt-gallery-item,
    .info-box-carousel[data-column="4"] > .pt-info-box-wrap > .pt-info-box-item {
        width: 25%;
    }
    .pt-gallery.gallery-carousel[data-column="5"] > .pt-gallery-wrap > .pt-gallery-item,
    .info-box-carousel[data-column="5"] > .pt-info-box-wrap > .pt-info-box-item {
        width: 20%;
    }
    .pt-gallery.gallery-carousel[data-column="6"] > .pt-gallery-wrap > .pt-gallery-item,
    .info-box-carousel[data-column="6"] > .pt-info-box-wrap > .pt-info-box-item {
        width: 16.6666%;
    }
    .info-box-carousel[data-column="3"] > .pt-info-box-wrap > .pt-info-box-item {
        width: 33.3333%;
    }
}
@media screen and (min-width: 1025px) {
    h1.pt-title {
        font-size: 110px;
        font-size: 6.875rem;
    }
    h2.pt-title {
        font-size: 98px;
        font-size: 6.125rem;
    }
    h3.pt-title {
        font-size: 74px;
        font-size: 4.625rem;
    }
    h4.pt-title {
        font-size: 66px;
        font-size: 4.125rem;
    }
    h5.pt-title {
        font-size: 50px;
        font-size: 3.125rem;
    }
    h6.pt-title {
        font-size: 40px;
        font-size: 2.5rem;
    }
    .pt-block-links .pt-bl-item-inner {
        padding: 180px 80px;
    }
    .site-content[class*="with-sidebar-"] .pt-section-content-fullwidth {
        width: 100%;
        left: auto;
    }
}
@media screen and (max-width: 1024px) {
    .pt-title-wrap.text-left-tablet,
    .elementor-widget-pt_signup.elementor-tablet-align-left form {
        margin-right: auto;
        margin-left: 0;
    }
    .pt-title-wrap.text-center-tablet,
    .elementor-widget-pt_signup.elementor-tablet-align-center form {
        margin-right: auto;
        margin-left: auto;
    }
    .pt-title-wrap.text-right-tablet,
    .elementor-widget-pt_signup.elementor-tablet-align-right form {
        margin-right: 0;
        margin-left: auto;
    }
    .pt-instagram .pt-instagram-title {
        width: 150px;
        height: 150px;
        font-size: 18px;
        font-size: 1.125rem;
    }
    .pt-menu.text-left-tablet .menu {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
    .pt-menu.text-center-tablet .menu {
        -webkit-justify-content: center;
        justify-content: center;
    }
    .pt-menu.text-right-tablet .menu {
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
    }
    .elementor-tablet-align-left .pt-rounded-image {
        margin-right: auto;
        margin-left: 0;
    }
    .elementor-tablet-align-center .pt-rounded-image {
        margin-right: auto;
        margin-left: auto;
    }
    .elementor-tablet-align-right .pt-rounded-image {
        margin-right: 0;
        margin-left: auto;
    }
}
@media screen and (max-width: 1023px) {
    .pt-open-table.wide .pt-otf-wrap .pt-otf-field.otf-submit:nth-child(5) {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .pt-rounded-image {
        --rounded: 50vw;
    }
    .pt-title-wrap.text-left-mobile,
    .elementor-widget-pt_signup.elementor-mobile-align-left form {
        margin-right: auto;
        margin-left: 0;
    }
    .pt-title-wrap.text-center-mobile,
    .elementor-widget-pt_signup.elementor-mobile-align-center form {
        margin-right: auto;
        margin-left: auto;
    }
    .pt-title-wrap.text-right-mobile,
    .elementor-widget-pt_signup.elementor-mobile-align-right form {
        margin-right: 0;
        margin-left: auto;
    }
    .pt-menu.text-left-mobile .menu {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
    .pt-menu.text-center-mobile .menu {
        -webkit-justify-content: center;
        justify-content: center;
    }
    .pt-menu.text-right-mobile .menu {
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
    }
    .pt-food-card,
    .pt-food-card.column-reverse {
        flex-direction: column;
    }
    .pt-food-card .pt-fc-img {
        width: 100%;
    }
    .pt-food-card .pt-fc-img + .pt-fc-info {
        width: 100%;
        padding: 30px 0;
    }
    .pt-food-card .pt-fc-info {
        text-align: center;
    }
    .pt-food-card .pt-fc-info-extra {
        justify-content: center;
    }
    .elementor-mobile-align-left .pt-rounded-image {
        margin-right: auto;
        margin-left: 0;
    }
    .elementor-mobile-align-center .pt-rounded-image {
        margin-right: auto;
        margin-left: auto;
    }
    .elementor-mobile-align-right .pt-rounded-image {
        margin-right: 0;
        margin-left: auto;
    }
    .pt-instagram.column-mosaic.mosaic-2 ul li:first-child {
        grid-column: 1 / span 2;
        grid-row: 1 / 2;
    }
    .pt-instagram.column-mosaic.mosaic-2 ul li:nth-child(7) {
        grid-column: 2 / span 2;
        grid-row: 3 / 4;
    }
    .pt-instagram.column-mosaic.mosaic-2 ul li:nth-child(12) {
        grid-column: 2 / span 2;
        grid-row: 5 / 6;
    }
    .pt-instagram.column-mosaic.mosaic-2 ul li:first-child .feed-bg,
    .pt-instagram.column-mosaic.mosaic-2 ul li:nth-child(7) .feed-bg,
    .pt-instagram.column-mosaic.mosaic-2 ul li:nth-child(12) .feed-bg {
        padding-top: 50%;
    }
    .pt-instagram.column-mosaic.mosaic-2.small-gap ul li:first-child .feed-bg,
    .pt-instagram.column-mosaic.mosaic-2.small-gap ul li:nth-child(7) .feed-bg,
    .pt-instagram.column-mosaic.mosaic-2.small-gap ul li:nth-child(12) .feed-bg {
        padding-top: calc(50% - 2px);
    }
}
@media screen and (max-width: 599px) {
    .pt-food-menu .pt-food-menu-img {
        width: 60px;
        margin-right: 10px;
    }
    .pt-food-menu .pt-food-menu-header > * {
        width: auto;
    }
    .pt-food-menu .pt-food-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
    }
    .pt-food-menu .pt-food-menu-title {
        margin-bottom: 0;
        white-space: normal;
        font-size: 20px;
        font-size: 1.25rem;
    }
    .pt-food-menu .pt-food-menu-lines {
        display: none;
    }
    .pt-food-menu .pt-food-menu-price {
        font-size: 18px;
        font-size: 1.125rem;
    }
    .pt-food-menu .pt-food-menu-lines + .pt-food-menu-price {
        margin-left: auto;
    }
    .pt-food-menu.lines-on-mobile.food-menu-style-2 .pt-food-menu-lines {
        top: 18px;
        display: flex;
        flex: 1 1 10%;
        height: 2px;
    }
    .pt-food-menu.lines-on-mobile.food-menu-style-3 .pt-food-menu-lines {
        top: 15px;
        display: flex;
        flex: 1 1 10%;
    }
    .pt-food-menu.lines-on-mobile.food-menu-style-4 .pt-food-menu-lines {
        top: 12px;
        display: flex;
        flex: 1 1 10%;
    }
    .pt-gallery.gallery-grid .pt-gallery-item {
        width: 100% !important;
    }
    .pt-section-content-fullwidth .pt-gallery .slick-arrow.slick-prev {
        margin-left: 45px;
    }
    .pt-section-content-fullwidth .pt-gallery .slick-arrow.slick-next {
        margin-right: 45px;
    }
    .pt-slider .slick-arrow.slick-prev {
        margin-left: 45px;
    }
    .pt-slider .slick-arrow.slick-next {
        margin-right: 45px;
    }
    .pt-instagram.column-5 ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .pt-instagram.column-5 ul li:nth-child(5):last-child {
        display: none;
    }
}
