/*
Theme Name: Clarity
Theme URI: https://seyoch.nl
Author: Seyoch Design
Description: Theme developed exclusively for Clarity.
Tags: Clarity
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: Exclusive license
Text Domain: clarity
*/
.caslon, h1, h2, h3 {
  font-family: "Libre Caslon Text", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
}

html, html * {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body, div, main, form, header, footer, section, ul {
  display: block;
  margin: 0;
  padding: 0;
}

html, body, div, form, header, footer, section {
  width: 100%;
}

html, body, .pagewrapper {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #464646;
}

html, body {
  background: white;
}

main {
  max-width: 100%;
}

main .content.contentbox {
  max-width: 1280px;
  min-height: calc(100vh - 400px);
  padding: 20px 2em 4em;
  margin: 0 auto;
}

main.full-width-content .content.contentbox {
  max-width: 100%;
  padding: 0;
}

#primary {
  min-height: calc(100vh - 400px);
}

#primary main {
  max-width: 1280px;
  padding: 20px 2em 4em;
  margin: 0 auto;
}

section {
  clear: both;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flexed {
  display: block;
}

.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.jc-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.jc-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.jc-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.jc-stretch {
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}

.ai-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ai-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.ai-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.col-span-2 {
  grid-column: span 2;
}

.row-span-2 {
  grid-row: span 2;
}

img {
  display: block;
  max-width: 100%;
}

a, a:visited {
  text-decoration: none;
  color: inherit;
}

a.button, a.button:visited, button.button, button.button:visited, .buttonlike, .wc-block-components-button {
  padding: .5em 1.5em;
  border-radius: 2em;
  background-color: #C4A88A;
  border-width: 2px;
  border-color: #C4A88A;
  color: white;
  font-weight: 700;
  border: none;
  -webkit-transition: .25s;
  transition: .25s;
}

a.button:hover, a.button:visited:hover, button.button:hover, button.button:visited:hover, .buttonlike:hover, .wc-block-components-button:hover {
  background-color: #69401f;
  color: #fff3e6;
}

a.button.btn-secondary, a.button:visited.btn-secondary, button.button.btn-secondary, button.button:visited.btn-secondary, .buttonlike.btn-secondary, .wc-block-components-button.btn-secondary {
  background-color: #fff3e6;
  border-color: #fff3e6;
  color: #69401f;
}

a.button.btn-secondary:hover, a.button:visited.btn-secondary:hover, button.button.btn-secondary:hover, button.button:visited.btn-secondary:hover, .buttonlike.btn-secondary:hover, .wc-block-components-button.btn-secondary:hover {
  background-color: #25180d;
  border-color: #25180d;
  color: #fff3e6;
}

a.button.btn-header, a.button:visited.btn-header, button.button.btn-header, button.button:visited.btn-header, .buttonlike.btn-header, .wc-block-components-button.btn-header {
  background-color: #C4A88A;
  border-color: #C4A88A;
  border: 2px solid #C4A88A;
  color: white;
}

a.button.btn-header:hover, a.button:visited.btn-header:hover, button.button.btn-header:hover, button.button:visited.btn-header:hover, .buttonlike.btn-header:hover, .wc-block-components-button.btn-header:hover {
  background-color: #fff3e6;
  border-color: #fff3e6;
  color: #69401f;
}

ul {
  list-style: none;
}

details {
  margin: 0;
}

details p {
  opacity: 0;
  padding: .2em 1em 1em;
}

details[open] p {
  -webkit-animation: fadeIn .25s linear forwards;
          animation: fadeIn .25s linear forwards;
}

details ~ details {
  border-top: 1px solid #69401f;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

summary {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em;
  font-weight: bold;
}

summary::after {
  font-family: "Font Awesome 5 Brands";
  content: '\2b';
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

details[open] > summary::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

summary::-webkit-details-marker {
  display: none;
}

summary {
  color: #30353b;
}

.caps {
  text-transform: uppercase;
}

.center {
  text-align: center;
}

.content-block {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.bg_full {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
}

.overlay {
  display: block;
  position: absolute;
  inset: 0;
}

.overlay.overlay-green {
  background: #4D5B49;
  mix-blend-mode: multiply;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.dark {
  color: #232323;
}

.sand {
  color: #a36824;
}

.white {
  color: white;
}

header.header {
  background: #69401f;
  color: white;
  z-index: 9;
}

header.header.pull-content {
  position: absolute;
}

header.header.fade-header {
  background: linear-gradient(120deg, #69401f 20%, rgba(105, 64, 31, 0.8) 100%);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

header.header .header-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.25em 2em;
}

header.header .header-bar .logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 max-content;
          flex: 0 0 max-content;
}

header.header .header-bar .logo .logo-header-a {
  display: block;
  padding: 1em 0;
}

header.header .header-bar .logo .logo-header-a img {
  height: 140px;
}

header.header .header-bar .headernavs {
  padding: 1em 0;
  gap: 2em;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 max-content;
          flex: 0 1 max-content;
}

header.header .header-bar .headernavs .header_menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 max-content;
          flex: 0 1 max-content;
}

header.header .header-bar .headernavs .header_menu .blob {
  position: absolute;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  top: 4px;
  left: 0;
  width: 0;
  height: 0;
  background-color: none;
  border-radius: 50px;
  z-index: -1;
  pointer-events: none;
  -webkit-transition: width 0.3s ease, height 0.3s ease, -webkit-transform 0.3s ease;
  transition: width 0.3s ease, height 0.3s ease, -webkit-transform 0.3s ease;
  transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease;
  transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

header.header .header-bar .headernavs .header_menu .blob .blobber {
  -webkit-animation: blobScale 6s infinite ease-in-out;
          animation: blobScale 6s infinite ease-in-out;
  display: block;
  background-color: #fff3e6;
  border-radius: 50px;
  -webkit-transition: width 0.3s ease, height 0.3s ease, -webkit-transform 0.3s ease;
  transition: width 0.3s ease, height 0.3s ease, -webkit-transform 0.3s ease;
  transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease;
  transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

header.header .header-bar .headernavs .header_menu li a {
  display: block;
  padding: 1em;
  color: #fff3e6;
  font-size: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  letter-spacing: 1px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

header.header .header-bar .headernavs .header_menu li a:hover {
  color: #69401f;
}

header.header .header-bar .headernavs .header_menu li.menu-item-has-children:hover {
  color: #69401f;
}

header.header .header-bar .headernavs .header_menu li.menu-item-has-children:hover a {
  color: #69401f;
}

header.header .header-bar .headernavs .header_menu li ul.sub-menu {
  position: absolute;
  display: none;
  top: 100%;
  padding: 1.5em 1em 1em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

header.header .header-bar .headernavs .header_menu li ul.sub-menu::before {
  position: absolute;
  display: block;
  content: "";
  top: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff3e6;
  opacity: 0.7;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 1em;
  -webkit-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.25);
}

header.header .header-bar .headernavs .header_menu li ul.sub-menu li {
  display: block;
}

header.header .header-bar .headernavs .header_menu li ul.sub-menu li a {
  display: block;
  padding: .5em 1.5em .5em .5em;
  color: #69401f;
}

header.header .header-bar .headernavs .header_menu li:hover ul.sub-menu {
  display: block;
}

header.header .header-bar .headernavs .header_menu li.menu-item-has-children {
  padding-right: 1.5em;
}

header.header .header-bar .headernavs .header_menu li.menu-item-has-children::after {
  position: absolute;
  display: block;
  font: var(--fa-font-solid);
  content: '\f107';
  top: 1em;
  right: 1em;
}

header.header .header-bar .headernavs .header_menu li:hover ~ .blob {
  width: 100%;
  height: 40px;
}

header.header .header-bar .headernavs .headerhamnav {
  display: none;
}

header.header .header-bar .headernavs .headerhamnav i {
  font-size: 24px;
}

@media screen and (max-width: 1280px) {
  header.header .header-bar .headernavs .header_menu {
    display: none;
  }
  header.header .header-bar .headernavs .headerhamnav {
    display: block;
  }
}

header.header .header-bar .headernavs .header-c2a {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  padding: 0.5em 0;
}

header.header .header-bar .headernavs .header-c2a a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-family: 'Montserrat';
}

@media screen and (max-width: 512px) {
  header.header .header-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header.header .header-bar .logo .logo-header-a {
    margin: 0 auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  header.header .header-bar .headernavs {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

@-webkit-keyframes blobScale {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  75% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}

@keyframes blobScale {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  75% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}

footer {
  background: none;
}

footer .footerflex {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2em;
}

footer .footerflex .footerlogo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}

footer .footerflex .footerlogo .logo-header-a {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

footer .footerflex .footerlogo .logo-header-a img {
  width: 200px;
  -webkit-transition: 350ms;
  transition: 350ms;
}

footer .footerflex .footerlogo .logo-header-a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

footer .footerflex .footer_menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
}

footer .footerflex .footer_menu .f_menu li {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

footer .footerflex .footer_menu .f_menu li a, footer .footerflex .footer_menu .f_menu li a:visited {
  display: block;
  padding: 0.25em 0.5em 0.25em 0.25em;
  -webkit-transition: 200ms;
  transition: 200ms;
}

footer .footerflex .footer_menu .f_menu li a:hover, footer .footerflex .footer_menu .f_menu li a:visited:hover {
  color: #a36824;
  padding: 0.25em 0.25em 0.25em 0.5em;
}

footer .footerflex .footer_menu ul.socialWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: .5em;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2em 0;
  margin-left: -.75em;
}

footer .footerflex .footer_menu ul.socialWrapper li.socialItem {
  display: block;
  color: #a36824;
}

footer .footerflex .footer_menu ul.socialWrapper li.socialItem a, footer .footerflex .footer_menu ul.socialWrapper li.socialItem a:visited {
  padding: .5em;
  font-size: 32px;
  -webkit-transition: .25s;
  transition: .25s;
}

footer .footerflex .footer_menu ul.socialWrapper li.socialItem a:hover, footer .footerflex .footer_menu ul.socialWrapper li.socialItem a:visited:hover {
  color: #69401f;
}

@media screen and (max-width: 1024px) {
  footer .footerflex .footerlogo .logo-header-a img {
    width: 140px;
  }
}

@media screen and (max-width: 720px) {
  footer .footerflex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 3em 2em 3em;
  }
  footer .footerflex .footerlogo {
    -webkit-box-flex: 1;
        -ms-flex: 1 0.8 100%;
            flex: 1 0.8 100%;
  }
  footer .footerflex .footerlogo .logo-header-a img {
    width: 160px;
    margin: 0 auto 4em;
  }
}

footer .f_bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: #69401f;
  padding: 1.2em;
  text-align: center;
  color: #fff3e6;
  font-size: 14px;
  gap: 4em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .f_bar .f_legalmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: .5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 max-content;
          flex: 0 0 max-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .f_bar .f_legalmenu li {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 max-content;
          flex: 0 0 max-content;
}

footer .f_bar .f_legalmenu li a, footer .f_bar .f_legalmenu li a:visited {
  color: #fff3e6;
  padding: .5em;
}

footer .f_bar .f_branding {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 max-content;
          flex: 0 0 max-content;
  font-weight: 300;
}

footer .f_bar .f_branding a, footer .f_bar .f_branding a:visited {
  display: inline;
  color: #fff3e6;
  font-weight: 800;
}

.mobile_menu_bg {
  position: fixed;
  display: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #ffffff88;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1989;
}

.mobile_menu_wrap {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  inset: 0;
  top: 0;
  bottom: 0;
  left: auto;
  right: -480px;
  background: #69401f;
  width: 100%;
  max-width: 480px;
  z-index: 1993;
  -webkit-transition: 500ms ease-in-out;
  transition: 500ms ease-in-out;
  overflow-y: auto;
}

.mobile_menu_wrap #headerclosenav {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  top: 2em;
  right: 2em;
  color: white;
  cursor: pointer;
}

.mobile_menu_wrap #headerclosenav i {
  font-size: 24px;
}

.mobile_menu_wrap .mm-logo {
  display: block;
}

.mobile_menu_wrap .mm-logo img {
  width: 56%;
  margin: 0 auto 4em;
}

.mobile_menu_wrap .mm-grid .mob_menu {
  display: block;
}

.mobile_menu_wrap .mm-grid .mob_menu li {
  display: block;
}

.mobile_menu_wrap .mm-grid .mob_menu li a {
  display: block;
  text-align: center;
  padding: 1em;
  color: white;
}

.mobile_menu_wrap .mm-grid .mm-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile_menu_wrap .mm-grid .mm-socials ul.socialWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: .5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4em 0 2em;
}

.mobile_menu_wrap .mm-grid .mm-socials ul.socialWrapper li.socialItem {
  display: block;
  color: #fff3e6;
}

.mobile_menu_wrap .mm-grid .mm-socials ul.socialWrapper li.socialItem a {
  padding: .5em;
  font-size: 32px;
}

.scrollbar-custom::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

.scrollbar-custom::-webkit-scrollbar {
  width: 12px;
  background-color: transparent;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff3e6;
}

.error-404 {
  padding: 4em 0;
}

.error-404 h1 .big {
  display: inline-block;
  font-size: 101px;
}

.error-404 h1 .pnf {
  display: inline-block;
  font-size: 36px;
}

.error-404 form.searchform div label {
  font-size: 13px;
}

.error-404 form.searchform div input[type=text] {
  border-radius: 2em;
  padding: .5em 1em;
  border: 1px solid gray;
}

.error-404 form.searchform div input[type=submit] {
  border-radius: 2em;
  padding: .5em 1em;
  background: #25180d;
  color: #fff3e6;
}

/* Full-width container for the video background */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

/* Fullscreen video styling */
.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}

/* Overlay content styling */
.video-overlay-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

/* Styling for title and text */
.video-overlay-content h1 {
  font-size: 3rem;
  margin: 0;
}

.video-overlay-content p {
  font-size: 1.5rem;
  margin-top: 10px;
  font-weight: 300;
}

@media screen and (max-width: 720px) {
  /* Styling for title and text */
  .video-overlay-content h1 {
    font-size: 2rem;
  }
  .video-overlay-content p {
    font-size: 1.3rem;
  }
}

.blog-posts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(388px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(388px, 1fr));
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 2em;
}

@media screen and (max-width: 680px) {
  .blog-posts {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.blog-posts article {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog-posts article .post-thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 max-content;
          flex: 0 0 max-content;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  /* Aspect ratio: 16:9 */
}

.blog-posts article .post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Ensures the image fills the container while maintaining its aspect ratio */
}

.blog-posts article .entry-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 max-content;
          flex: 1 1 max-content;
  padding: 1.5em;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.blog-posts article .entry-content .entry-meta {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 max-content;
          flex: 0 0 max-content;
  text-align: right;
}

.blog-posts article .entry-content .entry-meta .post-date {
  font-size: 13px;
}

.blog-posts article .entry-content .entry-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 max-content;
          flex: 0 0 max-content;
}

.blog-posts article .entry-content .entry-excerpt {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 max-content;
          flex: 1 1 max-content;
}

.blog-posts article .entry-content .entry-button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 max-content;
          flex: 0 0 max-content;
  padding: 1em 0;
  text-align: right;
}

.blog-posts article:hover .entry-content {
  background: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-block: 4em;
}

.pagination .page-numbers {
  padding: .5em;
  min-width: 35px;
  text-align: center;
}

.pagination span.current {
  background-color: #69401f;
  color: #fff3e6;
  border-radius: 2em;
}

.pagination a.page-numbers {
  color: #69401f;
  -webkit-transition: .25s;
  transition: .25s;
}

.pagination a.page-numbers:hover {
  scale: 1.1;
}

.pagination .prev {
  margin-right: 1em;
}

.pagination .next {
  margin-left: 1em;
}

.post-hero .hero-img {
  padding-top: 400px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.post-hero .h1-wrap {
  top: 15px;
  padding: 1em 2em 1em 4em;
  background: #69401f;
  border-radius: 0 3em 3em 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 80%;
  min-width: 25%;
  -webkit-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
}

.post-hero .h1-wrap h1 {
  display: block;
  margin: 0;
  color: #fff3e6;
  font-size: 36px;
}

.elementor-clarity.service {
  -ms-grid-columns: 1fr max-content;
      grid-template-columns: 1fr -webkit-max-content;
      grid-template-columns: 1fr max-content;
  gap: 1em;
}

.elementor-clarity.service.border {
  border-bottom: 1px solid #69401f;
}

.elementor-clarity.service .service-img {
  grid-column: span 2;
  padding-bottom: 56%;
  border-radius: 1em;
  overflow: hidden;
}

.elementor-clarity.service .service-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.elementor-clarity.service .service-name h3 {
  font-weight: 700;
  margin: 0;
}

.elementor-clarity.service .service-price span.price {
  font-weight: 700;
}

.elementor-clarity.service .service-desc {
  grid-column: span 2;
}

.elementor-clarity.service .service-desc p {
  margin-top: 0;
}

.elementor-clarity.service .service-link {
  grid-column: span 2;
  text-align: right;
}

.elementor-clarity.service .service-link a.button {
  display: inline-block;
  margin: 0 0 3em;
}
/*# sourceMappingURL=style.css.map */