@charset "UTF-8";
#ControlBar, #ControlBar *, .actionMenu * {
  box-sizing: content-box;
}

:root {
  --offset:	0px;
  --header-height:	0px;
  --scrollbar: 0px;
}

/*  dtx-framework (1608px) v1.4.2 */
:root {
  --container-padding: 120px;
  --column-padding: 12px;
  --column-width: 144px;
  --column-fluid: calc((100vw - (100vw - 100%)) / 12);
}

@media only screen and (max-width: 1608px) {
  :root {
    --container-padding: 84px;
  }
}
@media only screen and (max-width: 1260px) {
  :root {
    --container-padding: 72px;
  }
}
@media only screen and (max-width: 744px) {
  :root {
    --container-padding: 24px;
  }
}
.dtx-container, .dtx-container-flex {
  max-width: 1968px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.dtx-container-fluid, .dtx-container-fluid-flex {
  max-width: 1968px;
  width: 100%;
  margin: 0 auto;
}

#dtx-dev .dtx-container, #dtx-dev .dtx-container-flex {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  z-index: 999;
}
#dtx-dev .dtx-input-toggle {
  content: "";
  position: fixed;
  bottom: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 3);
  right: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 3);
  z-index: 999;
}
#dtx-dev.show #dtx-dev-columns {
  opacity: 1;
}

#dtx-dev-columns {
  display: flex !important;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
#dtx-dev-columns > div {
  position: relative;
  flex: 1;
}
#dtx-dev-columns > div:before, #dtx-dev-columns > div:last-of-type:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 255, 255, 0.5);
  mix-blend-mode: difference;
}
#dtx-dev-columns > div:last-of-type:after {
  left: auto;
  right: 0;
}

.dtx-container, .dtx-container-flex {
  position: relative;
  display: block;
  width: min(100%-var(--container-padding), var(--container-max-width));
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.dtx-container-fluid, .dtx-container-fluid-flex {
  position: relative;
  display: block;
  width: min(100%, var(--container-max-width));
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.dtx-container-flex {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.dtx-container-fluid-flex {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.dtx-row {
  display: flex;
  flex-wrap: wrap;
}

.dtx-col,
.dtx-col-1,
.dtx-col-2,
.dtx-col-3,
.dtx-col-4,
.dtx-col-5,
.dtx-col-6,
.dtx-col-7,
.dtx-col-8,
.dtx-col-9,
.dtx-col-10,
.dtx-col-11,
.dtx-col-12 {
  position: relative;
  min-height: 1px;
  width: 100%;
  padding: 0 var(--column-padding);
}

.dtx-col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.dtx-col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.dtx-col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.dtx-col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.dtx-col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.dtx-col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.dtx-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.dtx-col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.dtx-col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.dtx-col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.dtx-col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.dtx-col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.dtx-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media only screen and (max-width: 744px) {
  .dtx-col,
  .dtx-col-1,
  .dtx-col-2,
  .dtx-col-3,
  .dtx-col-4,
  .dtx-col-5,
  .dtx-col-6,
  .dtx-col-7,
  .dtx-col-8,
  .dtx-col-9,
  .dtx-col-10,
  .dtx-col-11,
  .dtx-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

input,
button,
textarea,
select {
  font: inherit;
}

p {
  overflow-wrap: break-word;
}

*:has([class*=dtx]) a,
a:has([class]) {
  text-decoration: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a:hover, a:focus,
button:hover,
button:focus {
  text-decoration: none !important;
}

.dtx-page {
  isolation: isolate;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: max(1.6rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.6rem), 1.8rem));
  font-weight: 400;
}

body.personabar-visible {
  margin-left: 0 !important;
}

::selection {
  color: #ffffff;
  background-color: rgba(161, 80, 22, 0.65);
}

::moz-selection {
  color: #ffffff;
  background-color: rgba(161, 80, 22, 0.65);
}

.dtx-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

a {
  color: #8B4513;
  text-decoration: none;
  transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
a:hover, a:focus, a:focus-visible {
  outline: unset;
  text-decoration: none;
  color: #ce661c;
}
a:not([class]):focus-visible {
  text-decoration: underline !important;
}

blockquote {
  padding: 0;
  margin: 0;
  border-left: 0;
  font-size: max(1.6rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.6rem), 1.8rem));
}
blockquote p {
  font-style: italic;
}
blockquote footer {
  font-family: "DM Serif Display", "Times New Roman", Times, serif;
  color: #8B4513;
  font-size: max(1.9rem, min(calc(0.005787037 * (100vw - 74.4rem) + 1.9rem), 2.4rem));
  line-height: 1.2727272727;
}
blockquote footer::before {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "DM Serif Display", "Times New Roman", Times, serif;
  font-weight: 400;
  line-height: 1.25;
  color: #2B2B2B;
  margin-top: 0;
}

h1 {
  font-size: max(3.6rem, min(calc(0.0277777778 * (100vw - 74.4rem) + 3.6rem), 6rem));
  line-height: 1.1428571429;
  margin-bottom: calc(max(3.6rem, min(calc(0.0277777778 * (100vw - 74.4rem) + 3.6rem), 6rem)) / 3);
}

h2 {
  font-size: max(3rem, min(calc(0.0208333333 * (100vw - 74.4rem) + 3rem), 4.8rem));
  line-height: 1.25;
  margin-bottom: calc(max(3rem, min(calc(0.0208333333 * (100vw - 74.4rem) + 3rem), 4.8rem)) / 3);
}

h3 {
  font-size: max(2.6rem, min(calc(0.0092592593 * (100vw - 74.4rem) + 2.6rem), 3.4rem));
  line-height: 1.2352941176;
  margin-bottom: calc(max(2.6rem, min(calc(0.0092592593 * (100vw - 74.4rem) + 2.6rem), 3.4rem)) / 3);
}

h4 {
  font-size: max(2.3rem, min(calc(0.005787037 * (100vw - 74.4rem) + 2.3rem), 2.8rem));
  line-height: 1.2857142857;
  margin-bottom: calc(max(2.3rem, min(calc(0.005787037 * (100vw - 74.4rem) + 2.3rem), 2.8rem)) / 3);
}

h5 {
  font-size: max(1.9rem, min(calc(0.005787037 * (100vw - 74.4rem) + 1.9rem), 2.4rem));
  line-height: 1.2727272727;
  margin-bottom: calc(max(1.9rem, min(calc(0.005787037 * (100vw - 74.4rem) + 1.9rem), 2.4rem)) / 3);
}

h6 {
  font-size: max(1.7rem, min(calc(0.0034722222 * (100vw - 74.4rem) + 1.7rem), 2rem));
  line-height: 1.2;
  margin-bottom: calc(max(1.7rem, min(calc(0.0034722222 * (100vw - 74.4rem) + 1.7rem), 2rem)) / 3);
}

input {
  accent-color: #8B4513;
}

textarea {
  min-width: 100%;
  max-width: 100%;
}

label {
  font-weight: 400;
}

ol {
  position: relative;
  display: block;
  width: auto;
  margin: 0;
  padding: 0 0 0 calc(max(1.2rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.2rem), 1.4rem)) / 1);
  list-style-type: none;
}
ol > li {
  counter-increment: counter;
  position: relative;
  padding-left: 2.4rem;
  line-height: 1.8;
  margin: 0;
}
ol > li:before {
  content: counter(counter);
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 2.4rem;
  position: absolute;
  left: calc(max(1.2rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.2rem), 1.4rem)) * -1);
  top: calc((max(1.6rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.6rem), 1.8rem)) * 1.4 - max(1.6rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.6rem), 1.8rem))) / 2 - max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) / 1.5 / 4);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  background-color: #e2792e;
}
ol > li ul,
ol > li ol {
  counter-reset: counter;
}
ol > li ul {
  position: relative;
  display: block;
  width: auto;
  margin: 0;
  padding: 0 0 0 max(1.2rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.2rem), 1.4rem));
  list-style-type: none;
  margin-left: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * -1);
}
ol > li ul li {
  position: relative;
  padding-left: calc(max(1.2rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.2rem), 1.4rem)) / 1.25);
  margin: 0;
  line-height: 1.5;
}
ol > li ul li:before {
  display: inline-block;
  width: calc(max(1.2rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.2rem), 1.4rem)) * 1.5);
  position: absolute;
  left: calc(max(1.2rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.2rem), 1.4rem)) * -1);
  top: calc((max(1.6rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.6rem), 1.8rem)) * 1.5 - max(1.6rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.6rem), 1.8rem))) / 2 - max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) / 1.5 / 4);
  font-family: "Font Awesome 5 Pro";
  font-style: normal !important;
  font-weight: 900;
  font-size: max(1.2rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.2rem), 1.4rem));
}
ol > li ul li:last-child {
  margin-bottom: 0;
}
ol > li ul li:before {
  font-size: calc(max(1.6rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.6rem), 1.8rem)) / 3);
  top: calc(max(1.6rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.6rem), 1.8rem)) * 1.5 - max(1.6rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.6rem), 1.8rem)));
  content: "\f111";
  color: #8B4513;
}
ol > li ul li ul li:before {
  color: #69340e;
}
ol > li ul li ul li ul li:before {
  content: "\e105";
  color: #8B4513;
}

p {
  margin-bottom: max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem));
}

input[type=checkbox].dtx-input-toggle {
  appearance: initial;
  position: relative;
  display: inline-block;
  width: 4.8rem;
  min-width: 4.8rem;
  height: calc(4.8rem * 0.52);
  min-height: calc(4.8rem * 0.52);
  margin: 0;
  padding: 0;
  cursor: pointer;
  isolation: isolate;
  z-index: 1;
}
input[type=checkbox].dtx-input-toggle:before {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background-color: #adadad;
  border: 1px solid transparent;
  will-change: background-color;
  transition: background-color 0.8s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: all;
  visibility: visible;
  cursor: pointer;
  z-index: 2;
}
input[type=checkbox].dtx-input-toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-125%, -50%);
  width: calc(4.8rem * 0.32);
  min-width: calc(4.8rem * 0.32);
  height: calc(4.8rem * 0.32);
  min-height: calc(4.8rem * 0.32);
  border-radius: calc(4.8rem * 0.32);
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  visibility: visible;
  z-index: 3;
}
input[type=checkbox].dtx-input-toggle:hover:before, input[type=checkbox].dtx-input-toggle:focus-visible:before {
  border-color: #878787;
  transition: background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
input[type=checkbox].dtx-input-toggle:hover, input[type=checkbox].dtx-input-toggle:focus {
  outline: unset;
}
input[type=checkbox].dtx-input-toggle:checked:before {
  border-color: #8B4513;
  background-color: #8B4513;
  transition: background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
input[type=checkbox].dtx-input-toggle:checked:after {
  transform: translate(25%, -50%);
}

/* Masonry */
/* Languages Selector */
/* Modal */
dtx-modal {
  display: none;
}
dtx-modal.showing {
  display: block;
}
dtx-modal.showing .dtx-modal-backdrop {
  opacity: 1;
}

.dtx-modal {
  --color: $color-primary;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 999;
}

.dtx-modal-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(1.2rem);
          backdrop-filter: blur(1.2rem);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1) 800ms;
  pointer-events: auto;
  z-index: 999;
}

.dtx-modal-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 6);
  overflow-y: scroll !important;
  overscroll-behavior: contain;
  pointer-events: none;
  z-index: 999;
}
.dtx-modal-wrapper > * {
  pointer-events: auto;
}

.dtx-modal-wrapper-content {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1260px;
}

.dtx-modal--video {
  --plyr-color-main: #8B4513;
  position: relative;
  display: block;
  width: 100%;
  max-width: 1260px;
  margin: auto;
  overflow: hidden;
}
.dtx-modal--video > [data-plyr-provider] {
  margin: auto;
}
.dtx-modal--video .plyr {
  border-radius: max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem));
}
.dtx-modal--video .plyr--paused .plyr__poster {
  z-index: 2;
  filter: blur(1rem);
  position: absolute;
  opacity: 1;
  top: 65px;
  left: 0;
  bottom: 0;
  right: 0;
}

.dtx-modal--close {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  margin: 0 0 0 auto;
  padding: 0.8rem;
  border: unset;
  box-shadow: unset;
  border-radius: unset;
  background-color: transparent;
  transform: translateX(4.2rem);
}
.dtx-modal--close svg {
  display: block;
  width: 100%;
  height: 100%;
}
.dtx-modal--close svg path {
  fill: rgba(255, 255, 255, 0.7);
  transition: fill 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.dtx-modal--close:hover svg path, .dtx-modal--close:focus-visible svg path {
  fill: white;
}

.dtx-tooltip {
  all: unset;
  position: relative;
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: center;
  width: max(1.4rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.4rem), 1.6rem));
  height: max(1.4rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.4rem), 1.6rem));
  font-size: max(1.4rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.4rem), 1.6rem));
  text-align: center;
  color: #2B2B2B;
}

.dtx-tooltip-button {
  all: unset;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.dtx-tooltip-button:hover, .dtx-tooltip-button:focus, .dtx-tooltip-button:focus-visible, .dtx-tooltip-button:focus-within {
  opacity: 1;
}
.dtx-tooltip-button:hover + .dtx-tooltip-container, .dtx-tooltip-button:focus + .dtx-tooltip-container, .dtx-tooltip-button:focus-visible + .dtx-tooltip-container, .dtx-tooltip-button:focus-within + .dtx-tooltip-container {
  display: block;
}
.dtx-tooltip-button > * {
  pointer-events: none;
}

.dtx-tooltip-container {
  display: none;
  content: attr(data-content);
  position: absolute;
  bottom: 125%;
  width: 1000%;
  min-width: -moz-fit-content;
  min-width: fit-content;
  max-width: 35ch;
  height: auto;
  min-height: min-content;
  font-size: max(1.2rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.2rem), 1.4rem));
  padding: 1.2rem;
  background-color: transparent;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.dtx-tooltip-container > * {
  position: relative;
  z-index: 2;
}
.dtx-tooltip-container > * p {
  margin: 0 0 calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) / 2);
}
.dtx-tooltip-container > *:last-child {
  margin: 0;
}
.dtx-tooltip-container:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 1;
}
.dtx-tooltip-container:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * -0.5);
  transform: translateX(-50%) rotate(45deg);
  width: max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem));
  height: max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem));
  background-color: #ffffff;
}
.dtx-tooltip-container:hover, .dtx-tooltip-container:focus, .dtx-tooltip-container:focus-visible, .dtx-tooltip-container:focus-within {
  display: block;
}

/* Socials */
.dtx-socials {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.dtx-socials__item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: max(3.2rem, min(calc(0.0185185185 * (100vw - 74.4rem) + 3.2rem), 4.8rem));
  height: max(3.2rem, min(calc(0.0185185185 * (100vw - 74.4rem) + 3.2rem), 4.8rem));
  color: #535353;
}
.dtx-socials__item a:hover, .dtx-socials__item a:focus {
  color: #8B4513;
}
.dtx-socials__item:last-of-type {
  margin-right: 0;
}
.dtx-socials[data-style=round] .dtx-socials__item a {
  background-color: #535353;
  border-radius: 3rem;
  color: #ffffff;
  transition: background-color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.dtx-socials[data-style=round] .dtx-socials__item a:hover, .dtx-socials[data-style=round] .dtx-socials__item a:focus {
  color: #ffffff;
  background-color: #363636;
}
.dtx-socials[data-style=square] .dtx-socials__item {
  border: solid 0.1rem #808080;
  transition: border-color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.dtx-socials[data-style=square] .dtx-socials__item:hover, .dtx-socials[data-style=square] .dtx-socials__item:focus {
  border-color: #363636;
}
.dtx-socials[data-style=square] .dtx-socials__item:hover a, .dtx-socials[data-style=square] .dtx-socials__item:focus a {
  color: #363636;
}

.dtx-btn, .dtx-btn-secondary, .dtx-btn-primary, .dtx-btn-primary--big {
  padding: 0;
  margin: 0;
  border: unset;
  border-radius: unset;
  box-shadow: unset;
  background-color: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: max(1.4rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.4rem), 1.6rem));
  padding: 0 0;
  color: initial;
  border: 1px solid transparent;
  border-radius: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 2);
  transition: background-color 0.8s cubic-bezier(0.19, 1, 0.22, 1), color 0.8s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.dtx-btn:hover, .dtx-btn-secondary:hover, .dtx-btn-primary:hover, .dtx-btn-primary--big:hover, .dtx-btn:focus, .dtx-btn-secondary:focus, .dtx-btn-primary:focus, .dtx-btn-primary--big:focus {
  color: inherit;
  text-decoration: none;
}
.dtx-btn:hover, .dtx-btn-secondary:hover, .dtx-btn-primary:hover, .dtx-btn-primary--big:hover, .dtx-btn:focus, .dtx-btn-secondary:focus, .dtx-btn-primary:focus, .dtx-btn-primary--big:focus, .dtx-btn:focus-visible, .dtx-btn-secondary:focus-visible, .dtx-btn-primary:focus-visible, .dtx-btn-primary--big:focus-visible {
  transition: background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1), color 0.4s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.dtx-btn:hover, .dtx-btn-secondary:hover, .dtx-btn-primary:hover, .dtx-btn-primary--big:hover, .dtx-btn:focus, .dtx-btn-secondary:focus, .dtx-btn-primary:focus, .dtx-btn-primary--big:focus, .dtx-btn:focus-visible, .dtx-btn-secondary:focus-visible, .dtx-btn-primary:focus-visible, .dtx-btn-primary--big:focus-visible {
  outline: unset;
}
.dtx-btn:focus-visible, .dtx-btn-secondary:focus-visible, .dtx-btn-primary:focus-visible, .dtx-btn-primary--big:focus-visible {
  outline: 0.1rem solid #000000;
  outline-offset: 0.2rem;
  text-decoration: none;
}

.dtx-btn-primary, .dtx-btn-primary--big {
  position: relative;
  font-family: "DM Serif Display", "Times New Roman", Times, serif;
  font-size: max(1.9rem, min(calc(0.005787037 * (100vw - 74.4rem) + 1.9rem), 2.4rem));
  line-height: 1.2727272727;
}
.dtx-btn-primary::after, .dtx-btn-primary--big::after {
  content: "";
  display: inline-flex;
  align-self: center;
  width: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 4);
  height: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 4);
  margin-left: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 1);
  background-repeat: no-repeat;
  background-size: max(1.2rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.2rem), 1.4rem));
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--%3E%3Cpath fill='%23301C0D' d='M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h306.7L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z'/%3E%3C/svg%3E");
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), background-image 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.dtx-btn-primary:focus, .dtx-btn-primary--big:focus {
  color: #ffffff;
}
.dtx-btn-primary:hover, .dtx-btn-primary--big:hover, .dtx-btn-primary:focus-visible, .dtx-btn-primary--big:focus-visible {
  color: #8B4513;
}
.dtx-btn-primary:hover::after, .dtx-btn-primary--big:hover::after, .dtx-btn-primary:focus-visible::after, .dtx-btn-primary--big:focus-visible::after {
  transform: translateX(0.6rem);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--%3E%3Cpath fill='%236C3F1D' d='M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h306.7L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z'/%3E%3C/svg%3E");
}
.dtx-btn-primary:focus-visible, .dtx-btn-primary--big:focus-visible {
  outline: 0.2rem solid #e2792e;
}
.dtx-btn-primary--big::after {
  width: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 4);
  height: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 4);
  background-size: max(1.6rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.6rem), 1.8rem));
}

.dtx-btn-secondary {
  color: #ffffff;
  background-color: #ff8400;
}
.dtx-btn-secondary:focus {
  color: #ffffff;
}
.dtx-btn-secondary:hover, .dtx-btn-secondary:focus-visible {
  color: #ffffff;
  background-color: #d97000;
}
.dtx-btn-secondary:focus-visible {
  outline: 0.2rem solid #ffbb73;
}

.dtx-header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: calc(max(5.6rem, min(calc(0.092920354 * (100vw - 98.4rem) + 5.6rem), 14rem)) / 3) 0;
}

.dtx-header-left {
  width: max(28rem, min(calc(0.0555555556 * (100vw - 74.4rem) + 28rem), 32.8rem));
}

.dtx-header-right {
  position: relative;
}

.dtx-header__logo {
  padding: 0;
  margin: 0;
  border: unset;
  border-radius: unset;
  box-shadow: unset;
  background-color: transparent;
  text-decoration: none;
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 13.41%;
  z-index: 100;
}
.dtx-header__logo:hover, .dtx-header__logo:focus {
  color: inherit;
  text-decoration: none;
}
.dtx-header__logo svg {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.dtx-header__logo svg path {
  transition: fill 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.dtx-header__logo:focus-visible {
  outline-offset: 0.6rem;
  outline: 0.2rem solid #000000;
  border-radius: 0.4rem;
}
.dtx-header__logo:hover svg path {
  fill: #8B4513;
  transition: fill 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.dtx-header__menu ul {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.dtx-header__menu ul li {
  margin: 0 max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem));
}
.dtx-header__menu ul li a:hover, .dtx-header__menu ul li a:focus {
  text-decoration: none;
}
.dtx-header__menu ul li:first-child {
  margin-left: 0;
}
.dtx-header__menu ul li:last-child {
  margin-right: 0;
}
.dtx-header__menu ul li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
  box-shadow: none;
  padding: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 1);
  background-color: #ffffff;
}
.dtx-header__menu ul li.dropdown .dropdown-menu li {
  margin: 0;
  padding: 0 0 calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 1);
}
.dtx-header__menu ul li.dropdown .dropdown-menu li:last-of-type {
  padding-bottom: 0;
}
.dtx-header__menu ul li.dropdown .dropdown-menu li a {
  padding: 0;
  white-space: nowrap;
  color: #8B4513;
}
.dtx-header__menu ul li.dropdown .dropdown-menu li a:hover {
  color: #ce661c;
  background-color: transparent;
}
.dtx-header__menu ul li.dropdown:hover .dropdown-menu {
  display: block;
}

.dtx-header__burger {
  --burger-bar-color: #2B2B2B;
  display: none;
  position: relative;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-self: center;
  padding: 0;
  border: unset;
  box-shadow: unset;
  border-radius: unset;
  background-color: transparent;
  width: max(2rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 2rem), 2.4rem));
  height: calc(max(2rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 2rem), 2.4rem)) - 0.1rem * 3);
  cursor: pointer;
  z-index: 101;
}
.dtx-header__burger--wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  margin: 0;
  width: max(2rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 2rem), 2.4rem));
  height: 0.1rem;
  background: var(--burger-bar-color);
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}
.dtx-header__burger--wrapper:after, .dtx-header__burger--wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  width: max(2rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 2rem), 2.4rem));
  height: 0.1rem;
  background: var(--burger-bar-color);
}
.dtx-header__burger--wrapper:after {
  top: calc(max(2rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 2rem), 2.4rem)) / 3);
  transition: top 300ms 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.dtx-header__burger--wrapper:before {
  bottom: calc(max(2rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 2rem), 2.4rem)) / 3);
  transition: bottom 300ms 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.dtx-open .dtx-header__burger--wrapper {
  background-color: transparent;
  transition: background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1) calc(300ms / 1.5);
}
.dtx-open .dtx-header__burger--wrapper:before {
  bottom: 0;
  transform: rotate(45deg) scaleX(0.8);
  transition: bottom 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1) 300ms;
}
.dtx-open .dtx-header__burger--wrapper:after {
  top: 0;
  transform: rotate(-45deg) scaleX(0.8);
  transition: top 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1) 300ms;
}

.dtx-header__back {
  padding: 0;
  margin: 0;
  border: unset;
  border-radius: unset;
  box-shadow: unset;
  background-color: transparent;
  text-decoration: none;
}
.dtx-header__back:hover, .dtx-header__back:focus {
  color: inherit;
  text-decoration: none;
}

.dtx-header--beheer a {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  color: #2B2B2B;
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  margin-left: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 2);
}
.dtx-header--beheer a:hover, .dtx-header--beheer a:focus {
  opacity: 0.65;
  text-decoration: none;
}

.dtx-header-full {
  --toggle-delay: 0.08s;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: var(--vp-height);
  background-color: #ffffff;
  visibility: hidden;
  transition: clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s ease 1.2s;
  z-index: 100;
}
.dtx-header-full a {
  pointer-events: all;
}
.dtx-header-full[data-nav-animation=left-right] {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.dtx-header-full[data-nav-animation=right-left] {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.dtx-header-full[data-nav-animation=circle-center] {
  clip-path: circle(0% at 50% 50%);
}

.dtx-header-full-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overscroll-behavior: contain;
  overflow-y: scroll;
  overflow-x: hidden;
  isolation: isolate;
}
.dtx-header-full-wrapper[data-scrollbar=hide] {
  width: calc(100% + var(--scrollbar));
  margin-right: calc(var(--scrollbar) * -1);
}

.dtx-header-full--header {
  position: relative;
  display: block;
  width: calc(100% - var(--scrollbar));
  padding: calc(max(5.6rem, min(calc(0.092920354 * (100vw - 98.4rem) + 5.6rem), 14rem)) / 3) var(--container-padding);
  background-color: #ffffff;
  z-index: 2;
}
.dtx-header-full--header[data-position=fixed] {
  position: fixed;
  top: 0;
}
.dtx-header-full--header[data-position=fixed] + .dtx-header-full--body {
  margin-top: var(--header-height);
}
.dtx-header-full--header .dtx-header__logo svg path {
  fill: #2B2B2B;
}
.dtx-header-full--header .dtx-header__logo:hover svg path, .dtx-header-full--header .dtx-header__logo:focus-visible svg path {
  fill: #8B4513;
}

.dtx-header-full--header-wrapper {
  position: relative;
  display: block;
  width: max(28rem, min(calc(0.0555555556 * (100vw - 74.4rem) + 28rem), 32.8rem));
}

.dtx-header-full--body {
  position: relative;
  display: block;
  width: 100%;
  height: calc(100% - var(--header-height));
  min-height: -moz-fit-content;
  min-height: fit-content;
  z-index: 1;
}
.dtx-header-full--body[data-levels=true] .dtx-header-full--body__level {
  overscroll-behavior: contain;
  overflow-y: auto;
}
.dtx-header-full--body[data-levels=false] .dtx-header-full--body__level {
  overscroll-behavior: unset;
  overflow-y: auto;
}

.dtx-header-full--body__level {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: calc(100% + var(--scrollbar));
  height: 100%;
  margin-right: calc(var(--scrollbar) * -1);
  padding: 0 var(--container-padding);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.dtx-header-full--body__level > *:last-child {
  padding-bottom: calc(calc(max(5.6rem, min(calc(0.092920354 * (100vw - 98.4rem) + 5.6rem), 14rem)) / 3) * 2);
}
.dtx-header-full--body__level[data-level="-1"] {
  opacity: 0;
  transform: translateX(-100%);
}
.dtx-header-full--body__level[data-level="0"] {
  opacity: 1;
  transform: translateX(0);
}
.dtx-header-full--body__level[data-level="1"] {
  opacity: 0;
  transform: translateX(100%);
}
.dtx-header-full--body__level ul {
  width: 100%;
}
.dtx-header-full--body__level ul li {
  width: 100%;
  margin: 0 0 calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 2);
  opacity: 1;
}
.dtx-header-full--body__level ul li:last-child {
  margin-bottom: 0;
}
.dtx-header-full--body__level ul li a {
  color: #2B2B2B;
}
.dtx-header-full--body__level ul li a:before {
  left: 0;
}
.dtx-header-full--body__level ul li a.active:before {
  opacity: 1;
}
.dtx-header-full--body__level ul li a[data-toggle=dropdown] {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.dtx-header-full--body__level ul li a[data-toggle=dropdown]:after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.dtx-header-full--body__level ul li a:hover, .dtx-header-full--body__level ul li a:focus-visible {
  color: #8B4513;
}
.dtx-header-full--body__level ul li ul {
  display: none;
}
.dtx-header-full--body__level .dtx-header__menu {
  width: 100%;
  margin-bottom: auto;
}

.dtx-open .dtx-content {
  visibility: hidden;
  height: calc(var(--vp-height, 100dvh) - var(--header-height));
  max-height: calc(var(--vp-height, 100dvh) - var(--header-height));
  overflow-y: scroll;
}
.dtx-open .dtx-header__burger {
  --burger-bar-color: #2B2B2B;
  margin-right: var(--scrollbar);
}
.dtx-open .dtx-header-full {
  visibility: visible;
  transition: clip-path 0.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s ease 0s;
}
.dtx-open .dtx-header-full[data-nav-animation=left-right], .dtx-open .dtx-header-full[data-nav-animation=right-left] {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.dtx-open .dtx-header-full[data-nav-animation=circle-center] {
  clip-path: circle(100% at 50% 50%);
}

@media only screen and (max-width: 984px) {
  .dtx-header__hide-mobile {
    display: none;
  }
}
.dtx-footer {
  display: flex;
  flex-direction: row;
  padding-bottom: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 4);
}
.dtx-footer p {
  margin-bottom: 0;
}
.dtx-footer p strong {
  display: block;
  margin-bottom: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 1.75);
  font-weight: 400;
  font-family: "DM Serif Display", "Times New Roman", Times, serif;
  font-size: max(2rem, min(calc(0.0138888889 * (100vw - 74.4rem) + 2rem), 3.2rem));
  line-height: 1.375;
}
.dtx-footer-left {
  width: calc(var(--column-fluid) * 3);
  margin-right: calc(var(--column-fluid) / 2);
}
.dtx-footer-left div a {
  display: block;
  color: #000000;
}
.dtx-footer-left div a:hover, .dtx-footer-left div a:focus {
  color: #8B4513;
}
.dtx-footer-left div p {
  color: #000000;
}
.dtx-footer-left address {
  margin-bottom: 0;
  color: #000000;
}
.dtx-footer-left address p {
  margin-bottom: 0;
}
.dtx-footer-center {
  width: calc(var(--column-fluid) * 2);
  margin-right: calc(var(--column-fluid) / 2);
}
.dtx-footer-center ul {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.dtx-footer-center ul li {
  margin-bottom: 0.3rem;
}
.dtx-footer-center ul a {
  color: #000000;
}
.dtx-footer-center ul a:hover, .dtx-footer-center ul a:focus {
  color: #8B4513;
}
.dtx-footer-logo {
  width: max(28rem, min(calc(0.0555555556 * (100vw - 74.4rem) + 28rem), 32.8rem));
  margin-bottom: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 1.75);
}
.dtx-footer-logo__inner {
  position: relative;
  padding-bottom: 13.41%;
}
.dtx-footer-logo svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.dtx-footer-right {
  width: calc(var(--column-fluid) * 2);
}

.dtx-footer-small {
  --color-link: #dbdbdb;
  --color-link-hover: #c5c5c5;
  position: relative;
  display: block;
  width: 100%;
}
.dtx-footer-small[data-divider=vertical] {
  --divider: "|";
}
.dtx-footer-small[data-divider=min] {
  --divider: "-";
}
.dtx-footer-small[data-divider=circle] {
  --divider: "●";
}
.dtx-footer-small ul {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.dtx-footer-small ul li {
  position: relative;
  margin-right: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 0.75);
}
.dtx-footer-small ul li a {
  font-size: max(1.2rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.2rem), 1.4rem));
  color: var(--color-link);
}
.dtx-footer-small ul li a:after {
  display: inline-block;
  content: var(--divider);
  font-size: max(1.2rem, min(calc(0.0023148148 * (100vw - 74.4rem) + 1.2rem), 1.4rem));
  color: var(--color-link);
  margin-left: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 0.75);
}
.dtx-footer-small ul li a:hover, .dtx-footer-small ul li a:focus {
  color: var(--color-link-hover);
  text-decoration: none;
}
.dtx-footer-small ul li:last-child a:after {
  display: none;
}

@media only screen and (max-width: 1260px) {
  .dtx-footer-left {
    width: calc(var(--column-fluid) * 4);
    margin-right: calc(var(--column-fluid) * 1);
  }
  .dtx-footer-center {
    width: calc(var(--column-fluid) * 3);
  }
  .dtx-footer-right {
    width: calc(var(--column-fluid) * 3);
  }
}
@media only screen and (max-width: 744px) {
  .dtx-footer {
    flex-direction: column;
  }
  .dtx-footer-left, .dtx-footer-right, .dtx-footer-center {
    width: 100%;
    margin-bottom: calc(max(0.8rem, min(calc(0.0144927536 * (100vw - 98.4rem) + 0.8rem), 1.2rem)) * 3);
  }
}
.dtx-section-primary {
  padding: calc(gutter-vertical / 1.5) 0;
  background-color: #8B4513;
}
.dtx-section-primary * {
  color: #ffffff;
}

.dtx-section-secondary {
  padding: calc(gutter-vertical / 1.5) 0;
  background-color: #ff8400;
}
.dtx-section-secondary * {
  color: #ffffff;
}

.dtx-section-dark {
  padding: calc(gutter-vertical / 1.5) 0;
  background-color: #000000;
}
.dtx-section-dark * {
  color: #ffffff;
}

@media only screen and (max-width: 1680px) {
  [data-hide="1680px"] {
    display: none;
  }
}
@media only screen and (max-width: 1440px) {
  [data-hide="1440px"] {
    display: none;
  }
}
@media only screen and (max-width: 1260px) {
  [data-hide="1260px"] {
    display: none;
  }
}
@media only screen and (max-width: 984px) {
  [data-hide="984px"] {
    display: none;
  }
}
@media only screen and (max-width: 744px) {
  [data-hide="744px"] {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  [data-hide="600px"] {
    display: none;
  }
}
.dtx-lazy {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.dtx-lazy.dtx-lazy--loaded {
  opacity: 1;
}

@media only screen and (max-width: 1680px) {
  [data-show="1680px"][data-show-display=block] {
    display: block;
  }
  [data-show="1680px"][data-show-display=flex] {
    display: flex;
  }
}
@media only screen and (max-width: 1440px) {
  [data-show="1440px"][data-show-display=block] {
    display: block;
  }
  [data-show="1440px"][data-show-display=flex] {
    display: flex;
  }
}
@media only screen and (max-width: 1260px) {
  [data-show="1260px"][data-show-display=block] {
    display: block;
  }
  [data-show="1260px"][data-show-display=flex] {
    display: flex;
  }
}
@media only screen and (max-width: 984px) {
  [data-show="984px"][data-show-display=block] {
    display: block;
  }
  [data-show="984px"][data-show-display=flex] {
    display: flex;
  }
}
@media only screen and (max-width: 744px) {
  [data-show="744px"][data-show-display=block] {
    display: block;
  }
  [data-show="744px"][data-show-display=flex] {
    display: flex;
  }
}
@media only screen and (max-width: 600px) {
  [data-show="600px"][data-show-display=block] {
    display: block;
  }
  [data-show="600px"][data-show-display=flex] {
    display: flex;
  }
}
.dtx-spacing-top {
  margin-top: max(5.6rem, min(calc(0.092920354 * (100vw - 98.4rem) + 5.6rem), 14rem));
}

.dtx-spacing-top--md {
  margin-top: calc(max(5.6rem, min(calc(0.092920354 * (100vw - 98.4rem) + 5.6rem), 14rem)) / 1.5);
}

.dtx-spacing-top--sm {
  margin-top: calc(max(5.6rem, min(calc(0.092920354 * (100vw - 98.4rem) + 5.6rem), 14rem)) / 2);
}

.dtx-spacing-bottom {
  margin-bottom: max(5.6rem, min(calc(0.092920354 * (100vw - 98.4rem) + 5.6rem), 14rem));
}

.dtx-spacing-bottom--md {
  margin-bottom: calc(max(5.6rem, min(calc(0.092920354 * (100vw - 98.4rem) + 5.6rem), 14rem)) / 1.5);
}

.dtx-spacing-bottom--sm {
  margin-bottom: calc(max(5.6rem, min(calc(0.092920354 * (100vw - 98.4rem) + 5.6rem), 14rem)) / 2);
}