/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
  font-variant-ligatures: none;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Increase line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

.d-none,
.hidden {
  display: none !important;
}

.w-auto {
  width: auto;
}

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

.text-underline {
  text-decoration: underline;
}

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

/* Utility classes for grid layout */
.d-flex {
  display: flex;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

[class*=col-] {
  padding: 0 9px;
}

.col-9 {
  width: 100%;
}

.col-8 {
  width: 88.8888888889%;
}

.col-7 {
  width: 77.7777777778%;
}

.col-6 {
  width: 66.6666666667%;
}

.col-5 {
  width: 55.5555555556%;
}

.col-4 {
  width: 44.4444444444%;
}

.col-3 {
  width: 33.3333333333%;
}

.col-2 {
  width: 22.2222222222%;
}

.col-1 {
  width: 11.1111111111%;
}

.col-50 {
  width: 50%;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

/* Utility classes for padding */
.pa-0 {
  padding: 0 !important;
}

.pa-1 {
  padding: 9px !important;
}

.pa-2 {
  padding: 18px !important;
}

.pa-3 {
  padding: 27px !important;
}

.pa-4 {
  padding: 36px !important;
}

.pa-5 {
  padding: 45px !important;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding-left: 9px;
  padding-right: 9px;
}

.px-2 {
  padding-left: 18px;
  padding-right: 18px;
}

.px-3 {
  padding-left: 27px;
  padding-right: 27px;
}

.px-4 {
  padding-left: 36px;
  padding-right: 36px;
}

.px-5 {
  padding-left: 45px;
  padding-right: 45px;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 9px;
  padding-bottom: 9px;
}

.py-2 {
  padding-top: 18px;
  padding-bottom: 18px;
}

.py-3 {
  padding-top: 27px;
  padding-bottom: 27px;
}

.py-4 {
  padding-top: 36px;
  padding-bottom: 36px;
}

.py-5 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 9px;
}

.pl-2 {
  padding-left: 18px;
}

.pl-3 {
  padding-left: 27px;
}

.pl-4 {
  padding-left: 36px;
}

.pl-5 {
  padding-left: 45px;
}

.pr-0 {
  padding-right: 0;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 9px;
}

.pt-2 {
  padding-top: 18px;
}

.pt-3 {
  padding-top: 27px;
}

.pt-4 {
  padding-top: 36px;
}

.pt-5 {
  padding-top: 45px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 9px;
}

.pb-2 {
  padding-bottom: 18px;
}

.pb-3 {
  padding-bottom: 27px;
}

.pb-4 {
  padding-bottom: 36px;
}

.pb-5 {
  padding-bottom: 45px;
}

/* Utility classes for margin */
.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 9px !important;
}

.mt-2 {
  margin-top: 18px !important;
}

.mt-3 {
  margin-top: 27px !important;
}

.mt-4 {
  margin-top: 36px !important;
}

.mt-5 {
  margin-top: 45px !important;
}

.mt-auto {
  margin-top: auto !important;
}

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

.mb-1 {
  margin-bottom: 9px !important;
}

.mb-2 {
  margin-bottom: 18px !important;
}

.mb-3 {
  margin-bottom: 27px !important;
}

.mb-4 {
  margin-bottom: 36px !important;
}

.mb-5 {
  margin-bottom: 45px !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-1 {
  margin-left: 9px !important;
  margin-right: 9px !important;
}

.mx-2 {
  margin-left: 18px !important;
  margin-right: 18px !important;
}

.mx-3 {
  margin-left: 27px !important;
  margin-right: 27px !important;
}

.mx-4 {
  margin-left: 36px !important;
  margin-right: 36px !important;
}

.mx-5 {
  margin-left: 45px !important;
  margin-right: 45px !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 9px !important;
  margin-bottom: 9px !important;
}

.my-2 {
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}

.my-3 {
  margin-top: 27px !important;
  margin-bottom: 27px !important;
}

.my-4 {
  margin-top: 36px !important;
  margin-bottom: 36px !important;
}

.my-5 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}

.btn, a.btn {
  display: inline-block;
  padding: 9px 18px;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  background-color: rgb(214.9583333333, 209.7916666667, 202.0416666667);
  color: #fff;
}
.btn:hover, a.btn:hover {
  background-color: #c1b9ad;
}
.btn:focus, a.btn:focus {
  background-color: rgb(171.0416666667, 160.2083333333, 143.9583333333);
}

.sticky-top-5 {
  position: sticky;
  top: 245px;
}

/*
The styles for the Sander theme.
*/
html {
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  background: #fff;
  color: #222;
  -webkit-font-smoothing: antialiased;
  color: #a7866e;
}
body a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
body a:hover {
  color: rgb(108.9055793991, 84.1201716738, 66.0944206009);
}
body a:focus {
  color: rgb(140.643776824, 108.635193133, 85.356223176);
}

.container {
  max-width: calc(177.7777777778vh - clamp(20px, 3.6842105263vw, 70px) * 2);
  margin: 0 auto;
  padding: 0 clamp(20px, 3.6842105263vw, 70px);
  box-sizing: border-box;
  position: relative;
}

header {
  height: 140px;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
header .custom-logo {
  width: auto;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

.fixed-nav-background {
  position: fixed;
  z-index: 998;
  top: 140px;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.fixed-nav-background .nav-multiply {
  width: 100%;
  height: 60px;
  background-color: #c1b9ad;
  pointer-events: none;
}

nav {
  height: 60px;
  position: sticky;
  width: 100%;
  top: 140px;
  z-index: 999;
}
nav ul {
  display: flex;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(14px, 0.9473684211vw, 18px);
  line-height: 1;
  letter-spacing: 0.05em;
  mix-blend-mode: normal;
}
nav #main-nav {
  flex: 1;
}
nav #main-nav > li {
  flex: 1;
  min-width: 0;
}
nav #main-nav > li.nav-spacer {
  flex-grow: 2;
}
nav #main-nav > li.history-back {
  flex: 0;
  min-width: 60px;
  font-family: "Font Awesome 7 Free", sans-serif;
}
nav #main-nav > li.history-back a {
  font-size: 0px;
}
nav #main-nav > li.history-back a::before {
  font-family: inherit;
  content: "";
  font-weight: 400;
  font-size: clamp(14px, 0.9473684211vw, 18px);
}
nav #main-nav > li.history-back.--history-back-visible a::before {
  font-family: inherit;
  content: "\f104";
  font-weight: 900;
  font-size: clamp(14px, 0.9473684211vw, 18px);
}
nav #secondary-nav {
  flex: 0 0 auto;
  padding: 0 9px;
}
nav #secondary-nav a:hover,
nav #secondary-nav a.active {
  background-color: transparent;
  transform: scale(1.25);
}
nav li {
  position: relative;
  display: block;
}
nav li a {
  display: inline-block;
  text-decoration: none;
  color: #FFF !important;
  height: 60px;
  line-height: 60px;
  transition: background-color 0.2s, transform 0.2s;
  text-align: center;
  width: 100%;
  position: relative;
  cursor: pointer;
  padding: 0 9px;
  white-space: nowrap;
  min-width: 40px;
}
nav li a:hover, nav li.active > a, nav li.active > div a {
  background-color: rgba(123.4526666667, 103.7705333333, 74.2473333333, 0.75);
}
nav .sub-navigation {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: -moz-fit-content;
  min-width: fit-content;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  background-color: rgba(123.4526666667, 103.7705333333, 74.2473333333, 0.5);
}
nav .sub-navigation li {
  width: 100%;
}
nav .sub-navigation li a {
  height: auto;
  line-height: normal;
  padding: 9px;
}
nav li:hover > .sub-navigation {
  opacity: 1;
  visibility: visible;
}
nav .sub-navigation .sub-navigation {
  position: static;
  display: none;
  transition: opacity 0.2s, visibility 0.2s;
  background-color: rgba(123.4526666667, 103.7705333333, 74.2473333333, 0.3);
  top: auto;
  left: auto;
  width: auto;
}
nav .sub-navigation .sub-navigation.open {
  display: block;
}
nav .nav-toggle-btn {
  display: none;
}
nav #mobile-nav-toggle .sub-navigation {
  visibility: visible;
}
nav #mobile-nav-toggle .sub-navigation a {
  text-align: left;
  flex: 1;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
nav #mobile-nav-toggle .sub-navigation.open {
  opacity: 1 !important;
  display: flex !important;
  flex-direction: column;
}
nav #mobile-nav-toggle .sub-navigation li[data-has-children] {
  flex-wrap: wrap;
}
nav #mobile-nav-toggle .sub-navigation li[data-has-children] > a {
  display: block;
  flex: 1;
}
nav #mobile-nav-toggle .sub-navigation li[data-has-children] > .sub-navigation {
  width: 100%;
  flex-basis: 100%;
  position: static;
  opacity: 0;
  display: none;
  transition: opacity 0.2s, visibility 0.2s;
}
nav #mobile-nav-toggle .nav-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 9px;
  height: 34px;
}
nav #mobile-nav-toggle .nav-toggle-btn i {
  transition: transform 0.2s;
}
nav #mobile-nav-toggle .nav-toggle-btn:hover {
  background-color: rgba(123.4526666667, 103.7705333333, 74.2473333333, 0.75);
}
nav #mobile-nav-toggle li[data-expanded=true] .nav-toggle-btn i {
  transform: rotate(180deg);
}

section {
  width: 100%;
  min-height: calc(100vh - 60px);
  display: grid;
  padding-top: 200px;
  padding-bottom: clamp(20px, 3.6842105263vw, 70px);
}
section:has(.hero) {
  display: block;
}
section.first {
  margin-top: -140px;
  padding-top: 140px;
  background-color: #fff;
}

h1,
.h1 {
  font-weight: 100;
  font-size: clamp(45px, 5.6842105263vw, 108px);
  line-height: 1.2;
  margin-bottom: 0.6em;
}

h2,
.h2 {
  font-weight: 100;
  font-size: clamp(36px, 4.7368421053vw, 90px);
  line-height: 1.2;
  margin-bottom: 0.6em;
}

h3,
.h3 {
  font-weight: 100;
  font-size: clamp(27px, 3.7894736842vw, 72px);
  line-height: 1.2;
  margin-bottom: 0.6em;
}

h4,
.h4 {
  font-weight: 200;
  font-size: clamp(18px, 2.8421052632vw, 54px);
  line-height: 1.2;
  margin-bottom: 0.6em;
}

h5,
.h5 {
  font-weight: 300;
  font-size: clamp(clamp(14px, 0.9473684211vw, 18px), 1.8947368421vw, 36px);
  line-height: 1.2;
  margin-bottom: 0.6em;
}

h6,
.h6 {
  font-weight: 700;
  font-size: clamp(clamp(14px, 0.9473684211vw, 18px), 1.4210526316vw, 27px);
  line-height: 1.2;
  margin-bottom: 0.6em;
}

p {
  font-weight: 400;
  font-size: clamp(14px, 0.9473684211vw, 18px);
  line-height: 1.7;
  margin-bottom: 1.7em;
}

a.internal-link:before {
  content: "\f061";
  font-family: "Font Awesome 7 Free", sans-serif;
  font-weight: 700;
  margin-right: 0.5em;
}

.job__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section:has(._3d-flip-book) {
  padding-bottom: 0;
}

._3d-flip-book {
  height: calc(100vh - 140px - 60px - 9px) !important;
}
._3d-flip-book .book-widget {
  height: 100%;
}

.hero-like {
  position: relative;
  --heightA: calc(100vh - 140px - clamp(20px, 3.6842105263vw, 70px));
  padding-bottom: var(--heightA);
  overflow: hidden;
  width: 100%;
  height: auto;
  margin-top: -60px;
}
.hero-like iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.wp-block-columns {
  gap: 0;
}
.wp-block-columns .wp-block-column {
  padding: 0 9px;
}

.wp-block-image.size-full img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}

.form-field,
.um-field {
  display: flex;
  margin-bottom: 9px;
  min-height: 60px;
  background-color: rgba(193, 185, 173, 0.3);
  align-items: center;
  padding: 0;
}

label,
.um-field-label {
  flex: 0 0 1;
  font-weight: 500;
  padding: 0 9px;
  min-width: 120px;
  margin: 0;
  color: #a7866e;
}

.um-field-label {
  min-width: 200px;
}

.um-field-area {
  flex: 1;
  padding-right: 9px;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
textarea,
body .um .um-form input[type=text],
body .um .um-form input[type=email],
body .um .um-form input[type=password],
body .um .um-form input[type=tel],
body .um .um-form textarea {
  flex: 1;
  padding: 9px !important;
  border: 1px solid transparent !important;
  color: rgb(108.9055793991, 84.1201716738, 66.0944206009) !important;
  background-color: transparent !important;
  font-size: clamp(14px, 0.9473684211vw, 18px) !important;
  font-weight: 500;
  font-family: inherit;
  transition: border-color 0.2s;
  width: calc(100% - 9px) !important;
}
input[type=text]:hover,
input[type=email]:hover,
input[type=password]:hover,
input[type=tel]:hover,
textarea:hover,
body .um .um-form input[type=text]:hover,
body .um .um-form input[type=email]:hover,
body .um .um-form input[type=password]:hover,
body .um .um-form input[type=tel]:hover,
body .um .um-form textarea:hover {
  background-color: rgba(193, 185, 173, 0.2) !important;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
textarea:focus,
body .um .um-form input[type=text]:focus,
body .um .um-form input[type=email]:focus,
body .um .um-form input[type=password]:focus,
body .um .um-form input[type=tel]:focus,
body .um .um-form textarea:focus {
  border-color: #c1b9ad !important;
  outline: none !important;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder, body .um .um-form input[type=text]::-moz-placeholder, body .um .um-form input[type=email]::-moz-placeholder, body .um .um-form input[type=password]::-moz-placeholder, body .um .um-form input[type=tel]::-moz-placeholder, body .um .um-form textarea::-moz-placeholder {
  color: #c1b9ad !important;
  font-weight: 400;
  font-size: 14px;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder,
body .um .um-form input[type=text]::placeholder,
body .um .um-form input[type=email]::placeholder,
body .um .um-form input[type=password]::placeholder,
body .um .um-form input[type=tel]::placeholder,
body .um .um-form textarea::placeholder {
  color: #c1b9ad !important;
  font-weight: 400;
  font-size: 14px;
}

/** Contact form 7 styles */
.sander-cf7-form .submit-field {
  display: flex;
  margin-bottom: 9px;
  min-height: 60px;
  align-items: center;
}
.sander-cf7-form .label-top label {
  align-self: flex-start;
  padding-top: 18px;
}
.sander-cf7-form textarea {
  margin-top: 9px;
  height: 180px;
}
.sander-cf7-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0 !important;
}
.sander-cf7-form .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 9px;
}
.sander-cf7-form input[type=checkbox] {
  width: 18px !important;
  height: 18px !important;
}
.sander-cf7-form .wpcf7-form-control-wrap {
  width: 100% !important;
}
.sander-cf7-form .wpcf7-select {
  width: calc(100% - 9px) !important;
  padding: 9px !important;
  background-color: transparent !important;
  border: 1px solid transparent !important;
  color: rgb(108.9055793991, 84.1201716738, 66.0944206009) !important;
  font-size: clamp(14px, 0.9473684211vw, 18px);
}
.sander-cf7-form .wpcf7-select:hover {
  background-color: rgba(193, 185, 173, 0.2) !important;
}
.sander-cf7-form .form-accept-field {
  margin-bottom: 9px;
  min-height: 60px;
  height: 129px;
  background-color: rgba(193, 185, 173, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sander-cf7-form .wpcf7-list-item-label {
  font-size: clamp(14px, 0.9473684211vw, 18px) !important;
  font-family: inherit !important;
  font-weight: 500 !important;
}
.sander-cf7-form .wpcf7-not-valid-tip {
  position: absolute !important;
  background: #f00 !important;
  color: #fff !important;
  padding: 0 9px !important;
}
.sander-cf7-form .wpcf7-not-valid {
  border: 1px solid #f00 !important;
}
.sander-cf7-form .wpcf7-submit {
  width: 100% !important;
  padding: 9px !important;
  border: 1px solid #c1b9ad !important;
  background-color: #c1b9ad !important;
  min-height: 60px !important;
  color: #fff !important;
  margin-top: 3px !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
  border-radius: 4px !important;
}
.sander-cf7-form .wpcf7-submit:disabled {
  opacity: 0.5 !important;
}
.sander-cf7-form .wpcf7-submit:hover:not(:disabled) {
  cursor: pointer;
  background-color: rgb(149.0833333333, 135.4166666667, 114.9166666667) !important;
}

form:not(.submitting) .wpcf7-spinner {
  display: none;
}

form.submitting .wpcf7-submit {
  display: none;
}
form.submitting .submit-field {
  align-items: flex-end;
  justify-content: center;
}

.wpcf7-spinner {
  width: 45px;
  height: 45px;
  border: 5px solid rgb(214.9583333333, 209.7916666667, 202.0416666667);
  border-bottom-color: rgb(171.0416666667, 160.2083333333, 143.9583333333);
  background-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1.25s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/** Ultimate member styles */
.um-form .um-row {
  margin: 0 !important;
  display: flex;
  flex-wrap: wrap;
}
.um-form .um-row [class^=um-col-] {
  flex: 1;
  float: none;
  width: auto;
}
.um-form .um-field-area label {
  width: auto;
  float: none;
  display: inline-block;
  min-width: auto;
}
.um-form .um-field-area label .um-field-radio-option {
  margin-left: 18px;
  color: #a7866e !important;
}
.um-form .um-field-radio .um-clear {
  display: none;
}
.um-form .um-field-radio .um-field-area {
  display: flex;
  align-items: center;
}
.um-form .um-field-checkbox .um-field-label {
  order: 1;
}
.um-form .um-field-checkbox .um-field-label label {
  width: auto;
}
.um-form .um-field-checkbox .um-field-area {
  order: 0;
  font-weight: 500;
  padding: 0 9px;
  min-width: auto;
  margin: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
}
.um-form .um-field-checkbox .um-field-area label {
  padding: 0;
}
.um-form .um-field-checkbox .um-field-area label .um-field-checkbox-option {
  display: none;
}
.um-form .um-field-checkbox .um-field-area label .um-field-checkbox-state {
  position: relative;
  margin-left: 9px;
}
.um-form .um-field-type_terms_conditions {
  margin: 0 9px !important;
  padding: 9px 18px !important;
}
.um-form .um-field-type_terms_conditions .um-field-checkbox-option {
  color: #a7866e !important;
}
.um-form i,
.um-form .um-field-checkbox-option {
  color: #a7866e !important;
}
.um-form .um-field-error .um-field-arrow {
  display: none;
}
.um-form .um-alt {
  background-color: transparent !important;
  border: 1px solid #c1b9ad !important;
  color: #a7866e !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.um-form .um-alt:hover {
  background-color: rgb(236.9166666667, 234.5833333333, 231.0833333333) !important;
}
.um-form .um-field .select2.select2-container .select2-selection {
  width: 100% !important;
  padding: 9px !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  color: rgb(108.9055793991, 84.1201716738, 66.0944206009) !important;
  font-size: clamp(14px, 0.9473684211vw, 18px) !important;
  min-height: auto !important;
}
.um-form .um-field .select2.select2-container .select2-selection:hover, .um-form .um-field .select2.select2-container .select2-selection.select2-focused {
  background-color: rgba(193, 185, 173, 0.2) !important;
  border-color: transparent !important;
}
.um-form .um-field .select2.select2-container .select2-selection .select2-selection__rendered {
  padding: 0 !important;
  color: rgb(108.9055793991, 84.1201716738, 66.0944206009) !important;
  font-size: clamp(14px, 0.9473684211vw, 18px) !important;
}
.um-form .um-field .select2.select2-container .select2-selection .select2-selection__placeholder {
  color: rgb(108.9055793991, 84.1201716738, 66.0944206009) !important;
}
.um-form .um-field .select2.select2-container .select2-selection .select2-selection__arrow {
  height: auto !important;
}
.um-form .um-field .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal !important;
}
.um-form select.um-field-select {
  display: none !important;
}
.um-form .um-field .select2.select2-container .select2-selection .select2-selection__arrow:before, .um-form .um-search-filter .select2.select2-container .select2-selection .select2-selection__arrow:before {
  font-family: "Font Awesome 7 Free", sans-serif !important;
  content: "\f078" !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  color: rgb(108.9055793991, 84.1201716738, 66.0944206009) !important;
}
.um-form .select2-selection__clear {
  display: none;
}
.um-form .um-field-c {
  padding: 0 18px;
}
.um-form .um-field-c .um-field-checkbox {
  margin: 0;
}
.um-form .um-col-alt-b {
  margin-top: 18px;
}
.um-form .um-link-alt {
  color: #a7866e !important;
}

.um a.um-button, .um a.um-button.um-disabled:active, .um a.um-button.um-disabled:focus, .um a.um-button.um-disabled:hover, .um input[type=submit].um-button, .um input[type=submit].um-button:focus {
  background: #c1b9ad;
}

.um a.um-button:hover, .um input[type=submit].um-button:hover {
  background-color: rgb(171.0416666667, 160.2083333333, 143.9583333333);
}

.um-row {
  display: flex;
}/*# sourceMappingURL=main.css.map */