@charset "UTF-8";
/*
 * This controls theme colors
 * Bootstrap will generate classes like btn-color-1, btn-black, text-color-1, bg-color-1, etc.
 * The classes can then be used across the site without repeating code
 */
/*
 * Do a sitewide search (CTRL + SHIFT + F if you're using Sublime Text or whatever your coding GUI has for a search in all files)
 * to see where these variables are used in the SASS code. They're all Bootstrap variables that control certain aspects of elements
 */
/**
 * Bootstrap removes the margin-left/right over the sm breakpoint and if we set it customly afterwards, it breaks the centered modal since it's no longer margin: auto.
 * We also can't remove this one because the value is used in a min-height calculation and removing causes the modal to go haywire on mobile
 * So set it at 15px and then after the sm breakpoint when it gets set to auto, add extra padding as need on .modal-dialog
 *
 * LE: messing with custom margins / paddings and modal-dialog is too much fuss. Simply ignore
 */
.theme-icon:before, [class^=theme-icon-]:before, [class*=" theme-icon-"]:before {
  font-family: "theme-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  position: relative;
  display: inline-block;
  text-decoration: inherit;
  margin: 0;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.theme-icon-star-full:before {
  content: "\e802";
} /* '' */
.theme-icon-star-empty:before {
  content: "\e805";
} /* '' */
.theme-icon-right-open-mini:before {
  content: "\e80c";
} /* '' */
.theme-icon-down-open-mini:before {
  content: "\e80d";
} /* '' */
.theme-icon-star-half-alt:before {
  content: "\f123";
} /* '' */
body.transitions-enabled a, body.transitions-enabled button, body.transitions-enabled img, body.transitions-enabled svg, body.transitions-enabled .form-control, body.transitions-enabled .transition {
  transition: all 0.4s;
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 30px;
  line-height: 1.2;
}

label {
  cursor: pointer;
}

iframe {
  display: block;
  border: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #fff;
}

.has-fs-1-font-size {
  line-height: 1.5;
}
@media (min-width: 768px) {
  .has-fs-1-font-size {
    line-height: 1.45;
  }
}

.has-fs-2-font-size {
  line-height: 1.187;
}
@media (min-width: 768px) {
  .has-fs-2-font-size {
    line-height: 1.166;
  }
}

.has-fs-4-font-size {
  line-height: 1.2;
}

.has-fs-5-font-size {
  line-height: 1.09;
}
@media (min-width: 768px) {
  .has-fs-5-font-size {
    line-height: 1.46;
  }
}

.has-fs-6-font-size {
  line-height: 1.192;
  letter-spacing: -0.44px;
}
@media (min-width: 768px) {
  .has-fs-6-font-size {
    line-height: 1.175;
    letter-spacing: -0.78px;
  }
}

.has-fs-7-font-size {
  line-height: 1.214;
}

.has-fs-9-font-size {
  line-height: 1.192;
}
@media (min-width: 768px) {
  .has-fs-9-font-size {
    line-height: 1.194;
  }
}

.has-fs-10-font-size {
  line-height: 1.192;
}
@media (min-width: 768px) {
  .has-fs-10-font-size {
    line-height: 1.175;
  }
}

.has-fs-12-font-size {
  line-height: 1.192;
}
@media (min-width: 768px) {
  .has-fs-12-font-size {
    line-height: 1.217;
  }
}

.has-fs-13-font-size {
  line-height: 1.233;
}
@media (min-width: 768px) {
  .has-fs-13-font-size {
    line-height: 1.2;
  }
}

.has-fs-14-font-size {
  line-height: 1.166;
  letter-spacing: -0.6px;
}
@media (min-width: 768px) {
  .has-fs-14-font-size {
    line-height: 0.933;
    letter-spacing: -1.2px;
  }
}

.has-fs-15-font-size {
  line-height: 1.2;
}

.text-uppercase {
  text-transform: uppercase;
}

.font-family-1 {
  font-family: "Everett", sans-serif;
}

.font-family-2 {
  font-family: "Proxima Nova", sans-serif;
}

.block-headings-underlined > .wp-block-heading,
.block-headings-underlined .container > .wp-block-heading,
.block-headings-underlined .container > .row > .content > .wp-block-heading {
  margin-bottom: clamp(2.1875rem, calc(2.8169014085vw + 1.5272887324rem), 4.0625rem);
  padding-bottom: 15px;
  border-bottom: 3px solid;
}

.content > * {
  margin-bottom: 40px;
}
.content > *:last-child {
  margin-bottom: 0 !important;
}
.content > ul {
  list-style: none;
  padding: 0;
}
.content > ul:not(.btn-group) li {
  margin: 0 0 10px;
  padding: 0 0 0 30px;
  background-repeat: no-repeat;
  background-position: 0 9px;
  background-size: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256z' fill='%23B89C7E'/%3E%3C/svg%3E");
}
.content img {
  max-width: 100%;
  height: auto;
}
.content table {
  width: 100%;
}
.content table th, .content table td {
  width: auto;
  padding: 15px 15px;
}
.content table th:first-child, .content table td:first-child {
  padding-left: 0;
}
.content table th:last-child, .content table td:last-child {
  padding-right: 0;
}
.content.table-styled table th, .content.table-styled table td {
  padding: 5px 15px 15px;
}
@media (min-width: 992px) {
  .content.table-styled table th, .content.table-styled table td {
    padding: 5px 15px;
  }
}
.content.table-styled table > *:first-child tr:first-child td, .content.table-styled table > *:first-child tr:first-child th {
  padding-top: 20px;
}
.content.table-styled table > *:last-child tr:last-child td, .content.table-styled table > *:last-child tr:last-child th {
  padding-bottom: 20px;
}
.content.table-style-1 table {
  background: #f6f8fa;
}
.content.table-style-1 table tr {
  vertical-align: top;
}
.content.table-style-1 table tr > td:first-child, .content.table-style-1 table tr th:first-child {
  padding-left: 25px;
}
.content.table-style-1 table tr > td:last-child, .content.table-style-1 table tr th:last-child {
  padding-right: 25px;
}
.content blockquote > * {
  margin-bottom: 40px;
}
.content blockquote > *:last-child {
  margin-bottom: 0 !important;
}
.content .ratio {
  margin-bottom: 30px;
}

.theme-block {
  padding: clamp(3.75rem, calc(2.8169014085vw + 3.0897887324rem), 5.625rem) clamp(0rem, calc(0vw + 0rem), 0rem);
}

.theme-block-alt {
  padding: clamp(3.75rem, calc(4.6948356808vw + 2.6496478873rem), 6.875rem) clamp(0rem, calc(0vw + 0rem), 0rem);
}

.bg-white + .bg-white {
  padding-top: 0;
}

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

.site {
  position: relative;
  display: flex;
  flex-direction: column;
  /* fallback height */
  min-height: 100vh;
  /* new small viewport height for modern browsers */
  min-height: 100svh;
}

.site-footer {
  margin-top: auto;
}

.page-type-2-main {
  padding-top: clamp(4.375rem, calc(2.8169014085vw + 3.7147887324rem), 6.25rem);
  padding-bottom: clamp(4.375rem, calc(2.8169014085vw + 3.7147887324rem), 6.25rem);
}
.page-type-2-main .page-title {
  margin-bottom: clamp(4.375rem, calc(1.4084507042vw + 4.0448943662rem), 5.3125rem);
}
.page-type-2-main .section-title {
  margin-bottom: clamp(1.875rem, calc(0.9389671362vw + 1.6549295775rem), 2.5rem);
  padding: 0 0 20px;
  font-size: 20px;
  border-bottom: 1px solid var(--bs-color-3);
}

body.error404 .site-content {
  margin-top: auto;
  margin-bottom: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.img-fluid.inl {
  display: inline-block;
}

.img-full {
  width: 100%;
}

.rounded {
  border-radius: 50%;
}

.btn {
  position: relative;
  min-width: 190px;
}
.btn span {
  position: relative;
  z-index: 9;
}

.btn:not(.btn-white):not(.btn-circle) {
  --bs-btn-active-color: var(--bs-white);
  --bs-btn-hover-color: var(--bs-white);
}

.btn-transition:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--bs-btn-hover-bg);
  transition: 0.4s;
  top: 0;
  z-index: 1;
}
.btn-transition:hover:before {
  width: 100%;
}

.btn-full {
  width: 100%;
}

.btn-circle {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  line-height: 1.2;
  text-align: left;
  /**
   * This doesn't work as expected because using url() makes the SVG be treated as if it were an external resource, even if it's not exactly the case.
   * So there is no way to use CSS' currentColor within your SVG when it's a background image.
   * 
   * Could use mask() but the support as of 2023 is still shady:
   * https://caniuse.com/css-masks
   */
}
.btn-circle:hover {
  color: var(--bs-color-1);
}
.btn-circle:hover:hover {
  color: var(--bs-color-2);
}
.btn-circle .circle {
  flex: 1 0 auto;
  width: clamp(2.625rem, calc(1.0328638498vw + 2.3829225352rem), 3.3125rem);
  height: clamp(2.625rem, calc(1.0328638498vw + 2.3829225352rem), 3.3125rem);
  margin-right: clamp(0.625rem, calc(0.4694835681vw + 0.5149647887rem), 0.9375rem);
  border-radius: 50%;
  border: 3px solid;
}
.btn-circle .circle svg {
  width: clamp(1.25rem, calc(0.4694835681vw + 1.1399647887rem), 1.5625rem);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -7px;
  margin-right: -7px;
  padding: 0 !important;
}
.btn-group li {
  padding: 0 7px 14px;
  list-style: none;
}
.btn-group .btn {
  width: 100%;
}
@media (min-width: 768px) {
  .btn-group .btn {
    width: auto;
  }
}
.btn-group .link {
  margin-left: 10px;
  margin-right: 10px;
}
@media (min-width: 992px) {
  .btn-group .link {
    font-size: 18px;
  }
}

.btn-group-full li {
  flex: 1;
}
.btn-group-full .btn {
  width: 100%;
}

.btn-unstyled {
  min-width: 0;
  padding: 0;
  border-radius: 0;
}

.form-control {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .form-control {
    padding-left: 25px;
    padding-right: 25px;
    font-size: 18px;
  }
}
.form-control::placeholder {
  color: #535353;
}

.hide {
  display: none;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.list-unstyled {
  list-style: none;
}

.theme-box {
  position: relative;
  max-width: 535px;
}
.theme-box .overlay {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: clamp(1.5625rem, calc(2.8169014085vw + 0.9022887324rem), 3.4375rem);
  padding-right: clamp(1.5625rem, calc(2.8169014085vw + 0.9022887324rem), 3.4375rem);
  background: rgba(0, 0, 0, 0.65);
}
.theme-box a {
  color: var(--bs-white);
}
.theme-box a:hover {
  color: var(--bs-color-2);
}

.theme-video-box {
  position: relative;
  display: block;
}
.theme-video-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}
.theme-video-box svg {
  width: clamp(3.125rem, calc(7.5117370892vw + 1.3644366197rem), 8.125rem);
}
.theme-video-box:hover svg {
  transform: scale(1.2);
}

.theme-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
}
.theme-overlay .container {
  position: relative;
  z-index: 9;
}

.theme-shadow {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .theme-shadow {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.6);
  }
}
@media (min-width: 1200px) {
  .theme-shadow {
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
  }
}

.circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
}
.circle:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.circle .circle-inner > *:last-child {
  margin-bottom: 0 !important;
}

.square {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.square:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.splide__arrow {
  width: clamp(2.25rem, calc(4.7887323944vw + 1.1276408451rem), 5.4375rem);
  height: clamp(2.25rem, calc(4.7887323944vw + 1.1276408451rem), 5.4375rem);
  min-width: 0;
  border-radius: 50%;
}
.splide__arrow svg {
  width: clamp(0.75rem, calc(1.220657277vw + 0.4639084507rem), 1.5625rem);
}

@media (min-width: 992px) {
  .splide__pagination_2 li {
    margin: 0 5px;
    border-width: 3px;
  }
  .splide__pagination_2 button {
    width: 20px;
    height: 20px;
    border-width: 4px;
  }
}

.alert {
  margin: 0 0 30px;
  padding: 15px 15px;
  border-radius: 0.375rem;
}

@media (max-width: 575.98px) {
  .extra-mobile-lr-padding {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.modal .modal-dialog {
  --bs-modal-width: auto;
}
.modal .modal-content {
  --bs-modal-bg: transparent;
  max-width: 1250px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .modal .modal-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.modal .modal-body {
  --bs-modal-padding: 0;
}
.modal .modal-top {
  margin-bottom: clamp(1.25rem, calc(2.8169014085vw + 0.5897887324rem), 3.125rem);
}
.modal .modal-title {
  font-size: clamp(2rem, 2rem + (1vw - 0.234rem) * 0.846, 2.5625rem);
}
.modal .modal-main {
  flex: 1;
  padding-top: clamp(1.875rem, calc(1.8779342723vw + 1.4348591549rem), 3.125rem);
  padding-bottom: clamp(1.875rem, calc(1.8779342723vw + 1.4348591549rem), 3.125rem);
  padding-left: clamp(1.25rem, calc(7.0422535211vw + -0.400528169rem), 5.9375rem);
  padding-right: clamp(1.25rem, calc(7.0422535211vw + -0.400528169rem), 5.9375rem);
}
.modal .close {
  align-self: end;
  border-radius: 0;
}
.modal .close:hover {
  color: var(--bs-color-1);
}

.popover .popover-heading {
  margin-bottom: 20px;
  font-size: 20px;
}

.block-logo-slider + .block-testimonials-slider .box {
  margin-top: 60px;
}
@media (min-width: 1200px) {
  .block-logo-slider + .block-testimonials-slider .box {
    margin-top: -175px;
  }
}

.block-navigation + .block-testimonials-slider .box {
  margin-top: 60px;
}
@media (min-width: 1200px) {
  .block-navigation + .block-testimonials-slider .box {
    margin-top: -175px;
  }
}

body.admin-bar .site-header {
  top: 32px;
}
body.admin-bar .offcanvas {
  top: 46px;
}
@media (min-width: 783px) {
  body.admin-bar .offcanvas {
    top: 32px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  right: 0;
  width: 100%;
  transition: all 0.4s;
}
.site-header .mobile-header-link[href^="tel:"] {
  display: flex;
  align-items: center;
  min-width: 0 !important;
  border-color: #fff !important;
  height: 100%;
  padding: 10px;
  margin-right: 5px;
}
.site-header .mobile-header-link[href^="tel:"] .mobile-header-link-icon {
  margin-right: 0 !important;
}
.site-header.alt {
  background: #000;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 575.98px) {
  .site-header .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.site-header .offcanvas .container {
  flex: 1;
  overflow-y: auto;
}
.site-header .offcanvas .btn-close {
  display: none;
}
.site-header .offcanvas.show .btn-close {
  display: block;
}
.site-header .offcanvas-header {
  height: 67px;
}
@media (min-width: 992px) {
  .site-header .offcanvas-header {
    height: 77px;
  }
}
@media (min-width: 1440px) {
  .site-header .offcanvas-header {
    height: 97px;
  }
}
.site-header .navbar {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.site-header .navbar-nav {
  padding-left: 1rem;
  margin: 2rem 0;
}
.site-header .nav-link {
  font-family: var(--wp--preset--font-family--everett);
  font-weight: var(--bs-body-font-weight);
  text-transform: uppercase;
}
.site-header .nav-link .icon {
  padding-left: 5px;
}
.site-header .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .dropdown-toggle.show .icon:before {
  content: "\e80d";
}
.site-header .dropdown-toggle:after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  z-index: -1;
  margin: 0 auto;
  transition-property: bottom, border-width;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
@media (min-width: 992px) {
  .site-header .dropdown-toggle .icon:before {
    display: none;
    content: "\e80d";
  }
}
@media (min-width: 992px) {
  .site-header .dropdown-toggle.dropdown-item .icon:before {
    display: block;
    content: "\e80c";
  }
}
@media (min-width: 992px) {
  .site-header .dropdown-menu {
    --bs-dropdown-min-width:18.5rem;
    --bs-dropdown-padding-y:0;
    --bs-dropdown-item-padding-y:0.4065rem;
    --bs-dropdown-item-padding-x:1.1875rem;
    --bs-dropdown-font-size:25px;
  }
}
@media (min-width: 1440px) {
  .site-header .dropdown-menu {
    --bs-dropdown-font-size:34px;
  }
}
@media (max-width: 991.98px) {
  .site-header .dropdown-menu {
    position: static !important;
    transform: none !important;
    inset: auto !important;
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  .site-header .dropdown-menu[data-popper-placement=right-start] {
    margin-left: 20px !important;
  }
  .site-header .dropdown-menu[data-popper-placement=left-start] {
    margin-right: 20px !important;
  }
}
.site-header .dropdown-item {
  white-space: normal;
}
@media (min-width: 992px) {
  .site-header .dropdown-item {
    white-space: nowrap;
  }
}
.site-header .site-logo {
  position: relative;
  z-index: 9999;
}
.site-header .site-logo img {
  width: 166px;
  padding: 5px;
  height: auto;
}
@media (min-width: 992px) {
  .site-header .site-logo img {
    width: 192px;
  }
}
@media (min-width: 1440px) {
  .site-header .site-logo img {
    width: 212px;
    padding: 15px;
  }
}
.site-header .site-header-right {
  position: absolute;
  top: 0;
  right: 0;
}
.site-header .site-header-right > * {
  margin-left: 0.0938rem;
}
@media (min-width: 992px) {
  .site-header .site-header-right .header-link {
    margin-right: 1rem;
  }
}
.site-header .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .btn-header {
  min-width: 140px;
  padding: 0;
  height: 67px;
  font-size: 14px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .site-header .btn-header {
    min-width: 165px;
  }
}
@media (min-width: 992px) {
  .site-header .btn-header {
    min-width: 195px;
    height: 77px;
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .site-header .btn-header {
    height: 97px;
  }
}
.site-header .btn-header .text {
  padding-left: 25px;
}
.site-header .search-area .inner {
  padding: 15px 0;
}
@media (min-width: 768px) {
  .site-header .search-area .inner {
    padding: 20px 0;
  }
}
.site-header .search-area .form-control {
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .site-header .search-area .form-control {
    padding: 10px 25px;
  }
}

.site-footer {
  position: relative;
  z-index: 9;
  padding-top: 35px;
  padding-bottom: 35px;
  font-size: 15px;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 50px 0 50px;
  }
}
@media (min-width: 992px) {
  .site-footer {
    padding: 70px 0 35px;
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .site-footer {
    padding: 90px 0 35px;
  }
}
.site-footer a {
  color: var(--bs-white);
}
.site-footer a:hover {
  color: var(--bs-color-2);
}
.site-footer .site-logo {
  display: block;
  margin: 0 0 30px;
}
.site-footer .site-logo img {
  width: 75px;
}
@media (min-width: 768px) {
  .site-footer .site-logo img {
    width: 90px;
  }
}
@media (min-width: 992px) {
  .site-footer .site-logo img {
    width: auto;
  }
}
.site-footer .phone {
  font-size: 16px;
  text-decoration: none;
}
@media (min-width: 768px) {
  .site-footer .phone {
    font-size: 20px;
  }
}
.site-footer .menu {
  margin: 0 -15px 25px;
}
@media (min-width: 768px) {
  .site-footer .menu {
    margin: 0 -22px 25px;
  }
}
@media (min-width: 992px) {
  .site-footer .menu {
    margin-bottom: 0;
  }
}
.site-footer .menu li {
  padding: 0 15px 8px;
}
@media (min-width: 768px) {
  .site-footer .menu li {
    padding: 0 22px 11px;
  }
}
@media (min-width: 992px) {
  .site-footer .menu + .copy {
    margin: 0 0 11px 40px;
  }
}
.site-footer .btn-group {
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .site-footer .btn-group {
    display: block;
  }
}
@media (max-width: 575.98px) {
  .site-footer .btn-group {
    margin-left: -5px;
    margin-right: -5px;
  }
}
@media (min-width: 768px) {
  .site-footer .btn-group {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .site-footer .btn-group {
    justify-content: end;
  }
}
@media (min-width: 1440px) {
  .site-footer .btn-group {
    margin-bottom: 45px;
  }
}
@media (max-width: 575.98px) {
  .site-footer .btn-group li {
    padding: 0 5px 15px;
  }
}
.site-footer .btn-group .btn {
  width: auto;
}

/* =============================================================================
   WordPress Blocks
   ========================================================================== */
.wp-block-image img {
  box-sizing: border-box;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

.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 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 figcaption {
  margin-bottom: 1em;
  margin-top: 0.5em;
}

.wp-block-image .is-style-rounded img, .wp-block-image.is-style-circle-mask img, .wp-block-image.is-style-rounded 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;
  }
}
.wp-block-image :where(.has-border-color) {
  border-style: solid;
}

.wp-block-image :where([style*=border-top-color]) {
  border-top-style: solid;
}

.wp-block-image :where([style*=border-right-color]) {
  border-right-style: solid;
}

.wp-block-image :where([style*=border-bottom-color]) {
  border-bottom-style: solid;
}

.wp-block-image :where([style*=border-left-color]) {
  border-left-style: solid;
}

.wp-block-image :where([style*=border-width]) {
  border-style: solid;
}

.wp-block-image :where([style*=border-top-width]) {
  border-top-style: solid;
}

.wp-block-image :where([style*=border-right-width]) {
  border-right-style: solid;
}

.wp-block-image :where([style*=border-bottom-width]) {
  border-bottom-style: solid;
}

.wp-block-image :where([style*=border-left-width]) {
  border-left-style: solid;
}

.wp-block-image figure {
  margin: 0;
}

.wp-block-video {
  box-sizing: border-box;
}

.wp-block-video video {
  width: 100%;
}

@supports (position: sticky) {
  .wp-block-video [poster] {
    object-fit: cover;
  }
}
.wp-block-video.aligncenter {
  text-align: center;
}

.wp-block-video figcaption {
  margin-bottom: 1em;
  margin-top: 0.5em;
}

.has-text-align-center {
  text-align: center;
}

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

.has-text-align-right {
  text-align: right;
}

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

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.blockUI.blockOverlay {
  position: relative;
}
.blockUI.blockOverlay:before, .blockUI.blockOverlay .loader:before {
  height: 1.5em;
  width: 1.5em;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1em;
  margin-top: -1em;
  display: block;
  content: "";
  animation: spin 1s ease-in-out infinite;
  background: url("../svg/loader.svg") center center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  font-size: 1.5em;
  color: rgba(0, 0, 0, 0.75);
}
/** Gravity Forms */
.screen-reader-text {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.screen-reader-text:not(caption) {
  position: absolute !important;
}

.gform_heading {
  margin: 0 0 30px;
}

.gform_fields {
  display: flex;
  margin: 0 -10px;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: stretch;
  align-content: space-around;
}

.gfield {
  width: 100%;
  flex: 0 100%;
  padding: 0 10px;
  margin-bottom: 10px;
}

@media (min-width: 576px) {
  .gfield--width-half {
    width: 50%;
    flex: 0 50%;
  }
}

.ginput_complex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.ginput_complex > span {
  width: 100%;
  flex: 0 100%;
  margin: 10px 0 0;
  padding: 0 10px;
}
@media (min-width: 576px) {
  .ginput_complex > span {
    width: 50%;
    flex: 0 50%;
  }
}
.ginput_complex label {
  margin: 0;
  font-size: 18px;
}
.ginput_complex.ginput_container_name {
  margin-bottom: 0;
}

.ginput_container_address {
  flex-wrap: wrap;
}

.gfield_html p {
  margin: 15px 0;
  font-size: 18px;
}

.gfield_consent_description {
  width: 100%;
  max-height: 200px;
  padding: 10px 15px;
  overflow-y: auto;
  border: 1px solid #ddd;
  font-size: 14px;
}

.gfield_label {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 700;
}

.gfield_description {
  margin: 0 0 10px;
  font-size: 13px;
  text-align: left;
}

.gfield_required {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding-left: 1px;
  color: #dc3545;
}
.gfield_required:not(caption) {
  position: absolute !important;
}

.gfield_visibility_hidden {
  display: none;
}

.gfield_error *[aria-required=true][aria-invalid=true] {
  color: #700001;
  background-color: #f7cccc;
  border-color: #b82d2d;
}

.gfield_validation_message {
  display: block;
  margin: 0;
  padding: 3px 15px;
  background: var(--bs-red);
  border-radius: 0 0 2px 2px;
  color: var(--bs-white);
  font-size: 16px;
}

.gform_validation_errors {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  text-align: center;
  color: #700001;
  background-color: #f7cccc;
  border-color: #f4b8b8;
}
.gform_validation_errors h2 {
  margin: 0;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}
@media (min-width: 768px) {
  .gform_validation_errors h2 {
    font-size: 18px;
  }
}

.ginput_recaptcha > div {
  margin: 0 auto;
}

.gform_validation_container {
  display: none;
  position: absolute;
  left: -9000px;
}

.gform_required_legend {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.gform_required_legend:not(caption) {
  position: absolute !important;
}

.ginput_container_consent {
  padding: 25px 0;
  text-align: left;
}
.ginput_container_consent * {
  display: inline;
}

.gfield#field_submit .btn {
  margin: 0;
}

.gform_confirmation_message {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  text-align: center;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.gform_footer .btn {
  display: block;
  margin: 20px auto 0;
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 992px) {
  .gform_footer .btn {
    margin-top: 30px;
  }
}

.gform_fields textarea.form-control {
  height: 148px;
  min-height: 148px;
}
.gform_fields .hidden_label .gfield_label {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.gform_fields .hidden_label .gfield_label:not(caption) {
  position: absolute !important;
}
.gform_fields .gf_hidden, .gform_fields .gform_hidden, .gform_fields input.gform_hidden, .gform_fields input[type=hidden] {
  display: none !important;
  max-height: 1px !important;
  overflow: hidden;
}

.lg-backdrop {
  background: #000;
}
.lg-backdrop.in {
  opacity: 0.8;
}

.accordion .heading {
  margin: 0;
}
.accordion .heading .btn {
  width: 100%;
  padding: 18px 0;
  border-width: 1px;
  border-left: 0;
  border-right: 0;
  font-size: 18px;
  text-align: left;
}
@media (min-width: 768px) {
  .accordion .heading .btn {
    padding: 20px 0;
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .accordion .heading .btn {
    padding: 22px 0;
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  .accordion .heading .btn {
    font-size: 30px;
  }
}
.accordion .heading .btn .heading-title {
  padding-right: 15px;
  line-height: 1.2;
}
.accordion .heading .btn[aria-expanded=true] {
  border-bottom: 0;
}
.accordion .heading .btn svg {
  width: clamp(2.1875rem, calc(1.8779342723vw + 1.7473591549rem), 3.4375rem);
}
.accordion .body {
  margin: 0 0 20px;
  padding: 15px 0;
}
.accordion .item:last-child .body {
  margin: 0;
}

.split-module {
  position: relative;
}
@media (max-width: 991.98px) {
  .split-module.media-mobile-top .col-media {
    order: -1;
  }
}
@media (min-width: 992px) {
  .split-module.content-right .col-media {
    order: -1;
  }
}
.split-module .col-content {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .split-module .col-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.split-module .col-content > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .split-module .container .col-content {
    padding-left: 24px;
    padding-right: 24px;
  }
  .split-module .container .col-media {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 992px) {
  .split-module.content-right .container .col-content {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 40px;
  }
}
@media (min-width: 1200px) {
  .split-module.content-right .container .col-content {
    padding-left: 60px;
  }
}
@media (min-width: 1440px) {
  .split-module.content-right .container .col-content {
    padding-left: 70px;
  }
}
@media (min-width: 992px) {
  .split-module.content-right .container .col-media {
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .split-module.content-left .container .col-content {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 40px;
  }
}
@media (min-width: 1200px) {
  .split-module.content-left .container .col-content {
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .split-module.content-left .container .col-content {
    padding-right: 70px;
  }
}
@media (min-width: 992px) {
  .split-module.content-left .container .col-media {
    padding-left: 0;
  }
}
.split-module .full {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 992px) {
  .split-module .full {
    padding: 0;
  }
}
@media (min-width: 576px) {
  .split-module .full .col-content {
    padding-left: calc((100% - 540px) / 2 + 0.5rem);
    padding-right: calc((100% - 540px) / 2 + 0.5rem);
  }
}
@media (min-width: 768px) {
  .split-module .full .col-content {
    padding-left: calc((100% - 720px) / 2 + 0.5rem);
    padding-right: calc((100% - 720px) / 2 + 0.5rem);
  }
}
@media (min-width: 992px) {
  .split-module.content-right .full .col-content, .split-module.content-left .full .col-content {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .split-module.content-right .full .col-content, .split-module.content-left .full .col-content {
    padding: 60px;
  }
}
@media (min-width: 1440px) {
  .split-module.content-right .full .col-content, .split-module.content-left .full .col-content {
    padding: 70px;
  }
}
@media (min-width: 992px) {
  .split-module.content-right .full .col-content {
    padding-right: calc((100% - 960px) / 2 + 0.5rem);
  }
}
@media (min-width: 1200px) {
  .split-module.content-right .full .col-content {
    padding-right: calc((100% - 1140px) / 2 + 0.5rem);
  }
}
@media (min-width: 1440px) {
  .split-module.content-right .full .col-content {
    padding-right: calc((100% - 1400px) / 2 + 0.5rem);
  }
}
@media (min-width: 992px) {
  .split-module.content-left .full .col-content {
    padding-left: calc((100% - 960px) / 2 + 0.5rem);
  }
}
@media (min-width: 1200px) {
  .split-module.content-left .full .col-content {
    padding-left: calc((100% - 1140px) / 2 + 0.5rem);
  }
}
@media (min-width: 1440px) {
  .split-module.content-left .full .col-content {
    padding-left: calc((100% - 1400px) / 2 + 0.5rem);
  }
}

.post-item {
  margin-bottom: clamp(1.5625rem, calc(3.7558685446vw + 0.6822183099rem), 4.0625rem);
}
.post-item:hover a {
  color: var(--bs-color-2) !important;
}
.post-item a {
  width: 100%;
  max-width: 395px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .post-item a {
    max-width: 100%;
  }
}
.post-item img {
  margin-bottom: clamp(1.5625rem, calc(2.3474178404vw + 1.0123239437rem), 3.125rem);
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 18px;
}
.pagination ul li {
  margin: 0 2px;
}
.pagination ul li a,
.pagination ul li span {
  display: block;
  padding: 5px 10px;
  line-height: 1;
  font-size: 1em;
  border-radius: 50%;
  border: 1px solid transparent;
  text-decoration: none;
}
.pagination ul li span.current {
  border: 1px solid #000000;
}
.pagination ul li a:hover {
  background: #000000;
  border: 1px solid #000000;
  color: #FFFFFF;
}

.has-load-more {
  position: relative;
  overflow: hidden;
}
.has-load-more.collapsed:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.has-load-more.collapsed .load-more {
  display: block;
}

.load-more {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.load-more .btn {
  position: relative;
  z-index: 9;
}
@keyframes searchwp-spinner-line-fade-quick {
  0%, 39%, 100% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
}
.search-area .inner {
  padding: 30px 0;
}

.search-form {
  position: relative;
  display: flex;
}
.search-form .search-field {
  flex: 1;
  width: 100%;
  margin: 0;
}
.search-form .search-submit {
  padding: 0 15px;
}
.search-form svg {
  display: block;
  width: 28px;
  height: auto;
  fill: #fff;
}

.searchwp-live-search-results {
  top: 120% !important;
  left: 0 !important;
  width: 100% !important;
  min-height: 150px;
  max-height: 330px;
  padding: 10px;
  background: var(--bs-white);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (min-width: 768px) {
  .searchwp-live-search-results {
    max-height: 420px;
    padding: 15px;
  }
}
.searchwp-live-search-results[aria-expanded=true] {
  min-height: 0;
}

.searchwp-live-search-no-results {
  padding: 15px 15px !important;
}

.searchwp-live-search-result:hover {
  background: #F6F8FA;
}
.searchwp-live-search-result img {
  max-width: 60px;
  margin: 10px 0 10px 15px;
  border: 1px solid var(--bs-color-2);
}
@media (min-width: 576px) {
  .searchwp-live-search-result img {
    max-width: 70px;
    margin: 10px 0 10px 20px;
  }
}
@media (min-width: 992px) {
  .searchwp-live-search-result img {
    max-width: 80px;
  }
}
.searchwp-live-search-result p {
  margin: 0;
}
.searchwp-live-search-result a {
  display: block;
  text-decoration: none;
}
.searchwp-live-search-result .main {
  width: 100%;
  padding: 10px 10px;
}
.searchwp-live-search-result .title {
  font-size: 15px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .searchwp-live-search-result .title {
    font-size: 17px;
  }
}
.searchwp-live-search-result .excerpt {
  margin: 10px 0 0;
  font-size: 14px;
}
@media (min-width: 576px) {
  .searchwp-live-search-result .excerpt {
    font-size: 15px;
  }
}

.block-banner {
  position: relative;
}
.block-banner .wp-block-heading {
  margin-bottom: clamp(0.9375rem, calc(1.8779342723vw + 0.4973591549rem), 2.1875rem);
}
.block-banner .wp-block-heading + .wp-block-heading {
  margin-bottom: clamp(1.5625rem, calc(0.4694835681vw + 1.4524647887rem), 1.875rem);
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
}
.block-banner a:not(.btn) {
  color: var(--bs-white);
}
.block-banner a:not(.btn):hover {
  color: var(--bs-color-2);
}
.block-banner .video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%; /* todo ... 0 or 100? */
  /*padding-bottom: 56.25%;*/
  /*overflow:hidden;*/
}
.block-banner .video video {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  object-position: center center;
  /*background-size: auto 100%;*/
}

.banner-medium {
  min-height: 545px;
}
@media (min-width: 1440px) {
  .banner-medium {
    min-height: 755px;
  }
}
.banner-medium .wp-block-heading {
  margin-bottom: clamp(0.9375rem, calc(0.9389671362vw + 0.7174295775rem), 1.5625rem);
}

.banner-big {
  min-height: 810px;
}
@media (min-width: 1440px) {
  .banner-big {
    min-height: 1080px;
  }
}

/* Custom block styles */
.block-banner.block-banner-hero .container {
  position: relative;
  z-index: 3;
}
.block-banner.block-banner-hero .content {
  padding: 30px 0;
}
@media (min-width: 1024px) {
  .block-banner.block-banner-hero .content {
    padding: 0;
  }
}
.block-banner.block-banner-hero .yelp-rating {
  margin: 30px auto 0 auto;
}
@media (min-width: 1024px) {
  .block-banner.block-banner-hero .yelp-rating {
    margin: 0;
  }
}
.block-banner.block-banner-hero .form-container {
  background-color: #000;
  padding: 30px 20px;
  border-radius: 5px;
}
.block-banner.block-banner-hero .form-container .form-title {
  margin-bottom: 15px;
}
.block-banner.block-banner-hero .form-container .form-title .form-title-small {
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.block-banner.block-banner-hero .form-container input, .block-banner.block-banner-hero .form-container textarea, .block-banner.block-banner-hero .form-container input[type=submit] {
  margin-bottom: 0;
}
.block-banner.block-banner-hero .form-container input[type=submit] {
  background-color: transparent;
  color: #B89C7E;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 0;
  padding: 10px 20px;
  border: 2px solid #B89C7E;
  transition: all 0.3s ease;
  font-size: 1rem;
  margin-top: 0;
}
.block-banner.block-banner-hero .form-container input[type=submit]:hover {
  background-color: #B89C7E;
  color: #fff;
}
.block-banner.block-banner-hero #momence-plugin-lead-form {
  background: #000 !important;
}
.block-banner.block-banner-hero #momence-plugin-lead-form .momence-lead_form-field_label,
.block-banner.block-banner-hero #momence-plugin-lead-form .momence-lead_form-submit_btn {
  color: #FFF !important;
}
.block-banner.block-banner-hero #momence-plugin-lead-form .momence-lead_form-field_label .form-control,
.block-banner.block-banner-hero #momence-plugin-lead-form .momence-lead_form-submit_btn .form-control {
  color: #000 !important;
}
.block-banner.block-banner-hero #momence-plugin-lead-form .momence-lead_form-field_input,
.block-banner.block-banner-hero #momence-plugin-lead-form .react-tel-input {
  color: #000 !important;
}
.block-banner.block-banner-hero #momence-plugin-lead-form .momence-lead_form-field_input,
.block-banner.block-banner-hero #momence-plugin-lead-form input[type=tel] {
  border-radius: 8px !important;
  background: #fff !important;
}
.block-banner.block-banner-hero #momence-plugin-lead-form .flag-dropdown {
  background: #fff !important;
}
.block-banner.block-banner-hero #momence-plugin-lead-form .momence-lead_form-base_container {
  background: #000 !important;
}
.block-banner.block-banner-hero #momence-plugin-lead-form .momence-lead_form-submit_btn {
  width: 100% !important;
  text-transform: uppercase !important;
}
.block-banner.block-banner-hero #momence-plugin-lead-form input[type=tel] {
  width: 100%;
  padding: 12px 12px 12px 50px;
  border-radius: 8px;
}
.block-banner.block-banner-hero .banner-reviews {
  display: flex;
  flex-direction: column;
  margin: 30px auto;
}
@media (min-width: 1024px) {
  .block-banner.block-banner-hero .banner-reviews {
    flex-direction: row;
    align-items: center;
  }
}
.block-banner.block-banner-hero .banner-reviews p-rating {
  margin-top: 15px;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .block-banner.block-banner-hero .banner-reviews p-rating {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.block-banner.block-banner-hero .banner-reviews p-rating .star-container {
  width: 25px;
  height: 25px;
}
.block-banner.block-banner-hero .banner-reviews p-rating .star-container .star {
  width: 15px;
  height: 15px;
}
.block-banner.block-banner-hero .banner-reviews p-rating .star {
  width: 20px;
  height: 20px;
}
.block-banner.block-banner-hero .banner-reviews p-rating .rating-text {
  font-size: 1.2rem;
}
.block-banner.block-banner-hero .banner-reviews .stars {
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .block-banner.block-banner-hero .banner-reviews .stars {
    margin-left: 30px;
  }
}
.block-banner.block-banner-hero .banner-reviews .stars .star-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
  background-color: #B89C7E;
  border-radius: 5px;
  width: 30px;
  height: 30px;
}
.block-banner.block-banner-hero .banner-reviews .stars .star-container .star {
  padding: 2px;
  margin: 0 auto;
  width: 20px;
  height: 20px;
}
.block-banner.block-banner-hero .banner-reviews .rating-text {
  text-transform: none;
  font-size: 1rem;
  margin-left: 10px;
}

.block-box-and-content .theme-box .wp-block-heading {
  margin: 0 0 20px;
}
.block-content-and-map .split-module {
  padding: 50px 0;
}
.block-content-and-map iframe {
  width: 100%;
  height: clamp(26.875rem, calc(28.1690140845vw + 20.2728873239rem), 45.625rem);
}
.block-content-and-map .map {
  height: 365px;
}
@media (min-width: 1440px) {
  .block-content-and-map .map {
    height: 825px;
  }
}

.block-cta-strip {
  min-height: 300px;
}
@media (min-width: 1440px) {
  .block-cta-strip.size-medium {
    min-height: 550px;
  }
}
@media (min-width: 1440px) {
  .block-cta-strip.size-big {
    min-height: 680px;
  }
}
.block-cta-strip.text-center .btn-group {
  justify-content: center;
}
.block-cta-strip.text-right .btn-group {
  justify-content: flex-end;
}
.block-cta-strip .text {
  margin: 0 0 35px;
}
.block-cta-strip a:not(.btn) {
  color: var(--bs-white);
}
.block-cta-strip a:not(.btn):hover {
  color: var(--bs-color-1);
}
.block-cta-strip .btn:hover {
  color: var(--bs-color-2);
}

.block-icon .circle {
  width: 30px;
  background: #fff;
  color: #000;
}

.block-image-and-content img {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.block-image-and-content .content img {
  margin-left: 0;
  margin-right: 0;
}
.block-image-and-content .wp-block-heading {
  margin-bottom: clamp(0.9375rem, calc(0.9389671362vw + 0.7174295775rem), 1.5625rem);
}
.block-image-and-content .btn-outline-color-2 {
  color: rgb(184, 156, 126) !important;
}
.block-image-and-content .btn-outline-color-2:hover {
  color: #fff !important;
}

.block-images-and-content .col-media img {
  max-width: 30%;
}
.block-images-and-content .col-media img:nth-child(1) {
  max-width: 40%;
}

.block-image-boxes {
  padding-bottom: clamp(1.5625rem, calc(1.8779342723vw + 1.1223591549rem), 2.8125rem);
}
.theme-image-box {
  margin-bottom: clamp(0.9375rem, calc(1.4084507042vw + 0.6073943662rem), 1.875rem);
}
.theme-image-box .wp-block-heading {
  margin-bottom: clamp(0.9375rem, calc(1.4084507042vw + 0.6073943662rem), 1.875rem);
}
.theme-image-box .box-main {
  padding-top: clamp(2.1875rem, calc(1.8779342723vw + 1.7473591549rem), 3.4375rem);
  padding-bottom: clamp(2.1875rem, calc(1.8779342723vw + 1.7473591549rem), 3.4375rem);
}
.theme-image-box .btn .circle {
  flex: none;
}

.block-induction .col-right > * {
  max-width: 535px;
  margin-left: auto;
}
.block-induction .theme-image-box {
  margin-bottom: clamp(3.125rem, calc(1.8779342723vw + 2.6848591549rem), 4.375rem);
}
.block-induction .theme-image-box .box-main {
  flex: 1;
  padding-left: clamp(1.25rem, calc(3.2863849765vw + 0.4797535211rem), 3.4375rem);
  padding-right: clamp(1.25rem, calc(3.2863849765vw + 0.4797535211rem), 3.4375rem);
}
.block-induction .theme-image-box .block-btn-circle {
  margin-top: auto;
}
.block-induction .theme-image-box .btn {
  color: var(--bs-white);
}
.block-induction .theme-image-box .btn:hover {
  color: var(--bs-color-2);
}

.block-info-strip {
  padding: 25px 0;
  border-top: 2px solid var(--bs-color-1);
  border-bottom: 2px solid var(--bs-color-1);
}
.block-info-strip img {
  flex: 0 0 100px;
  max-width: 100px;
  margin-right: clamp(2.1875rem, calc(0.9389671362vw + 1.9674295775rem), 2.8125rem);
}

.block-video-and-content .btn-outline-color-2 {
  color: rgb(184, 156, 126) !important;
}
.block-video-and-content .btn-outline-color-2:hover {
  color: #fff !important;
}

.block-info-cards .item {
  margin-bottom: 16px;
}
.block-info-cards .box {
  flex: 1;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(1.25rem, calc(1.4084507042vw + 0.9198943662rem), 2.1875rem);
  padding-bottom: clamp(1.25rem, calc(1.4084507042vw + 0.9198943662rem), 2.1875rem);
  padding-left: clamp(1.25rem, calc(1.4084507042vw + 0.9198943662rem), 2.1875rem);
  padding-right: clamp(1.25rem, calc(1.4084507042vw + 0.9198943662rem), 2.1875rem);
  border-style: solid;
}
.block-info-cards .box .wp-block-heading {
  margin-bottom: clamp(1.875rem, calc(0.4694835681vw + 1.7649647887rem), 2.1875rem);
}
.block-info-cards.type-1 .box {
  max-width: 395px;
}
@media (min-width: 576px) {
  .block-info-cards.type-1 .box {
    max-width: 100%;
  }
}
.block-info-cards.type-1 .box .wp-block-heading + * {
  margin-top: auto;
  margin-bottom: auto;
  padding: 20px 20px;
}
.block-info-cards.type-2 .box > *:last-child {
  margin-top: auto;
}

.block-logo-slider {
  padding: 25px 0;
}
.block-logo-slider .wp-block-heading {
  margin: 0 0 20px;
  flex: 1 0 auto;
  font-size: 18px;
}
@media (min-width: 576px) {
  .block-logo-slider .wp-block-heading {
    margin: 0 30px 0 0;
  }
}
@media (min-width: 768px) {
  .block-logo-slider .wp-block-heading {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .block-logo-slider .wp-block-heading {
    font-size: 22px;
  }
}

.block-navigation {
  padding: 20px 0 5px;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .block-navigation {
    padding: 30px 0 10px;
  }
}
@media (min-width: 992px) {
  .block-navigation {
    padding: 40px 0 15px;
  }
}
.block-navigation .wp-block-heading {
  margin: 0;
  line-height: 1.2;
  font-size: 18px;
  letter-spacing: -0.36px;
}
@media (min-width: 768px) {
  .block-navigation .wp-block-heading {
    font-size: 22px;
    letter-spacing: -0.44px;
  }
}
@media (min-width: 992px) {
  .block-navigation .wp-block-heading {
    margin: 0 0 25px;
  }
}
.block-navigation .block-icon {
  display: none;
}
@media (min-width: 992px) {
  .block-navigation .block-icon {
    display: block;
    margin: 0 0 25px 20px;
  }
}
.block-navigation a {
  color: var(--bs-white);
}
.block-navigation a:hover {
  color: var(--bs-color-2);
}
.block-navigation ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px -15px 0;
  font-size: 16px;
  letter-spacing: -0.4px;
}
@media (min-width: 768px) {
  .block-navigation ul {
    margin: 20px -20px 0;
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .block-navigation ul {
    margin: 0 0 0 40px;
    font-size: 20px;
  }
}
.block-navigation ul li {
  margin: 0 15px 15px;
}
@media (min-width: 768px) {
  .block-navigation ul li {
    margin: 0 20px 20px;
  }
}
@media (min-width: 992px) {
  .block-navigation ul li {
    margin: 0 25px 25px;
  }
}

@media (min-width: 576px) {
  .block-posts .has-load-more.collapsed {
    max-height: none !important;
  }
}
@media (min-width: 576px) {
  .block-posts .has-load-more.collapsed:before {
    display: none;
  }
}
@media (min-width: 576px) {
  .block-posts .load-more {
    display: none !important;
  }
}
.block-posts .latest {
  margin-bottom: 45px;
}
.block-posts .items {
  margin-bottom: 45px;
}
.block-posts .theme-image-box {
  margin-bottom: 20px;
}
.block-posts .theme-image-box .wp-post-image {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  height: 300px;
}
.block-posts .theme-image-box .box-main {
  flex: 1;
  padding-left: clamp(1.25rem, calc(3.2863849765vw + 0.4797535211rem), 3.4375rem);
  padding-right: clamp(1.25rem, calc(3.2863849765vw + 0.4797535211rem), 3.4375rem);
}
.block-posts .theme-image-box .block-btn-circle {
  margin-top: auto;
}
.block-posts .theme-image-box .btn {
  color: var(--bs-white);
}
.block-posts .theme-image-box .btn:hover {
  color: var(--bs-color-2);
}
.block-posts .post-item a {
  text-decoration: none;
}
.block-posts .post-title {
  margin-bottom: clamp(1.5625rem, calc(1.4084507042vw + 1.2323943662rem), 2.5rem);
  text-decoration: underline;
}

.block-posts-slider .container > .wp-block-heading {
  margin-bottom: clamp(1.875rem, calc(2.8169014085vw + 1.2147887324rem), 3.75rem);
}
.block-posts-slider .post-box {
  height: 100%;
}
.block-posts-slider .main {
  flex: 1;
}
.block-posts-slider .excerpt {
  margin-bottom: clamp(1.25rem, calc(0.9389671362vw + 1.0299295775rem), 1.875rem);
}
.block-posts-slider .tags {
  margin: auto -5px 0;
}
.block-posts-slider .tag {
  padding: 0 5px 5px;
}

.block-quick-links .qlink {
  padding: 30px 0;
  border-bottom: 2px solid var(--bs-color-1);
}
.block-quick-links .qlink a {
  display: block;
  margin-top: 15px;
}
.block-quick-links .qlink .wp-block-heading {
  margin-bottom: clamp(0.9375rem, calc(1.4084507042vw + 0.6073943662rem), 1.875rem);
}

.block-schedule .theme-box {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(1.875rem, calc(1.8779342723vw + 1.4348591549rem), 3.125rem);
}
@media (min-width: 1200px) {
  .block-schedule .theme-box {
    margin-right: 0;
  }
}
.block-schedule .theme-box:last-of-type {
  margin-bottom: 0;
}

.block-team .accordion {
  margin-bottom: 45px;
}
@media (min-width: 1200px) {
  .block-team .accordion {
    margin-bottom: 0;
  }
}
.block-team .accordion .heading .btn[aria-expanded=true] {
  padding-left: 25px;
}
.block-team .accordion .body {
  padding: 15px 25px;
}

.block-testimonials-slider .box {
  position: relative;
  z-index: 9;
  max-width: 535px;
  margin: 0 auto;
  margin-top: -115px;
  padding-top: clamp(1.5625rem, calc(0.9389671362vw + 1.3424295775rem), 2.1875rem);
  padding-bottom: clamp(1.5625rem, calc(0.9389671362vw + 1.3424295775rem), 2.1875rem);
  padding-left: clamp(1.875rem, calc(1.4084507042vw + 1.5448943662rem), 2.8125rem);
  padding-right: clamp(1.875rem, calc(1.4084507042vw + 1.5448943662rem), 2.8125rem);
}
@media (min-width: 992px) {
  .block-testimonials-slider .box {
    max-width: 495px;
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .block-testimonials-slider .box {
    max-width: 535px;
  }
}
.block-testimonials-slider .content {
  margin-bottom: clamp(0.9375rem, calc(0.9389671362vw + 0.7174295775rem), 1.5625rem);
  padding-left: 15px;
  border-left: 5px solid var(--bs-color-2);
}
.block-testimonials-slider img {
  max-width: 55px;
  margin: 0 15px 0 0;
  border: 2px solid var(--bs-color-1);
}
.block-testimonials-slider .name-rating {
  flex: 1;
}
.block-testimonials-slider .name {
  font-size: 18px;
}
.block-testimonials-slider .stars {
  margin: 0 -2px;
  line-height: 1;
  font-size: 22px;
}
.block-testimonials-slider .stars .icon {
  padding: 0 2px;
}

.single-post .col-right > * {
  margin-left: auto;
}
.single-post blockquote > * {
  margin: 0 0 20px;
}
.single-post blockquote cite {
  font-size: 24px;
  font-style: normal;
}
@media (min-width: 768px) {
  .single-post blockquote cite {
    font-size: 30px;
  }
}