*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


#page-root {
  opacity: 0;
  transition: opacity 0.12s ease;
}

html.dx-booted #page-root {
  opacity: 1;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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



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

.shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header,
#site-footer {
  position: relative;
  z-index: 4;
}

.site-header {
  width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 1rem 0 0.75rem;
}

.site-header-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

#brand-header,
#top {
  display: flex;
  align-items: center;
}

#brand-header {
  justify-content: flex-start;
}

#top {
  justify-content: flex-end;
  flex: 1;
}

#brand-header {
  justify-content: flex-start;
}

#top {
  justify-content: flex-end;
  flex: 1;
}

#site-footer {
  width: min(1240px, calc(100% - 1rem));
  margin: 0.5rem auto 0.15rem;
  padding: 0.3rem 0 0;
  color: rgba(22, 37, 42, 0.82);
  border-top: 1px solid rgba(22, 37, 42, 0.18);
}

.brand {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
}

.nav-links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 0.15rem;
  font-weight: 600;
}


.nav-links-list a {
  position: relative;
}

.nav-links-list a.is-active::after,
.nav-links-list a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.22rem;
  height: 2px;
  border-radius: 999px;
  background: #d98b5f;
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
}

.dx-reveal-ready {
  opacity: 1;
  transform: none;
}

.dx-premium-image {
  filter: saturate(1.02) contrast(1.02);
}

@media (max-width: 800px) {
  .site-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  #top {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-links-list {
    justify-content: flex-start;
  }
}