:root {
  --spacing: 50px;
  --heading-font: "Montserrat", serif;
  --body-font: "Montserrat", serif;
  --secondary-font: "Montserrat", serif;
  --btn-font:"Montserrat", serif;
  --sidebar: 360px;
  --site-width: 1300px;
  --sidebar-gap: 80px;
  --primary-color: #211b16;
  --primary-color-semi: rgba(185, 157, 117, 0.3);
  --secondary-color: #c4c4c4;
  --content-color: #a1a1a1;
  --theme-primary-color: var(--primary-color);
  --theme-secondary-color: var(--secondary-color);
  --btn-bg: var(--primary-color);
  --btn-color: #fff;
  --btn-bg-hover: #211b16;
  --btn-color-hover: #fff;
  --btn-height: 52px;
  --btn-font-size: 16px;
  --btn-font-weight: 400;
  --btn-letter-spacing: 0;
  --btn-text-transform: none;
  --hf-weight: 400;
  --hf-letter-spacing: 0;
  --hf-text-transform: none;
  --hf-style: normal;
  --subheading-font: "Montserrat", serif;
  --shf-font-size: 12px;
  --shf-weight: 500;
  --shf-letter-spacing: 0.1em;
  --shf-text-transform: uppercase;
  --shf-style: normal;
  --shf-color: #4d4a46;
  --sf-letter-spacing: 0.05em;
  --sf-text-transform: uppercase;
  --sf-style: normal;
  --blog-title-weight: 400;
  --bt-letter-spacing: 0;
  --bt-text-transform: none;
  --bt-style: normal;
  --post-text-size: 18px;
  --post-line-height: 1.66;
  --widget-title-font: "Montserrat", 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", serif;
  --nav-font-size: 13px;
  --nav-font-weight: 500;
  --nav-font-letter-spacing: 0.05em;
  --nav-font-transform: uppercase;
  --fbnav-font-size: 16px;
  --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: #1a1b1a;
  --light-content-color: #333632;
  --light-link-color: var(--primary-color);
  --light-link-color-hover: var(--primary-color);
  --dark-bg-color: #f4f4f4;
  --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.12);
  --form-bd-focus: var(--primary-color);
  --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: var(--primary-color);
    --border-color: rgba(255, 255, 255, 0.15);
    --light-grey: #151515;
}
:root .e-con {
  --container-default-padding-top: 0;
  --container-default-padding-right: 0;
  --container-default-padding-bottom: 0;
  --container-default-padding-left: 0;
}
@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 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 showTab {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes showTab {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
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;
}







@font-face {
    font-family: 'Nexa Light';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/NexaLight.woff') format('woff');
}

@font-face {
    font-family: 'Nexa Bold';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/NexaBold.woff') format('woff');
}








.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-flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  height: var(--btn-height);
  background: var(--btn-bg);
  border: none;
  border-radius: var(--btn-radius);
  color: var(--btn-color);
  font-family: var(--btn-font);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  text-transform: var(--btn-text-transform);
  line-height: 1;
  text-align: center;
  transition: 0.4s;
  cursor: pointer;
}
.no-touch .button:not(.cs-btn-underline):hover {
  background: var(--btn-bg-hover);
  color: var(--btn-color-hover);
  border-color: var(--btn-bg-hover);
}
.button.cs-btn-outline {
  --btn-color: var(--text-color);
  background: #96897c;
   
}

.cs-btn-outline:hover{
	border:1px solid #96897c !important;
}

.button.cs-btn-underline {
  padding: 7px 7px;
  height: auto;
  background: none;
  color: var(--text-color);
  border-radius: 0;
	text-decoration: none;
	width: 100%;
	    justify-content: left;
}
.button.cs-btn-underline:before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;

  content: "";
  transition: transform 0.2s ease;
  transform-origin: 0 0;
}
.no-touch .button.cs-btn-underline:hover:before {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.button.cs-btn-plain {
  background: none;
  color: inherit;
}
.button.cs-btn-small {
  --btn-height: 44px;
  padding: 0 24px;
  font-size: 14px;
  font-size: 0.875rem;
	border: #fff 1px solid;
	background: none;
}


 

.button.cs-btn-small.cs-btn-underline {
  padding: 5px 0;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.button.cs-btn-large {
  --btn-height: 62px;
  padding: 0 60px;
  font-size: 20px;
  font-size: 1.25rem;
}
.button.cs-btn-extra-large {
  --btn-height: 72px;
  padding: 0 60px;
  font-size: 24px;
  font-size: 1.5rem;
}
.button.cs-btn-color-primary {
  --btn-bg: var(--primary-color);
}
.button.cs-btn-color-secondary {
  --btn-bg: var(--secondary-color);
}
.button.cs-btn-color-black {
  --btn-bg: #000;
  --btn-color: #fff;
}
.button.cs-btn-color-black.cs-btn-outline {
  --btn-color: #000;
  --btn-bg-hover: #000;
  --btn-color-hover: #fff;
}
.button.cs-btn-color-white {
  --btn-bg: #fff;
  --btn-color: #000;
}
.button.cs-btn-color-white.cs-btn-outline {
  --btn-color: #fff;
  --btn-bg-hover: #fff;
  --btn-color-hover: #000;
}
.button .cs-btn-icon {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  align-self: center;
}
.button .cs-btn-icon.icon-line {
  width: 40px;
  height: 1px;
  border-top: 1px solid;
}
.button .cs-btn-icon.icon-arrow:after,
.button .cs-btn-icon.icon-plus: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;
  font-size: inherit;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.button .cs-btn-icon.icon-arrow:after {
  content: "\35";
}
.button .cs-btn-icon.icon-arrow.arrow-2:after {
  content: "\24";
  font-size: larger;
  right: -5px;
}
.button .cs-btn-icon.icon-arrow.arrow-3:after {
  content: "\39";
}
.button .cs-btn-icon.icon-plus:after {
  content: "\4c";
}
.button.cs-btn-underline .cs-btn-icon {
  position: absolute;
  right: -15px;
}
.button.cs-btn-underline .cs-btn-icon.icon-line {
  right: -40px;
  width: 30px;
}
.button.cs-btn-circle {
  --btn-size: 150px;
  width: var(--btn-size);
  height: var(--btn-size);
  padding: 0;
  border-radius: 999px;
  line-height: 1.3;
}
.button.cs-btn-circle .cs-btn-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
}
.button.cs-btn-circle.with-inner-border:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  display: block;
  content: "";
  border-radius: 999px;
  border: 1px solid;
  pointer-events: none;
  opacity: 0.8;
}
.cs-btn-square {
  --btn-radius: 0px;
}
.cs-btn-rounded {
  --btn-radius: 5px;
}
.cs-btn-pill {
  --btn-radius: 999px;
}
.tagcloud a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  color: inherit;
}
.tagcloud a:not(:last-child):after {
  margin: 0 4px;
  content: "/";
}
.no-touch .tagcloud a:hover,
.tagcloud a:focus {
  color: var(--text-color);
}
.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 {
  --arrow-size: 60px;
  position: absolute;
  top: 50%;
  z-index: 99;
  padding: 0;
  width: var(--arrow-size);
  height: var(--arrow-size);
  background: #fff;
  border-radius: 99px;
  box-shadow: 0 2px 40px -10px rgba(83, 54, 36, 0.1);
  text-align: center;
  color: #111;
  line-height: var(--arrow-size);
  cursor: pointer;
  font-feature-settings: normal;
  transition: 0.2s;
}
.cs-gallery:not(.slider-dots-overlap) .slick-dotted .slick-arrow,
.cs-rooms-carousel:not(.slider-arrow-top):not(.slider-dots-overlap)
  .slick-dotted
  + .slider-arrows
  .slick-arrow {
  margin-top: -30px;
}
.no-touch .slick-arrow:hover {
  box-shadow: 0 2px 40px -10px rgba(83, 54, 36, 0.3);
}
.slick-arrow: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;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: inherit;
}
.slick-arrow.slick-prev {
  left: 30px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.slick-arrow.slick-prev:after {
  content: "\34";
}
.slick-arrow.slick-next {
  right: 30px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.slick-arrow.slick-next:after {
  content: "\35";
}
.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:only-child {
  display: none;
}
.slick-dots li button {
  padding: 6px;
}
.slick-dots li button:before {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  content: "";
  transition: 0.2s;
  transform-origin: 50% 50%;
}
.slick-dots li.slick-active button:before {
  opacity: 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);
}
.cs-template-wide .container {
  
}
.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);
}
.row > * {
  margin-bottom: 30px;
}
.cs-notice {
  padding: 30px;
  background: lightskyblue;
  color: #111;
}
.cs-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: 1200px) {
  .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;
  }
}
@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;
  }
  .slick-arrow {
    --arrow-size: 36px;
  }
  .slick-arrow.slick-prev {
    left: 15px;
  }
  .slick-arrow.slick-next {
    right: 15px;
  }
}
@media screen and (max-width: 599px) {
  .button:not(.cs-btn-underline) {
    padding: 0 24px;
  }
  .button:not(.cs-btn-underline).cs-btn-small {
    
  }
 
	
	.button.cs-btn-black {
 
    font-size: 13px !important;
}
	
	
  .button:not(.cs-btn-underline).cs-btn-large {
    padding: 0 30px;
  }
  .button:not(.cs-btn-underline).cs-btn-extra-large {
    padding: 0 30px;
  }
}
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:"Montserrat", serif;
}
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.layout-overlay a,
.entry-content .cs-menu a {
  color: inherit;
}
.no-touch .entry-content .cs-menu .primary-menu a:hover,
.no-touch .entry-content .cs-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-widget-text-editor ul li:not(:last-child),
.elementor-widget-text-editor ol li:not(:last-child) {
  margin-bottom: 8px;
}
.elementor-widget-text-editor ul ul,
.elementor-widget-text-editor ul ol,
.elementor-widget-text-editor ol ul,
.elementor-widget-text-editor 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: #000;
}
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,
.elementor h1 {
  font-size: 36px;
  font-size: 2.25rem;
}
.entry-content h2,
.elementor h2 {
  font-size: 32px;
  font-size: 2rem;
}
.entry-content h3,
.elementor h3 {
  font-size: 28px;
  font-size: 1.75rem;
}
.entry-content h4,
.elementor h4 {
  font-size: 24px;
  font-size: 1.5rem;
}
.entry-content h5,
.elementor h5 {
  font-size: 21px;
  font-size: 1.3125rem;
}
.entry-content h6,
.elementor 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;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.breadcrumbs,
.meta,
.cat-links,
.pagination,
.comment-metadata,
.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: 12px;
  font-size: 0.75rem;
}
.cs-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(--shf-color);
}
.cs-subtitle.style-underline {
  border-bottom: 2px solid var(--primary-color);
}
.cs-subtitle.style-bordered {
  max-width: calc(100% - 100px);
}
.cs-subtitle.style-bordered:before,
.cs-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: "";
}
.cs-subtitle.style-bordered:before {
  left: -95px;
}
.cs-subtitle.style-bordered:after {
  right: -95px;
}
.tagcloud a {
  text-transform: none;
  letter-spacing: 0;
}
.meta,
.cat-links {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
}
.breadcrumbs {
  opacity: 0.6;
}
p {
    margin: 0 auto 30px;
    font-size: inherit;
    color: #535353;
    line-height: 28px;
    font-weight: 300;
}
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: #1a1b1a;
}
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;
  }
}
@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;
  padding: 0;
  width: fit-content;
  min-width: var(--line-width);
  height: var(--height);
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: inherit;
  font-size: 0 !important;
  line-height: var(--height);
  transition: 0.4s;
  cursor: pointer;
  --line-width: 35px;
  --line-height: 1px;
  --height: 50px;
}
.menu-toggle .menu-toggle-icon:before,
.menu-toggle .menu-toggle-icon:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  display: block;
  width: var(--line-width);
  border: 1px solid currentColor;
  border-width: var(--line-height);
  background: none;
  content: "";
}
.menu-toggle .menu-toggle-icon:before {
  height: 14px;
  border-right: none;
  border-left: none;
  transition: height 0.3s;
}
.menu-toggle .menu-toggle-icon:after {
  height: 1px;
  border-top: none;
  border-right: none;
  border-left: none;
}
.menu-toggle .menu-toggle-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding-left: calc(var(--line-width) + 15px);
  text-transform: uppercase;
  line-height: var(--height);
}
.no-touch .menu-toggle:hover,
.menu-toggle:focus {
  color: var(--primary-color);
  outline: 0;
}
.elementor-widget-container .menu-toggle {
  display: flex;
}
.menu-toggle.text-icon-reverse .menu-toggle-icon:before,
.menu-toggle.text-icon-reverse .menu-toggle-icon:after {
  right: 0;
  left: auto;
}
.menu-toggle.text-icon-reverse .menu-toggle-text {
  padding-right: calc(var(--line-width) + 15px);
  padding-left: 0;
}
.menu-toggle.close-button .menu-toggle-icon {
  display: none;
}
.menu-toggle.close-button:before,
.menu-toggle.close-button:after {
  top: 24px;
  left: 5px;
}
.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 .site-header-main {
  position: relative;
  z-index: 3;
  background: #fff;
  color: #000;
  border-bottom: 1px solid #eee;
}
.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 {
  
  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;
	color:#fff !important;
}
.primary-menu > li > a:before {
  display: block;
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: 1px;
  background: currentColor;
  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(.cozystay-dropdown-menu) li {
  white-space: nowrap;
}
.primary-menu .sub-menu:not(.cozystay-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(.cozystay-dropdown-menu) a span {
  position: relative;
}
.no-touch .primary-menu .sub-menu:not(.cozystay-dropdown-menu) a:hover {
  opacity: 1;
  color: var(--primary-color);
}
.primary-menu .sub-menu li.current-menu-item > a {
  color: var(--primary-color);
}
.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);
}
.cozystay-dropdown-menu {
  white-space: normal;
  padding: 0;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}
.primary-menu .cozystay-dropdown-menu.sub-menu {
  padding: 0;
}
.cozystay-dropdown-menu > .container {
  display: block;
  padding: 0;
  max-width: none;
}
.cozystay-dropdown-menu a.button span:before {
  display: none;
}
.cozystay-dropdown-menu.fullwidth {
  width: 100vw;
}
.no-touch .cozystay-dropdown-menu .elementor-widget-icon-list a:hover {
  color: var(--primary-color);
}
.site-header .main-navigation .dropdown-toggle:before,
.main-navigation.not-mobile-menu .dropdown-toggle:before {
  display: none;
}
.no-touch .site-header .main-navigation .dropdown-toggle,
.no-touch .main-navigation.not-mobile-menu .dropdown-toggle {
  display: none;
}
.touch .site-header .main-navigation .dropdown-toggle,
.touch .main-navigation.not-mobile-menu .dropdown-toggle {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 35px;
  height: 36px;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  transition: 0.4s;
}
.touch .site-header .main-navigation .dropdown-toggle.toggled-on + .sub-menu,
.touch
  .main-navigation.not-mobile-menu
  .dropdown-toggle.toggled-on
  + .sub-menu {
  z-index: 99;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.touch .site-header .main-navigation .primary-menu > li:hover > .sub-menu,
.touch .main-navigation.not-mobile-menu .primary-menu > li:hover > .sub-menu {
  -webkit-transform: translateY(105%);
  -ms-transform: translateY(105%);
  transform: translateY(105%);
}
.site-header
  .main-navigation
  .primary-menu
  > li
  > .dropdown-toggle.toggled-on
  + .sub-menu,
.main-navigation.not-mobile-menu
  .primary-menu
  > li
  > .dropdown-toggle.toggled-on
  + .sub-menu {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.site-header-search,
.cs-search-toggle {
  display: block;
}
.site-header-search .toggle-button,
.cs-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,
.cs-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 {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  line-height: 1;
  list-style: none;
}
ul.social-nav li {
  display: block;
}
ul.social-nav li:not(:last-child) a {
  margin-right: 25px;
}
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: 16px;
  font-size: 1rem;
  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,
ul.social-nav li a[href*="airbnb"]:before,
ul.social-nav li a[href*="x.com"]: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";
}
ul.social-nav li a[href*="airbnb"]:before {
  content: "\f834";
}
ul.social-nav li a[href*="x.com"]:before {
  font-family: "Font Awesome 6 Brands";
  content: "\e61b";
}


.sidemenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200000;
  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%;
  max-width: 100%;
  height: 100%;
  padding: 0 30px 60px;
  margin: 0;
  background-color: var(--secondary-color);
  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-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
}
.sidemenu.sidemenu-custom .sidemenu-header {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 30px;
  width: auto;
  border: none;
}
.sidemenu.sidemenu-custom .container {
  padding: 0;
	position: absolute;
	z-index: 999;
}
.sidemenu .close-button {
  position: relative;
  order: 2;
  margin-left: auto;
}
.sidemenu.fullwidth {
  max-width: 100vw;
}
.cs-menu-mobile .mobile-menu {
  display: block;
  --nav-font: var(--heading-font);
	z-index: 999;
}
.cs-menu-mobile .mobile-menu li {
  position: relative;
  display: block;
}
.cs-menu-mobile .mobile-menu a {
  position: relative;
  text-transform: capitalize;
}
.cs-menu-mobile .mobile-menu a:before,
.cs-menu-mobile .mobile-menu a:after {
  display: none !important;
}
.cs-menu-mobile .mobile-menu > li {
  padding: 0;
}
.cs-menu-mobile .mobile-menu > li > a {
  display: block;
  padding: 15px 0;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
}
.cs-menu-mobile .mobile-menu li.current-menu-item > a,
.cs-menu-mobile .mobile-menu li.current-menu-ancestor > a {
  color: var(--primary-color);
}
.cs-menu-mobile .mobile-menu ul.sub-menu {
  display: none;
  margin: 0 0 0 30px;
}
.cs-menu-mobile .mobile-menu ul.sub-menu li a {
  padding: 4px 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 40px;
}
.cs-menu-mobile .mobile-menu ul.sub-menu .dropdown-toggle {
  top: 0;
}
.dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  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: 1200px) {
  .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);
  }
  .cs-menu-mobile .mobile-menu > li > a {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .cs-menu-mobile .mobile-menu .dropdown-toggle {
    top: 4px;
  }
}
.meta-wrap {
  color: var(--secondary-color);
}
.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-wrap > *:not(:last-child):after {
  position: relative;
  display: inline-block;
  margin: 0 6px;
  content: "/";
}
.no-touch .meta-wrap a:hover {
  color: inherit;
}
.meta {
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.meta .meta-item {
  margin-right: 9px;
}
.meta .meta-item:last-child {
  margin-right: 0;
}
.meta .meta-item:after {
  position: relative;
  display: inline-block;
  content: "/";
  margin-left: 6px;
}
.cat-links {
  display: inline-flex;
  flex-wrap: wrap;
}
.post-header-section .cat-links {
  justify-content: center;
}
.cat-links a,
.cat-links span {
  margin-right: 3px;
}
.cat-links a:after,
.cat-links span:after {
  position: relative;
  display: inline-block;
  content: ".";
  margin-left: 3px;
}
.cat-links a:last-child:after,
.cat-links span:last-child:after {
  display: none;
}
.read-more-btn {
  border: none !important;
  font-size: 14px;
  font-size: 0.875rem;
	text-align: left;

}



.read-more-btn img{
width:25%;
}


.read-more-btn span {
  position: relative;
		color: #000 !important;
	 
}
.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: "\35";
  font-size: 16px;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  right: -8px;
  -webkit-transform: translate(70%, -50%);
  -ms-transform: translate(70%, -50%);
  transform: translate(70%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.no-touch .read-more-btn:hover span:after {
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
}
.post-excerpt {
  color: var(--content-color);
  font-size: 16px;
  font-size: 1rem;
  z-index: 9;
  line-height: 1.6;
}
.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;
}
.layout-masonry .masonry-column,
.featured-img,
.featured-img a,
.featured-img img,
.post-content,
.post-header {
  position: relative;
  width: 100%;
}
.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: 14px;
  line-height: 1;
	color: #fff !important;
}

.white-extz{
	color:#fff !important;
}

.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:last-child,
.posts .post-excerpt p {
  margin-bottom: 0;
	 
}
.posts .post-header:last-child,
.posts .post-header > *:last-child {
  margin-bottom: 0;
}
.posts .post {
  margin-top: var(--post-gap);
  overflow: hidden;
  padding-bottom: 15px;
}
.posts .post:first-child {
  margin-top: 0;
}
.posts .post .featured-img {
  margin: 0 0 22px;
  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(0.70);
  transform: scale(1.01);
  transition: 0.35s ease-in-out;
}
.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: 99;
  pointer-events: none;
  text-align: center;
}
.posts .overlay-label.time-label {
  top: 15px;
  left: 15px;
  padding: 8px 12px;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.85);
  color: #000;
}
.posts .overlay-label.time-label.featured-style {
  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;
  width: 65px;
  height: 72px;
  padding: 0;
}
.posts .overlay-label.time-label.featured-style .meta-item.time {
  font-family: var(--heading-font);
}
.posts .overlay-label.time-label.featured-style .month,
.posts .overlay-label.time-label.featured-style .day {
  display: block;
  line-height: 1;
}
.posts .overlay-label.time-label.featured-style .month {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.posts .overlay-label.time-label.featured-style .day {
  font-size: 32px;
  font-size: 2rem;
}
.posts .format-label {
  --label-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
  width: var(--label-size);
  height: var(--label-size);
  padding: 0;
  border-radius: 999px;
  border: 1px solid;
  color: #fff;
  line-height: var(--label-size);
}
.posts .format-label svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 3px 0 0 2px;
  max-width: 21px;
}
.posts.layout-grid .featured-img a,
.posts.layout-list .featured-img a {
  display: block;
  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%);
 
  object-fit: cover;
}
.posts.layout-list.with-border {
  --bd-color: #b5bbb3;
}
.posts.layout-list.with-border .featured-img {
  margin-bottom: 0;
}
.posts.layout-list.with-border .post-content {
  padding: 20px 20px 30px;
  background:#96897c;
}
.posts.layout-list.with-border .featured-img + .post-content {
  border-top-width: 0;
}
.posts.layout-overlay .post {
  background: #000;
  color: #fff;
  padding-bottom: 0;
}
.posts.layout-overlay .post .featured-img {
  margin-bottom: 0;
}
.posts.layout-overlay .post .featured-img:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  pointer-events: none;
  content: "";
  background: var(--secondary-color);
  opacity: 0;
  transition: opacity 0.4s;
}
.posts.layout-overlay .post .format-label.format-video {
  display: none;
}
.posts.layout-overlay .post .post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  pointer-events: none;
  padding: 150px 24px 30px;
}
.posts.layout-overlay .post .post-content:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
  transition: opacity 0.4s;
}
.posts.layout-overlay .post .post-content a {
  pointer-events: auto;
}
.posts.layout-overlay .post .post-content > * {
  position: relative;
}
.posts.layout-overlay .post .post-content,
.posts.layout-overlay .post .post-excerpt,
.posts.layout-overlay .post .meta-wrap {
  color: inherit;
}
.posts.layout-overlay .post:not(.has-post-thumbnail):before {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-top: var(--img-ratio);
  padding-bottom: 0;
  content: "";
}
.posts.layout-overlay .featured-img {
  z-index: 1;
}
.posts.layout-overlay .post-header {
  z-index: 9;
  margin-bottom: 10px;
}
.posts.layout-overlay .post-header:last-child {
  margin-bottom: 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;
}
.no-touch .posts.layout-overlay .post:hover .featured-img:after {
  opacity: 0.9;
}
.no-touch .posts.layout-overlay .post:hover .post-content:before {
  opacity: 0;
}
.posts.layout-overlay.btn-slide-up .post .post-content {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  transition: transform 0.4s;
}
.no-touch .posts.layout-overlay.btn-slide-up .post:hover .post-content {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.posts.layout-overlay .button.cs-btn-underline {
  color: inherit;
}
.posts .post.format-gallery .thumbnail-gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  list-style: none;
  padding: 0;
}
.posts .post.format-gallery .thumbnail-gallery li {
  position: relative;
}
.posts .post.format-gallery .thumbnail-gallery .featured-img-caption {
  display: none;
}
.posts .post.format-gallery .slick-list,
.posts .post.format-gallery .slick-track,
.posts .post.format-gallery .slick-slide {
  height: 100%;
}
.posts .post.format-gallery .slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  color: #fff;
  pointer-events: none;
}
.posts .post.format-gallery .slider-dots li {
  pointer-events: auto;
}
.no-touch .posts .post.format-gallery .slider-arrows {
  opacity: 0;
  transition: opacity 0.4s;
}
.no-touch .posts .post.format-gallery:hover .slider-arrows {
  opacity: 1;
}
.posts .post.format-gallery .slick-arrow {
  --arrow-size: 36px;
}
.posts .post.format-gallery .slick-arrow.slick-prev {
  left: 15px;
}
.posts .post.format-gallery .slick-arrow.slick-next {
  right: 15px;
}
.posts.layout-standard .post.format-gallery .thumbnail-gallery,
.posts.layout-masonry .post.format-gallery .thumbnail-gallery {
  position: relative;
}
.pagination {
  --pagi-size: 32px;
  position: relative;
  width: 100%;
  margin: var(--spacing) 0 0;
  text-align: center;
  font-family: var(--heading-font);
  font-size: 18px;
  font-size: 1.125rem;
  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 {
  border-bottom: 1px solid var(--primary-color);
}
.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 {
  padding: 0 6px;
  margin: 0 6px;
}
.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;
  z-index: 9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  height: var(--btn-height);
  background: var(--btn-bg);
  border: none;
  border-radius: var(--btn-radius);
  color: var(--btn-color);
  font-family: var(--btn-font);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  text-transform: var(--btn-text-transform);
  line-height: 1;
  text-align: center;
  transition: 0.4s;
  cursor: pointer;
  color: var(--btn-color) !important;
  overflow-anchor: none;
}
.no-touch .pagination a.load-more-btn:not(.cs-btn-underline):hover {
  background: var(--btn-bg-hover);
  color: var(--btn-color-hover);
  border-color: var(--btn-bg-hover);
}
.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;
  opacity: 1;
}
.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-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;
    
  }
  .posts.layout-grid .post {
    margin-right: 0;
   
     
  }
  .posts.layout-grid .post:nth-child(-n + 2) {
    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%;
  }
  .posts.layout-list {
    --col-gap: 35px;
  }
  .posts.layout-list .post {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .posts.layout-list .featured-img {
    margin-right: var(--col-gap);
    margin-bottom: 0;
    width: 50%;
  }
  .posts.layout-list .post-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: 0;
  }
  .posts.layout-list .post-content > * {
    width: 100%;
  }
	
	
	  .posts.layout-list.layout-zigzag .post {
    width:100%;
  }
	
	
  .posts.layout-list .featured-img + .post-content {
    padding: 0;
    width: calc(50% - var(--col-gap));
  }
  .posts.layout-list.layout-zigzag .post:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .posts.layout-list.layout-zigzag .post:nth-child(2n) .featured-img {
    margin-right: 0;
    margin-left: var(--col-gap);
  }
  .posts.layout-list.with-border .post-content {
    padding: var(--col-gap);
  }
  .posts.layout-list.with-border .featured-img {
    margin: 0;
  }
  .posts.layout-list.with-border .featured-img + .post-content {
    width: 50%;
    padding-top: 0;
    padding-bottom: 0;
    border-top-width: 1px;
    border-left-width: 0;
  }
  .posts.layout-list.with-border.layout-zigzag
    .post:nth-child(2n)
    .featured-img {
    margin: 0;
  }
  .posts.layout-list.with-border.layout-zigzag
    .post:nth-child(2n)
    .featured-img
    + .post-content {
    border-right-width: 0;
    border-left-width: 1px;
  }
  .posts.layout-grid.column-3 .post {
    
  }
  .posts.layout-grid.column-3 .post:nth-child(-n + 3) {
    margin-top: 0 !important;
  }
}
@media screen and (min-width: 1200px) {
  .posts .post-title {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .related-posts .posts .post-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .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;
  }
  .posts.layout-standard .post-title,
  .site-content:not([class*="with-sidebar-"]) .posts.layout-list .post-title {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .posts.layout-standard .post-excerpt,
  .site-content:not([class*="with-sidebar-"]) .posts.layout-list .post-excerpt {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .posts.layout-standard .read-more-btn,
  .site-content:not([class*="with-sidebar-"])
    .posts.layout-list
    .read-more-btn {
    font-size: 16px;
    font-size: 1rem;
  }
  .posts.layout-standard .post.format-gallery .slider-dots,
  .posts.layout-list .post.format-gallery .slider-dots,
  .posts.column-2 .post.format-gallery .slider-dots {
    bottom: 35px;
  }
  .site-content:not([class*="with-sidebar-"]) .posts.layout-list {
    --col-gap: 60px;
  }
  .site-content:not([class*="with-sidebar-"])
    .elementor-column:not(:only-child)
    .posts.layout-list {
    --col-gap: 35px;
  }
}
@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;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .posts.layout-overlay:not(.cs-rooms) .post-excerpt {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .posts.img-ratio-3-2-tablet {
    --img-ratio: 66.66%;
    --ratio: 0.6666;
  }
  .posts.img-ratio-4-3-tablet {
    --img-ratio: 75%;
    --ratio: 0.75;
  }
  .posts.img-ratio-1-1-tablet {
    --img-ratio: 100%;
    --ratio: 1;
  }
  .posts.img-ratio-2-3-tablet {
    --img-ratio: 150%;
    --ratio: 1.5;
  }
  .posts.img-ratio-4-5-tablet {
    --img-ratio: 125%;
    --ratio: 1.25;
  }
}
@media screen and (max-width: 767px) {
  .posts.img-ratio-3-2-mobile {
    --img-ratio: 66.66%;
    --ratio: 0.6666;
  }
  .posts.img-ratio-4-3-mobile {
    --img-ratio: 75%;
    --ratio: 0.75;
  }
  .posts.img-ratio-1-1-mobile {
    --img-ratio: 100%;
    --ratio: 1;
  }
  .posts.img-ratio-2-3-mobile {
    --img-ratio: 150%;
    --ratio: 1.5;
  }
  .posts.img-ratio-4-5-mobile {
    --img-ratio: 125%;
    --ratio: 1.25;
  }
}
@media screen and (max-width: 599px) {
  .posts .overlay-label.time-label.featured-style {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    transform-origin: 0 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.page-title-fullheight {
  height: 100vh;
  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;
}
.page-title-section.page-title-fullheight .container:after {
  display: inline-block;
  margin-top: 30px;
  width: 1px;
  height: 65px;
  background: currentColor;
  opacity: 0.8;
}
.page-title-section.page-title-fullheight .page-title-extra {
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 9;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.page-title-section.page-title-fullheight .entry-title:not(:first-child) {
  margin-bottom: 30px;
}
.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 {
  --post-header-meta-color: var(--secondary-color);
}
.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 .meta-wrap {
  color: var(--post-header-meta-color);
}
.post-header-section .page-title-bg + .container {
  color: #fff;
  --post-header-meta-color: #fff;
}
.no-touch .post-header-section .page-title-bg + .container a:hover {
  opacity: 0.7;
}
.post-header-section .page-title-bg ~ .page-title-extra {
  color: #fff;
}
.overlap-header ~ .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 {
  margin-top: 50px;
  color: var(--text-lighter);
  font-family: var(--heading-font);
  font-size: 15px;
  font-size: 0.9375rem;
}
.article-footer:before {
  position: relative;
  display: block;
  margin-bottom: 50px;
  width: 50px;
  height: 1px;
  background: currentColor;
  content: "";
}
.article-footer .article-footer-title {
  margin-right: 5px;
}
.article-footer .post-tag-cloud {
  position: relative;
  display: flex;
}
.article-footer .post-tag-cloud .tagcloud {
  display: flex;
  flex-wrap: wrap;
}
.article-share {
  display: flex;
}
.article-share:not(:first-child) {
  margin-top: 15px;
}
.article-share .article-share-container {
  display: flex;
  flex-wrap: wrap;
}
.article-share .article-share-container a:not(:last-child):after {
  margin: 0 4px;
  content: "-";
}
.article-share .article-share-container a i {
  display: none;
}
.no-touch .article-share .article-share-container a:hover,
.article-share .article-share-container a:focus {
  color: var(--text-color);
}
.comments-area {
  --cauthor-img: 48px;
  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-family: var(--heading-font);
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 30px;
}
.comments-area ol.comment-list li .comment-meta .comment-author.vcard img {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--cauthor-img);
  height: var(--cauthor-img);
}
.comments-area ol.comment-list li .comment-meta .comment-author.vcard b.fn {
  font-weight: 400;
}
.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: 4px;
}
.comments-area ol.comment-list li a.comment-edit-link:before {
  content: "-";
  margin-right: 8px;
}
.no-touch .comments-area ol.comment-list li a.comment-edit-link:hover {
  color: var(--primary-color);
}
.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-family: var(--heading-font);
  font-size: 15px;
  font-size: 0.9375rem;
  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: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--primary-color);
  content: "";
  transition: transform 0.2s ease;
  transform-origin: 0 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;
}
.comments-area .logged-in-as a {
  color: var(--link-color);
}
.no-touch .comments-area .logged-in-as a:hover {
  color: var(--link-color-hover);
}
.author-info-box {
  position: relative;
  padding: 30px;
  margin: 50px 0 0;
  border: 1px solid var(--primary-color);
  color: var(--text-color);
  text-align: center;
}
.author-info-box .author-photo {
  margin: 0 auto 25px;
  width: 150px;
}
.author-info-box .author-photo img {
  display: block;
}
.author-info-box .author-info > *:not(:last-child) {
  margin-bottom: 20px;
}
.author-info-box .author-info .author-name {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}
.no-touch .author-info-box .author-info .author-name a:hover {
  color: var(--primary-color);
}
.author-info-box .author-info p {
  margin-bottom: 15px;
  font-size: 16px;
  font-size: 1rem;
}
.author-info-box .author-info p:last-child {
  margin-bottom: 0;
}
.author-info-box .author-info-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.author-info-box .author-info-footer .author-profile-link {
  font-family: var(--heading-font);
  font-size: 13px;
  font-size: 0.8125rem;
  text-transform: uppercase;
}
.author-info-box .author-info-footer .author-profile-link:not(:last-child) {
  margin-right: 45px;
}
.author-info-box .author-info-footer .author-profile-link a {
  position: relative;
  display: block;
}
.author-info-box .author-info-footer .author-profile-link a:before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--primary-color);
  content: "";
  transition: transform 0.2s ease;
  transform-origin: 0 0;
}
.no-touch
  .author-info-box
  .author-info-footer
  .author-profile-link
  a:hover:before {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.author-info-box .author-info-footer .author-social a {
  opacity: 0.7;
}
.no-touch .author-info-box .author-info-footer .author-social a:hover {
  opacity: 1;
}
.page-title-section .author-social {
  margin-top: 20px;
}
.page-title-section .author-social ul.social-nav {
  justify-content: center;
}
.single .post-navigation {
  padding: 60px 0 0;
}
.single .post-navigation .nav-links {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: stretch;
}
.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: 400;
  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,
.single .post-navigation .nav-next {
  padding: 10px 0;
}
.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;
  border-right: 1px solid var(--primary-color);
}
.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;
  font-weight: 500;
  opacity: 0.5;
}
.related-posts {
  margin-top: 60px;
}
.related-posts .related-posts-title {
  margin-bottom: 50px;
  text-align: center;
}
.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 {
  margin-bottom: 15px;
  line-height: 1.2;
}
.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 {
  margin-bottom: 30px;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.2;
}
.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: 32px;
  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 {
  margin: 0 6px;
  padding: 0 6px;
  width: auto;
  height: var(--pagi-size);
  text-align: center;
  line-height: var(--pagi-size);
}
.page-links .post-page-numbers.current {
  border-bottom: 1px solid var(--primary-color);
}
.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;
  }
}
@media screen and (min-width: 768px) {
  .page-title-section.page-title-large .entry-title,
  .page-title-section.page-title-fullheight .entry-title {
    font-size: 60px;
    font-size: 3.75rem;
  }
  .page-title-section.page-title-large p,
  .page-title-section.page-title-large .description,
  .page-title-section.page-title-fullheight p,
  .page-title-section.page-title-fullheight .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 -10px;
  }
  .comments-area .comment-respond form.comment-form > * {
    padding: 0 10px;
  }
  .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;
    align-items: center;
    text-align: left;
  }
  .author-info-box .author-photo {
    align-self: flex-start;
    margin: 0 30px 0 0;
  }
  .author-info-box .author-photo + .author-info {
    width: calc(100% - 180px);
  }
  .author-info-box .author-info {
    width: 100%;
  }
  .author-info-box .author-info-footer {
    justify-content: flex-start;
  }
  .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;
  }
  .search-no-results .no-results.not-found .entry-title {
    font-size: 48px;
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .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: 180px 0;
  }
  .page-title-section.page-title-large .entry-title {
    font-size: 72px;
    font-size: 4.5rem;
  }
  .page-title-section.page-title-small .entry-title {
    font-size: 42px;
    font-size: 2.625rem;
  }
  .page-title-section.page-title-fullheight .entry-title {
    font-size: 72px;
    font-size: 4.5rem;
  }
  .comments-area {
    --cauthor-img: 110px;
  }
  .page.page-404 .page-404-content .entry-title {
    font-size: 80px;
    font-size: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .author-info-box .author-info-footer {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .author-info-box .author-info-footer .author-profile-link:not(:last-child) {
    margin: 0 0 25px;
  }
}
.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-hover);
}
.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 -2px;
}
.widget.widget_tag_cloud .tagcloud a,
.elementor-widget-wp-widget-tag_cloud .tagcloud a {
  margin: 4px 2px;
  line-height: 28px;
  font-size: 14px !important;
  font-size: 0.875rem !important;
}
.widget.widget_tag_cloud .tagcloud a:not(:last-child):after,
.elementor-widget-wp-widget-tag_cloud .tagcloud a:not(:last-child):after {
  margin: 0 4px 0 8px;
}
.no-touch .widget.widget_tag_cloud .tagcloud a:hover,
.no-touch .elementor-widget-wp-widget-tag_cloud .tagcloud a:hover {
  color: var(--link-color-hover);
}
.no-touch .widget.widget_tag_cloud .tagcloud a:hover:after,
.no-touch .elementor-widget-wp-widget-tag_cloud .tagcloud a:hover:after {
  color: var(--text-color);
}
.widget.cs-widget_cat .cat,
.elementor-widget-wp-widget-loftocean-widget-category .cat {
  width: 100%;
  margin: 0 0 15px;
  overflow: hidden;
}
.widget.cs-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.cs-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.cs-widget_cat .cat a .cat-meta,
.elementor-widget-wp-widget-loftocean-widget-category .cat a .cat-meta {
  position: relative;
  z-index: 3;
  background: rgba(0, 0, 0, 0.3);
  padding: 40px;
  text-align: center;
}
.widget.cs-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.cs-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.cs-widget_about p:last-child,
.elementor-widget-wp-widget-loftocean-widget-profile p:last-child {
  margin-bottom: 0;
}
.widget.cs-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.cs-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.cs-widget_about p,
.widget-area .elementor-widget-wp-widget-loftocean-widget-profile p {
  font-size: 16px;
  font-size: 1rem;
}
.widget.cs-widget_about .socialwidget,
.widget.cs-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.cs-widget_instagram ul,
.elementor-widget-wp-widget-loftocean-widget-instagram ul {
  margin: -5px;
  list-style: none;
}
.widget.cs-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.cs-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.cs-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.cs-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.cs-widget_instagram ul li .feed-video,
.elementor-widget-wp-widget-loftocean-widget-instagram ul li .feed-video {
  margin-bottom: 0;
}
.widget.cs-widget_instagram .ins-follow-btn,
.elementor-widget-wp-widget-loftocean-widget-instagram .ins-follow-btn {
  margin: 15px auto 0;
  text-align: center;
}
.widget.cs-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.cs-widget_instagram.column-4 ul li,
.elementor-widget-wp-widget-loftocean-widget-instagram.column-4 ul li {
  width: 25%;
}
.widget.cs-widget_instagram.column-5 ul li,
.elementor-widget-wp-widget-loftocean-widget-instagram.column-5 ul li {
  width: 20%;
}
.widget.cs-widget_instagram.column-6 ul li,
.elementor-widget-wp-widget-loftocean-widget-instagram.column-6 ul li {
  width: 16.6666%;
}
.widget.cs-widget_instagram.column-7 ul li,
.elementor-widget-wp-widget-loftocean-widget-instagram.column-7 ul li {
  width: 14.285%;
}
.widget.cs-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.cs-widget_posts ul,
.elementor-widget-wp-widget-loftocean-widget-posts ul {
  margin: 0;
  list-style: none;
}
.widget.cs-widget_posts ul li,
.elementor-widget-wp-widget-loftocean-widget-posts ul li {
  position: relative;
  padding: 0;
}
.widget.cs-widget_posts ul li:not(:first-child),
.elementor-widget-wp-widget-loftocean-widget-posts ul li:not(:first-child) {
  margin-top: 28px;
}
.widget.cs-widget_posts .thumbnail,
.widget.cs-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.cs-widget_posts .thumbnail,
.elementor-widget-wp-widget-loftocean-widget-posts .thumbnail {
  position: relative;
  width: 140px;
  height: 140px;
  margin-right: 15px;
  overflow: hidden;
}
.widget.cs-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.cs-widget_posts .post-content,
.elementor-widget-wp-widget-loftocean-widget-posts .post-content {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}
.widget.cs-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.cs-widget_posts .post-title,
.elementor-widget-wp-widget-loftocean-widget-posts .post-title {
  margin-bottom: 0;
  font-size: 20px;
  font-size: 1.25rem;
  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.cs-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.cs-widget_posts .meta-wrap,
.elementor-widget-wp-widget-loftocean-widget-posts .meta-wrap {
  margin-top: 5px;
}
.widget.cs-widget_posts .meta-item,
.elementor-widget-wp-widget-loftocean-widget-posts .meta-item {
  display: inline-block;
  margin-right: 5px;
}
.widget.cs-widget_posts .meta-item:last-child,
.elementor-widget-wp-widget-loftocean-widget-posts .meta-item:last-child {
  margin-right: 0;
}
.widget.cs-widget_posts .meta-item:last-child:after,
.elementor-widget-wp-widget-loftocean-widget-posts .meta-item:last-child:after {
  display: none;
}
.widget.cs-widget_posts.with-post-number ul li,
.elementor-widget-wp-widget-loftocean-widget-posts.with-post-number ul li {
  counter-increment: step-counter;
}
.widget.cs-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.cs-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.cs-widget_posts.with-post-number .thumbnail:before,
.widget.cs-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.cs-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.cs-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.cs-widget_posts.with-post-number
  .post-link:hover
  .thumbnail:before,
.no-touch
  .widget.cs-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;
}
.sidebar .wp-block-latest-posts.wp-block-latest-posts__list {
  margin: 0;
}
.sidebar .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);
}
.sidebar .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;
}
.sidebar .wp-block-latest-comments li {
  font-size: 14px;
  font-size: 0.875rem;
}
.sidebar .wp-block-latest-comments li:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.sidebar .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
  .sidebar
  .wp-block-latest-comments
  li
  .wp-block-latest-comments__comment-link:hover {
  color: var(--primary-color);
}
.sidebar .widget_block.widget_search .wp-block-search__inside-wrapper {
  position: relative;
}
.sidebar .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;
}
.sidebar .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";
}
.sidebar .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);
}
.sidebar .wp-block-archives,
.sidebar .wp-block-categories {
  margin: 0;
  list-style: none;
}
.sidebar .wp-block-archives li,
.sidebar .wp-block-categories li {
  position: relative;
}
.sidebar .wp-block-archives li:not(:last-child),
.sidebar .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 .sidebar .wp-block-archives li:not(:last-child),
.dark-color .sidebar .wp-block-categories li:not(:last-child) {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.sidebar .wp-block-archives li a,
.sidebar .wp-block-categories li a {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 30px;
}
.no-touch .sidebar .wp-block-archives li a:hover,
.no-touch .sidebar .wp-block-categories li a:hover {
  color: var(--link-color);
}
.sidebar .wp-block-archives li ul,
.sidebar .wp-block-categories li ul {
  margin-top: 7.5px;
  margin-left: 20px;
  clear: both;
}
.sidebar .wp-block-archives li ul li,
.sidebar .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%;
}
.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;
  padding: 0;
  background: none;
  border: none;
  color: inherit;
  font-family: var(--btn-font);
  font-size: 16px;
  font-size: 1rem;
  line-height: 52px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.cs-form-underline .mc4wp-form .fields-container button[type="submit"] {
  right: 0;
}
.mc4wp-form .fields-container button[type="submit"]: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: "\f1d8";
  font-weight: 400;
  margin-left: 12px;
}
.mc4wp-form.cs-form-underline .fields-container button[type="submit"] {
  right: 0;
}
.sidebar .widget:not(:first-child),
.elementor-widget-sidebar .widget:not(:first-child) {
  margin-top: 60px;
}
.sidebar .widget:last-child,
.elementor-widget-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.cs-widget_instagram {
  position: relative;
  margin: 0;
  text-align: center;
  overflow: hidden;
}
.site-footer-instagram .widget.cs-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.cs-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.cs-widget_instagram ul li {
  padding: 0;
}
.site-footer-instagram .widget.cs-widget_instagram.column-4 ul li {
  width: 25%;
}
.site-footer-instagram .widget.cs-widget_instagram.column-5 ul li {
  width: 20%;
}
.site-footer-instagram .widget.cs-widget_instagram.column-6 ul li {
  width: 16.666%;
}
.site-footer-instagram .widget.cs-widget_instagram.column-7 ul li {
  width: 14.28%;
}
.site-footer-instagram .widget.cs-widget_instagram.column-8 ul li {
  width: 12.5%;
}
.to-top {
  --to-top-size: 46px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 1000;
  display: block;
  width: var(--to-top-size);
  height: var(--to-top-size);
  border-radius: 0;
  border: 1px solid var(--primary-color);
  color: var(--primary-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;
  box-sizing: content-box;
}
.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: 24px;
  font-size: 1.5rem;
  line-height: var(--to-top-size);
}
.to-top.show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.no-touch .to-top.show:hover {
  background: var(--primary-color);
  color: #fff;
}
.cs-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;
}
.cs-popup-box.cs-popup-fullsize {
  width: 100%;
  height: 100%;
}
.cs-popup-box:not(.cs-popup-fullsize) {
  width: var(--popup-width);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cs-popup-box.show {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.cs-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;
}
.cs-popup-box .close-button {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}
.cs-popup-box.cs-popup-fullsize .close-button {
  top: 20px;
  right: 20px;
}
.cs-popup-box .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 0;
  max-width: 100%;
}
.cs-popup-box .container > * {
  width: 100%;
}
.cs-popup-box .container > .elementor {
  max-height: 100vh;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cs-popup-box .container > .elementor::-webkit-scrollbar {
  display: none;
}
.cs-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;
}
.cs-cookies-popup.show {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.cs-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;
}
.cs-cookies-popup .cookies-msg a {
  font-weight: 600;
  color: var(--link-color);
}
.cs-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;
}
@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: 1200px) {
  .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.cs-widget_instagram.column-4 ul li {
    width: 50%;
  }
  .site-footer-instagram .widget.cs-widget_instagram.column-5 ul li {
    width: 50%;
  }
  .site-footer-instagram .widget.cs-widget_instagram.column-5 ul li:last-child {
    display: none;
  }
  .site-footer-instagram .widget.cs-widget_instagram.column-6 ul li {
    width: 33.3333%;
  }
  .site-footer-instagram .widget.cs-widget_instagram.column-7 ul li {
    width: 33.3333%;
  }
  .site-footer-instagram .widget.cs-widget_instagram.column-7 ul li:last-child {
    display: none;
  }
  .site-footer-instagram .widget.cs-widget_instagram.column-8 ul li {
    width: 25%;
  }
  .mc4wp-form .fields-container input[type="email"] {
    padding-right: 120px;
  }
  .cs-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;
}

.cs-form-underline input[type="text"],
.cs-form-underline input[type="email"],
.cs-form-underline input[type="url"],
.cs-form-underline input[type="file"],
.cs-form-underline input[type="password"],
.cs-form-underline input[type="number"],
.cs-form-underline input[type="date"],
.cs-form-underline input[type="search"],
.cs-form-underline input[type="tel"],
.cs-form-underline textarea,
.cs-form-underline select {
  border-top: none;
  border-right: none;
  border-left: none;
}
.cs-form-underline .cs-form-square input[type="text"],
.cs-form-underline .cs-form-rounded input[type="text"],
.cs-form-underline .cs-form-pill input[type="text"],
.cs-form-underline .cs-form-square input[type="email"],
.cs-form-underline .cs-form-rounded input[type="email"],
.cs-form-underline .cs-form-pill input[type="email"],
.cs-form-underline .cs-form-square input[type="url"],
.cs-form-underline .cs-form-rounded input[type="url"],
.cs-form-underline .cs-form-pill input[type="url"],
.cs-form-underline .cs-form-square input[type="file"],
.cs-form-underline .cs-form-rounded input[type="file"],
.cs-form-underline .cs-form-pill input[type="file"],
.cs-form-underline .cs-form-square input[type="password"],
.cs-form-underline .cs-form-rounded input[type="password"],
.cs-form-underline .cs-form-pill input[type="password"],
.cs-form-underline .cs-form-square input[type="number"],
.cs-form-underline .cs-form-rounded input[type="number"],
.cs-form-underline .cs-form-pill input[type="number"],
.cs-form-underline .cs-form-square input[type="date"],
.cs-form-underline .cs-form-rounded input[type="date"],
.cs-form-underline .cs-form-pill input[type="date"],
.cs-form-underline .cs-form-square input[type="search"],
.cs-form-underline .cs-form-rounded input[type="search"],
.cs-form-underline .cs-form-pill input[type="search"],
.cs-form-underline .cs-form-square input[type="tel"],
.cs-form-underline .cs-form-rounded input[type="tel"],
.cs-form-underline .cs-form-pill input[type="tel"],
.cs-form-underline .cs-form-square textarea,
.cs-form-underline .cs-form-rounded textarea,
.cs-form-underline .cs-form-pill textarea,
.cs-form-underline .cs-form-square select,
.cs-form-underline .cs-form-rounded select,
.cs-form-underline .cs-form-pill select {
  border-color: var(--form-bd);
  border-style: solid;
  border-width: var(--form-bd-width);
}
input[type="text"].error,
input[type="email"].error,
input[type="url"].error,
input[type="file"].error,
input[type="password"].error,
input[type="number"].error,
input[type="date"].error,
input[type="search"].error,
input[type="tel"].error,
textarea.error,
select.error {
  --form-bd: #a00;
}
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%;
}
.cs-form-underline {
  --form-radius: 0px;
  --form-side-padding: 0px;
}
.cs-form-square {
  --form-radius: 0px;
  --form-side-padding: 15px;
}
.cs-form-rounded {
  --form-radius: 5px;
  --form-side-padding: 15px;
}
.cs-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-flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  height: var(--btn-height);
  background: var(--btn-bg);
  border: none;
  border-radius: var(--btn-radius);
  color: var(--btn-color);
  font-family: var(--btn-font);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  text-transform: var(--btn-text-transform);
  line-height: 1;
  text-align: center;
  transition: 0.4s;
  cursor: pointer;
}
.no-touch input[type="submit"]:not(.cs-btn-underline):hover {
  background: var(--btn-bg-hover);
  color: var(--btn-color-hover);
  border-color: var(--btn-bg-hover);
}
select {
  -webkit-appearance: auto;
}
form.post-password-form label {
  position: relative;
  z-index: 9;
  display: inline-block;
  width: 280px;
  height: 52px;
  padding-left: 10px;
  color: #1a1b1a;
  font-family: var(--heading-font);
  font-size: 16px;
  font-size: 1rem;
  line-height: 52px;
  text-align: left;
  vertical-align: bottom;
}
form.post-password-form label input[type="password"] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  padding: 0 0 0 80px;
}
form.post-password-form input[type="submit"] {
  width: 130px;
  margin: 8px 0 0 0;
  padding: 0;
}
.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";
}
.cs-form-label {
  font-family: var(--heading-font);
  font-size: 16px;
  font-size: 1rem;
}
.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);
}
.wpcf7-form p {
  margin-bottom: 20px;
}
.wpcf7-form input[type="submit"] {
  width: 100%;
}
.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 *[class*="wp-block-"] .wp-block-heading:not(:last-child) {
  margin-bottom: 30px;
}
.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;
  background: var(--btn-bg);
  border-radius: var(--btn-radius);
  color: var(--btn-color);
  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:not(.is-style-plain),
.wp-block-quote.is-style-large:not(.is-style-plain) {
  padding: 0 50px;
}
.wp-block-quote.is-large:not(.is-style-plain):not(:last-child),
.wp-block-quote.is-style-large:not(.is-style-plain):not(:last-child) {
  margin-bottom: 50px;
}
.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 {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}
.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 -2px;
}
.wp-block-tag-cloud a {
  margin: 4px 2px;
  line-height: 28px;
  font-size: 14px !important;
  font-size: 0.875rem !important;
}
.wp-block-tag-cloud a:not(:last-child):after {
  margin: 0 4px 0 8px;
  content: "/";
}
.no-touch .wp-block-tag-cloud a:hover {
  color: var(--link-color-hover);
}
.no-touch .wp-block-tag-cloud a:hover:after {
  color: var(--text-color);
}
.entry-content .wp-block-tag-cloud a {
  color: var(--text-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 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: 1200px) {
  .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;
  }
}
.cs-room-basic-info {
  margin: var(--item-v-space) 0;
}
.cs-room-basic-info ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
.cs-room-basic-info ul li {
  display: flex;
  align-items: center;
  margin: 5px 0;
  padding-right: 30px;
  line-height: 28px;
}
.cs-room-basic-info ul li:last-child {
  padding-right: 0;
}
.cs-room-basic-info .csrbi-icon {
  margin-right: 10px;
}
.cs-room-basic-info .csrbi-icon i {
  display: flex;
  font-size: var(--icon-size);
}
.cs-room-basic-info .csrbi-text {
  font-size: 14px;
  font-size: 0.875rem;
  white-space: nowrap;
}
.cs-rooms {
  --post-max-width: 800px;
  --item-v-space: 10px;
  --icon-size: 25px;
  --label-bg: #fff;
  --label-color: #000;
  --label-border: #fff;
}
.cs-rooms .overlay-label {
  top: 20px;
  left: 20px;
  background: var(--label-bg);
  border: 1px solid var(--label-border);
  color: var(--label-color);
  padding: 8px 12px;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.elementor-editor-active .cs-rooms .overlay-label {
  pointer-events: auto;
}
.cs-rooms.layout-standard {
  --icon-size: 28px;
}
.cs-rooms.text-center .cs-room-basic-info ul {
  justify-content: center;
}
.cs-rooms .item-header {
  margin-bottom: var(--item-v-space);
}
.cs-rooms .cs-room-content .item-title {
  margin-bottom: 0;
}
.cs-rooms .cs-room-content .item-subtitle {
  margin-top: var(--item-v-space);
  font-size: 15px;
  font-size: 0.9375rem;
  color: var(--secondary-color);
}
.cs-rooms .cs-room-content .item-subtitle:first-child {
  margin: 0 0 var(--item-v-space);
}
.cs-rooms.layout-overlay .cs-room-content .item-title {
  margin-bottom: 0;
}
.cs-rooms.layout-overlay .cs-room-content .item-subtitle {
  color: inherit;
}
.cs-rooms.layout-overlay .item-header {
  margin: 0;
  transition: opacity 0.4s, transform 0.4s;
}
.cs-rooms.layout-overlay .post .cs-room-content {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.cs-rooms.layout-overlay .hover-show-content {
  position: absolute !important;
  z-index: 9;
  bottom: 0;
  left: 0;
  padding: 150px 24px 30px;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}
.no-touch .cs-rooms.layout-overlay.with-hover-effect .post:hover .item-header {
  opacity: 0;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}
.no-touch
  .cs-rooms.layout-overlay.with-hover-effect
  .post:hover
  .hover-show-content {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.cs-rooms.layout-overlay.text-v-middle .hover-show-content {
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
  padding-top: 30px;
}
.no-touch
  .cs-rooms.layout-overlay.text-v-middle.with-hover-effect
  .post:hover
  .hover-show-content {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition-delay: 0.1s;
}
.cs-rooms.layout-overlay.slider-dots-overlap .slick-dots {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  color: #fff;
}
.cs-rooms.layout-overlay.text-v-middle .featured-img:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  content: "";
  background: #000;
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 0.4s;
}
.no-touch
  .cs-rooms.layout-overlay.text-v-middle
  .post:hover
  .featured-img:before {
  opacity: 0;
}
.cs-rooms.layout-overlay.text-v-middle .cs-room-content {
  width: 100%;
  height: 100%;
  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;
  padding-top: 30px;
}
.cs-rooms.layout-overlay.text-v-middle .cs-room-content:before {
  background: none;
}
.cs-rooms.layout-overlay .cs-room-basic-info ul li {
  margin: 0;
}
.cs-rooms.cs-rooms-carousel.column-1.carousel-center-mode .post {
  max-width: var(--post-max-width);
}
.elementor-column:only-child .cs-rooms.cs-rooms-carousel:hover .slick-slide {
  will-change: transform;
}
.cs-rooms.cs-rooms-carousel .post {
  margin-top: 0;
}
.cs-rooms.cs-rooms-carousel .posts-wrapper.slick-initialized {
  display: block;
}
.cs-rooms.cs-rooms-carousel.column-1.layout-overlay.carousel-center-mode
  .cs-room-content {
  opacity: 1;
  transition: opacity 0.4s 0.5s;
}
.cs-rooms.cs-rooms-carousel.column-1.layout-overlay.carousel-center-mode
  .slick-initialized
  .post:not(.slick-center)
  .cs-room-content {
  opacity: 0;
}
.cs-rooms.cs-rooms-carousel.layout-overlay.slider-dots-overlap.column-1:not(
    .text-v-middle
  )
  .post
  .post-content {
  padding-bottom: 55px;
}
.cs-rooms.cs-rooms-carousel.layout-overlay.slider-dots-overlap.column-1:not(
    .text-v-middle
  )
  .hover-show-content {
  padding-bottom: 60px;
}
.cs-rooms.cs-rooms-carousel.layout-overlay.text-v-middle.slider-arrows-overlap
  .cs-room-content,
.cs-rooms.cs-rooms-carousel.layout-overlay.text-v-middle.slider-arrows-overlap
  .hover-show-content {
  padding-right: 80px;
  padding-left: 80px;
}
.cs-rooms.slider-arrow-top .slider-arrows {
  position: absolute;
  top: -60px;
  right: 0;
}
.cs-rooms.slider-arrow-top .slider-arrows .slick-arrow {
  --arrow-size: 40px;
  position: relative;
  right: auto !important;
  left: auto !important;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  margin: 0;
  border: 1px solid var(--border-color);
  box-sizing: content-box;
  box-shadow: none;
}
.cs-rooms.slider-arrow-top .slider-arrows .slick-arrow.slick-prev {
  margin-right: 5px;
}
.cs-rooms.hide-slider-dots .slider-dots {
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.single-room {
  --sidebar: 440px;
  --sidebar-gap: 70px;
}
.room-top-section {
  position: relative;
  margin-bottom: 50px;
}
.room-top-section .featured-img {
  position: relative;
  width: 100%;
  height: 360px;
}
.room-top-section .featured-img 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;
}
.room-top-section .cs-gallery-view-all {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 9;
}
.room-top-section .cs-gallery-view-all .button {
  --btn-bg: rgba(0, 0, 0, 0.6);
  --btn-color: #fff;
  --btn-height: 38px;
  font-family: var(--body-font);
  padding: 0 15px 0 32px;
  text-transform: uppercase;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  align-items: center;
}
.room-top-section .cs-gallery-view-all .button:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 12px;
  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: "\e08c";
  font-size: 13px;
  line-height: 1;
}
.room-template-default.single-room
  .site-header.overlap-header
  ~ .site-content
  .room-top-section
  .featured-img:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  content: "";
}
.room-template-default.single-room
  .site-header.overlap-header
  ~ .site-content
  .room-top-section
  .gallery-carousel
  .cs-gallery-item:after {
  position: absolute;
  top: 0;
  left: var(--gallery-gap);
  width: calc(100% - var(--gallery-gap) * 2);
  height: 100%;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  content: "";
}
.room .post-header {
  margin-bottom: 40px;
}
.room .post-header .entry-title {
  font-size: 30px;
  font-size: 1.875rem;
}
.room .post-header .item-subtitle {
  margin-top: 20px;
  font-size: 15px;
  font-size: 0.9375rem;
  color: var(--secondary-color);
}
.room .post-header .cs-room-basic-info {
  --icon-size: 28px;
  margin: 25px 0 0;
}
.room-availability {
  padding-top: 50px;
}
.room-availability .container {
  padding: 0;
}
.room-availability .room-availability-title {
  padding-top: 50px;
  margin-bottom: 30px;
  border-top: 1px solid var(--border-color);
  font-size: 24px;
  font-size: 1.5rem;
}
.room-availability .hidden-calendar {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.room-availability .daterangepicker {
  position: relative;
  left: auto !important;
  top: auto !important;
  right: auto !important;
}
.theme-cozystay .room-availability .daterangepicker {
  --dropdown-bg: transparent;
  --dropdown-color: var(--text-color);
  --dropdown-border: transparent;
  --available-bg: transparent;
  --active-bg: var(--primary-color);
  --active-color: #fff;
  --inrange-bg: #ede6dc;
  --inrange-color: #000;
  --disabled-color: #d8d9db;
  --padding: 0px;
  --td-border: transparent;
  --tooltip-bg: var(--text-color);
  --tooltip-color: var(--bg-color);
  --no-check-inout: rgba(0, 0, 0, 0.7);
  --hover-highlight: var(--primary-color);
  width: 100%;
}
.theme-cozystay .room-availability .daterangepicker .calendar-table th,
.theme-cozystay .room-availability .daterangepicker .calendar-table td {
  width: 54px;
  max-width: 100%;
  height: 42px;
}
.theme-cozystay .room-availability .daterangepicker td.off {
  background: none;
}
.theme-cozystay .room-availability .daterangepicker td {
  font-size: 13px;
}
.theme-cozystay .room-availability .daterangepicker .drp-calendar {
  width: 50%;
}
.theme-cozystay .room-availability .daterangepicker .drp-calendar.left {
  padding-right: 8px;
  padding-left: 0;
}
.theme-cozystay .room-availability .daterangepicker .drp-calendar.right {
  float: right;
  padding-right: 0;
}
.theme-cozystay .room-availability .daterangepicker.show-calendar .drp-buttons {
  padding: 20px var(--padding);
}
.theme-cozystay .room-availability .daterangepicker .drp-buttons {
  border-top-color: var(--border-color);
}
.theme-cozystay .room-availability .daterangepicker .drp-buttons .btn {
  padding: 8px 14px;
  min-width: 80px;
  background: transparent;
  border: 1px solid var(--text-color);
  border-radius: 2px;
  color: var(--text-color);
  font-family: var(--body-font);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-sizing: border-box;
  transition: 0.2s;
}
.theme-cozystay .room-availability .daterangepicker .drp-buttons .btn.applyBtn {
  background: var(--text-color);
  color: var(--bg-color);
}
.theme-cozystay .room-availability .daterangepicker .drp-buttons .btn:hover {
  opacity: 0.8;
}
.theme-cozystay.dark-color .room-availability .daterangepicker {
  --disabled-color: #555;
  --no-check-inout: rgba(255, 255, 255, 0.7);
}
.similar-rooms {
  margin-bottom: 80px;
}
.similar-rooms .similar-rooms-title {
  padding-top: 70px;
  margin-bottom: 50px;
  border-top: 1px solid var(--border-color);
  font-size: 30px;
  font-size: 1.875rem;
}
.cs-room-booking {
  --csrb-bg: transparent;
  --csrb-border-radius: 8px;
  --csrb-box-shadow: 0 5px 30px rgba(80, 57, 24, 0.15);
  --total-divider: rgba(0, 0, 0, 0.1);
  --inner-bd: var(--primary-color);
  position: relative;
}
.dark-color .cs-room-booking {
  --csrb-bg: rgba(255, 255, 255, 0.02);
  --csrb-box-shadow: none;
  --total-divider: rgba(255, 255, 255, 0.1);
}
.cs-room-booking .cs-reservation-form {
  --form-bd: var(--primary-color);
  --field-space: 12px;
}
.cs-room-booking.with-inner-border:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  content: "";
  border: 1px solid var(--inner-bd);
  pointer-events: none;
}
.cs-room-booking .room-booking-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.cs-room-booking .room-booking-title h4 {
  font-size: 30px;
  font-size: 1.875rem;
  text-transform: uppercase;
}
.cs-room-booking .room-booking-title h4 + span {
  text-align: right;
}
.cs-room-booking .room-booking-title .base-price {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
.cs-room-booking .room-booking-title .base-price del {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  opacity: 0.5;
}
.cs-room-booking .cs-room-booking-wrap {
  padding: 50px 45px 55px;
  background: var(--csrb-bg);
  border-radius: var(--csrb-border-radius);
  box-shadow: var(--csrb-box-shadow);
  transition: opacity 0.3s;
}
.cs-room-booking .cs-form-group {
  margin-top: 60px;
}
.cs-room-booking .csf-title {
  font-size: 24px;
  font-size: 1.5rem;
}
.cs-room-booking .csf-title + .cs-extra-service {
  margin-top: 10px;
}
.cs-room-booking .cs-form-field.cs-rooms {
  position: relative;
}
.cs-room-booking .cs-form-notice {
  --line-space: 15px;
  position: absolute;
  top: 50%;
  right: -4px;
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  margin-top: calc(var(--field-space) / 2);
  padding: 3px 8px;
  width: fit-content;
  z-index: 99;
  background: var(--text-color);
  color: var(--bg-color);
  border-radius: 2px;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cs-room-booking .cs-form-notice p {
  margin: 0;
}
.cs-room-booking .cs-form-notice.show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.cs-room-booking .cs-form-notice:after {
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  left: -2px;
  width: 6px;
  height: 6px;
  background: var(--text-color);
  content: "";
}
.cs-room-booking .cs-extra-service .field-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.cs-room-booking .cs-extra-service .label-checkbox.obligatory {
  cursor: not-allowed;
}
.cs-room-booking .cs-extra-service .label-checkbox.obligatory * {
  pointer-events: none;
}
.cs-room-booking .cs-extra-service .label-checkbox.obligatory .info-indicator {
  pointer-events: auto;
}
.cs-room-booking .hidden-check {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  width: 17px;
  height: 17px;
  cursor: pointer;
}
.cs-room-booking .hidden-check:checked + .cs-styled-checkbox:after {
  opacity: 1;
}
.cs-room-booking .cs-styled-checkbox {
  position: relative;
  width: 17px;
  min-width: 17px;
  height: 17px;
  border: 1px solid var(--form-bd);
  margin-right: 12px;
  pointer-events: none;
}
.cs-room-booking .cs-styled-checkbox:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 8px;
  height: 8px;
  background: var(--form-bd);
  content: "";
  opacity: 0;
}
.cs-room-booking .label-checkbox {
  position: relative;
  display: flex;
  align-items: center;
}
.cs-room-booking .label-checkbox .checkbox-label label {
  cursor: pointer;
}
.cs-room-booking .price-quantity {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.cs-room-booking .price-quantity .cs-form-price {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 35px;
  white-space: nowrap;
}
.cs-room-booking .price-quantity .cs-form-price:not(:last-child) {
  margin-right: 15px;
}
.cs-room-booking
  .price-quantity
  .cs-form-price.cs-form-price-long
  .cs-form-price-brief:after {
  display: inline-block;
  margin-left: 4px;
  content: "...";
}
.cs-room-booking
  .price-quantity
  .cs-form-price.cs-form-price-long
  .cs-form-price-all {
  position: absolute;
  z-index: 9;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  padding: 10px;
  width: fit-content;
  border-radius: 4px;
  background: var(--text-color);
  color: var(--bg-color);
  font-size: 12.5px;
  font-size: 0.78125rem;
  line-height: 1.5;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s;
}
.cs-room-booking
  .price-quantity
  .cs-form-price.cs-form-price-long
  .cs-form-price-all:after {
  position: absolute;
  right: 30px;
  bottom: -4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--text-color);
  content: "";
}
.cs-room-booking
  .price-quantity
  .cs-form-price.cs-form-price-long:hover
  .cs-form-price-all {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.cs-room-booking .price-quantity .field-input-wrap {
  width: 65px;
}
.cs-room-booking .price-quantity .field-input-wrap input {
  --field-height: 35px;
  text-align: left;
}
.cs-room-booking .price-quantity .csf-dropdown {
  bottom: -8px;
  padding: 10px 5px;
  min-width: 130px !important;
}
.cs-room-booking .price-quantity .csf-dropdown .cs-form-label {
  display: none;
}
.cs-room-booking .price-quantity .csf-dropdown .csf-dropdown-item {
  justify-content: center;
}
.cs-room-booking .price-quantity .csf-dropdown .cs-quantity .input-text {
  font-size: 14px;
  font-size: 0.875rem;
}
.cs-room-booking .info-indicator {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid;
  border-radius: 50%;
  font-size: 12px;
  font-size: 0.75rem;
  font-style: italic;
  line-height: 12px;
  text-align: center;
  font-family: serif;
  font-weight: 600;
  opacity: 0.6;
  cursor: pointer;
}
.cs-room-booking .csf-base-price-breakdown,
.cs-room-booking .cs-service-description {
  --line-space: 15px;
  position: absolute;
  top: -5px;
  left: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  padding: 20px 24px;
  width: 100%;
  z-index: 99;
  background: var(--bg-color);
  color: var(--text-color);
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(80, 57, 24, 0.3);
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cs-room-booking .csf-base-price-breakdown.show,
.cs-room-booking .cs-service-description.show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.cs-room-booking .csf-base-price-breakdown:after,
.cs-room-booking .cs-service-description:after {
  position: absolute;
  display: none;
  width: 10px;
  height: 10px;
  background: var(--bg-color);
  content: "";
}
.cs-room-booking .cs-service-description {
  width: fit-content;
  color: var(--content-color);
  font-size: 15px;
  font-size: 0.9375rem;
}
.cs-room-booking .cs-form-total-price {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 35px;
  padding-top: 40px;
  cursor: pointer;
}
.cs-room-booking .cs-form-total-price:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  display: block;
  width: calc(100% + 70px);
  height: 1px;
  background: var(--total-divider);
  content: "";
}
.cs-room-booking .cs-form-total-price .price-details: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: "\33";
  font-size: 18px;
  font-size: 1.125rem;
}
.cs-room-booking .cs-form-total-price.toggled-on .price-details:before {
  content: "\32";
}
.cs-room-booking .cs-form-total-price .total-price {
  font-size: 24px;
  font-size: 1.5rem;
}
.cs-room-booking .cs-form-price-details {
  position: relative;
  margin-top: 20px;
  font-size: 15px;
  font-size: 0.9375rem;
}
.cs-room-booking .cs-form-price-details ul {
  display: block;
  margin: 0;
}
.cs-room-booking .cs-form-price-details li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--total-divider);
}
.cs-room-booking .cs-form-price-details li.cs-form-price-details-total {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
.cs-room-booking .cs-form-price-details li.with-tax-info {
  align-items: flex-start;
}
.cs-room-booking .cs-form-price-details li.with-tax-info .csf-pd-value {
  text-align: right;
}
.cs-room-booking .cs-form-price-details li.with-tax-info .includes_tax,
.cs-room-booking .cs-form-price-details li.with-tax-info .excludes_tax {
  display: block;
  font-weight: 400;
  opacity: 0.6;
  font-size: 14px;
  font-size: 0.875rem;
}
.cs-room-booking .cs-form-price-details li.csf-pd-total-base > .csf-pd-label {
  cursor: pointer;
}
.cs-room-booking .cs-form-price-details li .breakdown-title,
.cs-room-booking .cs-form-price-details li .breakdown-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
.cs-room-booking .cs-form-price-details li .breakdown-title {
  padding-bottom: var(--line-space);
  margin-bottom: var(--line-space);
  border-bottom: 1px solid var(--border-color);
}
.cs-room-booking .cs-form-price-details li .breakdown-main {
  max-height: 300px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cs-room-booking .cs-form-price-details li .breakdown-main::-webkit-scrollbar {
  display: none;
}
.cs-room-booking .cs-form-price-details li .breakdown-main li {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 14px;
  font-size: 0.875rem;
}
.cs-room-booking
  .cs-form-price-details
  li
  .breakdown-main
  li:not(:first-child) {
  margin-top: 8px;
}
.cs-room-booking .cs-form-price-details li .breakdown-footer {
  padding-top: var(--line-space);
  margin-top: var(--line-space);
  border-top: 1px solid var(--border-color);
}
.cs-room-booking .cs-form-price-details li del {
  opacity: 0.6;
}
.cs-room-booking .cs-form-price-details .discounted {
  color: red;
}
.cs-room-booking .cs-form-price-details li.csf-pd-total-base.always-show {
  flex-wrap: wrap;
}
.cs-room-booking
  .cs-form-price-details
  li.csf-pd-total-base.always-show
  .csf-base-price-breakdown {
  position: relative;
  top: auto;
  right: auto !important;
  bottom: auto;
  left: auto !important;
  transform: none !important;
  margin: 10px 0;
  background: none;
  border: 1px solid var(--border-color);
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.cs-room-booking
  .cs-form-price-details
  li.csf-pd-total-base.always-show
  .info-indicator,
.cs-room-booking
  .cs-form-price-details
  li.csf-pd-total-base.always-show
  .csf-base-price-breakdown:after {
  display: none;
}
.cs-room-booking
  .cs-form-price-details
  li.csf-pd-total-base.always-show
  .breakdown-title,
.cs-room-booking
  .cs-form-price-details
  li.csf-pd-total-base.always-show
  .breakdown-footer {
  font-size: 14px;
  font-size: 0.875rem;
}
.cs-room-booking .cs-reservation-form.style-block .cs-form-field.cs-submit {
  padding-top: 35px;
}
.cs-room-booking button[type="submit"] {
  font-size: 18px;
  font-size: 1.125rem;
}
.cs-room-booking .cs-form-error-message,
.cs-room-booking .cs-form-success-message {
  margin-top: 12px;
}
.cs-room-booking .cs-form-error-message p,
.cs-room-booking .cs-form-success-message p {
  margin-bottom: 0;
}
.cs-room-booking .cs-form-error-message {
  color: red;
}
.cs-room-booking .cs-form-success-message {
  color: green;
}
.cs-room-booking .cs-submit .btn-text {
  position: relative;
  display: block;
}
.cs-room-booking .cs-submit .btn-text:after {
  position: absolute;
  top: 1px;
  right: -30px;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top: 2px solid transparent;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  transition: opacity 0.3s;
  transform-origin: 50% 50%;
  opacity: 0;
  content: "";
}
.cs-room-booking.loading .cs-room-booking-wrap {
  pointer-events: none;
  opacity: 0.5;
}
.cs-room-booking.loading .cs-submit .btn-text:after {
  opacity: 1;
}
.with-sidebar-right
  .cs-room-booking
  .cs-form-wrap
  > .cs-form-field
  .csf-dropdown:before {
  right: 32px;
  left: auto;
}
.with-sidebar-right
  .cs-room-booking
  .cs-form-wrap
  > .cs-form-field
  .csf-dropdown:after {
  right: 33px;
  left: auto;
}
.sl-overlay {
  background: #000 !important;
}
.sl-wrapper .sl-close,
.sl-wrapper .sl-navigation button,
.sl-wrapper .sl-counter {
  color: #fff !important;
}
@media screen and (min-width: 768px) {
  .cs-rooms.layout-grid.column-1 .posts-wrapper {
    margin-left: 0;
  }
  .cs-rooms.layout-grid.column-1 .post {
    width: 100%;
    max-width: 100%;
  }
  .cs-rooms.layout-grid.column-1 .post-title {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .cs-rooms.layout-grid.column-1:not(.carousel-center-mode) {
    --post-gap: 0;
  }
  .room-top-section .featured-img {
    height: 480px;
  }
  .cs-rooms.cs-rooms-carousel .slick-arrow.slick-prev {
    left: -30px;
  }
  .elementor-section-full_width
    .cs-rooms.cs-rooms-carousel
    .slick-arrow.slick-prev {
    left: 60px;
  }
  .cs-rooms.cs-rooms-carousel .slick-arrow.slick-next {
    right: -30px;
  }
  .elementor-section-full_width
    .cs-rooms.cs-rooms-carousel
    .slick-arrow.slick-next {
    right: 60px;
  }
  .cs-rooms.cs-rooms-carousel.column-1 .posts-wrapper:not(.slick-initialized) {
    justify-content: center;
    margin-left: calc(0px - var(--post-gap));
  }
}
@media screen and (min-width: 1200px) {
  .cs-rooms.layout-grid.column-1 .post-title {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .cs-rooms.layout-standard .cs-room-basic-info {
    margin: 20px 0;
  }
  .cs-rooms.layout-standard,
  .cs-rooms.layout-list {
    --item-v-space: 20px;
  }
  .cs-rooms.layout-standard .item-excerpt,
  .cs-rooms.layout-list .item-excerpt {
    margin-bottom: var(--item-v-space);
  }
  .elementor-column:only-child
    .cs-rooms.cs-rooms-carousel.column-1.text-v-middle {
    --item-v-space: 20px;
  }
  .room-top-section {
    margin-bottom: 80px;
  }
  .room .post-header {
    margin-bottom: 60px;
  }
  .room .post-header .entry-title {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .room-top-section .featured-img {
    height: 520px;
  }
  .site-header.overlap-header ~ .site-content .room-top-section .featured-img {
    height: 600px;
  }
  .cs-room-booking .cs-form-price-details li .csf-base-price-breakdown,
  .cs-room-booking .cs-service-description {
    top: 20px;
  }
  .cs-room-booking .cs-form-price-details li .csf-base-price-breakdown:after,
  .cs-room-booking .cs-service-description:after {
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
  .site-content.with-sidebar-right
    .cs-room-booking
    .cs-form-price-details
    li
    .csf-base-price-breakdown,
  .site-content.with-sidebar-right .cs-room-booking .cs-service-description {
    left: 0;
    -webkit-transform: translate(-105%, -50%);
    -ms-transform: translate(-105%, -50%);
    transform: translate(-105%, -50%);
  }
  .site-content.with-sidebar-right
    .cs-room-booking
    .cs-form-price-details
    li
    .csf-base-price-breakdown:after,
  .site-content.with-sidebar-right
    .cs-room-booking
    .cs-service-description:after {
    right: -4px;
  }
  .site-content.with-sidebar-left
    .cs-room-booking
    .cs-form-price-details
    li
    .csf-base-price-breakdown,
  .site-content.with-sidebar-left .cs-room-booking .cs-service-description {
    right: 0;
    left: auto;
    -webkit-transform: translate(105%, -50%);
    -ms-transform: translate(105%, -50%);
    transform: translate(105%, -50%);
  }
  .site-content.with-sidebar-left
    .cs-room-booking
    .cs-form-price-details
    li
    .csf-base-price-breakdown:after,
  .site-content.with-sidebar-left
    .cs-room-booking
    .cs-service-description:after {
    right: auto;
    left: -4px;
  }
  .cs-room-booking .cs-service-description {
    top: 50%;
  }
  .site-content.with-sidebar-right .cs-room-booking .cs-service-description {
    -webkit-transform: translate(calc(-100% - 12px), -50%);
    -ms-transform: translate(calc(-100% - 12px), -50%);
    transform: translate(calc(-100% - 12px), -50%);
  }
  .site-content.with-sidebar-left .cs-room-booking .cs-service-description {
    -webkit-transform: translate(calc(100% + 12px), -50%);
    -ms-transform: translate(calc(100% + 12px), -50%);
    transform: translate(calc(100% + 12px), -50%);
  }
}
@media screen and (max-width: 1199px) {
  .cs-room-booking .cs-service-description:after {
    display: block;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: -4px;
    left: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .cs-room-basic-info ul li:not(:last-child) {
    padding-right: 20px;
  }
  .cs-rooms.text-center .cs-room-basic-info ul li {
    padding: 0 10px;
  }
  .cs-rooms {
    --icon-size: 20px;
  }
  .cs-rooms .post-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .room-top-section .cs-gallery.gallery-mosaic .cs-gallery-wrap {
    display: block;
  }
  .room-top-section
    .cs-gallery.gallery-mosaic
    .cs-gallery-wrap
    .cs-gallery-item:not(:first-child) {
    display: none;
  }
  .cs-rooms.cs-rooms-carousel.layout-overlay.slider-dots-overlap:not(
      .text-v-middle
    )
    .post
    .post-content {
    padding-bottom: 55px;
  }
  .cs-rooms.cs-rooms-carousel.layout-overlay.slider-dots-overlap:not(
      .text-v-middle
    )
    .hover-show-content {
    padding-bottom: 60px;
  }
  .cs-rooms.cs-rooms-carousel.layout-overlay.column-1.carousel-center-mode
    .slick-initialized
    .post:not(.slick-center)
    .cs-room-content {
    opacity: 1;
  }
  .theme-cozystay .room-availability .daterangepicker .drp-calendar {
    float: none !important;
    width: 100%;
  }
  .theme-cozystay .room-availability .daterangepicker .drp-calendar.left,
  .theme-cozystay .room-availability .daterangepicker .drp-calendar.right {
    padding-right: 8px;
    padding-left: 8px;
  }
}
@media screen and (max-width: 599px) {
  .cs-room-booking .cs-room-booking-wrap {
    padding: 30px;
  }
  .cs-room-booking .room-booking-title {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .cs-room-booking .room-booking-title h4 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .cs-room-booking .room-booking-title .base-price {
    font-size: 16px;
    font-size: 1rem;
  }
  .cs-room-booking .cs-form-total-price:before {
    width: calc(100% + 60px);
  }
  .cs-room-booking .cs-form-label {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .cs-room-booking .csf-title,
  .cs-room-booking .cs-form-total-price .total-price {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .cs-room-booking .cs-extra-service .field-wrap .cs-styled-checkbox,
  .cs-room-booking
    .cs-extra-service
    .field-wrap
    .cs-form-price:not(:last-child) {
    margin-right: 8px;
  }
  .cs-room-booking .price-quantity .csf-dropdown {
    right: 0;
    left: auto;
  }
  .cs-room-booking .price-quantity .csf-dropdown:before {
    right: 25px;
    left: auto;
  }
  .cs-room-booking .price-quantity .csf-dropdown:after {
    right: 26px;
    left: auto;
  }
  .cs-room-booking .cs-form-notice {
    width: 50px;
  }
  .cs-room-booking .cs-form-price-details li .breakdown-title,
  .cs-room-booking .cs-form-price-details li .breakdown-footer {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 360px) {
  .cs-room-booking .cs-extra-service .field-wrap {
    flex-wrap: wrap;
  }
  .cs-room-booking .cs-extra-service .field-wrap .price-quantity {
    width: 100%;
    padding-left: 29px;
  }
  .cs-room-booking .cs-reservation-form.style-block .form-field-col-1-2 {
    width: 100%;
  }
  .cs-room-booking
    .cs-reservation-form.style-block
    .form-field-col-1-2.cs-adults {
    padding-right: 0;
  }
  .cs-room-booking
    .cs-reservation-form.style-block
    .form-field-col-1-2.cs-children {
    padding-left: 0;
  }
}
.elementor-section.elementor-section-boxed.cs-section-content-fullwidth
  > .elementor-container,
.elementor-section.elementor-section-full_width.cs-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);
}
.cs-template-wide .site-content .elementor-section-full_width,
.custom_blocks-template-default .elementor-section-full_width,
.site-footer-main .elementor-section-full_width,
.cs-section-content-fullwidth {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: calc(50% - 50vw);
}
.cs-template-wide
  .site-content
  .elementor-section
  .elementor-section-full_width,
.elementor-section .elementor-section-full_width {
  width: 100%;
  left: auto;
}
.cs-template-wide .site-content .elementor-section-wrap > .e-con-full,
.cs-template-wide .site-content [data-elementor-id] > .e-con-full,
.cs-template-wide .site-content .elementor > .e-con-full,
.cs-template-wide .elementor-section-wrap > .cs-section-content-fullwidth,
.cs-template-wide .elementor > .cs-section-content-fullwidth {
  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;
  left: calc(50% - 50vw);
}
:is(.elementor-section-wrap, [data-elementor-id])
  > .e-con.cs-section-content-fullwidth {
  width: 100vw !important;
  max-width: 100vw !important;
}
.e-con.cs-section-content-fullwidth > .e-con-inner {
  max-width: calc(var(--content-width) + var(--side-padding) * 2);
  padding-right: var(--side-padding);
  padding-left: var(--side-padding);
}
.e-con-full.cs-section-content-fullwidth {
  width: 100vw;
  max-width: 100vw !important;
  padding-right: var(--side-padding);
  padding-left: var(--side-padding);
}
.cs-template-wide.elementor-page .primary {
  padding-bottom: 0;
}
.single-custom_site_headers .container {
  padding: 0;
  max-width: 100vw;
}
.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;
}
.color-primary,
.entry-content .color-primary,
.elementor-section .color-primary {
  color:var(--shf-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;
}
.cs-elementor-simulator-scheme-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99;
}
.cs-elementor-simulator-scheme-dark,
.cs-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;
}
.cs-elementor-simulator-scheme-dark.active,
.cs-elementor-simulator-scheme-light.active {
  background: #fff;
}
.cs-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-widget-heading .elementor-heading-title {
  margin-bottom: 0;
}
.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;
}
body > div.elementor {
  overflow: hidden;
}
.elementor-widget-cs_logo {
  font-size: 0;
}
.elementor-widget-cs_logo .cs-notice {
  font-size: 16px;
  font-size: 1rem;
  color: #161616;
}
.elementor-widget-cs_logo a {
  display: inline-block;
}
.elementor-widget-cs_logo img {
  display: block;
}
.elementor-widget-cs_button.elementor-align-justify .button {
  width: 100%;
  padding: 0;
}
.elementor-widget-cs_button .cs-btn-circle {
  display: flex;
}
.elementor-widget-cs_button.elementor-align-left .cs-btn-circle {
  margin-right: auto;
  margin-left: 0;
}
.elementor-widget-cs_button.elementor-align-center .cs-btn-circle {
  margin-right: auto;
  margin-left: auto;
}
.elementor-widget-cs_button.elementor-align-right .cs-btn-circle {
  margin-right: 0;
  margin-left: auto;
}
ul.social-nav.text-left,
.text-left ul.social-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
ul.social-nav.text-center,
.text-center ul.social-nav {
  -webkit-justify-content: center;
  justify-content: center;
}
ul.social-nav.text-right,
.text-right ul.social-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cs-menu {
  --item-padding: 15px;
}
.cs-menu > ul > li > a {
  font-family: var(--nav-font);
}
.cs-menu.text-left .menu {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cs-menu.text-center .menu {
  -webkit-justify-content: center;
  justify-content: center;
}
.cs-menu.text-right .menu {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cs-menu .primary-menu > li > a {
  padding: 0 var(--item-padding);
}
.cs-menu .primary-menu > li > a:before {
  left: var(--item-padding);
  width: calc(100% - var(--item-padding) * 2);
}
.cs-menu .primary-menu > li.menu-item-has-children > a:before {
  width: calc(100% - var(--item-padding) * 2 - 20px);
}
.cs-menu .primary-menu > li > .sub-menu {
  left: calc(var(--item-padding) - 30px);
}
.cs-menu.footer-menu .menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cs-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);
}
.cs-menu.cs-menu-inline .menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cs-menu.cs-menu-inline .menu li {
  padding: 5px var(--item-padding);
}
.cs-menu.cs-menu-inline .menu a {
  white-space: nowrap;
}
.cs-menu.cs-menu-inline.text-left .menu li:first-child {
  padding-left: 0;
}
.cs-menu.cs-menu-inline.text-right .menu li:last-child {
  padding-right: 0;
}
.cs-menu.cs-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;
}
.cs-menu.cs-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 .cs-menu.cs-menu-inline li:hover > ul.sub-menu {
  z-index: 99;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.elementor-widget-cs_title .cs-subtitle-wrap {
  position: relative;
  overflow: hidden;
	z-index: 1000;
}
.elementor-widget-cs_title .cs-subtitle-wrap + .cs-title {
  margin-top: 20px; font-size: 48px;
        font-size: 3rem;
}
.elementor-widget-cs_title .cs-title-separator {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.elementor-widget-cs_title .cs-title-separator span {
  display: block;
  width: 1px;
  height: 45px;
  background: currentColor;
}
.elementor-widget-cs_title .cs-title-text {
  margin-top: 20px;
}
.elementor-widget-cs_title .cs-title-text:first-child {
  margin-top: 0;
}
.elementor-widget-cs_title .cs-title-text p {
  margin-bottom: 20px;
}
.elementor-widget-cs_title .cs-title-text > *:last-child {
  margin-bottom: 0;
}
.elementor-widget-cs_title .cs-title-text + .cs-title-btn {
  margin-top: 30px;
}
.elementor-widget-cs_title .cs-title-btn {
  margin-top: 20px;
}
.elementor-widget-cs_title .cs-title-btn .button.cs-btn-underline {
  margin-bottom: 2px;
}
.cs-title,
.entry-content .cs-title {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.1;
}
.cs-title small,
.entry-content .cs-title small {
  font-weight: 300;
  font-size: 100%;
}
.cs-subtitle-wrap {
  line-height: 1.2 !important;
}
.cs-title-wrap.text-left {
  margin-right: auto;
}
.cs-title-wrap.text-center {
  margin-right: auto;
  margin-left: auto;
}
.cs-title-wrap.text-right {
  margin-left: auto;
}



.black-background-overlay{
	   background-color: transparent;
  background-image: linear-gradient(180deg, #000000 0%, #00000000 100%);
  opacity: 0.35;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
	position: absolute;
	z-index: 4;
	
}





h1.cs-title {
  font-size: 48px;
  font-size: 3rem;
}
h2.cs-title {
  font-size: 38px;
  font-size: 2.375rem;
}
h3.cs-title {
  font-size: 32px;
  font-size: 2rem;
}
h4.cs-title {
  font-size: 28px;
  font-size: 1.75rem;
}
h5.cs-title {
  font-size: 24px;
  font-size: 1.5rem;
}
h6.cs-title {
  font-size: 21px;
  font-size: 1.3125rem;
}
.cs-slider .slick-dots {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
}
.cs-slider .cs-slider-wrap > .cs-slider-item {
  opacity: 0;
}
.cs-slider .slick-initialized .cs-slider-item .elementor-section:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  content: "";
  transition: 0s;
}
.cs-slider
  .slick-initialized
  .cs-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;
}
.cs-slider
  .slick-initialized
  .cs-slider-item.slick-current
  .elementor-widget
  > *
  > * {
  -webkit-animation: slideFade 0.7s ease-out;
  animation: slideFade 0.7s ease-out;
}
.elementor-widget-cs_slider .cs-slider-item {
  overflow: hidden;
}
.cs-divider {
  position: relative;
  color: #dfdbdc;
}
.cs-divider .cs-d-line {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 6px;
}
.cs-divider .cs-d-line:before,
.cs-divider .cs-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: "";
}
.cs-divider .cs-d-line:before {
  width: 100%;
  height: 1px;
}
.cs-divider .cs-d-line:after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.cs-divider .cs-d-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  width: 33px;
  color: #c8c4c5;
}
.cs-divider .cs-d-icon.icon-start {
  left: 0;
}
.cs-divider .cs-d-icon.icon-end {
  right: 0;
}
.cs-divider .cs-d-icon svg {
  display: block;
}
.cs-divider .cs-d-icon svg > * {
  fill: currentColor;
}
.cs-divider.divider-star .cs-d-icon {
  width: 22px;
}
.cs-divider.divider-star .cs-d-line {
  width: calc(100% - 50px);
}
.cs-divider.divider-grass .cs-d-line {
  width: calc(100% - 20px);
}
.cs-divider.divider-grass .cs-d-icon.icon-start {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.cs-divider.divider-grass .cs-d-icon.icon-end {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.cs-vertical-divider {
  color: #dfdbdc;
  height: 200px;
}
.cs-vertical-divider > * {
  margin: 0 auto;
}
.cs-vertical-divider .cs-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%;
}
.cs-vertical-divider .cs-vd-line:before,
.cs-vertical-divider .cs-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: "";
}
.cs-vertical-divider .cs-vd-line:before {
  width: 1px;
  height: 100%;
}
.cs-vertical-divider .cs-vd-line:after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.cs-vertical-divider .cs-vd-icon {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 3;
  width: 33px;
  color: #c8c4c5;
}
.cs-vertical-divider .cs-vd-icon.icon-start {
  top: 0;
}
.cs-vertical-divider .cs-vd-icon.icon-end {
  bottom: 0;
}
.cs-vertical-divider .cs-vd-icon svg {
  display: block;
}
.cs-vertical-divider .cs-vd-icon svg > * {
  fill: currentColor;
}
.cs-vertical-divider.divider-star .cs-vd-icon {
  width: 22px;
}
.cs-vertical-divider.divider-star .cs-vd-line {
  height: calc(100% - 50px);
}
.cs-vertical-divider.divider-star .cs-vd-icon.icon-end {
  -webkit-transform: translateX(-50%) rotate(180deg);
  -ms-transform: translateX(-50%) rotate(180deg);
  transform: translateX(-50%) rotate(180deg);
}
.cs-vertical-divider.divider-grass .cs-vd-line {
  height: calc(100% - 20px);
}
.cs-vertical-divider.divider-grass .cs-vd-icon.icon-end {
  -webkit-transform: translateX(-50%) rotate(180deg);
  -ms-transform: translateX(-50%) rotate(180deg);
  transform: translateX(-50%) rotate(180deg);
}
.elementor-widget-cs_vertical_divider.full-height,
.elementor-widget-cs_vertical_divider.full-height .elementor-widget-container,
.elementor-widget-cs_vertical_divider.full-height .cs-vertical-divider {
  height: 100%;
}
.cs-tabs .elementor-tabs-wrapper {
  text-align: center;
}
.cs-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);
}
.cs-tabs .elementor-tab-desktop-title a {
  position: relative;
  margin: 0 15px;
  color: var(--text-color);
}
.elementor-element .cs-tabs .elementor-tab-desktop-title a {
  color: var(--text-color);
}
.cs-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);
}
.cs-tabs .elementor-tab-desktop-title.elementor-active a:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.cs-tabs .elementor-tab-content {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}
.cs-tabs .elementor-tab-content.elementor-active {
  -webkit-animation: showTab 0.7s ease-out 0.2s;
  animation: showTab 0.7s ease-out 0.2s;
  animation-fill-mode: forwards;
}
.cs-food-menu {
  --food-img-width: 85px;
}
.cs-food-menu .cs-food-menu {
  position: relative;
}
.cs-food-menu .cs-food-menu-item {
  display: table;
  width: 100%;
}
.cs-food-menu .cs-food-menu-img {
  position: relative;
  width: var(--food-img-width);
  max-width: var(--food-img-width);
  margin-right: 20px;
  overflow: hidden;
}
.cs-food-menu .cs-food-menu-main {
  display: table-cell;
  width: inherit;
  min-width: 100%;
  vertical-align: middle;
}
.cs-food-menu .cs-food-menu-header > * {
  display: table-cell;
}
.cs-food-menu .cs-food-menu-title {
  padding-right: 15px;
  margin-bottom: 0;
  width: 1%;
  white-space: nowrap;
  font-size: 21px;
  font-size: 1.3125rem;
}
.cs-food-menu .cs-food-menu-title a {
  color: inherit;
  white-space: inherit;
}
.cs-food-menu .cs-food-menu-title .title-wrap {
  white-space: inherit;
}
.cs-food-menu
  .cs-food-menu-title
  .title-wrap.pen:not([data-elementor-inline-editing-toolbar="advanced"]) {
  white-space: nowrap !important;
}
.cs-food-menu .cs-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;
}
.cs-food-menu .cs-food-menu-lines {
  position: relative;
  width: 98%;
}
.cs-food-menu .cs-food-menu-group {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  font-size: 0.75rem;
  transform: translateY(-150%);
}
.cs-food-menu .cs-food-menu-group span {
  margin-right: 20px;
  border: 2px solid;
  padding: 0 3px;
}
.cs-food-menu .cs-food-menu-group span:last-child {
  margin: 0;
}
.cs-food-menu .cs-food-menu-price {
  padding-left: 15px;
  width: 1%;
  font-size: 20px;
  font-size: 1.25rem;
  white-space: nowrap;
}
.cs-food-menu .cs-food-menu-price del {
  font-size: 18px;
  font-size: 1.125rem;
  opacity: 0.35;
}
.cs-food-menu .cs-food-menu-price.multi-price .cs-price {
  margin-right: 20px;
}
.cs-food-menu .cs-food-menu-price.multi-price .cs-price:last-child {
  margin: 0;
}
.cs-food-menu .cs-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);
}
.cs-food-menu.food-menu-style-1 .cs-food-menu-item {
  padding: 0 0 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dark-color .cs-food-menu.food-menu-style-1 .cs-food-menu-item {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.cs-food-menu.food-menu-style-2 .cs-food-menu-item {
  margin: 0 0 30px;
}
.cs-food-menu.food-menu-style-2 .cs-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 .cs-food-menu.food-menu-style-2 .cs-food-menu-lines {
  background-image: linear-gradient(
    to right,
    #fff 25%,
    rgba(255, 255, 255, 0) 0%
  );
}
.cs-food-menu.food-menu-style-3 .cs-food-menu-item {
  margin: 0 0 30px;
}
.cs-food-menu.food-menu-style-3 .cs-food-menu-lines {
  top: 17px;
  border-top: 1px solid;
  color: var(--border-color);
}
.cs-food-menu.food-menu-style-4 .cs-food-menu-item {
  margin: 0 0 30px;
}
.cs-food-menu.food-menu-style-4 .cs-food-menu-lines {
  position: relative;
  top: 14px;
  border-top: 1px solid;
  color: var(--border-color);
}
.cs-food-menu.food-menu-style-4 .cs-food-menu-lines:before {
  position: absolute;
  top: 4px;
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid;
  content: "";
}
.cs-food-menu.food-menu-style-5 {
  margin: calc(0px - var(--gap));
}
.cs-food-menu.food-menu-style-5.gap-10 {
  --gap: 10px;
}
.cs-food-menu.food-menu-style-5.gap-20 {
  --gap: 20px;
}
.cs-food-menu.food-menu-style-5.gap-32 {
  --gap: 32px;
}
.cs-food-menu.food-menu-style-5 .cs-food-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.cs-food-menu.food-menu-style-5 .cs-food-menu-header > * {
  display: block;
  white-space: normal;
  width: auto;
}
.cs-food-menu.food-menu-style-5 .cs-food-menu-header .cs-food-menu-lines {
  display: none;
}
.cs-food-menu.food-menu-style-5 .cs-food-menu-item {
  display: block;
  padding: var(--gap);
}
.cs-food-menu.food-menu-style-5 .cs-food-menu-main {
  display: block;
}
.cs-food-menu.food-menu-style-5 .cs-food-menu-title {
  line-height: 1.35;
}
.cs-food-menu.food-menu-style-5 .cs-food-menu-details {
  margin-top: 10px;
  line-height: 1.35;
}
.cs-food-menu.food-menu-style-5 .cs-food-menu-img {
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px;
}
.cs-food-menu.food-menu-style-5 .cs-food-menu-img img {
  display: block;
}
.cs-food-menu.food-menu-style-6 .cs-food-menu-item {
  margin: 0 0 30px;
}
.cs-food-menu.food-menu-style-6 .cs-food-menu-lines {
  opacity: 0;
}
.cs-food-menu .cs-food-menu-item:last-child {
  margin-bottom: 0;
}
.cs-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;
}
.cs-food-card .cs-fc-img,
.cs-food-card .cs-fc-img + .cs-fc-info {
  width: 50%;
}
.cs-food-card:not(.column-reverse) .cs-fc-img {
  display: flex;
  justify-content: flex-end;
}
.cs-food-card .cs-fc-img + .cs-fc-info {
  padding: 0 60px;
}
.cs-food-card .cs-fc-info-title {
  margin: 0;
  line-height: 1.2;
  font-size: 40px;
}
.cs-food-card .cs-fc-info-title + .cs-fc-info-text {
  margin-top: 20px;
}
.cs-food-card .cs-fc-info-text {
  line-height: 1.25;
  font-size: 21px;
}
.cs-food-card .cs-fc-info-text > *:last-child {
  margin-bottom: 0;
}
.cs-food-card .cs-fc-info-text:not(:last-child) {
  margin-bottom: 30px;
}
.cs-food-card .cs-fc-info-extra {
  display: flex;
  margin-top: 20px;
}
.cs-food-card .cs-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;
}
.cs-food-card .cs-fc-info-extra .info-content {
  display: inline-block;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
}
.cs-food-card.column-reverse {
  flex-direction: row-reverse;
}
.cs-food-card.column-reverse .cs-fc-info {
  display: flex;
  justify-content: flex-end;
}
.cs-testimonials .cs-testimonial-content {
  color: var(--text-color);
  font-family: var(--heading-font);
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
}
.cs-testimonials .cs-testimonial-content + .cs-testimonial-rating {
  margin-top: 10px;
}
.cs-testimonials .cs-testimonial-meta {
  margin-top: 25px;
}
.cs-testimonials .cs-testimonial-rating + .cs-testimonial-meta {
  margin-top: 0;
}
.cs-testimonials .elementor-testimonial-image {
  font-size: 0;
}
.cs-testimonials .elementor-testimonial-image img {
  display: inline;
  width: 70px;
  border-radius: 50%;
}
.cs-testimonials .cs-testimonial-rating:first-child {
  margin-bottom: 20px;
}
.cs-testimonials .cs-testimonial-stars {
  display: block;
}
.cs-testimonials .cs-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: 11px;
  letter-spacing: 2px;
}
.cs-testimonials:not(.elementor-testimonial-image-position-aside)
  .cs-testimonial-meta
  .elementor-testimonial-image {
  margin-bottom: 12px;
}
.cs-testimonials.elementor-testimonial-image-position-aside
  .cs-testimonial-meta
  .elementor-testimonial-meta-inner {
  width: fit-content;
  text-align: left;
}
.cs-testimonials.elementor-testimonial-image-position-aside
  .cs-testimonial-meta
  .elementor-testimonial-image,
.cs-testimonials.elementor-testimonial-image-position-aside
  .cs-testimonial-meta
  .elementor-testimonial-details {
  display: inline-block;
  vertical-align: middle;
}
.cs-testimonials.elementor-testimonial-image-position-aside
  .cs-testimonial-meta
  .elementor-testimonial-image {
  margin-right: 12px;
}
.cs-testimonials.elementor-testimonial-image-position-aside.text-center
  .elementor-testimonial-meta-inner {
  margin: 0 auto;
}
.cs-testimonials .elementor-testimonial-name {
  font-family: var(--heading-font);
  font-size: 16px;
  font-size: 1rem;
}
.cs-testimonials .elementor-testimonial-job {
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.cs-testimonials.testimonial-style-1 .cs-testimonial {
  margin: 0 auto;
}
.cs-testimonials.testimonial-style-1 .cs-testimonial,
.cs-testimonials.testimonial-style-1 .slick-dots {
  width: 100%;
}
.cs-testimonials.testimonials-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -30px;
}
.cs-testimonials.testimonials-grid .cs-testimonial {
  padding: 30px;
}
.cs-testimonials.testimonials-grid .cs-testimonial-content {
  font-size: 21px;
  font-size: 1.3125rem;
}
.cs-testimonials.testimonials-slider > .cs-ts-wrap > .cs-ts-item {
  display: none;
}
.cs-testimonials.testimonials-slider > .cs-ts-wrap > .cs-ts-item:first-child {
  display: block;
}
.cs-testimonials.testimonials-slider .slick-arrow.slick-prev {
  left: -30px;
}
.cs-testimonials.testimonials-slider .slick-arrow.slick-next {
  right: -30px;
}
.cs-testimonials.testimonials-slider[data-column="1"] .cs-ts-item {
  padding: 0;
}
.cs-testimonials.testimonials-slider[data-column="2"] .cs-testimonial-content,
.cs-testimonials.testimonials-slider[data-column="3"] .cs-testimonial-content {
  font-size: 18px;
  font-size: 1.125rem;
}
.cs-testimonials.testimonials-slider .cs-ts-item {
  padding: 0 30px;
}
.cs-gallery img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  transition: transform 0.3s;
}
.cs-gallery.gap-0 {
  --gallery-gap: 0px;
}
.cs-gallery.gap-2 {
  --gallery-gap: 2px;
}
.cs-gallery.gap-5 {
  --gallery-gap: 5px;
}
.cs-gallery.gap-10 {
  --gallery-gap: 10px;
}
.cs-gallery.gap-16 {
  --gallery-gap: 16px;
}
.cs-gallery.gap-20 {
  --gallery-gap: 20px;
}
.cs-gallery.gap-32 {
  --gallery-gap: 32px;
}
.cs-gallery .cs-gallery-item {
  position: relative;
}
.cs-gallery.gallery-grid .cs-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));
}
.cs-gallery.gallery-grid .cs-gallery-item {
  padding: var(--gallery-gap);
}
.cs-gallery.gallery-grid.grid-col-2 .cs-gallery-item {
  width: 50%;
}
.cs-gallery.gallery-grid.grid-col-3 .cs-gallery-item {
  width: 33.33%;
}
.cs-gallery.gallery-grid.grid-col-4 .cs-gallery-item {
  width: 25%;
}
.cs-gallery.gallery-grid.grid-col-5 .cs-gallery-item {
  width: 20%;
}
.cs-gallery.gallery-grid.grid-col-6 .cs-gallery-item {
  width: 16.6666%;
}
.cs-gallery.gallery-grid.align-middle-v .cs-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;
}
.cs-gallery.gallery-grid.align-bottom-v .cs-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;
}
.cs-gallery.gallery-mosaic .cs-gallery-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.cs-gallery.gallery-mosaic .cs-gallery-wrap .cs-gallery-item:first-child {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
.cs-gallery.gallery-mosaic .cs-gallery-wrap img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cs-gallery.gallery-carousel .slick-list {
  margin: 0 calc(0px - var(--gallery-gap));
}
.cs-gallery.gallery-carousel .slick-slide {
  will-change: transform;
}
.cs-gallery.gallery-carousel .cs-gallery-item {
  padding: 0 var(--gallery-gap);
}
.cs-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;
}
.cs-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;
}
.cs-gallery.gallery-carousel.slider-height-full .cs-gallery-item {
  height: 100vh;
}
.cs-gallery.gallery-carousel.slider-height-full .cs-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;
}
.cs-gallery.gallery-carousel > .cs-gallery-wrap > .cs-gallery-item {
  display: none;
  opacity: 0;
}
.cs-gallery.gallery-carousel > .cs-gallery-wrap > .cs-gallery-item:first-child {
  display: block;
}
.cs-gallery.slider-dots-overlap .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  color: #fff;
}
.cs-gallery.variable-width .cs-gallery-item {
  height: 600px;
}
.cs-gallery.variable-width .cs-gallery-item img {
  height: 100%;
  width: auto;
}
.cs-gallery.style-overflow .slick-list {
  overflow: visible;
}
.cs-gallery.style-overflow .slick-arrow.slick-prev {
  left: -30px;
}
.cs-gallery.style-overflow .slick-arrow.slick-next {
  right: -30px;
}
.cs-instagram {
  --ig-gap: 8px;
}
.cs-instagram .cs-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;
}
.cs-instagram ul {
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ig-gap);
}
.cs-instagram li {
  position: relative;
  overflow: hidden;
}
.cs-instagram.column-4 ul {
  grid-template-columns: repeat(4, 1fr);
}
.cs-instagram.column-5 ul {
  grid-template-columns: repeat(5, 1fr);
}
.cs-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);
}
.cs-instagram .feed-video {
  margin-bottom: 0;
}
.cs-instagram li a {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}
.cs-instagram li a:after {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 99;
  color: #fff;
  -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-family: "Font Awesome 5 Brands";
  font-weight: 400;
  content: "\f16d";
  font-size: 24px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.no-touch .cs-instagram li a:hover .feed-bg {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
  opacity: 0.9;
}
.no-touch .cs-instagram li a:hover:after {
  opacity: 1;
}
.cs-fancy-card {
  --content-bg: #211b16;
  --content-color: #fff;
  --content-bg-hover: var(--content-bg);
  --content-color-hover: var(--content-color);
}
.cs-fancy-card .cs-fc-wrap {
  position: relative;
  overflow: hidden;
}
.cs-fancy-card .cs-fc-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cs-fancy-card .cs-fc-link ~ * {
  pointer-events: none;
}
.elementor-editor-active .cs-fancy-card .cs-fc-link ~ *,
.cs-fancy-card .cs-fc-link ~ * a {
  pointer-events: auto;
}
.cs-fancy-card .cs-fc-img {
  position: relative;
  overflow: hidden;
}
.cs-fancy-card .cs-fc-img img {
  display: block;
  width: 100%;
  transition: 0.35s ease-in-out;
}
.no-touch .cs-fancy-card.cs-hover-img-zoom:hover .cs-fc-img img {
  -webkit-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
}
.cs-fancy-card.cs-hover-img-zoom-out .cs-fc-img img {
  -webkit-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
}
.no-touch .cs-fancy-card.cs-hover-img-zoom-out:hover .cs-fc-img img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.cs-fancy-card .cs-fc-content {
  z-index: 9;
  width: 100%;
  padding: 30px;
}
.cs-fancy-card .cs-fc-title:not([class*="color-"]),
.cs-fancy-card .cs-subtitle:not([class*="color-"]) {
  color: inherit;
}
.cs-fancy-card .cs-fc-text p {
  margin-bottom: 0;
	color: #fff;
}
.cs-fancy-card.style-1 .cs-fc-wrap {
  display: flex;
  flex-direction: column;
  background:#4d4a46;
  color: var(--content-color);
  transition: background 0.3s, color 0.3s;
}
.no-touch .cs-fancy-card.style-1:hover .cs-fc-wrap {
  background:#96897c;
   
}
.cs-fancy-card.style-1.order-reverse:not(.layout-row) .cs-fc-img {
  order: 9;
}
.cs-fancy-card.style-1 .cs-fc-content {
  
  flex-direction: column;
  justify-content: center;
}
.cs-fancy-card.style-2 .cs-fc-wrap {
  overflow: visible;
}

.cs-fancy-card.style-2 .cs-fc-content {
  position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, 50%);
    padding: 15px 50px;
    background: var(--content-bg);
    color: var(--content-color);
    width: 75%;
    max-width: calc(100% - 20px);
    transition: background 0.3s, color 0.3s;
    min-height: 74px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.cs-fancy-card.style-2.content-position-right .cs-fc-content {
  right: -20px;
  left: auto;
}
.cs-fancy-card.style-2.content-position-center .cs-fc-content {
  right: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 70%;
  max-width: 100%;
}
.no-touch .cs-fancy-card.style-2:hover .cs-fc-content {
  background: #96897c;
  color: var(--content-color-hover);
}
.cs-cta {
  --cta-border-color: var(--primary-color);
}
.cs-cta .cs-cta-wrap {
  position: relative;
  overflow: hidden;
}
.cs-cta .cs-cta-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
}
.cs-cta .cs-cta-img {
  position: relative;
  overflow: hidden;
}
.cs-cta .cs-cta-img img {
  display: block;
  width: 100%;
  transition: 0.35s ease-in-out;
}
.cs-cta .cs-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: 0.35s;
}
.cs-cta .cs-cta-label {
  z-index: 9;
  position: absolute;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  pointer-events: none;
}
.elementor-editor-active .cs-cta .cs-cta-label {
  pointer-events: auto;
}
.cs-cta .cs-cta-label.label-top-left {
  top: 20px;
  left: 20px;
}
.cs-cta .cs-cta-label.label-top-right {
  top: 20px;
  right: 20px;
}
.cs-cta .cs-cta-label.label-bottom-left {
  bottom: 20px;
  left: 20px;
}
.cs-cta .cs-cta-label.label-bottom-right {
  right: 20px;
  bottom: 20px;
}
.cs-cta .cs-cta-label.label-centered {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cs-cta .cs-cta-content {
  z-index: 9;
  width: 100%;
  pointer-events: none;
}
.elementor-editor-active .cs-cta .cs-cta-content {
  pointer-events: auto;
}
.cs-cta .cs-cta-content > * {
  margin-bottom: 10px;
}
.cs-cta .cs-cta-content .cs-subtitle-wrap:last-child {
  margin-bottom: 0;
}
.cs-cta .cs-cta-content a {
  pointer-events: auto;
}
.elementor-editor-active .cs-cta .cs-cta-content a {
  pointer-events: none;
}
.elementor-editor-active .cs-cta .cs-cta-content a .cs-btn-text {
  pointer-events: auto;
}
.cs-cta .cs-cta-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
.cs-cta .cs-cta-text p {
  margin-bottom: 10px;
}
.cs-cta .cs-cta-text p:last-child {
  margin-bottom: 0;
}
.cs-cta .hover-slide-up {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: 0.35s ease-in-out;
}
.no-touch .cs-cta:hover .hover-slide-up {
  max-height: 200px;
  opacity: 1;
}
.cs-cta.cta-layout-text-normal .cs-cta-content {
  padding-top: 30px;
}
.cs-cta.cta-layout-text-normal .cs-cta-content > * {
  margin-bottom: 15px;
}
.cs-cta.cta-layout-text-overlap .cs-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 .cs-cta.cta-hover-img-zoom:hover .cs-cta-img img {
  -webkit-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
}
.cs-cta.cta-hover-img-zoom-out .cs-cta-img img {
  -webkit-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
}
.no-touch .cs-cta.cta-hover-img-zoom-out:hover .cs-cta-img img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.cs-cta.content-top .cs-cta-content {
  justify-content: flex-start;
}
.cs-cta.content-middle .cs-cta-content {
  justify-content: center;
}
.cs-cta.content-bottom .cs-cta-content {
  justify-content: flex-end;
}
.cs-cta.text-hover-to-show .cs-cta-content {
  opacity: 0;
  transition: opacity 0.4s;
}
.no-touch .cs-cta.text-hover-to-show:hover .cs-cta-content {
  opacity: 1;
}
.cs-cta.text-hover-to-hide .cs-cta-content {
  transition: opacity 0.4s;
}
.no-touch .cs-cta.text-hover-to-hide:hover .cs-cta-content {
  opacity: 0;
}
.cs-cta.with-inner-border {
  --border-position: 10px;
}
.cs-cta.with-inner-border .cs-cta-content:before,
.cs-cta.with-inner-border .cs-cta-content:after {
  position: absolute;
  top: var(--border-position);
  right: var(--border-position);
  bottom: var(--border-position);
  left: var(--border-position);
  color: var(--cta-border-color);
  content: "";
  transition: opacity 0.35s, transform 0.35s;
}
.cs-cta.with-inner-border .cs-cta-content:before {
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.cs-cta.with-inner-border .cs-cta-content:after {
  border-right: 1px solid;
  border-left: 1px solid;
}
.cs-cta.with-inner-border.text-hover-to-show .cs-cta-content:before,
.cs-cta.with-inner-border.text-hover-to-show .cs-cta-content:after {
  opacity: 0;
}
.cs-cta.with-inner-border.text-hover-to-show .cs-cta-content:before {
  transform: scale(0, 1);
}
.cs-cta.with-inner-border.text-hover-to-show .cs-cta-content:after {
  transform: scale(1, 0);
}
.no-touch
  .cs-cta.with-inner-border.text-hover-to-show:hover
  .cs-cta-content:before,
.no-touch
  .cs-cta.with-inner-border.text-hover-to-show:hover
  .cs-cta-content:after {
  opacity: 1;
  transform: scale(1);
}
.no-touch
  .cs-cta.with-inner-border.text-hover-to-hide:hover
  .cs-cta-content:before,
.no-touch
  .cs-cta.with-inner-border.text-hover-to-hide:hover
  .cs-cta-content:after {
  opacity: 0;
}
.no-touch
  .cs-cta.with-inner-border.text-hover-to-hide:hover
  .cs-cta-content:before {
  transform: scale(0, 1);
}
.no-touch
  .cs-cta.with-inner-border.text-hover-to-hide:hover
  .cs-cta-content:after {
  transform: scale(1, 0);
}
.cs-cta.img-offset-border {
  --offset: -10px;
  --offset-revert: calc(0px - var(--offset));
}
.cs-cta.img-offset-border .cs-cta-wrap {
  overflow: visible;
}
.cs-cta.img-offset-border .cs-cta-img-wrap {
  position: relative;
}
.cs-cta.img-offset-border .cs-offset-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--cta-border-color);
  transform: translate(var(--offset), calc(var(--offset)));
  transition: all 0.3s;
  will-change: transform, width, height;
}
.no-touch .cs-cta.img-offset-border:hover .cs-offset-border {
  -webkit-transform: translate(var(--offset-revert), var(--offset-revert));
  -ms-transform: translate(var(--offset-revert), var(--offset-revert));
  transform: translate(var(--offset-revert), var(--offset-revert));
  width: calc(100% + var(--offset) * 2);
  height: calc(100% + var(--offset) * 2);
}
.cs-block-links {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.cs-block-links .cs-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 .cs-block-links .cs-bl-item:hover .cs-bl-item-bg {
  opacity: 1;
}
.cs-block-links .cs-bl-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.cs-block-links .cs-bl-item-bg .cs-bl-item-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cs-block-links .cs-bl-item-inner {
  position: relative;
  z-index: 3;
  padding: 80px 30px;
  text-align: center;
}
.cs-block-links .cs-text,
.cs-block-links .button {
  margin-top: 20px;
}
.cs-block-links .cs-text p {
  margin-bottom: 20px;
}
.cs-block-links .cs-text p:last-child {
  margin-bottom: 0;
}
.cs-block-links .cs-bl-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.no-touch .cs-block-links.hover-text-white .cs-bl-item:hover {
  color: #fff !important;
}
.no-touch .cs-block-links.hover-text-white .cs-bl-item:hover .cs-subtitle,
.no-touch .cs-block-links.hover-text-white .cs-bl-item:hover .cs-title,
.no-touch .cs-block-links.hover-text-white .cs-bl-item:hover .cs-text {
  color: inherit !important;
}
.no-touch
  .cs-block-links.hover-text-white
  .cs-bl-item:hover
  .button.cs-btn-outline {
  --btn-bg: #fff;
}
.elementor-editor-active .cs-block-links .cs-bl-link {
  pointer-events: none;
}
.cs-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;
}
.cs-countdown .countdown-amount {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2;
}
.cs-countdown .countdown-period {
  font-size: 18px;
  font-size: 1.125rem;
}
.cs-countdown.amount-color-primary .countdown-amount,
.cs-countdown.period-color-primary .countdown-period {
  color: var(--primary-color);
}
.cs-countdown.amount-color-secondary .countdown-amount,
.cs-countdown.period-color-secondary .countdown-period {
  color: var(--secondary-color);
}
.cs-countdown.amount-color-black .countdown-amount,
.cs-countdown.period-color-black .countdown-period {
  color: #000;
}
.cs-countdown.amount-color-white .countdown-amount,
.cs-countdown.period-color-white .countdown-period {
  color: #fff;
}
.cs-video-btn {
  font-size: 0;
}
.cs-video-btn .video-play-btn {
  position: relative;
  display: inline-block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid;
  cursor: pointer;
}
.cs-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-top: 1px;
  margin-left: 4px;
  max-width: 32px;
}
.elementor-widget-cs_social a,
.entry-content .elementor-widget-cs_social a {
  color: inherit;
}
.cs-info-box {
  position: relative;
  display: flex;
  --box-gap: 20px;
  --icon-space: 25px;
}
.cs-info-box .cs-info-box-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: calc(0px - var(--box-gap) / 2);
  width: calc(100% + var(--box-gap));
}
.cs-info-box .cs-info-box-item,
.cs-info-box .cs-item-container {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}
.cs-info-box .cs-info-box-item {
  padding: calc(var(--box-gap) / 2);
}
.cs-info-box.valign-middle .cs-item-container {
  align-items: center;
}
.cs-info-box.img-left .cs-info-box-item {
  flex-direction: row;
}
.cs-info-box.img-left .cs-info-box-img {
  margin-right: var(--icon-space);
}
.cs-info-box.img-right .cs-info-box-item .cs-item-container {
  flex-direction: row-reverse;
}
.cs-info-box.img-right .cs-info-box-img {
  margin-right: 0;
  margin-left: var(--icon-space);
}
.cs-info-box.img-top {
  --icon-space: 15px;
}
.cs-info-box.img-top .cs-info-box-item .cs-item-container {
  flex-direction: column;
}
.cs-info-box.img-top .cs-info-box-img {
  margin-bottom: var(--icon-space);
}
.cs-info-box .cs-info-box-img {
  flex: 0 0 auto;
  line-height: 0;
}
.cs-info-box .cs-info-box-img i {
  font-size: 42px;
}
.cs-info-box .cs-info-box-img svg {
  width: 42px;
  max-height: 42px;
}
.cs-info-box .cs-info-box-content {
  position: relative;
  flex: 1 1 auto;
}
.cs-info-box .cs-info-box-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
}
.cs-info-box img {
  display: block;
}
.cs-info-box.text-center img {
  margin: 0 auto;
}
.cs-info-box.text-right img {
  margin-left: auto;
}
.cs-info-box.column-1 .cs-info-box-item {
  width: 100%;
}
.cs-info-box .cs-info-box-title {
  font-size: 21px;
  font-size: 1.3125rem;
}
.cs-info-box .cs-info-box-title + .cs-info-box-text,
.cs-info-box .cs-info-box-btn {
  margin-top: 10px;
}
.cs-info-box .cs-info-box-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.35;
}
.cs-info-box .cs-info-box-text p {
  margin-bottom: 15px;
}
.cs-info-box .cs-info-box-text p:last-child {
  margin-bottom: 0;
}
.cs-team {
  position: relative;
  overflow: hidden;
}
.cs-team .cs-team-photo {
  margin-bottom: 15px;
}
.cs-team .cs-team-photo img {
  display: block;
}
.cs-team.text-left .cs-team-photo img {
  margin-right: auto;
}
.cs-team.text-center .cs-team-photo img {
  margin: 0 auto;
}
.cs-team.text-right .cs-team-photo img {
  margin-left: auto;
}
.cs-team .cs-team-position {
  display: block;
  margin-bottom: 7.5px;
}
.cs-team .cs-title.cs-team-name {
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: 15px;
}
.cs-team .cs-team-text {
  margin-bottom: 15px;
  font-size: 16px;
  font-size: 1rem;
}
.cs-team .cs-team-text p {
  margin-bottom: 15px;
}
.cs-team .cs-team-text p:last-child {
  margin-bottom: 0;
}
.cs-team .cs-team-social a {
  color: inherit;
}
.cs-team > *:last-child {
  margin-bottom: 0;
}
.cs-team.style-overlay .cs-team-photo {
  margin-bottom: 0;
}
.cs-team.style-overlay .cs-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;
}
.cs-team.style-overlay .cs-team-name {
  color: inherit;
}
.cs-list {
  --icon-v-offset: 0px;
  --list-space: 2px;
  --icon-space: 20px;
  list-style: none;
  margin: 0;
}
.cs-list li {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: var(--list-space) 0;
  line-height: 1.4;
}
.cs-list .list-icon {
  position: relative;
  top: var(--icon-v-offset);
  display: flex;
  margin-right: var(--icon-space);
}
.cs-list .list-icon svg {
  width: 1em;
  max-height: 1em;
  fill: currentColor;
}
.cs-list .list-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cs-list.with-border {
  --list-space: 12px;
  border-top: 1px solid var(--border-color);
}
.cs-list.with-border li {
  border-bottom: 1px solid var(--border-color);
}
.cs-list.cs-list-type-none .list-icon {
  display: none;
  margin: 0;
}
.cs-list.cs-list-type-ordered {
  counter-reset: item;
}
.cs-list.cs-list-type-ordered .list-icon:before {
  counter-increment: item;
}
.cs-list.type-decimal .list-icon:before {
  content: counter(item, decimal) ".";
}
.cs-list.type-decimal-leading-zero .list-icon:before {
  content: counter(item, decimal-leading-zero) ".";
}
.cs-list.type-upper-roman .list-icon:before {
  content: counter(item, upper-roman) ".";
}
.cs-list.type-lower-roman .list-icon:before {
  content: counter(item, lower-roman) ".";
}
.elementor-editor-active .cs-list a {
  pointer-events: none;
}
.elementor-align-center .cs-list li {
  justify-content: center;
}
.elementor-align-right .cs-list li {
  justify-content: flex-end;
  text-align: right;
}
.cs-open-table .field-wrap > * {
  width: 100%;
}
.cs-open-table.wide .cs-otf-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}
.cs-open-table.wide .cs-otf-wrap .cs-otf-field {
  width: 100%;
  padding: 0 16px;
  margin-bottom: 30px;
}
.cs-open-table.wide .cs-otf-wrap .cs-otf-field:last-child {
  margin-bottom: 0;
}
.cs-open-table.standard .cs-otf-wrap .cs-otf-field {
  width: 100%;
  margin-bottom: 30px;
}
.cs-open-table.standard .cs-otf-wrap .cs-otf-field:last-child {
  margin-bottom: 0;
}
.cs-open-table .field-wrap {
  position: relative;
}
.cs-open-table .cs-otf-field {
  position: relative;
}
.cs-open-table .cs-otf-field.otf-restaurant .field-wrap:after,
.cs-open-table .cs-otf-field.otf-size .field-wrap:after,
.cs-open-table .cs-otf-field.otf-date .field-wrap:after,
.cs-open-table .cs-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: 52px;
}
.cs-open-table select {
  -webkit-appearance: none !important;
}
.theme-cozystay .ui-widget.ui-widget-content.ui-datepicker {
  --dropdown-bg: #f8f5f1;
  --dropdown-color: #000;
  --dropdown-border: var(--primary-color);
  background: var(--dropdown-bg);
  color: var(--dropdown-color);
  border: 1px solid var(--dropdown-border);
  border-radius: 0;
  padding: 16px;
}
.theme-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  .ui-datepicker-header {
  padding: 0;
  border: none;
  background: none;
}
.theme-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  .ui-datepicker-title {
  line-height: 32px;
}
.theme-cozystay .ui-widget.ui-widget-content.ui-datepicker .ui-datepicker-prev,
.theme-cozystay .ui-widget.ui-widget-content.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 0;
  width: 32px;
  height: 32px;
}
.theme-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  .ui-datepicker-prev
  span,
.theme-cozystay
  .ui-widget.ui-widget-content.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-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  .ui-datepicker-prev.ui-state-hover,
.theme-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  .ui-datepicker-next.ui-state-hover {
  background: none;
  border: none;
}
.theme-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  .ui-datepicker-prev.ui-state-hover
  span,
.theme-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  .ui-datepicker-next.ui-state-hover
  span {
  border: 2px solid var(--primary-color);
}
.theme-cozystay .ui-widget.ui-widget-content.ui-datepicker .ui-datepicker-prev {
  left: 0;
}
.theme-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  .ui-datepicker-prev
  span {
  transform: scaleX(-1);
}
.theme-cozystay .ui-widget.ui-widget-content.ui-datepicker .ui-datepicker-next {
  right: 0;
}
.theme-cozystay .ui-widget.ui-widget-content.ui-datepicker table {
  border: none;
}
.theme-cozystay .ui-widget.ui-widget-content.ui-datepicker table th {
  padding: 8px 0;
  font-weight: 500;
  font-size: 12px;
}
.theme-cozystay .ui-widget.ui-widget-content.ui-datepicker table td {
  padding: 0;
}
.theme-cozystay .ui-widget.ui-widget-content.ui-datepicker table td span,
.theme-cozystay .ui-widget.ui-widget-content.ui-datepicker table td a {
  text-align: center;
}
.theme-cozystay .ui-widget.ui-widget-content.ui-datepicker table td {
  border: none;
  line-height: 2rem;
  border: 0.0625rem solid #d8d9db;
}
.theme-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  table
  .ui-state-default,
.theme-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  table
  .ui-widget-content
  .ui-state-default {
  background: #fff;
  color: #000;
  border: none;
  padding: 0;
}
.theme-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  table
  td.ui-state-disabled {
  color: #d8d9db;
  opacity: 1;
}
.theme-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  table
  td.ui-state-disabled
  .ui-state-default {
  color: inherit;
}
.theme-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  table
  td
  a.ui-state-active,
.theme-cozystay .ui-widget.ui-widget-content.ui-datepicker table td a:hover {
  position: relative;
}
.theme-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  table
  td
  a.ui-state-active:before,
.theme-cozystay
  .ui-widget.ui-widget-content.ui-datepicker
  table
  td
  a:hover:before {
  border: 2px solid var(--primary-color);
  box-sizing: border-box;
  content: "";
  height: calc(100% + 2px);
  left: 0;
  margin: -0.0625rem;
  position: absolute;
  width: calc(100% + 2px);
}
.theme-cozystay .daterangepicker {
  --dropdown-bg: #f8f5f1;
  --dropdown-color: #000;
  --dropdown-border: var(--primary-color);
  --available-bg: #fff;
  --active-bg: var(--primary-color);
  --active-color: #fff;
  --inrange-bg: #ede6dc;
  --inrange-color: var(--dropdown-color);
  --disabled-color: #d8d9db;
  --padding: 8px;
  --td-border: #d8d9db;
  --tooltip-bg: #000;
  --tooltip-color: #fff;
  --no-check-inout: rgba(0, 0, 0, 0.7);
  --hover-highlight: var(--primary-color);
  background: var(--dropdown-bg);
  color: var(--dropdown-color);
  border: 1px solid var(--dropdown-border);
  border-radius: 0;
  padding: var(--padding);
  margin-top: 12px;
}
.theme-cozystay .daterangepicker:before {
  border-bottom-color: var(--dropdown-border);
}
.theme-cozystay .daterangepicker:after {
  border-bottom-color: var(--dropdown-bg);
  -webkit-transform: translateY(0.4px);
  -ms-transform: translateY(0.4px);
  transform: translateY(0.4px);
}
.theme-cozystay .daterangepicker.opensright:before {
  left: 25px;
}
.theme-cozystay .daterangepicker.opensright:after {
  left: 26px;
}
.theme-cozystay .daterangepicker.opensleft:before {
  right: 32px;
}
.theme-cozystay .daterangepicker.opensleft:after {
  right: 33px;
}
.theme-cozystay .daterangepicker .calendar-table {
  background: none;
  border: none;
}
.theme-cozystay .daterangepicker .calendar-table table {
  border: none;
}
.theme-cozystay .daterangepicker .calendar-table th,
.theme-cozystay .daterangepicker .calendar-table td {
  position: relative;
  padding: 0;
  max-width: 100%;
  height: 36px;
  border: none;
  border-radius: 0;
}
.theme-cozystay .daterangepicker .calendar-table thead th.month {
  font-size: 16px;
  font-size: 1rem;
}
.theme-cozystay .daterangepicker .calendar-table tbody td {
  border: 0.0625rem solid var(--td-border);
}
.theme-cozystay .daterangepicker td:hover {
  z-index: 99;
}
.theme-cozystay .daterangepicker td.disabled,
.theme-cozystay .daterangepicker option.disabled {
  color: var(--disabled-color) !important;
  background: none !important;
}
.theme-cozystay .daterangepicker td.disabled:before,
.theme-cozystay
  .daterangepicker
  td.disabled:not(.maximal-stay-unavailable)
  .day-tooltip,
.theme-cozystay .daterangepicker option.disabled:before,
.theme-cozystay
  .daterangepicker
  option.disabled:not(.maximal-stay-unavailable)
  .day-tooltip {
  display: none !important;
}
.theme-cozystay .daterangepicker td.available {
  background: var(--available-bg);
}
.theme-cozystay .daterangepicker td.available:hover {
  background: var(--available-bg);
}
.theme-cozystay
  .daterangepicker
  td.no-checkin:not(.off):not(.active):not(.in-range),
.theme-cozystay
  .daterangepicker
  td.no-checkout:not(.off):not(.active):not(.in-range) {
  color: var(--no-check-inout);
}
.theme-cozystay .daterangepicker td.in-range {
  background: var(--inrange-bg);
  color: var(--inrange-color);
}
.theme-cozystay .daterangepicker td.active {
  background: var(--active-bg);
  color: var(--active-color);
}
.theme-cozystay .daterangepicker td.active:hover {
  background: var(--available-bg);
  color: var(--dropdown-color);
}
.theme-cozystay .daterangepicker td.active,
.theme-cozystay .daterangepicker td.in-range,
.theme-cozystay .daterangepicker td.available:hover {
  position: relative;
}
.theme-cozystay .daterangepicker td.active:before,
.theme-cozystay .daterangepicker td.in-range:before,
.theme-cozystay .daterangepicker td.available:hover:before {
  position: absolute;
  top: 0;
  left: 0;
  margin: -0.0625rem;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 2px solid;
  box-sizing: border-box;
  content: "";
}
.theme-cozystay .daterangepicker td.in-range:before {
  border-color: var(--inrange-bg);
}
.theme-cozystay .daterangepicker td.in-range.off:before {
  border-color: transparent;
}
.theme-cozystay .daterangepicker td.active:before {
  border-color: var(--active-bg);
}
.theme-cozystay .daterangepicker td.available:hover:before {
  border-color: var(--hover-highlight);
}
.theme-cozystay .daterangepicker td.active.off:not(:hover):before {
  border-color: transparent;
}
.theme-cozystay .daterangepicker th.available:hover {
  background: none;
}
.theme-cozystay .daterangepicker th.prev,
.theme-cozystay .daterangepicker th.next {
  position: relative;
}
.theme-cozystay .daterangepicker th.prev span,
.theme-cozystay .daterangepicker th.next span {
  border-color: var(--dropdown-color);
}
.theme-cozystay .daterangepicker th.prev:before,
.theme-cozystay .daterangepicker th.prev:after,
.theme-cozystay .daterangepicker th.next:before,
.theme-cozystay .daterangepicker th.next:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 1px 0 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
}
.theme-cozystay .daterangepicker th.prev:before,
.theme-cozystay .daterangepicker th.next:before {
  border: 0.0625rem solid var(--td-border);
}
.theme-cozystay .daterangepicker th.prev:after,
.theme-cozystay .daterangepicker th.next:after {
  border: 2px solid var(--hover-highlight);
  opacity: 0;
}
.theme-cozystay .daterangepicker th.prev:hover:before,
.theme-cozystay .daterangepicker th.next:hover:before {
  opacity: 0;
}
.theme-cozystay .daterangepicker th.prev:hover:after,
.theme-cozystay .daterangepicker th.next:hover:after {
  opacity: 1;
}
.theme-cozystay .daterangepicker th.prev span,
.theme-cozystay .daterangepicker th.next span {
  padding: 2px;
}
.theme-cozystay .daterangepicker th.prev:before,
.theme-cozystay .daterangepicker th.prev:after {
  margin-left: -1px;
}
.theme-cozystay .daterangepicker .day-tooltip {
  position: absolute;
  top: 1px;
  left: 50%;
  z-index: 999;
  -webkit-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  display: block;
  width: fit-content;
  height: auto;
  padding: 2px 6px;
  background: var(--tooltip-bg);
  color: var(--tooltip-color);
  font-size: 10px;
  font-size: 0.625rem;
  border-radius: 2px;
  pointer-events: none;
}
.theme-cozystay .daterangepicker .day-tooltip:after {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  background: var(--tooltip-bg);
  content: "";
  bottom: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.elementor-widget-cs_reservation .elementor-widget-container {
  position: relative;
}
.cs-reservation-form {
  --field-height: 48px;
  --field-space: 30px;
  --dropdown-bg: #f8f5f1;
  --dropdown-color: #000;
  --dropdown-border: var(--primary-color);
  --icon-color: var(--primary-color);
  --divider-color: var(--primary-color);
}
.cs-reservation-form .cs-form-field .field-wrap,
.cs-reservation-form .cs-form-field .field-input-wrap {
  position: relative;
}
.cs-reservation-form .cs-form-field:not(.cs-submit) .field-input-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: 20px;
  line-height: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  opacity: 0.35;
}
.cs-reservation-form .cs-form-label {
  display: block;
}
.cs-reservation-form .cs-form-label .csf-item-description {
  display: block;
  margin-top: -2px;
  font-family: var(--body-font);
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  opacity: 0.5;
}
.cs-reservation-form .field-wrap > .cs-form-label {
  color: var(--text-color);
}
.cs-reservation-form input[type="text"],
.cs-reservation-form input[type="email"],
.cs-reservation-form input[type="url"],
.cs-reservation-form input[type="file"],
.cs-reservation-form input[type="password"],
.cs-reservation-form input[type="number"],
.cs-reservation-form input[type="date"],
.cs-reservation-form input[type="search"],
.cs-reservation-form input[type="tel"],
.cs-reservation-form textarea,
.cs-reservation-form select {
  height: var(--field-height);
  font-size: 14px;
  font-size: 0.875rem;
}
.cs-reservation-form select {
  -webkit-appearance: none !important;
  width: 100%;
}
.cs-reservation-form button[type="submit"] {
  padding: 0 15px;
  width: 100%;
  height: var(--field-height);
  line-height: 1.2;
  text-align: center;
}
.cs-reservation-form.style-block .cs-form-wrap {
  font-size: 0;
}
.cs-reservation-form.style-block .cs-form-field:not(:first-child) {
  padding-top: var(--field-space);
}
.cs-reservation-form.style-block .form-field-col-1-2 {
  display: inline-block;
  width: 50%;
}
.cs-reservation-form.style-block .form-field-col-1-2.cs-adults {
  padding-right: calc(var(--field-space) / 2);
}
.cs-reservation-form.style-block .form-field-col-1-2.cs-children {
  padding-left: calc(var(--field-space) / 2);
}
.cs-reservation-form.style-block .form-field-col-1-2 .csf-dropdown {
  padding: 15px;
}
.cs-reservation-form.style-block
  .form-field-col-1-2
  .csf-dropdown
  .csf-dropdown-item {
  flex-wrap: wrap;
}
.cs-reservation-form.style-block
  .form-field-col-1-2
  .csf-dropdown
  .cs-form-label {
  display: none;
}
.cs-reservation-form.style-block
  .form-field-col-1-2
  .csf-dropdown
  .csf-dropdown-item {
  justify-content: center;
}
.cs-reservation-form.style-block .csf-dropdown {
  min-width: 100px;
  width: 100%;
}
.cs-reservation-form.style-block:not(.inline-label) .csf-item-description {
  margin-bottom: 5px;
}
.cs-reservation-form.style-block
  .cs-form-field.cs-has-age-text
  .csf-item-description {
  position: absolute;
  font-size: 12px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}
.cs-reservation-form.style-block .cs-form-field.cs-has-age-text .cs-form-label {
  transition: top 0.3s;
}
.cs-reservation-form.style-block
  .cs-form-field.cs-has-age-text.loftocean-highlighted
  .csf-item-description {
  opacity: 0.5;
}
.cs-reservation-form.style-block
  .cs-form-field.cs-has-age-text.loftocean-highlighted
  .cs-form-label {
  top: calc(50% - 6px);
}
.cs-reservation-form.style-banner .cs-form-wrap {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 calc(0px - var(--field-space) / 2);
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.cs-reservation-form.style-banner .cs-form-wrap .cs-form-field {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding: 0 calc(var(--field-space) / 2);
}
.cs-reservation-form.style-banner button[type="submit"] {
  padding: 0 15px;
  text-align: center;
  width: 100%;
}
.cs-reservation-form.style-banner.style-banner-4 {
  --field-space: 15px;
}
.cs-reservation-form.style-banner.style-banner-4 .cs-form-wrap {
  flex-wrap: wrap;
}
.cs-reservation-form.style-banner.style-banner-4 .cs-form-field {
  display: block;
  width: 50%;
  margin-top: var(--field-space);
}
.cs-reservation-form.style-banner.style-banner-4
  .cs-form-field:nth-child(-n + 2) {
  margin-top: 0;
}
.cs-reservation-form.style-banner.style-banner-4
  .cs-form-field.cs-submit:nth-child(5) {
  width: 100%;
}
.cs-reservation-form.style-banner-2 {
  --field-space: 40px;
}
.cs-reservation-form.style-banner-2 .cs-form-wrap {
  margin: 0;
  align-items: center;
}
.cs-reservation-form.style-banner-2
  .cs-form-wrap
  .cs-form-field:not(.cs-submit) {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.cs-reservation-form.style-banner-2 .cs-form-wrap .field-wrap {
  flex: 1 1 auto;
}
.cs-reservation-form.style-banner-2 .cs-form-wrap .cs-form-field {
  padding-left: 0;
  padding-right: 0;
}
.cs-reservation-form.style-banner-2 .cs-form-wrap .cs-form-field.cs-check-out,
.cs-reservation-form.style-banner-2 .cs-form-wrap .cs-form-field.cs-guests {
  padding-left: var(--field-space);
}
.cs-reservation-form.style-banner-2 .cs-form-icon {
  width: 20px;
  height: 25px;
  margin-right: 25px;
}
.cs-reservation-form.style-banner-2 .cs-form-icon svg {
  width: 20px;
  height: auto;
}
.cs-reservation-form.style-banner-2 .cs-form-icon svg path {
  fill: var(--icon-color);
}
.cs-reservation-form.style-banner-2 .cs-form-field.cs-guests .cs-form-icon,
.cs-reservation-form.style-banner-2 .cs-form-field.cs-guests .cs-form-icon svg {
  width: 25px;
}
.cs-reservation-form.style-banner-2
  .cs-form-field:not(.cs-submit)
  .field-input-wrap:after {
  display: none;
}
.cs-reservation-form.style-banner-2 .cs-form-field:not(.cs-submit):after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  display: block;
  width: 1px;
  height: 56px;
  background: var(--divider-color);
  content: "";
}
.cs-reservation-form.style-banner-2 .cs-form-field.cs-guests:after {
  display: none;
}
.cs-reservation-form.style-banner-2 .field-wrap > .cs-form-label {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
}
.cs-reservation-form.style-banner-2 input[type="text"],
.cs-reservation-form.style-banner-2 input[type="email"],
.cs-reservation-form.style-banner-2 input[type="url"],
.cs-reservation-form.style-banner-2 input[type="file"],
.cs-reservation-form.style-banner-2 input[type="password"],
.cs-reservation-form.style-banner-2 input[type="number"],
.cs-reservation-form.style-banner-2 input[type="date"],
.cs-reservation-form.style-banner-2 input[type="search"],
.cs-reservation-form.style-banner-2 input[type="tel"],
.cs-reservation-form.style-banner-2 textarea,
.cs-reservation-form.style-banner-2 select {
  padding: 0;
  height: auto;
  border: none;
  line-height: 1.2;
}
.cs-reservation-form.style-banner-2 button[type="submit"] {
  min-height: 56px;
  font-size: 18px;
  font-size: 1.125rem;
}
.cs-reservation-form.style-banner-2 .date-range-picker {
  bottom: 0;
}
.cs-reservation-form.style-banner-2.inline-label {
  --field-space: 60px;
}
.cs-reservation-form.style-banner-2.inline-label .cs-form-icon {
  margin-right: 15px;
}
.cs-reservation-form.style-banner-2.inline-label .cs-form-label {
  left: 0;
}
.cs-reservation-form.style-banner-2.inline-label
  .cs-form-field:not(.cs-submit):after {
  right: 0;
}
.cs-reservation-form.style-banner-2.inline-label .cs-form-field.cs-check-in,
.cs-reservation-form.style-banner-2.inline-label .cs-form-field.cs-check-out {
  width: 23%;
}
.cs-reservation-form.style-banner-2.inline-label .cs-form-field.cs-guests {
  width: 30%;
}
.cs-reservation-form.style-banner-2.inline-label .cs-form-field.cs-submit {
  width: 24%;
}
.cs-reservation-form.style-banner-3 {
  --field-height: 60px;
  --field-space: 0px;
  --btn-radius: 0px;
}
.cs-reservation-form.style-banner-3 .cs-form-wrap {
  margin: 0 5px;
}
.cs-reservation-form.style-banner-3 .cs-form-wrap:before {
  position: absolute;
  top: 5px;
  left: -5px;
  display: block;
  width: calc(100% + 10px);
  height: calc(100% - 10px);
  border: 1px solid var(--form-bd);
  content: "";
  pointer-events: none;
}
.cs-reservation-form.style-banner-3 .cs-form-wrap .cs-form-field {
  padding: 0;
}
.cs-reservation-form.style-banner-3 .cs-form-wrap .button {
  background: none;
  color: inherit;
  border: 1px solid var(--form-bd);
}
.cs-reservation-form.style-banner-3 .cs-form-field.cs-check-out input:focus {
  border-color: var(--form-bd);
}
.cs-reservation-form.inline-label .field-wrap > .cs-form-label {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
}
.cs-reservation-form.inline-label .field-input-wrap > * {
  text-align: right;
  padding-right: 35px;
}
.cs-reservation-form.inline-label.cs-form-underline
  .field-wrap
  > .cs-form-label {
  left: 0;
}
.cs-reservation-form.inline-label.cs-form-underline .field-input-wrap > * {
  padding-right: 25px;
}
.cs-reservation-form.inline-label.cs-form-underline
  .cs-form-field:not(.cs-submit)
  .field-input-wrap:after {
  right: 0;
}
.cs-reservation-form.hide-label .field-wrap > .cs-form-label {
  display: none;
}
.cs-reservation-form .csf-dropdown {
  position: absolute;
  bottom: -12px;
  left: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  z-index: -1;
  display: block;
  min-width: 320px;
  background: var(--dropdown-bg);
  color: var(--dropdown-color);
  border: 1px solid var(--dropdown-border);
  padding: 30px;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cs-reservation-form .csf-dropdown.is-open {
  z-index: 999;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.cs-reservation-form .csf-dropdown .csf-dropdown-item,
.cs-reservation-form .csf-dropdown .cs-quantity {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cs-reservation-form .csf-dropdown .csf-dropdown-item:not(:last-child) {
  margin-bottom: 15px;
}
.cs-reservation-form .csf-dropdown .cs-quantity .input-text {
  padding: 0;
  margin: 0;
  width: 40px;
  height: auto;
  background: none;
  border: none;
  text-align: center;
  color: inherit;
  font-size: 16px;
  line-height: 1.2;
}
.cs-reservation-form .csf-dropdown .cs-quantity .minus,
.cs-reservation-form .csf-dropdown .cs-quantity .plus {
  position: relative;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  width: 30px;
  height: 30px;
  padding: 0;
  color: inherit;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}
.cs-reservation-form .csf-dropdown .cs-quantity .minus:before,
.cs-reservation-form .csf-dropdown .cs-quantity .minus:after,
.cs-reservation-form .csf-dropdown .cs-quantity .plus:before,
.cs-reservation-form .csf-dropdown .cs-quantity .plus:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  background: currentColor;
}
.cs-reservation-form .csf-dropdown .cs-quantity .minus:before,
.cs-reservation-form .csf-dropdown .cs-quantity .plus:before {
  width: 12px;
  height: 1px;
}
.cs-reservation-form .csf-dropdown .cs-quantity .minus.disabled,
.cs-reservation-form .csf-dropdown .cs-quantity .plus.disabled {
  cursor: not-allowed;
}
.cs-reservation-form .csf-dropdown .cs-quantity .minus.disabled:before,
.cs-reservation-form .csf-dropdown .cs-quantity .minus.disabled:after,
.cs-reservation-form .csf-dropdown .cs-quantity .plus.disabled:before,
.cs-reservation-form .csf-dropdown .cs-quantity .plus.disabled:after {
  opacity: 0.3;
}
.cs-reservation-form .csf-dropdown .cs-quantity .minus.disabled:hover span,
.cs-reservation-form .csf-dropdown .cs-quantity .plus.disabled:hover span {
  opacity: 1;
  visibility: visible;
}
.cs-reservation-form .csf-dropdown .cs-quantity .minus.cs-hint:hover span,
.cs-reservation-form .csf-dropdown .cs-quantity .plus.cs-hint:hover span {
  opacity: 1;
  visibility: visible;
}
.cs-reservation-form .csf-dropdown .cs-quantity .minus .cs-btn-tooltip,
.cs-reservation-form .csf-dropdown .cs-quantity .plus .cs-btn-tooltip {
  display: block;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.1s;
}
.cs-reservation-form .csf-dropdown .cs-quantity .minus .cs-btn-tooltip:before,
.cs-reservation-form .csf-dropdown .cs-quantity .plus .cs-btn-tooltip:before {
  position: absolute;
  top: 40px;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  z-index: 999;
  display: block;
  padding: 5px 8px;
  background-color: var(--text-color);
  border-radius: 4px;
  color: var(--bg-color);
  content: attr(data-title);
  font-family: sans-serif;
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
}
.cs-reservation-form .csf-dropdown .cs-quantity .minus .cs-btn-tooltip:after,
.cs-reservation-form .csf-dropdown .cs-quantity .plus .cs-btn-tooltip:after {
  position: absolute;
  top: 36px;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 4px solid var(--text-color);
  content: "";
}
.cs-reservation-form .csf-dropdown .cs-quantity .plus:after {
  width: 1px;
  height: 12px;
}
.cs-reservation-form .csf-dropdown:before,
.cs-reservation-form .csf-dropdown:after {
  position: absolute;
  content: "";
}
.cs-reservation-form .csf-dropdown:before {
  top: -7px;
  left: 25px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid var(--dropdown-border);
}
.cs-reservation-form .csf-dropdown:after {
  top: -6px;
  left: 26px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--dropdown-bg);
  border-left: 6px solid transparent;
  -webkit-transform: translateY(0.4px);
  -ms-transform: translateY(0.4px);
  transform: translateY(0.4px);
}
.cs-reservation-form .date-range-picker {
  position: absolute;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
.cs-reservation-form .cs-form-field-group {
  position: relative;
}
.cs-reservation-form .cs-form-field-group .cs-form-field-group-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--field-height);
  padding: 0 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: 14px;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 400;
  transition: 0.3s;
  -webkit-appearance: none;
}
.cs-reservation-form .cs-form-field-group .cs-form-field-group-inner: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: 20px;
  line-height: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  opacity: 0.35;
}
.cs-reservation-form
  .cs-form-field-group
  .cs-form-field-group-inner
  .cs-form-field,
.cs-reservation-form .cs-form-field-group .cs-form-field-group-inner span {
  padding: 0;
}
.cs-reservation-form
  .cs-form-field-group
  .cs-form-field-group-inner
  .field-input-wrap:after {
  display: none;
}
.cs-reservation-form
  .cs-form-field-group
  .cs-form-field-group-inner
  input[type="text"] {
  padding: 0;
  width: 70px;
  border: none;
}
.cs-reservation-form
  .cs-form-field-group
  .cs-form-field-group-inner
  .date-separator {
  position: relative;
  margin: 0 5px;
  width: 8px;
  height: 1px;
  background: var(--text-color);
  opacity: 0.5;
}
.cs-reservation-form.inline-label .cs-form-field-group > .cs-form-label {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
}
.cs-reservation-form.inline-label
  .cs-form-field-group
  .cs-form-field-group-inner {
  justify-content: flex-end;
  padding-right: 35px;
  text-align: right;
}
.cs-reservation-form .loftocean-highlighted input,
.cs-reservation-form
  .cs-form-field-group.loftocean-highlighted
  .cs-form-field-group-inner {
  border-color: var(--form-bd-focus);
}
.elementor-widget-cs_signup.elementor-align-left form {
  margin-right: auto;
  margin-left: 0;
}
.elementor-widget-cs_signup.elementor-align-center form {
  margin-right: auto;
  margin-left: auto;
}
.elementor-widget-cs_signup.elementor-align-right form {
  margin-right: 0;
  margin-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;
}
.cs-parallax-on-scroll.e-con:before {
  z-index: 1;
}
.cs-parallax-on-scroll.e-con .parallax-img-container ~ *,
.cs-parallax-on-scroll.e-con .e-con-inner,
.cs-parallax-on-scroll.e-con > .e-con {
  z-index: 9;
}
.fadeInUp.cs-animation-small-offset {
  animation-name: fadeInUpSmall;
}
.fadeInUp.cs-animation-medium-offset {
  animation-name: fadeInUpMedium;
}
.fadeInUp.cs-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.cs-animation-small-offset {
  animation-name: fadeInDownSmall;
}
.fadeInDown.cs-animation-medium-offset {
  animation-name: fadeInDownMedium;
}
.fadeInDown.cs-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.cs-animation-small-offset {
  animation-name: fadeInLeftSmall;
}
.fadeInLeft.cs-animation-medium-offset {
  animation-name: fadeInLeftMedium;
}
.fadeInLeft.cs-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.cs-animation-small-offset {
  animation-name: fadeInRightSmall;
}
.fadeInRight.cs-animation-medium-offset {
  animation-name: fadeInRightMedium;
}
.fadeInRight.cs-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;
  }
}
.elementor-tab-title .elementor-toggle-icon .fa:before,
.elementor-tab-title .elementor-toggle-icon .fas:before,
.elementor-tab-title .elementor-accordion-icon .fa:before,
.elementor-tab-title .elementor-accordion-icon .fas:before {
  font-size: 12px;
  vertical-align: middle;
}
.elementor-widget-icon-box.elementor-position-left.elementor-vertical-align-middle
  .elementor-icon-box-wrapper,
.elementor-widget-icon-box.elementor-position-right.elementor-vertical-align-middle
  .elementor-icon-box-wrapper {
  align-items: center;
}
.elementor-widget-icon-box.elementor-position-left.elementor-vertical-align-middle
  .elementor-icon-box-icon,
.elementor-widget-icon-box.elementor-position-right.elementor-vertical-align-middle
  .elementor-icon-box-icon {
  display: inline-flex;
}
@media screen and (min-width: 480px) {
  .cs-gallery.gallery-carousel > .cs-gallery-wrap > .cs-gallery-item {
    width: 50%;
  }
  .cs-gallery.gallery-carousel[data-column="1"]
    > .cs-gallery-wrap
    > .cs-gallery-item {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .cs-open-table.wide .cs-otf-wrap .cs-otf-field {
    width: 50%;
  }
  .cs-open-table.wide .cs-otf-wrap .cs-otf-field:nth-child(3) {
    margin-bottom: 0;
  }
  .cs-info-box.column-2 .cs-info-box-item,
  .cs-info-box.column-3 .cs-info-box-item,
  .cs-info-box.column-4 .cs-info-box-item,
  .cs-info-box.column-5 .cs-info-box-item,
  .cs-info-box.column-6 .cs-info-box-item {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  h1.cs-title {
    font-size: 72px;
    font-size: 4.5rem;
  }
  h2.cs-title {
    font-size: 42px;
    font-size: 2.625rem;
  }
  h3.cs-title {
    font-size: 36px;
    font-size: 2.25rem;
  }
  h4.cs-title {
    font-size: 32px;
    font-size: 2rem;
  }
  h5.cs-title {
    font-size: 28px;
    font-size: 1.75rem;
  }
  h6.cs-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .cs-food-menu.food-menu-style-5 {
    display: flex;
    flex-wrap: wrap;
  }
  .cs-food-menu.food-menu-style-5.column-2 .cs-food-menu-item,
  .cs-food-menu.food-menu-style-5.column-4 .cs-food-menu-item {
    width: 50%;
  }
  .cs-food-menu.food-menu-style-5.column-3 .cs-food-menu-item {
    width: 33.3333%;
  }
  .cs-instagram.column-6 ul {
    grid-template-columns: repeat(6, 1fr);
  }
  .cs-instagram.column-7 ul {
    grid-template-columns: repeat(7, 1fr);
  }
  .cs-instagram.column-8 ul {
    grid-template-columns: repeat(8, 1fr);
  }
  .cs-instagram.column-mosaic ul {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .cs-instagram.column-mosaic ul li:first-child {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }
  .cs-instagram.column-mosaic ul li:nth-child(4) {
    grid-column: 5 / span 2;
    grid-row: 1 / span 2;
  }
  .cs-instagram.column-mosaic ul li:nth-child(9) {
    grid-column: 3 / span 2;
    grid-row: 3 / span 2;
  }
  .cs-instagram.column-mosaic.mosaic-2 ul li:first-child {
    grid-row: 1 / 2;
  }
  .cs-instagram.column-mosaic.mosaic-2 ul li:nth-child(2) {
    grid-column: 3 / span 2;
    grid-row: 1 / span 2;
  }
  .cs-instagram.column-mosaic.mosaic-2 ul li:nth-child(4) {
    grid-column: 5 / span 1;
    grid-row: 1 / span 1;
  }
  .cs-instagram.column-mosaic.mosaic-2 ul li:nth-child(7) {
    grid-column: 5 / span 2;
    grid-row: 2 / 3;
  }
  .cs-instagram.column-mosaic.mosaic-2 ul li:first-child .feed-bg,
  .cs-instagram.column-mosaic.mosaic-2 ul li:nth-child(7) .feed-bg,
  .cs-instagram.column-mosaic.mosaic-2 ul li:nth-child(12) .feed-bg {
    padding-top: 50%;
  }
  .cs-instagram.column-mosaic.mosaic-2 ul li:nth-child(8) {
    grid-column: 1 / span 2;
    grid-row: 3 / span 2;
  }
  .cs-instagram.column-mosaic.mosaic-2 ul li:nth-child(9) {
    grid-column: revert;
    grid-row: revert;
  }
  .cs-instagram.column-mosaic.mosaic-2 ul li:nth-child(11) {
    grid-column: 5 / span 2;
    grid-row: 3 / span 2;
  }
  .cs-instagram.column-mosaic.mosaic-2 ul li:nth-child(12) {
    grid-column: 3 / span 2;
    grid-row: 4 / 5;
  }
  .cs-instagram.column-mosaic.mosaic-2.small-gap ul li:first-child .feed-bg,
  .cs-instagram.column-mosaic.mosaic-2.small-gap ul li:nth-child(7) .feed-bg,
  .cs-instagram.column-mosaic.mosaic-2.small-gap ul li:nth-child(12) .feed-bg {
    padding-top: calc(50% - 2px);
  }
  .cs-block-links {
    flex-wrap: nowrap;
  }
  .cs-block-links .cs-bl-item {
    width: 50%;
  }
  .no-touch .cs-block-links .cs-bl-item:hover {
    width: 60%;
  }
  .cs-block-links .cs-bl-item-inner {
    padding: 100px 40px;
  }
  .cs-block-links.height-full .cs-bl-item {
    height: 100vh;
  }
  .cs-countdown .countdown-amount {
    font-size: 60px;
    font-size: 3.75rem;
  }
  .cs-countdown .countdown-period {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .cs-gallery.gallery-carousel[data-column="3"]
    > .cs-gallery-wrap
    > .cs-gallery-item,
  .cs-gallery.gallery-carousel[data-column="4"]
    > .cs-gallery-wrap
    > .cs-gallery-item,
  .cs-gallery.gallery-carousel[data-column="5"]
    > .cs-gallery-wrap
    > .cs-gallery-item,
  .cs-gallery.gallery-carousel[data-column="6"]
    > .cs-gallery-wrap
    > .cs-gallery-item {
    width: 33.3333%;
  }
  .info-box-carousel:not([data-column="1"])
    > .cs-info-box-wrap
    > .cs-info-box-item {
    width: 50%;
  }
  .cs-testimonials.testimonials-grid.grid-col-2 .cs-testimonial {
    width: 50%;
  }
  .cs-testimonials.testimonials-grid.grid-col-2 .cs-testimonial-content {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .cs-testimonials.testimonials-grid.grid-col-3 .cs-testimonial {
    width: 33.33%;
  }
  .cs-testimonials.testimonials-slider[data-column="2"] .cs-ts-item {
    width: 50%;
  }
  .cs-testimonials.testimonials-slider[data-column="2"]
    .cs-testimonial-content {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .cs-testimonials.testimonials-slider[data-column="2"]
    > .cs-ts-wrap
    > .cs-ts-item:nth-child(-n + 2) {
    display: block;
  }
  .cs-testimonials.testimonials-slider[data-column="3"] .cs-ts-item {
    width: 33.33%;
  }
  .cs-testimonials.testimonials-slider[data-column="3"]
    > .cs-ts-wrap
    > .cs-ts-item:nth-child(-n + 3) {
    display: block;
  }
  .cs-testimonials.testimonials-slider[data-column="2"]
    .cs-ts-wrap:not(.slick-initialized),
  .cs-testimonials.testimonials-slider[data-column="3"]
    .cs-ts-wrap:not(.slick-initialized) {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .cs-open-table.wide .cs-otf-wrap .cs-otf-field {
    width: 25%;
    margin-bottom: 0;
  }
  .cs-open-table.wide.multi-restaurants .cs-otf-wrap .cs-otf-field {
    width: 20%;
  }
  .cs-food-menu.food-menu-style-5.column-4 .cs-food-menu-item {
    width: 25%;
  }
  .cs-countdown .countdown-amount {
    font-size: 80px;
    font-size: 5rem;
  }
  .cs-countdown .countdown-period {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .cs-gallery.gallery-carousel[data-column="4"]
    > .cs-gallery-wrap
    > .cs-gallery-item,
  .info-box-carousel[data-column="4"] > .cs-info-box-wrap > .cs-info-box-item {
    width: 25%;
  }
  .cs-gallery.gallery-carousel[data-column="5"]
    > .cs-gallery-wrap
    > .cs-gallery-item,
  .info-box-carousel[data-column="5"] > .cs-info-box-wrap > .cs-info-box-item {
    width: 20%;
  }
  .cs-gallery.gallery-carousel[data-column="6"]
    > .cs-gallery-wrap
    > .cs-gallery-item,
  .info-box-carousel[data-column="6"] > .cs-info-box-wrap > .cs-info-box-item {
    width: 16.6666%;
  }
  .info-box-carousel[data-column="3"] > .cs-info-box-wrap > .cs-info-box-item {
    width: 33.3333%;
  }
  .cs-info-box.column-3 .cs-info-box-item {
    width: 33.3333%;
  }
  .cs-info-box.column-4 .cs-info-box-item {
    width: 25%;
  }
  .cs-info-box.column-5 .cs-info-box-item {
    width: 20%;
  }
  .cs-info-box.column-6 .cs-info-box-item {
    width: 16.6666%;
  }
  .cs-fancy-card.style-1.layout-row .cs-fc-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cs-fancy-card.style-1.layout-row .cs-fc-wrap .cs-fc-img,
  .cs-fancy-card.style-1.layout-row .cs-fc-wrap .cs-fc-content {
    min-height:450px;
  }
  .cs-fancy-card.style-1.layout-row .cs-fc-wrap .cs-fc-img {
    display: flex;
    align-items: center;
  }
  .cs-fancy-card.style-1.layout-row .cs-fc-wrap .cs-fc-img img {
    z-index: 9;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cs-fancy-card.style-1.layout-row.order-reverse .cs-fc-img {
    order: 9;
  }
}
@media screen and (min-width: 1025px) {
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:not(:last-child)
    input {
    border-right-width: 0px;
  }
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field.loftocean-highlighted:after {
    position: absolute;
    top: 0;
    right: -1px;
    z-index: 99;
    width: 1px;
    height: 100%;
    background: var(--form-bd-focus);
    content: "";
    pointer-events: none;
  }
}
@media screen and (min-width: 1200px) {
  h1.cs-title {
    font-size: 80px;
    font-size: 5rem;
  }
  h2.cs-title {
    font-size: 60px;
    font-size: 3.75rem;
  }
  h3.cs-title {
    font-size: 49px;
    
  }
  h4.cs-title {
    font-size: 42px;
    font-size: 2.625rem;
  }
  h5.cs-title {
    font-size: 36px;
    font-size: 2.25rem;
  }
  h6.cs-title {
    font-size: 32px;
    font-size: 2rem;
  }
  .cs-block-links .cs-bl-item-inner {
    padding: 180px 80px;
  }
  .site-content[class*="with-sidebar-"] .cs-section-content-fullwidth {
    width: 100%;
    left: auto;
  }
  .elementor-section-full_width .cs-gallery .slick-arrow.slick-prev {
    left: 65px;
  }
  .elementor-section-full_width .cs-gallery .slick-arrow.slick-next {
    right: 65px;
  }
}
@media screen and (max-width: 1024px) {
  .cs-title-wrap.text-left-tablet,
  .elementor-widget-cs_signup.elementor-tablet-align-left form
	 {
    margin-right: auto;
    margin-left: 0;
  }
  .cs-title-wrap.text-center-tablet,
  .elementor-widget-cs_signup.elementor-tablet-align-center form {
    margin-right: auto;
    margin-left: auto;
  }
  .cs-title-wrap.text-right-tablet,
  .elementor-widget-cs_signup.elementor-tablet-align-right form {
    margin-right: 0;
    margin-left: auto;
  }
  .cs-instagram .cs-instagram-title {
    width: 150px;
    height: 150px;
    font-size: 18px;
    font-size: 1.125rem;
  }
  ul.social-nav.text-left-tablet,
  .text-left-tablet ul.social-nav {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  ul.social-nav.text-center-tablet,
  .text-center-tablet ul.social-nav {
    -webkit-justify-content: center;
    justify-content: center;
  }
  ul.social-nav.text-right-tablet,
  .text-right-tablet ul.social-nav {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .cs-menu.text-left-tablet .menu {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cs-menu.text-center-tablet .menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cs-menu.text-right-tablet .menu {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .cs-reservation-form.style-banner .cs-form-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cs-reservation-form.style-banner .cs-form-wrap .cs-form-field {
    display: block;
    width: 50%;
  }
  .cs-reservation-form.style-banner .cs-form-wrap .cs-form-field {
    margin-top: var(--field-space);
  }
  .cs-reservation-form.style-banner
    .cs-form-wrap
    .cs-form-field:nth-child(-n + 2) {
    margin-top: 0;
  }
  .cs-reservation-form.style-banner
    .cs-form-wrap
    .cs-form-field.cs-submit:nth-child(5) {
    width: 100%;
  }
  .cs-reservation-form.style-banner .cs-form-wrap .csf-dropdown {
    min-width: 100%;
  }
  .cs-reservation-form.style-banner.style-banner-2 {
    --field-space: 20px;
  }
  .cs-reservation-form.style-banner.style-banner-2
    .cs-form-wrap
    .cs-form-field {
    width: 100%;
  }
  .cs-reservation-form.style-banner.style-banner-2
    .cs-form-wrap
    .cs-form-field.cs-check-in,
  .cs-reservation-form.style-banner.style-banner-2
    .cs-form-wrap
    .cs-form-field.cs-check-out {
    padding-bottom: var(--field-space);
  }
  .cs-reservation-form.style-banner.style-banner-2
    .cs-form-wrap
    .cs-form-field.cs-check-in:after,
  .cs-reservation-form.style-banner.style-banner-2
    .cs-form-wrap
    .cs-form-field.cs-check-out:after {
    top: auto;
    right: 0;
    bottom: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 100%;
    height: 1px;
  }
  .cs-reservation-form.style-banner.style-banner-2
    .cs-form-wrap
    .cs-form-field:nth-child(-n + 2) {
    margin-top: var(--field-space);
  }
  .cs-reservation-form.style-banner.style-banner-2
    .cs-form-wrap
    .cs-form-field.cs-check-out,
  .cs-reservation-form.style-banner.style-banner-2
    .cs-form-wrap
    .cs-form-field.cs-guests {
    padding-left: 0;
  }
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(2n + 1)
    input {
    border-right-width: 0px;
  }
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(1)
    input,
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(2)
    input {
    padding-top: 10px;
  }
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(1)
    .field-wrap
    > .cs-form-label,
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(1)
    .field-input-wrap:after,
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(2)
    .field-wrap
    > .cs-form-label,
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(2)
    .field-input-wrap:after {
    margin-top: 2px;
  }
  .cs-reservation-form.style-banner-3 .cs-form-wrap input {
    border-bottom-width: 0px;
  }
  .cs-reservation-form.style-banner-3 .cs-form-wrap .button {
    padding-bottom: 2px;
  }
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field.loftocean-highlighted:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    border-width: 0;
    border-style: solid;
    border-color: var(--form-bd-focus);
    content: "";
    pointer-events: none;
  }
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(1).loftocean-highlighted:after {
    border-width: 0 1px 1px 0;
  }
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(2).loftocean-highlighted:after,
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(4).loftocean-highlighted:after {
    width: 100%;
    border-width: 0 0 1px 0;
  }
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(3).loftocean-highlighted:after {
    height: 100%;
    border-width: 0 1px 0 0;
  }
  .cs-info-box.tablet-column-1 .cs-info-box-item {
    width: 100%;
  }
  .cs-info-box.tablet-column-2 .cs-info-box-item {
    width: 50%;
  }
  .cs-info-box.tablet-column-3 .cs-info-box-item {
    width: 33.3333%;
  }
  .cs-info-box.tablet-column-4 .cs-info-box-item {
    width: 25%;
  }
  .cs-info-box.tablet-column-5 .cs-info-box-item {
    width: 20%;
  }
  .cs-info-box.tablet-column-6 .cs-info-box-item {
    width: 16.6666%;
  }
  .elementor-tablet-align-right .cs-list li {
    justify-content: flex-start;
    text-align: left;
  }
  .elementor-tablet-align-center .cs-list li {
    justify-content: center;
  }
  .elementor-tablet-align-right .cs-list li {
    justify-content: flex-end;
    text-align: right;
  }
  .elementor-widget-cs_button.elementor-tablet-align-justify .button {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 1023px) {
  .cs-open-table.wide .cs-otf-wrap .cs-otf-field.otf-submit:nth-child(5) {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(3):nth-last-child(3)
    input {
    border-bottom-width: 1px;
  }
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field.cs-rooms.loftocean-highlighted:after {
    height: calc(100% + 1px);
    border-width: 0 1px 1px 0;
  }
}
@media screen and (max-width: 767px) {
  .cs-title-wrap.text-left-mobile,
  .elementor-widget-cs_signup.elementor-mobile-align-left form {
    margin-right: auto;
    margin-left: 0;
  }
  .cs-title-wrap.text-center-mobile,
  .elementor-widget-cs_signup.elementor-mobile-align-center form {
    margin-right: auto;
    margin-left: auto;
  }
  .cs-title-wrap.text-right-mobile,
  .elementor-widget-cs_signup.elementor-mobile-align-right form {
    margin-right: 0;
    margin-left: auto;
  }
  ul.social-nav.text-left-mobile,
  .text-left-mobile ul.social-nav {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  ul.social-nav.text-center-mobile,
  .text-center-mobile ul.social-nav {
    -webkit-justify-content: center;
    justify-content: center;
  }
  ul.social-nav.text-right-mobile,
  .text-right-mobile ul.social-nav {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .cs-menu.text-left-mobile .menu {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cs-menu.text-center-mobile .menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cs-menu.text-right-mobile .menu {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .cs-food-card,
  .cs-food-card.column-reverse {
    flex-direction: column;
  }
  .cs-food-card .cs-fc-img {
    width: 100%;
  }
  .cs-food-card .cs-fc-img + .cs-fc-info {
    width: 100%;
    padding: 30px 0;
  }
  .cs-food-card .cs-fc-info {
    text-align: center;
  }
  .cs-food-card .cs-fc-info-extra {
    justify-content: center;
  }
  .cs-instagram.column-mosaic.mosaic-2 ul li:first-child {
    grid-column: 1 / span 2;
    grid-row: 1 / 2;
  }
  .cs-instagram.column-mosaic.mosaic-2 ul li:nth-child(7) {
    grid-column: 2 / span 2;
    grid-row: 3 / 4;
  }
  .cs-instagram.column-mosaic.mosaic-2 ul li:nth-child(12) {
    grid-column: 2 / span 2;
    grid-row: 5 / 6;
  }
  .cs-instagram.column-mosaic.mosaic-2 ul li:first-child .feed-bg,
  .cs-instagram.column-mosaic.mosaic-2 ul li:nth-child(7) .feed-bg,
  .cs-instagram.column-mosaic.mosaic-2 ul li:nth-child(12) .feed-bg {
    padding-top: 50%;
  }
  .cs-instagram.column-mosaic.mosaic-2.small-gap ul li:first-child .feed-bg,
  .cs-instagram.column-mosaic.mosaic-2.small-gap ul li:nth-child(7) .feed-bg,
  .cs-instagram.column-mosaic.mosaic-2.small-gap ul li:nth-child(12) .feed-bg {
    padding-top: calc(50% - 2px);
  }
  .cs-reservation-form.style-banner .cs-form-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cs-reservation-form.style-banner .cs-form-wrap .cs-form-field {
    display: block;
    width: 100%;
  }
  .cs-reservation-form.style-banner
    .cs-form-wrap
    .cs-form-field:not(:first-child) {
    margin-top: var(--field-space);
  }
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(2n + 1)
    input {
    border-right-width: 1px;
  }
  .cs-reservation-form.style-banner-3 .cs-form-wrap .cs-form-field input {
    padding-top: 10px;
  }
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field
    .csf-dropdown
    input {
    padding-top: 0;
  }
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field
    .field-wrap
    > .cs-form-label,
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field
    .field-input-wrap:after {
    margin-top: 2px;
  }
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(1).loftocean-highlighted:after {
    width: 100%;
    border-right-width: 0;
  }
  .cs-reservation-form.style-banner-3
    .cs-form-wrap
    .cs-form-field:nth-child(3).loftocean-highlighted:after {
    width: 100%;
    height: calc(100% + 1px);
    border-width: 0 0 1px 0;
  }
  .cs-info-box.mobile-column-1 .cs-info-box-item {
    width: 100%;
  }
  .cs-info-box.mobile-column-2 .cs-info-box-item {
    width: 50%;
  }
  .cs-info-box.mobile-column-3 .cs-info-box-item {
    width: 33.3333%;
  }
  .cs-info-box.mobile-column-4 .cs-info-box-item {
    width: 25%;
  }
  .cs-info-box.mobile-column-5 .cs-info-box-item {
    width: 20%;
  }
  .cs-info-box.mobile-column-6 .cs-info-box-item {
    width: 16.6666%;
  }
  .elementor-mobile-align-right .cs-list li {
    justify-content: flex-start;
    text-align: left;
  }
  .elementor-mobile-align-center .cs-list li {
    justify-content: center;
  }
  .elementor-mobile-align-right .cs-list li {
    justify-content: flex-end;
    text-align: right;
  }
  .elementor-widget-cs_button.elementor-mobile-align-justify .button {
    width: 100%;
    padding: 0;
  }
  .theme-cozystay .daterangepicker .drp-calendar {
    min-width: 260px;
  }
  .theme-cozystay .daterangepicker .drp-calendar.left {
    padding-right: 8px;
  }
}
@media screen and (max-width: 599px) {
  .cs-food-menu {
    --food-img-width: 60px;
  }
  .cs-food-menu .cs-food-menu-header > * {
    width: auto;
  }
  .cs-food-menu .cs-food-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }
  .cs-food-menu .cs-food-menu-title {
    margin-bottom: 0;
    white-space: normal;
  }
  .cs-food-menu .cs-food-menu-lines {
    display: none;
  }
  .cs-food-menu .cs-food-menu-price {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .cs-food-menu .cs-food-menu-lines + .cs-food-menu-price {
    margin-left: auto;
  }
  .cs-food-menu.lines-on-mobile.food-menu-style-2 .cs-food-menu-lines {
    top: 18px;
    display: flex;
    flex: 1 1 10%;
    height: 2px;
  }
  .cs-food-menu.lines-on-mobile.food-menu-style-3 .cs-food-menu-lines {
    top: 15px;
    display: flex;
    flex: 1 1 10%;
  }
  .cs-food-menu.lines-on-mobile.food-menu-style-4 .cs-food-menu-lines {
    top: 12px;
    display: flex;
    flex: 1 1 10%;
  }
  .cs-gallery.gallery-grid .cs-gallery-item {
    width: 100% !important;
  }
  .cs-gallery.style-overflow .slick-arrow.slick-prev {
    left: 15px;
  }
  .cs-gallery.style-overflow .slick-arrow.slick-next {
    right: 15px;
  }
  .cs-instagram.column-5 ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs-instagram.column-5 ul li:nth-child(5):last-child {
    display: none;
  }
  .cs-tabs .elementor-tabs-wrapper {
    margin-bottom: 35px;
  }
  .cs-tabs .elementor-tab-desktop-title {
    margin-bottom: 15px;
  }
}
.elementor-62 .elementor-element.elementor-element-4fc415fd.elementor-column > .elementor-widget-wrap {
    justify-content: flex-end;
}



.menu.primary-menu {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
}



.primary-menu > li:last-child > a {
    padding: 0px 0px 0px 15px;
}



.button.cs-btn-black {
  background: #96897c;
   
	 
}
.button.cs-btn-black {
  padding: 20px 40px;
  height: auto;
  background: #96897c;
  color: var(--text-color);
  border-radius: 0;
	border: none;
	font-weight: 600;
	font-size: 17px;
}
.button.cs-btn-black:before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
   
  content: "";
  transition: transform 0.2s ease;
  transform-origin: 0 0;
}


.elementor-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .elementor-lightbox-content {
    position: relative;
    width: 80%;
    height: 80%;
    
    
  }
  
  .elementor-lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: black;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
	  border-radius: 100px;
  }
.white-color{ color: #fff !important;}



.font-20{
    font-size: 20px !important;
}




.dark-color1{
    background-image: url("../images/home-location.jpg"); /* Update path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}




.dark-color2{
    background-image: url("../images/home-location2.jpg"); /* Update path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


 

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}





@charset "UTF-8";
.wp-block-archives {
  box-sizing: border-box;
}
.wp-block-archives-dropdown label {
  display: block;
}
.wp-block-avatar {
  line-height: 0;
}
.wp-block-avatar,
.wp-block-avatar img {
  box-sizing: border-box;
}
.wp-block-avatar.aligncenter {
  text-align: center;
}
.wp-block-audio {
  box-sizing: border-box;
}
.wp-block-audio :where(figcaption) {
  margin-bottom: 1em;
  margin-top: 0.5em;
}
.wp-block-audio audio {
  min-width: 300px;
  width: 100%;
}
.wp-block-button__link {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  word-break: break-word;
}
.wp-block-button__link.aligncenter {
  text-align: center;
}
.wp-block-button__link.alignright {
  text-align: right;
}
:where(.wp-block-button__link) {
  border-radius: 9999px;
  box-shadow: none;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  text-decoration: none;
}
.wp-block-button[style*="text-decoration"] .wp-block-button__link {
  text-decoration: inherit;
}
.wp-block-buttons > .wp-block-button.has-custom-width {
  max-width: none;
}
.wp-block-buttons > .wp-block-button.has-custom-width .wp-block-button__link {
  width: 100%;
}
.wp-block-buttons
  > .wp-block-button.has-custom-font-size
  .wp-block-button__link {
  font-size: inherit;
}
.wp-block-buttons > .wp-block-button.wp-block-button__width-25 {
  width: calc(25% - var(--wp--style--block-gap, 0.5em) * 0.75);
}
.wp-block-buttons > .wp-block-button.wp-block-button__width-50 {
  width: calc(50% - var(--wp--style--block-gap, 0.5em) * 0.5);
}
.wp-block-buttons > .wp-block-button.wp-block-button__width-75 {
  width: calc(75% - var(--wp--style--block-gap, 0.5em) * 0.25);
}
.wp-block-buttons > .wp-block-button.wp-block-button__width-100 {
  flex-basis: 100%;
  width: 100%;
}
.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-25 {
  width: 25%;
}
.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-50 {
  width: 50%;
}
.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-75 {
  width: 75%;
}
.wp-block-button.is-style-squared,
.wp-block-button__link.wp-block-button.is-style-squared {
  border-radius: 0;
}
.wp-block-button.no-border-radius,
.wp-block-button__link.no-border-radius {
  border-radius: 0 !important;
}
:root :where(.wp-block-button .wp-block-button__link.is-style-outline),
:root :where(.wp-block-button.is-style-outline > .wp-block-button__link) {
  border: 2px solid;
  padding: 0.667em 1.333em;
}
:root
  :where(
    .wp-block-button
      .wp-block-button__link.is-style-outline:not(.has-text-color)
  ),
:root
  :where(
    .wp-block-button.is-style-outline
      > .wp-block-button__link:not(.has-text-color)
  ) {
  color: currentColor;
}
:root
  :where(
    .wp-block-button
      .wp-block-button__link.is-style-outline:not(.has-background)
  ),
:root
  :where(
    .wp-block-button.is-style-outline
      > .wp-block-button__link:not(.has-background)
  ) {
  background-color: initial;
  background-image: none;
}
.wp-block-buttons.is-vertical {
  flex-direction: column;
}
.wp-block-buttons.is-vertical > .wp-block-button:last-child {
  margin-bottom: 0;
}
.wp-block-buttons > .wp-block-button {
  display: inline-block;
  margin: 0;
}
.wp-block-buttons.is-content-justification-left {
  justify-content: flex-start;
}
.wp-block-buttons.is-content-justification-left.is-vertical {
  align-items: flex-start;
}
.wp-block-buttons.is-content-justification-center {
  justify-content: center;
}
.wp-block-buttons.is-content-justification-center.is-vertical {
  align-items: center;
}
.wp-block-buttons.is-content-justification-right {
  justify-content: flex-end;
}
.wp-block-buttons.is-content-justification-right.is-vertical {
  align-items: flex-end;
}
.wp-block-buttons.is-content-justification-space-between {
  justify-content: space-between;
}
.wp-block-buttons.aligncenter {
  text-align: center;
}
.wp-block-buttons:not(
    .is-content-justification-space-between,
    .is-content-justification-right,
    .is-content-justification-left,
    .is-content-justification-center
  )
  .wp-block-button.aligncenter {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.wp-block-buttons[style*="text-decoration"] .wp-block-button,
.wp-block-buttons[style*="text-decoration"] .wp-block-button__link {
  text-decoration: inherit;
}
.wp-block-buttons.has-custom-font-size .wp-block-button__link {
  font-size: inherit;
}
.wp-block-button.aligncenter,
.wp-block-calendar {
  text-align: center;
}
.wp-block-calendar td,
.wp-block-calendar th {
  border: 1px solid;
  padding: 0.25em;
}
.wp-block-calendar th {
  font-weight: 400;
}
.wp-block-calendar caption {
  background-color: inherit;
}
.wp-block-calendar table {
  border-collapse: collapse;
  width: 100%;
}
.wp-block-calendar table:where(:not(.has-text-color)) {
  color: #40464d;
}
.wp-block-calendar table:where(:not(.has-text-color)) td,
.wp-block-calendar table:where(:not(.has-text-color)) th {
  border-color: #ddd;
}
.wp-block-calendar table.has-background th {
  background-color: inherit;
}
.wp-block-calendar table.has-text-color th {
  color: inherit;
}
:where(.wp-block-calendar table:not(.has-background) th) {
  background: #ddd;
}
.wp-block-categories {
  box-sizing: border-box;
}
.wp-block-categories.alignleft {
  margin-right: 2em;
}
.wp-block-categories.alignright {
  margin-left: 2em;
}
.wp-block-categories.wp-block-categories-dropdown.aligncenter {
  text-align: center;
}
.wp-block-categories .wp-block-categories__label {
  display: block;
  width: 100%;
}
.wp-block-code {
  box-sizing: border-box;
}
.wp-block-code code {
  display: block;
  font-family: inherit;
  overflow-wrap: break-word;
  white-space: pre-wrap;
}
.wp-block-columns {
  align-items: normal !important;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap !important;
}
@media (min-width: 782px) {
  .wp-block-columns {
    flex-wrap: nowrap !important;
  }
}
.wp-block-columns.are-vertically-aligned-top {
  align-items: flex-start;
}
.wp-block-columns.are-vertically-aligned-center {
  align-items: center;
}
.wp-block-columns.are-vertically-aligned-bottom {
  align-items: flex-end;
}
@media (max-width: 781px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}
@media (min-width: 782px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile)
    > .wp-block-column[style*="flex-basis"] {
    flex-grow: 0;
  }
}
.wp-block-columns.is-not-stacked-on-mobile {
  flex-wrap: nowrap !important;
}
.wp-block-columns.is-not-stacked-on-mobile > .wp-block-column {
  flex-basis: 0;
  flex-grow: 1;
}
.wp-block-columns.is-not-stacked-on-mobile
  > .wp-block-column[style*="flex-basis"] {
  flex-grow: 0;
}
:where(.wp-block-columns) {
  margin-bottom: 1.75em;
}
:where(.wp-block-columns.has-background) {
  padding: 1.25em 2.375em;
}
.wp-block-column {
  flex-grow: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.wp-block-column.is-vertically-aligned-top {
  align-self: flex-start;
}
.wp-block-column.is-vertically-aligned-center {
  align-self: center;
}
.wp-block-column.is-vertically-aligned-bottom {
  align-self: flex-end;
}
.wp-block-column.is-vertically-aligned-stretch {
  align-self: stretch;
}
.wp-block-column.is-vertically-aligned-bottom,
.wp-block-column.is-vertically-aligned-center,
.wp-block-column.is-vertically-aligned-top {
  width: 100%;
}
.wp-block-post-comments {
  box-sizing: border-box;
}
.wp-block-post-comments .alignleft {
  float: left;
}
.wp-block-post-comments .alignright {
  float: right;
}
.wp-block-post-comments .navigation:after {
  clear: both;
  content: "";
  display: table;
}
.wp-block-post-comments .commentlist {
  clear: both;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-block-post-comments .commentlist .comment {
  min-height: 2.25em;
  padding-left: 3.25em;
}
.wp-block-post-comments .commentlist .comment p {
  font-size: 1em;
  line-height: 1.8;
  margin: 1em 0;
}
.wp-block-post-comments .commentlist .children {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-block-post-comments .comment-author {
  line-height: 1.5;
}
.wp-block-post-comments .comment-author .avatar {
  border-radius: 1.5em;
  display: block;
  float: left;
  height: 2.5em;
  margin-right: 0.75em;
  margin-top: 0.5em;
  width: 2.5em;
}
.wp-block-post-comments .comment-author cite {
  font-style: normal;
}
.wp-block-post-comments .comment-meta {
  font-size: 0.875em;
  line-height: 1.5;
}
.wp-block-post-comments .comment-meta b {
  font-weight: 400;
}
.wp-block-post-comments .comment-meta .comment-awaiting-moderation {
  display: block;
  margin-bottom: 1em;
  margin-top: 1em;
}
.wp-block-post-comments .comment-body .commentmetadata {
  font-size: 0.875em;
}
.wp-block-post-comments .comment-form-author label,
.wp-block-post-comments .comment-form-comment label,
.wp-block-post-comments .comment-form-email label,
.wp-block-post-comments .comment-form-url label {
  display: block;
  margin-bottom: 0.25em;
}
.wp-block-post-comments
  .comment-form
  input:not([type="submit"]):not([type="checkbox"]),
.wp-block-post-comments .comment-form textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
}
.wp-block-post-comments .comment-form-cookies-consent {
  display: flex;
  gap: 0.25em;
}
.wp-block-post-comments
  .comment-form-cookies-consent
  #wp-comment-cookies-consent {
  margin-top: 0.35em;
}
.wp-block-post-comments .comment-reply-title {
  margin-bottom: 0;
}
.wp-block-post-comments .comment-reply-title :where(small) {
  font-size: var(--wp--preset--font-size--medium, smaller);
  margin-left: 0.5em;
}
.wp-block-post-comments .reply {
  font-size: 0.875em;
  margin-bottom: 1.4em;
}
.wp-block-post-comments input:not([type="submit"]),
.wp-block-post-comments textarea {
  border: 1px solid #949494;
  font-family: inherit;
  font-size: 1em;
}
.wp-block-post-comments input:not([type="submit"]):not([type="checkbox"]),
.wp-block-post-comments textarea {
  padding: calc(0.667em + 2px);
}
:where(.wp-block-post-comments input[type="submit"]) {
  border: none;
}
.wp-block-comments-pagination > .wp-block-comments-pagination-next,
.wp-block-comments-pagination > .wp-block-comments-pagination-numbers,
.wp-block-comments-pagination > .wp-block-comments-pagination-previous {
  margin-bottom: 0.5em;
  margin-right: 0.5em;
}
.wp-block-comments-pagination > .wp-block-comments-pagination-next:last-child,
.wp-block-comments-pagination
  > .wp-block-comments-pagination-numbers:last-child,
.wp-block-comments-pagination
  > .wp-block-comments-pagination-previous:last-child {
  margin-right: 0;
}
.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow {
  display: inline-block;
  margin-right: 1ch;
}
.wp-block-comments-pagination
  .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron) {
  transform: scaleX(1);
}
.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow {
  display: inline-block;
  margin-left: 1ch;
}
.wp-block-comments-pagination
  .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron) {
  transform: scaleX(1);
}
.wp-block-comments-pagination.aligncenter {
  justify-content: center;
}
.wp-block-comment-template {
  box-sizing: border-box;
  list-style: none;
  margin-bottom: 0;
  max-width: 100%;
  padding: 0;
}
.wp-block-comment-template li {
  clear: both;
}
.wp-block-comment-template ol {
  list-style: none;
  margin-bottom: 0;
  max-width: 100%;
  padding-left: 2rem;
}
.wp-block-comment-template.alignleft {
  float: left;
}
.wp-block-comment-template.aligncenter {
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.wp-block-comment-template.alignright {
  float: right;
}
.wp-block-comment-date {
  box-sizing: border-box;
}
.comment-awaiting-moderation {
  display: block;
  font-size: 0.875em;
  line-height: 1.5;
}
.wp-block-comment-author-name,
.wp-block-comment-content,
.wp-block-comment-edit-link,
.wp-block-comment-reply-link {
  box-sizing: border-box;
}
.wp-block-cover,
.wp-block-cover-image {
  align-items: center;
  background-position: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  min-height: 430px;
  overflow: hidden;
  overflow: clip;
  padding: 1em;
  position: relative;
}
.wp-block-cover .has-background-dim:not([class*="-background-color"]),
.wp-block-cover-image .has-background-dim:not([class*="-background-color"]),
.wp-block-cover-image.has-background-dim:not([class*="-background-color"]),
.wp-block-cover.has-background-dim:not([class*="-background-color"]) {
  background-color: #000;
}
.wp-block-cover .has-background-dim.has-background-gradient,
.wp-block-cover-image .has-background-dim.has-background-gradient {
  background-color: initial;
}
.wp-block-cover-image.has-background-dim:before,
.wp-block-cover.has-background-dim:before {
  background-color: inherit;
  content: "";
}
.wp-block-cover .wp-block-cover__background,
.wp-block-cover .wp-block-cover__gradient-background,
.wp-block-cover-image .wp-block-cover__background,
.wp-block-cover-image .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim:not(.has-background-gradient):before {
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.wp-block-cover-image.has-background-dim.has-background-dim-10
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-10
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-10:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-10
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-10
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-10:not(
    .has-background-gradient
  ):before {
  opacity: 0.1;
}
.wp-block-cover-image.has-background-dim.has-background-dim-20
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-20
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-20:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-20
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-20
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-20:not(
    .has-background-gradient
  ):before {
  opacity: 0.2;
}
.wp-block-cover-image.has-background-dim.has-background-dim-30
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-30
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-30:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-30
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-30
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-30:not(
    .has-background-gradient
  ):before {
  opacity: 0.3;
}
.wp-block-cover-image.has-background-dim.has-background-dim-40
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-40
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-40:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-40
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-40
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-40:not(
    .has-background-gradient
  ):before {
  opacity: 0.4;
}
.wp-block-cover-image.has-background-dim.has-background-dim-50
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-50
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-50:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-50
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-50
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-50:not(
    .has-background-gradient
  ):before {
  opacity: 0.5;
}
.wp-block-cover-image.has-background-dim.has-background-dim-60
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-60
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-60:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-60
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-60
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-60:not(
    .has-background-gradient
  ):before {
  opacity: 0.6;
}
.wp-block-cover-image.has-background-dim.has-background-dim-70
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-70
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-70:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-70
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-70
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-70:not(
    .has-background-gradient
  ):before {
  opacity: 0.7;
}
.wp-block-cover-image.has-background-dim.has-background-dim-80
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-80
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-80:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-80
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-80
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-80:not(
    .has-background-gradient
  ):before {
  opacity: 0.8;
}
.wp-block-cover-image.has-background-dim.has-background-dim-90
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-90
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-90:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-90
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-90
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-90:not(
    .has-background-gradient
  ):before {
  opacity: 0.9;
}
.wp-block-cover-image.has-background-dim.has-background-dim-100
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-100
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-100:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-100
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-100
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-100:not(
    .has-background-gradient
  ):before {
  opacity: 1;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-0,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-0,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0 {
  opacity: 0;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-10,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-10,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10 {
  opacity: 0.1;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-20,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-20,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20 {
  opacity: 0.2;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-30,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-30,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30 {
  opacity: 0.3;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-40,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-40,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40 {
  opacity: 0.4;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-50,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-50,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50 {
  opacity: 0.5;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-60,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-60,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60 {
  opacity: 0.6;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-70,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-70,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70 {
  opacity: 0.7;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-80,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-80,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80 {
  opacity: 0.8;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-90,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-90,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90 {
  opacity: 0.9;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-100,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-100,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100 {
  opacity: 1;
}
.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
  max-width: 420px;
  width: 100%;
}
.wp-block-cover-image.aligncenter,
.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.aligncenter,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
  display: flex;
}
.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover__inner-container {
  color: inherit;
  width: 100%;
  z-index: 1;
}
.has-modal-open .wp-block-cover .wp-block-cover__inner-container,
.has-modal-open .wp-block-cover-image .wp-block-cover__inner-container {
  z-index: auto;
}
.wp-block-cover-image.is-position-top-left,
.wp-block-cover.is-position-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}
.wp-block-cover-image.is-position-top-center,
.wp-block-cover.is-position-top-center {
  align-items: flex-start;
  justify-content: center;
}
.wp-block-cover-image.is-position-top-right,
.wp-block-cover.is-position-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}
.wp-block-cover-image.is-position-center-left,
.wp-block-cover.is-position-center-left {
  align-items: center;
  justify-content: flex-start;
}
.wp-block-cover-image.is-position-center-center,
.wp-block-cover.is-position-center-center {
  align-items: center;
  justify-content: center;
}
.wp-block-cover-image.is-position-center-right,
.wp-block-cover.is-position-center-right {
  align-items: center;
  justify-content: flex-end;
}
.wp-block-cover-image.is-position-bottom-left,
.wp-block-cover.is-position-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}
.wp-block-cover-image.is-position-bottom-center,
.wp-block-cover.is-position-bottom-center {
  align-items: flex-end;
  justify-content: center;
}
.wp-block-cover-image.is-position-bottom-right,
.wp-block-cover.is-position-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}
.wp-block-cover-image.has-custom-content-position.has-custom-content-position
  .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position
  .wp-block-cover__inner-container {
  margin: 0;
}
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left
  .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right
  .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left
  .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right
  .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left
  .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right
  .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left
  .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right
  .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left
  .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right
  .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left
  .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right
  .wp-block-cover__inner-container {
  margin: 0;
  width: auto;
}
.wp-block-cover .wp-block-cover__image-background,
.wp-block-cover video.wp-block-cover__video-background,
.wp-block-cover-image .wp-block-cover__image-background,
.wp-block-cover-image video.wp-block-cover__video-background {
  border: none;
  bottom: 0;
  box-shadow: none;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  object-fit: cover;
  outline: none;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.wp-block-cover-image.has-parallax,
.wp-block-cover.has-parallax,
.wp-block-cover__image-background.has-parallax,
video.wp-block-cover__video-background.has-parallax {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
@supports (-webkit-touch-callout: inherit) {
  .wp-block-cover-image.has-parallax,
  .wp-block-cover.has-parallax,
  .wp-block-cover__image-background.has-parallax,
  video.wp-block-cover__video-background.has-parallax {
    background-attachment: scroll;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wp-block-cover-image.has-parallax,
  .wp-block-cover.has-parallax,
  .wp-block-cover__image-background.has-parallax,
  video.wp-block-cover__video-background.has-parallax {
    background-attachment: scroll;
  }
}
.wp-block-cover-image.is-repeated,
.wp-block-cover.is-repeated,
.wp-block-cover__image-background.is-repeated,
video.wp-block-cover__video-background.is-repeated {
  background-repeat: repeat;
  background-size: auto;
}
.wp-block-cover__image-background,
.wp-block-cover__video-background {
  z-index: 0;
}
.wp-block-cover-image-text,
.wp-block-cover-image-text a,
.wp-block-cover-image-text a:active,
.wp-block-cover-image-text a:focus,
.wp-block-cover-image-text a:hover,
.wp-block-cover-text,
.wp-block-cover-text a,
.wp-block-cover-text a:active,
.wp-block-cover-text a:focus,
.wp-block-cover-text a:hover,
section.wp-block-cover-image h2,
section.wp-block-cover-image h2 a,
section.wp-block-cover-image h2 a:active,
section.wp-block-cover-image h2 a:focus,
section.wp-block-cover-image h2 a:hover {
  color: #fff;
}
.wp-block-cover-image .wp-block-cover.has-left-content {
  justify-content: flex-start;
}
.wp-block-cover-image .wp-block-cover.has-right-content {
  justify-content: flex-end;
}
.wp-block-cover-image.has-left-content .wp-block-cover-image-text,
.wp-block-cover.has-left-content .wp-block-cover-text,
section.wp-block-cover-image.has-left-content > h2 {
  margin-left: 0;
  text-align: left;
}
.wp-block-cover-image.has-right-content .wp-block-cover-image-text,
.wp-block-cover.has-right-content .wp-block-cover-text,
section.wp-block-cover-image.has-right-content > h2 {
  margin-right: 0;
  text-align: right;
}
.wp-block-cover .wp-block-cover-text,
.wp-block-cover-image .wp-block-cover-image-text,
section.wp-block-cover-image > h2 {
  font-size: 2em;
  line-height: 1.25;
  margin-bottom: 0;
  max-width: 840px;
  padding: 0.44em;
  text-align: center;
  z-index: 1;
}
:where(.wp-block-cover-image:not(.has-text-color)),
:where(.wp-block-cover:not(.has-text-color)) {
  color: #fff;
}
:where(.wp-block-cover-image.is-light:not(.has-text-color)),
:where(.wp-block-cover.is-light:not(.has-text-color)) {
  color: #000;
}
:root :where(.wp-block-cover h1:not(.has-text-color)),
:root :where(.wp-block-cover h2:not(.has-text-color)),
:root :where(.wp-block-cover h3:not(.has-text-color)),
:root :where(.wp-block-cover h4:not(.has-text-color)),
:root :where(.wp-block-cover h5:not(.has-text-color)),
:root :where(.wp-block-cover h6:not(.has-text-color)),
:root :where(.wp-block-cover p:not(.has-text-color)) {
  color: inherit;
}
.wp-block-details {
  box-sizing: border-box;
}
.wp-block-details summary {
  cursor: pointer;
}
.wp-block-embed.alignleft,
.wp-block-embed.alignright,
.wp-block[data-align="left"] > [data-type="core/embed"],
.wp-block[data-align="right"] > [data-type="core/embed"] {
  max-width: 360px;
  width: 100%;
}
.wp-block-embed.alignleft .wp-block-embed__wrapper,
.wp-block-embed.alignright .wp-block-embed__wrapper,
.wp-block[data-align="left"]
  > [data-type="core/embed"]
  .wp-block-embed__wrapper,
.wp-block[data-align="right"]
  > [data-type="core/embed"]
  .wp-block-embed__wrapper {
  min-width: 280px;
}
.wp-block-cover .wp-block-embed {
  min-height: 240px;
  min-width: 320px;
}
.wp-block-embed {
  overflow-wrap: break-word;
}
.wp-block-embed :where(figcaption) {
  margin-bottom: 1em;
  margin-top: 0.5em;
}
.wp-block-embed iframe {
  max-width: 100%;
}
.wp-block-embed__wrapper {
  position: relative;
}
.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before {
  content: "";
  display: block;
  padding-top: 50%;
}
.wp-embed-responsive .wp-has-aspect-ratio iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before {
  padding-top: 42.85%;
}
.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before {
  padding-top: 50%;
}
.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
  padding-top: 56.25%;
}
.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before {
  padding-top: 75%;
}
.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before {
  padding-top: 100%;
}
.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before {
  padding-top: 177.77%;
}
.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before {
  padding-top: 200%;
}
.wp-block-file {
  box-sizing: border-box;
}
.wp-block-file:not(.wp-element-button) {
  font-size: 0.8em;
}
.wp-block-file.aligncenter {
  text-align: center;
}
.wp-block-file.alignright {
  text-align: right;
}
.wp-block-file * + .wp-block-file__button {
  margin-left: 0.75em;
}
:where(.wp-block-file) {
  margin-bottom: 1.5em;
}
.wp-block-file__embed {
  margin-bottom: 1em;
}
:where(.wp-block-file__button) {
  border-radius: 2em;
  display: inline-block;
  padding: 0.5em 1em;
}
:where(.wp-block-file__button):is(a):active,
:where(.wp-block-file__button):is(a):focus,
:where(.wp-block-file__button):is(a):hover,
:where(.wp-block-file__button):is(a):visited {
  box-shadow: none;
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}
.wp-block-form-input__label {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  margin-bottom: 0.5em;
  width: 100%;
}
.wp-block-form-input__label.is-label-inline {
  align-items: center;
  flex-direction: row;
  gap: 0.5em;
}
.wp-block-form-input__label.is-label-inline
  .wp-block-form-input__label-content {
  margin-bottom: 0.5em;
}
.wp-block-form-input__label:has(input[type="checkbox"]) {
  flex-direction: row;
  width: -moz-fit-content;
  width: fit-content;
}
.wp-block-form-input__label:has(input[type="checkbox"])
  .wp-block-form-input__label-content {
  margin: 0;
}
.wp-block-form-input__label:has(
    .wp-block-form-input__label-content + input[type="checkbox"]
  ) {
  flex-direction: row-reverse;
}
.wp-block-form-input__label-content {
  width: -moz-fit-content;
  width: fit-content;
}
.wp-block-form-input__input {
  font-size: 1em;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
}
.wp-block-form-input__input[type="date"],
.wp-block-form-input__input[type="datetime-local"],
.wp-block-form-input__input[type="datetime"],
.wp-block-form-input__input[type="email"],
.wp-block-form-input__input[type="month"],
.wp-block-form-input__input[type="number"],
.wp-block-form-input__input[type="password"],
.wp-block-form-input__input[type="search"],
.wp-block-form-input__input[type="tel"],
.wp-block-form-input__input[type="text"],
.wp-block-form-input__input[type="time"],
.wp-block-form-input__input[type="url"],
.wp-block-form-input__input[type="week"] {
  border: 1px solid;
  line-height: 2;
  min-height: 2em;
}
textarea.wp-block-form-input__input {
  min-height: 10em;
}
.blocks-gallery-grid:not(.has-nested-images),
.wp-block-gallery:not(.has-nested-images) {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  margin: 0 1em 1em 0;
  position: relative;
  width: calc(50% - 1em);
}
.blocks-gallery-grid:not(.has-nested-images)
  .blocks-gallery-image:nth-of-type(2n),
.blocks-gallery-grid:not(.has-nested-images)
  .blocks-gallery-item:nth-of-type(2n),
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n) {
  margin-right: 0;
}
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure {
  align-items: flex-end;
  display: flex;
  height: 100%;
  justify-content: flex-start;
  margin: 0;
}
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img {
  display: block;
  height: auto;
  max-width: 100%;
  width: auto;
}
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption {
  background: linear-gradient(0deg, #000000b3, #0000004d 70%, #0000);
  bottom: 0;
  box-sizing: border-box;
  color: #fff;
  font-size: 0.8em;
  margin: 0;
  max-height: 100%;
  overflow: auto;
  padding: 3em 0.77em 0.7em;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 2;
}
.blocks-gallery-grid:not(.has-nested-images)
  .blocks-gallery-image
  figcaption
  img,
.blocks-gallery-grid:not(.has-nested-images)
  .blocks-gallery-item
  figcaption
  img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption img {
  display: inline;
}
.blocks-gallery-grid:not(.has-nested-images) figcaption,
.wp-block-gallery:not(.has-nested-images) figcaption {
  flex-grow: 1;
}
.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,
.blocks-gallery-grid:not(.has-nested-images).is-cropped
  .blocks-gallery-image
  img,
.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,
.blocks-gallery-grid:not(.has-nested-images).is-cropped
  .blocks-gallery-item
  img,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img {
  flex: 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,
.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item,
.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image,
.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item {
  margin-right: 0;
  width: 100%;
}
@media (min-width: 600px) {
  .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(33.33333% - 0.66667em);
  }
  .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(25% - 0.75em);
  }
  .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(20% - 0.8em);
  }
  .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(16.66667% - 0.83333em);
  }
  .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(14.28571% - 0.85714em);
  }
  .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(12.5% - 0.875em);
  }
  .blocks-gallery-grid:not(.has-nested-images).columns-1
    .blocks-gallery-image:nth-of-type(1n),
  .blocks-gallery-grid:not(.has-nested-images).columns-1
    .blocks-gallery-item:nth-of-type(1n),
  .blocks-gallery-grid:not(.has-nested-images).columns-2
    .blocks-gallery-image:nth-of-type(2n),
  .blocks-gallery-grid:not(.has-nested-images).columns-2
    .blocks-gallery-item:nth-of-type(2n),
  .blocks-gallery-grid:not(.has-nested-images).columns-3
    .blocks-gallery-image:nth-of-type(3n),
  .blocks-gallery-grid:not(.has-nested-images).columns-3
    .blocks-gallery-item:nth-of-type(3n),
  .blocks-gallery-grid:not(.has-nested-images).columns-4
    .blocks-gallery-image:nth-of-type(4n),
  .blocks-gallery-grid:not(.has-nested-images).columns-4
    .blocks-gallery-item:nth-of-type(4n),
  .blocks-gallery-grid:not(.has-nested-images).columns-5
    .blocks-gallery-image:nth-of-type(5n),
  .blocks-gallery-grid:not(.has-nested-images).columns-5
    .blocks-gallery-item:nth-of-type(5n),
  .blocks-gallery-grid:not(.has-nested-images).columns-6
    .blocks-gallery-image:nth-of-type(6n),
  .blocks-gallery-grid:not(.has-nested-images).columns-6
    .blocks-gallery-item:nth-of-type(6n),
  .blocks-gallery-grid:not(.has-nested-images).columns-7
    .blocks-gallery-image:nth-of-type(7n),
  .blocks-gallery-grid:not(.has-nested-images).columns-7
    .blocks-gallery-item:nth-of-type(7n),
  .blocks-gallery-grid:not(.has-nested-images).columns-8
    .blocks-gallery-image:nth-of-type(8n),
  .blocks-gallery-grid:not(.has-nested-images).columns-8
    .blocks-gallery-item:nth-of-type(8n),
  .wp-block-gallery:not(.has-nested-images).columns-1
    .blocks-gallery-image:nth-of-type(1n),
  .wp-block-gallery:not(.has-nested-images).columns-1
    .blocks-gallery-item:nth-of-type(1n),
  .wp-block-gallery:not(.has-nested-images).columns-2
    .blocks-gallery-image:nth-of-type(2n),
  .wp-block-gallery:not(.has-nested-images).columns-2
    .blocks-gallery-item:nth-of-type(2n),
  .wp-block-gallery:not(.has-nested-images).columns-3
    .blocks-gallery-image:nth-of-type(3n),
  .wp-block-gallery:not(.has-nested-images).columns-3
    .blocks-gallery-item:nth-of-type(3n),
  .wp-block-gallery:not(.has-nested-images).columns-4
    .blocks-gallery-image:nth-of-type(4n),
  .wp-block-gallery:not(.has-nested-images).columns-4
    .blocks-gallery-item:nth-of-type(4n),
  .wp-block-gallery:not(.has-nested-images).columns-5
    .blocks-gallery-image:nth-of-type(5n),
  .wp-block-gallery:not(.has-nested-images).columns-5
    .blocks-gallery-item:nth-of-type(5n),
  .wp-block-gallery:not(.has-nested-images).columns-6
    .blocks-gallery-image:nth-of-type(6n),
  .wp-block-gallery:not(.has-nested-images).columns-6
    .blocks-gallery-item:nth-of-type(6n),
  .wp-block-gallery:not(.has-nested-images).columns-7
    .blocks-gallery-image:nth-of-type(7n),
  .wp-block-gallery:not(.has-nested-images).columns-7
    .blocks-gallery-item:nth-of-type(7n),
  .wp-block-gallery:not(.has-nested-images).columns-8
    .blocks-gallery-image:nth-of-type(8n),
  .wp-block-gallery:not(.has-nested-images).columns-8
    .blocks-gallery-item:nth-of-type(8n) {
    margin-right: 0;
  }
}
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child {
  margin-right: 0;
}
.blocks-gallery-grid:not(.has-nested-images).alignleft,
.blocks-gallery-grid:not(.has-nested-images).alignright,
.wp-block-gallery:not(.has-nested-images).alignleft,
.wp-block-gallery:not(.has-nested-images).alignright {
  max-width: 420px;
  width: 100%;
}
.blocks-gallery-grid:not(.has-nested-images).aligncenter
  .blocks-gallery-item
  figure,
.wp-block-gallery:not(.has-nested-images).aligncenter
  .blocks-gallery-item
  figure {
  justify-content: center;
}
.wp-block-gallery:not(.is-cropped) .blocks-gallery-item {
  align-self: flex-start;
}
figure.wp-block-gallery.has-nested-images {
  align-items: normal;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image:not(#individual-image) {
  margin: 0;
  width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px) / 2);
}
.wp-block-gallery.has-nested-images figure.wp-block-image {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
.wp-block-gallery.has-nested-images figure.wp-block-image > a,
.wp-block-gallery.has-nested-images figure.wp-block-image > div {
  flex-direction: column;
  flex-grow: 1;
  margin: 0;
}
.wp-block-gallery.has-nested-images figure.wp-block-image img {
  display: block;
  height: auto;
  max-width: 100% !important;
  width: auto;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption,
.wp-block-gallery.has-nested-images
  figure.wp-block-image:has(figcaption):before {
  bottom: 0;
  left: 0;
  max-height: 100%;
  position: absolute;
  right: 0;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image:has(figcaption):before {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  content: "";
  height: 100%;
  -webkit-mask-image: linear-gradient(0deg, #000 20%, #0000);
  mask-image: linear-gradient(0deg, #000 20%, #0000);
  max-height: 40%;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: linear-gradient(0deg, #0006, #0000);
  box-sizing: border-box;
  color: #fff;
  font-size: 13px;
  margin: 0;
  overflow: auto;
  padding: 1em;
  scrollbar-color: #0000 #0000;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  text-align: center;
  text-shadow: 0 0 1.5px #000;
  will-change: transform;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption::-webkit-scrollbar-track {
  background-color: initial;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: initial;
  border: 3px solid #0000;
  border-radius: 8px;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption:focus-within::-webkit-scrollbar-thumb,
.wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption:focus::-webkit-scrollbar-thumb,
.wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption:hover::-webkit-scrollbar-thumb {
  background-color: #fffc;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus,
.wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption:focus-within,
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover {
  scrollbar-color: #fffc #0000;
}
@media (hover: none) {
  .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    scrollbar-color: #fffc #0000;
  }
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img {
  display: inline;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption a {
  color: inherit;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image.has-custom-border
  img {
  box-sizing: border-box;
}
.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border > a,
.wp-block-gallery.has-nested-images
  figure.wp-block-image.has-custom-border
  > div,
.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded > a,
.wp-block-gallery.has-nested-images
  figure.wp-block-image.is-style-rounded
  > div {
  flex: 1 1 auto;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image.has-custom-border
  figcaption,
.wp-block-gallery.has-nested-images
  figure.wp-block-image.is-style-rounded
  figcaption {
  background: none;
  color: inherit;
  flex: initial;
  margin: 0;
  padding: 10px 10px 9px;
  position: relative;
  text-shadow: none;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image.has-custom-border:before,
.wp-block-gallery.has-nested-images
  figure.wp-block-image.is-style-rounded:before {
  content: none;
}
.wp-block-gallery.has-nested-images figcaption {
  flex-basis: 100%;
  flex-grow: 1;
  text-align: center;
}
.wp-block-gallery.has-nested-images:not(.is-cropped)
  figure.wp-block-image:not(#individual-image) {
  margin-bottom: auto;
  margin-top: 0;
}
.wp-block-gallery.has-nested-images.is-cropped
  figure.wp-block-image:not(#individual-image) {
  align-self: inherit;
}
.wp-block-gallery.has-nested-images.is-cropped
  figure.wp-block-image:not(#individual-image)
  > a,
.wp-block-gallery.has-nested-images.is-cropped
  figure.wp-block-image:not(#individual-image)
  > div:not(.components-drop-zone) {
  display: flex;
}
.wp-block-gallery.has-nested-images.is-cropped
  figure.wp-block-image:not(#individual-image)
  a,
.wp-block-gallery.has-nested-images.is-cropped
  figure.wp-block-image:not(#individual-image)
  img {
  flex: 1 0 0%;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.wp-block-gallery.has-nested-images.columns-1
  figure.wp-block-image:not(#individual-image) {
  width: 100%;
}
@media (min-width: 600px) {
  .wp-block-gallery.has-nested-images.columns-3
    figure.wp-block-image:not(#individual-image) {
    width: calc(
      33.33333% - var(--wp--style--unstable-gallery-gap, 16px) * 0.66667
    );
  }
  .wp-block-gallery.has-nested-images.columns-4
    figure.wp-block-image:not(#individual-image) {
    width: calc(25% - var(--wp--style--unstable-gallery-gap, 16px) * 0.75);
  }
  .wp-block-gallery.has-nested-images.columns-5
    figure.wp-block-image:not(#individual-image) {
    width: calc(20% - var(--wp--style--unstable-gallery-gap, 16px) * 0.8);
  }
  .wp-block-gallery.has-nested-images.columns-6
    figure.wp-block-image:not(#individual-image) {
    width: calc(
      16.66667% - var(--wp--style--unstable-gallery-gap, 16px) * 0.83333
    );
  }
  .wp-block-gallery.has-nested-images.columns-7
    figure.wp-block-image:not(#individual-image) {
    width: calc(
      14.28571% - var(--wp--style--unstable-gallery-gap, 16px) * 0.85714
    );
  }
  .wp-block-gallery.has-nested-images.columns-8
    figure.wp-block-image:not(#individual-image) {
    width: calc(12.5% - var(--wp--style--unstable-gallery-gap, 16px) * 0.875);
  }
  .wp-block-gallery.has-nested-images.columns-default
    figure.wp-block-image:not(#individual-image) {
    width: calc(
      33.33% - var(--wp--style--unstable-gallery-gap, 16px) * 0.66667
    );
  }
  .wp-block-gallery.has-nested-images.columns-default
    figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
  .wp-block-gallery.has-nested-images.columns-default
    figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)
    ~ figure.wp-block-image:not(#individual-image) {
    width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px) * 0.5);
  }
  .wp-block-gallery.has-nested-images.columns-default
    figure.wp-block-image:not(#individual-image):first-child:last-child {
    width: 100%;
  }
}
.wp-block-gallery.has-nested-images.alignleft,
.wp-block-gallery.has-nested-images.alignright {
  max-width: 420px;
  width: 100%;
}
.wp-block-gallery.has-nested-images.aligncenter {
  justify-content: center;
}
.wp-block-group {
  box-sizing: border-box;
}
:where(.wp-block-group.wp-block-group-is-layout-constrained) {
  position: relative;
}
h1.has-background,
h2.has-background,
h3.has-background,
h4.has-background,
h5.has-background,
h6.has-background {
  padding: 1.25em 2.375em;
}
h1.has-text-align-left[style*="writing-mode"]:where([style*="vertical-lr"]),
h1.has-text-align-right[style*="writing-mode"]:where([style*="vertical-rl"]),
h2.has-text-align-left[style*="writing-mode"]:where([style*="vertical-lr"]),
h2.has-text-align-right[style*="writing-mode"]:where([style*="vertical-rl"]),
h3.has-text-align-left[style*="writing-mode"]:where([style*="vertical-lr"]),
h3.has-text-align-right[style*="writing-mode"]:where([style*="vertical-rl"]),
h4.has-text-align-left[style*="writing-mode"]:where([style*="vertical-lr"]),
h4.has-text-align-right[style*="writing-mode"]:where([style*="vertical-rl"]),
h5.has-text-align-left[style*="writing-mode"]:where([style*="vertical-lr"]),
h5.has-text-align-right[style*="writing-mode"]:where([style*="vertical-rl"]),
h6.has-text-align-left[style*="writing-mode"]:where([style*="vertical-lr"]),
h6.has-text-align-right[style*="writing-mode"]:where([style*="vertical-rl"]) {
  rotate: 180deg;
}
.wp-block-image a {
  display: inline-block;
}
.wp-block-image img {
  box-sizing: border-box;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}
@media (prefers-reduced-motion: no-preference) {
  .wp-block-image img.hide {
    visibility: hidden;
  }
  .wp-block-image img.show {
    animation: show-content-image 0.4s;
  }
}
.wp-block-image[style*="border-radius"] img,
.wp-block-image[style*="border-radius"] > a {
  border-radius: inherit;
}
.wp-block-image.has-custom-border img {
  box-sizing: border-box;
}
.wp-block-image.aligncenter {
  text-align: center;
}
.wp-block-image.alignfull a,
.wp-block-image.alignwide a {
  width: 100%;
}
.wp-block-image.alignfull img,
.wp-block-image.alignwide img {
  height: auto;
  width: 100%;
}
.wp-block-image .aligncenter,
.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image.aligncenter,
.wp-block-image.alignleft,
.wp-block-image.alignright {
  display: table;
}
.wp-block-image .aligncenter > figcaption,
.wp-block-image .alignleft > figcaption,
.wp-block-image .alignright > figcaption,
.wp-block-image.aligncenter > figcaption,
.wp-block-image.alignleft > figcaption,
.wp-block-image.alignright > figcaption {
  caption-side: bottom;
  display: table-caption;
}
.wp-block-image .alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}
.wp-block-image .alignright {
  float: right;
  margin: 0.5em 0 0.5em 1em;
}
.wp-block-image .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-image :where(figcaption) {
  margin-bottom: 1em;
  margin-top: 0.5em;
}
.wp-block-image.is-style-circle-mask img {
  border-radius: 9999px;
}
@supports ((-webkit-mask-image: none) or (mask-image: none)) or
  (-webkit-mask-image: none) {
  .wp-block-image.is-style-circle-mask img {
    border-radius: 0;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
    mask-mode: alpha;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
  }
}
:root
  :where(
    .wp-block-image.is-style-rounded img,
    .wp-block-image .is-style-rounded img
  ) {
  border-radius: 9999px;
}
.wp-block-image figure {
  margin: 0;
}
.wp-lightbox-container {
  display: flex;
  flex-direction: column;
  position: relative;
}
.wp-lightbox-container img {
  cursor: zoom-in;
}
.wp-lightbox-container img:hover + button {
  opacity: 1;
}
.wp-lightbox-container button {
  align-items: center;
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  background-color: #5a5a5a40;
  border: none;
  border-radius: 4px;
  cursor: zoom-in;
  display: flex;
  height: 20px;
  justify-content: center;
  opacity: 0;
  padding: 0;
  position: absolute;
  right: 16px;
  text-align: center;
  top: 16px;
  transition: opacity 0.2s ease;
  width: 20px;
  z-index: 100;
}
.wp-lightbox-container button:focus-visible {
  outline: 3px auto #5a5a5a40;
  outline: 3px auto -webkit-focus-ring-color;
  outline-offset: 3px;
}
.wp-lightbox-container button:hover {
  cursor: pointer;
  opacity: 1;
}
.wp-lightbox-container button:focus {
  opacity: 1;
}
.wp-lightbox-container button:focus,
.wp-lightbox-container button:hover,
.wp-lightbox-container button:not(:hover):not(:active):not(.has-background) {
  background-color: #5a5a5a40;
  border: none;
}
.wp-lightbox-overlay {
  box-sizing: border-box;
  cursor: zoom-out;
  height: 100vh;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 100000;
}
.wp-lightbox-overlay .close-button {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 0;
  position: absolute;
  right: calc(env(safe-area-inset-right) + 16px);
  top: calc(env(safe-area-inset-top) + 16px);
  z-index: 5000000;
}
.wp-lightbox-overlay .close-button:focus,
.wp-lightbox-overlay .close-button:hover,
.wp-lightbox-overlay
  .close-button:not(:hover):not(:active):not(.has-background) {
  background: none;
  border: none;
}
.wp-lightbox-overlay .lightbox-image-container {
  height: var(--wp--lightbox-container-height);
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: top left;
  width: var(--wp--lightbox-container-width);
  z-index: 9999999999;
}
.wp-lightbox-overlay .wp-block-image {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  height: 100%;
  justify-content: center;
  margin: 0;
  position: relative;
  transform-origin: 0 0;
  width: 100%;
  z-index: 3000000;
}
.wp-lightbox-overlay .wp-block-image img {
  height: var(--wp--lightbox-image-height);
  min-height: var(--wp--lightbox-image-height);
  min-width: var(--wp--lightbox-image-width);
  width: var(--wp--lightbox-image-width);
}
.wp-lightbox-overlay .wp-block-image figcaption {
  display: none;
}
.wp-lightbox-overlay button {
  background: none;
  border: none;
}
.wp-lightbox-overlay .scrim {
  background-color: #fff;
  height: 100%;
  opacity: 0.9;
  position: absolute;
  width: 100%;
  z-index: 2000000;
}
.wp-lightbox-overlay.active {
  animation: turn-on-visibility 0.25s both;
  visibility: visible;
}
.wp-lightbox-overlay.active img {
  animation: turn-on-visibility 0.35s both;
}
.wp-lightbox-overlay.show-closing-animation:not(.active) {
  animation: turn-off-visibility 0.35s both;
}
.wp-lightbox-overlay.show-closing-animation:not(.active) img {
  animation: turn-off-visibility 0.25s both;
}
@media (prefers-reduced-motion: no-preference) {
  .wp-lightbox-overlay.zoom.active {
    animation: none;
    opacity: 1;
    visibility: visible;
  }
  .wp-lightbox-overlay.zoom.active .lightbox-image-container {
    animation: lightbox-zoom-in 0.4s;
  }
  .wp-lightbox-overlay.zoom.active .lightbox-image-container img {
    animation: none;
  }
  .wp-lightbox-overlay.zoom.active .scrim {
    animation: turn-on-visibility 0.4s forwards;
  }
  .wp-lightbox-overlay.zoom.show-closing-animation:not(.active) {
    animation: none;
  }
  .wp-lightbox-overlay.zoom.show-closing-animation:not(.active)
    .lightbox-image-container {
    animation: lightbox-zoom-out 0.4s;
  }
  .wp-lightbox-overlay.zoom.show-closing-animation:not(.active)
    .lightbox-image-container
    img {
    animation: none;
  }
  .wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim {
    animation: turn-off-visibility 0.4s forwards;
  }
}
@keyframes show-content-image {
  0% {
    visibility: hidden;
  }
  99% {
    visibility: hidden;
  }
  to {
    visibility: visible;
  }
}
@keyframes turn-on-visibility {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes turn-off-visibility {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes lightbox-zoom-in {
  0% {
    transform: translate(
        calc(
          (-100vw + var(--wp--lightbox-scrollbar-width)) / 2 +
            var(--wp--lightbox-initial-left-position)
        ),
        calc(-50vh + var(--wp--lightbox-initial-top-position))
      )
      scale(var(--wp--lightbox-scale));
  }
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes lightbox-zoom-out {
  0% {
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
  }
  99% {
    visibility: visible;
  }
  to {
    transform: translate(
        calc(
          (-100vw + var(--wp--lightbox-scrollbar-width)) / 2 +
            var(--wp--lightbox-initial-left-position)
        ),
        calc(-50vh + var(--wp--lightbox-initial-top-position))
      )
      scale(var(--wp--lightbox-scale));
    visibility: hidden;
  }
}
ol.wp-block-latest-comments {
  box-sizing: border-box;
  margin-left: 0;
}
:where(
    .wp-block-latest-comments:not(
        [style*="line-height"] .wp-block-latest-comments__comment
      )
  ) {
  line-height: 1.1;
}
:where(
    .wp-block-latest-comments:not(
        [style*="line-height"] .wp-block-latest-comments__comment-excerpt p
      )
  ) {
  line-height: 1.8;
}
.has-dates :where(.wp-block-latest-comments:not([style*="line-height"])),
.has-excerpts :where(.wp-block-latest-comments:not([style*="line-height"])) {
  line-height: 1.5;
}
.wp-block-latest-comments .wp-block-latest-comments {
  padding-left: 0;
}
.wp-block-latest-comments__comment {
  list-style: none;
  margin-bottom: 1em;
}
.has-avatars .wp-block-latest-comments__comment {
  list-style: none;
  min-height: 2.25em;
}
.has-avatars
  .wp-block-latest-comments__comment
  .wp-block-latest-comments__comment-excerpt,
.has-avatars
  .wp-block-latest-comments__comment
  .wp-block-latest-comments__comment-meta {
  margin-left: 3.25em;
}
.wp-block-latest-comments__comment-excerpt p {
  font-size: 0.875em;
  margin: 0.36em 0 1.4em;
}
.wp-block-latest-comments__comment-date {
  display: block;
  font-size: 0.75em;
}
.wp-block-latest-comments .avatar,
.wp-block-latest-comments__comment-avatar {
  border-radius: 1.5em;
  display: block;
  float: left;
  height: 2.5em;
  margin-right: 0.75em;
  width: 2.5em;
}
.wp-block-latest-comments[class*="-font-size"] a,
.wp-block-latest-comments[style*="font-size"] a {
  font-size: inherit;
}
.wp-block-latest-posts {
  box-sizing: border-box;
}
.wp-block-latest-posts.alignleft {
  margin-right: 2em;
}
.wp-block-latest-posts.alignright {
  margin-left: 2em;
}
.wp-block-latest-posts.wp-block-latest-posts__list {
  list-style: none;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
  clear: both;
  overflow-wrap: break-word;
}
.wp-block-latest-posts.is-grid {
  display: flex;
  flex-wrap: wrap;
}
.wp-block-latest-posts.is-grid li {
  margin: 0 1.25em 1.25em 0;
  width: 100%;
}
@media (min-width: 600px) {
  .wp-block-latest-posts.columns-2 li {
    width: calc(50% - 0.625em);
  }
  .wp-block-latest-posts.columns-2 li:nth-child(2n) {
    margin-right: 0;
  }
  .wp-block-latest-posts.columns-3 li {
    width: calc(33.33333% - 0.83333em);
  }
  .wp-block-latest-posts.columns-3 li:nth-child(3n) {
    margin-right: 0;
  }
  .wp-block-latest-posts.columns-4 li {
    width: calc(25% - 0.9375em);
  }
  .wp-block-latest-posts.columns-4 li:nth-child(4n) {
    margin-right: 0;
  }
  .wp-block-latest-posts.columns-5 li {
    width: calc(20% - 1em);
  }
  .wp-block-latest-posts.columns-5 li:nth-child(5n) {
    margin-right: 0;
  }
  .wp-block-latest-posts.columns-6 li {
    width: calc(16.66667% - 1.04167em);
  }
  .wp-block-latest-posts.columns-6 li:nth-child(6n) {
    margin-right: 0;
  }
}
:root :where(.wp-block-latest-posts.is-grid) {
  padding: 0;
}
:root :where(.wp-block-latest-posts.wp-block-latest-posts__list) {
  padding-left: 0;
}
.wp-block-latest-posts__post-author,
.wp-block-latest-posts__post-date {
  display: block;
  font-size: 0.8125em;
}
.wp-block-latest-posts__post-excerpt {
  margin-bottom: 1em;
  margin-top: 0.5em;
}
.wp-block-latest-posts__featured-image a {
  display: inline-block;
}
.wp-block-latest-posts__featured-image img {
  height: auto;
  max-width: 100%;
  width: auto;
}
.wp-block-latest-posts__featured-image.alignleft {
  float: left;
  margin-right: 1em;
}
.wp-block-latest-posts__featured-image.alignright {
  float: right;
  margin-left: 1em;
}
.wp-block-latest-posts__featured-image.aligncenter {
  margin-bottom: 1em;
  text-align: center;
}
ol,
ul {
  box-sizing: border-box;
}
:root :where(.wp-block-list.has-background) {
  padding: 1.25em 2.375em;
}
.wp-block-loginout,
.wp-block-media-text {
  box-sizing: border-box;
}
.wp-block-media-text {
  /*!rtl:begin:ignore*/
  direction: ltr;
  /*!rtl:end:ignore*/
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: auto;
}
.wp-block-media-text.has-media-on-the-right {
  grid-template-columns: 1fr 50%;
}
.wp-block-media-text.is-vertically-aligned-top > .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-top > .wp-block-media-text__media {
  align-self: start;
}
.wp-block-media-text.is-vertically-aligned-center
  > .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-center > .wp-block-media-text__media,
.wp-block-media-text > .wp-block-media-text__content,
.wp-block-media-text > .wp-block-media-text__media {
  align-self: center;
}
.wp-block-media-text.is-vertically-aligned-bottom
  > .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-bottom
  > .wp-block-media-text__media {
  align-self: end;
}
.wp-block-media-text > .wp-block-media-text__media {
  /*!rtl:begin:ignore*/
  grid-column: 1;
  grid-row: 1;
  /*!rtl:end:ignore*/
  margin: 0;
}
.wp-block-media-text > .wp-block-media-text__content {
  direction: ltr;
  /*!rtl:begin:ignore*/
  grid-column: 2;
  grid-row: 1;
  /*!rtl:end:ignore*/
  padding: 0 8%;
  word-break: break-word;
}
.wp-block-media-text.has-media-on-the-right > .wp-block-media-text__media {
  /*!rtl:begin:ignore*/
  grid-column: 2;
  grid-row: 1;
  /*!rtl:end:ignore*/
}
.wp-block-media-text.has-media-on-the-right > .wp-block-media-text__content {
  /*!rtl:begin:ignore*/
  grid-column: 1;
  grid-row: 1;
  /*!rtl:end:ignore*/
}
.wp-block-media-text__media a {
  display: inline-block;
}
.wp-block-media-text__media img,
.wp-block-media-text__media video {
  height: auto;
  max-width: unset;
  vertical-align: middle;
  width: 100%;
}
.wp-block-media-text.is-image-fill > .wp-block-media-text__media {
  background-size: cover;
  height: 100%;
  min-height: 250px;
}
.wp-block-media-text.is-image-fill > .wp-block-media-text__media > a {
  display: block;
  height: 100%;
}
.wp-block-media-text.is-image-fill > .wp-block-media-text__media img {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.wp-block-media-text.is-image-fill-element > .wp-block-media-text__media {
  height: 100%;
  min-height: 250px;
  position: relative;
}
.wp-block-media-text.is-image-fill-element > .wp-block-media-text__media > a {
  display: block;
  height: 100%;
}
.wp-block-media-text.is-image-fill-element > .wp-block-media-text__media img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
@media (max-width: 600px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important;
  }
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
  }
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2;
  }
}
.wp-block-navigation {
  position: relative;
  --navigation-layout-justification-setting: flex-start;
  --navigation-layout-direction: row;
  --navigation-layout-wrap: wrap;
  --navigation-layout-justify: flex-start;
  --navigation-layout-align: center;
}
.wp-block-navigation ul {
  margin-bottom: 0;
  margin-left: 0;
  margin-top: 0;
  padding-left: 0;
}
.wp-block-navigation ul,
.wp-block-navigation ul li {
  list-style: none;
  padding: 0;
}
.wp-block-navigation .wp-block-navigation-item {
  align-items: center;
  display: flex;
  position: relative;
}
.wp-block-navigation
  .wp-block-navigation-item
  .wp-block-navigation__submenu-container:empty {
  display: none;
}
.wp-block-navigation .wp-block-navigation-item__content {
  display: block;
}
.wp-block-navigation
  .wp-block-navigation-item__content.wp-block-navigation-item__content {
  color: inherit;
}
.wp-block-navigation.has-text-decoration-underline
  .wp-block-navigation-item__content,
.wp-block-navigation.has-text-decoration-underline
  .wp-block-navigation-item__content:active,
.wp-block-navigation.has-text-decoration-underline
  .wp-block-navigation-item__content:focus {
  text-decoration: underline;
}
.wp-block-navigation.has-text-decoration-line-through
  .wp-block-navigation-item__content,
.wp-block-navigation.has-text-decoration-line-through
  .wp-block-navigation-item__content:active,
.wp-block-navigation.has-text-decoration-line-through
  .wp-block-navigation-item__content:focus {
  text-decoration: line-through;
}
.wp-block-navigation :where(a),
.wp-block-navigation :where(a:active),
.wp-block-navigation :where(a:focus) {
  text-decoration: none;
}
.wp-block-navigation .wp-block-navigation__submenu-icon {
  align-self: center;
  background-color: inherit;
  border: none;
  color: currentColor;
  display: inline-block;
  font-size: inherit;
  height: 0.6em;
  line-height: 0;
  margin-left: 0.25em;
  padding: 0;
  width: 0.6em;
}
.wp-block-navigation .wp-block-navigation__submenu-icon svg {
  display: inline-block;
  stroke: currentColor;
  height: inherit;
  margin-top: 0.075em;
  width: inherit;
}
.wp-block-navigation.is-vertical {
  --navigation-layout-direction: column;
  --navigation-layout-justify: initial;
  --navigation-layout-align: flex-start;
}
.wp-block-navigation.no-wrap {
  --navigation-layout-wrap: nowrap;
}
.wp-block-navigation.items-justified-center {
  --navigation-layout-justification-setting: center;
  --navigation-layout-justify: center;
}
.wp-block-navigation.items-justified-center.is-vertical {
  --navigation-layout-align: center;
}
.wp-block-navigation.items-justified-right {
  --navigation-layout-justification-setting: flex-end;
  --navigation-layout-justify: flex-end;
}
.wp-block-navigation.items-justified-right.is-vertical {
  --navigation-layout-align: flex-end;
}
.wp-block-navigation.items-justified-space-between {
  --navigation-layout-justification-setting: space-between;
  --navigation-layout-justify: space-between;
}
.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
  align-items: normal;
  background-color: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 0;
  left: -1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  transition: opacity 0.1s linear;
  visibility: hidden;
  width: 0;
  z-index: 2;
}
.wp-block-navigation
  .has-child
  .wp-block-navigation__submenu-container
  > .wp-block-navigation-item
  > .wp-block-navigation-item__content {
  display: flex;
  flex-grow: 1;
}
.wp-block-navigation
  .has-child
  .wp-block-navigation__submenu-container
  > .wp-block-navigation-item
  > .wp-block-navigation-item__content
  .wp-block-navigation__submenu-icon {
  margin-left: auto;
  margin-right: 0;
}
.wp-block-navigation
  .has-child
  .wp-block-navigation__submenu-container
  .wp-block-navigation-item__content {
  margin: 0;
}
@media (min-width: 782px) {
  .wp-block-navigation
    .has-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-container {
    left: 100%;
    top: -1px;
  }
  .wp-block-navigation
    .has-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-container:before {
    background: #0000;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: 100%;
    width: 0.5em;
  }
  .wp-block-navigation
    .has-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-icon {
    margin-right: 0.25em;
  }
  .wp-block-navigation
    .has-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-icon
    svg {
    transform: rotate(-90deg);
  }
}
.wp-block-navigation
  .has-child
  .wp-block-navigation-submenu__toggle[aria-expanded="true"]
  ~ .wp-block-navigation__submenu-container,
.wp-block-navigation
  .has-child:not(.open-on-click):hover
  > .wp-block-navigation__submenu-container,
.wp-block-navigation
  .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within
  > .wp-block-navigation__submenu-container {
  height: auto;
  min-width: 200px;
  opacity: 1;
  overflow: visible;
  visibility: visible;
  width: auto;
}
.wp-block-navigation.has-background
  .has-child
  .wp-block-navigation__submenu-container {
  left: 0;
  top: 100%;
}
@media (min-width: 782px) {
  .wp-block-navigation.has-background
    .has-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-container {
    left: 100%;
    top: 0;
  }
}
.wp-block-navigation-submenu {
  display: flex;
  position: relative;
}
.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg {
  stroke: currentColor;
}
button.wp-block-navigation-item__content {
  background-color: initial;
  border: none;
  color: currentColor;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: left;
  text-transform: inherit;
}
.wp-block-navigation-submenu__toggle {
  cursor: pointer;
}
.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle {
  padding-left: 0;
  padding-right: 0.85em;
}
.wp-block-navigation-item.open-on-click
  .wp-block-navigation-submenu__toggle
  + .wp-block-navigation__submenu-icon {
  margin-left: -0.6em;
  pointer-events: none;
}
.wp-block-navigation-item.open-on-click
  button.wp-block-navigation-item__content:not(
    .wp-block-navigation-submenu__toggle
  ) {
  padding: 0;
}
.wp-block-navigation .wp-block-page-list,
.wp-block-navigation__container,
.wp-block-navigation__responsive-close,
.wp-block-navigation__responsive-container,
.wp-block-navigation__responsive-container-content,
.wp-block-navigation__responsive-dialog {
  gap: inherit;
}
:where(
    .wp-block-navigation.has-background
      .wp-block-navigation-item
      a:not(.wp-element-button)
  ),
:where(
    .wp-block-navigation.has-background
      .wp-block-navigation-submenu
      a:not(.wp-element-button)
  ) {
  padding: 0.5em 1em;
}
:where(
    .wp-block-navigation
      .wp-block-navigation__submenu-container
      .wp-block-navigation-item
      a:not(.wp-element-button)
  ),
:where(
    .wp-block-navigation
      .wp-block-navigation__submenu-container
      .wp-block-navigation-submenu
      a:not(.wp-element-button)
  ),
:where(
    .wp-block-navigation
      .wp-block-navigation__submenu-container
      .wp-block-navigation-submenu
      button.wp-block-navigation-item__content
  ),
:where(
    .wp-block-navigation
      .wp-block-navigation__submenu-container
      .wp-block-pages-list__item
      button.wp-block-navigation-item__content
  ) {
  padding: 0.5em 1em;
}
.wp-block-navigation.items-justified-right
  .wp-block-navigation__container
  .has-child
  .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-right
  .wp-block-page-list
  > .has-child
  .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between
  .wp-block-page-list
  > .has-child:last-child
  .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between
  > .wp-block-navigation__container
  > .has-child:last-child
  .wp-block-navigation__submenu-container {
  left: auto;
  right: 0;
}
.wp-block-navigation.items-justified-right
  .wp-block-navigation__container
  .has-child
  .wp-block-navigation__submenu-container
  .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-right
  .wp-block-page-list
  > .has-child
  .wp-block-navigation__submenu-container
  .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between
  .wp-block-page-list
  > .has-child:last-child
  .wp-block-navigation__submenu-container
  .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between
  > .wp-block-navigation__container
  > .has-child:last-child
  .wp-block-navigation__submenu-container
  .wp-block-navigation__submenu-container {
  left: -1px;
  right: -1px;
}
@media (min-width: 782px) {
  .wp-block-navigation.items-justified-right
    .wp-block-navigation__container
    .has-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-container,
  .wp-block-navigation.items-justified-right
    .wp-block-page-list
    > .has-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-container,
  .wp-block-navigation.items-justified-space-between
    .wp-block-page-list
    > .has-child:last-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-container,
  .wp-block-navigation.items-justified-space-between
    > .wp-block-navigation__container
    > .has-child:last-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-container {
    left: auto;
    right: 100%;
  }
}
.wp-block-navigation:not(.has-background)
  .wp-block-navigation__submenu-container {
  background-color: #fff;
  border: 1px solid #00000026;
}
.wp-block-navigation.has-background .wp-block-navigation__submenu-container {
  background-color: inherit;
}
.wp-block-navigation:not(.has-text-color)
  .wp-block-navigation__submenu-container {
  color: #000;
}
.wp-block-navigation__container {
  align-items: var(--navigation-layout-align, initial);
  display: flex;
  flex-direction: var(--navigation-layout-direction, initial);
  flex-wrap: var(--navigation-layout-wrap, wrap);
  justify-content: var(--navigation-layout-justify, initial);
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.wp-block-navigation__container .is-responsive {
  display: none;
}
.wp-block-navigation__container:only-child,
.wp-block-page-list:only-child {
  flex-grow: 1;
}
@keyframes overlay-menu__fade-in-animation {
  0% {
    opacity: 0;
    transform: translateY(0.5em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wp-block-navigation__responsive-container {
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}
.wp-block-navigation__responsive-container :where(.wp-block-navigation-item a) {
  color: inherit;
}
.wp-block-navigation__responsive-container
  .wp-block-navigation__responsive-container-content {
  align-items: var(--navigation-layout-align, initial);
  display: flex;
  flex-direction: var(--navigation-layout-direction, initial);
  flex-wrap: var(--navigation-layout-wrap, wrap);
  justify-content: var(--navigation-layout-justify, initial);
}
.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open) {
  background-color: inherit !important;
  color: inherit !important;
}
.wp-block-navigation__responsive-container.is-menu-open {
  animation: overlay-menu__fade-in-animation 0.1s ease-out;
  animation-fill-mode: forwards;
  background-color: inherit;
  display: flex;
  flex-direction: column;
  overflow: auto;
  padding: clamp(1rem, var(--wp--style--root--padding-top), 20rem)
    clamp(1rem, var(--wp--style--root--padding-right), 20rem)
    clamp(1rem, var(--wp--style--root--padding-bottom), 20rem)
    clamp(1rem, var(--wp--style--root--padding-left), 20em);
  z-index: 100000;
}
@media (prefers-reduced-motion: reduce) {
  .wp-block-navigation__responsive-container.is-menu-open {
    animation-delay: 0s;
    animation-duration: 1ms;
  }
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content {
  align-items: var(--navigation-layout-justification-setting, inherit);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  overflow: visible;
  padding-top: calc(2rem + 24px);
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content,
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-page-list {
  justify-content: flex-start;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation__submenu-icon {
  display: none;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .has-child
  .wp-block-navigation__submenu-container {
  border: none;
  height: auto;
  min-width: 200px;
  opacity: 1;
  overflow: initial;
  padding-left: 2rem;
  padding-right: 2rem;
  position: static;
  visibility: visible;
  width: auto;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation__submenu-container {
  gap: inherit;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation__submenu-container {
  padding-top: var(--wp--style--block-gap, 2em);
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation-item__content {
  padding: 0;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation-item,
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-page-list {
  align-items: var(--navigation-layout-justification-setting, initial);
  display: flex;
  flex-direction: column;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation-item,
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation-item
  .wp-block-navigation__submenu-container,
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list {
  background: #0000 !important;
  color: inherit !important;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
  left: auto;
  right: auto;
}
@media (min-width: 600px) {
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(
      .is-menu-open
    ) {
    background-color: inherit;
    display: block;
    position: relative;
    width: 100%;
    z-index: auto;
  }
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(
      .is-menu-open
    )
    .wp-block-navigation__responsive-container-close {
    display: none;
  }
  .wp-block-navigation__responsive-container.is-menu-open
    .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
    left: 0;
  }
}
.wp-block-navigation:not(.has-background)
  .wp-block-navigation__responsive-container.is-menu-open {
  background-color: #fff;
}
.wp-block-navigation:not(.has-text-color)
  .wp-block-navigation__responsive-container.is-menu-open {
  color: #000;
}
.wp-block-navigation__toggle_button_label {
  font-size: 1rem;
  font-weight: 700;
}
.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-open {
  background: #0000;
  border: none;
  color: currentColor;
  cursor: pointer;
  margin: 0;
  padding: 0;
  text-transform: inherit;
  vertical-align: middle;
}
.wp-block-navigation__responsive-container-close svg,
.wp-block-navigation__responsive-container-open svg {
  fill: currentColor;
  display: block;
  height: 24px;
  pointer-events: none;
  width: 24px;
}
.wp-block-navigation__responsive-container-open {
  display: flex;
}
.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
@media (min-width: 600px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none;
  }
}
.wp-block-navigation__responsive-container-close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.wp-block-navigation__responsive-close {
  width: 100%;
}
.has-modal-open .wp-block-navigation__responsive-close {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--style--global--wide-size, 100%);
}
.wp-block-navigation__responsive-close:focus {
  outline: none;
}
.is-menu-open .wp-block-navigation__responsive-close,
.is-menu-open .wp-block-navigation__responsive-container-content,
.is-menu-open .wp-block-navigation__responsive-dialog {
  box-sizing: border-box;
}
.wp-block-navigation__responsive-dialog {
  position: relative;
}
.has-modal-open
  .admin-bar
  .is-menu-open
  .wp-block-navigation__responsive-dialog {
  margin-top: 46px;
}
@media (min-width: 782px) {
  .has-modal-open
    .admin-bar
    .is-menu-open
    .wp-block-navigation__responsive-dialog {
    margin-top: 32px;
  }
}
html.has-modal-open {
  overflow: hidden;
}
.wp-block-navigation .wp-block-navigation-item__label {
  overflow-wrap: break-word;
}
.wp-block-navigation .wp-block-navigation-item__description {
  display: none;
}
.link-ui-tools {
  border-top: 1px solid #f0f0f0;
  padding: 8px;
}
.link-ui-block-inserter {
  padding-top: 8px;
}
.link-ui-block-inserter__back {
  margin-left: 8px;
  text-transform: uppercase;
}
.wp-block-navigation .wp-block-page-list {
  align-items: var(--navigation-layout-align, initial);
  background-color: inherit;
  display: flex;
  flex-direction: var(--navigation-layout-direction, initial);
  flex-wrap: var(--navigation-layout-wrap, wrap);
  justify-content: var(--navigation-layout-justify, initial);
}
.wp-block-navigation .wp-block-navigation-item {
  background-color: inherit;
}
.is-small-text {
  font-size: 0.875em;
}
.is-regular-text {
  font-size: 1em;
}
.is-large-text {
  font-size: 2.25em;
}
.is-larger-text {
  font-size: 3em;
}
.has-drop-cap:not(:focus):first-letter {
  float: left;
  font-size: 8.4em;
  font-style: normal;
  font-weight: 100;
  line-height: 0.68;
  margin: 0.05em 0.1em 0 0;
  text-transform: uppercase;
}
body.rtl .has-drop-cap:not(:focus):first-letter {
  float: none;
  margin-left: 0.1em;
}
p.has-drop-cap.has-background {
  overflow: hidden;
}
:root :where(p.has-background) {
  padding: 1.25em 2.375em;
}
:where(p.has-text-color:not(.has-link-color)) a {
  color: inherit;
}
p.has-text-align-left[style*="writing-mode:vertical-lr"],
p.has-text-align-right[style*="writing-mode:vertical-rl"] {
  rotate: 180deg;
}
.wp-block-post-author {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}
.wp-block-post-author__byline {
  font-size: 0.5em;
  margin-bottom: 0;
  margin-top: 0;
  width: 100%;
}
.wp-block-post-author__avatar {
  margin-right: 1em;
}
.wp-block-post-author__bio {
  font-size: 0.7em;
  margin-bottom: 0.7em;
}
.wp-block-post-author__content {
  flex-basis: 0;
  flex-grow: 1;
}
.wp-block-post-author__name {
  margin: 0;
}
.wp-block-post-author-biography {
  box-sizing: border-box;
}
:where(.wp-block-post-comments-form) input:not([type="submit"]),
:where(.wp-block-post-comments-form) textarea {
  border: 1px solid #949494;
  font-family: inherit;
  font-size: 1em;
}
:where(.wp-block-post-comments-form)
  input:where(:not([type="submit"]):not([type="checkbox"])),
:where(.wp-block-post-comments-form) textarea {
  padding: calc(0.667em + 2px);
}
.wp-block-post-comments-form {
  box-sizing: border-box;
}
.wp-block-post-comments-form[style*="font-weight"]
  :where(.comment-reply-title) {
  font-weight: inherit;
}
.wp-block-post-comments-form[style*="font-family"]
  :where(.comment-reply-title) {
  font-family: inherit;
}
.wp-block-post-comments-form[class*="-font-size"] :where(.comment-reply-title),
.wp-block-post-comments-form[style*="font-size"] :where(.comment-reply-title) {
  font-size: inherit;
}
.wp-block-post-comments-form[style*="line-height"]
  :where(.comment-reply-title) {
  line-height: inherit;
}
.wp-block-post-comments-form[style*="font-style"] :where(.comment-reply-title) {
  font-style: inherit;
}
.wp-block-post-comments-form[style*="letter-spacing"]
  :where(.comment-reply-title) {
  letter-spacing: inherit;
}
.wp-block-post-comments-form :where(input[type="submit"]) {
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  overflow-wrap: break-word;
  text-align: center;
}
.wp-block-post-comments-form
  .comment-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="hidden"]),
.wp-block-post-comments-form .comment-form textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
}
.wp-block-post-comments-form .comment-form-author label,
.wp-block-post-comments-form .comment-form-email label,
.wp-block-post-comments-form .comment-form-url label {
  display: block;
  margin-bottom: 0.25em;
}
.wp-block-post-comments-form .comment-form-cookies-consent {
  display: flex;
  gap: 0.25em;
}
.wp-block-post-comments-form
  .comment-form-cookies-consent
  #wp-comment-cookies-consent {
  margin-top: 0.35em;
}
.wp-block-post-comments-form .comment-reply-title {
  margin-bottom: 0;
}
.wp-block-post-comments-form .comment-reply-title :where(small) {
  font-size: var(--wp--preset--font-size--medium, smaller);
  margin-left: 0.5em;
}
.wp-block-post-content {
  display: flow-root;
}
.wp-block-post-date {
  box-sizing: border-box;
}
:where(.wp-block-post-excerpt) {
  box-sizing: border-box;
  margin-bottom: var(--wp--style--block-gap);
  margin-top: var(--wp--style--block-gap);
}
.wp-block-post-excerpt__excerpt {
  margin-bottom: 0;
  margin-top: 0;
}
.wp-block-post-excerpt__more-text {
  margin-bottom: 0;
  margin-top: var(--wp--style--block-gap);
}
.wp-block-post-excerpt__more-link {
  display: inline-block;
}
.wp-block-post-featured-image {
  margin-left: 0;
  margin-right: 0;
}
.wp-block-post-featured-image a {
  display: block;
  height: 100%;
}
.wp-block-post-featured-image :where(img) {
  box-sizing: border-box;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: 100%;
}
.wp-block-post-featured-image.alignfull img,
.wp-block-post-featured-image.alignwide img {
  width: 100%;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim {
  background-color: #000;
  inset: 0;
  position: absolute;
}
.wp-block-post-featured-image {
  position: relative;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-gradient {
  background-color: initial;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-0 {
  opacity: 0;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-10 {
  opacity: 0.1;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-20 {
  opacity: 0.2;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-30 {
  opacity: 0.3;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-40 {
  opacity: 0.4;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-50 {
  opacity: 0.5;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-60 {
  opacity: 0.6;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-70 {
  opacity: 0.7;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-80 {
  opacity: 0.8;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-90 {
  opacity: 0.9;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-100 {
  opacity: 1;
}
.wp-block-post-featured-image:where(.alignleft, .alignright) {
  width: 100%;
}
.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous {
  display: inline-block;
  margin-right: 1ch;
}
.wp-block-post-navigation-link
  .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron) {
  transform: scaleX(1);
}
.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next {
  display: inline-block;
  margin-left: 1ch;
}
.wp-block-post-navigation-link
  .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron) {
  transform: scaleX(1);
}
.wp-block-post-navigation-link.has-text-align-left[style*="writing-mode: vertical-lr"],
.wp-block-post-navigation-link.has-text-align-right[style*="writing-mode: vertical-rl"] {
  rotate: 180deg;
}
.wp-block-post-terms {
  box-sizing: border-box;
}
.wp-block-post-terms .wp-block-post-terms__separator {
  white-space: pre-wrap;
}
.wp-block-post-time-to-read,
.wp-block-post-title {
  box-sizing: border-box;
}
.wp-block-post-title {
  word-break: break-word;
}
.wp-block-post-title :where(a) {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
}
.wp-block-post-author-name {
  box-sizing: border-box;
}
.wp-block-preformatted {
  box-sizing: border-box;
  white-space: pre-wrap;
}
:where(.wp-block-preformatted.has-background) {
  padding: 1.25em 2.375em;
}
.wp-block-pullquote {
  box-sizing: border-box;
  margin: 0 0 1em;
  overflow-wrap: break-word;
  padding: 4em 0;
  text-align: center;
}
.wp-block-pullquote blockquote,
.wp-block-pullquote cite,
.wp-block-pullquote p {
  color: inherit;
}
.wp-block-pullquote blockquote {
  margin: 0;
}
.wp-block-pullquote p {
  margin-top: 0;
}
.wp-block-pullquote p:last-child {
  margin-bottom: 0;
}
.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright {
  max-width: 420px;
}
.wp-block-pullquote cite,
.wp-block-pullquote footer {
  position: relative;
}
.wp-block-pullquote .has-text-color a {
  color: inherit;
}
.wp-block-pullquote.has-text-align-left blockquote {
  text-align: left;
}
.wp-block-pullquote.has-text-align-right blockquote {
  text-align: right;
}
.wp-block-pullquote.is-style-solid-color {
  border: none;
}
.wp-block-pullquote.is-style-solid-color blockquote {
  margin-left: auto;
  margin-right: auto;
  max-width: 60%;
}
.wp-block-pullquote.is-style-solid-color blockquote p {
  font-size: 2em;
  margin-bottom: 0;
  margin-top: 0;
}
.wp-block-pullquote.is-style-solid-color blockquote cite {
  font-style: normal;
  text-transform: none;
}
.wp-block-pullquote cite {
  color: inherit;
}
.wp-block-post-template {
  list-style: none;
  margin-bottom: 0;
  margin-top: 0;
  max-width: 100%;
  padding: 0;
}
.wp-block-post-template.is-flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25em;
}
.wp-block-post-template.is-flex-container > li {
  margin: 0;
  width: 100%;
}
@media (min-width: 600px) {
  .wp-block-post-template.is-flex-container.is-flex-container.columns-2 > li {
    width: calc(50% - 0.625em);
  }
  .wp-block-post-template.is-flex-container.is-flex-container.columns-3 > li {
    width: calc(33.33333% - 0.83333em);
  }
  .wp-block-post-template.is-flex-container.is-flex-container.columns-4 > li {
    width: calc(25% - 0.9375em);
  }
  .wp-block-post-template.is-flex-container.is-flex-container.columns-5 > li {
    width: calc(20% - 1em);
  }
  .wp-block-post-template.is-flex-container.is-flex-container.columns-6 > li {
    width: calc(16.66667% - 1.04167em);
  }
}
@media (max-width: 600px) {
  .wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid {
    grid-template-columns: 1fr;
  }
}
.wp-block-post-template-is-layout-constrained > li > .alignright,
.wp-block-post-template-is-layout-flow > li > .alignright {
  float: right;
  margin-inline-end: 0;
  margin-inline-start: 2em;
}
.wp-block-post-template-is-layout-constrained > li > .alignleft,
.wp-block-post-template-is-layout-flow > li > .alignleft {
  float: left;
  margin-inline-end: 2em;
  margin-inline-start: 0;
}
.wp-block-post-template-is-layout-constrained > li > .aligncenter,
.wp-block-post-template-is-layout-flow > li > .aligncenter {
  margin-inline-end: auto;
  margin-inline-start: auto;
}
.wp-block-query-pagination.is-content-justification-space-between
  > .wp-block-query-pagination-next:last-of-type {
  margin-inline-start: auto;
}
.wp-block-query-pagination.is-content-justification-space-between
  > .wp-block-query-pagination-previous:first-child {
  margin-inline-end: auto;
}
.wp-block-query-pagination .wp-block-query-pagination-previous-arrow {
  display: inline-block;
  margin-right: 1ch;
}
.wp-block-query-pagination
  .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron) {
  transform: scaleX(1);
}
.wp-block-query-pagination .wp-block-query-pagination-next-arrow {
  display: inline-block;
  margin-left: 1ch;
}
.wp-block-query-pagination
  .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron) {
  transform: scaleX(1);
}
.wp-block-query-pagination.aligncenter {
  justify-content: center;
}
.wp-block-query-title,
.wp-block-quote {
  box-sizing: border-box;
}
.wp-block-quote {
  overflow-wrap: break-word;
}
.wp-block-quote.is-large:where(:not(.is-style-plain)),
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) {
  margin-bottom: 1em;
  padding: 0 1em;
}
.wp-block-quote.is-large:where(:not(.is-style-plain)) p,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) p {
  font-size: 1.5em;
  font-style: italic;
  line-height: 1.6;
}
.wp-block-quote.is-large:where(:not(.is-style-plain)) cite,
.wp-block-quote.is-large:where(:not(.is-style-plain)) footer,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer {
  font-size: 1.125em;
  text-align: right;
}
.wp-block-quote > cite {
  display: block;
}
.wp-block-read-more {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.wp-block-read-more:where(:not([style*="text-decoration"])) {
  text-decoration: none;
}
.wp-block-read-more:where(:not([style*="text-decoration"])):active,
.wp-block-read-more:where(:not([style*="text-decoration"])):focus {
  text-decoration: none;
}
ul.wp-block-rss {
  list-style: none;
  padding: 0;
}
ul.wp-block-rss.wp-block-rss {
  box-sizing: border-box;
}
ul.wp-block-rss.alignleft {
  margin-right: 2em;
}
ul.wp-block-rss.alignright {
  margin-left: 2em;
}
ul.wp-block-rss.is-grid {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
ul.wp-block-rss.is-grid li {
  margin: 0 1em 1em 0;
  width: 100%;
}
@media (min-width: 600px) {
  ul.wp-block-rss.columns-2 li {
    width: calc(50% - 1em);
  }
  ul.wp-block-rss.columns-3 li {
    width: calc(33.33333% - 1em);
  }
  ul.wp-block-rss.columns-4 li {
    width: calc(25% - 1em);
  }
  ul.wp-block-rss.columns-5 li {
    width: calc(20% - 1em);
  }
  ul.wp-block-rss.columns-6 li {
    width: calc(16.66667% - 1em);
  }
}
.wp-block-rss__item-author,
.wp-block-rss__item-publish-date {
  display: block;
  font-size: 0.8125em;
}
.wp-block-search__button {
  margin-left: 10px;
  word-break: normal;
}
.wp-block-search__button.has-icon {
  line-height: 0;
}
.wp-block-search__button svg {
  height: 1.25em;
  min-height: 24px;
  min-width: 24px;
  width: 1.25em;
  fill: currentColor;
  vertical-align: text-bottom;
}
:where(.wp-block-search__button) {
  border: 1px solid #ccc;
  padding: 6px 10px;
}
.wp-block-search__inside-wrapper {
  display: flex;
  flex: auto;
  flex-wrap: nowrap;
  max-width: 100%;
}
.wp-block-search__label {
  width: 100%;
}
.wp-block-search__input {
  appearance: none;
  border: 1px solid #949494;
  flex-grow: 1;
  margin-left: 0;
  margin-right: 0;
  min-width: 3rem;
  padding: 8px;
  text-decoration: unset !important;
}
.wp-block-search.wp-block-search__button-only .wp-block-search__button {
  flex-shrink: 0;
  margin-left: 0;
  max-width: 100%;
}
.wp-block-search.wp-block-search__button-only
  .wp-block-search__button[aria-expanded="true"] {
  max-width: calc(100% - 100px);
}
.wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper {
  min-width: 0 !important;
  transition-property: width;
}
.wp-block-search.wp-block-search__button-only .wp-block-search__input {
  flex-basis: 100%;
  transition-duration: 0.3s;
}
.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden,
.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden
  .wp-block-search__inside-wrapper {
  overflow: hidden;
}
.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden
  .wp-block-search__input {
  border-left-width: 0 !important;
  border-right-width: 0 !important;
  flex-basis: 0;
  flex-grow: 0;
  margin: 0;
  min-width: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 0 !important;
}
:where(.wp-block-search__input) {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
  border: 1px solid #949494;
  box-sizing: border-box;
  padding: 4px;
}
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)
  .wp-block-search__input {
  border: none;
  border-radius: 0;
  padding: 0 4px;
}
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)
  .wp-block-search__input:focus {
  outline: none;
}
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)
  :where(.wp-block-search__button) {
  padding: 4px 8px;
}
.wp-block-search.aligncenter .wp-block-search__inside-wrapper {
  margin: auto;
}
.wp-block[data-align="right"]
  .wp-block-search.wp-block-search__button-only
  .wp-block-search__inside-wrapper {
  float: right;
}
.wp-block-separator {
  border: none;
  border-top: 2px solid;
}
:root :where(.wp-block-separator.is-style-dots) {
  height: auto;
  line-height: 1;
  text-align: center;
}
:root :where(.wp-block-separator.is-style-dots):before {
  color: currentColor;
  content: "¡¤¡¤¡¤";
  font-family: serif;
  font-size: 1.5em;
  letter-spacing: 2em;
  padding-left: 2em;
}
.wp-block-separator.is-style-dots {
  background: none !important;
  border: none !important;
}
.wp-block-site-logo {
  box-sizing: border-box;
  line-height: 0;
}
.wp-block-site-logo a {
  display: inline-block;
  line-height: 0;
}
.wp-block-site-logo.is-default-size img {
  height: auto;
  width: 120px;
}
.wp-block-site-logo img {
  height: auto;
  max-width: 100%;
}
.wp-block-site-logo a,
.wp-block-site-logo img {
  border-radius: inherit;
}
.wp-block-site-logo.aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
:root :where(.wp-block-site-logo.is-style-rounded) {
  border-radius: 9999px;
}
.wp-block-site-tagline,
.wp-block-site-title {
  box-sizing: border-box;
}
.wp-block-site-title :where(a) {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
}
.wp-block-social-links {
  background: none;
  box-sizing: border-box;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  text-indent: 0;
}
.wp-block-social-links .wp-social-link a,
.wp-block-social-links .wp-social-link a:hover {
  border-bottom: 0;
  box-shadow: none;
  text-decoration: none;
}
.wp-block-social-links .wp-social-link svg {
  height: 1em;
  width: 1em;
}
.wp-block-social-links .wp-social-link span:not(.screen-reader-text) {
  font-size: 0.65em;
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.wp-block-social-links.has-small-icon-size {
  font-size: 16px;
}
.wp-block-social-links,
.wp-block-social-links.has-normal-icon-size {
  font-size: 24px;
}
.wp-block-social-links.has-large-icon-size {
  font-size: 36px;
}
.wp-block-social-links.has-huge-icon-size {
  font-size: 48px;
}
.wp-block-social-links.aligncenter {
  display: flex;
  justify-content: center;
}
.wp-block-social-links.alignright {
  justify-content: flex-end;
}
.wp-block-social-link {
  border-radius: 9999px;
  display: block;
  height: auto;
  transition: transform 0.1s ease;
}
@media (prefers-reduced-motion: reduce) {
  .wp-block-social-link {
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
.wp-block-social-link a {
  align-items: center;
  display: flex;
  line-height: 0;
  transition: transform 0.1s ease;
}
.wp-block-social-link:hover {
  transform: scale(1.1);
}
.wp-block-social-links .wp-block-social-link.wp-social-link {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.wp-block-social-links
  .wp-block-social-link.wp-social-link
  .wp-block-social-link-anchor,
.wp-block-social-links
  .wp-block-social-link.wp-social-link
  .wp-block-social-link-anchor
  svg,
.wp-block-social-links
  .wp-block-social-link.wp-social-link
  .wp-block-social-link-anchor:active,
.wp-block-social-links
  .wp-block-social-link.wp-social-link
  .wp-block-social-link-anchor:hover,
.wp-block-social-links
  .wp-block-social-link.wp-social-link
  .wp-block-social-link-anchor:visited {
  color: currentColor;
  fill: currentColor;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link {
  background-color: #f0f0f0;
  color: #444;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-amazon {
  background-color: #f90;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-bandcamp {
  background-color: #1ea0c3;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-behance {
  background-color: #0757fe;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-bluesky {
  background-color: #0a7aff;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-codepen {
  background-color: #1e1f26;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-deviantart {
  background-color: #02e49b;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-dribbble {
  background-color: #e94c89;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-dropbox {
  background-color: #4280ff;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy {
  background-color: #f45800;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-facebook {
  background-color: #0866ff;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-fivehundredpx {
  background-color: #000;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-flickr {
  background-color: #0461dd;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-foursquare {
  background-color: #e65678;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-github {
  background-color: #24292d;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-goodreads {
  background-color: #eceadd;
  color: #382110;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-google {
  background-color: #ea4434;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-gravatar {
  background-color: #1d4fc4;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-instagram {
  background-color: #f00075;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-lastfm {
  background-color: #e21b24;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-linkedin {
  background-color: #0d66c2;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-mastodon {
  background-color: #3288d4;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-medium {
  background-color: #000;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-meetup {
  background-color: #f6405f;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-patreon {
  background-color: #000;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-pinterest {
  background-color: #e60122;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-pocket {
  background-color: #ef4155;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-reddit {
  background-color: #ff4500;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype {
  background-color: #0478d7;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-snapchat {
  background-color: #fefc00;
  color: #fff;
  stroke: #000;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-soundcloud {
  background-color: #ff5600;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-spotify {
  background-color: #1bd760;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-telegram {
  background-color: #2aabee;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-threads {
  background-color: #000;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-tiktok {
  background-color: #000;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-tumblr {
  background-color: #011835;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-twitch {
  background-color: #6440a4;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-twitter {
  background-color: #1da1f2;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo {
  background-color: #1eb7ea;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk {
  background-color: #4680c2;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-wordpress {
  background-color: #3499cd;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-whatsapp {
  background-color: #25d366;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x {
  background-color: #000;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp {
  background-color: #d32422;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-youtube {
  background-color: red;
  color: #fff;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link {
  background: none;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg {
  height: 1.25em;
  width: 1.25em;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon {
  color: #f90;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp {
  color: #1ea0c3;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance {
  color: #0757fe;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky {
  color: #0a7aff;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen {
  color: #1e1f26;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart {
  color: #02e49b;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble {
  color: #e94c89;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox {
  color: #4280ff;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy {
  color: #f45800;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook {
  color: #0866ff;
}
:where(.wp-block-social-links.is-style-logos-only)
  .wp-social-link-fivehundredpx {
  color: #000;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr {
  color: #0461dd;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare {
  color: #e65678;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github {
  color: #24292d;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads {
  color: #382110;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google {
  color: #ea4434;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar {
  color: #1d4fc4;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram {
  color: #f00075;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm {
  color: #e21b24;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin {
  color: #0d66c2;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon {
  color: #3288d4;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium {
  color: #000;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup {
  color: #f6405f;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon {
  color: #000;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest {
  color: #e60122;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket {
  color: #ef4155;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit {
  color: #ff4500;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype {
  color: #0478d7;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat {
  color: #fff;
  stroke: #000;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud {
  color: #ff5600;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify {
  color: #1bd760;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram {
  color: #2aabee;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads {
  color: #000;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok {
  color: #000;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr {
  color: #011835;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch {
  color: #6440a4;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter {
  color: #1da1f2;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo {
  color: #1eb7ea;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk {
  color: #4680c2;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp {
  color: #25d366;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress {
  color: #3499cd;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x {
  color: #000;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp {
  color: #d32422;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube {
  color: red;
}
.wp-block-social-links.is-style-pill-shape .wp-social-link {
  width: auto;
}
:root :where(.wp-block-social-links .wp-social-link a) {
  padding: 0.25em;
}
:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a) {
  padding: 0;
}
:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a) {
  padding-left: 0.66667em;
  padding-right: 0.66667em;
}
.wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color)
  .wp-social-link-snapchat
  .wp-block-social-link-label {
  color: #000;
}
.wp-block-spacer {
  clear: both;
}
.wp-block-tag-cloud {
  box-sizing: border-box;
}
.wp-block-tag-cloud.aligncenter {
  justify-content: center;
  text-align: center;
}
.wp-block-tag-cloud.alignfull {
  padding-left: 1em;
  padding-right: 1em;
}
.wp-block-tag-cloud a {
  display: inline-block;
  margin-right: 5px;
}
.wp-block-tag-cloud span {
  display: inline-block;
  margin-left: 5px;
  text-decoration: none;
}
:root :where(.wp-block-tag-cloud.is-style-outline) {
  display: flex;
  flex-wrap: wrap;
  gap: 1ch;
}
:root :where(.wp-block-tag-cloud.is-style-outline a) {
  border: 1px solid;
  font-size: unset !important;
  margin-right: 0;
  padding: 1ch 2ch;
  text-decoration: none !important;
}
.wp-block-table {
  overflow-x: auto;
}
.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}
.wp-block-table thead {
  border-bottom: 3px solid;
}
.wp-block-table tfoot {
  border-top: 3px solid;
}
.wp-block-table td,
.wp-block-table th {
  border: 1px solid;
  padding: 0.5em;
}
.wp-block-table .has-fixed-layout {
  table-layout: fixed;
  width: 100%;
}
.wp-block-table .has-fixed-layout td,
.wp-block-table .has-fixed-layout th {
  word-break: break-word;
}
.wp-block-table.aligncenter,
.wp-block-table.alignleft,
.wp-block-table.alignright {
  display: table;
  width: auto;
}
.wp-block-table.aligncenter td,
.wp-block-table.aligncenter th,
.wp-block-table.alignleft td,
.wp-block-table.alignleft th,
.wp-block-table.alignright td,
.wp-block-table.alignright th {
  word-break: break-word;
}
.wp-block-table .has-subtle-light-gray-background-color {
  background-color: #f3f4f5;
}
.wp-block-table .has-subtle-pale-green-background-color {
  background-color: #e9fbe5;
}
.wp-block-table .has-subtle-pale-blue-background-color {
  background-color: #e7f5fe;
}
.wp-block-table .has-subtle-pale-pink-background-color {
  background-color: #fcf0ef;
}
.wp-block-table.is-style-stripes {
  background-color: initial;
  border-bottom: 1px solid #f0f0f0;
  border-collapse: inherit;
  border-spacing: 0;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f0f0f0;
}
.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color
  tbody
  tr:nth-child(odd) {
  background-color: #f3f4f5;
}
.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color
  tbody
  tr:nth-child(odd) {
  background-color: #e9fbe5;
}
.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color
  tbody
  tr:nth-child(odd) {
  background-color: #e7f5fe;
}
.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color
  tbody
  tr:nth-child(odd) {
  background-color: #fcf0ef;
}
.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
  border-color: #0000;
}
.wp-block-table .has-border-color td,
.wp-block-table .has-border-color th,
.wp-block-table .has-border-color tr,
.wp-block-table .has-border-color > * {
  border-color: inherit;
}
.wp-block-table table[style*="border-top-color"] tr:first-child,
.wp-block-table table[style*="border-top-color"] tr:first-child td,
.wp-block-table table[style*="border-top-color"] tr:first-child th,
.wp-block-table table[style*="border-top-color"] > *,
.wp-block-table table[style*="border-top-color"] > * td,
.wp-block-table table[style*="border-top-color"] > * th {
  border-top-color: inherit;
}
.wp-block-table table[style*="border-top-color"] tr:not(:first-child) {
  border-top-color: initial;
}
.wp-block-table table[style*="border-right-color"] td:last-child,
.wp-block-table table[style*="border-right-color"] th,
.wp-block-table table[style*="border-right-color"] tr,
.wp-block-table table[style*="border-right-color"] > * {
  border-right-color: inherit;
}
.wp-block-table table[style*="border-bottom-color"] tr:last-child,
.wp-block-table table[style*="border-bottom-color"] tr:last-child td,
.wp-block-table table[style*="border-bottom-color"] tr:last-child th,
.wp-block-table table[style*="border-bottom-color"] > *,
.wp-block-table table[style*="border-bottom-color"] > * td,
.wp-block-table table[style*="border-bottom-color"] > * th {
  border-bottom-color: inherit;
}
.wp-block-table table[style*="border-bottom-color"] tr:not(:last-child) {
  border-bottom-color: initial;
}
.wp-block-table table[style*="border-left-color"] td:first-child,
.wp-block-table table[style*="border-left-color"] th,
.wp-block-table table[style*="border-left-color"] tr,
.wp-block-table table[style*="border-left-color"] > * {
  border-left-color: inherit;
}
.wp-block-table table[style*="border-style"] td,
.wp-block-table table[style*="border-style"] th,
.wp-block-table table[style*="border-style"] tr,
.wp-block-table table[style*="border-style"] > * {
  border-style: inherit;
}
.wp-block-table table[style*="border-width"] td,
.wp-block-table table[style*="border-width"] th,
.wp-block-table table[style*="border-width"] tr,
.wp-block-table table[style*="border-width"] > * {
  border-style: inherit;
  border-width: inherit;
}
:root :where(.wp-block-table-of-contents) {
  box-sizing: border-box;
}
:where(.wp-block-term-description) {
  box-sizing: border-box;
  margin-bottom: var(--wp--style--block-gap);
  margin-top: var(--wp--style--block-gap);
}
.wp-block-term-description p {
  margin-bottom: 0;
  margin-top: 0;
}
.wp-block-text-columns,
.wp-block-text-columns.aligncenter {
  display: flex;
}
.wp-block-text-columns .wp-block-column {
  margin: 0 1em;
  padding: 0;
}
.wp-block-text-columns .wp-block-column:first-child {
  margin-left: 0;
}
.wp-block-text-columns .wp-block-column:last-child {
  margin-right: 0;
}
.wp-block-text-columns.columns-2 .wp-block-column {
  width: 50%;
}
.wp-block-text-columns.columns-3 .wp-block-column {
  width: 33.33333%;
}
.wp-block-text-columns.columns-4 .wp-block-column {
  width: 25%;
}
pre.wp-block-verse {
  overflow: auto;
  white-space: pre-wrap;
}
:where(pre.wp-block-verse) {
  font-family: inherit;
}
.wp-block-video {
  box-sizing: border-box;
}
.wp-block-video video {
  vertical-align: middle;
  width: 100%;
}
@supports (position: sticky) {
  .wp-block-video [poster] {
    object-fit: cover;
  }
}
.wp-block-video.aligncenter {
  text-align: center;
}
.wp-block-video :where(figcaption) {
  margin-bottom: 1em;
  margin-top: 0.5em;
}
.editor-styles-wrapper,
.entry-content {
  counter-reset: footnotes;
}
a[data-fn].fn {
  counter-increment: footnotes;
  display: inline-flex;
  font-size: smaller;
  text-decoration: none;
  text-indent: -9999999px;
  vertical-align: super;
}
a[data-fn].fn:after {
  content: "[" counter(footnotes) "]";
  float: left;
  text-indent: 0;
}
.wp-element-button {
  cursor: pointer;
}
:root {
  --wp--preset--font-size--normal: 16px;
  --wp--preset--font-size--huge: 42px;
}
:root .has-very-light-gray-background-color {
  background-color: #eee;
}
:root .has-very-dark-gray-background-color {
  background-color: #313131;
}
:root .has-very-light-gray-color {
  color: #eee;
}
:root .has-very-dark-gray-color {
  color: #313131;
}
:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
  background: linear-gradient(135deg, #00d084, #0693e3);
}
:root .has-purple-crush-gradient-background {
  background: linear-gradient(135deg, #34e2e4, #4721fb 50%, #ab1dfe);
}
:root .has-hazy-dawn-gradient-background {
  background: linear-gradient(135deg, #faaca8, #dad0ec);
}
:root .has-subdued-olive-gradient-background {
  background: linear-gradient(135deg, #fafae1, #67a671);
}
:root .has-atomic-cream-gradient-background {
  background: linear-gradient(135deg, #fdd79a, #004a59);
}
:root .has-nightshade-gradient-background {
  background: linear-gradient(135deg, #330968, #31cdcf);
}
:root .has-midnight-gradient-background {
  background: linear-gradient(135deg, #020381, #2874fc);
}
.has-regular-font-size {
  font-size: 1em;
}
.has-larger-font-size {
  font-size: 2.625em;
}
.has-normal-font-size {
  font-size: var(--wp--preset--font-size--normal);
}
.has-huge-font-size {
  font-size: var(--wp--preset--font-size--huge);
}
.has-text-align-center {
  text-align: center;
}
.has-text-align-left {
  text-align: left;
}
.has-text-align-right {
  text-align: right;
}
#end-resizable-editor-section {
  display: none;
}
.aligncenter {
  clear: both;
}
.items-justified-left {
  justify-content: flex-start;
}
.items-justified-center {
  justify-content: center;
}
.items-justified-right {
  justify-content: flex-end;
}
.items-justified-space-between {
  justify-content: space-between;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #ddd;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
html :where(.has-border-color) {
  border-style: solid;
}
html :where([style*="border-top-color"]) {
  border-top-style: solid;
}
html :where([style*="border-right-color"]) {
  border-right-style: solid;
}
html :where([style*="border-bottom-color"]) {
  border-bottom-style: solid;
}
html :where([style*="border-left-color"]) {
  border-left-style: solid;
}
html :where([style*="border-width"]) {
  border-style: solid;
}
html :where([style*="border-top-width"]) {
  border-top-style: solid;
}
html :where([style*="border-right-width"]) {
  border-right-style: solid;
}
html :where([style*="border-bottom-width"]) {
  border-bottom-style: solid;
}
html :where([style*="border-left-width"]) {
  border-left-style: solid;
}
html :where(img[class*="wp-image-"]) {
  height: auto;
  max-width: 100%;
}
:where(figure) {
  margin: 0 0 1em;
}
html :where(.is-position-sticky) {
  --wp-admin--admin-bar--position-offset: var(
    --wp-admin--admin-bar--height,
    0px
  );
}
@media screen and (max-width: 600px) {
  html :where(.is-position-sticky) {
    --wp-admin--admin-bar--position-offset: 0px;
  }
}



.tax-product_brand .brand-description {
  overflow: hidden;
  zoom: 1;
}
.tax-product_brand .brand-description img.brand-thumbnail {
  width: 25%;
  float: right;
}
.tax-product_brand .brand-description .text {
  width: 72%;
  float: left;
}
.widget_brand_description img {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0 0 1em;
}
ul.brand-thumbnails {
  margin-left: 0;
  margin-bottom: 0;
  clear: both;
  list-style: none;
}
ul.brand-thumbnails:before {
  clear: both;
  content: "";
  display: table;
}
ul.brand-thumbnails:after {
  clear: both;
  content: "";
  display: table;
}
ul.brand-thumbnails li {
  float: left;
  margin: 0 3.8% 1em 0;
  padding: 0;
  position: relative;
  width: 22.05%;
}
ul.brand-thumbnails.fluid-columns li {
  width: auto;
}
ul.brand-thumbnails:not(.fluid-columns) li.first {
  clear: both;
}
ul.brand-thumbnails:not(.fluid-columns) li.last {
  margin-right: 0;
}
ul.brand-thumbnails.columns-1 li {
  width: 100%;
  margin-right: 0;
}
ul.brand-thumbnails.columns-2 li {
  width: 48%;
}
ul.brand-thumbnails.columns-3 li {
  width: 30.75%;
}
ul.brand-thumbnails.columns-5 li {
  width: 16.95%;
}
ul.brand-thumbnails.columns-6 li {
  width: 13.5%;
}
.brand-thumbnails li img {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
}
@media screen and (max-width: 768px) {
  ul.brand-thumbnails:not(.fluid-columns) li {
    width: 48% !important;
  }
  ul.brand-thumbnails:not(.fluid-columns) li.first {
    clear: none;
  }
  ul.brand-thumbnails:not(.fluid-columns) li.last {
    margin-right: 3.8%;
  }
  ul.brand-thumbnails:not(.fluid-columns) li:nth-of-type(odd) {
    clear: both;
  }
  ul.brand-thumbnails:not(.fluid-columns) li:nth-of-type(even) {
    margin-right: 0;
  }
}
.brand-thumbnails-description li {
  text-align: center;
}
.brand-thumbnails-description li .term-thumbnail img {
  display: inline;
}
.brand-thumbnails-description li .term-description {
  margin-top: 1em;
  text-align: left;
}
#brands_a_z h3:target {
  text-decoration: underline;
}
ul.brands_index {
  list-style: none outside;
  overflow: hidden;
  zoom: 1;
}
ul.brands_index li {
  float: left;
  margin: 0 2px 2px 0;
}
ul.brands_index li a,
ul.brands_index li span {
  border: 1px solid #ccc;
  padding: 6px;
  line-height: 1em;
  float: left;
  text-decoration: none;
}
ul.brands_index li span {
  border-color: #eee;
  color: #ddd;
}
ul.brands_index li a:hover {
  border-width: 2px;
  padding: 5px;
  text-decoration: none;
}
ul.brands_index li a.active {
  border-width: 2px;
  padding: 5px;
}
div#brands_a_z a.top {
  border: 1px solid #ccc;
  padding: 4px;
  line-height: 1em;
  float: right;
  text-decoration: none;
  font-size: 0.8em;
}


.tax-product_brand .brand-description {
  overflow: hidden;
  zoom: 1;
}
.tax-product_brand .brand-description img.brand-thumbnail {
  width: 25%;
  float: right;
}
.tax-product_brand .brand-description .text {
  width: 72%;
  float: left;
}
.widget_brand_description img {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0 0 1em;
}
ul.brand-thumbnails {
  margin-left: 0;
  margin-bottom: 0;
  clear: both;
  list-style: none;
}
ul.brand-thumbnails:before {
  clear: both;
  content: "";
  display: table;
}
ul.brand-thumbnails:after {
  clear: both;
  content: "";
  display: table;
}
ul.brand-thumbnails li {
  float: left;
  margin: 0 3.8% 1em 0;
  padding: 0;
  position: relative;
  width: 22.05%;
}
ul.brand-thumbnails.fluid-columns li {
  width: auto;
}
ul.brand-thumbnails:not(.fluid-columns) li.first {
  clear: both;
}
ul.brand-thumbnails:not(.fluid-columns) li.last {
  margin-right: 0;
}
ul.brand-thumbnails.columns-1 li {
  width: 100%;
  margin-right: 0;
}
ul.brand-thumbnails.columns-2 li {
  width: 48%;
}
ul.brand-thumbnails.columns-3 li {
  width: 30.75%;
}
ul.brand-thumbnails.columns-5 li {
  width: 16.95%;
}
ul.brand-thumbnails.columns-6 li {
  width: 13.5%;
}
.brand-thumbnails li img {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
}
@media screen and (max-width: 768px) {
  ul.brand-thumbnails:not(.fluid-columns) li {
    width: 48% !important;
  }
  ul.brand-thumbnails:not(.fluid-columns) li.first {
    clear: none;
  }
  ul.brand-thumbnails:not(.fluid-columns) li.last {
    margin-right: 3.8%;
  }
  ul.brand-thumbnails:not(.fluid-columns) li:nth-of-type(odd) {
    clear: both;
  }
  ul.brand-thumbnails:not(.fluid-columns) li:nth-of-type(even) {
    margin-right: 0;
  }
}
.brand-thumbnails-description li {
  text-align: center;
}
.brand-thumbnails-description li .term-thumbnail img {
  display: inline;
}
.brand-thumbnails-description li .term-description {
  margin-top: 1em;
  text-align: left;
}
#brands_a_z h3:target {
  text-decoration: underline;
}
ul.brands_index {
  list-style: none outside;
  overflow: hidden;
  zoom: 1;
}
ul.brands_index li {
  float: left;
  margin: 0 2px 2px 0;
}
ul.brands_index li a,
ul.brands_index li span {
  border: 1px solid #ccc;
  padding: 6px;
  line-height: 1em;
  float: left;
  text-decoration: none;
}
ul.brands_index li span {
  border-color: #eee;
  color: #ddd;
}
ul.brands_index li a:hover {
  border-width: 2px;
  padding: 5px;
  text-decoration: none;
}
ul.brands_index li a.active {
  border-width: 2px;
  padding: 5px;
}
div#brands_a_z a.top {
  border: 1px solid #ccc;
  padding: 4px;
  line-height: 1em;
  float: right;
  text-decoration: none;
  font-size: 0.8em;
}



.elementor-298
  .elementor-element.elementor-element-6507caf
  > .elementor-container
  > .elementor-column
  > .elementor-widget-wrap {
  align-content: center;
  align-items: center;
}
.elementor-298
  .elementor-element.elementor-element-6507caf
  > .elementor-background-overlay {
  background-color: transparent;
  background-image: linear-gradient(180deg, #000000 0%, #00000000 100%);
  opacity: 0.35;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.elementor-298 .elementor-element.elementor-element-6507caf {
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: #ffffff24;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 20px 0px 20px 0px;
}
.elementor-298 .elementor-element.elementor-element-2c4d0b0b {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.elementor-298
  .elementor-element.elementor-element-1aeee2f2.elementor-column
  > .elementor-widget-wrap {
  justify-content: flex-end;
}
.elementor-298 .elementor-element.elementor-element-bde8a50 {
  width: auto;
  max-width: auto;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.elementor-298
  .elementor-element.elementor-element-bde8a50
  > .elementor-widget-container {
  margin: 0px 25px 0px 0px;
}
.elementor-298 .elementor-element.elementor-element-1740dd14 {
  width: auto;
  max-width: auto;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.elementor-298
  .elementor-element.elementor-element-1740dd14
  > .elementor-widget-container {
  margin: 0px 25px 0px 0px;
}
.elementor-298 .elementor-element.elementor-element-75e3dff {
  width: auto;
  max-width: auto;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.elementor-298
  .elementor-element.elementor-element-7396ac94
  > .elementor-container
  > .elementor-column
  > .elementor-widget-wrap {
  align-content: center;
  align-items: center;
}
.elementor-298 .elementor-element.elementor-element-7396ac94 {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 15px 0px 15px 0px;
}
.elementor-298
  .elementor-element.elementor-element-7396ac94
  > .elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.elementor-298 .elementor-element.elementor-element-4b2fb95b {
  width: auto;
  max-width: auto;
}
.elementor-298
  .elementor-element.elementor-element-4b2fb95b
  > .elementor-widget-container {
  margin: 0px 30px 0px 0px;
}
.elementor-298 .elementor-element.elementor-element-93b4c8c {
  width: auto;
  max-width: auto;
}
.elementor-298 .elementor-element.elementor-element-6f19c08e img {
  width: 190px;
}
.elementor-298
  .elementor-element.elementor-element-373d1868.elementor-column
  > .elementor-widget-wrap {
  justify-content: flex-end;
}
.elementor-298 .elementor-element.elementor-element-e9a1a8c {
  width: auto;
  max-width: auto;
  font-size: 15px;
}
.elementor-298
  .elementor-element.elementor-element-e9a1a8c
  > .elementor-widget-container {
  margin: 0px 50px 0px 0px;
}
.elementor-298 .elementor-element.elementor-element-3394ea0c {
  width: auto;
  max-width: auto;
}
.elementor-298
  .elementor-element.elementor-element-37bd14d9
  > .elementor-container
  > .elementor-column
  > .elementor-widget-wrap {
  align-content: center;
  align-items: center;
}
.elementor-298
  .elementor-element.elementor-element-37bd14d9
  > .elementor-background-overlay {
  background-color: transparent;
  background-image: linear-gradient(180deg, #000000 0%, #00000000 100%);
  opacity: 0.5;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.elementor-298 .elementor-element.elementor-element-37bd14d9 {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 15px 0px 15px 0px;
}
.elementor-298 .elementor-element.elementor-element-2e702765 {
  width: auto;
  max-width: auto;
}
.elementor-298
  .elementor-element.elementor-element-2e702765
  > .elementor-widget-container {
  margin: 0px 30px 0px 0px;
}
.elementor-298 .elementor-element.elementor-element-6dd6931f {
  width: auto;
  max-width: auto;
}
.elementor-298 .elementor-element.elementor-element-6dd6931f img {
  width: 190px;
}
.elementor-298
  .elementor-element.elementor-element-70da6a1.elementor-column
  > .elementor-widget-wrap {
  justify-content: flex-end;
}
.elementor-298 .elementor-element.elementor-element-3205728c {
  width: auto;
  max-width: auto;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .elementor-298
    .elementor-element.elementor-element-6dd6931f
    > .elementor-widget-container {
    margin: 10px 0px 0px 0px;
  }
}
@media (max-width: 767px) {
  .elementor-298 .elementor-element.elementor-element-60ed2d53 {
    width: 25%;
  }
  .elementor-298 .elementor-element.elementor-element-2ad02ebc {
    width: 50%;
  }
  .elementor-298 .elementor-element.elementor-element-6dd6931f img {
    width: 145px;
  }
  .elementor-298 .elementor-element.elementor-element-70da6a1 {
    width: 25%;
  }
}

.elementor-150
  .elementor-element.elementor-element-1850564f:not(
    .elementor-motion-effects-element-type-background
  ),
.elementor-150
  .elementor-element.elementor-element-1850564f
  > .elementor-motion-effects-container
  > .elementor-motion-effects-layer {
   ;
  
  background-position: center center;
  background-size: cover;
}
.elementor-150
  .elementor-element.elementor-element-1850564f
  > .elementor-background-overlay {
  background-color: #000000;
  opacity: 0.59;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.elementor-150
  .elementor-element.elementor-element-1850564f
  > .elementor-container {
  min-height: 100vh;
}
.elementor-150 .elementor-element.elementor-element-1850564f {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.elementor-150
  .elementor-element.elementor-element-3e4d3e40.elementor-column
  > .elementor-widget-wrap {
  justify-content: center;
}
.elementor-150
  .elementor-element.elementor-element-c0c2de1
  > .elementor-widget-container {
  padding: 200px 0px 0px 0px;
}
.elementor-150 .elementor-element.elementor-element-c0c2de1 .cs-title-wrap {
  max-width: 960px;
}
.elementor-150 .elementor-element.elementor-element-c0c2de1 .cs-title {
  font-size: 42px;
 
	font-family: "Montserrat", serif;
}
.elementor-150 .elementor-element.elementor-element-c0c2de1 .cs-title-text {
  font-size: 21px;
}
.elementor-150 .elementor-element.elementor-element-5dc39db7 {
  width: var(--container-widget-width, 1000px);
  max-width: 1000px;
  --container-widget-width: 1000px;
  --container-widget-flex-grow: 0;
}
.elementor-150
  .elementor-element.elementor-element-5dc39db7
  > .elementor-widget-container {
  margin: 20px 0px 80px 0px;
}
.elementor-150
  .elementor-element.elementor-element-5dc39db7
  .cs-reservation-form {
  --form-bd: #b99d75;
}
.elementor-150
  .elementor-element.elementor-element-216ad879
  > .elementor-container
  > .elementor-column
  > .elementor-widget-wrap {
  align-content: center;
  align-items: center;
}
.elementor-150 .elementor-element.elementor-element-216ad879 {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 120px 0px 120px 0px;
}
.elementor-150
  .elementor-element.elementor-element-216ad879
  > .elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.elementor-150
  .elementor-element.elementor-element-1ee2a4
  > .elementor-widget-container {
  margin: 0% -55% 0% 0%;
}
.elementor-150 .elementor-element.elementor-element-1ee2a4 {
  text-align: left;
}
.elementor-150
  .elementor-element.elementor-element-1e4a1518
  > .elementor-element-populated {
  padding: 240px 0px 0px 0px;
}
.elementor-150 .elementor-element.elementor-element-90c1058 {
  text-align: right;
}
.elementor-150
  .elementor-element.elementor-element-2caae607
  > .elementor-element-populated {
  padding: 0px 0px 0px 96px;
}
.elementor-150 .elementor-element.elementor-element-2cc7cb23 .cs-title {
  font-size: 56px;
  line-height: 1.2em;
}
.elementor-150
  .elementor-element.elementor-element-219b736d:not(
    .elementor-motion-effects-element-type-background
  ),
.elementor-150
  .elementor-element.elementor-element-219b736d
  > .elementor-motion-effects-container
  > .elementor-motion-effects-layer {
    background-color: rgb(0 0 0 / 38%);
    background-image: url(../images/video-bg.jpg)  ;
    background-position: center center;
    background-size: cover;
  }


.elementor-150
  .elementor-element.elementor-element-219b736d
  > .elementor-background-overlay {
  background-color: #000000;
  opacity: 0.1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.elementor-150
  .elementor-element.elementor-element-219b736d
  > .elementor-container {
  min-height: 100vh;
}
.elementor-150 .elementor-element.elementor-element-219b736d {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.elementor-150 .elementor-element.elementor-element-3dce42c3 {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 110px 0px 50px 0px;
}
.elementor-150
  .elementor-element.elementor-element-3dce42c3
  > .elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.elementor-150 .elementor-element.elementor-element-39379cc {
  padding: 0px 0px 110px 0px;
}
.elementor-150
  .elementor-element.elementor-element-2e9df520
  > .elementor-element-populated {
  padding: 0px 48px 0px 0px;
}
.elementor-150 .elementor-element.elementor-element-2ab9e15d .cs-fancy-card {
  --content-bg-hover: #aa8b5f;
}
.elementor-150
  .elementor-element.elementor-element-2ab9e15d
  .cs-fc-title.cs-title {
  font-size: 24px;
}
.elementor-150
  .elementor-element.elementor-element-7416056c
  > .elementor-element-populated {
  padding: 0px 24px 0px 24px;
}
.elementor-150 .elementor-element.elementor-element-6b5f8777 .cs-fancy-card {
  --content-bg-hover: #aa8b5f;
}
.elementor-150
  .elementor-element.elementor-element-6b5f8777
  .cs-fc-title.cs-title {
  font-size: 24px;
}
.elementor-150
  .elementor-element.elementor-element-6b1f163d
  > .elementor-element-populated {
  padding: 0px 0px 0px 48px;
}
.elementor-150 .elementor-element.elementor-element-2df69e98 .cs-fancy-card {
  --content-bg-hover: #aa8b5f;
}
.elementor-150
  .elementor-element.elementor-element-2df69e98
  .cs-fc-title.cs-title {
  font-size: 24px;
}
.elementor-150
  .elementor-element.elementor-element-baa5966:not(
    .elementor-motion-effects-element-type-background
  ),
.elementor-150
  .elementor-element.elementor-element-baa5966
  > .elementor-motion-effects-container
  > .elementor-motion-effects-layer {
  background-color: #4d4a46;
}
.elementor-150 .elementor-element.elementor-element-baa5966 {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: 140px;
  margin-bottom: 100px;
}
.elementor-150
  .elementor-element.elementor-element-baa5966
  > .elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.elementor-150
  .elementor-element.elementor-element-7bb9f20e
  > .elementor-widget-container {
 /** margin: -140px 0px 0px 0px; */
}
.elementor-150
  .elementor-element.elementor-element-269c63bc
  > .elementor-element-populated {
  padding: 0px 96px 0px 96px;
}
.elementor-150
  .elementor-element.elementor-element-372678fb
  > .elementor-widget-container {
  margin: 140px 0px 80px 0px;
}
.elementor-150 .elementor-element.elementor-element-372678fb .cs-title {
  font-size: 56px;
  line-height: 1.2em;
}
.elementor-150
  .elementor-element.elementor-element-79b07533
  > .elementor-widget-container {
  margin: 0px -96px -270px 0px;
}
.elementor-150 .elementor-element.elementor-element-79b07533 {
  z-index: 9;
}
.elementor-150 .elementor-element.elementor-element-3b7c9a5b {
  padding: 0px 0px 110px 0px;
}
.elementor-150 .elementor-element.elementor-element-1b056fc {
  width: var(--container-widget-width, 51%);
  max-width: 51%;
  --container-widget-width: 51%;
  --container-widget-flex-grow: 0;
}
.elementor-150
  .elementor-element.elementor-element-1b056fc
  > .elementor-widget-container {
  margin: 0px 0px 100px 0px;
}
.elementor-150 .elementor-element.elementor-element-1b056fc .cs-title {
  font-size: 52px;
  line-height: 1.2em;
}
.elementor-150
  .elementor-element.elementor-element-3c59f2a8
  .cs-fancy-card
  .cs-fc-content {
  padding: 80px 80px 80px 80px;
}
.elementor-150 .elementor-element.elementor-element-3c59f2a8 .cs-subtitle {
  margin: 0px 0px 15px 0px;
}
.elementor-150
  .elementor-element.elementor-element-3c59f2a8
  .cs-fc-title.cs-title {
  font-size: 36px;
}
.elementor-150 .elementor-element.elementor-element-3c59f2a8 .cs-fc-text {
  color: #cfcfcf;
  font-size: 17px;
  margin: 15px 0px 20px 0px;
}
.elementor-150
  .elementor-element.elementor-element-1506861e
  > .elementor-widget-container {
  margin: -20px 0px 0px 0px;
}
.elementor-150
  .elementor-element.elementor-element-1506861e
  .cs-fancy-card
  .cs-fc-content {
  padding: 80px 80px 80px 80px;
}
.elementor-150 .elementor-element.elementor-element-1506861e .cs-subtitle {
  margin: 0px 0px 15px 0px;
}
.elementor-150
  .elementor-element.elementor-element-1506861e
  .cs-fc-title.cs-title {
  font-size: 36px;
}
.elementor-150 .elementor-element.elementor-element-1506861e .cs-fc-text {
  color: #cfcfcf;
  font-size: 17px;
  margin: 15px 0px 20px 0px;
}
.elementor-150
  .elementor-element.elementor-element-744ffb12
  > .elementor-widget-container {
  margin: -20px 0px 0px 0px;
}
.elementor-150
  .elementor-element.elementor-element-744ffb12
  .cs-fancy-card
  .cs-fc-content {
  padding: 80px 80px 80px 80px;
}
.elementor-150 .elementor-element.elementor-element-744ffb12 .cs-subtitle {
  margin: 0px 0px 15px 0px;
}
.elementor-150
  .elementor-element.elementor-element-744ffb12
  .cs-fc-title.cs-title {
  font-size: 36px;
}
.elementor-150 .elementor-element.elementor-element-744ffb12 .cs-fc-text {
  color: #cfcfcf;
  font-size: 17px;
  margin: 15px 0px 20px 0px;
}
.elementor-150
  .elementor-element.elementor-element-053759f:not(
    .elementor-motion-effects-element-type-background
  ),
.elementor-150
  .elementor-element.elementor-element-053759f
  > .elementor-motion-effects-container
  > .elementor-motion-effects-layer {
  /* background-image: url("../images/home-invest.jpg");*/ 
  background-position: center center;
  background-size: cover;
	/* background: #211b16; */
}




.elementor-150
  .elementor-element.elementor-element-053759f
  > .elementor-background-overlay {
  background-color: #000000;
  opacity: 0.5;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.elementor-150 .elementor-element.elementor-element-053759f {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
        padding: 80px 0px 300px 0px;

}
.elementor-150 .elementor-element.elementor-element-439e26f {
  width: var(--container-widget-width, 51%);
  max-width: 51%;
  --container-widget-width: 51%;
  --container-widget-flex-grow: 0;
}
.elementor-150 .elementor-element.elementor-element-439e26f .cs-title {
  font-size: 52px;
  line-height: 1.2em;
}
.elementor-150 .elementor-element.elementor-element-c5bba75 {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: -260px;
  margin-bottom: 0px;
}
.elementor-150
  .elementor-element.elementor-element-c5bba75
  > .elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.elementor-150
  .elementor-element.elementor-element-7cc864d:not(
    .elementor-motion-effects-element-type-background
  )
  > .elementor-widget-wrap,
.elementor-150
  .elementor-element.elementor-element-7cc864d
  > .elementor-widget-wrap
  > .elementor-motion-effects-container
  > .elementor-motion-effects-layer {
  background-color: #211b16;
  background-image: url("../images/ivs.jpg");
    background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.elementor-150
  .elementor-element.elementor-element-7cc864d
  > .elementor-element-populated {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.elementor-150
  .elementor-element.elementor-element-7cc864d
  > .elementor-element-populated
  > .elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.elementor-150 .elementor-element.elementor-element-9107fab {
  --spacer-size: 250px;
}
.elementor-150
  .elementor-element.elementor-element-c7401ed:not(
    .elementor-motion-effects-element-type-background
  )
  > .elementor-widget-wrap,
.elementor-150
  .elementor-element.elementor-element-c7401ed
  > .elementor-widget-wrap
  > .elementor-motion-effects-container
  > .elementor-motion-effects-layer {
  background-color: #4d4a46;
}
.elementor-150
  .elementor-element.elementor-element-c7401ed
  > .elementor-element-populated {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 96px 96px 96px 96px;
}
.elementor-150
  .elementor-element.elementor-element-c7401ed
  > .elementor-element-populated
  > .elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
body:not(.rtl)
  .elementor-150
  .elementor-element.elementor-element-fb84194
  .elementor-star-rating
  i:not(:last-of-type) {
  margin-right: 6px;
}
body.rtl
  .elementor-150
  .elementor-element.elementor-element-fb84194
  .elementor-star-rating
  i:not(:last-of-type) {
  margin-left: 6px;
}
.elementor-150
  .elementor-element.elementor-element-fb84194
  .elementor-star-rating
  i:before {
  color: #e6b673;
}
.elementor-150 .elementor-element.elementor-element-22114cd {
  padding: 110px 0px 50px 0px;
}
.elementor-150 .elementor-element.elementor-element-e57c1e1 .cs-title-wrap {
  max-width: 680px;
}
.elementor-150 .elementor-element.elementor-element-e57c1e1 .cs-title {
  font-size: 56px;
  line-height: 1.2em;
}
.elementor-150 .elementor-element.elementor-element-6e017b97 {
  padding: 0px 0px 110px 0px;
}
.elementor-150
  .elementor-element.elementor-element-15ca9258
  > .elementor-element-populated {
  padding: 0px 48px 0px 0px;
}
.elementor-150
  .elementor-element.elementor-element-651f3b6d
  > .elementor-widget-container {
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #b99d75;
}
.elementor-150 .elementor-element.elementor-element-651f3b6d .cs-cta-content {
  padding: 25px 25px 25px 25px;
}
.elementor-150
  .elementor-element.elementor-element-651f3b6d
  .cs-cta-title.cs-title {
  font-size: 30px;
}
.elementor-150
  .elementor-element.elementor-element-651f3b6d
  .cs-cta-btn
  .button {
  font-family: "Jost", Sans-serif;
}
.elementor-150
  .elementor-element.elementor-element-4e7b1b05
  > .elementor-element-populated {
  padding: 50px 24px 0px 24px;
}
.elementor-150
  .elementor-element.elementor-element-cab4cc0
  > .elementor-widget-container {
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #b99d75;
}
.elementor-150 .elementor-element.elementor-element-cab4cc0 .cs-cta-content {
  padding: 25px 25px 25px 25px;
}
.elementor-150
  .elementor-element.elementor-element-cab4cc0
  .cs-cta-title.cs-title {
  font-size: 30px;
}
.elementor-150
  .elementor-element.elementor-element-cab4cc0
  .cs-cta-btn
  .button {
  font-family: "Jost", Sans-serif;
}
.elementor-150
  .elementor-element.elementor-element-6819ec8d
  > .elementor-element-populated {
  padding: 0px 0px 0px 48px;
}
.elementor-150
  .elementor-element.elementor-element-58053522
  > .elementor-widget-container {
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #b99d75;
}
.elementor-150 .elementor-element.elementor-element-58053522 .cs-cta-content {
  padding: 25px 25px 25px 25px;
}
.elementor-150
  .elementor-element.elementor-element-58053522
  .cs-cta-title.cs-title {
  font-size: 30px;
}
.elementor-150
  .elementor-element.elementor-element-58053522
  .cs-cta-btn
  .button {
  font-family: "Jost", Sans-serif;
}
@media (min-width: 768px) {
  .elementor-150 .elementor-element.elementor-element-d4c2387 {
    width: 15.199%;
  }
  .elementor-150 .elementor-element.elementor-element-7cc864d {
    width: 34.801%;
  }
}
@media (max-width: 1024px) {
  .elementor-150
    .elementor-element.elementor-element-c0c2de1
    > .elementor-widget-container {
    padding: 140px 0px 0px 0px;
  }
  .elementor-150 .elementor-element.elementor-element-c0c2de1 .cs-title {
    font-size: 48px;
  }
  .elementor-150 .elementor-element.elementor-element-216ad879 {
    padding: 80px 0px 80px 0px;
  }
  .elementor-150
    .elementor-element.elementor-element-2caae607
    > .elementor-element-populated {
    padding: 50px 0px 0px 0px;
  }
  .elementor-150 .elementor-element.elementor-element-2cc7cb23 .cs-title {
    font-size: 36px;
  }
  .elementor-150
    .elementor-element.elementor-element-219b736d
    > .elementor-container {
    min-height: 70vh;
  }
  .elementor-150 .elementor-element.elementor-element-3dce42c3 {
    padding: 80px 0px 40px 0px;
  }
  .elementor-150 .elementor-element.elementor-element-39379cc {
    padding: 0px 0px 80px 0px;
  }
  .elementor-150
    .elementor-element.elementor-element-2e9df520
    > .elementor-element-populated {
    padding: 0px 0px 40px 0px;
  }
  .elementor-150
    .elementor-element.elementor-element-7416056c
    > .elementor-element-populated {
    padding: 0px 0px 40px 0px;
  }
  .elementor-150
    .elementor-element.elementor-element-6b1f163d
    > .elementor-element-populated {
    padding: 0px 0px 0px 0px;
  }
  .elementor-150 .elementor-element.elementor-element-baa5966 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .elementor-150
    .elementor-element.elementor-element-7bb9f20e
    > .elementor-widget-container {
    margin: 0px 0px 0px 0px;
  }
  .elementor-150
    .elementor-element.elementor-element-269c63bc
    > .elementor-element-populated {
    padding: 0% 8% 0% 8%;
  }
  .elementor-150
    .elementor-element.elementor-element-372678fb
    > .elementor-widget-container {
    margin: 80px 0px 50px 0px;
  }
  .elementor-150 .elementor-element.elementor-element-372678fb .cs-title {
    font-size: 36px;
  }
  .elementor-150
    .elementor-element.elementor-element-79b07533
    > .elementor-widget-container {
    margin: 0px 0px -240px 0px;
  }
  .elementor-150 .elementor-element.elementor-element-3b7c9a5b {
    padding: 320px 0px 80px 0px;
  }
  .elementor-150
    .elementor-element.elementor-element-1b056fc
    > .elementor-widget-container {
    margin: 0px 0px 60px 0px;
  }
  .elementor-150 .elementor-element.elementor-element-1b056fc {
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
    width: var(--container-widget-width, 100%);
    max-width: 100%;
  }
  .elementor-150 .elementor-element.elementor-element-1b056fc .cs-title {
    font-size: 36px;
  }
  .elementor-150
    .elementor-element.elementor-element-3c59f2a8
    .cs-fancy-card
    .cs-fc-content {
    padding: 8% 8% 8% 8%;
  }
  .elementor-150
    .elementor-element.elementor-element-3c59f2a8
    .cs-fc-title.cs-title {
    font-size: 28px;
  }
  .elementor-150
    .elementor-element.elementor-element-1506861e
    .cs-fancy-card
    .cs-fc-content {
    padding: 8% 8% 8% 8%;
  }
  .elementor-150
    .elementor-element.elementor-element-1506861e
    .cs-fc-title.cs-title {
    font-size: 28px;
  }
  .elementor-150
    .elementor-element.elementor-element-744ffb12
    .cs-fancy-card
    .cs-fc-content {
    padding: 8% 8% 8% 8%;
  }
  .elementor-150
    .elementor-element.elementor-element-744ffb12
    .cs-fc-title.cs-title {
    font-size: 28px;
  }
  .elementor-150 .elementor-element.elementor-element-053759f {
    padding: 80px 0px 260px 0px;
  }
  .elementor-150 .elementor-element.elementor-element-439e26f {
    --container-widget-width: 100%;
    --container-widget-flex-grow: 0;
    width: var(--container-widget-width, 100%);
    max-width: 100%;
  }
  .elementor-150 .elementor-element.elementor-element-439e26f .cs-title {
    font-size: 36px;
  }
  .elementor-150 .elementor-element.elementor-element-c5bba75 {
    margin-top: -180px;
    margin-bottom: 0px;
  }
  .elementor-150
    .elementor-element.elementor-element-c7401ed
    > .elementor-element-populated {
    padding: 40px 40px 40px 40px;
  }
  .elementor-150 .elementor-element.elementor-element-22114cd {
    padding: 80px 0px 40px 0px;
  }
  .elementor-150 .elementor-element.elementor-element-e57c1e1 .cs-title {
    font-size: 36px;
  }
  .elementor-150 .elementor-element.elementor-element-6e017b97 {
    padding: 0px 0px 80px 0px;
  }
  .elementor-150
    .elementor-element.elementor-element-15ca9258
    > .elementor-element-populated {
    padding: 0px 0px 40px 0px;
  }
  .elementor-150
    .elementor-element.elementor-element-651f3b6d
    .cs-cta-title.cs-title {
    font-size: 24px;
  }
  .elementor-150
    .elementor-element.elementor-element-4e7b1b05
    > .elementor-element-populated {
    padding: 0px 0px 40px 0px;
  }
  .elementor-150
    .elementor-element.elementor-element-cab4cc0
    .cs-cta-title.cs-title {
    font-size: 24px;
  }
  .elementor-150
    .elementor-element.elementor-element-6819ec8d
    > .elementor-element-populated {
    padding: 0px 0px 0px 0px;
  }
  .elementor-150
    .elementor-element.elementor-element-58053522
    .cs-cta-title.cs-title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .elementor-150 .elementor-element.elementor-element-c0c2de1 .cs-title {
    font-size: 40px;
	  
	}  
	  
	  
	  .custom-main-title {
  font-size: 12px;
  
	 
}
	  
	  
	  
	  
	  
	  
  
  .elementor-150 .elementor-element.elementor-element-32b47b33 {
    width: 100%;
  }
  .elementor-150
    .elementor-element.elementor-element-1ee2a4
    > .elementor-widget-container {
    margin: 0% 0% 0% 0%;
  }
  .elementor-150
    .elementor-element.elementor-element-1e4a1518
    > .elementor-element-populated {
    padding: 0px 0px 0px 0px;
  }
  .elementor-150
    .elementor-element.elementor-element-90c1058
    > .elementor-widget-container {
    margin: 20px 0px 0px 0px;
  }
  .elementor-150 .elementor-element.elementor-element-2cc7cb23 .cs-title {
    font-size: 32px;
  }
  .elementor-150 .elementor-element.elementor-element-372678fb .cs-title {
    font-size: 32px;
  }
  .elementor-150
    .elementor-element.elementor-element-79b07533
    > .elementor-widget-container {
    margin: 0px 0px -120px 0px;
  }
  .elementor-150 .elementor-element.elementor-element-3b7c9a5b {
    padding: 200px 0px 80px 0px;
  }
  .elementor-150 .elementor-element.elementor-element-1b056fc .cs-title {
    font-size: 32px;
  }
  .elementor-150
    .elementor-element.elementor-element-3c59f2a8
    .cs-fancy-card
    .cs-fc-content {
    padding: 40px 25px 50px 25px;
  }
  .elementor-150
    .elementor-element.elementor-element-3c59f2a8
    .cs-fc-title.cs-title {
    font-size: 24px;
  }
  .elementor-150
    .elementor-element.elementor-element-1506861e
    .cs-fancy-card
    .cs-fc-content {
    padding: 40px 25px 50px 25px;
  }
  .elementor-150
    .elementor-element.elementor-element-1506861e
    .cs-fc-title.cs-title {
    font-size: 24px;
  }
  .elementor-150
    .elementor-element.elementor-element-744ffb12
    .cs-fancy-card
    .cs-fc-content {
    padding: 40px 25px 50px 25px;
  }
  .elementor-150
    .elementor-element.elementor-element-744ffb12
    .cs-fc-title.cs-title {
    font-size: 24px;
  }
  .elementor-150
    .elementor-element.elementor-element-053759f
    > .elementor-background-overlay {
    opacity: 0.65;
  }
  .elementor-150 .elementor-element.elementor-element-053759f {
    padding: 120px 0px 120px 0px;
  }
  .elementor-150 .elementor-element.elementor-element-439e26f .cs-title {
    font-size: 32px;
  }
  .elementor-150 .elementor-element.elementor-element-c5bba75 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .elementor-150 .elementor-element.elementor-element-e57c1e1 .cs-title {
    font-size: 32px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .elementor-150 .elementor-element.elementor-element-e0d411b {
    width: 100%;
  }
  .elementor-150 .elementor-element.elementor-element-2caae607 {
    width: 100%;
  }
  .elementor-150 .elementor-element.elementor-element-2e9df520 {
    width: 100%;
  }
  .elementor-150 .elementor-element.elementor-element-7416056c {
    width: 100%;
  }
  .elementor-150 .elementor-element.elementor-element-6b1f163d {
    width: 100%;
  }
  .elementor-150 .elementor-element.elementor-element-2ac7046d {
    width: 100%;
  }
  .elementor-150 .elementor-element.elementor-element-269c63bc {
    width: 100%;
  }
  .elementor-150 .elementor-element.elementor-element-d4c2387 {
    width: 10%;
  }
  .elementor-150 .elementor-element.elementor-element-7cc864d {
    width: 35%;
  }
  .elementor-150 .elementor-element.elementor-element-c7401ed {
    width: 55%;
  }
  .elementor-150 .elementor-element.elementor-element-15ca9258 {
    width: 100%;
  }
  .elementor-150 .elementor-element.elementor-element-4e7b1b05 {
    width: 100%;
  }
  .elementor-150 .elementor-element.elementor-element-6819ec8d {
    width: 100%;
  }
}




.cs-room-basic-info {
    margin: var(--item-v-space) 0;
}

.cs-room-basic-info ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
}

.cs-room-basic-info ul li {
    display: flex;
    align-items: center;
    margin: 5px 0;
    padding-right: 30px;
    line-height: 28px;
}

.cs-room-basic-info ul li:last-child {
    padding-right: 0;
}

.cs-room-basic-info .csrbi-icon {
    margin-right: 10px;
}

.cs-room-basic-info .csrbi-icon i {
    display: flex;
    font-size: var(--icon-size);
}

.cs-room-basic-info .csrbi-text {
    font-size: 14px;
    font-size: 0.875rem;
    white-space: nowrap;
}

.cs-rooms {
    --post-max-width: 800px;
    --item-v-space: 10px;
    --icon-size: 25px;
    --label-bg: #fff;
    --label-color: #000;
    --label-border: #fff;
}

.cs-rooms .overlay-label {
    top: 20px;
    left: 20px;
    background: var(--label-bg);
    border: 1px solid var(--label-border);
    color: var(--label-color);
    padding: 8px 12px;
    font-size: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.elementor-editor-active .cs-rooms .overlay-label {
    pointer-events: auto;
}

.cs-rooms.layout-standard {
    --icon-size: 28px;
}

.cs-rooms.text-center .cs-room-basic-info ul {
    justify-content: center;
}

.cs-rooms .item-header {
    margin-bottom: var(--item-v-space);
}

.cs-rooms .cs-room-content .item-title {
    margin-bottom: 0;
	line-height: 20px;
}

.cs-rooms .cs-room-content .item-subtitle {
    margin-top: var(--item-v-space);
    font-size: 15px;
    font-size: 0.9375rem;
    color: var(--secondary-color);
}

.cs-rooms .cs-room-content .item-subtitle:first-child {
    margin: 0 0 var(--item-v-space);
}

.cs-rooms.layout-overlay .cs-room-content .item-title {
    margin-bottom: 0;
}

.cs-rooms.layout-overlay .cs-room-content .item-subtitle {
    color: inherit;
}

.cs-rooms.layout-overlay .item-header {
    margin: 0;
    transition: opacity 0.4s, transform 0.4s;
}

.cs-rooms.layout-overlay .post .cs-room-content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.cs-rooms.layout-overlay .hover-show-content {
    position: absolute !important;
    z-index: 9;
    bottom: 0;
    left: 0;
    padding: 150px 24px 30px;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
}

.no-touch .cs-rooms.layout-overlay.with-hover-effect .post:hover .item-header {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.no-touch .cs-rooms.layout-overlay.with-hover-effect .post:hover .hover-show-content {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.cs-rooms.layout-overlay.text-v-middle .hover-show-content {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    transform: translateY(-30%);
    padding-top: 30px;
}

.no-touch .cs-rooms.layout-overlay.text-v-middle.with-hover-effect .post:hover .hover-show-content {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition-delay: 0.1s;
}

.cs-rooms.layout-overlay.slider-dots-overlap .slick-dots {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    color: #fff;
}

.cs-rooms.layout-overlay.text-v-middle .featured-img:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    content: "";
    background: #000;
    opacity: 0.3;
    pointer-events: none;
    transition: opacity 0.4s;
}

.no-touch .cs-rooms.layout-overlay.text-v-middle .post:hover .featured-img:before {
    opacity: 0;
}

.cs-rooms.layout-overlay.text-v-middle .cs-room-content {
    width: 100%;
    height: 100%;
    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;
    padding-top: 30px;
}

.cs-rooms.layout-overlay.text-v-middle .cs-room-content:before {
    background: none;
}

.cs-rooms.layout-overlay .cs-room-basic-info ul li {
    margin: 0;
}

.cs-rooms.cs-rooms-carousel.column-1.carousel-center-mode .post {
    max-width: var(--post-max-width);
}

.elementor-column:only-child .cs-rooms.cs-rooms-carousel:hover .slick-slide {
    will-change: transform;
}

.cs-rooms.cs-rooms-carousel .post {
    margin-top: 0;
}

.cs-rooms.cs-rooms-carousel .posts-wrapper.slick-initialized {
    display: block;
}

.cs-rooms.cs-rooms-carousel.column-1.layout-overlay.carousel-center-mode .cs-room-content {
    opacity: 1;
    transition: opacity 0.4s 0.5s;
}

.cs-rooms.cs-rooms-carousel.column-1.layout-overlay.carousel-center-mode .slick-initialized .post:not(.slick-center) .cs-room-content {
    opacity: 0;
}

.cs-rooms.cs-rooms-carousel.layout-overlay.slider-dots-overlap.column-1:not(.text-v-middle) .post .post-content {
    padding-bottom: 55px;
}

.cs-rooms.cs-rooms-carousel.layout-overlay.slider-dots-overlap.column-1:not(.text-v-middle) .hover-show-content {
    padding-bottom: 60px;
}

.cs-rooms.cs-rooms-carousel.layout-overlay.text-v-middle.slider-arrows-overlap .cs-room-content, .cs-rooms.cs-rooms-carousel.layout-overlay.text-v-middle.slider-arrows-overlap .hover-show-content {
    padding-right: 80px;
    padding-left: 80px;
}

.cs-rooms.slider-arrow-top .slider-arrows {
    position: absolute;
    top: -60px;
    right: 0;
}

.cs-rooms.slider-arrow-top .slider-arrows .slick-arrow {
    --arrow-size: 40px;
    position: relative;
    right: auto !important;
    left: auto !important;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin: 0;
    border: 1px solid var(--border-color);
    box-sizing: content-box;
    box-shadow: none;
}

.cs-rooms.slider-arrow-top .slider-arrows .slick-arrow.slick-prev {
    margin-right: 5px;
}

.cs-rooms.hide-slider-dots .slider-dots {
    height: 0;
    opacity: 0;
    overflow: hidden;
}



.slick-slider {
    visibility: visible !important;
    opacity: 1 !important;
}





.slick-dots button, .slick-arrow {
    background: none;
    border: 0;
    box-shadow: none;
    color: inherit;
    font-size: 0;
    pointer-events: auto;
    cursor: pointer;
}

.slick-arrow {
    --arrow-size: 60px;
    position: absolute;
    top: 50%;
    z-index: 99;
    padding: 0;
    width: var(--arrow-size);
    height: var(--arrow-size);
    background: #fff;
    border-radius: 99px;
    box-shadow: 0 2px 40px -10px rgba(83, 54, 36, 0.1);
    text-align: center;
    color: #111;
    line-height: var(--arrow-size);
    cursor: pointer;
    font-feature-settings: normal;
    transition: 0.2s;
}

.cs-gallery:not(.slider-dots-overlap) .slick-dotted .slick-arrow, .cs-rooms-carousel:not(.slider-arrow-top):not(.slider-dots-overlap) .slick-dotted + .slider-arrows .slick-arrow {
    margin-top: -30px;
}

.no-touch .slick-arrow:hover {
    box-shadow: 0 2px 40px -10px rgba(83, 54, 36, 0.3);
}

.slick-arrow: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;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: inherit;
}

.slick-arrow.slick-prev {
    left: -38px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.slick-arrow.slick-prev:after {
    content: "\34";
}

.slick-arrow.slick-next {
    right: -38px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.slick-arrow.slick-next:after {
    content: "\35";
}

.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:only-child {
    display: none;
}

.slick-dots li button {
    padding: 6px;
}

.slick-dots li button:before {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
     
    content: "";
    transition: 0.2s;
    transform-origin: 50% 50%;
}

.slick-dots li.slick-active button:before {
    opacity: 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;
}



 .slick-slider {position: relative;display: block;box-sizing: border-box;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;-webkit-touch-callout: none;-khtml-user-select: none;-ms-touch-action: pan-y;touch-action: pan-y;-webkit-tap-highlight-color: transparent;}.slick-list {position: relative;display: block;overflow: hidden;margin: 0;padding: 0;}.slick-list:focus {outline: none;}.slick-list.dragging {cursor: pointer;cursor: hand;}.slick-slider .slick-track, .slick-slider .slick-list {-webkit-transform: translate3d(0, 0, 0);-moz-transform: translate3d(0, 0, 0);-ms-transform: translate3d(0, 0, 0);-o-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}.slick-track {position: relative;top: 0;left: 0;display: block;margin-left: auto;margin-right: auto;}.slick-track:before, .slick-track:after {display: table;content: '';}.slick-track:after {clear: both;}.slick-loading .slick-track {visibility: hidden;}.slick-slide {display: none;float: left;height: 100%;min-height: 1px;}[dir='rtl'] .slick-slide {float: right;}.slick-slide img {display: block;}.slick-slide.slick-loading img {display: none;}.slick-slide.dragging img {pointer-events: none;}.slick-initialized .slick-slide {display: block;padding: 0px 15px 0px 15px;}.slick-loading .slick-slide {visibility: hidden;}.slick-vertical .slick-slide {display: block;height: auto;border: 1px solid transparent;}.slick-arrow.slick-hidden {display: none;}




@media (max-width: 768px) {
  .elementor-150
    .elementor-element.elementor-element-219b736d {
    background-image: url('../images/video-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }
}






/* ======= Slider Fade & Slider style ======= */
.slider-fade .owl-item,
.slider .owl-item {
    height: 100vh;
    position: relative;
}
.slider-fade .item,
.slider .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.slider-fade .item .caption,
.slider .item .caption {
    z-index: 9;
    position: relative;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
/* owl-theme owl-dots */
.slider-fade .owl-theme .owl-dots,
.slider .owl-theme .owl-dots {
    position: absolute;
    bottom: 4vh;
    width: 100%;
}
.slider-fade .owl-theme .owl-dots .owl-dot span,
.slider .owl-theme .owl-dots .owl-dot span {
    border: 1px solid rgba(255,255,255,0.7);
}
.slider-fade .owl-theme .owl-dots .owl-dot.active span,
.slider-fade .owl-theme .owl-dots .owl-dot:hover span,
.slider .owl-theme .owl-dots .owl-dot.active span,
.slider .owl-theme .owl-dots .owl-dot:hover span {
    background: #c5a47e;
    border: 1px solid #c5a47e;
}
/* owl-theme owl-nav */
.slider-fade .owl-theme .owl-nav,
.slider .owl-theme .owl-nav {
    position: absolute !important;
    top: 45% !important;
    bottom: auto !important;
    width: 100%
		z-index: 9999 !important;
		
}
.slider-fade .owl-theme .owl-nav,
.slider .owl-theme .owl-nav{
    z-index: 999;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.slider-fade .owl-theme .owl-prev,
.slider-fade .owl-theme .owl-prev,
.slider .owl-theme .owl-prev,
.slider .owl-theme .owl-prev {
    left: 10px !important
}
.slider-fade .owl-theme .owl-next,
.slider .owl-theme .owl-next {
    right: 10px !important
}
.slider-fade .owl-theme .owl-prev > span,
.slider-fade .owl-theme .owl-next > span,
.slider .owl-theme .owl-prev > span,
.slider .owl-theme .owl-next > span {
    position: absolute;
    line-height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}
.slider-fade .owl-theme .owl-nav [class*=owl-],
.slider .owl-theme .owl-nav [class*=owl-] {
    width: 55px;
    height: 55px;
    line-height: 48px;
    background: transparent;
    border-radius: 100%;
    color: #fff;
    font-size: 32px;
    margin-right: 30px;
    margin-left: 30px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}
.slider-fade .owl-theme .owl-nav [class*=owl-]:hover,
.slider .owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.slider-fade .owl-theme .owl-nav,
.slider .owl-theme .owl-nav {
    top: 40% !important;
	z-index: 9999 !important;
}
.slider-fade .owl-theme .owl-nav [class*=owl-],
.slider .owl-theme .owl-nav [class*=owl-] {
    opacity: 0;
}
.slider-fade .owl-theme:hover .owl-nav [class*=owl-],
.slider .owl-theme:hover .owl-nav [class*=owl-] {
    opacity: 1;
}
@media screen and (max-width: 991px) {
    .slider-fade .owl-theme .owl-nav,
    .slider .owl-theme .owl-nav {
        display: none;
    }
}


/* ======= Parallax Header style ======= */
.parallax-header {
    height: 100vh;
    background-position: center;
}
.parallax-header.full-height {
    height: 100vh;
    background-position: center;
}
.parallax-header[data-overlay-dark] h6,
.parallax-header h6 {
    position: relative;
    font-size: 15px;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}
.parallax-header[data-overlay-dark] h1,
.parallax-header h1 {
    position: relative;
    font-family: "Oswald", sans-serif;
    font-size: 85px;
    letter-spacing: 4px;
    color: #fff;
    line-height: 1.2em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    text-transform: uppercase;
}
.parallax-header[data-overlay-dark] h1 span,
.parallax-header h1 span {
    color: #c5a47e;
}
.parallax-header[data-overlay-dark] p,
.parallax-header p {
    position: relative;
    padding-left: 70px;
    margin-left: 5px;
    position: relative;
    color: rgba(255,255,255,0.9);
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    font-size: 17px;
}
.parallax-header[data-overlay-dark] p:after,
.parallax-header p:after {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    background: #fff;
    width: 40px;
    height: 1px;
}
@media screen and (max-width: 991px) {
    .parallax-header[data-overlay-dark] h1, .parallax-header h1 {
        font-size: 40px;
    }
    .parallax-header[data-overlay-dark] p, .parallax-header p {
        font-size: 17px;
    }
}


/* ===== Kenburns SlideShow style ===== */
.kenburns-section {
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
}
.kenburns-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    background: #fff;
}
.kenburns-inner {
    position: relative;
    z-index: 15;
}
.kenburns-inner .caption {
    position: relative;
}
.kenburns-inner .caption h6 {
    position: relative;
    font-size: 15px;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}
.kenburns-inner .caption h1 {
    position: relative;
    font-family: "Oswald", sans-serif;
    font-size: 85px;
    letter-spacing: 4px;
    color: #fff;
    line-height: 1.2em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    text-transform: uppercase;
}
.kenburns-inner .caption h1 span {
    color: #c5a47e;
}
.kenburns-inner .caption p {
position: relative;
    padding-left: 70px;
    margin-left: 5px;
    position: relative;
    color: rgba(255,255,255,0.9);
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    font-size: 17px;
}
.kenburns-inner .caption p:after {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    background: #fff;
    width: 40px;
    height: 1px;
}  
#kenburnsSliderContainer .vegas-overlay {
    outline: none;
}
@media screen and (max-width: 991px) {
    .kenburns-inner .caption h1 {
        font-size: 40px;
    }
}


/* =======  Video Background style  ======= */
.video-fullscreen-wrap {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.video-fullscreen-video {
    height: 100vh;
}
.video-fullscreen-wrap video {
  width: 100vw;
  min-width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}
.video-fullscreen-wrap .video-fullscreen-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;    
}
.position-relative {
    position: relative !important;
}
.video-fullscreen-wrap[data-overlay-dark] h6,
.video-fullscreen-wrap h6 {
    position: relative;
    font-size: 15px;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}
.video-fullscreen-wrap[data-overlay-dark] h1,
.video-fullscreen-wrap h1 {
    position: relative;
    font-family: "Oswald", sans-serif;
    font-size: 85px;
    letter-spacing: 4px;
    color: #fff;
    line-height: 1.2em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    text-transform: uppercase;
}
.video-fullscreen-wrap[data-overlay-dark] h1 span,
.video-fullscreen-wrap h1 span {
    color: #c5a47e;
}
.video-fullscreen-wrap[data-overlay-dark] p,
.video-fullscreen-wrap p {
    position: relative;
    padding-left: 70px;
    margin-left: 5px;
    position: relative;
    color: rgba(255,255,255,0.9);
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    font-size: 17px;
}
.video-fullscreen-wrap[data-overlay-dark] p:after,
.video-fullscreen-wrap p:after {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    background: #fff;
    width: 40px;
    height: 1px;
}  
@media screen and (max-width: 991px) {
    .video-fullscreen-wrap h1 {
        font-size: 40px;
    }
 }


/* ======= Banner Header style ======= */
.banner-header {
    height: 70vh;
    background-position: center;
}
.banner-header.middle-height {
    height: 80vh;
}
.banner-header.full-height {
    height: 100vh;
}
.banner-header[data-overlay-dark] h6,
.banner-header h6 {
    font-size: 15px;
    line-height: 15px;
    color: #c5a47e;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.banner-header h1 {
    font-size: 50px;
    color: #fff;
    position: relative;
    line-height: 1.25em;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.banner-header h1 span {
    color: #c5a47e;
}
.banner-header h2 {
    font-size: 40px;
    color: #fff;
    position: relative;
    line-height: 1.25em;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.banner-header h2 span {
    color: #c5a47e;
}
.banner-header p, .banner-header[data-overlay-dark] p {
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 0;
    color: #fff;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
@media screen and (max-width: 991px) {
    .banner-header h1 {
        font-size: 40px;
    }
    
    .banner-header h2 {
    font-size: 40px;
    }
	
	
	
		.innertxt-padd {
    padding: 0px 0px !important;
}
}

/* Important */
.bg-position-top {
    background-position: top;
}
.bg-position-center {
    background-position: center;
}
.bg-position-bottom {
    background-position: bottom;
}
.o-hidden {
    overflow: hidden;
}
.position-re {
    position: relative;
}
.full-width {
    width: 100%;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-fixed {
    background-attachment: fixed;
}
.bg-white {
    background-color: #fff;
}
.bg-drkgray {
    background-color: #1b1b1b;
}
.bg-drk {
    background-color: #101010;
}
.txt-dark {
    color: #fff;
}
.pattern {
    background-repeat: repeat;
    background-size: auto;
}
.bold {
    font-weight: 300;
}
.count {
    font-family: "Outfit", sans-serif;
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}




/* ======= Owl-Theme Custom style ======= */
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
    line-height: .7;
    display: block;
}
.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 3px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #c5a47e;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #c5a47e;
    border: 1px solid #c5a47e;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: none;
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    background: transparent;
}
/* owl-nav next and prev */
.owl-nav {
    position: absolute;
    bottom: 5%;
    right: 12%;
}
.owl-prev {
    float: left;
}
.owl-next {
    float: right;
}
/* owl-theme owl-nav */
.owl-theme .owl-nav {
    position: absolute !important;
    top: 45% !important;
    bottom: auto !important;
    width: 100%
}
.owl-theme .owl-nav {
    position: relative;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.owl-theme .owl-prev,
.owl-theme .owl-prev {
    left: 10px !important
}
.owl-theme .owl-next {
    right: 10px !important
}
.owl-theme .owl-prev > span,
.owl-theme .owl-next > span {
    position: absolute;
    line-height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}
.owl-theme .owl-nav [class*=owl-] {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: transparent;
    border-radius: 0;
    color: #fff;
    font-size: 10px;
    margin-right: 30px;
    margin-left: 30px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.7);
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
    border-radius: 100%;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: #fff;
    border: 1px solid #fff;
    color: #101010;
}
.owl-theme .owl-nav {
    top: 35% !important;
}
.owl-theme .owl-nav [class*=owl-] {
    opacity: 0;
}
.owl-theme:hover .owl-nav [class*=owl-] {
    opacity: 1;
}


/* ======= Header style ======= */
.header {
    height: 100vh;
    overflow: hidden;
}
.header .caption .o-hidden {
    display: inline-block;
}
.header .caption h6 {
    position: relative;
    font-size: 15px;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}
.header .caption h1 {
    position: relative;
    font-family: "Oswald", sans-serif;
    font-size: 85px;
    letter-spacing: 4px;
    color: #fff;
    line-height: 1.2em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    text-transform: uppercase;
}

.header .caption h1 span {
    color: #c5a47e;
}

.header .caption p {
    position: relative;
    padding-left: 70px;
    margin-left: 5px;
    position: relative;
    color: rgba(255,255,255,0.9);
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    font-size: 17px;
}
.header .caption p:after {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  background: #fff;
  width: 40px;
  height: 1px;
}  
.header .caption .button-1,
.header .caption .button-2 {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
    margin-right: 15px;
    margin-bottom: 15px;
}
@media screen and (max-width: 991px) {
   .header .caption h1 {
        font-size: 40px;
    }
    .header .caption p {
        font-size: 17px;
    }
}

 


.bannerr{
	    position: absolute !important;
    top: 0;
    z-index: -100 !important;
}
 


.black-overlay {
    background-color: #000;
    opacity: 0.39;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}

.item {
    position: relative;
}

.owl-theme .owl-nav [class*=owl-] {
    z-index: 5; /* ensure nav buttons appear on top */
}



.cs-titlez {
    font-size: 42px;
   font-family:'Nexa Bold';
	    line-height: 1.35;
	font-weight: bold;
}


.custom-static-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* full height of the screen */
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none; /* to let clicks pass through */
  padding: 20px;
}

.custom-widget-wrap {
  pointer-events: auto; /* allow interaction with button */
}

.custom-main-title {
  font-size: 42px;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
	font-weight: var(--hf-weight);
}

.custom-btn {
      padding: 20px 40px;
    height: auto;
    background: #96897c;
    color: var(--text-color);
    border-radius: 0;
    border: none;
    font-weight: 600;
    font-size: 17px;
	font-family: "Montserrat", serif;
		text-decoration: none;
}

 

.custom-btn:hover {
 
  background: var(--btn-bg-hover);
  color: var(--btn-color-hover);
  border-color: var(--btn-bg-hover);

}


 .preloader {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 999999;
      background-color: #fff;
      background-position: center center;
      background-repeat: no-repeat;
      background-image: url("../images/animated_drawing_logo.svg");
      background-size: 30%;
    }


.accordion-button {
      background-color: #f8f9fa;
      color: #212529;
      box-shadow: none !important;
      outline: none;
      border: none;
      transition: background-color 0.2s ease;
    }

    .accordion-button:hover,
    .accordion-button:focus {
      background-color: #f1f1f1;
      color: #212529;
    }

    .accordion-button:not(.collapsed) {
      background-color: #e9ecef;
      color: #212529;
      box-shadow: none;
    }

    .accordion-item {
      border: 1px solid #dee2e6;
      border-radius: 5px;
      margin-bottom: 15px;
    }

    .accordion-body {
      background-color: #ffffff;
      color: #333;
    }



.accordion-button:not(.collapsed) {
  color: inherit !important;
  background-color: inherit !important;
  box-shadow: none !important;
}


/* Make opened (active) accordion button same as closed */
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-btn-color);
  background-color: var(--bs-accordion-btn-bg);
  box-shadow: none;
}

/* Make hover and focus same as normal */
.accordion-button:hover,
.accordion-button:focus {
  color: var(--bs-accordion-btn-color);
  background-color: var(--bs-accordion-btn-bg);
  box-shadow: none;
  outline: none;
}



@media screen and (max-width: 767px) {
    .slider-fade .owl-item,
    .slider .owl-item {
        height: auto !important;
    }

    .slider-fade .item,
    .slider .item {
        position: relative;
        height: auto !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        aspect-ratio: 16 / 9; /* Optional: maintain image proportion */
    }

    .slider-fade .item .caption,
    .slider .item .caption {
        position: static;
        transform: none;
       
        text-align: center;
    }
}




/* Default (Desktop) styles remain mostly unchanged */
.custom-static-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* updated from 100vh to 100% to match image height */
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  padding: 20px;
}

.custom-widget-wrap {
  pointer-events: auto;
}

.custom-main-title {
  font-size: 42px;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: var(--hf-weight);
}

.custom-btn {
  padding: 20px 40px;
  height: auto;
  background: #96897c;
  color: var(--text-color);
  border-radius: 0;
  border: none;
  font-weight: 600;
  font-size: 17px;
  font-family: "Montserrat", serif;
  text-decoration: none;
}

.custom-btn:hover {
  background: var(--btn-bg-hover);
  color: var(--btn-color-hover);
  border-color: var(--btn-bg-hover);
}

@media screen and (max-width: 767px) {
  .custom-static-banner {
    height: 100%; /* matches the image height on mobile */
    padding: 0px;
  }

  .custom-main-title {
    font-size: 22px; /* smaller text for mobile */
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .custom-btn {
    font-size: 14px;
    padding: 12px 24px;
  }
}



@media screen and (max-width: 767px) {
  .header {
    height:310px;
  }
}


@media screen and (max-width: 767px) {
  .elementor-150 
    .elementor-element.elementor-element-1850564f 
    > .elementor-container {
    min-height: 200px !important;
  }
}



@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
	
	

}




@media (max-width: 767px) {
    .elementor-150 .elementor-element.elementor-element-216ad879 {
        padding: 40px 0px 80px 0px;
    }
}


@media (max-width: 767px) {
    .padtop {
        padding-top: 50px;
    }
	
	
			.home-image-right {
    padding-right: 0px !important;
}
	

	
}

.title-center-black{
	color:#000;
	text-align: center;
	padding:20px 0px;
}
 

.home-image-right{
	padding-right:25px;
}

.line-height_1{
	line-height:40px !important;
}


.brown-bg{
	
	background-color: #4d4a46;
	margin:0px !important;
}

.mar-pad0{
	margin: 0px !important;
	padding: 0px !important;
}

.black-txt{
	color:#000;
}

.subheadwhite{ color:#fff !important;}


.elementor-widget-container-margin{
	
	    margin-bottom: 30px !important;
}

.fullwidth{
	max-width:100% !important;
}



.nav-tabs {
  display: flex;
  justify-content: center;
  border:none !important;
	padding-bottom: 20px;
}



.nav-tabs .nav-link {
   
	padding-bottom: 10px;
	margin: 0px 20px;
}
 

.nav-tabs .nav-link {
border-bottom: 1px solid #ccc !important;
	color:#000;
	 
}





.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
      background: #96897c !important;
	border-radius: 0px !important;
	color:#fff !important;
}




.pad-lef{
	padding: 0px 25px!important;
}

.pad-x{
	padding: 0px 15px!important;
}


.innertxt-padd{
	padding:0px 200px;
}
 

.txt-align-middle{
	display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
  
}

.txt-left{
	text-align: left;
}


.item-excerpt ul li{
	
	margin-right:0px !important;
}
.post-excerpt ul{
	
	    margin: 0 0 0px 0px;
	padding-left: 1rem;
	line-height: 25px;
	font-weight: 300;
	color: #2A2A2A;
}


.subheadz{
	font-size: 18px;
	text-decoration: none;
	font-weight: 600;
}



.nav-tabs .nav-link:hover{
background: #96897c !important;
    border-radius: 0px !important;
    color: #fff !important;
}

.fullwidth{
	width: 100% !important;
}


 

.home-amenities-min-height{
	min-height: 800px;
	background: #96897c;

}


.elementor a:hover{
 color:#fff;
}



.blacktextz{
	color: #000 !important;
}


.whiteztextz{
	color: #fff !important;
}


.white_text ul li{
	color: #fff !important;
}



.padd-screen{
	padding-top:70px;
}


@media (max-width: 767px) {
  .padd-screen {
    padding-top: 0px;
  }
}



.btn-primaryz
 {
background-color:#96897c !important;
	 
	 border: 0px !important;
}


.key-investment{}

.key-investment ul, ol{  margin: 0 0 30px 0px !important;}
.key-investment ul, li{ padding: 10px 0px;}


 

 .vertical-center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
	 padding: 40px;
}
 


.accordion-button {
  
  background-color: none;
	

}
	
	.cs-testimonial-contentz ul, li{ padding: 10px 0px;     margin-left: 5px;}


.equal-height-section {
  display: flex;
  flex-wrap: wrap;
}

.box {
  flex: 1;
  /* padding: 30px;
  background-color: #fff;
 border: 8px solid #fff;*/
 
}

/* ? Stack boxes vertically on screens <= 768px */
@media (max-width: 768px) {
  .equal-height-section {
    flex-direction: column;
  }

  .box {
    width: 100%; /* Optional for full width on mobile */
  }
}
 
.gold-textz{color:#96897c !important;}


 .investment-benefits {
 
  font-family: Arial, sans-serif;
  line-height: 1.6;
      padding-left: 0px;
    margin-left: 10px;
	     
    color: #535353;
   
    font-weight: 300 !important;
}



.investment-benefits li::marker {
  color: #96897c;
}

.divmiddle{display: flex;
  align-items: center; /* vertical middle */
  justify-content: center; /* optional: horizontal center */
  height: 100vh; /* or any fixed height */}