/* ========== CSS COLOR VARIABLES ========== */
:root {
  /* Primary Colors - Spring Greens */
  --color-primary: #3fa66f;
  --color-primary-dark: #2d8659;
  --color-primary-light: #5bc98f;
  
  /* Secondary Colors - Fresh Mint & Lime */
  --color-secondary: #4dd0e1;
  --color-secondary-dark: #26bbd9;
  --color-secondary-light: #80deea;
  
  /* Tertiary Colors - Soft Green */
  --color-tertiary: #7ec850;
  --color-tertiary-dark: #6ab43f;
  --color-tertiary-light: #a6da69;
  
  /* Accent Colors - Warm Spring Peach */
  --color-accent: #ffb347;
  --color-warning: #ff9f43;
  --color-info: #3fa66f;
  --color-success: #4dd0e1;
  
  /* Neutral Colors - Light Pastels */
  --color-white: #ffffff;
  --color-off-white: #f8fdf6;
  --color-light-gray: #e8f5e9;
  --color-lighter-gray: #f1f8f5;
  
  /* Neutral Colors - Dark */
  --color-dark-gray: #7a9b8e;
  --color-darker-gray: #5a7d6f;
  --color-darkest-gray: #3a5f4f;
  --color-text-gray: #8a9f94;
  --color-muted-gray: #b5cfc6;
  
  /* Text Colors */
  --color-text-dark: #1f4d3a;
  --color-text-medium: #2d6a52;
  --color-text-light: #5a8f75;
  --color-text-lighter: #7fa892;
  
  /* Background Colors - Fresh & Light */
  --color-bg-dark: #1f4d3a;
  --color-bg-darker: #2d6a52;
  --color-bg-darkest: #3a8c6a;
  --color-bg-light: #f8fdf6;
  
  /* Spring Brand Colors - Fresh & Vibrant */
  --color-brand-dark-3: #2d8659;
  --color-brand-dark-3-hover: #247348;
  --color-brand-dark-2: #3fa66f;
  --color-brand-dark-2-hover: #369360;
  --color-brand-dark-1: #5bc98f;
  --color-brand-dark-1-hover: #4fbb82;
  --color-brand-main: #7ec850;
  --color-brand-main-hover: #6fb843;
  --color-brand-light-1: #a6da69;
  --color-brand-light-1-hover: #97d255;
  --color-brand-light-2: #d4f1a3;
  --color-brand-light-2-hover: #c5eb8f;
  --color-brand-light-3: #f1f8f5;
  
  /* Shadow Colors */
  --color-shadow-light: rgba(31, 77, 58, 0.05);
  --color-shadow-medium: rgba(31, 77, 58, 0.08);
  --color-shadow-dark: rgba(31, 77, 58, 0.12);
  --color-shadow-primary: rgba(77, 208, 225, 0.1);
  --color-shadow-dark-overlay: rgba(20, 40, 35, 0.35);
  
  /* Global Settings */
  --font-family-body: 'Open Sans', sans-serif;
  --font-family-heading: Montserrat, sans-serif;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --transition-speed: 0.3s;
  --transition-easing: ease;
}

/* ========== HERO SECTION ========== */
.hero {
  background: 
              url('../img/hero-lidar.jpg'),linear-gradient(135deg, var(--color-bg-darker) 0%, var(--color-bg-darkest) 100%);
  background-size: cover, contain;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, fixed;
  color: var(--color-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(154, 181, 150, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(72, 90, 70, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  color: var(--color-primary);
  margin-bottom: 10px;
  animation: slideInLeft 0.8s ease-out;
}
  font-weight: 600;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-headline span {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-brand-light-1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subhead {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-trust-badges {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ========== FEATURE CARDS SECTION ========== */
.hero-features {
  background: var(--color-bg-light);
  padding: 60px 0;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 12px var(--color-shadow-light);
  transition: all var(--transition-speed) var(--transition-easing);
}

.feature-card:hover {
  box-shadow: 0 8px 24px var(--color-shadow-dark);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ========== SPLIT SECTION ========== */
.split-section {
  padding: 80px 0;
  background: white;
}

.split-section img {
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px var(--color-shadow-medium);
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content .section-title {
  margin-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stat {
  background: var(--color-bg-light);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
}

.stat h3 {
  font-size: 2rem;
  color: var(--color-primary);
  margin: 0;
}

.stat p {
  color: var(--color-text-light);
  margin: 5px 0 0 0;
  font-size: 0.9rem;
}

/* ========== BENEFITS CARDS ========== */
.benefits-section {
  background: white;
  padding: 80px 0;
}

.benefit-card {
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  transition: all var(--transition-speed) var(--transition-easing);
}

.benefit-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px var(--color-shadow-primary);
}

.benefit-header {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-light-gray);
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  padding: 8px 0;
  color: var(--color-darkest-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.benefit-list li:before {
  content: "✓ ";
  color: var(--color-secondary);
  font-weight: bold;
  margin-right: 8px;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  background: var(--color-bg-light);
  padding: 80px 0;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: 0 2px 12px var(--color-shadow-light);
  transition: all var(--transition-speed) var(--transition-easing);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px var(--color-shadow-dark);
}

.testimonial-rating {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--color-accent);
}

.testimonial-text {
  flex-grow: 1;
  color: var(--color-text-medium);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid var(--color-light-gray);
  padding-top: 15px;
}

.testimonial-author h5 {
  margin: 0 0 5px 0;
  color: var(--color-text-dark);
  font-size: 1rem;
}

.testimonial-author p {
  margin: 0;
  color: var(--color-text-lighter);
  font-size: 0.85rem;
}

/* ========== SECTION HEADERS ========== */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 40px;
}

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

/* ========== PROCESS SECTION ========== */
.process-preview {
  background: white;
  padding: 80px 0;
}

.process-step {
  background: var(--color-bg-light);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  text-align: center;
  transition: all var(--transition-speed) var(--transition-easing);
}

.process-step:hover {
  background: var(--color-light-gray);
  transform: translateY(-2px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 15px;
}

.process-step h4 {
  color: var(--color-text-dark);
  margin-bottom: 15px;
}

.process-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.process-step li {
  padding: 5px 0;
}

/* ========== TEAM SECTION ========== */
.team-preview {
  background: white;
  padding: 80px 0;
}

.team-credentials {
  background: #f0f7ff;
  border-left: 4px solid var(--color-primary);
  margin-bottom: 30px;
}

.team-credentials h4 {
  color: var(--color-text-dark);
  margin-top: 0;
}

.founder-quote {
  background: var(--color-bg-light);
  border-left: 4px solid var(--color-primary);
  padding: 30px;
  margin: 30px 0;
  font-style: italic;
  color: var(--color-text-medium);
}

.founder-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: var(--color-text-lighter);
  font-size: 0.9rem;
}

/* ========== SEGMENTS SECTION ========== */
.segments {
  background: var(--color-bg-light);
  padding: 80px 0;
}

.segment-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 12px var(--color-shadow-light);
  transition: all var(--transition-speed) var(--transition-easing);
  cursor: pointer;
}

.segment-card:hover {
  box-shadow: 0 8px 24px var(--color-shadow-dark);
  transform: translateY(-4px);
  background: #f0f7ff;
}

.segment-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.segment-card h5 {
  color: var(--color-text-dark);
  margin: 0;
  font-size: 1rem;
}

/* ========== FINAL CTA SECTION ========== */
.final-cta {
  background: linear-gradient(135deg, var(--color-bg-darker) 0%, var(--color-bg-darkest) 100%);
  color: var(--color-white);
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-muted-gray);
  padding: 60px 0 20px;
}

.footer-logo {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-logo span {
  color: var(--color-primary);
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  margin-bottom: 20px;
}

.site-footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 15px;
}

.site-footer .menu li {
  border-bottom: none;
}

.site-footer .menu a {
  color: var(--color-muted-gray);
  padding: 5px 0;
  transition: color 0.2s;
}

.site-footer .menu a:hover {
  color: var(--color-primary);
}

.trust-signals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.trust-signals span {
  font-size: 0.9rem;
  color: var(--color-muted-gray);
}

.team-stats {
  font-size: 0.85rem;
  color: var(--color-text-lighter);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid var(--color-text-medium);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
  
  .footer-bottom .cell:last-child {
    text-align: right;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .hero-ctas .button {
    width: 100%;
  }
  
  .split-section img {
    margin-bottom: 30px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== BUTTON ENHANCEMENTS ========== */
.button {
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-shadow-medium);
}

.button.primary {
  background: var(--color-brand-dark-3);
  color: var(--color-white);
}

.button.primary:hover {
  background: var(--color-brand-dark-2);
  box-shadow: 0 8px 24px rgba(42, 51, 41, 0.3);
}

.button.secondary {
  background: transparent;
  color: var(--color-brand-dark-3);
  border: 2px solid var(--color-brand-dark-3);
}

.button.secondary:hover {
  background: var(--color-brand-dark-3);
  color: var(--color-white);
}

.button.success {
  background: var(--color-tertiary);
  color: var(--color-white);
}

.button.success:hover {
  background: var(--color-tertiary-dark);
}

/* ========== UTILITY CLASSES ========== */
.img-responsive {
  width: 100%;
  height: auto;
  display: block;
}

.callout {
  background: #f0f7ff;
  border-left: 4px solid var(--color-primary);
  padding: 30px;
  border-radius: var(--border-radius);
}

/* ========== SMOOTH SCROLL ========== */
html {
  scroll-behavior: smooth;
}
 .u-section-1 {
  background-image: none;
  min-height: 1077px;
}

.u-section-1 .u-image-1 {
  min-height: 862px;
  margin-top: 0;
  margin-bottom: 0;
  height: auto;
  background-image: linear-gradient(0deg, rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url("https://assets.nicepagecdn.com/d2cc3eaa/6322200/images/person-cooking-cool-kitchen6.jpg");
}

.u-section-1 .u-container-layout-1 {
  padding: 0 100px 230px;
}

.u-section-1 .u-text-1 {
  text-shadow: 0px 0px 8px rgba(0,0,0,1);
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  width: 897px;
  margin: 0 auto;
}

.u-section-1 .u-list-1 {
  width: 1141px;
  margin: -89px auto 60px;
}

.u-section-1 .u-repeater-1 {
  grid-auto-columns: calc(33% - 14.25px);
  grid-template-columns: repeat(3, calc(33% - 14.25px));
  min-height: 308px;
  --gap: 19px;
}

.u-section-1 .u-list-item-1 {
  background-image: none;
  --radius: 30px;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-1 .u-container-layout-2 {
  padding: 30px;
}

.u-section-1 .u-icon-1 {
  height: 63px;
  width: 63px;
  margin: 0 auto 0 0;
}

.u-section-1 .u-text-2 {
  margin: 17px 0 0;
}

.u-section-1 .u-text-3 {
  font-size: 0.9375rem;
  font-style: normal;
  margin: 10px 0 0;
}

.u-section-1 .u-list-item-2 {
  background-size: auto;
  --radius: 30px;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-1 .u-container-layout-3 {
  padding: 30px;
}

.u-section-1 .u-icon-2 {
  height: 63px;
  width: 63px;
  margin: 0 auto 0 0;
}

.u-section-1 .u-text-4 {
  font-weight: 400;
  font-size: 1.5rem;
  margin: 17px 0 0;
}

.u-section-1 .u-text-5 {
  font-size: 0.9375rem;
  font-style: normal;
  margin: 10px 0 0;
}

.u-section-1 .u-list-item-3 {
  background-size: auto;
  --radius: 30px;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-1 .u-container-layout-4 {
  padding: 30px;
}

.u-section-1 .u-icon-3 {
  height: 63px;
  width: 63px;
  margin: 0 auto 0 0;
}

.u-section-1 .u-text-6 {
  font-weight: 400;
  font-size: 1.5rem;
  margin: 17px 0 0;
}

.u-section-1 .u-text-7 {
  font-size: 0.9375rem;
  font-style: normal;
  margin: 10px 0 0;
}

.u-section-1 .u-list-item-4 {
  background-size: auto;
  --radius: 30px;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-1 .u-container-layout-5 {
  padding: 30px;
}

.u-section-1 .u-icon-4 {
  height: 63px;
  width: 63px;
  margin: 0 auto 0 0;
}

.u-section-1 .u-text-8 {
  font-weight: 400;
  font-size: 1.5rem;
  margin: 17px 0 0;
}

.u-section-1 .u-text-9 {
  margin: 10px 0 0;
}

@media (max-width: 1199px) {
   .u-section-1 {
    min-height: 986px;
  }

  .u-section-1 .u-image-1 {
    min-height: 669px;
    height: auto;
  }

  .u-section-1 .u-container-layout-1 {
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 200px;
  }

  .u-section-1 .u-text-1 {
    width: 740px;
  }

  .u-section-1 .u-list-1 {
    width: 940px;
    margin-top: -83px;
    margin-bottom: 59px;
  }

  .u-section-1 .u-repeater-1 {
    min-height: 341px;
    grid-gap: 19px;
  }
}

@media (max-width: 991px) {
   .u-section-1 {
    min-height: 1215px;
  }

  .u-section-1 .u-container-layout-1 {
    padding-left: 55px;
    padding-right: 55px;
  }

  .u-section-1 .u-text-1 {
    width: 660px;
  }

  .u-section-1 .u-list-1 {
    width: 720px;
    margin-top: -133px;
    margin-bottom: 60px;
  }

  .u-section-1 .u-repeater-1 {
    grid-auto-columns: calc(50% - 9.5px);
    grid-template-columns: repeat(2, calc(50% - 9.5px));
    min-height: 619px;
  }
}

@media (max-width: 767px) {
  .u-section-1 .u-image-1 {
    background-position: 38.86% 50%;
  }

  .u-section-1 .u-container-layout-1 {
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 230px;
  }

  .u-section-1 .u-text-1 {
    width: 520px;
  }

  .u-section-1 .u-list-1 {
    width: 540px;
  }

  .u-section-1 .u-repeater-1 {
    grid-auto-columns: calc(100% - 0px);
    grid-template-columns: 100%;
  }

  .u-section-1 .u-container-layout-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-1 .u-container-layout-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-1 .u-container-layout-4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-1 .u-container-layout-5 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
   .u-section-1 {
    min-height: 1534px;
  }

  .u-section-1 .u-image-1 {
    min-height: 614px;
  }

  .u-section-1 .u-container-layout-1 {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 200px;
  }

  .u-section-1 .u-text-1 {
    width: auto;
    margin-top: 295px;
    margin-left: 17px;
    margin-right: 17px;
  }

  .u-section-1 .u-list-1 {
    width: 340px;
    margin-top: -131px;
    margin-bottom: 59px;
  }

  .u-section-1 .u-repeater-1 {
    grid-auto-columns: 100%;
    min-height: 992px;
  }
} .u-section-2 {
  min-height: 189px;
}

.u-section-2 .u-sheet-1 {
  
}

.u-section-2 .u-layout-wrap-1 {
  margin-top: 60px;
  margin-bottom: 60px;
  margin-left: auto;
  --radius: 10px;
}

.u-section-2 .u-image-1 {
  min-height: 564px;
  background-image: url("https://assets.nicepagecdn.com/d2cc3eaa/6322200/images/brunette-woman-eating-salad_23-21.jpg");
  --radius: 10px;
  background-position: 50% 50%;
  --animation-custom_in-translate_x: -300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-2 .u-container-layout-1 {
  padding: 0 23px;
}

.u-section-2 .u-layout-cell-2 {
  min-height: 564px;
}

.u-section-2 .u-container-layout-2 {
  padding: 30px 40px;
}

.u-section-2 .u-text-1 {
  margin: 0;
}

.u-section-2 .u-text-2 {
  margin: 30px 0 0;
}

.u-section-2 .u-list-1 {
  margin-top: 63px;
  margin-bottom: 0;
}

.u-section-2 .u-repeater-1 {
  grid-auto-columns: calc(33% - 14.25px);
  grid-template-columns: repeat(3, calc(33% - 14.25px));
  min-height: 144px;
  --gap: 0px;
}

.u-section-2 .u-list-item-1 {
  --radius: 10px;
}

.u-section-2 .u-container-layout-3 {
  padding: 10px 20px;
}

.u-section-2 .u-text-3 {
  font-weight: 700;
  font-size: 2.25rem;
  margin: 0;
}

.u-section-2 .u-text-4 {
  font-weight: 400;
  font-size: 1rem;
  text-transform: none;
  margin: 19px 0 0;
}

.u-section-2 .u-list-item-2 {
  --radius: 10px;
}

.u-section-2 .u-container-layout-4 {
  padding: 10px 20px;
}

.u-section-2 .u-text-5 {
  font-weight: 700;
  font-size: 2.25rem;
  margin: 0;
}

.u-section-2 .u-text-6 {
  font-weight: 400;
  font-size: 1rem;
  text-transform: none;
  margin: 19px 0 0;
}

.u-section-2 .u-list-item-3 {
  --radius: 10px;
}

.u-section-2 .u-container-layout-5 {
  padding: 10px 20px;
}

.u-section-2 .u-text-7 {
  font-weight: 700;
  font-size: 2.25rem;
  margin: 0;
}

.u-section-2 .u-text-8 {
  font-weight: 400;
  font-size: 1rem;
  text-transform: none;
  margin: 19px 0 0;
}

@media (max-width: 1199px) {
  .u-section-2 .u-sheet-1 {
   
  }

  .u-section-2 .u-layout-wrap-1 {
    position: relative;
    margin-left: initial;
  }

  .u-section-2 .u-image-1 {
    min-height: 465px;
  }

  .u-section-2 .u-layout-cell-2 {
    --radius: 50px;
    min-height: 465px;
  }

  .u-section-2 .u-container-layout-2 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .u-section-2 .u-repeater-1 {
    grid-auto-columns: calc(33% - 14.25px);
    grid-template-columns: repeat(3, calc(33% - 14.25px));
    min-height: 112px;
    grid-gap: 0px;
  }
}

@media (max-width: 991px) {
   .u-section-2 {
    min-height: 100px;
  }

  .u-section-2 .u-sheet-1 {
   
  }

  .u-section-2 .u-image-1 {
    min-height: 712px;
  }

  .u-section-2 .u-layout-cell-2 {
    min-height: 449px;
  }

  .u-section-2 .u-text-1 {
    margin-top: 20px;
  }

  .u-section-2 .u-repeater-1 {
    grid-auto-columns: calc(33% - 14.25px);
    grid-template-columns: repeat(3, calc(33% - 14.25px));
    min-height: 136px;
  }
}

@media (max-width: 767px) {
  .u-section-2 .u-sheet-1 {
    
  }

  .u-section-2 .u-image-1 {
    min-height: 527px;
  }

  .u-section-2 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-2 .u-layout-cell-2 {
    min-height: 100px;
  }

  .u-section-2 .u-container-layout-2 {
    padding-top: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-2 .u-repeater-1 {
    grid-auto-columns: 33%;
    grid-template-columns: repeat(3, 33%);
    min-height: 247px;
  }

  .u-section-2 .u-container-layout-3 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-2 .u-container-layout-4 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-2 .u-container-layout-5 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575px) {
  .u-section-2 .u-image-1 {
    min-height: 332px;
  }

  .u-section-2 .u-container-layout-2 {
    padding-top: 30px;
  }

  .u-section-2 .u-repeater-1 {
    grid-auto-columns: 100%;
    grid-template-columns: 100%;
  }

  .u-section-2 .u-text-3 {
    font-size: 1.8rem;
  }

  .u-section-2 .u-text-5 {
    font-size: 1.8rem;
  }

  .u-section-2 .u-text-7 {
    font-size: 1.8rem;
  }
} .u-section-3 {
  min-height: 520px;
}

.u-section-3 .u-layout-wrap-1 {
  margin-bottom: 0;
  margin-top: 0;
}

.u-section-3 .u-layout-cell-1 {
  min-height: 520px;
  --animation-custom_in-translate_x: -300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
  background-image: none;
}

.u-section-3 .u-container-layout-1 {
  padding: 90px 60px 60px;
}

.u-section-3 .u-text-1 {
  font-size: 3rem;
  margin: 0 auto;
}

.u-section-3 .u-text-2 {
  font-size: 1.125rem;
  margin: 30px 0 0;
}

.u-section-3 .u-btn-1 {
  font-weight: 700;
  text-transform: uppercase;
  background-image: none;
  border-style: solid;
  --radius: 10px;
  margin: 40px auto 0;
  padding: 18px 49px;
}

.u-section-3 .u-image-1 {
  min-height: 520px;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://assets.nicepagecdn.com/d2cc3eaa/6322200/images/young-woman-making-salad-kitchen7.jpg');
  --animation-custom_in-translate_x: 300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
  background-position: 50% 50%;
}

.u-section-3 .u-container-layout-2 {
  padding: 90px 60px 60px;
}

.u-section-3 .u-text-3 {
  font-size: 3rem;
  margin: 0 auto;
}

.u-section-3 .u-text-4 {
  font-size: 1.125rem;
  margin: 30px 0 0;
}

.u-section-3 .u-btn-2 {
  font-weight: 700;
  text-transform: uppercase;
  border-style: solid;
  --radius: 10px;
  margin: 40px auto 0;
  padding: 18px 49px;
}

@media (max-width: 1199px) {
   .u-section-3 {
    min-height: 429px;
  }

  .u-section-3 .u-layout-cell-1 {
    min-height: 429px;
    background-position: 50% 50%;
  }

  .u-section-3 .u-image-1 {
    min-height: 429px;
  }
}

@media (max-width: 991px) {
   .u-section-3 {
    min-height: 657px;
  }

  .u-section-3 .u-layout-cell-1 {
    min-height: 657px;
  }

  .u-section-3 .u-container-layout-1 {
    padding: 30px;
  }

  .u-section-3 .u-image-1 {
    min-height: 657px;
  }

  .u-section-3 .u-container-layout-2 {
    padding: 0px;
  }
}

@media (max-width: 767px) {
   .u-section-3 {
    min-height: 986px;
  }

  .u-section-3 .u-layout-cell-1 {
    min-height: 493px;
  }

  .u-section-3 .u-container-layout-1 {
    padding-left: 50px;
    padding-right: 50px;
  }

  .u-section-3 .u-text-1 {
    font-size: 1.875rem;
  }

  .u-section-3 .u-text-2 {
    font-size: 1rem;
  }

  .u-section-3 .u-image-1 {
    min-height: 493px;
  }

  .u-section-3 .u-container-layout-2 {
    padding-left: 50px;
    padding-right: 50px;
  }

  .u-section-3 .u-text-3 {
    font-size: 1.875rem;
  }

  .u-section-3 .u-text-4 {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
   .u-section-3 {
    min-height: 620px;
  }

  .u-section-3 .u-layout-cell-1 {
    min-height: 310px;
  }

  .u-section-3 .u-container-layout-1 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .u-section-3 .u-text-1 {
    font-size: 1.5rem;
  }

  .u-section-3 .u-image-1 {
    min-height: 310px;
  }

  .u-section-3 .u-container-layout-2 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .u-section-3 .u-text-3 {
    font-size: 1.5rem;
  }
} .u-section-4 {
  background-image: none;
}

.u-section-4 .u-sheet-1 {
  min-height: 617px;
}

.u-section-4 .u-layout-wrap-1 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.u-section-4 .u-layout-cell-1 {
  min-height: 497px;
}

.u-section-4 .u-container-layout-1 {
  padding: 30px;
}

.u-section-4 .u-image-1 {
  width: 353px;
  height: 353px;
  background-image: url("https://assets.nicepagecdn.com/d2cc3eaa/6322200/images/brunette-woman-eating-salad_23-21.jpg");
  background-position: 50% 50%;
  --animation-custom_in-translate_x: -300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 180deg;
  --animation-custom_in-scale: 0.3;
  margin: 0 auto;
}

.u-section-4 .u-layout-cell-2 {
  min-height: 497px;
  --animation-custom_in-translate_x: 300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-4 .u-container-layout-2 {
  padding: 30px 60px;
}

.u-section-4 .u-icon-1 {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}

.u-section-4 .u-text-1 {
  margin: 49px 0 0;
}

.u-section-4 .u-text-2 {
  font-weight: 700;
  margin: 30px 0 0;
}

@media (max-width: 1199px) {
  .u-section-4 .u-sheet-1 {
    min-height: 530px;
  }

  .u-section-4 .u-layout-cell-1 {
    min-height: 410px;
  }

  .u-section-4 .u-image-1 {
    width: 300px;
    height: 300px;
  }

  .u-section-4 .u-layout-cell-2 {
    min-height: 410px;
  }
}

@media (max-width: 991px) {
  .u-section-4 .u-sheet-1 {
    min-height: 857px;
  }

  .u-section-4 .u-layout-wrap-1 {
    margin-top: 19px;
    margin-bottom: 19px;
  }

  .u-section-4 .u-layout-cell-1 {
    min-height: 376px;
  }

  .u-section-4 .u-layout-cell-2 {
    min-height: 100px;
  }

  .u-section-4 .u-container-layout-2 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .u-section-4 .u-sheet-1 {
    min-height: 834px;
  }

  .u-section-4 .u-layout-cell-1 {
    min-height: 282px;
  }

  .u-section-4 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-4 .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575px) {
  .u-section-4 .u-sheet-1 {
    min-height: 894px;
  }

  .u-section-4 .u-layout-wrap-1 {
    margin-top: 55px;
    margin-bottom: 55px;
  }

  .u-section-4 .u-layout-cell-1 {
    min-height: 178px;
  }
} .u-section-5 {
  background-image: none;
}

.u-section-5 .u-sheet-1 {
  min-height: 1173px;
}

.u-section-5 .u-text-1 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  width: 760px;
  margin: 60px auto 0;
}

.u-section-5 .u-list-1 {
  margin-top: 40px;
  margin-bottom: 60px;
}

.u-section-5 .u-repeater-1 {
  grid-template-columns: repeat(3, 33.3333%);
  min-height: 897px;
  --gap: 0px;
  grid-auto-columns: 33.3333%;
}

.u-section-5 .u-list-item-1 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
}

.u-section-5 .u-container-layout-1 {
  padding: 30px;
}

.u-section-5 .u-image-1 {
  height: 245px;
  --radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

.u-section-5 .u-text-2 {
  margin: 30px auto 0;
}

.u-section-5 .u-text-3 {
  font-style: italic;
  margin: 20px 0 0;
}

.u-section-5 .u-list-item-2 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
}

.u-section-5 .u-container-layout-2 {
  padding: 30px;
}

.u-section-5 .u-image-2 {
  height: 245px;
  --radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

.u-section-5 .u-text-4 {
  margin: 30px auto 0;
}

.u-section-5 .u-text-5 {
  font-style: italic;
  margin: 20px 0 0;
}

.u-section-5 .u-list-item-3 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
}

.u-section-5 .u-container-layout-3 {
  padding: 30px;
}

.u-section-5 .u-image-3 {
  height: 245px;
  --radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

.u-section-5 .u-text-6 {
  margin: 30px auto 0;
}

.u-section-5 .u-text-7 {
  font-style: italic;
  margin: 20px 0 0;
}

.u-section-5 .u-list-item-4 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
}

.u-section-5 .u-container-layout-4 {
  padding: 30px;
}

.u-section-5 .u-image-4 {
  height: 245px;
  --radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

.u-section-5 .u-text-8 {
  margin: 30px auto 0;
}

.u-section-5 .u-text-9 {
  font-style: italic;
  margin: 20px 0 0;
}

.u-section-5 .u-list-item-5 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
}

.u-section-5 .u-container-layout-5 {
  padding: 30px;
}

.u-section-5 .u-image-5 {
  height: 245px;
  --radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

.u-section-5 .u-text-10 {
  margin: 30px auto 0;
}

.u-section-5 .u-text-11 {
  font-style: italic;
  margin: 20px 0 0;
}

.u-section-5 .u-list-item-6 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
}

.u-section-5 .u-container-layout-6 {
  padding: 30px;
}

.u-section-5 .u-image-6 {
  height: 245px;
  --radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

.u-section-5 .u-text-12 {
  margin: 30px auto 0;
}

.u-section-5 .u-text-13 {
  font-style: italic;
  margin: 20px 0 0;
}

@media (max-width: 1199px) {
  .u-section-5 .u-repeater-1 {
    grid-template-columns: repeat(3, 33.333333333333336%);
    min-height: 740px;
    grid-gap: 0px;
    grid-auto-columns: 33.333333333333336%;
  }

  .u-section-5 .u-image-1 {
    height: 194px;
  }

  .u-section-5 .u-image-2 {
    height: 194px;
  }

  .u-section-5 .u-image-3 {
    height: 194px;
  }

  .u-section-5 .u-image-4 {
    height: 194px;
  }

  .u-section-5 .u-image-5 {
    height: 194px;
  }

  .u-section-5 .u-image-6 {
    height: 194px;
  }
}

@media (max-width: 991px) {
  .u-section-5 .u-text-1 {
    width: 720px;
  }

  .u-section-5 .u-repeater-1 {
    grid-template-columns: repeat(2, 50%);
    min-height: 1275px;
    grid-auto-columns: 50%;
  }

  .u-section-5 .u-image-1 {
    height: 230px;
  }

  .u-section-5 .u-image-2 {
    height: 230px;
  }

  .u-section-5 .u-image-3 {
    height: 230px;
  }

  .u-section-5 .u-image-4 {
    height: 230px;
  }

  .u-section-5 .u-image-5 {
    height: 230px;
  }

  .u-section-5 .u-image-6 {
    height: 230px;
  }
}

@media (max-width: 767px) {
  .u-section-5 .u-text-1 {
    width: 540px;
  }

  .u-section-5 .u-repeater-1 {
    grid-template-columns: 100%;
    grid-auto-columns: 100%;
  }

  .u-section-5 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-5 .u-image-1 {
    height: 399px;
  }

  .u-section-5 .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-5 .u-image-2 {
    height: 399px;
  }

  .u-section-5 .u-container-layout-3 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-5 .u-image-3 {
    height: 399px;
  }

  .u-section-5 .u-container-layout-4 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-5 .u-image-4 {
    height: 399px;
  }

  .u-section-5 .u-container-layout-5 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-5 .u-image-5 {
    height: 399px;
  }

  .u-section-5 .u-container-layout-6 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-5 .u-image-6 {
    height: 399px;
  }
}

@media (max-width: 575px) {
  .u-section-5 .u-text-1 {
    width: 340px;
  }

  .u-section-5 .u-image-1 {
    height: 246px;
  }

  .u-section-5 .u-image-2 {
    height: 246px;
  }

  .u-section-5 .u-image-3 {
    height: 246px;
  }

  .u-section-5 .u-image-4 {
    height: 246px;
  }

  .u-section-5 .u-image-5 {
    height: 246px;
  }

  .u-section-5 .u-image-6 {
    height: 246px;
  }
} .u-section-6 {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://assets.nicepagecdn.com/d2cc3eaa/6322200/images/top-view-dishes-with-waffles-salad44-min.jpg');
}

.u-section-6 .u-sheet-1 {
  min-height: 432px;
}

.u-section-6 .u-layout-wrap-1 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.u-section-6 .u-layout-cell-1 {
  min-height: 312px;
}

.u-section-6 .u-container-layout-1 {
  padding: 30px 30px 30px 0;
}

.u-section-6 .u-text-1 {
  margin-bottom: 0;
  margin-top: 0;
}

.u-section-6 .u-text-2 {
  margin: 20px 0 0;
}

.u-section-6 .u-layout-cell-2 {
  min-height: 312px;
  background-image: none;
  --animation-custom_in-translate_x: 300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 180deg;
  --animation-custom_in-scale: 1;
  --radius: 10px;
}

.u-section-6 .u-container-layout-2 {
  padding: 30px;
}

.u-section-6 .u-text-3 {
  margin: 0 23px;
}

.u-section-6 .u-btn-1 {
  font-weight: 700;
  text-transform: uppercase;
  background-image: none;
  border-style: solid;
  --radius: 10px;
  margin: 30px auto 0;
  padding: 18px 49px;
}

@media (max-width: 1199px) {
   .u-section-6 {
    background-position: 50% 50%;
  }

  .u-section-6 .u-sheet-1 {
    min-height: 377px;
  }

  .u-section-6 .u-layout-cell-1 {
    min-height: 257px;
  }

  .u-section-6 .u-layout-cell-2 {
    min-height: 257px;
  }
}

@media (max-width: 991px) {
  .u-section-6 .u-sheet-1 {
    min-height: 220px;
  }

  .u-section-6 .u-layout-cell-1 {
    min-height: 100px;
  }

  .u-section-6 .u-layout-cell-2 {
    min-height: 100px;
  }
}

@media (max-width: 767px) {
  .u-section-6 .u-sheet-1 {
    min-height: 320px;
  }

  .u-section-6 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-6 .u-text-1 {
    width: auto;
    margin-left: 41px;
    margin-right: 41px;
  }

  .u-section-6 .u-text-2 {
    width: auto;
  }

  .u-section-6 .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
}.u-section-7 .u-sheet-1 {
  min-height: 238px;
}

.u-section-7 .u-layout-wrap-1 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.u-section-7 .u-layout-cell-1 {
  min-height: 138px;
  --animation-custom_in-translate_x: -300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-7 .u-container-layout-1 {
  padding: 30px 30px 30px 0;
}

.u-section-7 .u-text-1 {
  font-size: 2.25rem;
  margin: 0;
}

.u-section-7 .u-layout-cell-2 {
  min-height: 138px;
}

.u-section-7 .u-container-layout-2 {
  padding: 30px;
}

.u-section-7 .u-btn-1 {
  border-style: solid;
  text-transform: uppercase;
  font-weight: 700;
  --radius: 10px;
  background-image: none;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  margin: 0 auto;
  padding: 17px 31px 18px 30px;
}

@media (max-width: 1199px) {
  .u-section-7 .u-sheet-1 {
    min-height: 214px;
  }

  .u-section-7 .u-layout-cell-1 {
    min-height: 114px;
  }

  .u-section-7 .u-text-1 {
    font-size: 1.875rem;
  }

  .u-section-7 .u-layout-cell-2 {
    min-height: 114px;
  }
}

@media (max-width: 991px) {
  .u-section-7 .u-sheet-1 {
    min-height: 200px;
  }

  .u-section-7 .u-layout-cell-1 {
    min-height: 100px;
  }

  .u-section-7 .u-text-1 {
    font-size: 2.25rem;
  }

  .u-section-7 .u-layout-cell-2 {
    min-height: 100px;
  }

  .u-section-7 .u-container-layout-2 {
    padding-left: 0;
  }

  .u-section-7 .u-btn-1 {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .u-section-7 .u-sheet-1 {
    min-height: 300px;
  }

  .u-section-7 .u-container-layout-1 {
    padding-right: 10px;
  }

  .u-section-7 .u-text-1 {
    font-size: 1.875rem;
  }

  .u-section-7 .u-container-layout-2 {
    padding-right: 10px;
  }
}

@media (max-width: 575px) {
  .u-section-7 .u-container-layout-1 {
    padding-right: 0;
  }

  .u-section-7 .u-text-1 {
    font-size: 1.5rem;
    width: auto;
  }

  .u-section-7 .u-container-layout-2 {
    padding-right: 0;
  }

  .u-section-7 .u-btn-1 {
    margin-left: auto;
  }
}.u-section-8 .u-sheet-1 {
  min-height: 1018px;
}

.u-section-8 .u-text-1 {
  width: 769px;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  margin: 60px auto 0;
}

.u-section-8 .u-layout-wrap-1 {
  margin: 50px 0 60px;
}

.u-section-8 .u-layout-cell-1 {
  min-height: 710px;
  --animation-custom_in-translate_x: -300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-8 .u-container-layout-1 {
  padding: 30px 30px 30px 0;
}

.u-section-8 .u-text-2 {
  font-weight: 700;
  margin: 0;
}

.u-section-8 .u-text-3 {
  margin: 41px auto 0 0;
}

.u-section-8 .u-image-1 {
  width: 300px;
  height: 300px;
  object-position: 50% 86.36%;
  background-image: url("https://assets.nicepagecdn.com/d2cc3eaa/6322200/images/high-angle-delicious-salmon-bowl.jpg");
  background-position: 50% 50%;
  margin: 49px auto 0 0;
}

.u-section-8 .u-layout-cell-2 {
  min-height: 628px;
  --animation-custom_in-translate_x: 300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 180deg;
  --animation-custom_in-scale: 1;
}

.u-section-8 .u-container-layout-2 {
  padding: 30px;
}

.u-section-8 .u-image-2 {
  height: 362px;
  --radius: 10px;
  margin: 0;
}

.u-section-8 .u-text-4 {
  margin: 30px 0 0;
}

.u-section-8 .u-btn-1 {
  font-weight: 700;
  text-transform: uppercase;
  border-style: solid;
  --radius: 10px;
  margin: 30px 0 0;
  padding: 18px 49px;
}

@media (max-width: 1199px) {
  .u-section-8 .u-sheet-1 {
    min-height: 893px;
  }

  .u-section-8 .u-layout-wrap-1 {
    margin-right: initial;
    margin-left: initial;
  }

  .u-section-8 .u-layout-cell-1 {
    min-height: 585px;
  }

  .u-section-8 .u-layout-cell-2 {
    min-height: 518px;
  }

  .u-section-8 .u-image-2 {
    height: 291px;
    margin-right: initial;
    margin-left: initial;
  }
}

@media (max-width: 991px) {
  .u-section-8 .u-sheet-1 {
    min-height: 408px;
  }

  .u-section-8 .u-text-1 {
    width: 720px;
  }

  .u-section-8 .u-layout-cell-1 {
    min-height: 100px;
  }

  .u-section-8 .u-layout-cell-2 {
    min-height: 100px;
  }

  .u-section-8 .u-image-2 {
    height: 213px;
    margin-right: initial;
    margin-left: initial;
  }
}

@media (max-width: 767px) {
  .u-section-8 .u-sheet-1 {
    min-height: 508px;
  }

  .u-section-8 .u-text-1 {
    width: 540px;
  }

  .u-section-8 .u-container-layout-1 {
    padding-right: 10px;
  }

  .u-section-8 .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-8 .u-image-2 {
    height: 369px;
    margin-right: initial;
    margin-left: initial;
  }
}

@media (max-width: 575px) {
  .u-section-8 .u-text-1 {
    width: 340px;
  }

  .u-section-8 .u-image-2 {
    height: 227px;
    margin-right: initial;
    margin-left: initial;
  }
} .u-section-9 {
  background-image: none;
}

.u-section-9 .u-sheet-1 {
  min-height: 661px;
}

.u-section-9 .u-text-1 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  margin: 60px auto 0;
}

.u-section-9 .u-text-2 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  margin: 11px auto 0;
}

.u-section-9 .u-list-1 {
  margin-top: 41px;
  margin-bottom: 60px;
}

.u-section-9 .u-repeater-1 {
   grid-template-columns: repeat(3, 33.333333333333336%);
  --gap: 22px;
}

.u-section-9 .u-list-item-1 {
  background-image: none;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-9 .u-container-layout-1 {
  padding: 30px;
}

.u-section-9 .u-group-1 {
  min-height: 50px;
  width: 50px;
  margin: 0 auto;
}

.u-section-9 .u-text-3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto;
}

.u-section-9 .u-text-4 {
  margin: 20px 0 0;
}

.u-section-9 .u-text-5 {
  font-style: italic;
  font-size: 1rem;
  margin: 20px 0 0;
}

.u-section-9 .u-btn-1 {
  border-style: solid;
  font-weight: 700;
  font-size: 0.9375rem;
  --radius: 10px;
  margin: 20px auto 0;
  padding: 6px 31px 6px 30px;
}

.u-section-9 .u-list-item-2 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-9 .u-container-layout-3 {
  padding: 30px;
}

.u-section-9 .u-group-2 {
  min-height: 50px;
  width: 50px;
  margin: 0 auto;
}

.u-section-9 .u-text-6 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto;
}

.u-section-9 .u-text-7 {
  font-weight: 400;
  margin: 20px 0 0;
}

.u-section-9 .u-text-8 {
  font-style: italic;
  font-size: 1rem;
  margin: 20px 0 0;
}

.u-section-9 .u-btn-2 {
  border-style: solid;
  font-weight: 700;
  font-size: 0.9375rem;
  --radius: 10px;
  margin: 20px auto 0;
  padding: 6px 31px 6px 30px;
}

.u-section-9 .u-list-item-3 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-9 .u-container-layout-5 {
  padding: 30px;
}

.u-section-9 .u-group-3 {
  min-height: 50px;
  width: 50px;
  margin: 0 auto;
}

.u-section-9 .u-text-9 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto;
}

.u-section-9 .u-text-10 {
  font-weight: 400;
  margin: 20px 0 0;
}

.u-section-9 .u-text-11 {
  font-style: italic;
  font-size: 1rem;
  margin: 20px 0 0;
}

.u-section-9 .u-btn-3 {
  border-style: solid;
  font-weight: 700;
  font-size: 0.9375rem;
  --radius: 10px;
  margin: 20px auto 0;
  padding: 6px 31px 6px 30px;
}

.u-section-9 .u-list-item-4 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-9 .u-container-layout-7 {
  padding: 30px;
}

.u-section-9 .u-group-4 {
  min-height: 50px;
  width: 50px;
  margin: 0 auto;
}

.u-section-9 .u-text-12 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto;
}

.u-section-9 .u-text-13 {
  font-weight: 400;
  margin: 20px 0 0;
}

.u-section-9 .u-text-14 {
  font-style: italic;
  font-size: 1rem;
  margin: 20px 0 0;
}

.u-section-9 .u-btn-4 {
  border-style: solid;
  font-weight: 700;
  font-size: 0.9375rem;
  --radius: 10px;
  margin: 20px auto 0;
  padding: 6px 31px 6px 30px;
}

@media (max-width: 1199px) {
  .u-section-9 .u-repeater-1 {
    min-height: 314px;
    grid-gap: 22px;
  }
}

@media (max-width: 991px) {
  .u-section-9 .u-sheet-1 {
    min-height: 938px;
  }

  .u-section-9 .u-repeater-1 {
    grid-template-columns: repeat(2, calc(50% - 11px));
    min-height: 697px;
    grid-auto-columns: calc(50% - 11px);
  }
}

@media (max-width: 767px) {
  .u-section-9 .u-repeater-1 {
    grid-template-columns: 100%;
    grid-auto-columns: calc(100% - 0px);
  }

  .u-section-9 .u-container-layout-1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-9 .u-text-3 {
    font-size: 1.5rem;
  }

  .u-section-9 .u-container-layout-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-9 .u-text-6 {
    font-size: 1.5rem;
  }

  .u-section-9 .u-container-layout-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-9 .u-text-9 {
    font-size: 1.5rem;
  }

  .u-section-9 .u-container-layout-7 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-9 .u-text-12 {
    font-size: 1.5rem;
  }
}

@media (max-width: 575px) {
  .u-section-9 .u-repeater-1 {
    grid-auto-columns: 100%;
  }
} .u-section-10 {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://assets.nicepagecdn.com/d2cc3eaa/6322200/images/flat-lay-tasty-fresh-salad-with-copy-space4-min.jpg');
}

.u-section-10 .u-sheet-1 {
  min-height: 349px;
}

.u-section-10 .u-layout-wrap-1 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.u-section-10 .u-layout-cell-1 {
  min-height: 220px;
  background-image: none;
  --animation-custom_in-translate_x: -300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-10 .u-container-layout-1 {
  padding: 30px;
}

.u-section-10 .u-text-1 {
  margin: 0 auto 0 0;
}

.u-section-10 .u-text-2 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  margin: 15px 0 0;
}

.u-section-10 .u-layout-cell-2 {
  min-height: 220px;
  background-image: none;
  --animation-custom_in-translate_x: 300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-10 .u-container-layout-2 {
  padding: 30px 19px;
}

.u-section-10 .u-form-1 {
  height: 68px;
  width: 570px;
  margin: 0 auto;
}

.u-section-10 .u-btn-1 {
  background-image: none;
  --radius: 10px;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
   .u-section-10 {
    background-position: 50% 50%;
  }

  .u-section-10 .u-sheet-1 {
    min-height: 249px;
  }

  .u-section-10 .u-layout-cell-1 {
    min-height: 181px;
  }

  .u-section-10 .u-layout-cell-2 {
    min-height: 190px;
  }

  .u-section-10 .u-form-1 {
    width: 510px;
  }
}

@media (max-width: 991px) {
  .u-section-10 .u-sheet-1 {
    min-height: 168px;
  }

  .u-section-10 .u-layout-cell-1 {
    min-height: 100px;
  }

  .u-section-10 .u-layout-cell-2 {
    min-height: 117px;
  }
}

@media (max-width: 767px) {
  .u-section-10 .u-sheet-1 {
    min-height: 268px;
  }

  .u-section-10 .u-container-layout-1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-10 .u-layout-cell-2 {
    min-height: 188px;
  }

  .u-section-10 .u-container-layout-2 {
    padding: 22px 20px;
  }
}

@media (max-width: 575px) {
  .u-section-10 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-10 .u-layout-cell-2 {
    min-height: 100px;
  }

  .u-section-10 .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-10 .u-form-1 {
    width: 320px;
  }
} .u-section-11 {
  background-image: none;
}

.u-section-11 .u-sheet-1 {
  min-height: 640px;
}

.u-section-11 .u-text-1 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  margin: 60px auto 0;
}

.u-section-11 .u-list-1 {
  margin-top: 50px;
  margin-bottom: 0;
}

.u-section-11 .u-repeater-1 {
  grid-template-columns: repeat(3, calc(33.3333% - 20px));
  min-height: 346px;
  --gap: 30px;
  grid-auto-columns: calc(33.3333% - 20px);
}

.u-section-11 .u-list-item-1 {
  --animation-custom_in-translate_x: -300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-11 .u-container-layout-1 {
  padding: 30px 20px;
}

.u-section-11 .u-group-1 {
  width: 231px;
  min-height: 69px;
  margin: 0 auto 0 0;
}

.u-section-11 .u-container-layout-2 {
  padding-left: 0;
  padding-right: 0;
}

.u-section-11 .u-icon-1 {
  width: 64px;
  height: 64px;
  margin: 0 auto 0 0;
}

.u-section-11 .u-text-2 {
  font-weight: 700;
  font-size: 1.25rem;
  margin: -41px 22px 0;
}

.u-section-11 .u-image-1 {
  width: 79px;
  height: 79px;
  background-image: url("//images01.nicepagecdn.com/c461c07a441a5d220e8feb1a/52d82c5900df5c6e8686dcd1/44d5d282-18f7-4295-9493-b2865af9bf3d.jpg");
  background-position: 50% 50%;
  margin: -69px 0 0 auto;
}

.u-section-11 .u-text-3 {
  line-height: 2.2;
  font-style: italic;
  margin: 39px 0 0;
}

.u-section-11 .u-list-item-2 {
  --animation-custom_in-translate_x: -300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-11 .u-container-layout-3 {
  padding: 30px 20px;
}

.u-section-11 .u-group-2 {
  width: 231px;
  min-height: 69px;
  margin: 0 auto 0 0;
}

.u-section-11 .u-container-layout-4 {
  padding-left: 0;
  padding-right: 0;
}

.u-section-11 .u-icon-2 {
  width: 64px;
  height: 64px;
  margin: 0 auto 0 0;
}

.u-section-11 .u-text-4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin: -41px 22px 0;
}

.u-section-11 .u-image-2 {
  width: 79px;
  height: 79px;
  background-image: url("//images01.nicepagecdn.com/thumbs/c461c07a441a5d220e8feb1a/d071f361765b573dbc08ac6c/1222_150.jpg");
  background-position: 50% 50%;
  margin: -69px 0 0 auto;
}

.u-section-11 .u-text-5 {
  line-height: 2.2;
  font-style: italic;
  margin: 39px 0 0;
}

.u-section-11 .u-list-item-3 {
  background-image: none;
  --animation-custom_in-translate_x: -300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-11 .u-container-layout-5 {
  padding: 30px 20px;
}

.u-section-11 .u-group-3 {
  width: 231px;
  min-height: 69px;
  margin: 0 auto 0 0;
}

.u-section-11 .u-container-layout-6 {
  padding-left: 0;
  padding-right: 0;
}

.u-section-11 .u-icon-3 {
  width: 64px;
  height: 64px;
  margin: 0 auto 0 0;
}

.u-section-11 .u-text-6 {
  font-weight: 700;
  font-size: 1.25rem;
  margin: -41px 22px 0;
}

.u-section-11 .u-image-3 {
  width: 79px;
  height: 79px;
  background-image: url("//images01.nicepagecdn.com/c461c07a441a5d220e8feb1a/39ff6155b3d25dadac0fea88/3e323ee9-9fff-450e-aabf-b9b006d5620c.jpg");
  background-position: 50% 50%;
  margin: -69px 0 0 auto;
}

.u-section-11 .u-text-7 {
  line-height: 2.2;
  font-style: italic;
  margin: 39px 0 0;
}

.u-section-11 .u-text-8 {
  font-size: 1rem;
  letter-spacing: 0px;
  font-style: italic;
  text-align: left;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  margin: 32px auto 60px;
}

.u-section-11 .u-btn-1 {
  border-style: solid;
  font-style: italic;
  padding: 0;
}

@media (max-width: 1199px) {
  .u-section-11 .u-repeater-1 {
    grid-template-columns: repeat(3, calc(33.333333333333336% - 20px));
    min-height: 285px;
    grid-gap: 30px;
    grid-auto-columns: calc(33.333333333333336% - 20px);
  }

  .u-section-11 .u-text-2 {
    font-size: 1.125rem;
    width: auto;
    margin-right: 50px;
  }

  .u-section-11 .u-text-3 {
    margin-top: 30px;
  }

  .u-section-11 .u-text-4 {
    font-size: 1.125rem;
    width: auto;
    margin-right: 50px;
  }

  .u-section-11 .u-text-5 {
    margin-top: 30px;
  }

  .u-section-11 .u-text-6 {
    font-size: 1.125rem;
    width: auto;
    margin-right: 50px;
  }

  .u-section-11 .u-text-7 {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .u-section-11 .u-repeater-1 {
    grid-template-columns: repeat(2, calc(50% - 15px));
    min-height: 655px;
    grid-auto-columns: calc(50% - 15px);
  }

  .u-section-11 .u-image-1 {
    margin-top: 20px;
  }

  .u-section-11 .u-image-2 {
    margin-top: 20px;
  }

  .u-section-11 .u-image-3 {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .u-section-11 .u-repeater-1 {
    grid-template-columns: 100%;
    grid-auto-columns: calc(100% - 0px);
  }

  .u-section-11 .u-container-layout-1 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .u-section-11 .u-container-layout-3 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .u-section-11 .u-container-layout-5 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .u-section-11 .u-repeater-1 {
    grid-auto-columns: 100%;
  }

  .u-section-11 .u-container-layout-1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-11 .u-group-1 {
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }

  .u-section-11 .u-image-1 {
    margin-top: -69px;
  }

  .u-section-11 .u-text-3 {
    width: auto;
    margin-top: 40px;
  }

  .u-section-11 .u-container-layout-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-11 .u-group-2 {
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }

  .u-section-11 .u-image-2 {
    margin-top: -69px;
  }

  .u-section-11 .u-text-5 {
    width: auto;
    margin-top: 40px;
  }

  .u-section-11 .u-container-layout-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-11 .u-group-3 {
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }

  .u-section-11 .u-image-3 {
    margin-top: -69px;
  }

  .u-section-11 .u-text-7 {
    width: auto;
    margin-top: 40px;
  }
}.u-section-12 .u-sheet-1 {
  min-height: 1557px;
}

.u-section-12 .u-text-1 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  margin: 60px auto 0;
}

.u-section-12 .u-blog-1 {
  margin-top: 75px;
  margin-bottom: 0;
}

.u-section-12 .u-repeater-1 {
  grid-auto-columns: calc(50% - 11px);
  grid-template-columns: repeat(2, calc(50% - 11px));
  min-height: 1054px;
  --gap: 22px;
}

.u-section-12 .u-container-layout-1 {
  padding: 0 30px 30px 0;
}

.u-section-12 .u-image-1 {
  height: 339px;
  margin-top: 0;
  margin-bottom: 0;
  --radius: 10px;
}

.u-section-12 .u-text-2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 20px auto 0 0;
}

.u-section-12 .u-text-3 {
  margin: 22px auto 0 0;
}

.u-section-12 .u-metadata-1 {
  margin: 20px auto 0 0;
}

.u-section-12 .u-btn-1 {
  border-style: solid;
  font-weight: 700;
  text-transform: uppercase;
  --radius: 10px;
  margin: 22px auto 0 0;
}

.u-section-12 .u-container-layout-2 {
  padding: 0 30px 30px 0;
}

.u-section-12 .u-image-2 {
  height: 339px;
  margin-top: 0;
  margin-bottom: 0;
  --radius: 10px;
}

.u-section-12 .u-text-4 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 20px auto 0 0;
}

.u-section-12 .u-text-5 {
  margin: 22px auto 0 0;
}

.u-section-12 .u-metadata-2 {
  margin: 20px auto 0 0;
}

.u-section-12 .u-btn-2 {
  border-style: solid;
  font-weight: 700;
  text-transform: uppercase;
  --radius: 10px;
  margin: 22px auto 0 0;
}

.u-section-12 .u-container-layout-3 {
  padding: 0 30px 30px 0;
}

.u-section-12 .u-image-3 {
  height: 339px;
  margin-top: 0;
  margin-bottom: 0;
  --radius: 10px;
}

.u-section-12 .u-text-6 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 20px auto 0 0;
}

.u-section-12 .u-text-7 {
  margin: 22px auto 0 0;
}

.u-section-12 .u-metadata-3 {
  margin: 20px auto 0 0;
}

.u-section-12 .u-btn-3 {
  border-style: solid;
  font-weight: 700;
  text-transform: uppercase;
  --radius: 10px;
  margin: 22px auto 0 0;
}

.u-section-12 .u-container-layout-4 {
  padding: 0 30px 30px 0;
}

.u-section-12 .u-image-4 {
  height: 339px;
  margin-top: 0;
  margin-bottom: 0;
  background-image: url("//capp.nicepage.com/images/default-image.jpg");
  background-position: 50% 50%;
  --radius: 10px;
}

.u-section-12 .u-text-8 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 20px auto 0 0;
}

.u-section-12 .u-text-9 {
  margin: 22px auto 0 0;
}

.u-section-12 .u-metadata-4 {
  margin: 20px auto 0 0;
}

.u-section-12 .u-btn-4 {
  border-style: solid;
  font-weight: 700;
  text-transform: uppercase;
  --radius: 10px;
  margin: 22px auto 0 0;
}

.u-section-12 .u-btn-5 {
  font-weight: 700;
  text-transform: uppercase;
  border-style: solid;
  --radius: 10px;
  background-image: none;
  margin: 30px auto 60px;
  padding: 18px 49px;
}

@media (max-width: 1199px) {
  .u-section-12 .u-repeater-1 {
    grid-gap: 22px;
    min-height: 869px;
  }

  .u-section-12 .u-btn-1 {
    padding: 18px 49px;
  }

  .u-section-12 .u-btn-2 {
    padding: 18px 49px;
  }

  .u-section-12 .u-btn-3 {
    padding: 18px 49px;
  }

  .u-section-12 .u-btn-4 {
    padding: 18px 49px;
  }
}

@media (max-width: 991px) {
  .u-section-12 .u-repeater-1 {
    grid-auto-columns: calc(100% - 0px);
    grid-template-columns: 100%;
  }
}

@media (max-width: 767px) {
  .u-section-12 .u-repeater-1 {
    grid-auto-columns: 100%;
  }

  .u-section-12 .u-container-layout-1 {
    padding-right: 10px;
  }

  .u-section-12 .u-container-layout-2 {
    padding-right: 10px;
  }

  .u-section-12 .u-container-layout-3 {
    padding-right: 10px;
  }

  .u-section-12 .u-container-layout-4 {
    padding-right: 10px;
  }
} .u-section-13 {
  background-image: none;
}

.u-section-13 .u-sheet-1 {
  min-height: 513px;
}

.u-section-13 .u-layout-wrap-1 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.u-section-13 .u-layout-cell-1 {
  min-height: 383px;
  --animation-custom_in-translate_x: -300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-13 .u-container-layout-1 {
  padding: 30px 30px 30px 0;
}

.u-section-13 .u-text-1 {
  margin: 0;
}

.u-section-13 .u-layout-cell-2 {
  min-height: 383px;
}

.u-section-13 .u-container-layout-2 {
  padding: 30px 30px 26px;
}

.u-section-13 .u-accordion-1 {
  width: 636px;
  margin: 0 auto 0 0;
}

.u-section-13 .u-accordion-link-1 {
  font-weight: 700;
  border-style: solid;
  padding: 20px 30px;
}

.u-section-13 .u-icon-1 {
  height: 20px;
  width: 20px;
}

.u-section-13 .u-accordion-pane-1 {
  min-height: 150px;
}

.u-section-13 .u-container-layout-3 {
  padding: 20px 30px;
}

.u-section-13 .u-accordion-link-2 {
  font-weight: 700;
  border-style: solid;
  padding: 20px 30px;
}

.u-section-13 .u-icon-2 {
  height: 20px;
  width: 20px;
}

.u-section-13 .u-accordion-pane-2 {
  min-height: 150px;
}

.u-section-13 .u-container-layout-4 {
  padding: 20px 30px;
}

.u-section-13 .u-accordion-link-3 {
  font-weight: 700;
  border-style: solid;
  padding: 20px 30px;
}

.u-section-13 .u-icon-3 {
  height: 20px;
  width: 20px;
}

.u-section-13 .u-accordion-pane-3 {
  min-height: 150px;
}

.u-section-13 .u-container-layout-5 {
  padding: 20px 30px;
}

.u-section-13 .u-accordion-link-4 {
  font-weight: 700;
  border-style: solid;
  padding: 20px 30px;
}

.u-section-13 .u-icon-4 {
  height: 20px;
  width: 20px;
}

.u-section-13 .u-accordion-pane-4 {
  min-height: 150px;
}

.u-section-13 .u-container-layout-6 {
  padding: 20px 30px;
}

@media (max-width: 1199px) {
  .u-section-13 .u-sheet-1 {
    min-height: 446px;
  }

  .u-section-13 .u-layout-cell-1 {
    min-height: 316px;
  }

  .u-section-13 .u-layout-cell-2 {
    min-height: 316px;
  }

  .u-section-13 .u-accordion-1 {
    width: 535px;
  }
}

@media (max-width: 991px) {
  .u-section-13 .u-sheet-1 {
    min-height: 230px;
  }

  .u-section-13 .u-layout-cell-1 {
    min-height: 100px;
  }

  .u-section-13 .u-layout-cell-2 {
    min-height: 384px;
  }

  .u-section-13 .u-container-layout-2 {
    padding-left: 0;
  }

  .u-section-13 .u-accordion-1 {
    width: 647px;
  }
}

@media (max-width: 767px) {
  .u-section-13 .u-sheet-1 {
    min-height: 330px;
  }

  .u-section-13 .u-container-layout-1 {
    padding-right: 10px;
  }

  .u-section-13 .u-layout-cell-2 {
    min-height: 100px;
  }

  .u-section-13 .u-container-layout-2 {
    padding-right: 10px;
  }

  .u-section-13 .u-accordion-1 {
    width: 530px;
  }

  .u-section-13 .u-container-layout-3 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-13 .u-container-layout-4 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-13 .u-container-layout-5 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-13 .u-container-layout-6 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575px) {
  .u-section-13 .u-accordion-1 {
    width: 330px;
  }
} .u-section-14 {
  background-image: none;
}

.u-section-14 .u-sheet-1 {
  min-height: 678px;
}

.u-section-14 .u-layout-wrap-1 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.u-section-14 .u-layout-cell-1 {
  min-height: 547px;
  --animation-custom_in-translate_x: -300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
  background-image: none;
  --radius: 10px;
}

.u-section-14 .u-container-layout-1 {
  padding: 30px 50px 30px 30px;
}

.u-section-14 .u-image-1 {
  width: 169px;
  height: 169px;
  background-image: url("https://assets.nicepagecdn.com/d2cc3eaa/6322200/images/brunette-woman-eating-salad_23-2.jpg");
  background-position: 50% 50%;
  margin: 0 auto 0 0;
}

.u-section-14 .u-text-1 {
  font-size: 3rem;
  margin: 20px 0 0;
}

.u-section-14 .u-text-2 {
  font-size: 1.25rem;
  margin: 30px auto 0 0;
}

.u-section-14 .u-layout-cell-2 {
  min-height: 546px;
  --animation-custom_in-translate_x: 300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
}

.u-section-14 .u-container-layout-2 {
  padding: 30px;
}

.u-section-14 .u-form-1 {
  height: 590px;
  width: 632px;
  margin: 0 auto;
}

.u-section-14 .u-form-group-1 {
  margin-left: 0;
}

.u-section-14 .u-form-group-2 {
  margin-left: 0;
}

.u-section-14 .u-form-group-4 {
  margin-left: 0;
}

.u-section-14 .u-btn-1 {
  background-image: none;
  text-transform: uppercase;
  font-size: 1.125rem;
  width: 100%;
  --radius: 10px;
  font-weight: 700;
  padding: 16px 0 17px;
}

@media (max-width: 1199px) {
  .u-section-14 .u-sheet-1 {
    min-height: 582px;
  }

  .u-section-14 .u-layout-cell-1 {
    min-height: 451px;
  }

  .u-section-14 .u-image-1 {
    width: 132px;
    height: 132px;
  }

  .u-section-14 .u-layout-cell-2 {
    min-height: 450px;
  }

  .u-section-14 .u-form-1 {
    width: 535px;
  }
}

@media (max-width: 991px) {
  .u-section-14 .u-sheet-1 {
    min-height: 231px;
  }

  .u-section-14 .u-layout-cell-1 {
    min-height: 100px;
  }

  .u-section-14 .u-container-layout-1 {
    padding-right: 30px;
  }

  .u-section-14 .u-layout-cell-2 {
    min-height: 547px;
  }

  .u-section-14 .u-form-1 {
    height: 487px;
    margin-right: 30px;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .u-section-14 .u-sheet-1 {
    min-height: 331px;
  }

  .u-section-14 .u-container-layout-1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-14 .u-text-1 {
    font-size: 1.875rem;
  }

  .u-section-14 .u-text-2 {
    font-size: 1rem;
  }

  .u-section-14 .u-container-layout-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-14 .u-form-1 {
    margin-right: 10px;
    width: 520px;
  }
}

@media (max-width: 575px) {
  .u-section-14 .u-text-1 {
    font-size: 1.5rem;
  }

  .u-section-14 .u-layout-cell-2 {
    min-height: 100px;
  }

  .u-section-14 .u-form-1 {
    width: 320px;
    margin-right: 0;
  }
}/*begin-variables font-family*/
.u-body {
  font-family: 'Open Sans',sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Montserrat,sans-serif;
}
/*end-variables font-family*/
/*begin-variables color*/
.u-overlap.u-overlap-transparent .u-header,
.u-image,
.u-gradient {
  color: #111111;
}
.u-shading,
.u-overlap.u-overlap-contrast .u-header {
  color: var(--color-white);
}
.u-body {
  color: #111111;
  background-color: var(--color-white);
  --effect-scale: 1.1;
}
/*end-variables color*/
/*begin-variables font*/
.u-custom-font.u-text-font {
  font-family: 'Open Sans',sans-serif !important;
}
.u-custom-font.u-heading-font {
  font-family: Montserrat,sans-serif !important;
}
/*end-variables font*/
/*begin-variables colors*/
.u-none.u-input,
.u-none.u-field-input,
.u-none.u-button-style,
.u-none.u-button-style:hover,
.u-none.u-button-style:focus,
.u-none.u-button-style:active,
.u-none.u-button-style.active,
.u-button-style.u-hover-none:hover,
.u-button-style.u-hover-none.hover,
.u-button-style.u-hover-none:focus,
.u-button-style.u-active-none:active,
.u-button-style.u-active-none.active,
li.active > .u-button-style.u-active-none {
  color: inherit !important;
  background-color: transparent !important;
}
.u-button-style.u-border-none,
.u-button-style.u-border-hover-none:hover,
.u-button-style.u-border-hover-none:focus,
.u-button-style.u-border-active-none:active,
.u-button-style.u-border-active-none.active,
li.active > .u-button-style.u-border-active-none {
  border-color: transparent !important;
  border-width: 0;
}
.u-button-style.u-text-none,
.u-button-style.u-text-none:hover,
.u-button-style.u-text-none:focus,
.u-button-style.u-text-none:active,
.u-button-style.u-text-none.active,
.u-button-style.u-text-hover-none:hover,
.u-button-style.u-text-hover-none:focus,
.u-button-style.u-text-active-none:active,
.u-button-style.u-text-active-none.active,
li.active > .u-button-style.u-text-active-none {
  color: inherit !important;
}
.u-color-1-dark-3,
.u-body.u-color-1-dark-3,
section.u-color-1-dark-3:before,
.u-color-1-dark-3 > .u-audio-main-layout-wrapper:before,
.u-color-1-dark-3 > .u-container-layout:before,
.u-color-1-dark-3 > .u-inner-container-layout:before,
.u-color-1-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1-dark-3:before,
.u-table-alt-color-1-dark-3 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #2a3329;
}
.u-input.u-color-1-dark-3,
.u-field-input.u-color-1-dark-3,
.u-button-style.u-color-1-dark-3,
.u-button-style.u-color-1-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #2a3329 !important;
}
.u-button-style.u-color-1-dark-3:hover,
.u-button-style.u-color-1-dark-3[class*="u-border-"]:hover,
.u-button-style.u-color-1-dark-3:focus,
.u-button-style.u-color-1-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1-dark-3:active,
.u-button-style.u-button-style.u-color-1-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1-dark-3.active,
.u-button-style.u-button-style.u-color-1-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1-dark-3,
li.active > .u-button-style.u-button-style.u-color-1-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #262e25 !important;
}
/* hover */
.u-hover-color-1-dark-3:hover,
.u-hover-color-1-dark-3[class*="u-border-"]:hover,
.u-hover-color-1-dark-3:focus,
.u-hover-color-1-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-1-dark-3:hover,
a.u-button-style.u-hover-color-1-dark-3.hover,
a.u-button-style.u-hover-color-1-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1-dark-3,
a.u-button-style:hover > .u-hover-color-1-dark-3[class*="u-border-"],
a.u-button-style.u-hover-color-1-dark-3:focus,
a.u-button-style.u-hover-color-1-dark-3[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #2a3329 !important;
}
/* active */
.u-active-color-1-dark-3.u-active.u-active,
.u-active-color-1-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-1-dark-3:active,
a.u-button-style.u-button-style.u-active-color-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1-dark-3.active,
a.u-button-style.u-button-style.u-active-color-1-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1-dark-3,
a.u-button-style.u-button-style.active > .u-active-color-1-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1-dark-3,
li.active > a.u-button-style.u-button-style.u-active-color-1-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1-dark-3:checked {
  color: var(--color-white) !important;
  background-color: #2a3329 !important;
}
a.u-link.u-hover-color-1-dark-3:hover {
  color: #2a3329 !important;
}
.u-color-1-dark-2,
.u-body.u-color-1-dark-2,
section.u-color-1-dark-2:before,
.u-color-1-dark-2 > .u-audio-main-layout-wrapper:before,
.u-color-1-dark-2 > .u-container-layout:before,
.u-color-1-dark-2 > .u-inner-container-layout:before,
.u-color-1-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1-dark-2:before,
.u-table-alt-color-1-dark-2 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #485a46;
}
.u-input.u-color-1-dark-2,
.u-field-input.u-color-1-dark-2,
.u-button-style.u-color-1-dark-2,
.u-button-style.u-color-1-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #485a46 !important;
}
.u-button-style.u-color-1-dark-2:hover,
.u-button-style.u-color-1-dark-2[class*="u-border-"]:hover,
.u-button-style.u-color-1-dark-2:focus,
.u-button-style.u-color-1-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1-dark-2:active,
.u-button-style.u-button-style.u-color-1-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1-dark-2.active,
.u-button-style.u-button-style.u-color-1-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1-dark-2,
li.active > .u-button-style.u-button-style.u-color-1-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #41513f !important;
}
/* hover */
.u-hover-color-1-dark-2:hover,
.u-hover-color-1-dark-2[class*="u-border-"]:hover,
.u-hover-color-1-dark-2:focus,
.u-hover-color-1-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-1-dark-2:hover,
a.u-button-style.u-hover-color-1-dark-2.hover,
a.u-button-style.u-hover-color-1-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1-dark-2,
a.u-button-style:hover > .u-hover-color-1-dark-2[class*="u-border-"],
a.u-button-style.u-hover-color-1-dark-2:focus,
a.u-button-style.u-hover-color-1-dark-2[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #485a46 !important;
}
/* active */
.u-active-color-1-dark-2.u-active.u-active,
.u-active-color-1-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-1-dark-2:active,
a.u-button-style.u-button-style.u-active-color-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1-dark-2.active,
a.u-button-style.u-button-style.u-active-color-1-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1-dark-2,
a.u-button-style.u-button-style.active > .u-active-color-1-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1-dark-2,
li.active > a.u-button-style.u-button-style.u-active-color-1-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1-dark-2:checked {
  color: var(--color-white) !important;
  background-color: #485a46 !important;
}
a.u-link.u-hover-color-1-dark-2:hover {
  color: #485a46 !important;
}
.u-color-1-dark-1,
.u-body.u-color-1-dark-1,
section.u-color-1-dark-1:before,
.u-color-1-dark-1 > .u-audio-main-layout-wrapper:before,
.u-color-1-dark-1 > .u-container-layout:before,
.u-color-1-dark-1 > .u-inner-container-layout:before,
.u-color-1-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1-dark-1:before,
.u-table-alt-color-1-dark-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #658161;
}
.u-input.u-color-1-dark-1,
.u-field-input.u-color-1-dark-1,
.u-button-style.u-color-1-dark-1,
.u-button-style.u-color-1-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #658161 !important;
}
.u-button-style.u-color-1-dark-1:hover,
.u-button-style.u-color-1-dark-1[class*="u-border-"]:hover,
.u-button-style.u-color-1-dark-1:focus,
.u-button-style.u-color-1-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1-dark-1:active,
.u-button-style.u-button-style.u-color-1-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1-dark-1.active,
.u-button-style.u-button-style.u-color-1-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1-dark-1,
li.active > .u-button-style.u-button-style.u-color-1-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #5b7457 !important;
}
/* hover */
.u-hover-color-1-dark-1:hover,
.u-hover-color-1-dark-1[class*="u-border-"]:hover,
.u-hover-color-1-dark-1:focus,
.u-hover-color-1-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-1-dark-1:hover,
a.u-button-style.u-hover-color-1-dark-1.hover,
a.u-button-style.u-hover-color-1-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1-dark-1,
a.u-button-style:hover > .u-hover-color-1-dark-1[class*="u-border-"],
a.u-button-style.u-hover-color-1-dark-1:focus,
a.u-button-style.u-hover-color-1-dark-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #658161 !important;
}
/* active */
.u-active-color-1-dark-1.u-active.u-active,
.u-active-color-1-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-1-dark-1:active,
a.u-button-style.u-button-style.u-active-color-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1-dark-1.active,
a.u-button-style.u-button-style.u-active-color-1-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1-dark-1,
a.u-button-style.u-button-style.active > .u-active-color-1-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1-dark-1,
li.active > a.u-button-style.u-button-style.u-active-color-1-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1-dark-1:checked {
  color: var(--color-white) !important;
  background-color: #658161 !important;
}
a.u-link.u-hover-color-1-dark-1:hover {
  color: #658161 !important;
}
.u-color-1,
.u-body.u-color-1,
section.u-color-1:before,
.u-color-1 > .u-audio-main-layout-wrapper:before,
.u-color-1 > .u-container-layout:before,
.u-color-1 > .u-inner-container-layout:before,
.u-color-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1:before,
.u-table-alt-color-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #9ab596;
}
.u-input.u-color-1,
.u-field-input.u-color-1,
.u-button-style.u-color-1,
.u-button-style.u-color-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #9ab596 !important;
}
.u-button-style.u-color-1:hover,
.u-button-style.u-color-1[class*="u-border-"]:hover,
.u-button-style.u-color-1:focus,
.u-button-style.u-color-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1:active,
.u-button-style.u-button-style.u-color-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1.active,
.u-button-style.u-button-style.u-color-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1,
li.active > .u-button-style.u-button-style.u-color-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #87a783 !important;
}
/* hover */
.u-hover-color-1:hover,
.u-hover-color-1[class*="u-border-"]:hover,
.u-hover-color-1:focus,
.u-hover-color-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-1:hover,
a.u-button-style.u-hover-color-1.hover,
a.u-button-style.u-hover-color-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1,
a.u-button-style:hover > .u-hover-color-1[class*="u-border-"],
a.u-button-style.u-hover-color-1:focus,
a.u-button-style.u-hover-color-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #9ab596 !important;
}
/* active */
.u-active-color-1.u-active.u-active,
.u-active-color-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-1:active,
a.u-button-style.u-button-style.u-active-color-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1.active,
a.u-button-style.u-button-style.u-active-color-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1,
a.u-button-style.u-button-style.active > .u-active-color-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1,
li.active > a.u-button-style.u-button-style.u-active-color-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1:checked {
  color: var(--color-white) !important;
  background-color: #9ab596 !important;
}
a.u-link.u-hover-color-1:hover {
  color: #9ab596 !important;
}
.u-color-1-light-1,
.u-body.u-color-1-light-1,
section.u-color-1-light-1:before,
.u-color-1-light-1 > .u-audio-main-layout-wrapper:before,
.u-color-1-light-1 > .u-container-layout:before,
.u-color-1-light-1 > .u-inner-container-layout:before,
.u-color-1-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1-light-1:before,
.u-table-alt-color-1-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #b6ccb2;
}
.u-input.u-color-1-light-1,
.u-field-input.u-color-1-light-1,
.u-button-style.u-color-1-light-1,
.u-button-style.u-color-1-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #b6ccb2 !important;
}
.u-button-style.u-color-1-light-1:hover,
.u-button-style.u-color-1-light-1[class*="u-border-"]:hover,
.u-button-style.u-color-1-light-1:focus,
.u-button-style.u-color-1-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1-light-1:active,
.u-button-style.u-button-style.u-color-1-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1-light-1.active,
.u-button-style.u-button-style.u-color-1-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1-light-1,
li.active > .u-button-style.u-button-style.u-color-1-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #a0bd9b !important;
}
/* hover */
.u-hover-color-1-light-1:hover,
.u-hover-color-1-light-1[class*="u-border-"]:hover,
.u-hover-color-1-light-1:focus,
.u-hover-color-1-light-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-1-light-1:hover,
a.u-button-style.u-hover-color-1-light-1.hover,
a.u-button-style.u-hover-color-1-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1-light-1,
a.u-button-style:hover > .u-hover-color-1-light-1[class*="u-border-"],
a.u-button-style.u-hover-color-1-light-1:focus,
a.u-button-style.u-hover-color-1-light-1[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #b6ccb2 !important;
}
/* active */
.u-active-color-1-light-1.u-active.u-active,
.u-active-color-1-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-1-light-1:active,
a.u-button-style.u-button-style.u-active-color-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1-light-1.active,
a.u-button-style.u-button-style.u-active-color-1-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1-light-1,
a.u-button-style.u-button-style.active > .u-active-color-1-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1-light-1,
li.active > a.u-button-style.u-button-style.u-active-color-1-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1-light-1:checked {
  color: #111111 !important;
  background-color: #b6ccb2 !important;
}
a.u-link.u-hover-color-1-light-1:hover {
  color: #b6ccb2 !important;
}
.u-color-1-light-2,
.u-body.u-color-1-light-2,
section.u-color-1-light-2:before,
.u-color-1-light-2 > .u-audio-main-layout-wrapper:before,
.u-color-1-light-2 > .u-container-layout:before,
.u-color-1-light-2 > .u-inner-container-layout:before,
.u-color-1-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1-light-2:before,
.u-table-alt-color-1-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #d4e2d2;
}
.u-input.u-color-1-light-2,
.u-field-input.u-color-1-light-2,
.u-button-style.u-color-1-light-2,
.u-button-style.u-color-1-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d4e2d2 !important;
}
.u-button-style.u-color-1-light-2:hover,
.u-button-style.u-color-1-light-2[class*="u-border-"]:hover,
.u-button-style.u-color-1-light-2:focus,
.u-button-style.u-color-1-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1-light-2:active,
.u-button-style.u-button-style.u-color-1-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1-light-2.active,
.u-button-style.u-button-style.u-color-1-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1-light-2,
li.active > .u-button-style.u-button-style.u-color-1-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #bbd1b7 !important;
}
/* hover */
.u-hover-color-1-light-2:hover,
.u-hover-color-1-light-2[class*="u-border-"]:hover,
.u-hover-color-1-light-2:focus,
.u-hover-color-1-light-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-1-light-2:hover,
a.u-button-style.u-hover-color-1-light-2.hover,
a.u-button-style.u-hover-color-1-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1-light-2,
a.u-button-style:hover > .u-hover-color-1-light-2[class*="u-border-"],
a.u-button-style.u-hover-color-1-light-2:focus,
a.u-button-style.u-hover-color-1-light-2[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #d4e2d2 !important;
}
/* active */
.u-active-color-1-light-2.u-active.u-active,
.u-active-color-1-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-1-light-2:active,
a.u-button-style.u-button-style.u-active-color-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1-light-2.active,
a.u-button-style.u-button-style.u-active-color-1-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1-light-2,
a.u-button-style.u-button-style.active > .u-active-color-1-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1-light-2,
li.active > a.u-button-style.u-button-style.u-active-color-1-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1-light-2:checked {
  color: #111111 !important;
  background-color: #d4e2d2 !important;
}
a.u-link.u-hover-color-1-light-2:hover {
  color: #d4e2d2 !important;
}
.u-color-1-light-3,
.u-body.u-color-1-light-3,
section.u-color-1-light-3:before,
.u-color-1-light-3 > .u-audio-main-layout-wrapper:before,
.u-color-1-light-3 > .u-container-layout:before,
.u-color-1-light-3 > .u-inner-container-layout:before,
.u-color-1-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1-light-3:before,
.u-table-alt-color-1-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #f4f8f3;
}
.u-input.u-color-1-light-3,
.u-field-input.u-color-1-light-3,
.u-button-style.u-color-1-light-3,
.u-button-style.u-color-1-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f4f8f3 !important;
}
.u-button-style.u-color-1-light-3:hover,
.u-button-style.u-color-1-light-3[class*="u-border-"]:hover,
.u-button-style.u-color-1-light-3:focus,
.u-button-style.u-color-1-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1-light-3:active,
.u-button-style.u-button-style.u-color-1-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1-light-3.active,
.u-button-style.u-button-style.u-color-1-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1-light-3,
li.active > .u-button-style.u-button-style.u-color-1-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d8e6d4 !important;
}
/* hover */
.u-hover-color-1-light-3:hover,
.u-hover-color-1-light-3[class*="u-border-"]:hover,
.u-hover-color-1-light-3:focus,
.u-hover-color-1-light-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-1-light-3:hover,
a.u-button-style.u-hover-color-1-light-3.hover,
a.u-button-style.u-hover-color-1-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1-light-3,
a.u-button-style:hover > .u-hover-color-1-light-3[class*="u-border-"],
a.u-button-style.u-hover-color-1-light-3:focus,
a.u-button-style.u-hover-color-1-light-3[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f4f8f3 !important;
}
/* active */
.u-active-color-1-light-3.u-active.u-active,
.u-active-color-1-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-1-light-3:active,
a.u-button-style.u-button-style.u-active-color-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1-light-3.active,
a.u-button-style.u-button-style.u-active-color-1-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1-light-3,
a.u-button-style.u-button-style.active > .u-active-color-1-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1-light-3,
li.active > a.u-button-style.u-button-style.u-active-color-1-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1-light-3:checked {
  color: #111111 !important;
  background-color: #f4f8f3 !important;
}
a.u-link.u-hover-color-1-light-3:hover {
  color: #f4f8f3 !important;
}
.u-color-1-base,
.u-body.u-color-1-base,
section.u-color-1-base:before,
.u-color-1-base > .u-audio-main-layout-wrapper:before,
.u-color-1-base > .u-container-layout:before,
.u-color-1-base > .u-inner-container-layout:before,
.u-color-1-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1-base:before,
.u-table-alt-color-1-base tr:nth-child(even) {
  color: var(--color-white);
  background-color: #658161;
}
.u-input.u-color-1-base,
.u-field-input.u-color-1-base,
.u-button-style.u-color-1-base,
.u-button-style.u-color-1-base[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #658161 !important;
}
.u-button-style.u-color-1-base:hover,
.u-button-style.u-color-1-base[class*="u-border-"]:hover,
.u-button-style.u-color-1-base:focus,
.u-button-style.u-color-1-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1-base:active,
.u-button-style.u-button-style.u-color-1-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1-base.active,
.u-button-style.u-button-style.u-color-1-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1-base,
li.active > .u-button-style.u-button-style.u-color-1-base[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #5b7457 !important;
}
/* hover */
.u-hover-color-1-base:hover,
.u-hover-color-1-base[class*="u-border-"]:hover,
.u-hover-color-1-base:focus,
.u-hover-color-1-base[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-1-base:hover,
a.u-button-style.u-hover-color-1-base.hover,
a.u-button-style.u-hover-color-1-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1-base,
a.u-button-style:hover > .u-hover-color-1-base[class*="u-border-"],
a.u-button-style.u-hover-color-1-base:focus,
a.u-button-style.u-hover-color-1-base[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #658161 !important;
}
/* active */
.u-active-color-1-base.u-active.u-active,
.u-active-color-1-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-1-base:active,
a.u-button-style.u-button-style.u-active-color-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1-base.active,
a.u-button-style.u-button-style.u-active-color-1-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1-base,
a.u-button-style.u-button-style.active > .u-active-color-1-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1-base,
li.active > a.u-button-style.u-button-style.u-active-color-1-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1-base:checked {
  color: var(--color-white) !important;
  background-color: #658161 !important;
}
a.u-link.u-hover-color-1-base:hover {
  color: #658161 !important;
}
.u-color-2-dark-3,
.u-body.u-color-2-dark-3,
section.u-color-2-dark-3:before,
.u-color-2-dark-3 > .u-audio-main-layout-wrapper:before,
.u-color-2-dark-3 > .u-container-layout:before,
.u-color-2-dark-3 > .u-inner-container-layout:before,
.u-color-2-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2-dark-3:before,
.u-table-alt-color-2-dark-3 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #332929;
}
.u-input.u-color-2-dark-3,
.u-field-input.u-color-2-dark-3,
.u-button-style.u-color-2-dark-3,
.u-button-style.u-color-2-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #332929 !important;
}
.u-button-style.u-color-2-dark-3:hover,
.u-button-style.u-color-2-dark-3[class*="u-border-"]:hover,
.u-button-style.u-color-2-dark-3:focus,
.u-button-style.u-color-2-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2-dark-3:active,
.u-button-style.u-button-style.u-color-2-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2-dark-3.active,
.u-button-style.u-button-style.u-color-2-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2-dark-3,
li.active > .u-button-style.u-button-style.u-color-2-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #2e2525 !important;
}
/* hover */
.u-hover-color-2-dark-3:hover,
.u-hover-color-2-dark-3[class*="u-border-"]:hover,
.u-hover-color-2-dark-3:focus,
.u-hover-color-2-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-2-dark-3:hover,
a.u-button-style.u-hover-color-2-dark-3.hover,
a.u-button-style.u-hover-color-2-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2-dark-3,
a.u-button-style:hover > .u-hover-color-2-dark-3[class*="u-border-"],
a.u-button-style.u-hover-color-2-dark-3:focus,
a.u-button-style.u-hover-color-2-dark-3[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #332929 !important;
}
/* active */
.u-active-color-2-dark-3.u-active.u-active,
.u-active-color-2-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-2-dark-3:active,
a.u-button-style.u-button-style.u-active-color-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2-dark-3.active,
a.u-button-style.u-button-style.u-active-color-2-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2-dark-3,
a.u-button-style.u-button-style.active > .u-active-color-2-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2-dark-3,
li.active > a.u-button-style.u-button-style.u-active-color-2-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2-dark-3:checked {
  color: var(--color-white) !important;
  background-color: #332929 !important;
}
a.u-link.u-hover-color-2-dark-3:hover {
  color: #332929 !important;
}
.u-color-2-dark-2,
.u-body.u-color-2-dark-2,
section.u-color-2-dark-2:before,
.u-color-2-dark-2 > .u-audio-main-layout-wrapper:before,
.u-color-2-dark-2 > .u-container-layout:before,
.u-color-2-dark-2 > .u-inner-container-layout:before,
.u-color-2-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2-dark-2:before,
.u-table-alt-color-2-dark-2 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #6b4748;
}
.u-input.u-color-2-dark-2,
.u-field-input.u-color-2-dark-2,
.u-button-style.u-color-2-dark-2,
.u-button-style.u-color-2-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #6b4748 !important;
}
.u-button-style.u-color-2-dark-2:hover,
.u-button-style.u-color-2-dark-2[class*="u-border-"]:hover,
.u-button-style.u-color-2-dark-2:focus,
.u-button-style.u-color-2-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2-dark-2:active,
.u-button-style.u-button-style.u-color-2-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2-dark-2.active,
.u-button-style.u-button-style.u-color-2-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2-dark-2,
li.active > .u-button-style.u-button-style.u-color-2-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #604041 !important;
}
/* hover */
.u-hover-color-2-dark-2:hover,
.u-hover-color-2-dark-2[class*="u-border-"]:hover,
.u-hover-color-2-dark-2:focus,
.u-hover-color-2-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-2-dark-2:hover,
a.u-button-style.u-hover-color-2-dark-2.hover,
a.u-button-style.u-hover-color-2-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2-dark-2,
a.u-button-style:hover > .u-hover-color-2-dark-2[class*="u-border-"],
a.u-button-style.u-hover-color-2-dark-2:focus,
a.u-button-style.u-hover-color-2-dark-2[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #6b4748 !important;
}
/* active */
.u-active-color-2-dark-2.u-active.u-active,
.u-active-color-2-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-2-dark-2:active,
a.u-button-style.u-button-style.u-active-color-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2-dark-2.active,
a.u-button-style.u-button-style.u-active-color-2-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2-dark-2,
a.u-button-style.u-button-style.active > .u-active-color-2-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2-dark-2,
li.active > a.u-button-style.u-button-style.u-active-color-2-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2-dark-2:checked {
  color: var(--color-white) !important;
  background-color: #6b4748 !important;
}
a.u-link.u-hover-color-2-dark-2:hover {
  color: #6b4748 !important;
}
.u-color-2-dark-1,
.u-body.u-color-2-dark-1,
section.u-color-2-dark-1:before,
.u-color-2-dark-1 > .u-audio-main-layout-wrapper:before,
.u-color-2-dark-1 > .u-container-layout:before,
.u-color-2-dark-1 > .u-inner-container-layout:before,
.u-color-2-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2-dark-1:before,
.u-table-alt-color-2-dark-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #a35559;
}
.u-input.u-color-2-dark-1,
.u-field-input.u-color-2-dark-1,
.u-button-style.u-color-2-dark-1,
.u-button-style.u-color-2-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #a35559 !important;
}
.u-button-style.u-color-2-dark-1:hover,
.u-button-style.u-color-2-dark-1[class*="u-border-"]:hover,
.u-button-style.u-color-2-dark-1:focus,
.u-button-style.u-color-2-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2-dark-1:active,
.u-button-style.u-button-style.u-color-2-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2-dark-1.active,
.u-button-style.u-button-style.u-color-2-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2-dark-1,
li.active > .u-button-style.u-button-style.u-color-2-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #934c50 !important;
}
/* hover */
.u-hover-color-2-dark-1:hover,
.u-hover-color-2-dark-1[class*="u-border-"]:hover,
.u-hover-color-2-dark-1:focus,
.u-hover-color-2-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-2-dark-1:hover,
a.u-button-style.u-hover-color-2-dark-1.hover,
a.u-button-style.u-hover-color-2-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2-dark-1,
a.u-button-style:hover > .u-hover-color-2-dark-1[class*="u-border-"],
a.u-button-style.u-hover-color-2-dark-1:focus,
a.u-button-style.u-hover-color-2-dark-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #a35559 !important;
}
/* active */
.u-active-color-2-dark-1.u-active.u-active,
.u-active-color-2-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-2-dark-1:active,
a.u-button-style.u-button-style.u-active-color-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2-dark-1.active,
a.u-button-style.u-button-style.u-active-color-2-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2-dark-1,
a.u-button-style.u-button-style.active > .u-active-color-2-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2-dark-1,
li.active > a.u-button-style.u-button-style.u-active-color-2-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2-dark-1:checked {
  color: var(--color-white) !important;
  background-color: #a35559 !important;
}
a.u-link.u-hover-color-2-dark-1:hover {
  color: #a35559 !important;
}
.u-color-2,
.u-body.u-color-2,
section.u-color-2:before,
.u-color-2 > .u-audio-main-layout-wrapper:before,
.u-color-2 > .u-container-layout:before,
.u-color-2 > .u-inner-container-layout:before,
.u-color-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2:before,
.u-table-alt-color-2 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #db545a;
}
.u-input.u-color-2,
.u-field-input.u-color-2,
.u-button-style.u-color-2,
.u-button-style.u-color-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #db545a !important;
}
.u-button-style.u-color-2:hover,
.u-button-style.u-color-2[class*="u-border-"]:hover,
.u-button-style.u-color-2:focus,
.u-button-style.u-color-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2:active,
.u-button-style.u-button-style.u-color-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2.active,
.u-button-style.u-button-style.u-color-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2,
li.active > .u-button-style.u-button-style.u-color-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #d63b42 !important;
}
/* hover */
.u-hover-color-2:hover,
.u-hover-color-2[class*="u-border-"]:hover,
.u-hover-color-2:focus,
.u-hover-color-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-2:hover,
a.u-button-style.u-hover-color-2.hover,
a.u-button-style.u-hover-color-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2,
a.u-button-style:hover > .u-hover-color-2[class*="u-border-"],
a.u-button-style.u-hover-color-2:focus,
a.u-button-style.u-hover-color-2[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #db545a !important;
}
/* active */
.u-active-color-2.u-active.u-active,
.u-active-color-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-2:active,
a.u-button-style.u-button-style.u-active-color-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2.active,
a.u-button-style.u-button-style.u-active-color-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2,
a.u-button-style.u-button-style.active > .u-active-color-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2,
li.active > a.u-button-style.u-button-style.u-active-color-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2:checked {
  color: var(--color-white) !important;
  background-color: #db545a !important;
}
a.u-link.u-hover-color-2:hover {
  color: #db545a !important;
}
.u-color-2-light-1,
.u-body.u-color-2-light-1,
section.u-color-2-light-1:before,
.u-color-2-light-1 > .u-audio-main-layout-wrapper:before,
.u-color-2-light-1 > .u-container-layout:before,
.u-color-2-light-1 > .u-inner-container-layout:before,
.u-color-2-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2-light-1:before,
.u-table-alt-color-2-light-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #e68387;
}
.u-input.u-color-2-light-1,
.u-field-input.u-color-2-light-1,
.u-button-style.u-color-2-light-1,
.u-button-style.u-color-2-light-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #e68387 !important;
}
.u-button-style.u-color-2-light-1:hover,
.u-button-style.u-color-2-light-1[class*="u-border-"]:hover,
.u-button-style.u-color-2-light-1:focus,
.u-button-style.u-color-2-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2-light-1:active,
.u-button-style.u-button-style.u-color-2-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2-light-1.active,
.u-button-style.u-button-style.u-color-2-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2-light-1,
li.active > .u-button-style.u-button-style.u-color-2-light-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #e0656a !important;
}
/* hover */
.u-hover-color-2-light-1:hover,
.u-hover-color-2-light-1[class*="u-border-"]:hover,
.u-hover-color-2-light-1:focus,
.u-hover-color-2-light-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-2-light-1:hover,
a.u-button-style.u-hover-color-2-light-1.hover,
a.u-button-style.u-hover-color-2-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2-light-1,
a.u-button-style:hover > .u-hover-color-2-light-1[class*="u-border-"],
a.u-button-style.u-hover-color-2-light-1:focus,
a.u-button-style.u-hover-color-2-light-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #e68387 !important;
}
/* active */
.u-active-color-2-light-1.u-active.u-active,
.u-active-color-2-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-2-light-1:active,
a.u-button-style.u-button-style.u-active-color-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2-light-1.active,
a.u-button-style.u-button-style.u-active-color-2-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2-light-1,
a.u-button-style.u-button-style.active > .u-active-color-2-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2-light-1,
li.active > a.u-button-style.u-button-style.u-active-color-2-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2-light-1:checked {
  color: var(--color-white) !important;
  background-color: #e68387 !important;
}
a.u-link.u-hover-color-2-light-1:hover {
  color: #e68387 !important;
}
.u-color-2-light-2,
.u-body.u-color-2-light-2,
section.u-color-2-light-2:before,
.u-color-2-light-2 > .u-audio-main-layout-wrapper:before,
.u-color-2-light-2 > .u-container-layout:before,
.u-color-2-light-2 > .u-inner-container-layout:before,
.u-color-2-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2-light-2:before,
.u-table-alt-color-2-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #f1b5b8;
}
.u-input.u-color-2-light-2,
.u-field-input.u-color-2-light-2,
.u-button-style.u-color-2-light-2,
.u-button-style.u-color-2-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f1b5b8 !important;
}
.u-button-style.u-color-2-light-2:hover,
.u-button-style.u-color-2-light-2[class*="u-border-"]:hover,
.u-button-style.u-color-2-light-2:focus,
.u-button-style.u-color-2-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2-light-2:active,
.u-button-style.u-button-style.u-color-2-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2-light-2.active,
.u-button-style.u-button-style.u-color-2-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2-light-2,
li.active > .u-button-style.u-button-style.u-color-2-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #ea9296 !important;
}
/* hover */
.u-hover-color-2-light-2:hover,
.u-hover-color-2-light-2[class*="u-border-"]:hover,
.u-hover-color-2-light-2:focus,
.u-hover-color-2-light-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-2-light-2:hover,
a.u-button-style.u-hover-color-2-light-2.hover,
a.u-button-style.u-hover-color-2-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2-light-2,
a.u-button-style:hover > .u-hover-color-2-light-2[class*="u-border-"],
a.u-button-style.u-hover-color-2-light-2:focus,
a.u-button-style.u-hover-color-2-light-2[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f1b5b8 !important;
}
/* active */
.u-active-color-2-light-2.u-active.u-active,
.u-active-color-2-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-2-light-2:active,
a.u-button-style.u-button-style.u-active-color-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2-light-2.active,
a.u-button-style.u-button-style.u-active-color-2-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2-light-2,
a.u-button-style.u-button-style.active > .u-active-color-2-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2-light-2,
li.active > a.u-button-style.u-button-style.u-active-color-2-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2-light-2:checked {
  color: #111111 !important;
  background-color: #f1b5b8 !important;
}
a.u-link.u-hover-color-2-light-2:hover {
  color: #f1b5b8 !important;
}
.u-color-2-light-3,
.u-body.u-color-2-light-3,
section.u-color-2-light-3:before,
.u-color-2-light-3 > .u-audio-main-layout-wrapper:before,
.u-color-2-light-3 > .u-container-layout:before,
.u-color-2-light-3 > .u-inner-container-layout:before,
.u-color-2-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2-light-3:before,
.u-table-alt-color-2-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #fbeced;
}
.u-input.u-color-2-light-3,
.u-field-input.u-color-2-light-3,
.u-button-style.u-color-2-light-3,
.u-button-style.u-color-2-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fbeced !important;
}
.u-button-style.u-color-2-light-3:hover,
.u-button-style.u-color-2-light-3[class*="u-border-"]:hover,
.u-button-style.u-color-2-light-3:focus,
.u-button-style.u-color-2-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2-light-3:active,
.u-button-style.u-button-style.u-color-2-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2-light-3.active,
.u-button-style.u-button-style.u-color-2-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2-light-3,
li.active > .u-button-style.u-button-style.u-color-2-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f3c4c7 !important;
}
/* hover */
.u-hover-color-2-light-3:hover,
.u-hover-color-2-light-3[class*="u-border-"]:hover,
.u-hover-color-2-light-3:focus,
.u-hover-color-2-light-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-2-light-3:hover,
a.u-button-style.u-hover-color-2-light-3.hover,
a.u-button-style.u-hover-color-2-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2-light-3,
a.u-button-style:hover > .u-hover-color-2-light-3[class*="u-border-"],
a.u-button-style.u-hover-color-2-light-3:focus,
a.u-button-style.u-hover-color-2-light-3[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #fbeced !important;
}
/* active */
.u-active-color-2-light-3.u-active.u-active,
.u-active-color-2-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-2-light-3:active,
a.u-button-style.u-button-style.u-active-color-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2-light-3.active,
a.u-button-style.u-button-style.u-active-color-2-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2-light-3,
a.u-button-style.u-button-style.active > .u-active-color-2-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2-light-3,
li.active > a.u-button-style.u-button-style.u-active-color-2-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2-light-3:checked {
  color: #111111 !important;
  background-color: #fbeced !important;
}
a.u-link.u-hover-color-2-light-3:hover {
  color: #fbeced !important;
}
.u-color-2-base,
.u-body.u-color-2-base,
section.u-color-2-base:before,
.u-color-2-base > .u-audio-main-layout-wrapper:before,
.u-color-2-base > .u-container-layout:before,
.u-color-2-base > .u-inner-container-layout:before,
.u-color-2-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2-base:before,
.u-table-alt-color-2-base tr:nth-child(even) {
  color: var(--color-white);
  background-color: #db545a;
}
.u-input.u-color-2-base,
.u-field-input.u-color-2-base,
.u-button-style.u-color-2-base,
.u-button-style.u-color-2-base[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #db545a !important;
}
.u-button-style.u-color-2-base:hover,
.u-button-style.u-color-2-base[class*="u-border-"]:hover,
.u-button-style.u-color-2-base:focus,
.u-button-style.u-color-2-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2-base:active,
.u-button-style.u-button-style.u-color-2-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2-base.active,
.u-button-style.u-button-style.u-color-2-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2-base,
li.active > .u-button-style.u-button-style.u-color-2-base[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #d63b42 !important;
}
/* hover */
.u-hover-color-2-base:hover,
.u-hover-color-2-base[class*="u-border-"]:hover,
.u-hover-color-2-base:focus,
.u-hover-color-2-base[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-2-base:hover,
a.u-button-style.u-hover-color-2-base.hover,
a.u-button-style.u-hover-color-2-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2-base,
a.u-button-style:hover > .u-hover-color-2-base[class*="u-border-"],
a.u-button-style.u-hover-color-2-base:focus,
a.u-button-style.u-hover-color-2-base[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #db545a !important;
}
/* active */
.u-active-color-2-base.u-active.u-active,
.u-active-color-2-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-2-base:active,
a.u-button-style.u-button-style.u-active-color-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2-base.active,
a.u-button-style.u-button-style.u-active-color-2-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2-base,
a.u-button-style.u-button-style.active > .u-active-color-2-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2-base,
li.active > a.u-button-style.u-button-style.u-active-color-2-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2-base:checked {
  color: var(--color-white) !important;
  background-color: #db545a !important;
}
a.u-link.u-hover-color-2-base:hover {
  color: #db545a !important;
}
.u-color-3-dark-3,
.u-body.u-color-3-dark-3,
section.u-color-3-dark-3:before,
.u-color-3-dark-3 > .u-audio-main-layout-wrapper:before,
.u-color-3-dark-3 > .u-container-layout:before,
.u-color-3-dark-3 > .u-inner-container-layout:before,
.u-color-3-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3-dark-3:before,
.u-table-alt-color-3-dark-3 tr:nth-child(even) {
  color: var(--color-white);
  background-color: var(--color-text-medium)129;
}
.u-input.u-color-3-dark-3,
.u-field-input.u-color-3-dark-3,
.u-button-style.u-color-3-dark-3,
.u-button-style.u-color-3-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: var(--color-text-medium)129 !important;
}
.u-button-style.u-color-3-dark-3:hover,
.u-button-style.u-color-3-dark-3[class*="u-border-"]:hover,
.u-button-style.u-color-3-dark-3:focus,
.u-button-style.u-color-3-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3-dark-3:active,
.u-button-style.u-button-style.u-color-3-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3-dark-3.active,
.u-button-style.u-button-style.u-color-3-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3-dark-3,
li.active > .u-button-style.u-button-style.u-color-3-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #2e2c25 !important;
}
/* hover */
.u-hover-color-3-dark-3:hover,
.u-hover-color-3-dark-3[class*="u-border-"]:hover,
.u-hover-color-3-dark-3:focus,
.u-hover-color-3-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-3-dark-3:hover,
a.u-button-style.u-hover-color-3-dark-3.hover,
a.u-button-style.u-hover-color-3-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3-dark-3,
a.u-button-style:hover > .u-hover-color-3-dark-3[class*="u-border-"],
a.u-button-style.u-hover-color-3-dark-3:focus,
a.u-button-style.u-hover-color-3-dark-3[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: var(--color-text-medium)129 !important;
}
/* active */
.u-active-color-3-dark-3.u-active.u-active,
.u-active-color-3-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-3-dark-3:active,
a.u-button-style.u-button-style.u-active-color-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3-dark-3.active,
a.u-button-style.u-button-style.u-active-color-3-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3-dark-3,
a.u-button-style.u-button-style.active > .u-active-color-3-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3-dark-3,
li.active > a.u-button-style.u-button-style.u-active-color-3-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3-dark-3:checked {
  color: var(--color-white) !important;
  background-color: var(--color-text-medium)129 !important;
}
a.u-link.u-hover-color-3-dark-3:hover {
  color: var(--color-text-medium)129 !important;
}
.u-color-3-dark-2,
.u-body.u-color-3-dark-2,
section.u-color-3-dark-2:before,
.u-color-3-dark-2 > .u-audio-main-layout-wrapper:before,
.u-color-3-dark-2 > .u-container-layout:before,
.u-color-3-dark-2 > .u-inner-container-layout:before,
.u-color-3-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3-dark-2:before,
.u-table-alt-color-3-dark-2 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #72683f;
}
.u-input.u-color-3-dark-2,
.u-field-input.u-color-3-dark-2,
.u-button-style.u-color-3-dark-2,
.u-button-style.u-color-3-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #72683f !important;
}
.u-button-style.u-color-3-dark-2:hover,
.u-button-style.u-color-3-dark-2[class*="u-border-"]:hover,
.u-button-style.u-color-3-dark-2:focus,
.u-button-style.u-color-3-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3-dark-2:active,
.u-button-style.u-button-style.u-color-3-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3-dark-2.active,
.u-button-style.u-button-style.u-color-3-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3-dark-2,
li.active > .u-button-style.u-button-style.u-color-3-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #675e39 !important;
}
/* hover */
.u-hover-color-3-dark-2:hover,
.u-hover-color-3-dark-2[class*="u-border-"]:hover,
.u-hover-color-3-dark-2:focus,
.u-hover-color-3-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-3-dark-2:hover,
a.u-button-style.u-hover-color-3-dark-2.hover,
a.u-button-style.u-hover-color-3-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3-dark-2,
a.u-button-style:hover > .u-hover-color-3-dark-2[class*="u-border-"],
a.u-button-style.u-hover-color-3-dark-2:focus,
a.u-button-style.u-hover-color-3-dark-2[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #72683f !important;
}
/* active */
.u-active-color-3-dark-2.u-active.u-active,
.u-active-color-3-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-3-dark-2:active,
a.u-button-style.u-button-style.u-active-color-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3-dark-2.active,
a.u-button-style.u-button-style.u-active-color-3-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3-dark-2,
a.u-button-style.u-button-style.active > .u-active-color-3-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3-dark-2,
li.active > a.u-button-style.u-button-style.u-active-color-3-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3-dark-2:checked {
  color: var(--color-white) !important;
  background-color: #72683f !important;
}
a.u-link.u-hover-color-3-dark-2:hover {
  color: #72683f !important;
}
.u-color-3-dark-1,
.u-body.u-color-3-dark-1,
section.u-color-3-dark-1:before,
.u-color-3-dark-1 > .u-audio-main-layout-wrapper:before,
.u-color-3-dark-1 > .u-container-layout:before,
.u-color-3-dark-1 > .u-inner-container-layout:before,
.u-color-3-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3-dark-1:before,
.u-table-alt-color-3-dark-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #b29a36;
}
.u-input.u-color-3-dark-1,
.u-field-input.u-color-3-dark-1,
.u-button-style.u-color-3-dark-1,
.u-button-style.u-color-3-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #b29a36 !important;
}
.u-button-style.u-color-3-dark-1:hover,
.u-button-style.u-color-3-dark-1[class*="u-border-"]:hover,
.u-button-style.u-color-3-dark-1:focus,
.u-button-style.u-color-3-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3-dark-1:active,
.u-button-style.u-button-style.u-color-3-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3-dark-1.active,
.u-button-style.u-button-style.u-color-3-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3-dark-1,
li.active > .u-button-style.u-button-style.u-color-3-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #a08b31 !important;
}
/* hover */
.u-hover-color-3-dark-1:hover,
.u-hover-color-3-dark-1[class*="u-border-"]:hover,
.u-hover-color-3-dark-1:focus,
.u-hover-color-3-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-3-dark-1:hover,
a.u-button-style.u-hover-color-3-dark-1.hover,
a.u-button-style.u-hover-color-3-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3-dark-1,
a.u-button-style:hover > .u-hover-color-3-dark-1[class*="u-border-"],
a.u-button-style.u-hover-color-3-dark-1:focus,
a.u-button-style.u-hover-color-3-dark-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #b29a36 !important;
}
/* active */
.u-active-color-3-dark-1.u-active.u-active,
.u-active-color-3-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-3-dark-1:active,
a.u-button-style.u-button-style.u-active-color-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3-dark-1.active,
a.u-button-style.u-button-style.u-active-color-3-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3-dark-1,
a.u-button-style.u-button-style.active > .u-active-color-3-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3-dark-1,
li.active > a.u-button-style.u-button-style.u-active-color-3-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3-dark-1:checked {
  color: var(--color-white) !important;
  background-color: #b29a36 !important;
}
a.u-link.u-hover-color-3-dark-1:hover {
  color: #b29a36 !important;
}
.u-color-3,
.u-body.u-color-3,
section.u-color-3:before,
.u-color-3 > .u-audio-main-layout-wrapper:before,
.u-color-3 > .u-container-layout:before,
.u-color-3 > .u-inner-container-layout:before,
.u-color-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3:before,
.u-table-alt-color-3 tr:nth-child(even) {
  color: #111111;
  background-color: #f1c50e;
}
.u-input.u-color-3,
.u-field-input.u-color-3,
.u-button-style.u-color-3,
.u-button-style.u-color-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
.u-button-style.u-color-3:hover,
.u-button-style.u-color-3[class*="u-border-"]:hover,
.u-button-style.u-color-3:focus,
.u-button-style.u-color-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3:active,
.u-button-style.u-button-style.u-color-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3.active,
.u-button-style.u-button-style.u-color-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3,
li.active > .u-button-style.u-button-style.u-color-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d9b10d !important;
}
/* hover */
.u-hover-color-3:hover,
.u-hover-color-3[class*="u-border-"]:hover,
.u-hover-color-3:focus,
.u-hover-color-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-3:hover,
a.u-button-style.u-hover-color-3.hover,
a.u-button-style.u-hover-color-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3,
a.u-button-style:hover > .u-hover-color-3[class*="u-border-"],
a.u-button-style.u-hover-color-3:focus,
a.u-button-style.u-hover-color-3[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
/* active */
.u-active-color-3.u-active.u-active,
.u-active-color-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-3:active,
a.u-button-style.u-button-style.u-active-color-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3.active,
a.u-button-style.u-button-style.u-active-color-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3,
a.u-button-style.u-button-style.active > .u-active-color-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3,
li.active > a.u-button-style.u-button-style.u-active-color-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3:checked {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
a.u-link.u-hover-color-3:hover {
  color: #f1c50e !important;
}
.u-color-3-light-1,
.u-body.u-color-3-light-1,
section.u-color-3-light-1:before,
.u-color-3-light-1 > .u-audio-main-layout-wrapper:before,
.u-color-3-light-1 > .u-container-layout:before,
.u-color-3-light-1 > .u-inner-container-layout:before,
.u-color-3-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3-light-1:before,
.u-table-alt-color-3-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #f5d654;
}
.u-input.u-color-3-light-1,
.u-field-input.u-color-3-light-1,
.u-button-style.u-color-3-light-1,
.u-button-style.u-color-3-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f5d654 !important;
}
.u-button-style.u-color-3-light-1:hover,
.u-button-style.u-color-3-light-1[class*="u-border-"]:hover,
.u-button-style.u-color-3-light-1:focus,
.u-button-style.u-color-3-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3-light-1:active,
.u-button-style.u-button-style.u-color-3-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3-light-1.active,
.u-button-style.u-button-style.u-color-3-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3-light-1,
li.active > .u-button-style.u-button-style.u-color-3-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f3cf35 !important;
}
/* hover */
.u-hover-color-3-light-1:hover,
.u-hover-color-3-light-1[class*="u-border-"]:hover,
.u-hover-color-3-light-1:focus,
.u-hover-color-3-light-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-3-light-1:hover,
a.u-button-style.u-hover-color-3-light-1.hover,
a.u-button-style.u-hover-color-3-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3-light-1,
a.u-button-style:hover > .u-hover-color-3-light-1[class*="u-border-"],
a.u-button-style.u-hover-color-3-light-1:focus,
a.u-button-style.u-hover-color-3-light-1[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f5d654 !important;
}
/* active */
.u-active-color-3-light-1.u-active.u-active,
.u-active-color-3-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-3-light-1:active,
a.u-button-style.u-button-style.u-active-color-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3-light-1.active,
a.u-button-style.u-button-style.u-active-color-3-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3-light-1,
a.u-button-style.u-button-style.active > .u-active-color-3-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3-light-1,
li.active > a.u-button-style.u-button-style.u-active-color-3-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3-light-1:checked {
  color: #111111 !important;
  background-color: #f5d654 !important;
}
a.u-link.u-hover-color-3-light-1:hover {
  color: #f5d654 !important;
}
.u-color-3-light-2,
.u-body.u-color-3-light-2,
section.u-color-3-light-2:before,
.u-color-3-light-2 > .u-audio-main-layout-wrapper:before,
.u-color-3-light-2 > .u-container-layout:before,
.u-color-3-light-2 > .u-inner-container-layout:before,
.u-color-3-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3-light-2:before,
.u-table-alt-color-3-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #f9e79b;
}
.u-input.u-color-3-light-2,
.u-field-input.u-color-3-light-2,
.u-button-style.u-color-3-light-2,
.u-button-style.u-color-3-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f9e79b !important;
}
.u-button-style.u-color-3-light-2:hover,
.u-button-style.u-color-3-light-2[class*="u-border-"]:hover,
.u-button-style.u-color-3-light-2:focus,
.u-button-style.u-color-3-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3-light-2:active,
.u-button-style.u-button-style.u-color-3-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3-light-2.active,
.u-button-style.u-button-style.u-color-3-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3-light-2,
li.active > .u-button-style.u-button-style.u-color-3-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f7de75 !important;
}
/* hover */
.u-hover-color-3-light-2:hover,
.u-hover-color-3-light-2[class*="u-border-"]:hover,
.u-hover-color-3-light-2:focus,
.u-hover-color-3-light-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-3-light-2:hover,
a.u-button-style.u-hover-color-3-light-2.hover,
a.u-button-style.u-hover-color-3-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3-light-2,
a.u-button-style:hover > .u-hover-color-3-light-2[class*="u-border-"],
a.u-button-style.u-hover-color-3-light-2:focus,
a.u-button-style.u-hover-color-3-light-2[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f9e79b !important;
}
/* active */
.u-active-color-3-light-2.u-active.u-active,
.u-active-color-3-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-3-light-2:active,
a.u-button-style.u-button-style.u-active-color-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3-light-2.active,
a.u-button-style.u-button-style.u-active-color-3-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3-light-2,
a.u-button-style.u-button-style.active > .u-active-color-3-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3-light-2,
li.active > a.u-button-style.u-button-style.u-active-color-3-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3-light-2:checked {
  color: #111111 !important;
  background-color: #f9e79b !important;
}
a.u-link.u-hover-color-3-light-2:hover {
  color: #f9e79b !important;
}
.u-color-3-light-3,
.u-body.u-color-3-light-3,
section.u-color-3-light-3:before,
.u-color-3-light-3 > .u-audio-main-layout-wrapper:before,
.u-color-3-light-3 > .u-container-layout:before,
.u-color-3-light-3 > .u-inner-container-layout:before,
.u-color-3-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3-light-3:before,
.u-table-alt-color-3-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #fef9e6;
}
.u-input.u-color-3-light-3,
.u-field-input.u-color-3-light-3,
.u-button-style.u-color-3-light-3,
.u-button-style.u-color-3-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fef9e6 !important;
}
.u-button-style.u-color-3-light-3:hover,
.u-button-style.u-color-3-light-3[class*="u-border-"]:hover,
.u-button-style.u-color-3-light-3:focus,
.u-button-style.u-color-3-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3-light-3:active,
.u-button-style.u-button-style.u-color-3-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3-light-3.active,
.u-button-style.u-button-style.u-color-3-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3-light-3,
li.active > .u-button-style.u-button-style.u-color-3-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fceeb7 !important;
}
/* hover */
.u-hover-color-3-light-3:hover,
.u-hover-color-3-light-3[class*="u-border-"]:hover,
.u-hover-color-3-light-3:focus,
.u-hover-color-3-light-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-3-light-3:hover,
a.u-button-style.u-hover-color-3-light-3.hover,
a.u-button-style.u-hover-color-3-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3-light-3,
a.u-button-style:hover > .u-hover-color-3-light-3[class*="u-border-"],
a.u-button-style.u-hover-color-3-light-3:focus,
a.u-button-style.u-hover-color-3-light-3[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #fef9e6 !important;
}
/* active */
.u-active-color-3-light-3.u-active.u-active,
.u-active-color-3-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-3-light-3:active,
a.u-button-style.u-button-style.u-active-color-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3-light-3.active,
a.u-button-style.u-button-style.u-active-color-3-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3-light-3,
a.u-button-style.u-button-style.active > .u-active-color-3-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3-light-3,
li.active > a.u-button-style.u-button-style.u-active-color-3-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3-light-3:checked {
  color: #111111 !important;
  background-color: #fef9e6 !important;
}
a.u-link.u-hover-color-3-light-3:hover {
  color: #fef9e6 !important;
}
.u-color-3-base,
.u-body.u-color-3-base,
section.u-color-3-base:before,
.u-color-3-base > .u-audio-main-layout-wrapper:before,
.u-color-3-base > .u-container-layout:before,
.u-color-3-base > .u-inner-container-layout:before,
.u-color-3-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3-base:before,
.u-table-alt-color-3-base tr:nth-child(even) {
  color: #111111;
  background-color: #f1c50e;
}
.u-input.u-color-3-base,
.u-field-input.u-color-3-base,
.u-button-style.u-color-3-base,
.u-button-style.u-color-3-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
.u-button-style.u-color-3-base:hover,
.u-button-style.u-color-3-base[class*="u-border-"]:hover,
.u-button-style.u-color-3-base:focus,
.u-button-style.u-color-3-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3-base:active,
.u-button-style.u-button-style.u-color-3-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3-base.active,
.u-button-style.u-button-style.u-color-3-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3-base,
li.active > .u-button-style.u-button-style.u-color-3-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d9b10d !important;
}
/* hover */
.u-hover-color-3-base:hover,
.u-hover-color-3-base[class*="u-border-"]:hover,
.u-hover-color-3-base:focus,
.u-hover-color-3-base[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-3-base:hover,
a.u-button-style.u-hover-color-3-base.hover,
a.u-button-style.u-hover-color-3-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3-base,
a.u-button-style:hover > .u-hover-color-3-base[class*="u-border-"],
a.u-button-style.u-hover-color-3-base:focus,
a.u-button-style.u-hover-color-3-base[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
/* active */
.u-active-color-3-base.u-active.u-active,
.u-active-color-3-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-3-base:active,
a.u-button-style.u-button-style.u-active-color-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3-base.active,
a.u-button-style.u-button-style.u-active-color-3-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3-base,
a.u-button-style.u-button-style.active > .u-active-color-3-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3-base,
li.active > a.u-button-style.u-button-style.u-active-color-3-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3-base:checked {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
a.u-link.u-hover-color-3-base:hover {
  color: #f1c50e !important;
}
.u-color-4-dark-3,
.u-body.u-color-4-dark-3,
section.u-color-4-dark-3:before,
.u-color-4-dark-3 > .u-audio-main-layout-wrapper:before,
.u-color-4-dark-3 > .u-container-layout:before,
.u-color-4-dark-3 > .u-inner-container-layout:before,
.u-color-4-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4-dark-3:before,
.u-table-alt-color-4-dark-3 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #293332;
}
.u-input.u-color-4-dark-3,
.u-field-input.u-color-4-dark-3,
.u-button-style.u-color-4-dark-3,
.u-button-style.u-color-4-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #293332 !important;
}
.u-button-style.u-color-4-dark-3:hover,
.u-button-style.u-color-4-dark-3[class*="u-border-"]:hover,
.u-button-style.u-color-4-dark-3:focus,
.u-button-style.u-color-4-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4-dark-3:active,
.u-button-style.u-button-style.u-color-4-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4-dark-3.active,
.u-button-style.u-button-style.u-color-4-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4-dark-3,
li.active > .u-button-style.u-button-style.u-color-4-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #252e2d !important;
}
/* hover */
.u-hover-color-4-dark-3:hover,
.u-hover-color-4-dark-3[class*="u-border-"]:hover,
.u-hover-color-4-dark-3:focus,
.u-hover-color-4-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-4-dark-3:hover,
a.u-button-style.u-hover-color-4-dark-3.hover,
a.u-button-style.u-hover-color-4-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4-dark-3,
a.u-button-style:hover > .u-hover-color-4-dark-3[class*="u-border-"],
a.u-button-style.u-hover-color-4-dark-3:focus,
a.u-button-style.u-hover-color-4-dark-3[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #293332 !important;
}
/* active */
.u-active-color-4-dark-3.u-active.u-active,
.u-active-color-4-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-4-dark-3:active,
a.u-button-style.u-button-style.u-active-color-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4-dark-3.active,
a.u-button-style.u-button-style.u-active-color-4-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4-dark-3,
a.u-button-style.u-button-style.active > .u-active-color-4-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4-dark-3,
li.active > a.u-button-style.u-button-style.u-active-color-4-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4-dark-3:checked {
  color: var(--color-white) !important;
  background-color: #293332 !important;
}
a.u-link.u-hover-color-4-dark-3:hover {
  color: #293332 !important;
}
.u-color-4-dark-2,
.u-body.u-color-4-dark-2,
section.u-color-4-dark-2:before,
.u-color-4-dark-2 > .u-audio-main-layout-wrapper:before,
.u-color-4-dark-2 > .u-container-layout:before,
.u-color-4-dark-2 > .u-inner-container-layout:before,
.u-color-4-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4-dark-2:before,
.u-table-alt-color-4-dark-2 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #41807c;
}
.u-input.u-color-4-dark-2,
.u-field-input.u-color-4-dark-2,
.u-button-style.u-color-4-dark-2,
.u-button-style.u-color-4-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #41807c !important;
}
.u-button-style.u-color-4-dark-2:hover,
.u-button-style.u-color-4-dark-2[class*="u-border-"]:hover,
.u-button-style.u-color-4-dark-2:focus,
.u-button-style.u-color-4-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4-dark-2:active,
.u-button-style.u-button-style.u-color-4-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4-dark-2.active,
.u-button-style.u-button-style.u-color-4-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4-dark-2,
li.active > .u-button-style.u-button-style.u-color-4-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #3a7370 !important;
}
/* hover */
.u-hover-color-4-dark-2:hover,
.u-hover-color-4-dark-2[class*="u-border-"]:hover,
.u-hover-color-4-dark-2:focus,
.u-hover-color-4-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-4-dark-2:hover,
a.u-button-style.u-hover-color-4-dark-2.hover,
a.u-button-style.u-hover-color-4-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4-dark-2,
a.u-button-style:hover > .u-hover-color-4-dark-2[class*="u-border-"],
a.u-button-style.u-hover-color-4-dark-2:focus,
a.u-button-style.u-hover-color-4-dark-2[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #41807c !important;
}
/* active */
.u-active-color-4-dark-2.u-active.u-active,
.u-active-color-4-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-4-dark-2:active,
a.u-button-style.u-button-style.u-active-color-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4-dark-2.active,
a.u-button-style.u-button-style.u-active-color-4-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4-dark-2,
a.u-button-style.u-button-style.active > .u-active-color-4-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4-dark-2,
li.active > a.u-button-style.u-button-style.u-active-color-4-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4-dark-2:checked {
  color: var(--color-white) !important;
  background-color: #41807c !important;
}
a.u-link.u-hover-color-4-dark-2:hover {
  color: #41807c !important;
}
.u-color-4-dark-1,
.u-body.u-color-4-dark-1,
section.u-color-4-dark-1:before,
.u-color-4-dark-1 > .u-audio-main-layout-wrapper:before,
.u-color-4-dark-1 > .u-container-layout:before,
.u-color-4-dark-1 > .u-inner-container-layout:before,
.u-color-4-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4-dark-1:before,
.u-table-alt-color-4-dark-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #2cccc4;
}
.u-input.u-color-4-dark-1,
.u-field-input.u-color-4-dark-1,
.u-button-style.u-color-4-dark-1,
.u-button-style.u-color-4-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #2cccc4 !important;
}
.u-button-style.u-color-4-dark-1:hover,
.u-button-style.u-color-4-dark-1[class*="u-border-"]:hover,
.u-button-style.u-color-4-dark-1:focus,
.u-button-style.u-color-4-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4-dark-1:active,
.u-button-style.u-button-style.u-color-4-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4-dark-1.active,
.u-button-style.u-button-style.u-color-4-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4-dark-1,
li.active > .u-button-style.u-button-style.u-color-4-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #28b8b0 !important;
}
/* hover */
.u-hover-color-4-dark-1:hover,
.u-hover-color-4-dark-1[class*="u-border-"]:hover,
.u-hover-color-4-dark-1:focus,
.u-hover-color-4-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-4-dark-1:hover,
a.u-button-style.u-hover-color-4-dark-1.hover,
a.u-button-style.u-hover-color-4-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4-dark-1,
a.u-button-style:hover > .u-hover-color-4-dark-1[class*="u-border-"],
a.u-button-style.u-hover-color-4-dark-1:focus,
a.u-button-style.u-hover-color-4-dark-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #2cccc4 !important;
}
/* active */
.u-active-color-4-dark-1.u-active.u-active,
.u-active-color-4-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-4-dark-1:active,
a.u-button-style.u-button-style.u-active-color-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4-dark-1.active,
a.u-button-style.u-button-style.u-active-color-4-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4-dark-1,
a.u-button-style.u-button-style.active > .u-active-color-4-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4-dark-1,
li.active > a.u-button-style.u-button-style.u-active-color-4-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4-dark-1:checked {
  color: var(--color-white) !important;
  background-color: #2cccc4 !important;
}
a.u-link.u-hover-color-4-dark-1:hover {
  color: #2cccc4 !important;
}
.u-color-4,
.u-body.u-color-4,
section.u-color-4:before,
.u-color-4 > .u-audio-main-layout-wrapper:before,
.u-color-4 > .u-container-layout:before,
.u-color-4 > .u-inner-container-layout:before,
.u-color-4.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4:before,
.u-table-alt-color-4 tr:nth-child(even) {
  color: #111111;
  background-color: #3be8e0;
}
.u-input.u-color-4,
.u-field-input.u-color-4,
.u-button-style.u-color-4,
.u-button-style.u-color-4[class*="u-border-"] {
  color: #111111 !important;
  background-color: #3be8e0 !important;
}
.u-button-style.u-color-4:hover,
.u-button-style.u-color-4[class*="u-border-"]:hover,
.u-button-style.u-color-4:focus,
.u-button-style.u-color-4[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4:active,
.u-button-style.u-button-style.u-color-4[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4.active,
.u-button-style.u-button-style.u-color-4[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4,
li.active > .u-button-style.u-button-style.u-color-4[class*="u-border-"] {
  color: #111111 !important;
  background-color: #21e5dc !important;
}
/* hover */
.u-hover-color-4:hover,
.u-hover-color-4[class*="u-border-"]:hover,
.u-hover-color-4:focus,
.u-hover-color-4[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-4:hover,
a.u-button-style.u-hover-color-4.hover,
a.u-button-style.u-hover-color-4[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4,
a.u-button-style:hover > .u-hover-color-4[class*="u-border-"],
a.u-button-style.u-hover-color-4:focus,
a.u-button-style.u-hover-color-4[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #3be8e0 !important;
}
/* active */
.u-active-color-4.u-active.u-active,
.u-active-color-4[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-4:active,
a.u-button-style.u-button-style.u-active-color-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4.active,
a.u-button-style.u-button-style.u-active-color-4[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4,
a.u-button-style.u-button-style.active > .u-active-color-4[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4,
li.active > a.u-button-style.u-button-style.u-active-color-4[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4:checked {
  color: #111111 !important;
  background-color: #3be8e0 !important;
}
a.u-link.u-hover-color-4:hover {
  color: #3be8e0 !important;
}
.u-color-4-light-1,
.u-body.u-color-4-light-1,
section.u-color-4-light-1:before,
.u-color-4-light-1 > .u-audio-main-layout-wrapper:before,
.u-color-4-light-1 > .u-container-layout:before,
.u-color-4-light-1 > .u-inner-container-layout:before,
.u-color-4-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4-light-1:before,
.u-table-alt-color-4-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #72efe9;
}
.u-input.u-color-4-light-1,
.u-field-input.u-color-4-light-1,
.u-button-style.u-color-4-light-1,
.u-button-style.u-color-4-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #72efe9 !important;
}
.u-button-style.u-color-4-light-1:hover,
.u-button-style.u-color-4-light-1[class*="u-border-"]:hover,
.u-button-style.u-color-4-light-1:focus,
.u-button-style.u-color-4-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4-light-1:active,
.u-button-style.u-button-style.u-color-4-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4-light-1.active,
.u-button-style.u-button-style.u-color-4-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4-light-1,
li.active > .u-button-style.u-button-style.u-color-4-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #52ebe4 !important;
}
/* hover */
.u-hover-color-4-light-1:hover,
.u-hover-color-4-light-1[class*="u-border-"]:hover,
.u-hover-color-4-light-1:focus,
.u-hover-color-4-light-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-4-light-1:hover,
a.u-button-style.u-hover-color-4-light-1.hover,
a.u-button-style.u-hover-color-4-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4-light-1,
a.u-button-style:hover > .u-hover-color-4-light-1[class*="u-border-"],
a.u-button-style.u-hover-color-4-light-1:focus,
a.u-button-style.u-hover-color-4-light-1[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #72efe9 !important;
}
/* active */
.u-active-color-4-light-1.u-active.u-active,
.u-active-color-4-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-4-light-1:active,
a.u-button-style.u-button-style.u-active-color-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4-light-1.active,
a.u-button-style.u-button-style.u-active-color-4-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4-light-1,
a.u-button-style.u-button-style.active > .u-active-color-4-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4-light-1,
li.active > a.u-button-style.u-button-style.u-active-color-4-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4-light-1:checked {
  color: #111111 !important;
  background-color: #72efe9 !important;
}
a.u-link.u-hover-color-4-light-1:hover {
  color: #72efe9 !important;
}
.u-color-4-light-2,
.u-body.u-color-4-light-2,
section.u-color-4-light-2:before,
.u-color-4-light-2 > .u-audio-main-layout-wrapper:before,
.u-color-4-light-2 > .u-container-layout:before,
.u-color-4-light-2 > .u-inner-container-layout:before,
.u-color-4-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4-light-2:before,
.u-table-alt-color-4-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #adf6f2;
}
.u-input.u-color-4-light-2,
.u-field-input.u-color-4-light-2,
.u-button-style.u-color-4-light-2,
.u-button-style.u-color-4-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #adf6f2 !important;
}
.u-button-style.u-color-4-light-2:hover,
.u-button-style.u-color-4-light-2[class*="u-border-"]:hover,
.u-button-style.u-color-4-light-2:focus,
.u-button-style.u-color-4-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4-light-2:active,
.u-button-style.u-button-style.u-color-4-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4-light-2.active,
.u-button-style.u-button-style.u-color-4-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4-light-2,
li.active > .u-button-style.u-button-style.u-color-4-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #87f2ec !important;
}
/* hover */
.u-hover-color-4-light-2:hover,
.u-hover-color-4-light-2[class*="u-border-"]:hover,
.u-hover-color-4-light-2:focus,
.u-hover-color-4-light-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-4-light-2:hover,
a.u-button-style.u-hover-color-4-light-2.hover,
a.u-button-style.u-hover-color-4-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4-light-2,
a.u-button-style:hover > .u-hover-color-4-light-2[class*="u-border-"],
a.u-button-style.u-hover-color-4-light-2:focus,
a.u-button-style.u-hover-color-4-light-2[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #adf6f2 !important;
}
/* active */
.u-active-color-4-light-2.u-active.u-active,
.u-active-color-4-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-4-light-2:active,
a.u-button-style.u-button-style.u-active-color-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4-light-2.active,
a.u-button-style.u-button-style.u-active-color-4-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4-light-2,
a.u-button-style.u-button-style.active > .u-active-color-4-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4-light-2,
li.active > a.u-button-style.u-button-style.u-active-color-4-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4-light-2:checked {
  color: #111111 !important;
  background-color: #adf6f2 !important;
}
a.u-link.u-hover-color-4-light-2:hover {
  color: #adf6f2 !important;
}
.u-color-4-light-3,
.u-body.u-color-4-light-3,
section.u-color-4-light-3:before,
.u-color-4-light-3 > .u-audio-main-layout-wrapper:before,
.u-color-4-light-3 > .u-container-layout:before,
.u-color-4-light-3 > .u-inner-container-layout:before,
.u-color-4-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4-light-3:before,
.u-table-alt-color-4-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #eafdfc;
}
.u-input.u-color-4-light-3,
.u-field-input.u-color-4-light-3,
.u-button-style.u-color-4-light-3,
.u-button-style.u-color-4-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #eafdfc !important;
}
.u-button-style.u-color-4-light-3:hover,
.u-button-style.u-color-4-light-3[class*="u-border-"]:hover,
.u-button-style.u-color-4-light-3:focus,
.u-button-style.u-color-4-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4-light-3:active,
.u-button-style.u-button-style.u-color-4-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4-light-3.active,
.u-button-style.u-button-style.u-color-4-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4-light-3,
li.active > .u-button-style.u-button-style.u-color-4-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #bef9f6 !important;
}
/* hover */
.u-hover-color-4-light-3:hover,
.u-hover-color-4-light-3[class*="u-border-"]:hover,
.u-hover-color-4-light-3:focus,
.u-hover-color-4-light-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-4-light-3:hover,
a.u-button-style.u-hover-color-4-light-3.hover,
a.u-button-style.u-hover-color-4-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4-light-3,
a.u-button-style:hover > .u-hover-color-4-light-3[class*="u-border-"],
a.u-button-style.u-hover-color-4-light-3:focus,
a.u-button-style.u-hover-color-4-light-3[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #eafdfc !important;
}
/* active */
.u-active-color-4-light-3.u-active.u-active,
.u-active-color-4-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-4-light-3:active,
a.u-button-style.u-button-style.u-active-color-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4-light-3.active,
a.u-button-style.u-button-style.u-active-color-4-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4-light-3,
a.u-button-style.u-button-style.active > .u-active-color-4-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4-light-3,
li.active > a.u-button-style.u-button-style.u-active-color-4-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4-light-3:checked {
  color: #111111 !important;
  background-color: #eafdfc !important;
}
a.u-link.u-hover-color-4-light-3:hover {
  color: #eafdfc !important;
}
.u-color-4-base,
.u-body.u-color-4-base,
section.u-color-4-base:before,
.u-color-4-base > .u-audio-main-layout-wrapper:before,
.u-color-4-base > .u-container-layout:before,
.u-color-4-base > .u-inner-container-layout:before,
.u-color-4-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4-base:before,
.u-table-alt-color-4-base tr:nth-child(even) {
  color: var(--color-white);
  background-color: #2cccc4;
}
.u-input.u-color-4-base,
.u-field-input.u-color-4-base,
.u-button-style.u-color-4-base,
.u-button-style.u-color-4-base[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #2cccc4 !important;
}
.u-button-style.u-color-4-base:hover,
.u-button-style.u-color-4-base[class*="u-border-"]:hover,
.u-button-style.u-color-4-base:focus,
.u-button-style.u-color-4-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4-base:active,
.u-button-style.u-button-style.u-color-4-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4-base.active,
.u-button-style.u-button-style.u-color-4-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4-base,
li.active > .u-button-style.u-button-style.u-color-4-base[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #28b8b0 !important;
}
/* hover */
.u-hover-color-4-base:hover,
.u-hover-color-4-base[class*="u-border-"]:hover,
.u-hover-color-4-base:focus,
.u-hover-color-4-base[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-4-base:hover,
a.u-button-style.u-hover-color-4-base.hover,
a.u-button-style.u-hover-color-4-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4-base,
a.u-button-style:hover > .u-hover-color-4-base[class*="u-border-"],
a.u-button-style.u-hover-color-4-base:focus,
a.u-button-style.u-hover-color-4-base[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #2cccc4 !important;
}
/* active */
.u-active-color-4-base.u-active.u-active,
.u-active-color-4-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-4-base:active,
a.u-button-style.u-button-style.u-active-color-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4-base.active,
a.u-button-style.u-button-style.u-active-color-4-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4-base,
a.u-button-style.u-button-style.active > .u-active-color-4-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4-base,
li.active > a.u-button-style.u-button-style.u-active-color-4-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4-base:checked {
  color: var(--color-white) !important;
  background-color: #2cccc4 !important;
}
a.u-link.u-hover-color-4-base:hover {
  color: #2cccc4 !important;
}
.u-color-5-dark-3,
.u-body.u-color-5-dark-3,
section.u-color-5-dark-3:before,
.u-color-5-dark-3 > .u-audio-main-layout-wrapper:before,
.u-color-5-dark-3 > .u-container-layout:before,
.u-color-5-dark-3 > .u-inner-container-layout:before,
.u-color-5-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5-dark-3:before,
.u-table-alt-color-5-dark-3 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #292d33;
}
.u-input.u-color-5-dark-3,
.u-field-input.u-color-5-dark-3,
.u-button-style.u-color-5-dark-3,
.u-button-style.u-color-5-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #292d33 !important;
}
.u-button-style.u-color-5-dark-3:hover,
.u-button-style.u-color-5-dark-3[class*="u-border-"]:hover,
.u-button-style.u-color-5-dark-3:focus,
.u-button-style.u-color-5-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5-dark-3:active,
.u-button-style.u-button-style.u-color-5-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5-dark-3.active,
.u-button-style.u-button-style.u-color-5-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5-dark-3,
li.active > .u-button-style.u-button-style.u-color-5-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #25292e !important;
}
/* hover */
.u-hover-color-5-dark-3:hover,
.u-hover-color-5-dark-3[class*="u-border-"]:hover,
.u-hover-color-5-dark-3:focus,
.u-hover-color-5-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-5-dark-3:hover,
a.u-button-style.u-hover-color-5-dark-3.hover,
a.u-button-style.u-hover-color-5-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5-dark-3,
a.u-button-style:hover > .u-hover-color-5-dark-3[class*="u-border-"],
a.u-button-style.u-hover-color-5-dark-3:focus,
a.u-button-style.u-hover-color-5-dark-3[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #292d33 !important;
}
/* active */
.u-active-color-5-dark-3.u-active.u-active,
.u-active-color-5-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-5-dark-3:active,
a.u-button-style.u-button-style.u-active-color-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5-dark-3.active,
a.u-button-style.u-button-style.u-active-color-5-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5-dark-3,
a.u-button-style.u-button-style.active > .u-active-color-5-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5-dark-3,
li.active > a.u-button-style.u-button-style.u-active-color-5-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5-dark-3:checked {
  color: var(--color-white) !important;
  background-color: #292d33 !important;
}
a.u-link.u-hover-color-5-dark-3:hover {
  color: #292d33 !important;
}
.u-color-5-dark-2,
.u-body.u-color-5-dark-2,
section.u-color-5-dark-2:before,
.u-color-5-dark-2 > .u-audio-main-layout-wrapper:before,
.u-color-5-dark-2 > .u-container-layout:before,
.u-color-5-dark-2 > .u-inner-container-layout:before,
.u-color-5-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5-dark-2:before,
.u-table-alt-color-5-dark-2 tr:nth-child(even) {
  color: var(--color-white);
  background-color: var(--color-darkest-gray)c66;
}
.u-input.u-color-5-dark-2,
.u-field-input.u-color-5-dark-2,
.u-button-style.u-color-5-dark-2,
.u-button-style.u-color-5-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: var(--color-darkest-gray)c66 !important;
}
.u-button-style.u-color-5-dark-2:hover,
.u-button-style.u-color-5-dark-2[class*="u-border-"]:hover,
.u-button-style.u-color-5-dark-2:focus,
.u-button-style.u-color-5-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5-dark-2:active,
.u-button-style.u-button-style.u-color-5-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5-dark-2.active,
.u-button-style.u-button-style.u-color-5-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5-dark-2,
li.active > .u-button-style.u-button-style.u-color-5-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #4d535c !important;
}
/* hover */
.u-hover-color-5-dark-2:hover,
.u-hover-color-5-dark-2[class*="u-border-"]:hover,
.u-hover-color-5-dark-2:focus,
.u-hover-color-5-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-5-dark-2:hover,
a.u-button-style.u-hover-color-5-dark-2.hover,
a.u-button-style.u-hover-color-5-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5-dark-2,
a.u-button-style:hover > .u-hover-color-5-dark-2[class*="u-border-"],
a.u-button-style.u-hover-color-5-dark-2:focus,
a.u-button-style.u-hover-color-5-dark-2[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: var(--color-darkest-gray)c66 !important;
}
/* active */
.u-active-color-5-dark-2.u-active.u-active,
.u-active-color-5-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-5-dark-2:active,
a.u-button-style.u-button-style.u-active-color-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5-dark-2.active,
a.u-button-style.u-button-style.u-active-color-5-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5-dark-2,
a.u-button-style.u-button-style.active > .u-active-color-5-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5-dark-2,
li.active > a.u-button-style.u-button-style.u-active-color-5-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5-dark-2:checked {
  color: var(--color-white) !important;
  background-color: var(--color-darkest-gray)c66 !important;
}
a.u-link.u-hover-color-5-dark-2:hover {
  color: var(--color-darkest-gray)c66 !important;
}
.u-color-5-dark-1,
.u-body.u-color-5-dark-1,
section.u-color-5-dark-1:before,
.u-color-5-dark-1 > .u-audio-main-layout-wrapper:before,
.u-color-5-dark-1 > .u-container-layout:before,
.u-color-5-dark-1 > .u-inner-container-layout:before,
.u-color-5-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5-dark-1:before,
.u-table-alt-color-5-dark-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #858e99;
}
.u-input.u-color-5-dark-1,
.u-field-input.u-color-5-dark-1,
.u-button-style.u-color-5-dark-1,
.u-button-style.u-color-5-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #858e99 !important;
}
.u-button-style.u-color-5-dark-1:hover,
.u-button-style.u-color-5-dark-1[class*="u-border-"]:hover,
.u-button-style.u-color-5-dark-1:focus,
.u-button-style.u-color-5-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5-dark-1:active,
.u-button-style.u-button-style.u-color-5-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5-dark-1.active,
.u-button-style.u-button-style.u-color-5-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5-dark-1,
li.active > .u-button-style.u-button-style.u-color-5-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #75808c !important;
}
/* hover */
.u-hover-color-5-dark-1:hover,
.u-hover-color-5-dark-1[class*="u-border-"]:hover,
.u-hover-color-5-dark-1:focus,
.u-hover-color-5-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-5-dark-1:hover,
a.u-button-style.u-hover-color-5-dark-1.hover,
a.u-button-style.u-hover-color-5-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5-dark-1,
a.u-button-style:hover > .u-hover-color-5-dark-1[class*="u-border-"],
a.u-button-style.u-hover-color-5-dark-1:focus,
a.u-button-style.u-hover-color-5-dark-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #858e99 !important;
}
/* active */
.u-active-color-5-dark-1.u-active.u-active,
.u-active-color-5-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-5-dark-1:active,
a.u-button-style.u-button-style.u-active-color-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5-dark-1.active,
a.u-button-style.u-button-style.u-active-color-5-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5-dark-1,
a.u-button-style.u-button-style.active > .u-active-color-5-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5-dark-1,
li.active > a.u-button-style.u-button-style.u-active-color-5-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5-dark-1:checked {
  color: var(--color-white) !important;
  background-color: #858e99 !important;
}
a.u-link.u-hover-color-5-dark-1:hover {
  color: #858e99 !important;
}
.u-color-5,
.u-body.u-color-5,
section.u-color-5:before,
.u-color-5 > .u-audio-main-layout-wrapper:before,
.u-color-5 > .u-container-layout:before,
.u-color-5 > .u-inner-container-layout:before,
.u-color-5.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5:before,
.u-table-alt-color-5 tr:nth-child(even) {
  color: #111111;
  background-color: #b9c1cc;
}
.u-input.u-color-5,
.u-field-input.u-color-5,
.u-button-style.u-color-5,
.u-button-style.u-color-5[class*="u-border-"] {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
.u-button-style.u-color-5:hover,
.u-button-style.u-color-5[class*="u-border-"]:hover,
.u-button-style.u-color-5:focus,
.u-button-style.u-color-5[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5:active,
.u-button-style.u-button-style.u-color-5[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5.active,
.u-button-style.u-button-style.u-color-5[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5,
li.active > .u-button-style.u-button-style.u-color-5[class*="u-border-"] {
  color: #111111 !important;
  background-color: #a2adbc !important;
}
/* hover */
.u-hover-color-5:hover,
.u-hover-color-5[class*="u-border-"]:hover,
.u-hover-color-5:focus,
.u-hover-color-5[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-5:hover,
a.u-button-style.u-hover-color-5.hover,
a.u-button-style.u-hover-color-5[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5,
a.u-button-style:hover > .u-hover-color-5[class*="u-border-"],
a.u-button-style.u-hover-color-5:focus,
a.u-button-style.u-hover-color-5[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
/* active */
.u-active-color-5.u-active.u-active,
.u-active-color-5[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-5:active,
a.u-button-style.u-button-style.u-active-color-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5.active,
a.u-button-style.u-button-style.u-active-color-5[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5,
a.u-button-style.u-button-style.active > .u-active-color-5[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5,
li.active > a.u-button-style.u-button-style.u-active-color-5[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5:checked {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
a.u-link.u-hover-color-5:hover {
  color: #b9c1cc !important;
}
.u-color-5-light-1,
.u-body.u-color-5-light-1,
section.u-color-5-light-1:before,
.u-color-5-light-1 > .u-audio-main-layout-wrapper:before,
.u-color-5-light-1 > .u-container-layout:before,
.u-color-5-light-1 > .u-inner-container-layout:before,
.u-color-5-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5-light-1:before,
.u-table-alt-color-5-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #ccd3db;
}
.u-input.u-color-5-light-1,
.u-field-input.u-color-5-light-1,
.u-button-style.u-color-5-light-1,
.u-button-style.u-color-5-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #ccd3db !important;
}
.u-button-style.u-color-5-light-1:hover,
.u-button-style.u-color-5-light-1[class*="u-border-"]:hover,
.u-button-style.u-color-5-light-1:focus,
.u-button-style.u-color-5-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5-light-1:active,
.u-button-style.u-button-style.u-color-5-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5-light-1.active,
.u-button-style.u-button-style.u-color-5-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5-light-1,
li.active > .u-button-style.u-button-style.u-color-5-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #b3bec9 !important;
}
/* hover */
.u-hover-color-5-light-1:hover,
.u-hover-color-5-light-1[class*="u-border-"]:hover,
.u-hover-color-5-light-1:focus,
.u-hover-color-5-light-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-5-light-1:hover,
a.u-button-style.u-hover-color-5-light-1.hover,
a.u-button-style.u-hover-color-5-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5-light-1,
a.u-button-style:hover > .u-hover-color-5-light-1[class*="u-border-"],
a.u-button-style.u-hover-color-5-light-1:focus,
a.u-button-style.u-hover-color-5-light-1[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #ccd3db !important;
}
/* active */
.u-active-color-5-light-1.u-active.u-active,
.u-active-color-5-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-5-light-1:active,
a.u-button-style.u-button-style.u-active-color-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5-light-1.active,
a.u-button-style.u-button-style.u-active-color-5-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5-light-1,
a.u-button-style.u-button-style.active > .u-active-color-5-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5-light-1,
li.active > a.u-button-style.u-button-style.u-active-color-5-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5-light-1:checked {
  color: #111111 !important;
  background-color: #ccd3db !important;
}
a.u-link.u-hover-color-5-light-1:hover {
  color: #ccd3db !important;
}
.u-color-5-light-2,
.u-body.u-color-5-light-2,
section.u-color-5-light-2:before,
.u-color-5-light-2 > .u-audio-main-layout-wrapper:before,
.u-color-5-light-2 > .u-container-layout:before,
.u-color-5-light-2 > .u-inner-container-layout:before,
.u-color-5-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5-light-2:before,
.u-table-alt-color-5-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #e0e5eb;
}
.u-input.u-color-5-light-2,
.u-field-input.u-color-5-light-2,
.u-button-style.u-color-5-light-2,
.u-button-style.u-color-5-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #e0e5eb !important;
}
.u-button-style.u-color-5-light-2:hover,
.u-button-style.u-color-5-light-2[class*="u-border-"]:hover,
.u-button-style.u-color-5-light-2:focus,
.u-button-style.u-color-5-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5-light-2:active,
.u-button-style.u-button-style.u-color-5-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5-light-2.active,
.u-button-style.u-button-style.u-color-5-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5-light-2,
li.active > .u-button-style.u-button-style.u-color-5-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #c4ced9 !important;
}
/* hover */
.u-hover-color-5-light-2:hover,
.u-hover-color-5-light-2[class*="u-border-"]:hover,
.u-hover-color-5-light-2:focus,
.u-hover-color-5-light-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-5-light-2:hover,
a.u-button-style.u-hover-color-5-light-2.hover,
a.u-button-style.u-hover-color-5-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5-light-2,
a.u-button-style:hover > .u-hover-color-5-light-2[class*="u-border-"],
a.u-button-style.u-hover-color-5-light-2:focus,
a.u-button-style.u-hover-color-5-light-2[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #e0e5eb !important;
}
/* active */
.u-active-color-5-light-2.u-active.u-active,
.u-active-color-5-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-5-light-2:active,
a.u-button-style.u-button-style.u-active-color-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5-light-2.active,
a.u-button-style.u-button-style.u-active-color-5-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5-light-2,
a.u-button-style.u-button-style.active > .u-active-color-5-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5-light-2,
li.active > a.u-button-style.u-button-style.u-active-color-5-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5-light-2:checked {
  color: #111111 !important;
  background-color: #e0e5eb !important;
}
a.u-link.u-hover-color-5-light-2:hover {
  color: #e0e5eb !important;
}
.u-color-5-light-3,
.u-body.u-color-5-light-3,
section.u-color-5-light-3:before,
.u-color-5-light-3 > .u-audio-main-layout-wrapper:before,
.u-color-5-light-3 > .u-container-layout:before,
.u-color-5-light-3 > .u-inner-container-layout:before,
.u-color-5-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5-light-3:before,
.u-table-alt-color-5-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #f5f7fa;
}
.u-input.u-color-5-light-3,
.u-field-input.u-color-5-light-3,
.u-button-style.u-color-5-light-3,
.u-button-style.u-color-5-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f5f7fa !important;
}
.u-button-style.u-color-5-light-3:hover,
.u-button-style.u-color-5-light-3[class*="u-border-"]:hover,
.u-button-style.u-color-5-light-3:focus,
.u-button-style.u-color-5-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5-light-3:active,
.u-button-style.u-button-style.u-color-5-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5-light-3.active,
.u-button-style.u-button-style.u-color-5-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5-light-3,
li.active > .u-button-style.u-button-style.u-color-5-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d4dde9 !important;
}
/* hover */
.u-hover-color-5-light-3:hover,
.u-hover-color-5-light-3[class*="u-border-"]:hover,
.u-hover-color-5-light-3:focus,
.u-hover-color-5-light-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-5-light-3:hover,
a.u-button-style.u-hover-color-5-light-3.hover,
a.u-button-style.u-hover-color-5-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5-light-3,
a.u-button-style:hover > .u-hover-color-5-light-3[class*="u-border-"],
a.u-button-style.u-hover-color-5-light-3:focus,
a.u-button-style.u-hover-color-5-light-3[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f5f7fa !important;
}
/* active */
.u-active-color-5-light-3.u-active.u-active,
.u-active-color-5-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-5-light-3:active,
a.u-button-style.u-button-style.u-active-color-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5-light-3.active,
a.u-button-style.u-button-style.u-active-color-5-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5-light-3,
a.u-button-style.u-button-style.active > .u-active-color-5-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5-light-3,
li.active > a.u-button-style.u-button-style.u-active-color-5-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5-light-3:checked {
  color: #111111 !important;
  background-color: #f5f7fa !important;
}
a.u-link.u-hover-color-5-light-3:hover {
  color: #f5f7fa !important;
}
.u-color-5-base,
.u-body.u-color-5-base,
section.u-color-5-base:before,
.u-color-5-base > .u-audio-main-layout-wrapper:before,
.u-color-5-base > .u-container-layout:before,
.u-color-5-base > .u-inner-container-layout:before,
.u-color-5-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5-base:before,
.u-table-alt-color-5-base tr:nth-child(even) {
  color: #111111;
  background-color: #b9c1cc;
}
.u-input.u-color-5-base,
.u-field-input.u-color-5-base,
.u-button-style.u-color-5-base,
.u-button-style.u-color-5-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
.u-button-style.u-color-5-base:hover,
.u-button-style.u-color-5-base[class*="u-border-"]:hover,
.u-button-style.u-color-5-base:focus,
.u-button-style.u-color-5-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5-base:active,
.u-button-style.u-button-style.u-color-5-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5-base.active,
.u-button-style.u-button-style.u-color-5-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5-base,
li.active > .u-button-style.u-button-style.u-color-5-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #a2adbc !important;
}
/* hover */
.u-hover-color-5-base:hover,
.u-hover-color-5-base[class*="u-border-"]:hover,
.u-hover-color-5-base:focus,
.u-hover-color-5-base[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-5-base:hover,
a.u-button-style.u-hover-color-5-base.hover,
a.u-button-style.u-hover-color-5-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5-base,
a.u-button-style:hover > .u-hover-color-5-base[class*="u-border-"],
a.u-button-style.u-hover-color-5-base:focus,
a.u-button-style.u-hover-color-5-base[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
/* active */
.u-active-color-5-base.u-active.u-active,
.u-active-color-5-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-5-base:active,
a.u-button-style.u-button-style.u-active-color-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5-base.active,
a.u-button-style.u-button-style.u-active-color-5-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5-base,
a.u-button-style.u-button-style.active > .u-active-color-5-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5-base,
li.active > a.u-button-style.u-button-style.u-active-color-5-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5-base:checked {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
a.u-link.u-hover-color-5-base:hover {
  color: #b9c1cc !important;
}
.u-palette-1-dark-3,
.u-body.u-palette-1-dark-3,
section.u-palette-1-dark-3:before,
.u-palette-1-dark-3 > .u-audio-main-layout-wrapper:before,
.u-palette-1-dark-3 > .u-container-layout:before,
.u-palette-1-dark-3 > .u-inner-container-layout:before,
.u-palette-1-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1-dark-3:before,
.u-table-alt-palette-1-dark-3 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #2a3329;
}
.u-input.u-palette-1-dark-3,
.u-field-input.u-palette-1-dark-3,
.u-button-style.u-palette-1-dark-3,
.u-button-style.u-palette-1-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #2a3329 !important;
}
.u-button-style.u-palette-1-dark-3:hover,
.u-button-style.u-palette-1-dark-3[class*="u-border-"]:hover,
.u-button-style.u-palette-1-dark-3:focus,
.u-button-style.u-palette-1-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1-dark-3:active,
.u-button-style.u-button-style.u-palette-1-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1-dark-3.active,
.u-button-style.u-button-style.u-palette-1-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1-dark-3,
li.active > .u-button-style.u-button-style.u-palette-1-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #262e25 !important;
}
/* hover */
.u-hover-palette-1-dark-3:hover,
.u-hover-palette-1-dark-3[class*="u-border-"]:hover,
.u-hover-palette-1-dark-3:focus,
.u-hover-palette-1-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-1-dark-3:hover,
a.u-button-style.u-hover-palette-1-dark-3.hover,
a.u-button-style.u-hover-palette-1-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1-dark-3,
a.u-button-style:hover > .u-hover-palette-1-dark-3[class*="u-border-"],
a.u-button-style.u-hover-palette-1-dark-3:focus,
a.u-button-style.u-hover-palette-1-dark-3[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #2a3329 !important;
}
/* active */
.u-active-palette-1-dark-3.u-active.u-active,
.u-active-palette-1-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-1-dark-3:active,
a.u-button-style.u-button-style.u-active-palette-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1-dark-3.active,
a.u-button-style.u-button-style.u-active-palette-1-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1-dark-3,
a.u-button-style.u-button-style.active > .u-active-palette-1-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1-dark-3,
li.active > a.u-button-style.u-button-style.u-active-palette-1-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1-dark-3:checked {
  color: var(--color-white) !important;
  background-color: #2a3329 !important;
}
a.u-link.u-hover-palette-1-dark-3:hover {
  color: #2a3329 !important;
}
.u-palette-1-dark-2,
.u-body.u-palette-1-dark-2,
section.u-palette-1-dark-2:before,
.u-palette-1-dark-2 > .u-audio-main-layout-wrapper:before,
.u-palette-1-dark-2 > .u-container-layout:before,
.u-palette-1-dark-2 > .u-inner-container-layout:before,
.u-palette-1-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1-dark-2:before,
.u-table-alt-palette-1-dark-2 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #485a46;
}
.u-input.u-palette-1-dark-2,
.u-field-input.u-palette-1-dark-2,
.u-button-style.u-palette-1-dark-2,
.u-button-style.u-palette-1-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #485a46 !important;
}
.u-button-style.u-palette-1-dark-2:hover,
.u-button-style.u-palette-1-dark-2[class*="u-border-"]:hover,
.u-button-style.u-palette-1-dark-2:focus,
.u-button-style.u-palette-1-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1-dark-2:active,
.u-button-style.u-button-style.u-palette-1-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1-dark-2.active,
.u-button-style.u-button-style.u-palette-1-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1-dark-2,
li.active > .u-button-style.u-button-style.u-palette-1-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #41513f !important;
}
/* hover */
.u-hover-palette-1-dark-2:hover,
.u-hover-palette-1-dark-2[class*="u-border-"]:hover,
.u-hover-palette-1-dark-2:focus,
.u-hover-palette-1-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-1-dark-2:hover,
a.u-button-style.u-hover-palette-1-dark-2.hover,
a.u-button-style.u-hover-palette-1-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1-dark-2,
a.u-button-style:hover > .u-hover-palette-1-dark-2[class*="u-border-"],
a.u-button-style.u-hover-palette-1-dark-2:focus,
a.u-button-style.u-hover-palette-1-dark-2[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #485a46 !important;
}
/* active */
.u-active-palette-1-dark-2.u-active.u-active,
.u-active-palette-1-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-1-dark-2:active,
a.u-button-style.u-button-style.u-active-palette-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1-dark-2.active,
a.u-button-style.u-button-style.u-active-palette-1-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1-dark-2,
a.u-button-style.u-button-style.active > .u-active-palette-1-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1-dark-2,
li.active > a.u-button-style.u-button-style.u-active-palette-1-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1-dark-2:checked {
  color: var(--color-white) !important;
  background-color: #485a46 !important;
}
a.u-link.u-hover-palette-1-dark-2:hover {
  color: #485a46 !important;
}
.u-palette-1-dark-1,
.u-body.u-palette-1-dark-1,
section.u-palette-1-dark-1:before,
.u-palette-1-dark-1 > .u-audio-main-layout-wrapper:before,
.u-palette-1-dark-1 > .u-container-layout:before,
.u-palette-1-dark-1 > .u-inner-container-layout:before,
.u-palette-1-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1-dark-1:before,
.u-table-alt-palette-1-dark-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #658161;
}
.u-input.u-palette-1-dark-1,
.u-field-input.u-palette-1-dark-1,
.u-button-style.u-palette-1-dark-1,
.u-button-style.u-palette-1-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #658161 !important;
}
.u-button-style.u-palette-1-dark-1:hover,
.u-button-style.u-palette-1-dark-1[class*="u-border-"]:hover,
.u-button-style.u-palette-1-dark-1:focus,
.u-button-style.u-palette-1-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1-dark-1:active,
.u-button-style.u-button-style.u-palette-1-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1-dark-1.active,
.u-button-style.u-button-style.u-palette-1-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1-dark-1,
li.active > .u-button-style.u-button-style.u-palette-1-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #5b7457 !important;
}
/* hover */
.u-hover-palette-1-dark-1:hover,
.u-hover-palette-1-dark-1[class*="u-border-"]:hover,
.u-hover-palette-1-dark-1:focus,
.u-hover-palette-1-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-1-dark-1:hover,
a.u-button-style.u-hover-palette-1-dark-1.hover,
a.u-button-style.u-hover-palette-1-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1-dark-1,
a.u-button-style:hover > .u-hover-palette-1-dark-1[class*="u-border-"],
a.u-button-style.u-hover-palette-1-dark-1:focus,
a.u-button-style.u-hover-palette-1-dark-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #658161 !important;
}
/* active */
.u-active-palette-1-dark-1.u-active.u-active,
.u-active-palette-1-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-1-dark-1:active,
a.u-button-style.u-button-style.u-active-palette-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1-dark-1.active,
a.u-button-style.u-button-style.u-active-palette-1-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1-dark-1,
a.u-button-style.u-button-style.active > .u-active-palette-1-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1-dark-1,
li.active > a.u-button-style.u-button-style.u-active-palette-1-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1-dark-1:checked {
  color: var(--color-white) !important;
  background-color: #658161 !important;
}
a.u-link.u-hover-palette-1-dark-1:hover {
  color: #658161 !important;
}
.u-palette-1,
.u-body.u-palette-1,
section.u-palette-1:before,
.u-palette-1 > .u-audio-main-layout-wrapper:before,
.u-palette-1 > .u-container-layout:before,
.u-palette-1 > .u-inner-container-layout:before,
.u-palette-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1:before,
.u-table-alt-palette-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #9ab596;
}
.u-input.u-palette-1,
.u-field-input.u-palette-1,
.u-button-style.u-palette-1,
.u-button-style.u-palette-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #9ab596 !important;
}
.u-button-style.u-palette-1:hover,
.u-button-style.u-palette-1[class*="u-border-"]:hover,
.u-button-style.u-palette-1:focus,
.u-button-style.u-palette-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1:active,
.u-button-style.u-button-style.u-palette-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1.active,
.u-button-style.u-button-style.u-palette-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1,
li.active > .u-button-style.u-button-style.u-palette-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #87a783 !important;
}
/* hover */
.u-hover-palette-1:hover,
.u-hover-palette-1[class*="u-border-"]:hover,
.u-hover-palette-1:focus,
.u-hover-palette-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-1:hover,
a.u-button-style.u-hover-palette-1.hover,
a.u-button-style.u-hover-palette-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1,
a.u-button-style:hover > .u-hover-palette-1[class*="u-border-"],
a.u-button-style.u-hover-palette-1:focus,
a.u-button-style.u-hover-palette-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #9ab596 !important;
}
/* active */
.u-active-palette-1.u-active.u-active,
.u-active-palette-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-1:active,
a.u-button-style.u-button-style.u-active-palette-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1.active,
a.u-button-style.u-button-style.u-active-palette-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1,
a.u-button-style.u-button-style.active > .u-active-palette-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1,
li.active > a.u-button-style.u-button-style.u-active-palette-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1:checked {
  color: var(--color-white) !important;
  background-color: #9ab596 !important;
}
a.u-link.u-hover-palette-1:hover {
  color: #9ab596 !important;
}
.u-palette-1-light-1,
.u-body.u-palette-1-light-1,
section.u-palette-1-light-1:before,
.u-palette-1-light-1 > .u-audio-main-layout-wrapper:before,
.u-palette-1-light-1 > .u-container-layout:before,
.u-palette-1-light-1 > .u-inner-container-layout:before,
.u-palette-1-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1-light-1:before,
.u-table-alt-palette-1-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #b6ccb2;
}
.u-input.u-palette-1-light-1,
.u-field-input.u-palette-1-light-1,
.u-button-style.u-palette-1-light-1,
.u-button-style.u-palette-1-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #b6ccb2 !important;
}
.u-button-style.u-palette-1-light-1:hover,
.u-button-style.u-palette-1-light-1[class*="u-border-"]:hover,
.u-button-style.u-palette-1-light-1:focus,
.u-button-style.u-palette-1-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1-light-1:active,
.u-button-style.u-button-style.u-palette-1-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1-light-1.active,
.u-button-style.u-button-style.u-palette-1-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1-light-1,
li.active > .u-button-style.u-button-style.u-palette-1-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #a0bd9b !important;
}
/* hover */
.u-hover-palette-1-light-1:hover,
.u-hover-palette-1-light-1[class*="u-border-"]:hover,
.u-hover-palette-1-light-1:focus,
.u-hover-palette-1-light-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-1-light-1:hover,
a.u-button-style.u-hover-palette-1-light-1.hover,
a.u-button-style.u-hover-palette-1-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1-light-1,
a.u-button-style:hover > .u-hover-palette-1-light-1[class*="u-border-"],
a.u-button-style.u-hover-palette-1-light-1:focus,
a.u-button-style.u-hover-palette-1-light-1[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #b6ccb2 !important;
}
/* active */
.u-active-palette-1-light-1.u-active.u-active,
.u-active-palette-1-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-1-light-1:active,
a.u-button-style.u-button-style.u-active-palette-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1-light-1.active,
a.u-button-style.u-button-style.u-active-palette-1-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1-light-1,
a.u-button-style.u-button-style.active > .u-active-palette-1-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1-light-1,
li.active > a.u-button-style.u-button-style.u-active-palette-1-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1-light-1:checked {
  color: #111111 !important;
  background-color: #b6ccb2 !important;
}
a.u-link.u-hover-palette-1-light-1:hover {
  color: #b6ccb2 !important;
}
.u-palette-1-light-2,
.u-body.u-palette-1-light-2,
section.u-palette-1-light-2:before,
.u-palette-1-light-2 > .u-audio-main-layout-wrapper:before,
.u-palette-1-light-2 > .u-container-layout:before,
.u-palette-1-light-2 > .u-inner-container-layout:before,
.u-palette-1-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1-light-2:before,
.u-table-alt-palette-1-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #d4e2d2;
}
.u-input.u-palette-1-light-2,
.u-field-input.u-palette-1-light-2,
.u-button-style.u-palette-1-light-2,
.u-button-style.u-palette-1-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d4e2d2 !important;
}
.u-button-style.u-palette-1-light-2:hover,
.u-button-style.u-palette-1-light-2[class*="u-border-"]:hover,
.u-button-style.u-palette-1-light-2:focus,
.u-button-style.u-palette-1-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1-light-2:active,
.u-button-style.u-button-style.u-palette-1-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1-light-2.active,
.u-button-style.u-button-style.u-palette-1-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1-light-2,
li.active > .u-button-style.u-button-style.u-palette-1-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #bbd1b7 !important;
}
/* hover */
.u-hover-palette-1-light-2:hover,
.u-hover-palette-1-light-2[class*="u-border-"]:hover,
.u-hover-palette-1-light-2:focus,
.u-hover-palette-1-light-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-1-light-2:hover,
a.u-button-style.u-hover-palette-1-light-2.hover,
a.u-button-style.u-hover-palette-1-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1-light-2,
a.u-button-style:hover > .u-hover-palette-1-light-2[class*="u-border-"],
a.u-button-style.u-hover-palette-1-light-2:focus,
a.u-button-style.u-hover-palette-1-light-2[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #d4e2d2 !important;
}
/* active */
.u-active-palette-1-light-2.u-active.u-active,
.u-active-palette-1-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-1-light-2:active,
a.u-button-style.u-button-style.u-active-palette-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1-light-2.active,
a.u-button-style.u-button-style.u-active-palette-1-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1-light-2,
a.u-button-style.u-button-style.active > .u-active-palette-1-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1-light-2,
li.active > a.u-button-style.u-button-style.u-active-palette-1-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1-light-2:checked {
  color: #111111 !important;
  background-color: #d4e2d2 !important;
}
a.u-link.u-hover-palette-1-light-2:hover {
  color: #d4e2d2 !important;
}
.u-palette-1-light-3,
.u-body.u-palette-1-light-3,
section.u-palette-1-light-3:before,
.u-palette-1-light-3 > .u-audio-main-layout-wrapper:before,
.u-palette-1-light-3 > .u-container-layout:before,
.u-palette-1-light-3 > .u-inner-container-layout:before,
.u-palette-1-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1-light-3:before,
.u-table-alt-palette-1-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #f4f8f3;
}
.u-input.u-palette-1-light-3,
.u-field-input.u-palette-1-light-3,
.u-button-style.u-palette-1-light-3,
.u-button-style.u-palette-1-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f4f8f3 !important;
}
.u-button-style.u-palette-1-light-3:hover,
.u-button-style.u-palette-1-light-3[class*="u-border-"]:hover,
.u-button-style.u-palette-1-light-3:focus,
.u-button-style.u-palette-1-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1-light-3:active,
.u-button-style.u-button-style.u-palette-1-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1-light-3.active,
.u-button-style.u-button-style.u-palette-1-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1-light-3,
li.active > .u-button-style.u-button-style.u-palette-1-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d8e6d4 !important;
}
/* hover */
.u-hover-palette-1-light-3:hover,
.u-hover-palette-1-light-3[class*="u-border-"]:hover,
.u-hover-palette-1-light-3:focus,
.u-hover-palette-1-light-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-1-light-3:hover,
a.u-button-style.u-hover-palette-1-light-3.hover,
a.u-button-style.u-hover-palette-1-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1-light-3,
a.u-button-style:hover > .u-hover-palette-1-light-3[class*="u-border-"],
a.u-button-style.u-hover-palette-1-light-3:focus,
a.u-button-style.u-hover-palette-1-light-3[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f4f8f3 !important;
}
/* active */
.u-active-palette-1-light-3.u-active.u-active,
.u-active-palette-1-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-1-light-3:active,
a.u-button-style.u-button-style.u-active-palette-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1-light-3.active,
a.u-button-style.u-button-style.u-active-palette-1-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1-light-3,
a.u-button-style.u-button-style.active > .u-active-palette-1-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1-light-3,
li.active > a.u-button-style.u-button-style.u-active-palette-1-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1-light-3:checked {
  color: #111111 !important;
  background-color: #f4f8f3 !important;
}
a.u-link.u-hover-palette-1-light-3:hover {
  color: #f4f8f3 !important;
}
.u-palette-1-base,
.u-body.u-palette-1-base,
section.u-palette-1-base:before,
.u-palette-1-base > .u-audio-main-layout-wrapper:before,
.u-palette-1-base > .u-container-layout:before,
.u-palette-1-base > .u-inner-container-layout:before,
.u-palette-1-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1-base:before,
.u-table-alt-palette-1-base tr:nth-child(even) {
  color: var(--color-white);
  background-color: #658161;
}
.u-input.u-palette-1-base,
.u-field-input.u-palette-1-base,
.u-button-style.u-palette-1-base,
.u-button-style.u-palette-1-base[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #658161 !important;
}
.u-button-style.u-palette-1-base:hover,
.u-button-style.u-palette-1-base[class*="u-border-"]:hover,
.u-button-style.u-palette-1-base:focus,
.u-button-style.u-palette-1-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1-base:active,
.u-button-style.u-button-style.u-palette-1-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1-base.active,
.u-button-style.u-button-style.u-palette-1-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1-base,
li.active > .u-button-style.u-button-style.u-palette-1-base[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #5b7457 !important;
}
/* hover */
.u-hover-palette-1-base:hover,
.u-hover-palette-1-base[class*="u-border-"]:hover,
.u-hover-palette-1-base:focus,
.u-hover-palette-1-base[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-1-base:hover,
a.u-button-style.u-hover-palette-1-base.hover,
a.u-button-style.u-hover-palette-1-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1-base,
a.u-button-style:hover > .u-hover-palette-1-base[class*="u-border-"],
a.u-button-style.u-hover-palette-1-base:focus,
a.u-button-style.u-hover-palette-1-base[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #658161 !important;
}
/* active */
.u-active-palette-1-base.u-active.u-active,
.u-active-palette-1-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-1-base:active,
a.u-button-style.u-button-style.u-active-palette-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1-base.active,
a.u-button-style.u-button-style.u-active-palette-1-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1-base,
a.u-button-style.u-button-style.active > .u-active-palette-1-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1-base,
li.active > a.u-button-style.u-button-style.u-active-palette-1-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1-base:checked {
  color: var(--color-white) !important;
  background-color: #658161 !important;
}
a.u-link.u-hover-palette-1-base:hover {
  color: #658161 !important;
}
.u-palette-2-dark-3,
.u-body.u-palette-2-dark-3,
section.u-palette-2-dark-3:before,
.u-palette-2-dark-3 > .u-audio-main-layout-wrapper:before,
.u-palette-2-dark-3 > .u-container-layout:before,
.u-palette-2-dark-3 > .u-inner-container-layout:before,
.u-palette-2-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2-dark-3:before,
.u-table-alt-palette-2-dark-3 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #332929;
}
.u-input.u-palette-2-dark-3,
.u-field-input.u-palette-2-dark-3,
.u-button-style.u-palette-2-dark-3,
.u-button-style.u-palette-2-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #332929 !important;
}
.u-button-style.u-palette-2-dark-3:hover,
.u-button-style.u-palette-2-dark-3[class*="u-border-"]:hover,
.u-button-style.u-palette-2-dark-3:focus,
.u-button-style.u-palette-2-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2-dark-3:active,
.u-button-style.u-button-style.u-palette-2-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2-dark-3.active,
.u-button-style.u-button-style.u-palette-2-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2-dark-3,
li.active > .u-button-style.u-button-style.u-palette-2-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #2e2525 !important;
}
/* hover */
.u-hover-palette-2-dark-3:hover,
.u-hover-palette-2-dark-3[class*="u-border-"]:hover,
.u-hover-palette-2-dark-3:focus,
.u-hover-palette-2-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-2-dark-3:hover,
a.u-button-style.u-hover-palette-2-dark-3.hover,
a.u-button-style.u-hover-palette-2-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2-dark-3,
a.u-button-style:hover > .u-hover-palette-2-dark-3[class*="u-border-"],
a.u-button-style.u-hover-palette-2-dark-3:focus,
a.u-button-style.u-hover-palette-2-dark-3[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #332929 !important;
}
/* active */
.u-active-palette-2-dark-3.u-active.u-active,
.u-active-palette-2-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-2-dark-3:active,
a.u-button-style.u-button-style.u-active-palette-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-dark-3.active,
a.u-button-style.u-button-style.u-active-palette-2-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-dark-3,
a.u-button-style.u-button-style.active > .u-active-palette-2-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-dark-3,
li.active > a.u-button-style.u-button-style.u-active-palette-2-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2-dark-3:checked {
  color: var(--color-white) !important;
  background-color: #332929 !important;
}
a.u-link.u-hover-palette-2-dark-3:hover {
  color: #332929 !important;
}
.u-palette-2-dark-2,
.u-body.u-palette-2-dark-2,
section.u-palette-2-dark-2:before,
.u-palette-2-dark-2 > .u-audio-main-layout-wrapper:before,
.u-palette-2-dark-2 > .u-container-layout:before,
.u-palette-2-dark-2 > .u-inner-container-layout:before,
.u-palette-2-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2-dark-2:before,
.u-table-alt-palette-2-dark-2 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #6b4748;
}
.u-input.u-palette-2-dark-2,
.u-field-input.u-palette-2-dark-2,
.u-button-style.u-palette-2-dark-2,
.u-button-style.u-palette-2-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #6b4748 !important;
}
.u-button-style.u-palette-2-dark-2:hover,
.u-button-style.u-palette-2-dark-2[class*="u-border-"]:hover,
.u-button-style.u-palette-2-dark-2:focus,
.u-button-style.u-palette-2-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2-dark-2:active,
.u-button-style.u-button-style.u-palette-2-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2-dark-2.active,
.u-button-style.u-button-style.u-palette-2-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2-dark-2,
li.active > .u-button-style.u-button-style.u-palette-2-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #604041 !important;
}
/* hover */
.u-hover-palette-2-dark-2:hover,
.u-hover-palette-2-dark-2[class*="u-border-"]:hover,
.u-hover-palette-2-dark-2:focus,
.u-hover-palette-2-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-2-dark-2:hover,
a.u-button-style.u-hover-palette-2-dark-2.hover,
a.u-button-style.u-hover-palette-2-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2-dark-2,
a.u-button-style:hover > .u-hover-palette-2-dark-2[class*="u-border-"],
a.u-button-style.u-hover-palette-2-dark-2:focus,
a.u-button-style.u-hover-palette-2-dark-2[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #6b4748 !important;
}
/* active */
.u-active-palette-2-dark-2.u-active.u-active,
.u-active-palette-2-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-2-dark-2:active,
a.u-button-style.u-button-style.u-active-palette-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-dark-2.active,
a.u-button-style.u-button-style.u-active-palette-2-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-dark-2,
a.u-button-style.u-button-style.active > .u-active-palette-2-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-dark-2,
li.active > a.u-button-style.u-button-style.u-active-palette-2-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2-dark-2:checked {
  color: var(--color-white) !important;
  background-color: #6b4748 !important;
}
a.u-link.u-hover-palette-2-dark-2:hover {
  color: #6b4748 !important;
}
.u-palette-2-dark-1,
.u-body.u-palette-2-dark-1,
section.u-palette-2-dark-1:before,
.u-palette-2-dark-1 > .u-audio-main-layout-wrapper:before,
.u-palette-2-dark-1 > .u-container-layout:before,
.u-palette-2-dark-1 > .u-inner-container-layout:before,
.u-palette-2-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2-dark-1:before,
.u-table-alt-palette-2-dark-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #a35559;
}
.u-input.u-palette-2-dark-1,
.u-field-input.u-palette-2-dark-1,
.u-button-style.u-palette-2-dark-1,
.u-button-style.u-palette-2-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #a35559 !important;
}
.u-button-style.u-palette-2-dark-1:hover,
.u-button-style.u-palette-2-dark-1[class*="u-border-"]:hover,
.u-button-style.u-palette-2-dark-1:focus,
.u-button-style.u-palette-2-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2-dark-1:active,
.u-button-style.u-button-style.u-palette-2-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2-dark-1.active,
.u-button-style.u-button-style.u-palette-2-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2-dark-1,
li.active > .u-button-style.u-button-style.u-palette-2-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #934c50 !important;
}
/* hover */
.u-hover-palette-2-dark-1:hover,
.u-hover-palette-2-dark-1[class*="u-border-"]:hover,
.u-hover-palette-2-dark-1:focus,
.u-hover-palette-2-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-2-dark-1:hover,
a.u-button-style.u-hover-palette-2-dark-1.hover,
a.u-button-style.u-hover-palette-2-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2-dark-1,
a.u-button-style:hover > .u-hover-palette-2-dark-1[class*="u-border-"],
a.u-button-style.u-hover-palette-2-dark-1:focus,
a.u-button-style.u-hover-palette-2-dark-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #a35559 !important;
}
/* active */
.u-active-palette-2-dark-1.u-active.u-active,
.u-active-palette-2-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-2-dark-1:active,
a.u-button-style.u-button-style.u-active-palette-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-dark-1.active,
a.u-button-style.u-button-style.u-active-palette-2-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-dark-1,
a.u-button-style.u-button-style.active > .u-active-palette-2-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-dark-1,
li.active > a.u-button-style.u-button-style.u-active-palette-2-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2-dark-1:checked {
  color: var(--color-white) !important;
  background-color: #a35559 !important;
}
a.u-link.u-hover-palette-2-dark-1:hover {
  color: #a35559 !important;
}
.u-palette-2,
.u-body.u-palette-2,
section.u-palette-2:before,
.u-palette-2 > .u-audio-main-layout-wrapper:before,
.u-palette-2 > .u-container-layout:before,
.u-palette-2 > .u-inner-container-layout:before,
.u-palette-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2:before,
.u-table-alt-palette-2 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #db545a;
}
.u-input.u-palette-2,
.u-field-input.u-palette-2,
.u-button-style.u-palette-2,
.u-button-style.u-palette-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #db545a !important;
}
.u-button-style.u-palette-2:hover,
.u-button-style.u-palette-2[class*="u-border-"]:hover,
.u-button-style.u-palette-2:focus,
.u-button-style.u-palette-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2:active,
.u-button-style.u-button-style.u-palette-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2.active,
.u-button-style.u-button-style.u-palette-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2,
li.active > .u-button-style.u-button-style.u-palette-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #d63b42 !important;
}
/* hover */
.u-hover-palette-2:hover,
.u-hover-palette-2[class*="u-border-"]:hover,
.u-hover-palette-2:focus,
.u-hover-palette-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-2:hover,
a.u-button-style.u-hover-palette-2.hover,
a.u-button-style.u-hover-palette-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2,
a.u-button-style:hover > .u-hover-palette-2[class*="u-border-"],
a.u-button-style.u-hover-palette-2:focus,
a.u-button-style.u-hover-palette-2[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #db545a !important;
}
/* active */
.u-active-palette-2.u-active.u-active,
.u-active-palette-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-2:active,
a.u-button-style.u-button-style.u-active-palette-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2.active,
a.u-button-style.u-button-style.u-active-palette-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2,
a.u-button-style.u-button-style.active > .u-active-palette-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2,
li.active > a.u-button-style.u-button-style.u-active-palette-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2:checked {
  color: var(--color-white) !important;
  background-color: #db545a !important;
}
a.u-link.u-hover-palette-2:hover {
  color: #db545a !important;
}
.u-palette-2-light-1,
.u-body.u-palette-2-light-1,
section.u-palette-2-light-1:before,
.u-palette-2-light-1 > .u-audio-main-layout-wrapper:before,
.u-palette-2-light-1 > .u-container-layout:before,
.u-palette-2-light-1 > .u-inner-container-layout:before,
.u-palette-2-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2-light-1:before,
.u-table-alt-palette-2-light-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #e68387;
}
.u-input.u-palette-2-light-1,
.u-field-input.u-palette-2-light-1,
.u-button-style.u-palette-2-light-1,
.u-button-style.u-palette-2-light-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #e68387 !important;
}
.u-button-style.u-palette-2-light-1:hover,
.u-button-style.u-palette-2-light-1[class*="u-border-"]:hover,
.u-button-style.u-palette-2-light-1:focus,
.u-button-style.u-palette-2-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2-light-1:active,
.u-button-style.u-button-style.u-palette-2-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2-light-1.active,
.u-button-style.u-button-style.u-palette-2-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2-light-1,
li.active > .u-button-style.u-button-style.u-palette-2-light-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #e0656a !important;
}
/* hover */
.u-hover-palette-2-light-1:hover,
.u-hover-palette-2-light-1[class*="u-border-"]:hover,
.u-hover-palette-2-light-1:focus,
.u-hover-palette-2-light-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-2-light-1:hover,
a.u-button-style.u-hover-palette-2-light-1.hover,
a.u-button-style.u-hover-palette-2-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2-light-1,
a.u-button-style:hover > .u-hover-palette-2-light-1[class*="u-border-"],
a.u-button-style.u-hover-palette-2-light-1:focus,
a.u-button-style.u-hover-palette-2-light-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #e68387 !important;
}
/* active */
.u-active-palette-2-light-1.u-active.u-active,
.u-active-palette-2-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-2-light-1:active,
a.u-button-style.u-button-style.u-active-palette-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-light-1.active,
a.u-button-style.u-button-style.u-active-palette-2-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-light-1,
a.u-button-style.u-button-style.active > .u-active-palette-2-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-light-1,
li.active > a.u-button-style.u-button-style.u-active-palette-2-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2-light-1:checked {
  color: var(--color-white) !important;
  background-color: #e68387 !important;
}
a.u-link.u-hover-palette-2-light-1:hover {
  color: #e68387 !important;
}
.u-palette-2-light-2,
.u-body.u-palette-2-light-2,
section.u-palette-2-light-2:before,
.u-palette-2-light-2 > .u-audio-main-layout-wrapper:before,
.u-palette-2-light-2 > .u-container-layout:before,
.u-palette-2-light-2 > .u-inner-container-layout:before,
.u-palette-2-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2-light-2:before,
.u-table-alt-palette-2-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #f1b5b8;
}
.u-input.u-palette-2-light-2,
.u-field-input.u-palette-2-light-2,
.u-button-style.u-palette-2-light-2,
.u-button-style.u-palette-2-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f1b5b8 !important;
}
.u-button-style.u-palette-2-light-2:hover,
.u-button-style.u-palette-2-light-2[class*="u-border-"]:hover,
.u-button-style.u-palette-2-light-2:focus,
.u-button-style.u-palette-2-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2-light-2:active,
.u-button-style.u-button-style.u-palette-2-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2-light-2.active,
.u-button-style.u-button-style.u-palette-2-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2-light-2,
li.active > .u-button-style.u-button-style.u-palette-2-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #ea9296 !important;
}
/* hover */
.u-hover-palette-2-light-2:hover,
.u-hover-palette-2-light-2[class*="u-border-"]:hover,
.u-hover-palette-2-light-2:focus,
.u-hover-palette-2-light-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-2-light-2:hover,
a.u-button-style.u-hover-palette-2-light-2.hover,
a.u-button-style.u-hover-palette-2-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2-light-2,
a.u-button-style:hover > .u-hover-palette-2-light-2[class*="u-border-"],
a.u-button-style.u-hover-palette-2-light-2:focus,
a.u-button-style.u-hover-palette-2-light-2[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f1b5b8 !important;
}
/* active */
.u-active-palette-2-light-2.u-active.u-active,
.u-active-palette-2-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-2-light-2:active,
a.u-button-style.u-button-style.u-active-palette-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-light-2.active,
a.u-button-style.u-button-style.u-active-palette-2-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-light-2,
a.u-button-style.u-button-style.active > .u-active-palette-2-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-light-2,
li.active > a.u-button-style.u-button-style.u-active-palette-2-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2-light-2:checked {
  color: #111111 !important;
  background-color: #f1b5b8 !important;
}
a.u-link.u-hover-palette-2-light-2:hover {
  color: #f1b5b8 !important;
}
.u-palette-2-light-3,
.u-body.u-palette-2-light-3,
section.u-palette-2-light-3:before,
.u-palette-2-light-3 > .u-audio-main-layout-wrapper:before,
.u-palette-2-light-3 > .u-container-layout:before,
.u-palette-2-light-3 > .u-inner-container-layout:before,
.u-palette-2-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2-light-3:before,
.u-table-alt-palette-2-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #fbeced;
}
.u-input.u-palette-2-light-3,
.u-field-input.u-palette-2-light-3,
.u-button-style.u-palette-2-light-3,
.u-button-style.u-palette-2-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fbeced !important;
}
.u-button-style.u-palette-2-light-3:hover,
.u-button-style.u-palette-2-light-3[class*="u-border-"]:hover,
.u-button-style.u-palette-2-light-3:focus,
.u-button-style.u-palette-2-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2-light-3:active,
.u-button-style.u-button-style.u-palette-2-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2-light-3.active,
.u-button-style.u-button-style.u-palette-2-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2-light-3,
li.active > .u-button-style.u-button-style.u-palette-2-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f3c4c7 !important;
}
/* hover */
.u-hover-palette-2-light-3:hover,
.u-hover-palette-2-light-3[class*="u-border-"]:hover,
.u-hover-palette-2-light-3:focus,
.u-hover-palette-2-light-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-2-light-3:hover,
a.u-button-style.u-hover-palette-2-light-3.hover,
a.u-button-style.u-hover-palette-2-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2-light-3,
a.u-button-style:hover > .u-hover-palette-2-light-3[class*="u-border-"],
a.u-button-style.u-hover-palette-2-light-3:focus,
a.u-button-style.u-hover-palette-2-light-3[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #fbeced !important;
}
/* active */
.u-active-palette-2-light-3.u-active.u-active,
.u-active-palette-2-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-2-light-3:active,
a.u-button-style.u-button-style.u-active-palette-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-light-3.active,
a.u-button-style.u-button-style.u-active-palette-2-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-light-3,
a.u-button-style.u-button-style.active > .u-active-palette-2-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-light-3,
li.active > a.u-button-style.u-button-style.u-active-palette-2-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2-light-3:checked {
  color: #111111 !important;
  background-color: #fbeced !important;
}
a.u-link.u-hover-palette-2-light-3:hover {
  color: #fbeced !important;
}
.u-palette-2-base,
.u-body.u-palette-2-base,
section.u-palette-2-base:before,
.u-palette-2-base > .u-audio-main-layout-wrapper:before,
.u-palette-2-base > .u-container-layout:before,
.u-palette-2-base > .u-inner-container-layout:before,
.u-palette-2-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2-base:before,
.u-table-alt-palette-2-base tr:nth-child(even) {
  color: var(--color-white);
  background-color: #db545a;
}
.u-input.u-palette-2-base,
.u-field-input.u-palette-2-base,
.u-button-style.u-palette-2-base,
.u-button-style.u-palette-2-base[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #db545a !important;
}
.u-button-style.u-palette-2-base:hover,
.u-button-style.u-palette-2-base[class*="u-border-"]:hover,
.u-button-style.u-palette-2-base:focus,
.u-button-style.u-palette-2-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2-base:active,
.u-button-style.u-button-style.u-palette-2-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2-base.active,
.u-button-style.u-button-style.u-palette-2-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2-base,
li.active > .u-button-style.u-button-style.u-palette-2-base[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #d63b42 !important;
}
/* hover */
.u-hover-palette-2-base:hover,
.u-hover-palette-2-base[class*="u-border-"]:hover,
.u-hover-palette-2-base:focus,
.u-hover-palette-2-base[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-2-base:hover,
a.u-button-style.u-hover-palette-2-base.hover,
a.u-button-style.u-hover-palette-2-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2-base,
a.u-button-style:hover > .u-hover-palette-2-base[class*="u-border-"],
a.u-button-style.u-hover-palette-2-base:focus,
a.u-button-style.u-hover-palette-2-base[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #db545a !important;
}
/* active */
.u-active-palette-2-base.u-active.u-active,
.u-active-palette-2-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-2-base:active,
a.u-button-style.u-button-style.u-active-palette-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-base.active,
a.u-button-style.u-button-style.u-active-palette-2-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-base,
a.u-button-style.u-button-style.active > .u-active-palette-2-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-base,
li.active > a.u-button-style.u-button-style.u-active-palette-2-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2-base:checked {
  color: var(--color-white) !important;
  background-color: #db545a !important;
}
a.u-link.u-hover-palette-2-base:hover {
  color: #db545a !important;
}
.u-palette-3-dark-3,
.u-body.u-palette-3-dark-3,
section.u-palette-3-dark-3:before,
.u-palette-3-dark-3 > .u-audio-main-layout-wrapper:before,
.u-palette-3-dark-3 > .u-container-layout:before,
.u-palette-3-dark-3 > .u-inner-container-layout:before,
.u-palette-3-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3-dark-3:before,
.u-table-alt-palette-3-dark-3 tr:nth-child(even) {
  color: var(--color-white);
  background-color: var(--color-text-medium)129;
}
.u-input.u-palette-3-dark-3,
.u-field-input.u-palette-3-dark-3,
.u-button-style.u-palette-3-dark-3,
.u-button-style.u-palette-3-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: var(--color-text-medium)129 !important;
}
.u-button-style.u-palette-3-dark-3:hover,
.u-button-style.u-palette-3-dark-3[class*="u-border-"]:hover,
.u-button-style.u-palette-3-dark-3:focus,
.u-button-style.u-palette-3-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3-dark-3:active,
.u-button-style.u-button-style.u-palette-3-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3-dark-3.active,
.u-button-style.u-button-style.u-palette-3-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3-dark-3,
li.active > .u-button-style.u-button-style.u-palette-3-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #2e2c25 !important;
}
/* hover */
.u-hover-palette-3-dark-3:hover,
.u-hover-palette-3-dark-3[class*="u-border-"]:hover,
.u-hover-palette-3-dark-3:focus,
.u-hover-palette-3-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-3-dark-3:hover,
a.u-button-style.u-hover-palette-3-dark-3.hover,
a.u-button-style.u-hover-palette-3-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3-dark-3,
a.u-button-style:hover > .u-hover-palette-3-dark-3[class*="u-border-"],
a.u-button-style.u-hover-palette-3-dark-3:focus,
a.u-button-style.u-hover-palette-3-dark-3[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: var(--color-text-medium)129 !important;
}
/* active */
.u-active-palette-3-dark-3.u-active.u-active,
.u-active-palette-3-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-3-dark-3:active,
a.u-button-style.u-button-style.u-active-palette-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3-dark-3.active,
a.u-button-style.u-button-style.u-active-palette-3-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3-dark-3,
a.u-button-style.u-button-style.active > .u-active-palette-3-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3-dark-3,
li.active > a.u-button-style.u-button-style.u-active-palette-3-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3-dark-3:checked {
  color: var(--color-white) !important;
  background-color: var(--color-text-medium)129 !important;
}
a.u-link.u-hover-palette-3-dark-3:hover {
  color: var(--color-text-medium)129 !important;
}
.u-palette-3-dark-2,
.u-body.u-palette-3-dark-2,
section.u-palette-3-dark-2:before,
.u-palette-3-dark-2 > .u-audio-main-layout-wrapper:before,
.u-palette-3-dark-2 > .u-container-layout:before,
.u-palette-3-dark-2 > .u-inner-container-layout:before,
.u-palette-3-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3-dark-2:before,
.u-table-alt-palette-3-dark-2 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #72683f;
}
.u-input.u-palette-3-dark-2,
.u-field-input.u-palette-3-dark-2,
.u-button-style.u-palette-3-dark-2,
.u-button-style.u-palette-3-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #72683f !important;
}
.u-button-style.u-palette-3-dark-2:hover,
.u-button-style.u-palette-3-dark-2[class*="u-border-"]:hover,
.u-button-style.u-palette-3-dark-2:focus,
.u-button-style.u-palette-3-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3-dark-2:active,
.u-button-style.u-button-style.u-palette-3-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3-dark-2.active,
.u-button-style.u-button-style.u-palette-3-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3-dark-2,
li.active > .u-button-style.u-button-style.u-palette-3-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #675e39 !important;
}
/* hover */
.u-hover-palette-3-dark-2:hover,
.u-hover-palette-3-dark-2[class*="u-border-"]:hover,
.u-hover-palette-3-dark-2:focus,
.u-hover-palette-3-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-3-dark-2:hover,
a.u-button-style.u-hover-palette-3-dark-2.hover,
a.u-button-style.u-hover-palette-3-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3-dark-2,
a.u-button-style:hover > .u-hover-palette-3-dark-2[class*="u-border-"],
a.u-button-style.u-hover-palette-3-dark-2:focus,
a.u-button-style.u-hover-palette-3-dark-2[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #72683f !important;
}
/* active */
.u-active-palette-3-dark-2.u-active.u-active,
.u-active-palette-3-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-3-dark-2:active,
a.u-button-style.u-button-style.u-active-palette-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3-dark-2.active,
a.u-button-style.u-button-style.u-active-palette-3-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3-dark-2,
a.u-button-style.u-button-style.active > .u-active-palette-3-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3-dark-2,
li.active > a.u-button-style.u-button-style.u-active-palette-3-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3-dark-2:checked {
  color: var(--color-white) !important;
  background-color: #72683f !important;
}
a.u-link.u-hover-palette-3-dark-2:hover {
  color: #72683f !important;
}
.u-palette-3-dark-1,
.u-body.u-palette-3-dark-1,
section.u-palette-3-dark-1:before,
.u-palette-3-dark-1 > .u-audio-main-layout-wrapper:before,
.u-palette-3-dark-1 > .u-container-layout:before,
.u-palette-3-dark-1 > .u-inner-container-layout:before,
.u-palette-3-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3-dark-1:before,
.u-table-alt-palette-3-dark-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #b29a36;
}
.u-input.u-palette-3-dark-1,
.u-field-input.u-palette-3-dark-1,
.u-button-style.u-palette-3-dark-1,
.u-button-style.u-palette-3-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #b29a36 !important;
}
.u-button-style.u-palette-3-dark-1:hover,
.u-button-style.u-palette-3-dark-1[class*="u-border-"]:hover,
.u-button-style.u-palette-3-dark-1:focus,
.u-button-style.u-palette-3-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3-dark-1:active,
.u-button-style.u-button-style.u-palette-3-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3-dark-1.active,
.u-button-style.u-button-style.u-palette-3-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3-dark-1,
li.active > .u-button-style.u-button-style.u-palette-3-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #a08b31 !important;
}
/* hover */
.u-hover-palette-3-dark-1:hover,
.u-hover-palette-3-dark-1[class*="u-border-"]:hover,
.u-hover-palette-3-dark-1:focus,
.u-hover-palette-3-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-3-dark-1:hover,
a.u-button-style.u-hover-palette-3-dark-1.hover,
a.u-button-style.u-hover-palette-3-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3-dark-1,
a.u-button-style:hover > .u-hover-palette-3-dark-1[class*="u-border-"],
a.u-button-style.u-hover-palette-3-dark-1:focus,
a.u-button-style.u-hover-palette-3-dark-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #b29a36 !important;
}
/* active */
.u-active-palette-3-dark-1.u-active.u-active,
.u-active-palette-3-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-3-dark-1:active,
a.u-button-style.u-button-style.u-active-palette-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3-dark-1.active,
a.u-button-style.u-button-style.u-active-palette-3-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3-dark-1,
a.u-button-style.u-button-style.active > .u-active-palette-3-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3-dark-1,
li.active > a.u-button-style.u-button-style.u-active-palette-3-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3-dark-1:checked {
  color: var(--color-white) !important;
  background-color: #b29a36 !important;
}
a.u-link.u-hover-palette-3-dark-1:hover {
  color: #b29a36 !important;
}
.u-palette-3,
.u-body.u-palette-3,
section.u-palette-3:before,
.u-palette-3 > .u-audio-main-layout-wrapper:before,
.u-palette-3 > .u-container-layout:before,
.u-palette-3 > .u-inner-container-layout:before,
.u-palette-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3:before,
.u-table-alt-palette-3 tr:nth-child(even) {
  color: #111111;
  background-color: #f1c50e;
}
.u-input.u-palette-3,
.u-field-input.u-palette-3,
.u-button-style.u-palette-3,
.u-button-style.u-palette-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
.u-button-style.u-palette-3:hover,
.u-button-style.u-palette-3[class*="u-border-"]:hover,
.u-button-style.u-palette-3:focus,
.u-button-style.u-palette-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3:active,
.u-button-style.u-button-style.u-palette-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3.active,
.u-button-style.u-button-style.u-palette-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3,
li.active > .u-button-style.u-button-style.u-palette-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d9b10d !important;
}
/* hover */
.u-hover-palette-3:hover,
.u-hover-palette-3[class*="u-border-"]:hover,
.u-hover-palette-3:focus,
.u-hover-palette-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-3:hover,
a.u-button-style.u-hover-palette-3.hover,
a.u-button-style.u-hover-palette-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3,
a.u-button-style:hover > .u-hover-palette-3[class*="u-border-"],
a.u-button-style.u-hover-palette-3:focus,
a.u-button-style.u-hover-palette-3[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
/* active */
.u-active-palette-3.u-active.u-active,
.u-active-palette-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-3:active,
a.u-button-style.u-button-style.u-active-palette-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3.active,
a.u-button-style.u-button-style.u-active-palette-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3,
a.u-button-style.u-button-style.active > .u-active-palette-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3,
li.active > a.u-button-style.u-button-style.u-active-palette-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3:checked {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
a.u-link.u-hover-palette-3:hover {
  color: #f1c50e !important;
}
.u-palette-3-light-1,
.u-body.u-palette-3-light-1,
section.u-palette-3-light-1:before,
.u-palette-3-light-1 > .u-audio-main-layout-wrapper:before,
.u-palette-3-light-1 > .u-container-layout:before,
.u-palette-3-light-1 > .u-inner-container-layout:before,
.u-palette-3-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3-light-1:before,
.u-table-alt-palette-3-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #f5d654;
}
.u-input.u-palette-3-light-1,
.u-field-input.u-palette-3-light-1,
.u-button-style.u-palette-3-light-1,
.u-button-style.u-palette-3-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f5d654 !important;
}
.u-button-style.u-palette-3-light-1:hover,
.u-button-style.u-palette-3-light-1[class*="u-border-"]:hover,
.u-button-style.u-palette-3-light-1:focus,
.u-button-style.u-palette-3-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3-light-1:active,
.u-button-style.u-button-style.u-palette-3-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3-light-1.active,
.u-button-style.u-button-style.u-palette-3-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3-light-1,
li.active > .u-button-style.u-button-style.u-palette-3-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f3cf35 !important;
}
/* hover */
.u-hover-palette-3-light-1:hover,
.u-hover-palette-3-light-1[class*="u-border-"]:hover,
.u-hover-palette-3-light-1:focus,
.u-hover-palette-3-light-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-3-light-1:hover,
a.u-button-style.u-hover-palette-3-light-1.hover,
a.u-button-style.u-hover-palette-3-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3-light-1,
a.u-button-style:hover > .u-hover-palette-3-light-1[class*="u-border-"],
a.u-button-style.u-hover-palette-3-light-1:focus,
a.u-button-style.u-hover-palette-3-light-1[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f5d654 !important;
}
/* active */
.u-active-palette-3-light-1.u-active.u-active,
.u-active-palette-3-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-3-light-1:active,
a.u-button-style.u-button-style.u-active-palette-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3-light-1.active,
a.u-button-style.u-button-style.u-active-palette-3-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3-light-1,
a.u-button-style.u-button-style.active > .u-active-palette-3-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3-light-1,
li.active > a.u-button-style.u-button-style.u-active-palette-3-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3-light-1:checked {
  color: #111111 !important;
  background-color: #f5d654 !important;
}
a.u-link.u-hover-palette-3-light-1:hover {
  color: #f5d654 !important;
}
.u-palette-3-light-2,
.u-body.u-palette-3-light-2,
section.u-palette-3-light-2:before,
.u-palette-3-light-2 > .u-audio-main-layout-wrapper:before,
.u-palette-3-light-2 > .u-container-layout:before,
.u-palette-3-light-2 > .u-inner-container-layout:before,
.u-palette-3-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3-light-2:before,
.u-table-alt-palette-3-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #f9e79b;
}
.u-input.u-palette-3-light-2,
.u-field-input.u-palette-3-light-2,
.u-button-style.u-palette-3-light-2,
.u-button-style.u-palette-3-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f9e79b !important;
}
.u-button-style.u-palette-3-light-2:hover,
.u-button-style.u-palette-3-light-2[class*="u-border-"]:hover,
.u-button-style.u-palette-3-light-2:focus,
.u-button-style.u-palette-3-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3-light-2:active,
.u-button-style.u-button-style.u-palette-3-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3-light-2.active,
.u-button-style.u-button-style.u-palette-3-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3-light-2,
li.active > .u-button-style.u-button-style.u-palette-3-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f7de75 !important;
}
/* hover */
.u-hover-palette-3-light-2:hover,
.u-hover-palette-3-light-2[class*="u-border-"]:hover,
.u-hover-palette-3-light-2:focus,
.u-hover-palette-3-light-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-3-light-2:hover,
a.u-button-style.u-hover-palette-3-light-2.hover,
a.u-button-style.u-hover-palette-3-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3-light-2,
a.u-button-style:hover > .u-hover-palette-3-light-2[class*="u-border-"],
a.u-button-style.u-hover-palette-3-light-2:focus,
a.u-button-style.u-hover-palette-3-light-2[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f9e79b !important;
}
/* active */
.u-active-palette-3-light-2.u-active.u-active,
.u-active-palette-3-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-3-light-2:active,
a.u-button-style.u-button-style.u-active-palette-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3-light-2.active,
a.u-button-style.u-button-style.u-active-palette-3-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3-light-2,
a.u-button-style.u-button-style.active > .u-active-palette-3-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3-light-2,
li.active > a.u-button-style.u-button-style.u-active-palette-3-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3-light-2:checked {
  color: #111111 !important;
  background-color: #f9e79b !important;
}
a.u-link.u-hover-palette-3-light-2:hover {
  color: #f9e79b !important;
}
.u-palette-3-light-3,
.u-body.u-palette-3-light-3,
section.u-palette-3-light-3:before,
.u-palette-3-light-3 > .u-audio-main-layout-wrapper:before,
.u-palette-3-light-3 > .u-container-layout:before,
.u-palette-3-light-3 > .u-inner-container-layout:before,
.u-palette-3-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3-light-3:before,
.u-table-alt-palette-3-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #fef9e6;
}
.u-input.u-palette-3-light-3,
.u-field-input.u-palette-3-light-3,
.u-button-style.u-palette-3-light-3,
.u-button-style.u-palette-3-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fef9e6 !important;
}
.u-button-style.u-palette-3-light-3:hover,
.u-button-style.u-palette-3-light-3[class*="u-border-"]:hover,
.u-button-style.u-palette-3-light-3:focus,
.u-button-style.u-palette-3-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3-light-3:active,
.u-button-style.u-button-style.u-palette-3-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3-light-3.active,
.u-button-style.u-button-style.u-palette-3-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3-light-3,
li.active > .u-button-style.u-button-style.u-palette-3-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fceeb7 !important;
}
/* hover */
.u-hover-palette-3-light-3:hover,
.u-hover-palette-3-light-3[class*="u-border-"]:hover,
.u-hover-palette-3-light-3:focus,
.u-hover-palette-3-light-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-3-light-3:hover,
a.u-button-style.u-hover-palette-3-light-3.hover,
a.u-button-style.u-hover-palette-3-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3-light-3,
a.u-button-style:hover > .u-hover-palette-3-light-3[class*="u-border-"],
a.u-button-style.u-hover-palette-3-light-3:focus,
a.u-button-style.u-hover-palette-3-light-3[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #fef9e6 !important;
}
/* active */
.u-active-palette-3-light-3.u-active.u-active,
.u-active-palette-3-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-3-light-3:active,
a.u-button-style.u-button-style.u-active-palette-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3-light-3.active,
a.u-button-style.u-button-style.u-active-palette-3-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3-light-3,
a.u-button-style.u-button-style.active > .u-active-palette-3-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3-light-3,
li.active > a.u-button-style.u-button-style.u-active-palette-3-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3-light-3:checked {
  color: #111111 !important;
  background-color: #fef9e6 !important;
}
a.u-link.u-hover-palette-3-light-3:hover {
  color: #fef9e6 !important;
}
.u-palette-3-base,
.u-body.u-palette-3-base,
section.u-palette-3-base:before,
.u-palette-3-base > .u-audio-main-layout-wrapper:before,
.u-palette-3-base > .u-container-layout:before,
.u-palette-3-base > .u-inner-container-layout:before,
.u-palette-3-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3-base:before,
.u-table-alt-palette-3-base tr:nth-child(even) {
  color: #111111;
  background-color: #f1c50e;
}
.u-input.u-palette-3-base,
.u-field-input.u-palette-3-base,
.u-button-style.u-palette-3-base,
.u-button-style.u-palette-3-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
.u-button-style.u-palette-3-base:hover,
.u-button-style.u-palette-3-base[class*="u-border-"]:hover,
.u-button-style.u-palette-3-base:focus,
.u-button-style.u-palette-3-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3-base:active,
.u-button-style.u-button-style.u-palette-3-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3-base.active,
.u-button-style.u-button-style.u-palette-3-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3-base,
li.active > .u-button-style.u-button-style.u-palette-3-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d9b10d !important;
}
/* hover */
.u-hover-palette-3-base:hover,
.u-hover-palette-3-base[class*="u-border-"]:hover,
.u-hover-palette-3-base:focus,
.u-hover-palette-3-base[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-3-base:hover,
a.u-button-style.u-hover-palette-3-base.hover,
a.u-button-style.u-hover-palette-3-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3-base,
a.u-button-style:hover > .u-hover-palette-3-base[class*="u-border-"],
a.u-button-style.u-hover-palette-3-base:focus,
a.u-button-style.u-hover-palette-3-base[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
/* active */
.u-active-palette-3-base.u-active.u-active,
.u-active-palette-3-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-3-base:active,
a.u-button-style.u-button-style.u-active-palette-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3-base.active,
a.u-button-style.u-button-style.u-active-palette-3-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3-base,
a.u-button-style.u-button-style.active > .u-active-palette-3-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3-base,
li.active > a.u-button-style.u-button-style.u-active-palette-3-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3-base:checked {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
a.u-link.u-hover-palette-3-base:hover {
  color: #f1c50e !important;
}
.u-palette-4-dark-3,
.u-body.u-palette-4-dark-3,
section.u-palette-4-dark-3:before,
.u-palette-4-dark-3 > .u-audio-main-layout-wrapper:before,
.u-palette-4-dark-3 > .u-container-layout:before,
.u-palette-4-dark-3 > .u-inner-container-layout:before,
.u-palette-4-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4-dark-3:before,
.u-table-alt-palette-4-dark-3 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #293332;
}
.u-input.u-palette-4-dark-3,
.u-field-input.u-palette-4-dark-3,
.u-button-style.u-palette-4-dark-3,
.u-button-style.u-palette-4-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #293332 !important;
}
.u-button-style.u-palette-4-dark-3:hover,
.u-button-style.u-palette-4-dark-3[class*="u-border-"]:hover,
.u-button-style.u-palette-4-dark-3:focus,
.u-button-style.u-palette-4-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4-dark-3:active,
.u-button-style.u-button-style.u-palette-4-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4-dark-3.active,
.u-button-style.u-button-style.u-palette-4-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4-dark-3,
li.active > .u-button-style.u-button-style.u-palette-4-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #252e2d !important;
}
/* hover */
.u-hover-palette-4-dark-3:hover,
.u-hover-palette-4-dark-3[class*="u-border-"]:hover,
.u-hover-palette-4-dark-3:focus,
.u-hover-palette-4-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-4-dark-3:hover,
a.u-button-style.u-hover-palette-4-dark-3.hover,
a.u-button-style.u-hover-palette-4-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4-dark-3,
a.u-button-style:hover > .u-hover-palette-4-dark-3[class*="u-border-"],
a.u-button-style.u-hover-palette-4-dark-3:focus,
a.u-button-style.u-hover-palette-4-dark-3[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #293332 !important;
}
/* active */
.u-active-palette-4-dark-3.u-active.u-active,
.u-active-palette-4-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-4-dark-3:active,
a.u-button-style.u-button-style.u-active-palette-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4-dark-3.active,
a.u-button-style.u-button-style.u-active-palette-4-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4-dark-3,
a.u-button-style.u-button-style.active > .u-active-palette-4-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4-dark-3,
li.active > a.u-button-style.u-button-style.u-active-palette-4-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4-dark-3:checked {
  color: var(--color-white) !important;
  background-color: #293332 !important;
}
a.u-link.u-hover-palette-4-dark-3:hover {
  color: #293332 !important;
}
.u-palette-4-dark-2,
.u-body.u-palette-4-dark-2,
section.u-palette-4-dark-2:before,
.u-palette-4-dark-2 > .u-audio-main-layout-wrapper:before,
.u-palette-4-dark-2 > .u-container-layout:before,
.u-palette-4-dark-2 > .u-inner-container-layout:before,
.u-palette-4-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4-dark-2:before,
.u-table-alt-palette-4-dark-2 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #41807c;
}
.u-input.u-palette-4-dark-2,
.u-field-input.u-palette-4-dark-2,
.u-button-style.u-palette-4-dark-2,
.u-button-style.u-palette-4-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #41807c !important;
}
.u-button-style.u-palette-4-dark-2:hover,
.u-button-style.u-palette-4-dark-2[class*="u-border-"]:hover,
.u-button-style.u-palette-4-dark-2:focus,
.u-button-style.u-palette-4-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4-dark-2:active,
.u-button-style.u-button-style.u-palette-4-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4-dark-2.active,
.u-button-style.u-button-style.u-palette-4-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4-dark-2,
li.active > .u-button-style.u-button-style.u-palette-4-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #3a7370 !important;
}
/* hover */
.u-hover-palette-4-dark-2:hover,
.u-hover-palette-4-dark-2[class*="u-border-"]:hover,
.u-hover-palette-4-dark-2:focus,
.u-hover-palette-4-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-4-dark-2:hover,
a.u-button-style.u-hover-palette-4-dark-2.hover,
a.u-button-style.u-hover-palette-4-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4-dark-2,
a.u-button-style:hover > .u-hover-palette-4-dark-2[class*="u-border-"],
a.u-button-style.u-hover-palette-4-dark-2:focus,
a.u-button-style.u-hover-palette-4-dark-2[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #41807c !important;
}
/* active */
.u-active-palette-4-dark-2.u-active.u-active,
.u-active-palette-4-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-4-dark-2:active,
a.u-button-style.u-button-style.u-active-palette-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4-dark-2.active,
a.u-button-style.u-button-style.u-active-palette-4-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4-dark-2,
a.u-button-style.u-button-style.active > .u-active-palette-4-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4-dark-2,
li.active > a.u-button-style.u-button-style.u-active-palette-4-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4-dark-2:checked {
  color: var(--color-white) !important;
  background-color: #41807c !important;
}
a.u-link.u-hover-palette-4-dark-2:hover {
  color: #41807c !important;
}
.u-palette-4-dark-1,
.u-body.u-palette-4-dark-1,
section.u-palette-4-dark-1:before,
.u-palette-4-dark-1 > .u-audio-main-layout-wrapper:before,
.u-palette-4-dark-1 > .u-container-layout:before,
.u-palette-4-dark-1 > .u-inner-container-layout:before,
.u-palette-4-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4-dark-1:before,
.u-table-alt-palette-4-dark-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #2cccc4;
}
.u-input.u-palette-4-dark-1,
.u-field-input.u-palette-4-dark-1,
.u-button-style.u-palette-4-dark-1,
.u-button-style.u-palette-4-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #2cccc4 !important;
}
.u-button-style.u-palette-4-dark-1:hover,
.u-button-style.u-palette-4-dark-1[class*="u-border-"]:hover,
.u-button-style.u-palette-4-dark-1:focus,
.u-button-style.u-palette-4-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4-dark-1:active,
.u-button-style.u-button-style.u-palette-4-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4-dark-1.active,
.u-button-style.u-button-style.u-palette-4-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4-dark-1,
li.active > .u-button-style.u-button-style.u-palette-4-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #28b8b0 !important;
}
/* hover */
.u-hover-palette-4-dark-1:hover,
.u-hover-palette-4-dark-1[class*="u-border-"]:hover,
.u-hover-palette-4-dark-1:focus,
.u-hover-palette-4-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-4-dark-1:hover,
a.u-button-style.u-hover-palette-4-dark-1.hover,
a.u-button-style.u-hover-palette-4-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4-dark-1,
a.u-button-style:hover > .u-hover-palette-4-dark-1[class*="u-border-"],
a.u-button-style.u-hover-palette-4-dark-1:focus,
a.u-button-style.u-hover-palette-4-dark-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #2cccc4 !important;
}
/* active */
.u-active-palette-4-dark-1.u-active.u-active,
.u-active-palette-4-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-4-dark-1:active,
a.u-button-style.u-button-style.u-active-palette-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4-dark-1.active,
a.u-button-style.u-button-style.u-active-palette-4-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4-dark-1,
a.u-button-style.u-button-style.active > .u-active-palette-4-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4-dark-1,
li.active > a.u-button-style.u-button-style.u-active-palette-4-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4-dark-1:checked {
  color: var(--color-white) !important;
  background-color: #2cccc4 !important;
}
a.u-link.u-hover-palette-4-dark-1:hover {
  color: #2cccc4 !important;
}
.u-palette-4,
.u-body.u-palette-4,
section.u-palette-4:before,
.u-palette-4 > .u-audio-main-layout-wrapper:before,
.u-palette-4 > .u-container-layout:before,
.u-palette-4 > .u-inner-container-layout:before,
.u-palette-4.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4:before,
.u-table-alt-palette-4 tr:nth-child(even) {
  color: #111111;
  background-color: #3be8e0;
}
.u-input.u-palette-4,
.u-field-input.u-palette-4,
.u-button-style.u-palette-4,
.u-button-style.u-palette-4[class*="u-border-"] {
  color: #111111 !important;
  background-color: #3be8e0 !important;
}
.u-button-style.u-palette-4:hover,
.u-button-style.u-palette-4[class*="u-border-"]:hover,
.u-button-style.u-palette-4:focus,
.u-button-style.u-palette-4[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4:active,
.u-button-style.u-button-style.u-palette-4[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4.active,
.u-button-style.u-button-style.u-palette-4[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4,
li.active > .u-button-style.u-button-style.u-palette-4[class*="u-border-"] {
  color: #111111 !important;
  background-color: #21e5dc !important;
}
/* hover */
.u-hover-palette-4:hover,
.u-hover-palette-4[class*="u-border-"]:hover,
.u-hover-palette-4:focus,
.u-hover-palette-4[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-4:hover,
a.u-button-style.u-hover-palette-4.hover,
a.u-button-style.u-hover-palette-4[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4,
a.u-button-style:hover > .u-hover-palette-4[class*="u-border-"],
a.u-button-style.u-hover-palette-4:focus,
a.u-button-style.u-hover-palette-4[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #3be8e0 !important;
}
/* active */
.u-active-palette-4.u-active.u-active,
.u-active-palette-4[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-4:active,
a.u-button-style.u-button-style.u-active-palette-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4.active,
a.u-button-style.u-button-style.u-active-palette-4[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4,
a.u-button-style.u-button-style.active > .u-active-palette-4[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4,
li.active > a.u-button-style.u-button-style.u-active-palette-4[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4:checked {
  color: #111111 !important;
  background-color: #3be8e0 !important;
}
a.u-link.u-hover-palette-4:hover {
  color: #3be8e0 !important;
}
.u-palette-4-light-1,
.u-body.u-palette-4-light-1,
section.u-palette-4-light-1:before,
.u-palette-4-light-1 > .u-audio-main-layout-wrapper:before,
.u-palette-4-light-1 > .u-container-layout:before,
.u-palette-4-light-1 > .u-inner-container-layout:before,
.u-palette-4-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4-light-1:before,
.u-table-alt-palette-4-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #72efe9;
}
.u-input.u-palette-4-light-1,
.u-field-input.u-palette-4-light-1,
.u-button-style.u-palette-4-light-1,
.u-button-style.u-palette-4-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #72efe9 !important;
}
.u-button-style.u-palette-4-light-1:hover,
.u-button-style.u-palette-4-light-1[class*="u-border-"]:hover,
.u-button-style.u-palette-4-light-1:focus,
.u-button-style.u-palette-4-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4-light-1:active,
.u-button-style.u-button-style.u-palette-4-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4-light-1.active,
.u-button-style.u-button-style.u-palette-4-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4-light-1,
li.active > .u-button-style.u-button-style.u-palette-4-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #52ebe4 !important;
}
/* hover */
.u-hover-palette-4-light-1:hover,
.u-hover-palette-4-light-1[class*="u-border-"]:hover,
.u-hover-palette-4-light-1:focus,
.u-hover-palette-4-light-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-4-light-1:hover,
a.u-button-style.u-hover-palette-4-light-1.hover,
a.u-button-style.u-hover-palette-4-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4-light-1,
a.u-button-style:hover > .u-hover-palette-4-light-1[class*="u-border-"],
a.u-button-style.u-hover-palette-4-light-1:focus,
a.u-button-style.u-hover-palette-4-light-1[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #72efe9 !important;
}
/* active */
.u-active-palette-4-light-1.u-active.u-active,
.u-active-palette-4-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-4-light-1:active,
a.u-button-style.u-button-style.u-active-palette-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4-light-1.active,
a.u-button-style.u-button-style.u-active-palette-4-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4-light-1,
a.u-button-style.u-button-style.active > .u-active-palette-4-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4-light-1,
li.active > a.u-button-style.u-button-style.u-active-palette-4-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4-light-1:checked {
  color: #111111 !important;
  background-color: #72efe9 !important;
}
a.u-link.u-hover-palette-4-light-1:hover {
  color: #72efe9 !important;
}
.u-palette-4-light-2,
.u-body.u-palette-4-light-2,
section.u-palette-4-light-2:before,
.u-palette-4-light-2 > .u-audio-main-layout-wrapper:before,
.u-palette-4-light-2 > .u-container-layout:before,
.u-palette-4-light-2 > .u-inner-container-layout:before,
.u-palette-4-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4-light-2:before,
.u-table-alt-palette-4-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #adf6f2;
}
.u-input.u-palette-4-light-2,
.u-field-input.u-palette-4-light-2,
.u-button-style.u-palette-4-light-2,
.u-button-style.u-palette-4-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #adf6f2 !important;
}
.u-button-style.u-palette-4-light-2:hover,
.u-button-style.u-palette-4-light-2[class*="u-border-"]:hover,
.u-button-style.u-palette-4-light-2:focus,
.u-button-style.u-palette-4-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4-light-2:active,
.u-button-style.u-button-style.u-palette-4-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4-light-2.active,
.u-button-style.u-button-style.u-palette-4-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4-light-2,
li.active > .u-button-style.u-button-style.u-palette-4-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #87f2ec !important;
}
/* hover */
.u-hover-palette-4-light-2:hover,
.u-hover-palette-4-light-2[class*="u-border-"]:hover,
.u-hover-palette-4-light-2:focus,
.u-hover-palette-4-light-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-4-light-2:hover,
a.u-button-style.u-hover-palette-4-light-2.hover,
a.u-button-style.u-hover-palette-4-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4-light-2,
a.u-button-style:hover > .u-hover-palette-4-light-2[class*="u-border-"],
a.u-button-style.u-hover-palette-4-light-2:focus,
a.u-button-style.u-hover-palette-4-light-2[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #adf6f2 !important;
}
/* active */
.u-active-palette-4-light-2.u-active.u-active,
.u-active-palette-4-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-4-light-2:active,
a.u-button-style.u-button-style.u-active-palette-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4-light-2.active,
a.u-button-style.u-button-style.u-active-palette-4-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4-light-2,
a.u-button-style.u-button-style.active > .u-active-palette-4-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4-light-2,
li.active > a.u-button-style.u-button-style.u-active-palette-4-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4-light-2:checked {
  color: #111111 !important;
  background-color: #adf6f2 !important;
}
a.u-link.u-hover-palette-4-light-2:hover {
  color: #adf6f2 !important;
}
.u-palette-4-light-3,
.u-body.u-palette-4-light-3,
section.u-palette-4-light-3:before,
.u-palette-4-light-3 > .u-audio-main-layout-wrapper:before,
.u-palette-4-light-3 > .u-container-layout:before,
.u-palette-4-light-3 > .u-inner-container-layout:before,
.u-palette-4-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4-light-3:before,
.u-table-alt-palette-4-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #eafdfc;
}
.u-input.u-palette-4-light-3,
.u-field-input.u-palette-4-light-3,
.u-button-style.u-palette-4-light-3,
.u-button-style.u-palette-4-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #eafdfc !important;
}
.u-button-style.u-palette-4-light-3:hover,
.u-button-style.u-palette-4-light-3[class*="u-border-"]:hover,
.u-button-style.u-palette-4-light-3:focus,
.u-button-style.u-palette-4-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4-light-3:active,
.u-button-style.u-button-style.u-palette-4-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4-light-3.active,
.u-button-style.u-button-style.u-palette-4-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4-light-3,
li.active > .u-button-style.u-button-style.u-palette-4-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #bef9f6 !important;
}
/* hover */
.u-hover-palette-4-light-3:hover,
.u-hover-palette-4-light-3[class*="u-border-"]:hover,
.u-hover-palette-4-light-3:focus,
.u-hover-palette-4-light-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-4-light-3:hover,
a.u-button-style.u-hover-palette-4-light-3.hover,
a.u-button-style.u-hover-palette-4-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4-light-3,
a.u-button-style:hover > .u-hover-palette-4-light-3[class*="u-border-"],
a.u-button-style.u-hover-palette-4-light-3:focus,
a.u-button-style.u-hover-palette-4-light-3[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #eafdfc !important;
}
/* active */
.u-active-palette-4-light-3.u-active.u-active,
.u-active-palette-4-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-4-light-3:active,
a.u-button-style.u-button-style.u-active-palette-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4-light-3.active,
a.u-button-style.u-button-style.u-active-palette-4-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4-light-3,
a.u-button-style.u-button-style.active > .u-active-palette-4-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4-light-3,
li.active > a.u-button-style.u-button-style.u-active-palette-4-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4-light-3:checked {
  color: #111111 !important;
  background-color: #eafdfc !important;
}
a.u-link.u-hover-palette-4-light-3:hover {
  color: #eafdfc !important;
}
.u-palette-4-base,
.u-body.u-palette-4-base,
section.u-palette-4-base:before,
.u-palette-4-base > .u-audio-main-layout-wrapper:before,
.u-palette-4-base > .u-container-layout:before,
.u-palette-4-base > .u-inner-container-layout:before,
.u-palette-4-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4-base:before,
.u-table-alt-palette-4-base tr:nth-child(even) {
  color: var(--color-white);
  background-color: #2cccc4;
}
.u-input.u-palette-4-base,
.u-field-input.u-palette-4-base,
.u-button-style.u-palette-4-base,
.u-button-style.u-palette-4-base[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #2cccc4 !important;
}
.u-button-style.u-palette-4-base:hover,
.u-button-style.u-palette-4-base[class*="u-border-"]:hover,
.u-button-style.u-palette-4-base:focus,
.u-button-style.u-palette-4-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4-base:active,
.u-button-style.u-button-style.u-palette-4-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4-base.active,
.u-button-style.u-button-style.u-palette-4-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4-base,
li.active > .u-button-style.u-button-style.u-palette-4-base[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #28b8b0 !important;
}
/* hover */
.u-hover-palette-4-base:hover,
.u-hover-palette-4-base[class*="u-border-"]:hover,
.u-hover-palette-4-base:focus,
.u-hover-palette-4-base[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-4-base:hover,
a.u-button-style.u-hover-palette-4-base.hover,
a.u-button-style.u-hover-palette-4-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4-base,
a.u-button-style:hover > .u-hover-palette-4-base[class*="u-border-"],
a.u-button-style.u-hover-palette-4-base:focus,
a.u-button-style.u-hover-palette-4-base[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #2cccc4 !important;
}
/* active */
.u-active-palette-4-base.u-active.u-active,
.u-active-palette-4-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-4-base:active,
a.u-button-style.u-button-style.u-active-palette-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4-base.active,
a.u-button-style.u-button-style.u-active-palette-4-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4-base,
a.u-button-style.u-button-style.active > .u-active-palette-4-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4-base,
li.active > a.u-button-style.u-button-style.u-active-palette-4-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4-base:checked {
  color: var(--color-white) !important;
  background-color: #2cccc4 !important;
}
a.u-link.u-hover-palette-4-base:hover {
  color: #2cccc4 !important;
}
.u-palette-5-dark-3,
.u-body.u-palette-5-dark-3,
section.u-palette-5-dark-3:before,
.u-palette-5-dark-3 > .u-audio-main-layout-wrapper:before,
.u-palette-5-dark-3 > .u-container-layout:before,
.u-palette-5-dark-3 > .u-inner-container-layout:before,
.u-palette-5-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5-dark-3:before,
.u-table-alt-palette-5-dark-3 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #292d33;
}
.u-input.u-palette-5-dark-3,
.u-field-input.u-palette-5-dark-3,
.u-button-style.u-palette-5-dark-3,
.u-button-style.u-palette-5-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #292d33 !important;
}
.u-button-style.u-palette-5-dark-3:hover,
.u-button-style.u-palette-5-dark-3[class*="u-border-"]:hover,
.u-button-style.u-palette-5-dark-3:focus,
.u-button-style.u-palette-5-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5-dark-3:active,
.u-button-style.u-button-style.u-palette-5-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5-dark-3.active,
.u-button-style.u-button-style.u-palette-5-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5-dark-3,
li.active > .u-button-style.u-button-style.u-palette-5-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #25292e !important;
}
/* hover */
.u-hover-palette-5-dark-3:hover,
.u-hover-palette-5-dark-3[class*="u-border-"]:hover,
.u-hover-palette-5-dark-3:focus,
.u-hover-palette-5-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-5-dark-3:hover,
a.u-button-style.u-hover-palette-5-dark-3.hover,
a.u-button-style.u-hover-palette-5-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5-dark-3,
a.u-button-style:hover > .u-hover-palette-5-dark-3[class*="u-border-"],
a.u-button-style.u-hover-palette-5-dark-3:focus,
a.u-button-style.u-hover-palette-5-dark-3[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #292d33 !important;
}
/* active */
.u-active-palette-5-dark-3.u-active.u-active,
.u-active-palette-5-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-5-dark-3:active,
a.u-button-style.u-button-style.u-active-palette-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5-dark-3.active,
a.u-button-style.u-button-style.u-active-palette-5-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5-dark-3,
a.u-button-style.u-button-style.active > .u-active-palette-5-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5-dark-3,
li.active > a.u-button-style.u-button-style.u-active-palette-5-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5-dark-3:checked {
  color: var(--color-white) !important;
  background-color: #292d33 !important;
}
a.u-link.u-hover-palette-5-dark-3:hover {
  color: #292d33 !important;
}
.u-palette-5-dark-2,
.u-body.u-palette-5-dark-2,
section.u-palette-5-dark-2:before,
.u-palette-5-dark-2 > .u-audio-main-layout-wrapper:before,
.u-palette-5-dark-2 > .u-container-layout:before,
.u-palette-5-dark-2 > .u-inner-container-layout:before,
.u-palette-5-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5-dark-2:before,
.u-table-alt-palette-5-dark-2 tr:nth-child(even) {
  color: var(--color-white);
  background-color: var(--color-darkest-gray)c66;
}
.u-input.u-palette-5-dark-2,
.u-field-input.u-palette-5-dark-2,
.u-button-style.u-palette-5-dark-2,
.u-button-style.u-palette-5-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: var(--color-darkest-gray)c66 !important;
}
.u-button-style.u-palette-5-dark-2:hover,
.u-button-style.u-palette-5-dark-2[class*="u-border-"]:hover,
.u-button-style.u-palette-5-dark-2:focus,
.u-button-style.u-palette-5-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5-dark-2:active,
.u-button-style.u-button-style.u-palette-5-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5-dark-2.active,
.u-button-style.u-button-style.u-palette-5-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5-dark-2,
li.active > .u-button-style.u-button-style.u-palette-5-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #4d535c !important;
}
/* hover */
.u-hover-palette-5-dark-2:hover,
.u-hover-palette-5-dark-2[class*="u-border-"]:hover,
.u-hover-palette-5-dark-2:focus,
.u-hover-palette-5-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-5-dark-2:hover,
a.u-button-style.u-hover-palette-5-dark-2.hover,
a.u-button-style.u-hover-palette-5-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5-dark-2,
a.u-button-style:hover > .u-hover-palette-5-dark-2[class*="u-border-"],
a.u-button-style.u-hover-palette-5-dark-2:focus,
a.u-button-style.u-hover-palette-5-dark-2[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: var(--color-darkest-gray)c66 !important;
}
/* active */
.u-active-palette-5-dark-2.u-active.u-active,
.u-active-palette-5-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-5-dark-2:active,
a.u-button-style.u-button-style.u-active-palette-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5-dark-2.active,
a.u-button-style.u-button-style.u-active-palette-5-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5-dark-2,
a.u-button-style.u-button-style.active > .u-active-palette-5-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5-dark-2,
li.active > a.u-button-style.u-button-style.u-active-palette-5-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5-dark-2:checked {
  color: var(--color-white) !important;
  background-color: var(--color-darkest-gray)c66 !important;
}
a.u-link.u-hover-palette-5-dark-2:hover {
  color: var(--color-darkest-gray)c66 !important;
}
.u-palette-5-dark-1,
.u-body.u-palette-5-dark-1,
section.u-palette-5-dark-1:before,
.u-palette-5-dark-1 > .u-audio-main-layout-wrapper:before,
.u-palette-5-dark-1 > .u-container-layout:before,
.u-palette-5-dark-1 > .u-inner-container-layout:before,
.u-palette-5-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5-dark-1:before,
.u-table-alt-palette-5-dark-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #858e99;
}
.u-input.u-palette-5-dark-1,
.u-field-input.u-palette-5-dark-1,
.u-button-style.u-palette-5-dark-1,
.u-button-style.u-palette-5-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #858e99 !important;
}
.u-button-style.u-palette-5-dark-1:hover,
.u-button-style.u-palette-5-dark-1[class*="u-border-"]:hover,
.u-button-style.u-palette-5-dark-1:focus,
.u-button-style.u-palette-5-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5-dark-1:active,
.u-button-style.u-button-style.u-palette-5-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5-dark-1.active,
.u-button-style.u-button-style.u-palette-5-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5-dark-1,
li.active > .u-button-style.u-button-style.u-palette-5-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #75808c !important;
}
/* hover */
.u-hover-palette-5-dark-1:hover,
.u-hover-palette-5-dark-1[class*="u-border-"]:hover,
.u-hover-palette-5-dark-1:focus,
.u-hover-palette-5-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-5-dark-1:hover,
a.u-button-style.u-hover-palette-5-dark-1.hover,
a.u-button-style.u-hover-palette-5-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5-dark-1,
a.u-button-style:hover > .u-hover-palette-5-dark-1[class*="u-border-"],
a.u-button-style.u-hover-palette-5-dark-1:focus,
a.u-button-style.u-hover-palette-5-dark-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #858e99 !important;
}
/* active */
.u-active-palette-5-dark-1.u-active.u-active,
.u-active-palette-5-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-5-dark-1:active,
a.u-button-style.u-button-style.u-active-palette-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5-dark-1.active,
a.u-button-style.u-button-style.u-active-palette-5-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5-dark-1,
a.u-button-style.u-button-style.active > .u-active-palette-5-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5-dark-1,
li.active > a.u-button-style.u-button-style.u-active-palette-5-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5-dark-1:checked {
  color: var(--color-white) !important;
  background-color: #858e99 !important;
}
a.u-link.u-hover-palette-5-dark-1:hover {
  color: #858e99 !important;
}
.u-palette-5,
.u-body.u-palette-5,
section.u-palette-5:before,
.u-palette-5 > .u-audio-main-layout-wrapper:before,
.u-palette-5 > .u-container-layout:before,
.u-palette-5 > .u-inner-container-layout:before,
.u-palette-5.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5:before,
.u-table-alt-palette-5 tr:nth-child(even) {
  color: #111111;
  background-color: #b9c1cc;
}
.u-input.u-palette-5,
.u-field-input.u-palette-5,
.u-button-style.u-palette-5,
.u-button-style.u-palette-5[class*="u-border-"] {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
.u-button-style.u-palette-5:hover,
.u-button-style.u-palette-5[class*="u-border-"]:hover,
.u-button-style.u-palette-5:focus,
.u-button-style.u-palette-5[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5:active,
.u-button-style.u-button-style.u-palette-5[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5.active,
.u-button-style.u-button-style.u-palette-5[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5,
li.active > .u-button-style.u-button-style.u-palette-5[class*="u-border-"] {
  color: #111111 !important;
  background-color: #a2adbc !important;
}
/* hover */
.u-hover-palette-5:hover,
.u-hover-palette-5[class*="u-border-"]:hover,
.u-hover-palette-5:focus,
.u-hover-palette-5[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-5:hover,
a.u-button-style.u-hover-palette-5.hover,
a.u-button-style.u-hover-palette-5[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5,
a.u-button-style:hover > .u-hover-palette-5[class*="u-border-"],
a.u-button-style.u-hover-palette-5:focus,
a.u-button-style.u-hover-palette-5[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
/* active */
.u-active-palette-5.u-active.u-active,
.u-active-palette-5[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-5:active,
a.u-button-style.u-button-style.u-active-palette-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5.active,
a.u-button-style.u-button-style.u-active-palette-5[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5,
a.u-button-style.u-button-style.active > .u-active-palette-5[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5,
li.active > a.u-button-style.u-button-style.u-active-palette-5[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5:checked {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
a.u-link.u-hover-palette-5:hover {
  color: #b9c1cc !important;
}
.u-palette-5-light-1,
.u-body.u-palette-5-light-1,
section.u-palette-5-light-1:before,
.u-palette-5-light-1 > .u-audio-main-layout-wrapper:before,
.u-palette-5-light-1 > .u-container-layout:before,
.u-palette-5-light-1 > .u-inner-container-layout:before,
.u-palette-5-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5-light-1:before,
.u-table-alt-palette-5-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #ccd3db;
}
.u-input.u-palette-5-light-1,
.u-field-input.u-palette-5-light-1,
.u-button-style.u-palette-5-light-1,
.u-button-style.u-palette-5-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #ccd3db !important;
}
.u-button-style.u-palette-5-light-1:hover,
.u-button-style.u-palette-5-light-1[class*="u-border-"]:hover,
.u-button-style.u-palette-5-light-1:focus,
.u-button-style.u-palette-5-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5-light-1:active,
.u-button-style.u-button-style.u-palette-5-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5-light-1.active,
.u-button-style.u-button-style.u-palette-5-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5-light-1,
li.active > .u-button-style.u-button-style.u-palette-5-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #b3bec9 !important;
}
/* hover */
.u-hover-palette-5-light-1:hover,
.u-hover-palette-5-light-1[class*="u-border-"]:hover,
.u-hover-palette-5-light-1:focus,
.u-hover-palette-5-light-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-5-light-1:hover,
a.u-button-style.u-hover-palette-5-light-1.hover,
a.u-button-style.u-hover-palette-5-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5-light-1,
a.u-button-style:hover > .u-hover-palette-5-light-1[class*="u-border-"],
a.u-button-style.u-hover-palette-5-light-1:focus,
a.u-button-style.u-hover-palette-5-light-1[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #ccd3db !important;
}
/* active */
.u-active-palette-5-light-1.u-active.u-active,
.u-active-palette-5-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-5-light-1:active,
a.u-button-style.u-button-style.u-active-palette-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5-light-1.active,
a.u-button-style.u-button-style.u-active-palette-5-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5-light-1,
a.u-button-style.u-button-style.active > .u-active-palette-5-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5-light-1,
li.active > a.u-button-style.u-button-style.u-active-palette-5-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5-light-1:checked {
  color: #111111 !important;
  background-color: #ccd3db !important;
}
a.u-link.u-hover-palette-5-light-1:hover {
  color: #ccd3db !important;
}
.u-palette-5-light-2,
.u-body.u-palette-5-light-2,
section.u-palette-5-light-2:before,
.u-palette-5-light-2 > .u-audio-main-layout-wrapper:before,
.u-palette-5-light-2 > .u-container-layout:before,
.u-palette-5-light-2 > .u-inner-container-layout:before,
.u-palette-5-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5-light-2:before,
.u-table-alt-palette-5-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #e0e5eb;
}
.u-input.u-palette-5-light-2,
.u-field-input.u-palette-5-light-2,
.u-button-style.u-palette-5-light-2,
.u-button-style.u-palette-5-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #e0e5eb !important;
}
.u-button-style.u-palette-5-light-2:hover,
.u-button-style.u-palette-5-light-2[class*="u-border-"]:hover,
.u-button-style.u-palette-5-light-2:focus,
.u-button-style.u-palette-5-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5-light-2:active,
.u-button-style.u-button-style.u-palette-5-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5-light-2.active,
.u-button-style.u-button-style.u-palette-5-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5-light-2,
li.active > .u-button-style.u-button-style.u-palette-5-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #c4ced9 !important;
}
/* hover */
.u-hover-palette-5-light-2:hover,
.u-hover-palette-5-light-2[class*="u-border-"]:hover,
.u-hover-palette-5-light-2:focus,
.u-hover-palette-5-light-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-5-light-2:hover,
a.u-button-style.u-hover-palette-5-light-2.hover,
a.u-button-style.u-hover-palette-5-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5-light-2,
a.u-button-style:hover > .u-hover-palette-5-light-2[class*="u-border-"],
a.u-button-style.u-hover-palette-5-light-2:focus,
a.u-button-style.u-hover-palette-5-light-2[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #e0e5eb !important;
}
/* active */
.u-active-palette-5-light-2.u-active.u-active,
.u-active-palette-5-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-5-light-2:active,
a.u-button-style.u-button-style.u-active-palette-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5-light-2.active,
a.u-button-style.u-button-style.u-active-palette-5-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5-light-2,
a.u-button-style.u-button-style.active > .u-active-palette-5-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5-light-2,
li.active > a.u-button-style.u-button-style.u-active-palette-5-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5-light-2:checked {
  color: #111111 !important;
  background-color: #e0e5eb !important;
}
a.u-link.u-hover-palette-5-light-2:hover {
  color: #e0e5eb !important;
}
.u-palette-5-light-3,
.u-body.u-palette-5-light-3,
section.u-palette-5-light-3:before,
.u-palette-5-light-3 > .u-audio-main-layout-wrapper:before,
.u-palette-5-light-3 > .u-container-layout:before,
.u-palette-5-light-3 > .u-inner-container-layout:before,
.u-palette-5-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5-light-3:before,
.u-table-alt-palette-5-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #f5f7fa;
}
.u-input.u-palette-5-light-3,
.u-field-input.u-palette-5-light-3,
.u-button-style.u-palette-5-light-3,
.u-button-style.u-palette-5-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f5f7fa !important;
}
.u-button-style.u-palette-5-light-3:hover,
.u-button-style.u-palette-5-light-3[class*="u-border-"]:hover,
.u-button-style.u-palette-5-light-3:focus,
.u-button-style.u-palette-5-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5-light-3:active,
.u-button-style.u-button-style.u-palette-5-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5-light-3.active,
.u-button-style.u-button-style.u-palette-5-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5-light-3,
li.active > .u-button-style.u-button-style.u-palette-5-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d4dde9 !important;
}
/* hover */
.u-hover-palette-5-light-3:hover,
.u-hover-palette-5-light-3[class*="u-border-"]:hover,
.u-hover-palette-5-light-3:focus,
.u-hover-palette-5-light-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-5-light-3:hover,
a.u-button-style.u-hover-palette-5-light-3.hover,
a.u-button-style.u-hover-palette-5-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5-light-3,
a.u-button-style:hover > .u-hover-palette-5-light-3[class*="u-border-"],
a.u-button-style.u-hover-palette-5-light-3:focus,
a.u-button-style.u-hover-palette-5-light-3[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f5f7fa !important;
}
/* active */
.u-active-palette-5-light-3.u-active.u-active,
.u-active-palette-5-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-5-light-3:active,
a.u-button-style.u-button-style.u-active-palette-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5-light-3.active,
a.u-button-style.u-button-style.u-active-palette-5-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5-light-3,
a.u-button-style.u-button-style.active > .u-active-palette-5-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5-light-3,
li.active > a.u-button-style.u-button-style.u-active-palette-5-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5-light-3:checked {
  color: #111111 !important;
  background-color: #f5f7fa !important;
}
a.u-link.u-hover-palette-5-light-3:hover {
  color: #f5f7fa !important;
}
.u-palette-5-base,
.u-body.u-palette-5-base,
section.u-palette-5-base:before,
.u-palette-5-base > .u-audio-main-layout-wrapper:before,
.u-palette-5-base > .u-container-layout:before,
.u-palette-5-base > .u-inner-container-layout:before,
.u-palette-5-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5-base:before,
.u-table-alt-palette-5-base tr:nth-child(even) {
  color: #111111;
  background-color: #b9c1cc;
}
.u-input.u-palette-5-base,
.u-field-input.u-palette-5-base,
.u-button-style.u-palette-5-base,
.u-button-style.u-palette-5-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
.u-button-style.u-palette-5-base:hover,
.u-button-style.u-palette-5-base[class*="u-border-"]:hover,
.u-button-style.u-palette-5-base:focus,
.u-button-style.u-palette-5-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5-base:active,
.u-button-style.u-button-style.u-palette-5-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5-base.active,
.u-button-style.u-button-style.u-palette-5-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5-base,
li.active > .u-button-style.u-button-style.u-palette-5-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #a2adbc !important;
}
/* hover */
.u-hover-palette-5-base:hover,
.u-hover-palette-5-base[class*="u-border-"]:hover,
.u-hover-palette-5-base:focus,
.u-hover-palette-5-base[class*="u-border-"]:focus,
a.u-button-style.u-hover-palette-5-base:hover,
a.u-button-style.u-hover-palette-5-base.hover,
a.u-button-style.u-hover-palette-5-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5-base,
a.u-button-style:hover > .u-hover-palette-5-base[class*="u-border-"],
a.u-button-style.u-hover-palette-5-base:focus,
a.u-button-style.u-hover-palette-5-base[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
/* active */
.u-active-palette-5-base.u-active.u-active,
.u-active-palette-5-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-palette-5-base:active,
a.u-button-style.u-button-style.u-active-palette-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5-base.active,
a.u-button-style.u-button-style.u-active-palette-5-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5-base,
a.u-button-style.u-button-style.active > .u-active-palette-5-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5-base,
li.active > a.u-button-style.u-button-style.u-active-palette-5-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5-base:checked {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
a.u-link.u-hover-palette-5-base:hover {
  color: #b9c1cc !important;
}
.u-grey-dark-3,
.u-body.u-grey-dark-3,
section.u-grey-dark-3:before,
.u-grey-dark-3 > .u-audio-main-layout-wrapper:before,
.u-grey-dark-3 > .u-container-layout:before,
.u-grey-dark-3 > .u-inner-container-layout:before,
.u-grey-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-dark-3:before,
.u-table-alt-grey-dark-3 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #212121;
}
.u-input.u-grey-dark-3,
.u-field-input.u-grey-dark-3,
.u-button-style.u-grey-dark-3,
.u-button-style.u-grey-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #212121 !important;
}
.u-button-style.u-grey-dark-3:hover,
.u-button-style.u-grey-dark-3[class*="u-border-"]:hover,
.u-button-style.u-grey-dark-3:focus,
.u-button-style.u-grey-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-dark-3:active,
.u-button-style.u-button-style.u-grey-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-dark-3.active,
.u-button-style.u-button-style.u-grey-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-dark-3,
li.active > .u-button-style.u-button-style.u-grey-dark-3[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #1e1e1e !important;
}
/* hover */
.u-hover-grey-dark-3:hover,
.u-hover-grey-dark-3[class*="u-border-"]:hover,
.u-hover-grey-dark-3:focus,
.u-hover-grey-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-dark-3:hover,
a.u-button-style.u-hover-grey-dark-3.hover,
a.u-button-style.u-hover-grey-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-dark-3,
a.u-button-style:hover > .u-hover-grey-dark-3[class*="u-border-"],
a.u-button-style.u-hover-grey-dark-3:focus,
a.u-button-style.u-hover-grey-dark-3[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #212121 !important;
}
/* active */
.u-active-grey-dark-3.u-active.u-active,
.u-active-grey-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-dark-3:active,
a.u-button-style.u-button-style.u-active-grey-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-dark-3.active,
a.u-button-style.u-button-style.u-active-grey-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-dark-3,
a.u-button-style.u-button-style.active > .u-active-grey-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-dark-3,
li.active > a.u-button-style.u-button-style.u-active-grey-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-dark-3:checked {
  color: var(--color-white) !important;
  background-color: #212121 !important;
}
a.u-link.u-hover-grey-dark-3:hover {
  color: #212121 !important;
}
.u-grey-dark-2,
.u-body.u-grey-dark-2,
section.u-grey-dark-2:before,
.u-grey-dark-2 > .u-audio-main-layout-wrapper:before,
.u-grey-dark-2 > .u-container-layout:before,
.u-grey-dark-2 > .u-inner-container-layout:before,
.u-grey-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-dark-2:before,
.u-table-alt-grey-dark-2 tr:nth-child(even) {
  color: var(--color-white);
  background-color: var(--color-text-medium)333;
}
.u-input.u-grey-dark-2,
.u-field-input.u-grey-dark-2,
.u-button-style.u-grey-dark-2,
.u-button-style.u-grey-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: var(--color-text-medium)333 !important;
}
.u-button-style.u-grey-dark-2:hover,
.u-button-style.u-grey-dark-2[class*="u-border-"]:hover,
.u-button-style.u-grey-dark-2:focus,
.u-button-style.u-grey-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-dark-2:active,
.u-button-style.u-button-style.u-grey-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-dark-2.active,
.u-button-style.u-button-style.u-grey-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-dark-2,
li.active > .u-button-style.u-button-style.u-grey-dark-2[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #2e2e2e !important;
}
/* hover */
.u-hover-grey-dark-2:hover,
.u-hover-grey-dark-2[class*="u-border-"]:hover,
.u-hover-grey-dark-2:focus,
.u-hover-grey-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-dark-2:hover,
a.u-button-style.u-hover-grey-dark-2.hover,
a.u-button-style.u-hover-grey-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-dark-2,
a.u-button-style:hover > .u-hover-grey-dark-2[class*="u-border-"],
a.u-button-style.u-hover-grey-dark-2:focus,
a.u-button-style.u-hover-grey-dark-2[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: var(--color-text-medium)333 !important;
}
/* active */
.u-active-grey-dark-2.u-active.u-active,
.u-active-grey-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-dark-2:active,
a.u-button-style.u-button-style.u-active-grey-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-dark-2.active,
a.u-button-style.u-button-style.u-active-grey-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-dark-2,
a.u-button-style.u-button-style.active > .u-active-grey-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-dark-2,
li.active > a.u-button-style.u-button-style.u-active-grey-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-dark-2:checked {
  color: var(--color-white) !important;
  background-color: var(--color-text-medium)333 !important;
}
a.u-link.u-hover-grey-dark-2:hover {
  color: var(--color-text-medium)333 !important;
}
.u-grey-dark-1,
.u-body.u-grey-dark-1,
section.u-grey-dark-1:before,
.u-grey-dark-1 > .u-audio-main-layout-wrapper:before,
.u-grey-dark-1 > .u-container-layout:before,
.u-grey-dark-1 > .u-inner-container-layout:before,
.u-grey-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-dark-1:before,
.u-table-alt-grey-dark-1 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #454545;
}
.u-input.u-grey-dark-1,
.u-field-input.u-grey-dark-1,
.u-button-style.u-grey-dark-1,
.u-button-style.u-grey-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #454545 !important;
}
.u-button-style.u-grey-dark-1:hover,
.u-button-style.u-grey-dark-1[class*="u-border-"]:hover,
.u-button-style.u-grey-dark-1:focus,
.u-button-style.u-grey-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-dark-1:active,
.u-button-style.u-button-style.u-grey-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-dark-1.active,
.u-button-style.u-button-style.u-grey-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-dark-1,
li.active > .u-button-style.u-button-style.u-grey-dark-1[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #3e3e3e !important;
}
/* hover */
.u-hover-grey-dark-1:hover,
.u-hover-grey-dark-1[class*="u-border-"]:hover,
.u-hover-grey-dark-1:focus,
.u-hover-grey-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-dark-1:hover,
a.u-button-style.u-hover-grey-dark-1.hover,
a.u-button-style.u-hover-grey-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-dark-1,
a.u-button-style:hover > .u-hover-grey-dark-1[class*="u-border-"],
a.u-button-style.u-hover-grey-dark-1:focus,
a.u-button-style.u-hover-grey-dark-1[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #454545 !important;
}
/* active */
.u-active-grey-dark-1.u-active.u-active,
.u-active-grey-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-dark-1:active,
a.u-button-style.u-button-style.u-active-grey-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-dark-1.active,
a.u-button-style.u-button-style.u-active-grey-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-dark-1,
a.u-button-style.u-button-style.active > .u-active-grey-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-dark-1,
li.active > a.u-button-style.u-button-style.u-active-grey-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-dark-1:checked {
  color: var(--color-white) !important;
  background-color: #454545 !important;
}
a.u-link.u-hover-grey-dark-1:hover {
  color: #454545 !important;
}
.u-grey,
.u-body.u-grey,
section.u-grey:before,
.u-grey > .u-audio-main-layout-wrapper:before,
.u-grey > .u-container-layout:before,
.u-grey > .u-inner-container-layout:before,
.u-grey.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey:before,
.u-table-alt-grey tr:nth-child(even) {
  color: var(--color-white);
  background-color: #b3b3b3;
}
.u-input.u-grey,
.u-field-input.u-grey,
.u-button-style.u-grey,
.u-button-style.u-grey[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #b3b3b3 !important;
}
.u-button-style.u-grey:hover,
.u-button-style.u-grey[class*="u-border-"]:hover,
.u-button-style.u-grey:focus,
.u-button-style.u-grey[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey:active,
.u-button-style.u-button-style.u-grey[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey.active,
.u-button-style.u-button-style.u-grey[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey,
li.active > .u-button-style.u-button-style.u-grey[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #a1a1a1 !important;
}
/* hover */
.u-hover-grey:hover,
.u-hover-grey[class*="u-border-"]:hover,
.u-hover-grey:focus,
.u-hover-grey[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey:hover,
a.u-button-style.u-hover-grey.hover,
a.u-button-style.u-hover-grey[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey,
a.u-button-style:hover > .u-hover-grey[class*="u-border-"],
a.u-button-style.u-hover-grey:focus,
a.u-button-style.u-hover-grey[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #b3b3b3 !important;
}
/* active */
.u-active-grey.u-active.u-active,
.u-active-grey[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey:active,
a.u-button-style.u-button-style.u-active-grey[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey.active,
a.u-button-style.u-button-style.u-active-grey[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey,
a.u-button-style.u-button-style.active > .u-active-grey[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey,
li.active > a.u-button-style.u-button-style.u-active-grey[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey:checked {
  color: var(--color-white) !important;
  background-color: #b3b3b3 !important;
}
a.u-link.u-hover-grey:hover {
  color: #b3b3b3 !important;
}
.u-grey-light-1,
.u-body.u-grey-light-1,
section.u-grey-light-1:before,
.u-grey-light-1 > .u-audio-main-layout-wrapper:before,
.u-grey-light-1 > .u-container-layout:before,
.u-grey-light-1 > .u-inner-container-layout:before,
.u-grey-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-light-1:before,
.u-table-alt-grey-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #d9d9d9;
}
.u-input.u-grey-light-1,
.u-field-input.u-grey-light-1,
.u-button-style.u-grey-light-1,
.u-button-style.u-grey-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d9d9d9 !important;
}
.u-button-style.u-grey-light-1:hover,
.u-button-style.u-grey-light-1[class*="u-border-"]:hover,
.u-button-style.u-grey-light-1:focus,
.u-button-style.u-grey-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-light-1:active,
.u-button-style.u-button-style.u-grey-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-light-1.active,
.u-button-style.u-button-style.u-grey-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-light-1,
li.active > .u-button-style.u-button-style.u-grey-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #c3c3c3 !important;
}
/* hover */
.u-hover-grey-light-1:hover,
.u-hover-grey-light-1[class*="u-border-"]:hover,
.u-hover-grey-light-1:focus,
.u-hover-grey-light-1[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-light-1:hover,
a.u-button-style.u-hover-grey-light-1.hover,
a.u-button-style.u-hover-grey-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-light-1,
a.u-button-style:hover > .u-hover-grey-light-1[class*="u-border-"],
a.u-button-style.u-hover-grey-light-1:focus,
a.u-button-style.u-hover-grey-light-1[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #d9d9d9 !important;
}
/* active */
.u-active-grey-light-1.u-active.u-active,
.u-active-grey-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-light-1:active,
a.u-button-style.u-button-style.u-active-grey-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-light-1.active,
a.u-button-style.u-button-style.u-active-grey-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-light-1,
a.u-button-style.u-button-style.active > .u-active-grey-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-light-1,
li.active > a.u-button-style.u-button-style.u-active-grey-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-light-1:checked {
  color: #111111 !important;
  background-color: #d9d9d9 !important;
}
a.u-link.u-hover-grey-light-1:hover {
  color: #d9d9d9 !important;
}
.u-grey-light-2,
.u-body.u-grey-light-2,
section.u-grey-light-2:before,
.u-grey-light-2 > .u-audio-main-layout-wrapper:before,
.u-grey-light-2 > .u-container-layout:before,
.u-grey-light-2 > .u-inner-container-layout:before,
.u-grey-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-light-2:before,
.u-table-alt-grey-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #eeeeee;
}
.u-input.u-grey-light-2,
.u-field-input.u-grey-light-2,
.u-button-style.u-grey-light-2,
.u-button-style.u-grey-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #eeeeee !important;
}
.u-button-style.u-grey-light-2:hover,
.u-button-style.u-grey-light-2[class*="u-border-"]:hover,
.u-button-style.u-grey-light-2:focus,
.u-button-style.u-grey-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-light-2:active,
.u-button-style.u-button-style.u-grey-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-light-2.active,
.u-button-style.u-button-style.u-grey-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-light-2,
li.active > .u-button-style.u-button-style.u-grey-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d6d6d6 !important;
}
/* hover */
.u-hover-grey-light-2:hover,
.u-hover-grey-light-2[class*="u-border-"]:hover,
.u-hover-grey-light-2:focus,
.u-hover-grey-light-2[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-light-2:hover,
a.u-button-style.u-hover-grey-light-2.hover,
a.u-button-style.u-hover-grey-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-light-2,
a.u-button-style:hover > .u-hover-grey-light-2[class*="u-border-"],
a.u-button-style.u-hover-grey-light-2:focus,
a.u-button-style.u-hover-grey-light-2[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #eeeeee !important;
}
/* active */
.u-active-grey-light-2.u-active.u-active,
.u-active-grey-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-light-2:active,
a.u-button-style.u-button-style.u-active-grey-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-light-2.active,
a.u-button-style.u-button-style.u-active-grey-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-light-2,
a.u-button-style.u-button-style.active > .u-active-grey-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-light-2,
li.active > a.u-button-style.u-button-style.u-active-grey-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-light-2:checked {
  color: #111111 !important;
  background-color: #eeeeee !important;
}
a.u-link.u-hover-grey-light-2:hover {
  color: #eeeeee !important;
}
.u-grey-light-3,
.u-body.u-grey-light-3,
section.u-grey-light-3:before,
.u-grey-light-3 > .u-audio-main-layout-wrapper:before,
.u-grey-light-3 > .u-container-layout:before,
.u-grey-light-3 > .u-inner-container-layout:before,
.u-grey-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-light-3:before,
.u-table-alt-grey-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #f6f6f6;
}
.u-input.u-grey-light-3,
.u-field-input.u-grey-light-3,
.u-button-style.u-grey-light-3,
.u-button-style.u-grey-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f6f6f6 !important;
}
.u-button-style.u-grey-light-3:hover,
.u-button-style.u-grey-light-3[class*="u-border-"]:hover,
.u-button-style.u-grey-light-3:focus,
.u-button-style.u-grey-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-light-3:active,
.u-button-style.u-button-style.u-grey-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-light-3.active,
.u-button-style.u-button-style.u-grey-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-light-3,
li.active > .u-button-style.u-button-style.u-grey-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #dddddd !important;
}
/* hover */
.u-hover-grey-light-3:hover,
.u-hover-grey-light-3[class*="u-border-"]:hover,
.u-hover-grey-light-3:focus,
.u-hover-grey-light-3[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-light-3:hover,
a.u-button-style.u-hover-grey-light-3.hover,
a.u-button-style.u-hover-grey-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-light-3,
a.u-button-style:hover > .u-hover-grey-light-3[class*="u-border-"],
a.u-button-style.u-hover-grey-light-3:focus,
a.u-button-style.u-hover-grey-light-3[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f6f6f6 !important;
}
/* active */
.u-active-grey-light-3.u-active.u-active,
.u-active-grey-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-light-3:active,
a.u-button-style.u-button-style.u-active-grey-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-light-3.active,
a.u-button-style.u-button-style.u-active-grey-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-light-3,
a.u-button-style.u-button-style.active > .u-active-grey-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-light-3,
li.active > a.u-button-style.u-button-style.u-active-grey-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-light-3:checked {
  color: #111111 !important;
  background-color: #f6f6f6 !important;
}
a.u-link.u-hover-grey-light-3:hover {
  color: #f6f6f6 !important;
}
.u-white,
.u-body.u-white,
section.u-white:before,
.u-white > .u-audio-main-layout-wrapper:before,
.u-white > .u-container-layout:before,
.u-white > .u-inner-container-layout:before,
.u-white.u-sidenav:before,
.u-container-layout.u-container-layout.u-white:before,
.u-table-alt-white tr:nth-child(even) {
  color: #111111;
  background-color: var(--color-white);
}
.u-input.u-white,
.u-field-input.u-white,
.u-button-style.u-white,
.u-button-style.u-white[class*="u-border-"] {
  color: #111111 !important;
  background-color: var(--color-white) !important;
}
.u-button-style.u-white:hover,
.u-button-style.u-white[class*="u-border-"]:hover,
.u-button-style.u-white:focus,
.u-button-style.u-white[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-white:active,
.u-button-style.u-button-style.u-white[class*="u-border-"]:active,
.u-button-style.u-button-style.u-white.active,
.u-button-style.u-button-style.u-white[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-white,
li.active > .u-button-style.u-button-style.u-white[class*="u-border-"] {
  color: #111111 !important;
  background-color: #e6e6e6 !important;
}
/* hover */
.u-hover-white:hover,
.u-hover-white[class*="u-border-"]:hover,
.u-hover-white:focus,
.u-hover-white[class*="u-border-"]:focus,
a.u-button-style.u-hover-white:hover,
a.u-button-style.u-hover-white.hover,
a.u-button-style.u-hover-white[class*="u-border-"]:hover,
a.u-button-style.u-hover-white[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-white,
a.u-button-style:hover > .u-hover-white[class*="u-border-"],
a.u-button-style.u-hover-white:focus,
a.u-button-style.u-hover-white[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: var(--color-white) !important;
}
/* active */
.u-active-white.u-active.u-active,
.u-active-white[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-white:active,
a.u-button-style.u-button-style.u-active-white[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-white.active,
a.u-button-style.u-button-style.u-active-white[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-white,
a.u-button-style.u-button-style.active > .u-active-white[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-white,
li.active > a.u-button-style.u-button-style.u-active-white[class*="u-border-"],
input.u-field-input.u-field-input.u-active-white:checked {
  color: #111111 !important;
  background-color: var(--color-white) !important;
}
a.u-link.u-hover-white:hover {
  color: var(--color-white) !important;
}
.u-black,
.u-body.u-black,
section.u-black:before,
.u-black > .u-audio-main-layout-wrapper:before,
.u-black > .u-container-layout:before,
.u-black > .u-inner-container-layout:before,
.u-black.u-sidenav:before,
.u-container-layout.u-container-layout.u-black:before,
.u-table-alt-black tr:nth-child(even) {
  color: var(--color-white);
  background-color: #000000;
}
.u-input.u-black,
.u-field-input.u-black,
.u-button-style.u-black,
.u-button-style.u-black[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #000000 !important;
}
.u-button-style.u-black:hover,
.u-button-style.u-black[class*="u-border-"]:hover,
.u-button-style.u-black:focus,
.u-button-style.u-black[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-black:active,
.u-button-style.u-button-style.u-black[class*="u-border-"]:active,
.u-button-style.u-button-style.u-black.active,
.u-button-style.u-button-style.u-black[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-black,
li.active > .u-button-style.u-button-style.u-black[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #000000 !important;
}
/* hover */
.u-hover-black:hover,
.u-hover-black[class*="u-border-"]:hover,
.u-hover-black:focus,
.u-hover-black[class*="u-border-"]:focus,
a.u-button-style.u-hover-black:hover,
a.u-button-style.u-hover-black.hover,
a.u-button-style.u-hover-black[class*="u-border-"]:hover,
a.u-button-style.u-hover-black[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-black,
a.u-button-style:hover > .u-hover-black[class*="u-border-"],
a.u-button-style.u-hover-black:focus,
a.u-button-style.u-hover-black[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #000000 !important;
}
/* active */
.u-active-black.u-active.u-active,
.u-active-black[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-black:active,
a.u-button-style.u-button-style.u-active-black[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-black.active,
a.u-button-style.u-button-style.u-active-black[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-black,
a.u-button-style.u-button-style.active > .u-active-black[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-black,
li.active > a.u-button-style.u-button-style.u-active-black[class*="u-border-"],
input.u-field-input.u-field-input.u-active-black:checked {
  color: var(--color-white) !important;
  background-color: #000000 !important;
}
a.u-link.u-hover-black:hover {
  color: #000000 !important;
}
.u-body-color,
.u-body.u-body-color,
section.u-body-color:before,
.u-body-color > .u-audio-main-layout-wrapper:before,
.u-body-color > .u-container-layout:before,
.u-body-color > .u-inner-container-layout:before,
.u-body-color.u-sidenav:before,
.u-container-layout.u-container-layout.u-body-color:before,
.u-table-alt-body-color tr:nth-child(even) {
  color: var(--color-white);
  background-color: #111111;
}
.u-input.u-body-color,
.u-field-input.u-body-color,
.u-button-style.u-body-color,
.u-button-style.u-body-color[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #111111 !important;
}
.u-button-style.u-body-color:hover,
.u-button-style.u-body-color[class*="u-border-"]:hover,
.u-button-style.u-body-color:focus,
.u-button-style.u-body-color[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-body-color:active,
.u-button-style.u-button-style.u-body-color[class*="u-border-"]:active,
.u-button-style.u-button-style.u-body-color.active,
.u-button-style.u-button-style.u-body-color[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-body-color,
li.active > .u-button-style.u-button-style.u-body-color[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #0f0f0f !important;
}
/* hover */
.u-hover-body-color:hover,
.u-hover-body-color[class*="u-border-"]:hover,
.u-hover-body-color:focus,
.u-hover-body-color[class*="u-border-"]:focus,
a.u-button-style.u-hover-body-color:hover,
a.u-button-style.u-hover-body-color.hover,
a.u-button-style.u-hover-body-color[class*="u-border-"]:hover,
a.u-button-style.u-hover-body-color[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-body-color,
a.u-button-style:hover > .u-hover-body-color[class*="u-border-"],
a.u-button-style.u-hover-body-color:focus,
a.u-button-style.u-hover-body-color[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #111111 !important;
}
/* active */
.u-active-body-color.u-active.u-active,
.u-active-body-color[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-body-color:active,
a.u-button-style.u-button-style.u-active-body-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-body-color.active,
a.u-button-style.u-button-style.u-active-body-color[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-body-color,
a.u-button-style.u-button-style.active > .u-active-body-color[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-body-color,
li.active > a.u-button-style.u-button-style.u-active-body-color[class*="u-border-"],
input.u-field-input.u-field-input.u-active-body-color:checked {
  color: var(--color-white) !important;
  background-color: #111111 !important;
}
a.u-link.u-hover-body-color:hover {
  color: #111111 !important;
}
.u-body-alt-color,
.u-body.u-body-alt-color,
section.u-body-alt-color:before,
.u-body-alt-color > .u-audio-main-layout-wrapper:before,
.u-body-alt-color > .u-container-layout:before,
.u-body-alt-color > .u-inner-container-layout:before,
.u-body-alt-color.u-sidenav:before,
.u-container-layout.u-container-layout.u-body-alt-color:before,
.u-table-alt-body-alt-color tr:nth-child(even) {
  color: #111111;
  background-color: var(--color-white);
}
.u-input.u-body-alt-color,
.u-field-input.u-body-alt-color,
.u-button-style.u-body-alt-color,
.u-button-style.u-body-alt-color[class*="u-border-"] {
  color: #111111 !important;
  background-color: var(--color-white) !important;
}
.u-button-style.u-body-alt-color:hover,
.u-button-style.u-body-alt-color[class*="u-border-"]:hover,
.u-button-style.u-body-alt-color:focus,
.u-button-style.u-body-alt-color[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-body-alt-color:active,
.u-button-style.u-button-style.u-body-alt-color[class*="u-border-"]:active,
.u-button-style.u-button-style.u-body-alt-color.active,
.u-button-style.u-button-style.u-body-alt-color[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-body-alt-color,
li.active > .u-button-style.u-button-style.u-body-alt-color[class*="u-border-"] {
  color: #111111 !important;
  background-color: #e6e6e6 !important;
}
/* hover */
.u-hover-body-alt-color:hover,
.u-hover-body-alt-color[class*="u-border-"]:hover,
.u-hover-body-alt-color:focus,
.u-hover-body-alt-color[class*="u-border-"]:focus,
a.u-button-style.u-hover-body-alt-color:hover,
a.u-button-style.u-hover-body-alt-color.hover,
a.u-button-style.u-hover-body-alt-color[class*="u-border-"]:hover,
a.u-button-style.u-hover-body-alt-color[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-body-alt-color,
a.u-button-style:hover > .u-hover-body-alt-color[class*="u-border-"],
a.u-button-style.u-hover-body-alt-color:focus,
a.u-button-style.u-hover-body-alt-color[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: var(--color-white) !important;
}
/* active */
.u-active-body-alt-color.u-active.u-active,
.u-active-body-alt-color[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-body-alt-color:active,
a.u-button-style.u-button-style.u-active-body-alt-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-body-alt-color.active,
a.u-button-style.u-button-style.u-active-body-alt-color[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-body-alt-color,
a.u-button-style.u-button-style.active > .u-active-body-alt-color[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-body-alt-color,
li.active > a.u-button-style.u-button-style.u-active-body-alt-color[class*="u-border-"],
input.u-field-input.u-field-input.u-active-body-alt-color:checked {
  color: #111111 !important;
  background-color: var(--color-white) !important;
}
a.u-link.u-hover-body-alt-color:hover {
  color: var(--color-white) !important;
}
.u-grey-25,
.u-body.u-grey-25,
section.u-grey-25:before,
.u-grey-25 > .u-audio-main-layout-wrapper:before,
.u-grey-25 > .u-container-layout:before,
.u-grey-25 > .u-inner-container-layout:before,
.u-grey-25.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-25:before,
.u-table-alt-grey-25 tr:nth-child(even) {
  color: #111111;
  background-color: #c0c0c0;
}
.u-input.u-grey-25,
.u-field-input.u-grey-25,
.u-button-style.u-grey-25,
.u-button-style.u-grey-25[class*="u-border-"] {
  color: #111111 !important;
  background-color: #c0c0c0 !important;
}
.u-button-style.u-grey-25:hover,
.u-button-style.u-grey-25[class*="u-border-"]:hover,
.u-button-style.u-grey-25:focus,
.u-button-style.u-grey-25[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-25:active,
.u-button-style.u-button-style.u-grey-25[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-25.active,
.u-button-style.u-button-style.u-grey-25[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-25,
li.active > .u-button-style.u-button-style.u-grey-25[class*="u-border-"] {
  color: #111111 !important;
  background-color: #adadad !important;
}
/* hover */
.u-hover-grey-25:hover,
.u-hover-grey-25[class*="u-border-"]:hover,
.u-hover-grey-25:focus,
.u-hover-grey-25[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-25:hover,
a.u-button-style.u-hover-grey-25.hover,
a.u-button-style.u-hover-grey-25[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-25[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-25,
a.u-button-style:hover > .u-hover-grey-25[class*="u-border-"],
a.u-button-style.u-hover-grey-25:focus,
a.u-button-style.u-hover-grey-25[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #c0c0c0 !important;
}
/* active */
.u-active-grey-25.u-active.u-active,
.u-active-grey-25[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-25:active,
a.u-button-style.u-button-style.u-active-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-25.active,
a.u-button-style.u-button-style.u-active-grey-25[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-25,
a.u-button-style.u-button-style.active > .u-active-grey-25[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-25,
li.active > a.u-button-style.u-button-style.u-active-grey-25[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-25:checked {
  color: #111111 !important;
  background-color: #c0c0c0 !important;
}
a.u-link.u-hover-grey-25:hover {
  color: #c0c0c0 !important;
}
.u-grey-5,
.u-body.u-grey-5,
section.u-grey-5:before,
.u-grey-5 > .u-audio-main-layout-wrapper:before,
.u-grey-5 > .u-container-layout:before,
.u-grey-5 > .u-inner-container-layout:before,
.u-grey-5.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-5:before,
.u-table-alt-grey-5 tr:nth-child(even) {
  color: #111111;
  background-color: #f2f2f2;
}
.u-input.u-grey-5,
.u-field-input.u-grey-5,
.u-button-style.u-grey-5,
.u-button-style.u-grey-5[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f2f2f2 !important;
}
.u-button-style.u-grey-5:hover,
.u-button-style.u-grey-5[class*="u-border-"]:hover,
.u-button-style.u-grey-5:focus,
.u-button-style.u-grey-5[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-5:active,
.u-button-style.u-button-style.u-grey-5[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-5.active,
.u-button-style.u-button-style.u-grey-5[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-5,
li.active > .u-button-style.u-button-style.u-grey-5[class*="u-border-"] {
  color: #111111 !important;
  background-color: #dadada !important;
}
/* hover */
.u-hover-grey-5:hover,
.u-hover-grey-5[class*="u-border-"]:hover,
.u-hover-grey-5:focus,
.u-hover-grey-5[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-5:hover,
a.u-button-style.u-hover-grey-5.hover,
a.u-button-style.u-hover-grey-5[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-5[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-5,
a.u-button-style:hover > .u-hover-grey-5[class*="u-border-"],
a.u-button-style.u-hover-grey-5:focus,
a.u-button-style.u-hover-grey-5[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #f2f2f2 !important;
}
/* active */
.u-active-grey-5.u-active.u-active,
.u-active-grey-5[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-5:active,
a.u-button-style.u-button-style.u-active-grey-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-5.active,
a.u-button-style.u-button-style.u-active-grey-5[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-5,
a.u-button-style.u-button-style.active > .u-active-grey-5[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-5,
li.active > a.u-button-style.u-button-style.u-active-grey-5[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-5:checked {
  color: #111111 !important;
  background-color: #f2f2f2 !important;
}
a.u-link.u-hover-grey-5:hover {
  color: #f2f2f2 !important;
}
.u-grey-10,
.u-body.u-grey-10,
section.u-grey-10:before,
.u-grey-10 > .u-audio-main-layout-wrapper:before,
.u-grey-10 > .u-container-layout:before,
.u-grey-10 > .u-inner-container-layout:before,
.u-grey-10.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-10:before,
.u-table-alt-grey-10 tr:nth-child(even) {
  color: #111111;
  background-color: #e5e5e5;
}
.u-input.u-grey-10,
.u-field-input.u-grey-10,
.u-button-style.u-grey-10,
.u-button-style.u-grey-10[class*="u-border-"] {
  color: #111111 !important;
  background-color: #e5e5e5 !important;
}
.u-button-style.u-grey-10:hover,
.u-button-style.u-grey-10[class*="u-border-"]:hover,
.u-button-style.u-grey-10:focus,
.u-button-style.u-grey-10[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-10:active,
.u-button-style.u-button-style.u-grey-10[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-10.active,
.u-button-style.u-button-style.u-grey-10[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-10,
li.active > .u-button-style.u-button-style.u-grey-10[class*="u-border-"] {
  color: #111111 !important;
  background-color: #cecece !important;
}
/* hover */
.u-hover-grey-10:hover,
.u-hover-grey-10[class*="u-border-"]:hover,
.u-hover-grey-10:focus,
.u-hover-grey-10[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-10:hover,
a.u-button-style.u-hover-grey-10.hover,
a.u-button-style.u-hover-grey-10[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-10[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-10,
a.u-button-style:hover > .u-hover-grey-10[class*="u-border-"],
a.u-button-style.u-hover-grey-10:focus,
a.u-button-style.u-hover-grey-10[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #e5e5e5 !important;
}
/* active */
.u-active-grey-10.u-active.u-active,
.u-active-grey-10[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-10:active,
a.u-button-style.u-button-style.u-active-grey-10[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-10.active,
a.u-button-style.u-button-style.u-active-grey-10[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-10,
a.u-button-style.u-button-style.active > .u-active-grey-10[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-10,
li.active > a.u-button-style.u-button-style.u-active-grey-10[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-10:checked {
  color: #111111 !important;
  background-color: #e5e5e5 !important;
}
a.u-link.u-hover-grey-10:hover {
  color: #e5e5e5 !important;
}
.u-grey-15,
.u-body.u-grey-15,
section.u-grey-15:before,
.u-grey-15 > .u-audio-main-layout-wrapper:before,
.u-grey-15 > .u-container-layout:before,
.u-grey-15 > .u-inner-container-layout:before,
.u-grey-15.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-15:before,
.u-table-alt-grey-15 tr:nth-child(even) {
  color: #111111;
  background-color: #d9d9d9;
}
.u-input.u-grey-15,
.u-field-input.u-grey-15,
.u-button-style.u-grey-15,
.u-button-style.u-grey-15[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d9d9d9 !important;
}
.u-button-style.u-grey-15:hover,
.u-button-style.u-grey-15[class*="u-border-"]:hover,
.u-button-style.u-grey-15:focus,
.u-button-style.u-grey-15[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-15:active,
.u-button-style.u-button-style.u-grey-15[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-15.active,
.u-button-style.u-button-style.u-grey-15[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-15,
li.active > .u-button-style.u-button-style.u-grey-15[class*="u-border-"] {
  color: #111111 !important;
  background-color: #c3c3c3 !important;
}
/* hover */
.u-hover-grey-15:hover,
.u-hover-grey-15[class*="u-border-"]:hover,
.u-hover-grey-15:focus,
.u-hover-grey-15[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-15:hover,
a.u-button-style.u-hover-grey-15.hover,
a.u-button-style.u-hover-grey-15[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-15[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-15,
a.u-button-style:hover > .u-hover-grey-15[class*="u-border-"],
a.u-button-style.u-hover-grey-15:focus,
a.u-button-style.u-hover-grey-15[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #d9d9d9 !important;
}
/* active */
.u-active-grey-15.u-active.u-active,
.u-active-grey-15[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-15:active,
a.u-button-style.u-button-style.u-active-grey-15[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-15.active,
a.u-button-style.u-button-style.u-active-grey-15[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-15,
a.u-button-style.u-button-style.active > .u-active-grey-15[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-15,
li.active > a.u-button-style.u-button-style.u-active-grey-15[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-15:checked {
  color: #111111 !important;
  background-color: #d9d9d9 !important;
}
a.u-link.u-hover-grey-15:hover {
  color: #d9d9d9 !important;
}
.u-grey-25,
.u-body.u-grey-25,
section.u-grey-25:before,
.u-grey-25 > .u-audio-main-layout-wrapper:before,
.u-grey-25 > .u-container-layout:before,
.u-grey-25 > .u-inner-container-layout:before,
.u-grey-25.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-25:before,
.u-table-alt-grey-25 tr:nth-child(even) {
  color: #111111;
  background-color: #c0c0c0;
}
.u-input.u-grey-25,
.u-field-input.u-grey-25,
.u-button-style.u-grey-25,
.u-button-style.u-grey-25[class*="u-border-"] {
  color: #111111 !important;
  background-color: #c0c0c0 !important;
}
.u-button-style.u-grey-25:hover,
.u-button-style.u-grey-25[class*="u-border-"]:hover,
.u-button-style.u-grey-25:focus,
.u-button-style.u-grey-25[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-25:active,
.u-button-style.u-button-style.u-grey-25[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-25.active,
.u-button-style.u-button-style.u-grey-25[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-25,
li.active > .u-button-style.u-button-style.u-grey-25[class*="u-border-"] {
  color: #111111 !important;
  background-color: #adadad !important;
}
/* hover */
.u-hover-grey-25:hover,
.u-hover-grey-25[class*="u-border-"]:hover,
.u-hover-grey-25:focus,
.u-hover-grey-25[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-25:hover,
a.u-button-style.u-hover-grey-25.hover,
a.u-button-style.u-hover-grey-25[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-25[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-25,
a.u-button-style:hover > .u-hover-grey-25[class*="u-border-"],
a.u-button-style.u-hover-grey-25:focus,
a.u-button-style.u-hover-grey-25[class*="u-border-"]:focus {
  color: #111111 !important;
  background-color: #c0c0c0 !important;
}
/* active */
.u-active-grey-25.u-active.u-active,
.u-active-grey-25[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-25:active,
a.u-button-style.u-button-style.u-active-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-25.active,
a.u-button-style.u-button-style.u-active-grey-25[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-25,
a.u-button-style.u-button-style.active > .u-active-grey-25[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-25,
li.active > a.u-button-style.u-button-style.u-active-grey-25[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-25:checked {
  color: #111111 !important;
  background-color: #c0c0c0 !important;
}
a.u-link.u-hover-grey-25:hover {
  color: #c0c0c0 !important;
}
.u-grey-30,
.u-body.u-grey-30,
section.u-grey-30:before,
.u-grey-30 > .u-audio-main-layout-wrapper:before,
.u-grey-30 > .u-container-layout:before,
.u-grey-30 > .u-inner-container-layout:before,
.u-grey-30.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-30:before,
.u-table-alt-grey-30 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #b3b3b3;
}
.u-input.u-grey-30,
.u-field-input.u-grey-30,
.u-button-style.u-grey-30,
.u-button-style.u-grey-30[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #b3b3b3 !important;
}
.u-button-style.u-grey-30:hover,
.u-button-style.u-grey-30[class*="u-border-"]:hover,
.u-button-style.u-grey-30:focus,
.u-button-style.u-grey-30[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-30:active,
.u-button-style.u-button-style.u-grey-30[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-30.active,
.u-button-style.u-button-style.u-grey-30[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-30,
li.active > .u-button-style.u-button-style.u-grey-30[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #a1a1a1 !important;
}
/* hover */
.u-hover-grey-30:hover,
.u-hover-grey-30[class*="u-border-"]:hover,
.u-hover-grey-30:focus,
.u-hover-grey-30[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-30:hover,
a.u-button-style.u-hover-grey-30.hover,
a.u-button-style.u-hover-grey-30[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-30[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-30,
a.u-button-style:hover > .u-hover-grey-30[class*="u-border-"],
a.u-button-style.u-hover-grey-30:focus,
a.u-button-style.u-hover-grey-30[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #b3b3b3 !important;
}
/* active */
.u-active-grey-30.u-active.u-active,
.u-active-grey-30[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-30:active,
a.u-button-style.u-button-style.u-active-grey-30[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-30.active,
a.u-button-style.u-button-style.u-active-grey-30[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-30,
a.u-button-style.u-button-style.active > .u-active-grey-30[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-30,
li.active > a.u-button-style.u-button-style.u-active-grey-30[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-30:checked {
  color: var(--color-white) !important;
  background-color: #b3b3b3 !important;
}
a.u-link.u-hover-grey-30:hover {
  color: #b3b3b3 !important;
}
.u-grey-40,
.u-body.u-grey-40,
section.u-grey-40:before,
.u-grey-40 > .u-audio-main-layout-wrapper:before,
.u-grey-40 > .u-container-layout:before,
.u-grey-40 > .u-inner-container-layout:before,
.u-grey-40.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-40:before,
.u-table-alt-grey-40 tr:nth-child(even) {
  color: var(--color-white);
  background-color: var(--color-text-gray)999;
}
.u-input.u-grey-40,
.u-field-input.u-grey-40,
.u-button-style.u-grey-40,
.u-button-style.u-grey-40[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: var(--color-text-gray)999 !important;
}
.u-button-style.u-grey-40:hover,
.u-button-style.u-grey-40[class*="u-border-"]:hover,
.u-button-style.u-grey-40:focus,
.u-button-style.u-grey-40[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-40:active,
.u-button-style.u-button-style.u-grey-40[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-40.active,
.u-button-style.u-button-style.u-grey-40[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-40,
li.active > .u-button-style.u-button-style.u-grey-40[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #8a8a8a !important;
}
/* hover */
.u-hover-grey-40:hover,
.u-hover-grey-40[class*="u-border-"]:hover,
.u-hover-grey-40:focus,
.u-hover-grey-40[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-40:hover,
a.u-button-style.u-hover-grey-40.hover,
a.u-button-style.u-hover-grey-40[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-40[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-40,
a.u-button-style:hover > .u-hover-grey-40[class*="u-border-"],
a.u-button-style.u-hover-grey-40:focus,
a.u-button-style.u-hover-grey-40[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: var(--color-text-gray)999 !important;
}
/* active */
.u-active-grey-40.u-active.u-active,
.u-active-grey-40[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-40:active,
a.u-button-style.u-button-style.u-active-grey-40[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-40.active,
a.u-button-style.u-button-style.u-active-grey-40[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-40,
a.u-button-style.u-button-style.active > .u-active-grey-40[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-40,
li.active > a.u-button-style.u-button-style.u-active-grey-40[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-40:checked {
  color: var(--color-white) !important;
  background-color: var(--color-text-gray)999 !important;
}
a.u-link.u-hover-grey-40:hover {
  color: var(--color-text-gray)999 !important;
}
.u-grey-50,
.u-body.u-grey-50,
section.u-grey-50:before,
.u-grey-50 > .u-audio-main-layout-wrapper:before,
.u-grey-50 > .u-container-layout:before,
.u-grey-50 > .u-inner-container-layout:before,
.u-grey-50.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-50:before,
.u-table-alt-grey-50 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #808080;
}
.u-input.u-grey-50,
.u-field-input.u-grey-50,
.u-button-style.u-grey-50,
.u-button-style.u-grey-50[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #808080 !important;
}
.u-button-style.u-grey-50:hover,
.u-button-style.u-grey-50[class*="u-border-"]:hover,
.u-button-style.u-grey-50:focus,
.u-button-style.u-grey-50[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-50:active,
.u-button-style.u-button-style.u-grey-50[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-50.active,
.u-button-style.u-button-style.u-grey-50[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-50,
li.active > .u-button-style.u-button-style.u-grey-50[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #737373 !important;
}
/* hover */
.u-hover-grey-50:hover,
.u-hover-grey-50[class*="u-border-"]:hover,
.u-hover-grey-50:focus,
.u-hover-grey-50[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-50:hover,
a.u-button-style.u-hover-grey-50.hover,
a.u-button-style.u-hover-grey-50[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-50[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-50,
a.u-button-style:hover > .u-hover-grey-50[class*="u-border-"],
a.u-button-style.u-hover-grey-50:focus,
a.u-button-style.u-hover-grey-50[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #808080 !important;
}
/* active */
.u-active-grey-50.u-active.u-active,
.u-active-grey-50[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-50:active,
a.u-button-style.u-button-style.u-active-grey-50[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-50.active,
a.u-button-style.u-button-style.u-active-grey-50[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-50,
a.u-button-style.u-button-style.active > .u-active-grey-50[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-50,
li.active > a.u-button-style.u-button-style.u-active-grey-50[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-50:checked {
  color: var(--color-white) !important;
  background-color: #808080 !important;
}
a.u-link.u-hover-grey-50:hover {
  color: #808080 !important;
}
.u-grey-60,
.u-body.u-grey-60,
section.u-grey-60:before,
.u-grey-60 > .u-audio-main-layout-wrapper:before,
.u-grey-60 > .u-container-layout:before,
.u-grey-60 > .u-inner-container-layout:before,
.u-grey-60.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-60:before,
.u-table-alt-grey-60 tr:nth-child(even) {
  color: var(--color-white);
  background-color: var(--color-text-light)666;
}
.u-input.u-grey-60,
.u-field-input.u-grey-60,
.u-button-style.u-grey-60,
.u-button-style.u-grey-60[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: var(--color-text-light)666 !important;
}
.u-button-style.u-grey-60:hover,
.u-button-style.u-grey-60[class*="u-border-"]:hover,
.u-button-style.u-grey-60:focus,
.u-button-style.u-grey-60[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-60:active,
.u-button-style.u-button-style.u-grey-60[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-60.active,
.u-button-style.u-button-style.u-grey-60[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-60,
li.active > .u-button-style.u-button-style.u-grey-60[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #5c5c5c !important;
}
/* hover */
.u-hover-grey-60:hover,
.u-hover-grey-60[class*="u-border-"]:hover,
.u-hover-grey-60:focus,
.u-hover-grey-60[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-60:hover,
a.u-button-style.u-hover-grey-60.hover,
a.u-button-style.u-hover-grey-60[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-60[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-60,
a.u-button-style:hover > .u-hover-grey-60[class*="u-border-"],
a.u-button-style.u-hover-grey-60:focus,
a.u-button-style.u-hover-grey-60[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: var(--color-text-light)666 !important;
}
/* active */
.u-active-grey-60.u-active.u-active,
.u-active-grey-60[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-60:active,
a.u-button-style.u-button-style.u-active-grey-60[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-60.active,
a.u-button-style.u-button-style.u-active-grey-60[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-60,
a.u-button-style.u-button-style.active > .u-active-grey-60[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-60,
li.active > a.u-button-style.u-button-style.u-active-grey-60[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-60:checked {
  color: var(--color-white) !important;
  background-color: var(--color-text-light)666 !important;
}
a.u-link.u-hover-grey-60:hover {
  color: var(--color-text-light)666 !important;
}
.u-grey-70,
.u-body.u-grey-70,
section.u-grey-70:before,
.u-grey-70 > .u-audio-main-layout-wrapper:before,
.u-grey-70 > .u-container-layout:before,
.u-grey-70 > .u-inner-container-layout:before,
.u-grey-70.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-70:before,
.u-table-alt-grey-70 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #4d4d4d;
}
.u-input.u-grey-70,
.u-field-input.u-grey-70,
.u-button-style.u-grey-70,
.u-button-style.u-grey-70[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #4d4d4d !important;
}
.u-button-style.u-grey-70:hover,
.u-button-style.u-grey-70[class*="u-border-"]:hover,
.u-button-style.u-grey-70:focus,
.u-button-style.u-grey-70[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-70:active,
.u-button-style.u-button-style.u-grey-70[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-70.active,
.u-button-style.u-button-style.u-grey-70[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-70,
li.active > .u-button-style.u-button-style.u-grey-70[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #454545 !important;
}
/* hover */
.u-hover-grey-70:hover,
.u-hover-grey-70[class*="u-border-"]:hover,
.u-hover-grey-70:focus,
.u-hover-grey-70[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-70:hover,
a.u-button-style.u-hover-grey-70.hover,
a.u-button-style.u-hover-grey-70[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-70[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-70,
a.u-button-style:hover > .u-hover-grey-70[class*="u-border-"],
a.u-button-style.u-hover-grey-70:focus,
a.u-button-style.u-hover-grey-70[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #4d4d4d !important;
}
/* active */
.u-active-grey-70.u-active.u-active,
.u-active-grey-70[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-70:active,
a.u-button-style.u-button-style.u-active-grey-70[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-70.active,
a.u-button-style.u-button-style.u-active-grey-70[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-70,
a.u-button-style.u-button-style.active > .u-active-grey-70[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-70,
li.active > a.u-button-style.u-button-style.u-active-grey-70[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-70:checked {
  color: var(--color-white) !important;
  background-color: #4d4d4d !important;
}
a.u-link.u-hover-grey-70:hover {
  color: #4d4d4d !important;
}
.u-grey-75,
.u-body.u-grey-75,
section.u-grey-75:before,
.u-grey-75 > .u-audio-main-layout-wrapper:before,
.u-grey-75 > .u-container-layout:before,
.u-grey-75 > .u-inner-container-layout:before,
.u-grey-75.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-75:before,
.u-table-alt-grey-75 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #404040;
}
.u-input.u-grey-75,
.u-field-input.u-grey-75,
.u-button-style.u-grey-75,
.u-button-style.u-grey-75[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #404040 !important;
}
.u-button-style.u-grey-75:hover,
.u-button-style.u-grey-75[class*="u-border-"]:hover,
.u-button-style.u-grey-75:focus,
.u-button-style.u-grey-75[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-75:active,
.u-button-style.u-button-style.u-grey-75[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-75.active,
.u-button-style.u-button-style.u-grey-75[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-75,
li.active > .u-button-style.u-button-style.u-grey-75[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #3a3a3a !important;
}
/* hover */
.u-hover-grey-75:hover,
.u-hover-grey-75[class*="u-border-"]:hover,
.u-hover-grey-75:focus,
.u-hover-grey-75[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-75:hover,
a.u-button-style.u-hover-grey-75.hover,
a.u-button-style.u-hover-grey-75[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-75[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-75,
a.u-button-style:hover > .u-hover-grey-75[class*="u-border-"],
a.u-button-style.u-hover-grey-75:focus,
a.u-button-style.u-hover-grey-75[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #404040 !important;
}
/* active */
.u-active-grey-75.u-active.u-active,
.u-active-grey-75[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-75:active,
a.u-button-style.u-button-style.u-active-grey-75[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-75.active,
a.u-button-style.u-button-style.u-active-grey-75[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-75,
a.u-button-style.u-button-style.active > .u-active-grey-75[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-75,
li.active > a.u-button-style.u-button-style.u-active-grey-75[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-75:checked {
  color: var(--color-white) !important;
  background-color: #404040 !important;
}
a.u-link.u-hover-grey-75:hover {
  color: #404040 !important;
}
.u-grey-80,
.u-body.u-grey-80,
section.u-grey-80:before,
.u-grey-80 > .u-audio-main-layout-wrapper:before,
.u-grey-80 > .u-container-layout:before,
.u-grey-80 > .u-inner-container-layout:before,
.u-grey-80.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-80:before,
.u-table-alt-grey-80 tr:nth-child(even) {
  color: var(--color-white);
  background-color: var(--color-text-medium)333;
}
.u-input.u-grey-80,
.u-field-input.u-grey-80,
.u-button-style.u-grey-80,
.u-button-style.u-grey-80[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: var(--color-text-medium)333 !important;
}
.u-button-style.u-grey-80:hover,
.u-button-style.u-grey-80[class*="u-border-"]:hover,
.u-button-style.u-grey-80:focus,
.u-button-style.u-grey-80[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-80:active,
.u-button-style.u-button-style.u-grey-80[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-80.active,
.u-button-style.u-button-style.u-grey-80[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-80,
li.active > .u-button-style.u-button-style.u-grey-80[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #2e2e2e !important;
}
/* hover */
.u-hover-grey-80:hover,
.u-hover-grey-80[class*="u-border-"]:hover,
.u-hover-grey-80:focus,
.u-hover-grey-80[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-80:hover,
a.u-button-style.u-hover-grey-80.hover,
a.u-button-style.u-hover-grey-80[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-80[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-80,
a.u-button-style:hover > .u-hover-grey-80[class*="u-border-"],
a.u-button-style.u-hover-grey-80:focus,
a.u-button-style.u-hover-grey-80[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: var(--color-text-medium)333 !important;
}
/* active */
.u-active-grey-80.u-active.u-active,
.u-active-grey-80[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-80:active,
a.u-button-style.u-button-style.u-active-grey-80[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-80.active,
a.u-button-style.u-button-style.u-active-grey-80[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-80,
a.u-button-style.u-button-style.active > .u-active-grey-80[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-80,
li.active > a.u-button-style.u-button-style.u-active-grey-80[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-80:checked {
  color: var(--color-white) !important;
  background-color: var(--color-text-medium)333 !important;
}
a.u-link.u-hover-grey-80:hover {
  color: var(--color-text-medium)333 !important;
}
.u-grey-90,
.u-body.u-grey-90,
section.u-grey-90:before,
.u-grey-90 > .u-audio-main-layout-wrapper:before,
.u-grey-90 > .u-container-layout:before,
.u-grey-90 > .u-inner-container-layout:before,
.u-grey-90.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-90:before,
.u-table-alt-grey-90 tr:nth-child(even) {
  color: var(--color-white);
  background-color: #1a1a1a;
}
.u-input.u-grey-90,
.u-field-input.u-grey-90,
.u-button-style.u-grey-90,
.u-button-style.u-grey-90[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #1a1a1a !important;
}
.u-button-style.u-grey-90:hover,
.u-button-style.u-grey-90[class*="u-border-"]:hover,
.u-button-style.u-grey-90:focus,
.u-button-style.u-grey-90[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-90:active,
.u-button-style.u-button-style.u-grey-90[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-90.active,
.u-button-style.u-button-style.u-grey-90[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-90,
li.active > .u-button-style.u-button-style.u-grey-90[class*="u-border-"] {
  color: var(--color-white) !important;
  background-color: #171717 !important;
}
/* hover */
.u-hover-grey-90:hover,
.u-hover-grey-90[class*="u-border-"]:hover,
.u-hover-grey-90:focus,
.u-hover-grey-90[class*="u-border-"]:focus,
a.u-button-style.u-hover-grey-90:hover,
a.u-button-style.u-hover-grey-90.hover,
a.u-button-style.u-hover-grey-90[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-90[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-90,
a.u-button-style:hover > .u-hover-grey-90[class*="u-border-"],
a.u-button-style.u-hover-grey-90:focus,
a.u-button-style.u-hover-grey-90[class*="u-border-"]:focus {
  color: var(--color-white) !important;
  background-color: #1a1a1a !important;
}
/* active */
.u-active-grey-90.u-active.u-active,
.u-active-grey-90[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-grey-90:active,
a.u-button-style.u-button-style.u-active-grey-90[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-90.active,
a.u-button-style.u-button-style.u-active-grey-90[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-90,
a.u-button-style.u-button-style.active > .u-active-grey-90[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-90,
li.active > a.u-button-style.u-button-style.u-active-grey-90[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-90:checked {
  color: var(--color-white) !important;
  background-color: #1a1a1a !important;
}
a.u-link.u-hover-grey-90:hover {
  color: #1a1a1a !important;
}
.u-border-color-1-dark-3,
.u-border-color-1-dark-3.u-input,
.u-border-color-1-dark-3.u-field-input.u-field-input,
.u-separator-color-1-dark-3:after {
  border-color: #2a3329;
  stroke: #2a3329;
}
.u-button-style.u-border-color-1-dark-3 {
  border-color: #2a3329 !important;
  color: #2a3329 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1-dark-3:hover,
.u-button-style.u-border-color-1-dark-3:focus {
  border-color: transparent !important;
  color: #262e25 !important;
  background-color: transparent !important;
}
.u-border-hover-color-1-dark-3:hover,
.u-border-hover-color-1-dark-3:focus,
a.u-button-style.u-border-hover-color-1-dark-3:hover,
a.u-button-style:hover > .u-border-hover-color-1-dark-3,
a.u-button-style.u-border-hover-color-1-dark-3:focus {
  color: #2a3329 !important;
  border-color: #2a3329 !important;
}
.u-border-active-color-1-dark-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-1-dark-3:active,
a.u-button-style.u-button-style.u-border-active-color-1-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-1-dark-3,
input.u-field-input.u-field-input.u-border-active-color-1-dark-3:checked {
  color: #2a3329 !important;
  border-color: #2a3329 !important;
}
.u-link.u-border-color-1-dark-3[class*="u-border-"] {
  border-color: #2a3329 !important;
}
.u-link.u-border-color-1-dark-3[class*="u-border-"]:hover {
  border-color: #262e25 !important;
}
.u-border-color-1-dark-2,
.u-border-color-1-dark-2.u-input,
.u-border-color-1-dark-2.u-field-input.u-field-input,
.u-separator-color-1-dark-2:after {
  border-color: #485a46;
  stroke: #485a46;
}
.u-button-style.u-border-color-1-dark-2 {
  border-color: #485a46 !important;
  color: #485a46 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1-dark-2:hover,
.u-button-style.u-border-color-1-dark-2:focus {
  border-color: transparent !important;
  color: #41513f !important;
  background-color: transparent !important;
}
.u-border-hover-color-1-dark-2:hover,
.u-border-hover-color-1-dark-2:focus,
a.u-button-style.u-border-hover-color-1-dark-2:hover,
a.u-button-style:hover > .u-border-hover-color-1-dark-2,
a.u-button-style.u-border-hover-color-1-dark-2:focus {
  color: #485a46 !important;
  border-color: #485a46 !important;
}
.u-border-active-color-1-dark-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-1-dark-2:active,
a.u-button-style.u-button-style.u-border-active-color-1-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-1-dark-2,
input.u-field-input.u-field-input.u-border-active-color-1-dark-2:checked {
  color: #485a46 !important;
  border-color: #485a46 !important;
}
.u-link.u-border-color-1-dark-2[class*="u-border-"] {
  border-color: #485a46 !important;
}
.u-link.u-border-color-1-dark-2[class*="u-border-"]:hover {
  border-color: #41513f !important;
}
.u-border-color-1-dark-1,
.u-border-color-1-dark-1.u-input,
.u-border-color-1-dark-1.u-field-input.u-field-input,
.u-separator-color-1-dark-1:after {
  border-color: #658161;
  stroke: #658161;
}
.u-button-style.u-border-color-1-dark-1 {
  border-color: #658161 !important;
  color: #658161 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1-dark-1:hover,
.u-button-style.u-border-color-1-dark-1:focus {
  border-color: transparent !important;
  color: #5b7457 !important;
  background-color: transparent !important;
}
.u-border-hover-color-1-dark-1:hover,
.u-border-hover-color-1-dark-1:focus,
a.u-button-style.u-border-hover-color-1-dark-1:hover,
a.u-button-style:hover > .u-border-hover-color-1-dark-1,
a.u-button-style.u-border-hover-color-1-dark-1:focus {
  color: #658161 !important;
  border-color: #658161 !important;
}
.u-border-active-color-1-dark-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-1-dark-1:active,
a.u-button-style.u-button-style.u-border-active-color-1-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-1-dark-1,
input.u-field-input.u-field-input.u-border-active-color-1-dark-1:checked {
  color: #658161 !important;
  border-color: #658161 !important;
}
.u-link.u-border-color-1-dark-1[class*="u-border-"] {
  border-color: #658161 !important;
}
.u-link.u-border-color-1-dark-1[class*="u-border-"]:hover {
  border-color: #5b7457 !important;
}
.u-border-color-1,
.u-border-color-1.u-input,
.u-border-color-1.u-field-input.u-field-input,
.u-separator-color-1:after {
  border-color: #9ab596;
  stroke: #9ab596;
}
.u-button-style.u-border-color-1 {
  border-color: #9ab596 !important;
  color: #9ab596 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1:hover,
.u-button-style.u-border-color-1:focus {
  border-color: transparent !important;
  color: #87a783 !important;
  background-color: transparent !important;
}
.u-border-hover-color-1:hover,
.u-border-hover-color-1:focus,
a.u-button-style.u-border-hover-color-1:hover,
a.u-button-style:hover > .u-border-hover-color-1,
a.u-button-style.u-border-hover-color-1:focus {
  color: #9ab596 !important;
  border-color: #9ab596 !important;
}
.u-border-active-color-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-1:active,
a.u-button-style.u-button-style.u-border-active-color-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-1,
input.u-field-input.u-field-input.u-border-active-color-1:checked {
  color: #9ab596 !important;
  border-color: #9ab596 !important;
}
.u-link.u-border-color-1[class*="u-border-"] {
  border-color: #9ab596 !important;
}
.u-link.u-border-color-1[class*="u-border-"]:hover {
  border-color: #87a783 !important;
}
.u-border-color-1-light-1,
.u-border-color-1-light-1.u-input,
.u-border-color-1-light-1.u-field-input.u-field-input,
.u-separator-color-1-light-1:after {
  border-color: #b6ccb2;
  stroke: #b6ccb2;
}
.u-button-style.u-border-color-1-light-1 {
  border-color: #b6ccb2 !important;
  color: #b6ccb2 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1-light-1:hover,
.u-button-style.u-border-color-1-light-1:focus {
  border-color: transparent !important;
  color: #a0bd9b !important;
  background-color: transparent !important;
}
.u-border-hover-color-1-light-1:hover,
.u-border-hover-color-1-light-1:focus,
a.u-button-style.u-border-hover-color-1-light-1:hover,
a.u-button-style:hover > .u-border-hover-color-1-light-1,
a.u-button-style.u-border-hover-color-1-light-1:focus {
  color: #b6ccb2 !important;
  border-color: #b6ccb2 !important;
}
.u-border-active-color-1-light-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-1-light-1:active,
a.u-button-style.u-button-style.u-border-active-color-1-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-1-light-1,
input.u-field-input.u-field-input.u-border-active-color-1-light-1:checked {
  color: #b6ccb2 !important;
  border-color: #b6ccb2 !important;
}
.u-link.u-border-color-1-light-1[class*="u-border-"] {
  border-color: #b6ccb2 !important;
}
.u-link.u-border-color-1-light-1[class*="u-border-"]:hover {
  border-color: #a0bd9b !important;
}
.u-border-color-1-light-2,
.u-border-color-1-light-2.u-input,
.u-border-color-1-light-2.u-field-input.u-field-input,
.u-separator-color-1-light-2:after {
  border-color: #d4e2d2;
  stroke: #d4e2d2;
}
.u-button-style.u-border-color-1-light-2 {
  border-color: #d4e2d2 !important;
  color: #d4e2d2 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1-light-2:hover,
.u-button-style.u-border-color-1-light-2:focus {
  border-color: transparent !important;
  color: #bbd1b7 !important;
  background-color: transparent !important;
}
.u-border-hover-color-1-light-2:hover,
.u-border-hover-color-1-light-2:focus,
a.u-button-style.u-border-hover-color-1-light-2:hover,
a.u-button-style:hover > .u-border-hover-color-1-light-2,
a.u-button-style.u-border-hover-color-1-light-2:focus {
  color: #d4e2d2 !important;
  border-color: #d4e2d2 !important;
}
.u-border-active-color-1-light-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-1-light-2:active,
a.u-button-style.u-button-style.u-border-active-color-1-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-1-light-2,
input.u-field-input.u-field-input.u-border-active-color-1-light-2:checked {
  color: #d4e2d2 !important;
  border-color: #d4e2d2 !important;
}
.u-link.u-border-color-1-light-2[class*="u-border-"] {
  border-color: #d4e2d2 !important;
}
.u-link.u-border-color-1-light-2[class*="u-border-"]:hover {
  border-color: #bbd1b7 !important;
}
.u-border-color-1-light-3,
.u-border-color-1-light-3.u-input,
.u-border-color-1-light-3.u-field-input.u-field-input,
.u-separator-color-1-light-3:after {
  border-color: #f4f8f3;
  stroke: #f4f8f3;
}
.u-button-style.u-border-color-1-light-3 {
  border-color: #f4f8f3 !important;
  color: #f4f8f3 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1-light-3:hover,
.u-button-style.u-border-color-1-light-3:focus {
  border-color: transparent !important;
  color: #d8e6d4 !important;
  background-color: transparent !important;
}
.u-border-hover-color-1-light-3:hover,
.u-border-hover-color-1-light-3:focus,
a.u-button-style.u-border-hover-color-1-light-3:hover,
a.u-button-style:hover > .u-border-hover-color-1-light-3,
a.u-button-style.u-border-hover-color-1-light-3:focus {
  color: #f4f8f3 !important;
  border-color: #f4f8f3 !important;
}
.u-border-active-color-1-light-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-1-light-3:active,
a.u-button-style.u-button-style.u-border-active-color-1-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-1-light-3,
input.u-field-input.u-field-input.u-border-active-color-1-light-3:checked {
  color: #f4f8f3 !important;
  border-color: #f4f8f3 !important;
}
.u-link.u-border-color-1-light-3[class*="u-border-"] {
  border-color: #f4f8f3 !important;
}
.u-link.u-border-color-1-light-3[class*="u-border-"]:hover {
  border-color: #d8e6d4 !important;
}
.u-border-color-1-base,
.u-border-color-1-base.u-input,
.u-border-color-1-base.u-field-input.u-field-input,
.u-separator-color-1-base:after {
  border-color: #658161;
  stroke: #658161;
}
.u-button-style.u-border-color-1-base {
  border-color: #658161 !important;
  color: #658161 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1-base:hover,
.u-button-style.u-border-color-1-base:focus {
  border-color: transparent !important;
  color: #5b7457 !important;
  background-color: transparent !important;
}
.u-border-hover-color-1-base:hover,
.u-border-hover-color-1-base:focus,
a.u-button-style.u-border-hover-color-1-base:hover,
a.u-button-style:hover > .u-border-hover-color-1-base,
a.u-button-style.u-border-hover-color-1-base:focus {
  color: #658161 !important;
  border-color: #658161 !important;
}
.u-border-active-color-1-base.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-1-base:active,
a.u-button-style.u-button-style.u-border-active-color-1-base.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1-base,
li.active > a.u-button-style.u-button-style.u-border-active-color-1-base,
input.u-field-input.u-field-input.u-border-active-color-1-base:checked {
  color: #658161 !important;
  border-color: #658161 !important;
}
.u-link.u-border-color-1-base[class*="u-border-"] {
  border-color: #658161 !important;
}
.u-link.u-border-color-1-base[class*="u-border-"]:hover {
  border-color: #5b7457 !important;
}
.u-border-color-2-dark-3,
.u-border-color-2-dark-3.u-input,
.u-border-color-2-dark-3.u-field-input.u-field-input,
.u-separator-color-2-dark-3:after {
  border-color: #332929;
  stroke: #332929;
}
.u-button-style.u-border-color-2-dark-3 {
  border-color: #332929 !important;
  color: #332929 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2-dark-3:hover,
.u-button-style.u-border-color-2-dark-3:focus {
  border-color: transparent !important;
  color: #2e2525 !important;
  background-color: transparent !important;
}
.u-border-hover-color-2-dark-3:hover,
.u-border-hover-color-2-dark-3:focus,
a.u-button-style.u-border-hover-color-2-dark-3:hover,
a.u-button-style:hover > .u-border-hover-color-2-dark-3,
a.u-button-style.u-border-hover-color-2-dark-3:focus {
  color: #332929 !important;
  border-color: #332929 !important;
}
.u-border-active-color-2-dark-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-2-dark-3:active,
a.u-button-style.u-button-style.u-border-active-color-2-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-2-dark-3,
input.u-field-input.u-field-input.u-border-active-color-2-dark-3:checked {
  color: #332929 !important;
  border-color: #332929 !important;
}
.u-link.u-border-color-2-dark-3[class*="u-border-"] {
  border-color: #332929 !important;
}
.u-link.u-border-color-2-dark-3[class*="u-border-"]:hover {
  border-color: #2e2525 !important;
}
.u-border-color-2-dark-2,
.u-border-color-2-dark-2.u-input,
.u-border-color-2-dark-2.u-field-input.u-field-input,
.u-separator-color-2-dark-2:after {
  border-color: #6b4748;
  stroke: #6b4748;
}
.u-button-style.u-border-color-2-dark-2 {
  border-color: #6b4748 !important;
  color: #6b4748 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2-dark-2:hover,
.u-button-style.u-border-color-2-dark-2:focus {
  border-color: transparent !important;
  color: #604041 !important;
  background-color: transparent !important;
}
.u-border-hover-color-2-dark-2:hover,
.u-border-hover-color-2-dark-2:focus,
a.u-button-style.u-border-hover-color-2-dark-2:hover,
a.u-button-style:hover > .u-border-hover-color-2-dark-2,
a.u-button-style.u-border-hover-color-2-dark-2:focus {
  color: #6b4748 !important;
  border-color: #6b4748 !important;
}
.u-border-active-color-2-dark-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-2-dark-2:active,
a.u-button-style.u-button-style.u-border-active-color-2-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-2-dark-2,
input.u-field-input.u-field-input.u-border-active-color-2-dark-2:checked {
  color: #6b4748 !important;
  border-color: #6b4748 !important;
}
.u-link.u-border-color-2-dark-2[class*="u-border-"] {
  border-color: #6b4748 !important;
}
.u-link.u-border-color-2-dark-2[class*="u-border-"]:hover {
  border-color: #604041 !important;
}
.u-border-color-2-dark-1,
.u-border-color-2-dark-1.u-input,
.u-border-color-2-dark-1.u-field-input.u-field-input,
.u-separator-color-2-dark-1:after {
  border-color: #a35559;
  stroke: #a35559;
}
.u-button-style.u-border-color-2-dark-1 {
  border-color: #a35559 !important;
  color: #a35559 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2-dark-1:hover,
.u-button-style.u-border-color-2-dark-1:focus {
  border-color: transparent !important;
  color: #934c50 !important;
  background-color: transparent !important;
}
.u-border-hover-color-2-dark-1:hover,
.u-border-hover-color-2-dark-1:focus,
a.u-button-style.u-border-hover-color-2-dark-1:hover,
a.u-button-style:hover > .u-border-hover-color-2-dark-1,
a.u-button-style.u-border-hover-color-2-dark-1:focus {
  color: #a35559 !important;
  border-color: #a35559 !important;
}
.u-border-active-color-2-dark-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-2-dark-1:active,
a.u-button-style.u-button-style.u-border-active-color-2-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-2-dark-1,
input.u-field-input.u-field-input.u-border-active-color-2-dark-1:checked {
  color: #a35559 !important;
  border-color: #a35559 !important;
}
.u-link.u-border-color-2-dark-1[class*="u-border-"] {
  border-color: #a35559 !important;
}
.u-link.u-border-color-2-dark-1[class*="u-border-"]:hover {
  border-color: #934c50 !important;
}
.u-border-color-2,
.u-border-color-2.u-input,
.u-border-color-2.u-field-input.u-field-input,
.u-separator-color-2:after {
  border-color: #db545a;
  stroke: #db545a;
}
.u-button-style.u-border-color-2 {
  border-color: #db545a !important;
  color: #db545a !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2:hover,
.u-button-style.u-border-color-2:focus {
  border-color: transparent !important;
  color: #d63b42 !important;
  background-color: transparent !important;
}
.u-border-hover-color-2:hover,
.u-border-hover-color-2:focus,
a.u-button-style.u-border-hover-color-2:hover,
a.u-button-style:hover > .u-border-hover-color-2,
a.u-button-style.u-border-hover-color-2:focus {
  color: #db545a !important;
  border-color: #db545a !important;
}
.u-border-active-color-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-2:active,
a.u-button-style.u-button-style.u-border-active-color-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-2,
input.u-field-input.u-field-input.u-border-active-color-2:checked {
  color: #db545a !important;
  border-color: #db545a !important;
}
.u-link.u-border-color-2[class*="u-border-"] {
  border-color: #db545a !important;
}
.u-link.u-border-color-2[class*="u-border-"]:hover {
  border-color: #d63b42 !important;
}
.u-border-color-2-light-1,
.u-border-color-2-light-1.u-input,
.u-border-color-2-light-1.u-field-input.u-field-input,
.u-separator-color-2-light-1:after {
  border-color: #e68387;
  stroke: #e68387;
}
.u-button-style.u-border-color-2-light-1 {
  border-color: #e68387 !important;
  color: #e68387 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2-light-1:hover,
.u-button-style.u-border-color-2-light-1:focus {
  border-color: transparent !important;
  color: #e0656a !important;
  background-color: transparent !important;
}
.u-border-hover-color-2-light-1:hover,
.u-border-hover-color-2-light-1:focus,
a.u-button-style.u-border-hover-color-2-light-1:hover,
a.u-button-style:hover > .u-border-hover-color-2-light-1,
a.u-button-style.u-border-hover-color-2-light-1:focus {
  color: #e68387 !important;
  border-color: #e68387 !important;
}
.u-border-active-color-2-light-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-2-light-1:active,
a.u-button-style.u-button-style.u-border-active-color-2-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-2-light-1,
input.u-field-input.u-field-input.u-border-active-color-2-light-1:checked {
  color: #e68387 !important;
  border-color: #e68387 !important;
}
.u-link.u-border-color-2-light-1[class*="u-border-"] {
  border-color: #e68387 !important;
}
.u-link.u-border-color-2-light-1[class*="u-border-"]:hover {
  border-color: #e0656a !important;
}
.u-border-color-2-light-2,
.u-border-color-2-light-2.u-input,
.u-border-color-2-light-2.u-field-input.u-field-input,
.u-separator-color-2-light-2:after {
  border-color: #f1b5b8;
  stroke: #f1b5b8;
}
.u-button-style.u-border-color-2-light-2 {
  border-color: #f1b5b8 !important;
  color: #f1b5b8 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2-light-2:hover,
.u-button-style.u-border-color-2-light-2:focus {
  border-color: transparent !important;
  color: #ea9296 !important;
  background-color: transparent !important;
}
.u-border-hover-color-2-light-2:hover,
.u-border-hover-color-2-light-2:focus,
a.u-button-style.u-border-hover-color-2-light-2:hover,
a.u-button-style:hover > .u-border-hover-color-2-light-2,
a.u-button-style.u-border-hover-color-2-light-2:focus {
  color: #f1b5b8 !important;
  border-color: #f1b5b8 !important;
}
.u-border-active-color-2-light-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-2-light-2:active,
a.u-button-style.u-button-style.u-border-active-color-2-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-2-light-2,
input.u-field-input.u-field-input.u-border-active-color-2-light-2:checked {
  color: #f1b5b8 !important;
  border-color: #f1b5b8 !important;
}
.u-link.u-border-color-2-light-2[class*="u-border-"] {
  border-color: #f1b5b8 !important;
}
.u-link.u-border-color-2-light-2[class*="u-border-"]:hover {
  border-color: #ea9296 !important;
}
.u-border-color-2-light-3,
.u-border-color-2-light-3.u-input,
.u-border-color-2-light-3.u-field-input.u-field-input,
.u-separator-color-2-light-3:after {
  border-color: #fbeced;
  stroke: #fbeced;
}
.u-button-style.u-border-color-2-light-3 {
  border-color: #fbeced !important;
  color: #fbeced !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2-light-3:hover,
.u-button-style.u-border-color-2-light-3:focus {
  border-color: transparent !important;
  color: #f3c4c7 !important;
  background-color: transparent !important;
}
.u-border-hover-color-2-light-3:hover,
.u-border-hover-color-2-light-3:focus,
a.u-button-style.u-border-hover-color-2-light-3:hover,
a.u-button-style:hover > .u-border-hover-color-2-light-3,
a.u-button-style.u-border-hover-color-2-light-3:focus {
  color: #fbeced !important;
  border-color: #fbeced !important;
}
.u-border-active-color-2-light-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-2-light-3:active,
a.u-button-style.u-button-style.u-border-active-color-2-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-2-light-3,
input.u-field-input.u-field-input.u-border-active-color-2-light-3:checked {
  color: #fbeced !important;
  border-color: #fbeced !important;
}
.u-link.u-border-color-2-light-3[class*="u-border-"] {
  border-color: #fbeced !important;
}
.u-link.u-border-color-2-light-3[class*="u-border-"]:hover {
  border-color: #f3c4c7 !important;
}
.u-border-color-2-base,
.u-border-color-2-base.u-input,
.u-border-color-2-base.u-field-input.u-field-input,
.u-separator-color-2-base:after {
  border-color: #db545a;
  stroke: #db545a;
}
.u-button-style.u-border-color-2-base {
  border-color: #db545a !important;
  color: #db545a !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2-base:hover,
.u-button-style.u-border-color-2-base:focus {
  border-color: transparent !important;
  color: #d63b42 !important;
  background-color: transparent !important;
}
.u-border-hover-color-2-base:hover,
.u-border-hover-color-2-base:focus,
a.u-button-style.u-border-hover-color-2-base:hover,
a.u-button-style:hover > .u-border-hover-color-2-base,
a.u-button-style.u-border-hover-color-2-base:focus {
  color: #db545a !important;
  border-color: #db545a !important;
}
.u-border-active-color-2-base.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-2-base:active,
a.u-button-style.u-button-style.u-border-active-color-2-base.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2-base,
li.active > a.u-button-style.u-button-style.u-border-active-color-2-base,
input.u-field-input.u-field-input.u-border-active-color-2-base:checked {
  color: #db545a !important;
  border-color: #db545a !important;
}
.u-link.u-border-color-2-base[class*="u-border-"] {
  border-color: #db545a !important;
}
.u-link.u-border-color-2-base[class*="u-border-"]:hover {
  border-color: #d63b42 !important;
}
.u-border-color-3-dark-3,
.u-border-color-3-dark-3.u-input,
.u-border-color-3-dark-3.u-field-input.u-field-input,
.u-separator-color-3-dark-3:after {
  border-color: var(--color-text-medium)129;
  stroke: var(--color-text-medium)129;
}
.u-button-style.u-border-color-3-dark-3 {
  border-color: var(--color-text-medium)129 !important;
  color: var(--color-text-medium)129 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3-dark-3:hover,
.u-button-style.u-border-color-3-dark-3:focus {
  border-color: transparent !important;
  color: #2e2c25 !important;
  background-color: transparent !important;
}
.u-border-hover-color-3-dark-3:hover,
.u-border-hover-color-3-dark-3:focus,
a.u-button-style.u-border-hover-color-3-dark-3:hover,
a.u-button-style:hover > .u-border-hover-color-3-dark-3,
a.u-button-style.u-border-hover-color-3-dark-3:focus {
  color: var(--color-text-medium)129 !important;
  border-color: var(--color-text-medium)129 !important;
}
.u-border-active-color-3-dark-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-3-dark-3:active,
a.u-button-style.u-button-style.u-border-active-color-3-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-3-dark-3,
input.u-field-input.u-field-input.u-border-active-color-3-dark-3:checked {
  color: var(--color-text-medium)129 !important;
  border-color: var(--color-text-medium)129 !important;
}
.u-link.u-border-color-3-dark-3[class*="u-border-"] {
  border-color: var(--color-text-medium)129 !important;
}
.u-link.u-border-color-3-dark-3[class*="u-border-"]:hover {
  border-color: #2e2c25 !important;
}
.u-border-color-3-dark-2,
.u-border-color-3-dark-2.u-input,
.u-border-color-3-dark-2.u-field-input.u-field-input,
.u-separator-color-3-dark-2:after {
  border-color: #72683f;
  stroke: #72683f;
}
.u-button-style.u-border-color-3-dark-2 {
  border-color: #72683f !important;
  color: #72683f !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3-dark-2:hover,
.u-button-style.u-border-color-3-dark-2:focus {
  border-color: transparent !important;
  color: #675e39 !important;
  background-color: transparent !important;
}
.u-border-hover-color-3-dark-2:hover,
.u-border-hover-color-3-dark-2:focus,
a.u-button-style.u-border-hover-color-3-dark-2:hover,
a.u-button-style:hover > .u-border-hover-color-3-dark-2,
a.u-button-style.u-border-hover-color-3-dark-2:focus {
  color: #72683f !important;
  border-color: #72683f !important;
}
.u-border-active-color-3-dark-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-3-dark-2:active,
a.u-button-style.u-button-style.u-border-active-color-3-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-3-dark-2,
input.u-field-input.u-field-input.u-border-active-color-3-dark-2:checked {
  color: #72683f !important;
  border-color: #72683f !important;
}
.u-link.u-border-color-3-dark-2[class*="u-border-"] {
  border-color: #72683f !important;
}
.u-link.u-border-color-3-dark-2[class*="u-border-"]:hover {
  border-color: #675e39 !important;
}
.u-border-color-3-dark-1,
.u-border-color-3-dark-1.u-input,
.u-border-color-3-dark-1.u-field-input.u-field-input,
.u-separator-color-3-dark-1:after {
  border-color: #b29a36;
  stroke: #b29a36;
}
.u-button-style.u-border-color-3-dark-1 {
  border-color: #b29a36 !important;
  color: #b29a36 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3-dark-1:hover,
.u-button-style.u-border-color-3-dark-1:focus {
  border-color: transparent !important;
  color: #a08b31 !important;
  background-color: transparent !important;
}
.u-border-hover-color-3-dark-1:hover,
.u-border-hover-color-3-dark-1:focus,
a.u-button-style.u-border-hover-color-3-dark-1:hover,
a.u-button-style:hover > .u-border-hover-color-3-dark-1,
a.u-button-style.u-border-hover-color-3-dark-1:focus {
  color: #b29a36 !important;
  border-color: #b29a36 !important;
}
.u-border-active-color-3-dark-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-3-dark-1:active,
a.u-button-style.u-button-style.u-border-active-color-3-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-3-dark-1,
input.u-field-input.u-field-input.u-border-active-color-3-dark-1:checked {
  color: #b29a36 !important;
  border-color: #b29a36 !important;
}
.u-link.u-border-color-3-dark-1[class*="u-border-"] {
  border-color: #b29a36 !important;
}
.u-link.u-border-color-3-dark-1[class*="u-border-"]:hover {
  border-color: #a08b31 !important;
}
.u-border-color-3,
.u-border-color-3.u-input,
.u-border-color-3.u-field-input.u-field-input,
.u-separator-color-3:after {
  border-color: #f1c50e;
  stroke: #f1c50e;
}
.u-button-style.u-border-color-3 {
  border-color: #f1c50e !important;
  color: #f1c50e !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3:hover,
.u-button-style.u-border-color-3:focus {
  border-color: transparent !important;
  color: #d9b10d !important;
  background-color: transparent !important;
}
.u-border-hover-color-3:hover,
.u-border-hover-color-3:focus,
a.u-button-style.u-border-hover-color-3:hover,
a.u-button-style:hover > .u-border-hover-color-3,
a.u-button-style.u-border-hover-color-3:focus {
  color: #f1c50e !important;
  border-color: #f1c50e !important;
}
.u-border-active-color-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-3:active,
a.u-button-style.u-button-style.u-border-active-color-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-3,
input.u-field-input.u-field-input.u-border-active-color-3:checked {
  color: #f1c50e !important;
  border-color: #f1c50e !important;
}
.u-link.u-border-color-3[class*="u-border-"] {
  border-color: #f1c50e !important;
}
.u-link.u-border-color-3[class*="u-border-"]:hover {
  border-color: #d9b10d !important;
}
.u-border-color-3-light-1,
.u-border-color-3-light-1.u-input,
.u-border-color-3-light-1.u-field-input.u-field-input,
.u-separator-color-3-light-1:after {
  border-color: #f5d654;
  stroke: #f5d654;
}
.u-button-style.u-border-color-3-light-1 {
  border-color: #f5d654 !important;
  color: #f5d654 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3-light-1:hover,
.u-button-style.u-border-color-3-light-1:focus {
  border-color: transparent !important;
  color: #f3cf35 !important;
  background-color: transparent !important;
}
.u-border-hover-color-3-light-1:hover,
.u-border-hover-color-3-light-1:focus,
a.u-button-style.u-border-hover-color-3-light-1:hover,
a.u-button-style:hover > .u-border-hover-color-3-light-1,
a.u-button-style.u-border-hover-color-3-light-1:focus {
  color: #f5d654 !important;
  border-color: #f5d654 !important;
}
.u-border-active-color-3-light-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-3-light-1:active,
a.u-button-style.u-button-style.u-border-active-color-3-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-3-light-1,
input.u-field-input.u-field-input.u-border-active-color-3-light-1:checked {
  color: #f5d654 !important;
  border-color: #f5d654 !important;
}
.u-link.u-border-color-3-light-1[class*="u-border-"] {
  border-color: #f5d654 !important;
}
.u-link.u-border-color-3-light-1[class*="u-border-"]:hover {
  border-color: #f3cf35 !important;
}
.u-border-color-3-light-2,
.u-border-color-3-light-2.u-input,
.u-border-color-3-light-2.u-field-input.u-field-input,
.u-separator-color-3-light-2:after {
  border-color: #f9e79b;
  stroke: #f9e79b;
}
.u-button-style.u-border-color-3-light-2 {
  border-color: #f9e79b !important;
  color: #f9e79b !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3-light-2:hover,
.u-button-style.u-border-color-3-light-2:focus {
  border-color: transparent !important;
  color: #f7de75 !important;
  background-color: transparent !important;
}
.u-border-hover-color-3-light-2:hover,
.u-border-hover-color-3-light-2:focus,
a.u-button-style.u-border-hover-color-3-light-2:hover,
a.u-button-style:hover > .u-border-hover-color-3-light-2,
a.u-button-style.u-border-hover-color-3-light-2:focus {
  color: #f9e79b !important;
  border-color: #f9e79b !important;
}
.u-border-active-color-3-light-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-3-light-2:active,
a.u-button-style.u-button-style.u-border-active-color-3-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-3-light-2,
input.u-field-input.u-field-input.u-border-active-color-3-light-2:checked {
  color: #f9e79b !important;
  border-color: #f9e79b !important;
}
.u-link.u-border-color-3-light-2[class*="u-border-"] {
  border-color: #f9e79b !important;
}
.u-link.u-border-color-3-light-2[class*="u-border-"]:hover {
  border-color: #f7de75 !important;
}
.u-border-color-3-light-3,
.u-border-color-3-light-3.u-input,
.u-border-color-3-light-3.u-field-input.u-field-input,
.u-separator-color-3-light-3:after {
  border-color: #fef9e6;
  stroke: #fef9e6;
}
.u-button-style.u-border-color-3-light-3 {
  border-color: #fef9e6 !important;
  color: #fef9e6 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3-light-3:hover,
.u-button-style.u-border-color-3-light-3:focus {
  border-color: transparent !important;
  color: #fceeb7 !important;
  background-color: transparent !important;
}
.u-border-hover-color-3-light-3:hover,
.u-border-hover-color-3-light-3:focus,
a.u-button-style.u-border-hover-color-3-light-3:hover,
a.u-button-style:hover > .u-border-hover-color-3-light-3,
a.u-button-style.u-border-hover-color-3-light-3:focus {
  color: #fef9e6 !important;
  border-color: #fef9e6 !important;
}
.u-border-active-color-3-light-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-3-light-3:active,
a.u-button-style.u-button-style.u-border-active-color-3-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-3-light-3,
input.u-field-input.u-field-input.u-border-active-color-3-light-3:checked {
  color: #fef9e6 !important;
  border-color: #fef9e6 !important;
}
.u-link.u-border-color-3-light-3[class*="u-border-"] {
  border-color: #fef9e6 !important;
}
.u-link.u-border-color-3-light-3[class*="u-border-"]:hover {
  border-color: #fceeb7 !important;
}
.u-border-color-3-base,
.u-border-color-3-base.u-input,
.u-border-color-3-base.u-field-input.u-field-input,
.u-separator-color-3-base:after {
  border-color: #f1c50e;
  stroke: #f1c50e;
}
.u-button-style.u-border-color-3-base {
  border-color: #f1c50e !important;
  color: #f1c50e !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3-base:hover,
.u-button-style.u-border-color-3-base:focus {
  border-color: transparent !important;
  color: #d9b10d !important;
  background-color: transparent !important;
}
.u-border-hover-color-3-base:hover,
.u-border-hover-color-3-base:focus,
a.u-button-style.u-border-hover-color-3-base:hover,
a.u-button-style:hover > .u-border-hover-color-3-base,
a.u-button-style.u-border-hover-color-3-base:focus {
  color: #f1c50e !important;
  border-color: #f1c50e !important;
}
.u-border-active-color-3-base.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-3-base:active,
a.u-button-style.u-button-style.u-border-active-color-3-base.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3-base,
li.active > a.u-button-style.u-button-style.u-border-active-color-3-base,
input.u-field-input.u-field-input.u-border-active-color-3-base:checked {
  color: #f1c50e !important;
  border-color: #f1c50e !important;
}
.u-link.u-border-color-3-base[class*="u-border-"] {
  border-color: #f1c50e !important;
}
.u-link.u-border-color-3-base[class*="u-border-"]:hover {
  border-color: #d9b10d !important;
}
.u-border-color-4-dark-3,
.u-border-color-4-dark-3.u-input,
.u-border-color-4-dark-3.u-field-input.u-field-input,
.u-separator-color-4-dark-3:after {
  border-color: #293332;
  stroke: #293332;
}
.u-button-style.u-border-color-4-dark-3 {
  border-color: #293332 !important;
  color: #293332 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4-dark-3:hover,
.u-button-style.u-border-color-4-dark-3:focus {
  border-color: transparent !important;
  color: #252e2d !important;
  background-color: transparent !important;
}
.u-border-hover-color-4-dark-3:hover,
.u-border-hover-color-4-dark-3:focus,
a.u-button-style.u-border-hover-color-4-dark-3:hover,
a.u-button-style:hover > .u-border-hover-color-4-dark-3,
a.u-button-style.u-border-hover-color-4-dark-3:focus {
  color: #293332 !important;
  border-color: #293332 !important;
}
.u-border-active-color-4-dark-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-4-dark-3:active,
a.u-button-style.u-button-style.u-border-active-color-4-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-4-dark-3,
input.u-field-input.u-field-input.u-border-active-color-4-dark-3:checked {
  color: #293332 !important;
  border-color: #293332 !important;
}
.u-link.u-border-color-4-dark-3[class*="u-border-"] {
  border-color: #293332 !important;
}
.u-link.u-border-color-4-dark-3[class*="u-border-"]:hover {
  border-color: #252e2d !important;
}
.u-border-color-4-dark-2,
.u-border-color-4-dark-2.u-input,
.u-border-color-4-dark-2.u-field-input.u-field-input,
.u-separator-color-4-dark-2:after {
  border-color: #41807c;
  stroke: #41807c;
}
.u-button-style.u-border-color-4-dark-2 {
  border-color: #41807c !important;
  color: #41807c !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4-dark-2:hover,
.u-button-style.u-border-color-4-dark-2:focus {
  border-color: transparent !important;
  color: #3a7370 !important;
  background-color: transparent !important;
}
.u-border-hover-color-4-dark-2:hover,
.u-border-hover-color-4-dark-2:focus,
a.u-button-style.u-border-hover-color-4-dark-2:hover,
a.u-button-style:hover > .u-border-hover-color-4-dark-2,
a.u-button-style.u-border-hover-color-4-dark-2:focus {
  color: #41807c !important;
  border-color: #41807c !important;
}
.u-border-active-color-4-dark-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-4-dark-2:active,
a.u-button-style.u-button-style.u-border-active-color-4-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-4-dark-2,
input.u-field-input.u-field-input.u-border-active-color-4-dark-2:checked {
  color: #41807c !important;
  border-color: #41807c !important;
}
.u-link.u-border-color-4-dark-2[class*="u-border-"] {
  border-color: #41807c !important;
}
.u-link.u-border-color-4-dark-2[class*="u-border-"]:hover {
  border-color: #3a7370 !important;
}
.u-border-color-4-dark-1,
.u-border-color-4-dark-1.u-input,
.u-border-color-4-dark-1.u-field-input.u-field-input,
.u-separator-color-4-dark-1:after {
  border-color: #2cccc4;
  stroke: #2cccc4;
}
.u-button-style.u-border-color-4-dark-1 {
  border-color: #2cccc4 !important;
  color: #2cccc4 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4-dark-1:hover,
.u-button-style.u-border-color-4-dark-1:focus {
  border-color: transparent !important;
  color: #28b8b0 !important;
  background-color: transparent !important;
}
.u-border-hover-color-4-dark-1:hover,
.u-border-hover-color-4-dark-1:focus,
a.u-button-style.u-border-hover-color-4-dark-1:hover,
a.u-button-style:hover > .u-border-hover-color-4-dark-1,
a.u-button-style.u-border-hover-color-4-dark-1:focus {
  color: #2cccc4 !important;
  border-color: #2cccc4 !important;
}
.u-border-active-color-4-dark-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-4-dark-1:active,
a.u-button-style.u-button-style.u-border-active-color-4-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-4-dark-1,
input.u-field-input.u-field-input.u-border-active-color-4-dark-1:checked {
  color: #2cccc4 !important;
  border-color: #2cccc4 !important;
}
.u-link.u-border-color-4-dark-1[class*="u-border-"] {
  border-color: #2cccc4 !important;
}
.u-link.u-border-color-4-dark-1[class*="u-border-"]:hover {
  border-color: #28b8b0 !important;
}
.u-border-color-4,
.u-border-color-4.u-input,
.u-border-color-4.u-field-input.u-field-input,
.u-separator-color-4:after {
  border-color: #3be8e0;
  stroke: #3be8e0;
}
.u-button-style.u-border-color-4 {
  border-color: #3be8e0 !important;
  color: #3be8e0 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4:hover,
.u-button-style.u-border-color-4:focus {
  border-color: transparent !important;
  color: #21e5dc !important;
  background-color: transparent !important;
}
.u-border-hover-color-4:hover,
.u-border-hover-color-4:focus,
a.u-button-style.u-border-hover-color-4:hover,
a.u-button-style:hover > .u-border-hover-color-4,
a.u-button-style.u-border-hover-color-4:focus {
  color: #3be8e0 !important;
  border-color: #3be8e0 !important;
}
.u-border-active-color-4.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-4:active,
a.u-button-style.u-button-style.u-border-active-color-4.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4,
li.active > a.u-button-style.u-button-style.u-border-active-color-4,
input.u-field-input.u-field-input.u-border-active-color-4:checked {
  color: #3be8e0 !important;
  border-color: #3be8e0 !important;
}
.u-link.u-border-color-4[class*="u-border-"] {
  border-color: #3be8e0 !important;
}
.u-link.u-border-color-4[class*="u-border-"]:hover {
  border-color: #21e5dc !important;
}
.u-border-color-4-light-1,
.u-border-color-4-light-1.u-input,
.u-border-color-4-light-1.u-field-input.u-field-input,
.u-separator-color-4-light-1:after {
  border-color: #72efe9;
  stroke: #72efe9;
}
.u-button-style.u-border-color-4-light-1 {
  border-color: #72efe9 !important;
  color: #72efe9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4-light-1:hover,
.u-button-style.u-border-color-4-light-1:focus {
  border-color: transparent !important;
  color: #52ebe4 !important;
  background-color: transparent !important;
}
.u-border-hover-color-4-light-1:hover,
.u-border-hover-color-4-light-1:focus,
a.u-button-style.u-border-hover-color-4-light-1:hover,
a.u-button-style:hover > .u-border-hover-color-4-light-1,
a.u-button-style.u-border-hover-color-4-light-1:focus {
  color: #72efe9 !important;
  border-color: #72efe9 !important;
}
.u-border-active-color-4-light-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-4-light-1:active,
a.u-button-style.u-button-style.u-border-active-color-4-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-4-light-1,
input.u-field-input.u-field-input.u-border-active-color-4-light-1:checked {
  color: #72efe9 !important;
  border-color: #72efe9 !important;
}
.u-link.u-border-color-4-light-1[class*="u-border-"] {
  border-color: #72efe9 !important;
}
.u-link.u-border-color-4-light-1[class*="u-border-"]:hover {
  border-color: #52ebe4 !important;
}
.u-border-color-4-light-2,
.u-border-color-4-light-2.u-input,
.u-border-color-4-light-2.u-field-input.u-field-input,
.u-separator-color-4-light-2:after {
  border-color: #adf6f2;
  stroke: #adf6f2;
}
.u-button-style.u-border-color-4-light-2 {
  border-color: #adf6f2 !important;
  color: #adf6f2 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4-light-2:hover,
.u-button-style.u-border-color-4-light-2:focus {
  border-color: transparent !important;
  color: #87f2ec !important;
  background-color: transparent !important;
}
.u-border-hover-color-4-light-2:hover,
.u-border-hover-color-4-light-2:focus,
a.u-button-style.u-border-hover-color-4-light-2:hover,
a.u-button-style:hover > .u-border-hover-color-4-light-2,
a.u-button-style.u-border-hover-color-4-light-2:focus {
  color: #adf6f2 !important;
  border-color: #adf6f2 !important;
}
.u-border-active-color-4-light-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-4-light-2:active,
a.u-button-style.u-button-style.u-border-active-color-4-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-4-light-2,
input.u-field-input.u-field-input.u-border-active-color-4-light-2:checked {
  color: #adf6f2 !important;
  border-color: #adf6f2 !important;
}
.u-link.u-border-color-4-light-2[class*="u-border-"] {
  border-color: #adf6f2 !important;
}
.u-link.u-border-color-4-light-2[class*="u-border-"]:hover {
  border-color: #87f2ec !important;
}
.u-border-color-4-light-3,
.u-border-color-4-light-3.u-input,
.u-border-color-4-light-3.u-field-input.u-field-input,
.u-separator-color-4-light-3:after {
  border-color: #eafdfc;
  stroke: #eafdfc;
}
.u-button-style.u-border-color-4-light-3 {
  border-color: #eafdfc !important;
  color: #eafdfc !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4-light-3:hover,
.u-button-style.u-border-color-4-light-3:focus {
  border-color: transparent !important;
  color: #bef9f6 !important;
  background-color: transparent !important;
}
.u-border-hover-color-4-light-3:hover,
.u-border-hover-color-4-light-3:focus,
a.u-button-style.u-border-hover-color-4-light-3:hover,
a.u-button-style:hover > .u-border-hover-color-4-light-3,
a.u-button-style.u-border-hover-color-4-light-3:focus {
  color: #eafdfc !important;
  border-color: #eafdfc !important;
}
.u-border-active-color-4-light-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-4-light-3:active,
a.u-button-style.u-button-style.u-border-active-color-4-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-4-light-3,
input.u-field-input.u-field-input.u-border-active-color-4-light-3:checked {
  color: #eafdfc !important;
  border-color: #eafdfc !important;
}
.u-link.u-border-color-4-light-3[class*="u-border-"] {
  border-color: #eafdfc !important;
}
.u-link.u-border-color-4-light-3[class*="u-border-"]:hover {
  border-color: #bef9f6 !important;
}
.u-border-color-4-base,
.u-border-color-4-base.u-input,
.u-border-color-4-base.u-field-input.u-field-input,
.u-separator-color-4-base:after {
  border-color: #2cccc4;
  stroke: #2cccc4;
}
.u-button-style.u-border-color-4-base {
  border-color: #2cccc4 !important;
  color: #2cccc4 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4-base:hover,
.u-button-style.u-border-color-4-base:focus {
  border-color: transparent !important;
  color: #28b8b0 !important;
  background-color: transparent !important;
}
.u-border-hover-color-4-base:hover,
.u-border-hover-color-4-base:focus,
a.u-button-style.u-border-hover-color-4-base:hover,
a.u-button-style:hover > .u-border-hover-color-4-base,
a.u-button-style.u-border-hover-color-4-base:focus {
  color: #2cccc4 !important;
  border-color: #2cccc4 !important;
}
.u-border-active-color-4-base.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-4-base:active,
a.u-button-style.u-button-style.u-border-active-color-4-base.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4-base,
li.active > a.u-button-style.u-button-style.u-border-active-color-4-base,
input.u-field-input.u-field-input.u-border-active-color-4-base:checked {
  color: #2cccc4 !important;
  border-color: #2cccc4 !important;
}
.u-link.u-border-color-4-base[class*="u-border-"] {
  border-color: #2cccc4 !important;
}
.u-link.u-border-color-4-base[class*="u-border-"]:hover {
  border-color: #28b8b0 !important;
}
.u-border-color-5-dark-3,
.u-border-color-5-dark-3.u-input,
.u-border-color-5-dark-3.u-field-input.u-field-input,
.u-separator-color-5-dark-3:after {
  border-color: #292d33;
  stroke: #292d33;
}
.u-button-style.u-border-color-5-dark-3 {
  border-color: #292d33 !important;
  color: #292d33 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5-dark-3:hover,
.u-button-style.u-border-color-5-dark-3:focus {
  border-color: transparent !important;
  color: #25292e !important;
  background-color: transparent !important;
}
.u-border-hover-color-5-dark-3:hover,
.u-border-hover-color-5-dark-3:focus,
a.u-button-style.u-border-hover-color-5-dark-3:hover,
a.u-button-style:hover > .u-border-hover-color-5-dark-3,
a.u-button-style.u-border-hover-color-5-dark-3:focus {
  color: #292d33 !important;
  border-color: #292d33 !important;
}
.u-border-active-color-5-dark-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-5-dark-3:active,
a.u-button-style.u-button-style.u-border-active-color-5-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-5-dark-3,
input.u-field-input.u-field-input.u-border-active-color-5-dark-3:checked {
  color: #292d33 !important;
  border-color: #292d33 !important;
}
.u-link.u-border-color-5-dark-3[class*="u-border-"] {
  border-color: #292d33 !important;
}
.u-link.u-border-color-5-dark-3[class*="u-border-"]:hover {
  border-color: #25292e !important;
}
.u-border-color-5-dark-2,
.u-border-color-5-dark-2.u-input,
.u-border-color-5-dark-2.u-field-input.u-field-input,
.u-separator-color-5-dark-2:after {
  border-color: var(--color-darkest-gray)c66;
  stroke: var(--color-darkest-gray)c66;
}
.u-button-style.u-border-color-5-dark-2 {
  border-color: var(--color-darkest-gray)c66 !important;
  color: var(--color-darkest-gray)c66 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5-dark-2:hover,
.u-button-style.u-border-color-5-dark-2:focus {
  border-color: transparent !important;
  color: #4d535c !important;
  background-color: transparent !important;
}
.u-border-hover-color-5-dark-2:hover,
.u-border-hover-color-5-dark-2:focus,
a.u-button-style.u-border-hover-color-5-dark-2:hover,
a.u-button-style:hover > .u-border-hover-color-5-dark-2,
a.u-button-style.u-border-hover-color-5-dark-2:focus {
  color: var(--color-darkest-gray)c66 !important;
  border-color: var(--color-darkest-gray)c66 !important;
}
.u-border-active-color-5-dark-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-5-dark-2:active,
a.u-button-style.u-button-style.u-border-active-color-5-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-5-dark-2,
input.u-field-input.u-field-input.u-border-active-color-5-dark-2:checked {
  color: var(--color-darkest-gray)c66 !important;
  border-color: var(--color-darkest-gray)c66 !important;
}
.u-link.u-border-color-5-dark-2[class*="u-border-"] {
  border-color: var(--color-darkest-gray)c66 !important;
}
.u-link.u-border-color-5-dark-2[class*="u-border-"]:hover {
  border-color: #4d535c !important;
}
.u-border-color-5-dark-1,
.u-border-color-5-dark-1.u-input,
.u-border-color-5-dark-1.u-field-input.u-field-input,
.u-separator-color-5-dark-1:after {
  border-color: #858e99;
  stroke: #858e99;
}
.u-button-style.u-border-color-5-dark-1 {
  border-color: #858e99 !important;
  color: #858e99 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5-dark-1:hover,
.u-button-style.u-border-color-5-dark-1:focus {
  border-color: transparent !important;
  color: #75808c !important;
  background-color: transparent !important;
}
.u-border-hover-color-5-dark-1:hover,
.u-border-hover-color-5-dark-1:focus,
a.u-button-style.u-border-hover-color-5-dark-1:hover,
a.u-button-style:hover > .u-border-hover-color-5-dark-1,
a.u-button-style.u-border-hover-color-5-dark-1:focus {
  color: #858e99 !important;
  border-color: #858e99 !important;
}
.u-border-active-color-5-dark-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-5-dark-1:active,
a.u-button-style.u-button-style.u-border-active-color-5-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-5-dark-1,
input.u-field-input.u-field-input.u-border-active-color-5-dark-1:checked {
  color: #858e99 !important;
  border-color: #858e99 !important;
}
.u-link.u-border-color-5-dark-1[class*="u-border-"] {
  border-color: #858e99 !important;
}
.u-link.u-border-color-5-dark-1[class*="u-border-"]:hover {
  border-color: #75808c !important;
}
.u-border-color-5,
.u-border-color-5.u-input,
.u-border-color-5.u-field-input.u-field-input,
.u-separator-color-5:after {
  border-color: #b9c1cc;
  stroke: #b9c1cc;
}
.u-button-style.u-border-color-5 {
  border-color: #b9c1cc !important;
  color: #b9c1cc !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5:hover,
.u-button-style.u-border-color-5:focus {
  border-color: transparent !important;
  color: #a2adbc !important;
  background-color: transparent !important;
}
.u-border-hover-color-5:hover,
.u-border-hover-color-5:focus,
a.u-button-style.u-border-hover-color-5:hover,
a.u-button-style:hover > .u-border-hover-color-5,
a.u-button-style.u-border-hover-color-5:focus {
  color: #b9c1cc !important;
  border-color: #b9c1cc !important;
}
.u-border-active-color-5.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-5:active,
a.u-button-style.u-button-style.u-border-active-color-5.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5,
li.active > a.u-button-style.u-button-style.u-border-active-color-5,
input.u-field-input.u-field-input.u-border-active-color-5:checked {
  color: #b9c1cc !important;
  border-color: #b9c1cc !important;
}
.u-link.u-border-color-5[class*="u-border-"] {
  border-color: #b9c1cc !important;
}
.u-link.u-border-color-5[class*="u-border-"]:hover {
  border-color: #a2adbc !important;
}
.u-border-color-5-light-1,
.u-border-color-5-light-1.u-input,
.u-border-color-5-light-1.u-field-input.u-field-input,
.u-separator-color-5-light-1:after {
  border-color: #ccd3db;
  stroke: #ccd3db;
}
.u-button-style.u-border-color-5-light-1 {
  border-color: #ccd3db !important;
  color: #ccd3db !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5-light-1:hover,
.u-button-style.u-border-color-5-light-1:focus {
  border-color: transparent !important;
  color: #b3bec9 !important;
  background-color: transparent !important;
}
.u-border-hover-color-5-light-1:hover,
.u-border-hover-color-5-light-1:focus,
a.u-button-style.u-border-hover-color-5-light-1:hover,
a.u-button-style:hover > .u-border-hover-color-5-light-1,
a.u-button-style.u-border-hover-color-5-light-1:focus {
  color: #ccd3db !important;
  border-color: #ccd3db !important;
}
.u-border-active-color-5-light-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-5-light-1:active,
a.u-button-style.u-button-style.u-border-active-color-5-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-5-light-1,
input.u-field-input.u-field-input.u-border-active-color-5-light-1:checked {
  color: #ccd3db !important;
  border-color: #ccd3db !important;
}
.u-link.u-border-color-5-light-1[class*="u-border-"] {
  border-color: #ccd3db !important;
}
.u-link.u-border-color-5-light-1[class*="u-border-"]:hover {
  border-color: #b3bec9 !important;
}
.u-border-color-5-light-2,
.u-border-color-5-light-2.u-input,
.u-border-color-5-light-2.u-field-input.u-field-input,
.u-separator-color-5-light-2:after {
  border-color: #e0e5eb;
  stroke: #e0e5eb;
}
.u-button-style.u-border-color-5-light-2 {
  border-color: #e0e5eb !important;
  color: #e0e5eb !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5-light-2:hover,
.u-button-style.u-border-color-5-light-2:focus {
  border-color: transparent !important;
  color: #c4ced9 !important;
  background-color: transparent !important;
}
.u-border-hover-color-5-light-2:hover,
.u-border-hover-color-5-light-2:focus,
a.u-button-style.u-border-hover-color-5-light-2:hover,
a.u-button-style:hover > .u-border-hover-color-5-light-2,
a.u-button-style.u-border-hover-color-5-light-2:focus {
  color: #e0e5eb !important;
  border-color: #e0e5eb !important;
}
.u-border-active-color-5-light-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-5-light-2:active,
a.u-button-style.u-button-style.u-border-active-color-5-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-5-light-2,
input.u-field-input.u-field-input.u-border-active-color-5-light-2:checked {
  color: #e0e5eb !important;
  border-color: #e0e5eb !important;
}
.u-link.u-border-color-5-light-2[class*="u-border-"] {
  border-color: #e0e5eb !important;
}
.u-link.u-border-color-5-light-2[class*="u-border-"]:hover {
  border-color: #c4ced9 !important;
}
.u-border-color-5-light-3,
.u-border-color-5-light-3.u-input,
.u-border-color-5-light-3.u-field-input.u-field-input,
.u-separator-color-5-light-3:after {
  border-color: #f5f7fa;
  stroke: #f5f7fa;
}
.u-button-style.u-border-color-5-light-3 {
  border-color: #f5f7fa !important;
  color: #f5f7fa !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5-light-3:hover,
.u-button-style.u-border-color-5-light-3:focus {
  border-color: transparent !important;
  color: #d4dde9 !important;
  background-color: transparent !important;
}
.u-border-hover-color-5-light-3:hover,
.u-border-hover-color-5-light-3:focus,
a.u-button-style.u-border-hover-color-5-light-3:hover,
a.u-button-style:hover > .u-border-hover-color-5-light-3,
a.u-button-style.u-border-hover-color-5-light-3:focus {
  color: #f5f7fa !important;
  border-color: #f5f7fa !important;
}
.u-border-active-color-5-light-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-5-light-3:active,
a.u-button-style.u-button-style.u-border-active-color-5-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-5-light-3,
input.u-field-input.u-field-input.u-border-active-color-5-light-3:checked {
  color: #f5f7fa !important;
  border-color: #f5f7fa !important;
}
.u-link.u-border-color-5-light-3[class*="u-border-"] {
  border-color: #f5f7fa !important;
}
.u-link.u-border-color-5-light-3[class*="u-border-"]:hover {
  border-color: #d4dde9 !important;
}
.u-border-color-5-base,
.u-border-color-5-base.u-input,
.u-border-color-5-base.u-field-input.u-field-input,
.u-separator-color-5-base:after {
  border-color: #b9c1cc;
  stroke: #b9c1cc;
}
.u-button-style.u-border-color-5-base {
  border-color: #b9c1cc !important;
  color: #b9c1cc !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5-base:hover,
.u-button-style.u-border-color-5-base:focus {
  border-color: transparent !important;
  color: #a2adbc !important;
  background-color: transparent !important;
}
.u-border-hover-color-5-base:hover,
.u-border-hover-color-5-base:focus,
a.u-button-style.u-border-hover-color-5-base:hover,
a.u-button-style:hover > .u-border-hover-color-5-base,
a.u-button-style.u-border-hover-color-5-base:focus {
  color: #b9c1cc !important;
  border-color: #b9c1cc !important;
}
.u-border-active-color-5-base.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-5-base:active,
a.u-button-style.u-button-style.u-border-active-color-5-base.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5-base,
li.active > a.u-button-style.u-button-style.u-border-active-color-5-base,
input.u-field-input.u-field-input.u-border-active-color-5-base:checked {
  color: #b9c1cc !important;
  border-color: #b9c1cc !important;
}
.u-link.u-border-color-5-base[class*="u-border-"] {
  border-color: #b9c1cc !important;
}
.u-link.u-border-color-5-base[class*="u-border-"]:hover {
  border-color: #a2adbc !important;
}
.u-border-palette-1-dark-3,
.u-border-palette-1-dark-3.u-input,
.u-border-palette-1-dark-3.u-field-input.u-field-input,
.u-separator-palette-1-dark-3:after {
  border-color: #2a3329;
  stroke: #2a3329;
}
.u-button-style.u-border-palette-1-dark-3 {
  border-color: #2a3329 !important;
  color: #2a3329 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1-dark-3:hover,
.u-button-style.u-border-palette-1-dark-3:focus {
  border-color: transparent !important;
  color: #262e25 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1-dark-3:hover,
.u-border-hover-palette-1-dark-3:focus,
a.u-button-style.u-border-hover-palette-1-dark-3:hover,
a.u-button-style:hover > .u-border-hover-palette-1-dark-3,
a.u-button-style.u-border-hover-palette-1-dark-3:focus {
  color: #2a3329 !important;
  border-color: #2a3329 !important;
}
.u-border-active-palette-1-dark-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-1-dark-3:active,
a.u-button-style.u-button-style.u-border-active-palette-1-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1-dark-3,
input.u-field-input.u-field-input.u-border-active-palette-1-dark-3:checked {
  color: #2a3329 !important;
  border-color: #2a3329 !important;
}
.u-link.u-border-palette-1-dark-3[class*="u-border-"] {
  border-color: #2a3329 !important;
}
.u-link.u-border-palette-1-dark-3[class*="u-border-"]:hover {
  border-color: #262e25 !important;
}
.u-border-palette-1-dark-2,
.u-border-palette-1-dark-2.u-input,
.u-border-palette-1-dark-2.u-field-input.u-field-input,
.u-separator-palette-1-dark-2:after {
  border-color: #485a46;
  stroke: #485a46;
}
.u-button-style.u-border-palette-1-dark-2 {
  border-color: #485a46 !important;
  color: #485a46 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1-dark-2:hover,
.u-button-style.u-border-palette-1-dark-2:focus {
  border-color: transparent !important;
  color: #41513f !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1-dark-2:hover,
.u-border-hover-palette-1-dark-2:focus,
a.u-button-style.u-border-hover-palette-1-dark-2:hover,
a.u-button-style:hover > .u-border-hover-palette-1-dark-2,
a.u-button-style.u-border-hover-palette-1-dark-2:focus {
  color: #485a46 !important;
  border-color: #485a46 !important;
}
.u-border-active-palette-1-dark-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-1-dark-2:active,
a.u-button-style.u-button-style.u-border-active-palette-1-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1-dark-2,
input.u-field-input.u-field-input.u-border-active-palette-1-dark-2:checked {
  color: #485a46 !important;
  border-color: #485a46 !important;
}
.u-link.u-border-palette-1-dark-2[class*="u-border-"] {
  border-color: #485a46 !important;
}
.u-link.u-border-palette-1-dark-2[class*="u-border-"]:hover {
  border-color: #41513f !important;
}
.u-border-palette-1-dark-1,
.u-border-palette-1-dark-1.u-input,
.u-border-palette-1-dark-1.u-field-input.u-field-input,
.u-separator-palette-1-dark-1:after {
  border-color: #658161;
  stroke: #658161;
}
.u-button-style.u-border-palette-1-dark-1 {
  border-color: #658161 !important;
  color: #658161 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1-dark-1:hover,
.u-button-style.u-border-palette-1-dark-1:focus {
  border-color: transparent !important;
  color: #5b7457 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1-dark-1:hover,
.u-border-hover-palette-1-dark-1:focus,
a.u-button-style.u-border-hover-palette-1-dark-1:hover,
a.u-button-style:hover > .u-border-hover-palette-1-dark-1,
a.u-button-style.u-border-hover-palette-1-dark-1:focus {
  color: #658161 !important;
  border-color: #658161 !important;
}
.u-border-active-palette-1-dark-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-1-dark-1:active,
a.u-button-style.u-button-style.u-border-active-palette-1-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1-dark-1,
input.u-field-input.u-field-input.u-border-active-palette-1-dark-1:checked {
  color: #658161 !important;
  border-color: #658161 !important;
}
.u-link.u-border-palette-1-dark-1[class*="u-border-"] {
  border-color: #658161 !important;
}
.u-link.u-border-palette-1-dark-1[class*="u-border-"]:hover {
  border-color: #5b7457 !important;
}
.u-border-palette-1,
.u-border-palette-1.u-input,
.u-border-palette-1.u-field-input.u-field-input,
.u-separator-palette-1:after {
  border-color: #9ab596;
  stroke: #9ab596;
}
.u-button-style.u-border-palette-1 {
  border-color: #9ab596 !important;
  color: #9ab596 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1:hover,
.u-button-style.u-border-palette-1:focus {
  border-color: transparent !important;
  color: #87a783 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1:hover,
.u-border-hover-palette-1:focus,
a.u-button-style.u-border-hover-palette-1:hover,
a.u-button-style:hover > .u-border-hover-palette-1,
a.u-button-style.u-border-hover-palette-1:focus {
  color: #9ab596 !important;
  border-color: #9ab596 !important;
}
.u-border-active-palette-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-1:active,
a.u-button-style.u-button-style.u-border-active-palette-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1,
input.u-field-input.u-field-input.u-border-active-palette-1:checked {
  color: #9ab596 !important;
  border-color: #9ab596 !important;
}
.u-link.u-border-palette-1[class*="u-border-"] {
  border-color: #9ab596 !important;
}
.u-link.u-border-palette-1[class*="u-border-"]:hover {
  border-color: #87a783 !important;
}
.u-border-palette-1-light-1,
.u-border-palette-1-light-1.u-input,
.u-border-palette-1-light-1.u-field-input.u-field-input,
.u-separator-palette-1-light-1:after {
  border-color: #b6ccb2;
  stroke: #b6ccb2;
}
.u-button-style.u-border-palette-1-light-1 {
  border-color: #b6ccb2 !important;
  color: #b6ccb2 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1-light-1:hover,
.u-button-style.u-border-palette-1-light-1:focus {
  border-color: transparent !important;
  color: #a0bd9b !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1-light-1:hover,
.u-border-hover-palette-1-light-1:focus,
a.u-button-style.u-border-hover-palette-1-light-1:hover,
a.u-button-style:hover > .u-border-hover-palette-1-light-1,
a.u-button-style.u-border-hover-palette-1-light-1:focus {
  color: #b6ccb2 !important;
  border-color: #b6ccb2 !important;
}
.u-border-active-palette-1-light-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-1-light-1:active,
a.u-button-style.u-button-style.u-border-active-palette-1-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1-light-1,
input.u-field-input.u-field-input.u-border-active-palette-1-light-1:checked {
  color: #b6ccb2 !important;
  border-color: #b6ccb2 !important;
}
.u-link.u-border-palette-1-light-1[class*="u-border-"] {
  border-color: #b6ccb2 !important;
}
.u-link.u-border-palette-1-light-1[class*="u-border-"]:hover {
  border-color: #a0bd9b !important;
}
.u-border-palette-1-light-2,
.u-border-palette-1-light-2.u-input,
.u-border-palette-1-light-2.u-field-input.u-field-input,
.u-separator-palette-1-light-2:after {
  border-color: #d4e2d2;
  stroke: #d4e2d2;
}
.u-button-style.u-border-palette-1-light-2 {
  border-color: #d4e2d2 !important;
  color: #d4e2d2 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1-light-2:hover,
.u-button-style.u-border-palette-1-light-2:focus {
  border-color: transparent !important;
  color: #bbd1b7 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1-light-2:hover,
.u-border-hover-palette-1-light-2:focus,
a.u-button-style.u-border-hover-palette-1-light-2:hover,
a.u-button-style:hover > .u-border-hover-palette-1-light-2,
a.u-button-style.u-border-hover-palette-1-light-2:focus {
  color: #d4e2d2 !important;
  border-color: #d4e2d2 !important;
}
.u-border-active-palette-1-light-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-1-light-2:active,
a.u-button-style.u-button-style.u-border-active-palette-1-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1-light-2,
input.u-field-input.u-field-input.u-border-active-palette-1-light-2:checked {
  color: #d4e2d2 !important;
  border-color: #d4e2d2 !important;
}
.u-link.u-border-palette-1-light-2[class*="u-border-"] {
  border-color: #d4e2d2 !important;
}
.u-link.u-border-palette-1-light-2[class*="u-border-"]:hover {
  border-color: #bbd1b7 !important;
}
.u-border-palette-1-light-3,
.u-border-palette-1-light-3.u-input,
.u-border-palette-1-light-3.u-field-input.u-field-input,
.u-separator-palette-1-light-3:after {
  border-color: #f4f8f3;
  stroke: #f4f8f3;
}
.u-button-style.u-border-palette-1-light-3 {
  border-color: #f4f8f3 !important;
  color: #f4f8f3 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1-light-3:hover,
.u-button-style.u-border-palette-1-light-3:focus {
  border-color: transparent !important;
  color: #d8e6d4 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1-light-3:hover,
.u-border-hover-palette-1-light-3:focus,
a.u-button-style.u-border-hover-palette-1-light-3:hover,
a.u-button-style:hover > .u-border-hover-palette-1-light-3,
a.u-button-style.u-border-hover-palette-1-light-3:focus {
  color: #f4f8f3 !important;
  border-color: #f4f8f3 !important;
}
.u-border-active-palette-1-light-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-1-light-3:active,
a.u-button-style.u-button-style.u-border-active-palette-1-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1-light-3,
input.u-field-input.u-field-input.u-border-active-palette-1-light-3:checked {
  color: #f4f8f3 !important;
  border-color: #f4f8f3 !important;
}
.u-link.u-border-palette-1-light-3[class*="u-border-"] {
  border-color: #f4f8f3 !important;
}
.u-link.u-border-palette-1-light-3[class*="u-border-"]:hover {
  border-color: #d8e6d4 !important;
}
.u-border-palette-1-base,
.u-border-palette-1-base.u-input,
.u-border-palette-1-base.u-field-input.u-field-input,
.u-separator-palette-1-base:after {
  border-color: #658161;
  stroke: #658161;
}
.u-button-style.u-border-palette-1-base {
  border-color: #658161 !important;
  color: #658161 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1-base:hover,
.u-button-style.u-border-palette-1-base:focus {
  border-color: transparent !important;
  color: #5b7457 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1-base:hover,
.u-border-hover-palette-1-base:focus,
a.u-button-style.u-border-hover-palette-1-base:hover,
a.u-button-style:hover > .u-border-hover-palette-1-base,
a.u-button-style.u-border-hover-palette-1-base:focus {
  color: #658161 !important;
  border-color: #658161 !important;
}
.u-border-active-palette-1-base.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-1-base:active,
a.u-button-style.u-button-style.u-border-active-palette-1-base.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1-base,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1-base,
input.u-field-input.u-field-input.u-border-active-palette-1-base:checked {
  color: #658161 !important;
  border-color: #658161 !important;
}
.u-link.u-border-palette-1-base[class*="u-border-"] {
  border-color: #658161 !important;
}
.u-link.u-border-palette-1-base[class*="u-border-"]:hover {
  border-color: #5b7457 !important;
}
.u-border-palette-2-dark-3,
.u-border-palette-2-dark-3.u-input,
.u-border-palette-2-dark-3.u-field-input.u-field-input,
.u-separator-palette-2-dark-3:after {
  border-color: #332929;
  stroke: #332929;
}
.u-button-style.u-border-palette-2-dark-3 {
  border-color: #332929 !important;
  color: #332929 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2-dark-3:hover,
.u-button-style.u-border-palette-2-dark-3:focus {
  border-color: transparent !important;
  color: #2e2525 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2-dark-3:hover,
.u-border-hover-palette-2-dark-3:focus,
a.u-button-style.u-border-hover-palette-2-dark-3:hover,
a.u-button-style:hover > .u-border-hover-palette-2-dark-3,
a.u-button-style.u-border-hover-palette-2-dark-3:focus {
  color: #332929 !important;
  border-color: #332929 !important;
}
.u-border-active-palette-2-dark-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-2-dark-3:active,
a.u-button-style.u-button-style.u-border-active-palette-2-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2-dark-3,
input.u-field-input.u-field-input.u-border-active-palette-2-dark-3:checked {
  color: #332929 !important;
  border-color: #332929 !important;
}
.u-link.u-border-palette-2-dark-3[class*="u-border-"] {
  border-color: #332929 !important;
}
.u-link.u-border-palette-2-dark-3[class*="u-border-"]:hover {
  border-color: #2e2525 !important;
}
.u-border-palette-2-dark-2,
.u-border-palette-2-dark-2.u-input,
.u-border-palette-2-dark-2.u-field-input.u-field-input,
.u-separator-palette-2-dark-2:after {
  border-color: #6b4748;
  stroke: #6b4748;
}
.u-button-style.u-border-palette-2-dark-2 {
  border-color: #6b4748 !important;
  color: #6b4748 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2-dark-2:hover,
.u-button-style.u-border-palette-2-dark-2:focus {
  border-color: transparent !important;
  color: #604041 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2-dark-2:hover,
.u-border-hover-palette-2-dark-2:focus,
a.u-button-style.u-border-hover-palette-2-dark-2:hover,
a.u-button-style:hover > .u-border-hover-palette-2-dark-2,
a.u-button-style.u-border-hover-palette-2-dark-2:focus {
  color: #6b4748 !important;
  border-color: #6b4748 !important;
}
.u-border-active-palette-2-dark-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-2-dark-2:active,
a.u-button-style.u-button-style.u-border-active-palette-2-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2-dark-2,
input.u-field-input.u-field-input.u-border-active-palette-2-dark-2:checked {
  color: #6b4748 !important;
  border-color: #6b4748 !important;
}
.u-link.u-border-palette-2-dark-2[class*="u-border-"] {
  border-color: #6b4748 !important;
}
.u-link.u-border-palette-2-dark-2[class*="u-border-"]:hover {
  border-color: #604041 !important;
}
.u-border-palette-2-dark-1,
.u-border-palette-2-dark-1.u-input,
.u-border-palette-2-dark-1.u-field-input.u-field-input,
.u-separator-palette-2-dark-1:after {
  border-color: #a35559;
  stroke: #a35559;
}
.u-button-style.u-border-palette-2-dark-1 {
  border-color: #a35559 !important;
  color: #a35559 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2-dark-1:hover,
.u-button-style.u-border-palette-2-dark-1:focus {
  border-color: transparent !important;
  color: #934c50 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2-dark-1:hover,
.u-border-hover-palette-2-dark-1:focus,
a.u-button-style.u-border-hover-palette-2-dark-1:hover,
a.u-button-style:hover > .u-border-hover-palette-2-dark-1,
a.u-button-style.u-border-hover-palette-2-dark-1:focus {
  color: #a35559 !important;
  border-color: #a35559 !important;
}
.u-border-active-palette-2-dark-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-2-dark-1:active,
a.u-button-style.u-button-style.u-border-active-palette-2-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2-dark-1,
input.u-field-input.u-field-input.u-border-active-palette-2-dark-1:checked {
  color: #a35559 !important;
  border-color: #a35559 !important;
}
.u-link.u-border-palette-2-dark-1[class*="u-border-"] {
  border-color: #a35559 !important;
}
.u-link.u-border-palette-2-dark-1[class*="u-border-"]:hover {
  border-color: #934c50 !important;
}
.u-border-palette-2,
.u-border-palette-2.u-input,
.u-border-palette-2.u-field-input.u-field-input,
.u-separator-palette-2:after {
  border-color: #db545a;
  stroke: #db545a;
}
.u-button-style.u-border-palette-2 {
  border-color: #db545a !important;
  color: #db545a !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2:hover,
.u-button-style.u-border-palette-2:focus {
  border-color: transparent !important;
  color: #d63b42 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2:hover,
.u-border-hover-palette-2:focus,
a.u-button-style.u-border-hover-palette-2:hover,
a.u-button-style:hover > .u-border-hover-palette-2,
a.u-button-style.u-border-hover-palette-2:focus {
  color: #db545a !important;
  border-color: #db545a !important;
}
.u-border-active-palette-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-2:active,
a.u-button-style.u-button-style.u-border-active-palette-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2,
input.u-field-input.u-field-input.u-border-active-palette-2:checked {
  color: #db545a !important;
  border-color: #db545a !important;
}
.u-link.u-border-palette-2[class*="u-border-"] {
  border-color: #db545a !important;
}
.u-link.u-border-palette-2[class*="u-border-"]:hover {
  border-color: #d63b42 !important;
}
.u-border-palette-2-light-1,
.u-border-palette-2-light-1.u-input,
.u-border-palette-2-light-1.u-field-input.u-field-input,
.u-separator-palette-2-light-1:after {
  border-color: #e68387;
  stroke: #e68387;
}
.u-button-style.u-border-palette-2-light-1 {
  border-color: #e68387 !important;
  color: #e68387 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2-light-1:hover,
.u-button-style.u-border-palette-2-light-1:focus {
  border-color: transparent !important;
  color: #e0656a !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2-light-1:hover,
.u-border-hover-palette-2-light-1:focus,
a.u-button-style.u-border-hover-palette-2-light-1:hover,
a.u-button-style:hover > .u-border-hover-palette-2-light-1,
a.u-button-style.u-border-hover-palette-2-light-1:focus {
  color: #e68387 !important;
  border-color: #e68387 !important;
}
.u-border-active-palette-2-light-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-2-light-1:active,
a.u-button-style.u-button-style.u-border-active-palette-2-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2-light-1,
input.u-field-input.u-field-input.u-border-active-palette-2-light-1:checked {
  color: #e68387 !important;
  border-color: #e68387 !important;
}
.u-link.u-border-palette-2-light-1[class*="u-border-"] {
  border-color: #e68387 !important;
}
.u-link.u-border-palette-2-light-1[class*="u-border-"]:hover {
  border-color: #e0656a !important;
}
.u-border-palette-2-light-2,
.u-border-palette-2-light-2.u-input,
.u-border-palette-2-light-2.u-field-input.u-field-input,
.u-separator-palette-2-light-2:after {
  border-color: #f1b5b8;
  stroke: #f1b5b8;
}
.u-button-style.u-border-palette-2-light-2 {
  border-color: #f1b5b8 !important;
  color: #f1b5b8 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2-light-2:hover,
.u-button-style.u-border-palette-2-light-2:focus {
  border-color: transparent !important;
  color: #ea9296 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2-light-2:hover,
.u-border-hover-palette-2-light-2:focus,
a.u-button-style.u-border-hover-palette-2-light-2:hover,
a.u-button-style:hover > .u-border-hover-palette-2-light-2,
a.u-button-style.u-border-hover-palette-2-light-2:focus {
  color: #f1b5b8 !important;
  border-color: #f1b5b8 !important;
}
.u-border-active-palette-2-light-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-2-light-2:active,
a.u-button-style.u-button-style.u-border-active-palette-2-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2-light-2,
input.u-field-input.u-field-input.u-border-active-palette-2-light-2:checked {
  color: #f1b5b8 !important;
  border-color: #f1b5b8 !important;
}
.u-link.u-border-palette-2-light-2[class*="u-border-"] {
  border-color: #f1b5b8 !important;
}
.u-link.u-border-palette-2-light-2[class*="u-border-"]:hover {
  border-color: #ea9296 !important;
}
.u-border-palette-2-light-3,
.u-border-palette-2-light-3.u-input,
.u-border-palette-2-light-3.u-field-input.u-field-input,
.u-separator-palette-2-light-3:after {
  border-color: #fbeced;
  stroke: #fbeced;
}
.u-button-style.u-border-palette-2-light-3 {
  border-color: #fbeced !important;
  color: #fbeced !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2-light-3:hover,
.u-button-style.u-border-palette-2-light-3:focus {
  border-color: transparent !important;
  color: #f3c4c7 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2-light-3:hover,
.u-border-hover-palette-2-light-3:focus,
a.u-button-style.u-border-hover-palette-2-light-3:hover,
a.u-button-style:hover > .u-border-hover-palette-2-light-3,
a.u-button-style.u-border-hover-palette-2-light-3:focus {
  color: #fbeced !important;
  border-color: #fbeced !important;
}
.u-border-active-palette-2-light-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-2-light-3:active,
a.u-button-style.u-button-style.u-border-active-palette-2-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2-light-3,
input.u-field-input.u-field-input.u-border-active-palette-2-light-3:checked {
  color: #fbeced !important;
  border-color: #fbeced !important;
}
.u-link.u-border-palette-2-light-3[class*="u-border-"] {
  border-color: #fbeced !important;
}
.u-link.u-border-palette-2-light-3[class*="u-border-"]:hover {
  border-color: #f3c4c7 !important;
}
.u-border-palette-2-base,
.u-border-palette-2-base.u-input,
.u-border-palette-2-base.u-field-input.u-field-input,
.u-separator-palette-2-base:after {
  border-color: #db545a;
  stroke: #db545a;
}
.u-button-style.u-border-palette-2-base {
  border-color: #db545a !important;
  color: #db545a !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2-base:hover,
.u-button-style.u-border-palette-2-base:focus {
  border-color: transparent !important;
  color: #d63b42 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2-base:hover,
.u-border-hover-palette-2-base:focus,
a.u-button-style.u-border-hover-palette-2-base:hover,
a.u-button-style:hover > .u-border-hover-palette-2-base,
a.u-button-style.u-border-hover-palette-2-base:focus {
  color: #db545a !important;
  border-color: #db545a !important;
}
.u-border-active-palette-2-base.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-2-base:active,
a.u-button-style.u-button-style.u-border-active-palette-2-base.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2-base,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2-base,
input.u-field-input.u-field-input.u-border-active-palette-2-base:checked {
  color: #db545a !important;
  border-color: #db545a !important;
}
.u-link.u-border-palette-2-base[class*="u-border-"] {
  border-color: #db545a !important;
}
.u-link.u-border-palette-2-base[class*="u-border-"]:hover {
  border-color: #d63b42 !important;
}
.u-border-palette-3-dark-3,
.u-border-palette-3-dark-3.u-input,
.u-border-palette-3-dark-3.u-field-input.u-field-input,
.u-separator-palette-3-dark-3:after {
  border-color: var(--color-text-medium)129;
  stroke: var(--color-text-medium)129;
}
.u-button-style.u-border-palette-3-dark-3 {
  border-color: var(--color-text-medium)129 !important;
  color: var(--color-text-medium)129 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3-dark-3:hover,
.u-button-style.u-border-palette-3-dark-3:focus {
  border-color: transparent !important;
  color: #2e2c25 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3-dark-3:hover,
.u-border-hover-palette-3-dark-3:focus,
a.u-button-style.u-border-hover-palette-3-dark-3:hover,
a.u-button-style:hover > .u-border-hover-palette-3-dark-3,
a.u-button-style.u-border-hover-palette-3-dark-3:focus {
  color: var(--color-text-medium)129 !important;
  border-color: var(--color-text-medium)129 !important;
}
.u-border-active-palette-3-dark-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-3-dark-3:active,
a.u-button-style.u-button-style.u-border-active-palette-3-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3-dark-3,
input.u-field-input.u-field-input.u-border-active-palette-3-dark-3:checked {
  color: var(--color-text-medium)129 !important;
  border-color: var(--color-text-medium)129 !important;
}
.u-link.u-border-palette-3-dark-3[class*="u-border-"] {
  border-color: var(--color-text-medium)129 !important;
}
.u-link.u-border-palette-3-dark-3[class*="u-border-"]:hover {
  border-color: #2e2c25 !important;
}
.u-border-palette-3-dark-2,
.u-border-palette-3-dark-2.u-input,
.u-border-palette-3-dark-2.u-field-input.u-field-input,
.u-separator-palette-3-dark-2:after {
  border-color: #72683f;
  stroke: #72683f;
}
.u-button-style.u-border-palette-3-dark-2 {
  border-color: #72683f !important;
  color: #72683f !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3-dark-2:hover,
.u-button-style.u-border-palette-3-dark-2:focus {
  border-color: transparent !important;
  color: #675e39 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3-dark-2:hover,
.u-border-hover-palette-3-dark-2:focus,
a.u-button-style.u-border-hover-palette-3-dark-2:hover,
a.u-button-style:hover > .u-border-hover-palette-3-dark-2,
a.u-button-style.u-border-hover-palette-3-dark-2:focus {
  color: #72683f !important;
  border-color: #72683f !important;
}
.u-border-active-palette-3-dark-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-3-dark-2:active,
a.u-button-style.u-button-style.u-border-active-palette-3-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3-dark-2,
input.u-field-input.u-field-input.u-border-active-palette-3-dark-2:checked {
  color: #72683f !important;
  border-color: #72683f !important;
}
.u-link.u-border-palette-3-dark-2[class*="u-border-"] {
  border-color: #72683f !important;
}
.u-link.u-border-palette-3-dark-2[class*="u-border-"]:hover {
  border-color: #675e39 !important;
}
.u-border-palette-3-dark-1,
.u-border-palette-3-dark-1.u-input,
.u-border-palette-3-dark-1.u-field-input.u-field-input,
.u-separator-palette-3-dark-1:after {
  border-color: #b29a36;
  stroke: #b29a36;
}
.u-button-style.u-border-palette-3-dark-1 {
  border-color: #b29a36 !important;
  color: #b29a36 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3-dark-1:hover,
.u-button-style.u-border-palette-3-dark-1:focus {
  border-color: transparent !important;
  color: #a08b31 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3-dark-1:hover,
.u-border-hover-palette-3-dark-1:focus,
a.u-button-style.u-border-hover-palette-3-dark-1:hover,
a.u-button-style:hover > .u-border-hover-palette-3-dark-1,
a.u-button-style.u-border-hover-palette-3-dark-1:focus {
  color: #b29a36 !important;
  border-color: #b29a36 !important;
}
.u-border-active-palette-3-dark-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-3-dark-1:active,
a.u-button-style.u-button-style.u-border-active-palette-3-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3-dark-1,
input.u-field-input.u-field-input.u-border-active-palette-3-dark-1:checked {
  color: #b29a36 !important;
  border-color: #b29a36 !important;
}
.u-link.u-border-palette-3-dark-1[class*="u-border-"] {
  border-color: #b29a36 !important;
}
.u-link.u-border-palette-3-dark-1[class*="u-border-"]:hover {
  border-color: #a08b31 !important;
}
.u-border-palette-3,
.u-border-palette-3.u-input,
.u-border-palette-3.u-field-input.u-field-input,
.u-separator-palette-3:after {
  border-color: #f1c50e;
  stroke: #f1c50e;
}
.u-button-style.u-border-palette-3 {
  border-color: #f1c50e !important;
  color: #f1c50e !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3:hover,
.u-button-style.u-border-palette-3:focus {
  border-color: transparent !important;
  color: #d9b10d !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3:hover,
.u-border-hover-palette-3:focus,
a.u-button-style.u-border-hover-palette-3:hover,
a.u-button-style:hover > .u-border-hover-palette-3,
a.u-button-style.u-border-hover-palette-3:focus {
  color: #f1c50e !important;
  border-color: #f1c50e !important;
}
.u-border-active-palette-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-3:active,
a.u-button-style.u-button-style.u-border-active-palette-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3,
input.u-field-input.u-field-input.u-border-active-palette-3:checked {
  color: #f1c50e !important;
  border-color: #f1c50e !important;
}
.u-link.u-border-palette-3[class*="u-border-"] {
  border-color: #f1c50e !important;
}
.u-link.u-border-palette-3[class*="u-border-"]:hover {
  border-color: #d9b10d !important;
}
.u-border-palette-3-light-1,
.u-border-palette-3-light-1.u-input,
.u-border-palette-3-light-1.u-field-input.u-field-input,
.u-separator-palette-3-light-1:after {
  border-color: #f5d654;
  stroke: #f5d654;
}
.u-button-style.u-border-palette-3-light-1 {
  border-color: #f5d654 !important;
  color: #f5d654 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3-light-1:hover,
.u-button-style.u-border-palette-3-light-1:focus {
  border-color: transparent !important;
  color: #f3cf35 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3-light-1:hover,
.u-border-hover-palette-3-light-1:focus,
a.u-button-style.u-border-hover-palette-3-light-1:hover,
a.u-button-style:hover > .u-border-hover-palette-3-light-1,
a.u-button-style.u-border-hover-palette-3-light-1:focus {
  color: #f5d654 !important;
  border-color: #f5d654 !important;
}
.u-border-active-palette-3-light-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-3-light-1:active,
a.u-button-style.u-button-style.u-border-active-palette-3-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3-light-1,
input.u-field-input.u-field-input.u-border-active-palette-3-light-1:checked {
  color: #f5d654 !important;
  border-color: #f5d654 !important;
}
.u-link.u-border-palette-3-light-1[class*="u-border-"] {
  border-color: #f5d654 !important;
}
.u-link.u-border-palette-3-light-1[class*="u-border-"]:hover {
  border-color: #f3cf35 !important;
}
.u-border-palette-3-light-2,
.u-border-palette-3-light-2.u-input,
.u-border-palette-3-light-2.u-field-input.u-field-input,
.u-separator-palette-3-light-2:after {
  border-color: #f9e79b;
  stroke: #f9e79b;
}
.u-button-style.u-border-palette-3-light-2 {
  border-color: #f9e79b !important;
  color: #f9e79b !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3-light-2:hover,
.u-button-style.u-border-palette-3-light-2:focus {
  border-color: transparent !important;
  color: #f7de75 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3-light-2:hover,
.u-border-hover-palette-3-light-2:focus,
a.u-button-style.u-border-hover-palette-3-light-2:hover,
a.u-button-style:hover > .u-border-hover-palette-3-light-2,
a.u-button-style.u-border-hover-palette-3-light-2:focus {
  color: #f9e79b !important;
  border-color: #f9e79b !important;
}
.u-border-active-palette-3-light-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-3-light-2:active,
a.u-button-style.u-button-style.u-border-active-palette-3-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3-light-2,
input.u-field-input.u-field-input.u-border-active-palette-3-light-2:checked {
  color: #f9e79b !important;
  border-color: #f9e79b !important;
}
.u-link.u-border-palette-3-light-2[class*="u-border-"] {
  border-color: #f9e79b !important;
}
.u-link.u-border-palette-3-light-2[class*="u-border-"]:hover {
  border-color: #f7de75 !important;
}
.u-border-palette-3-light-3,
.u-border-palette-3-light-3.u-input,
.u-border-palette-3-light-3.u-field-input.u-field-input,
.u-separator-palette-3-light-3:after {
  border-color: #fef9e6;
  stroke: #fef9e6;
}
.u-button-style.u-border-palette-3-light-3 {
  border-color: #fef9e6 !important;
  color: #fef9e6 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3-light-3:hover,
.u-button-style.u-border-palette-3-light-3:focus {
  border-color: transparent !important;
  color: #fceeb7 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3-light-3:hover,
.u-border-hover-palette-3-light-3:focus,
a.u-button-style.u-border-hover-palette-3-light-3:hover,
a.u-button-style:hover > .u-border-hover-palette-3-light-3,
a.u-button-style.u-border-hover-palette-3-light-3:focus {
  color: #fef9e6 !important;
  border-color: #fef9e6 !important;
}
.u-border-active-palette-3-light-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-3-light-3:active,
a.u-button-style.u-button-style.u-border-active-palette-3-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3-light-3,
input.u-field-input.u-field-input.u-border-active-palette-3-light-3:checked {
  color: #fef9e6 !important;
  border-color: #fef9e6 !important;
}
.u-link.u-border-palette-3-light-3[class*="u-border-"] {
  border-color: #fef9e6 !important;
}
.u-link.u-border-palette-3-light-3[class*="u-border-"]:hover {
  border-color: #fceeb7 !important;
}
.u-border-palette-3-base,
.u-border-palette-3-base.u-input,
.u-border-palette-3-base.u-field-input.u-field-input,
.u-separator-palette-3-base:after {
  border-color: #f1c50e;
  stroke: #f1c50e;
}
.u-button-style.u-border-palette-3-base {
  border-color: #f1c50e !important;
  color: #f1c50e !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3-base:hover,
.u-button-style.u-border-palette-3-base:focus {
  border-color: transparent !important;
  color: #d9b10d !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3-base:hover,
.u-border-hover-palette-3-base:focus,
a.u-button-style.u-border-hover-palette-3-base:hover,
a.u-button-style:hover > .u-border-hover-palette-3-base,
a.u-button-style.u-border-hover-palette-3-base:focus {
  color: #f1c50e !important;
  border-color: #f1c50e !important;
}
.u-border-active-palette-3-base.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-3-base:active,
a.u-button-style.u-button-style.u-border-active-palette-3-base.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3-base,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3-base,
input.u-field-input.u-field-input.u-border-active-palette-3-base:checked {
  color: #f1c50e !important;
  border-color: #f1c50e !important;
}
.u-link.u-border-palette-3-base[class*="u-border-"] {
  border-color: #f1c50e !important;
}
.u-link.u-border-palette-3-base[class*="u-border-"]:hover {
  border-color: #d9b10d !important;
}
.u-border-palette-4-dark-3,
.u-border-palette-4-dark-3.u-input,
.u-border-palette-4-dark-3.u-field-input.u-field-input,
.u-separator-palette-4-dark-3:after {
  border-color: #293332;
  stroke: #293332;
}
.u-button-style.u-border-palette-4-dark-3 {
  border-color: #293332 !important;
  color: #293332 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4-dark-3:hover,
.u-button-style.u-border-palette-4-dark-3:focus {
  border-color: transparent !important;
  color: #252e2d !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4-dark-3:hover,
.u-border-hover-palette-4-dark-3:focus,
a.u-button-style.u-border-hover-palette-4-dark-3:hover,
a.u-button-style:hover > .u-border-hover-palette-4-dark-3,
a.u-button-style.u-border-hover-palette-4-dark-3:focus {
  color: #293332 !important;
  border-color: #293332 !important;
}
.u-border-active-palette-4-dark-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-4-dark-3:active,
a.u-button-style.u-button-style.u-border-active-palette-4-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4-dark-3,
input.u-field-input.u-field-input.u-border-active-palette-4-dark-3:checked {
  color: #293332 !important;
  border-color: #293332 !important;
}
.u-link.u-border-palette-4-dark-3[class*="u-border-"] {
  border-color: #293332 !important;
}
.u-link.u-border-palette-4-dark-3[class*="u-border-"]:hover {
  border-color: #252e2d !important;
}
.u-border-palette-4-dark-2,
.u-border-palette-4-dark-2.u-input,
.u-border-palette-4-dark-2.u-field-input.u-field-input,
.u-separator-palette-4-dark-2:after {
  border-color: #41807c;
  stroke: #41807c;
}
.u-button-style.u-border-palette-4-dark-2 {
  border-color: #41807c !important;
  color: #41807c !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4-dark-2:hover,
.u-button-style.u-border-palette-4-dark-2:focus {
  border-color: transparent !important;
  color: #3a7370 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4-dark-2:hover,
.u-border-hover-palette-4-dark-2:focus,
a.u-button-style.u-border-hover-palette-4-dark-2:hover,
a.u-button-style:hover > .u-border-hover-palette-4-dark-2,
a.u-button-style.u-border-hover-palette-4-dark-2:focus {
  color: #41807c !important;
  border-color: #41807c !important;
}
.u-border-active-palette-4-dark-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-4-dark-2:active,
a.u-button-style.u-button-style.u-border-active-palette-4-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4-dark-2,
input.u-field-input.u-field-input.u-border-active-palette-4-dark-2:checked {
  color: #41807c !important;
  border-color: #41807c !important;
}
.u-link.u-border-palette-4-dark-2[class*="u-border-"] {
  border-color: #41807c !important;
}
.u-link.u-border-palette-4-dark-2[class*="u-border-"]:hover {
  border-color: #3a7370 !important;
}
.u-border-palette-4-dark-1,
.u-border-palette-4-dark-1.u-input,
.u-border-palette-4-dark-1.u-field-input.u-field-input,
.u-separator-palette-4-dark-1:after {
  border-color: #2cccc4;
  stroke: #2cccc4;
}
.u-button-style.u-border-palette-4-dark-1 {
  border-color: #2cccc4 !important;
  color: #2cccc4 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4-dark-1:hover,
.u-button-style.u-border-palette-4-dark-1:focus {
  border-color: transparent !important;
  color: #28b8b0 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4-dark-1:hover,
.u-border-hover-palette-4-dark-1:focus,
a.u-button-style.u-border-hover-palette-4-dark-1:hover,
a.u-button-style:hover > .u-border-hover-palette-4-dark-1,
a.u-button-style.u-border-hover-palette-4-dark-1:focus {
  color: #2cccc4 !important;
  border-color: #2cccc4 !important;
}
.u-border-active-palette-4-dark-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-4-dark-1:active,
a.u-button-style.u-button-style.u-border-active-palette-4-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4-dark-1,
input.u-field-input.u-field-input.u-border-active-palette-4-dark-1:checked {
  color: #2cccc4 !important;
  border-color: #2cccc4 !important;
}
.u-link.u-border-palette-4-dark-1[class*="u-border-"] {
  border-color: #2cccc4 !important;
}
.u-link.u-border-palette-4-dark-1[class*="u-border-"]:hover {
  border-color: #28b8b0 !important;
}
.u-border-palette-4,
.u-border-palette-4.u-input,
.u-border-palette-4.u-field-input.u-field-input,
.u-separator-palette-4:after {
  border-color: #3be8e0;
  stroke: #3be8e0;
}
.u-button-style.u-border-palette-4 {
  border-color: #3be8e0 !important;
  color: #3be8e0 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4:hover,
.u-button-style.u-border-palette-4:focus {
  border-color: transparent !important;
  color: #21e5dc !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4:hover,
.u-border-hover-palette-4:focus,
a.u-button-style.u-border-hover-palette-4:hover,
a.u-button-style:hover > .u-border-hover-palette-4,
a.u-button-style.u-border-hover-palette-4:focus {
  color: #3be8e0 !important;
  border-color: #3be8e0 !important;
}
.u-border-active-palette-4.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-4:active,
a.u-button-style.u-button-style.u-border-active-palette-4.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4,
input.u-field-input.u-field-input.u-border-active-palette-4:checked {
  color: #3be8e0 !important;
  border-color: #3be8e0 !important;
}
.u-link.u-border-palette-4[class*="u-border-"] {
  border-color: #3be8e0 !important;
}
.u-link.u-border-palette-4[class*="u-border-"]:hover {
  border-color: #21e5dc !important;
}
.u-border-palette-4-light-1,
.u-border-palette-4-light-1.u-input,
.u-border-palette-4-light-1.u-field-input.u-field-input,
.u-separator-palette-4-light-1:after {
  border-color: #72efe9;
  stroke: #72efe9;
}
.u-button-style.u-border-palette-4-light-1 {
  border-color: #72efe9 !important;
  color: #72efe9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4-light-1:hover,
.u-button-style.u-border-palette-4-light-1:focus {
  border-color: transparent !important;
  color: #52ebe4 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4-light-1:hover,
.u-border-hover-palette-4-light-1:focus,
a.u-button-style.u-border-hover-palette-4-light-1:hover,
a.u-button-style:hover > .u-border-hover-palette-4-light-1,
a.u-button-style.u-border-hover-palette-4-light-1:focus {
  color: #72efe9 !important;
  border-color: #72efe9 !important;
}
.u-border-active-palette-4-light-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-4-light-1:active,
a.u-button-style.u-button-style.u-border-active-palette-4-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4-light-1,
input.u-field-input.u-field-input.u-border-active-palette-4-light-1:checked {
  color: #72efe9 !important;
  border-color: #72efe9 !important;
}
.u-link.u-border-palette-4-light-1[class*="u-border-"] {
  border-color: #72efe9 !important;
}
.u-link.u-border-palette-4-light-1[class*="u-border-"]:hover {
  border-color: #52ebe4 !important;
}
.u-border-palette-4-light-2,
.u-border-palette-4-light-2.u-input,
.u-border-palette-4-light-2.u-field-input.u-field-input,
.u-separator-palette-4-light-2:after {
  border-color: #adf6f2;
  stroke: #adf6f2;
}
.u-button-style.u-border-palette-4-light-2 {
  border-color: #adf6f2 !important;
  color: #adf6f2 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4-light-2:hover,
.u-button-style.u-border-palette-4-light-2:focus {
  border-color: transparent !important;
  color: #87f2ec !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4-light-2:hover,
.u-border-hover-palette-4-light-2:focus,
a.u-button-style.u-border-hover-palette-4-light-2:hover,
a.u-button-style:hover > .u-border-hover-palette-4-light-2,
a.u-button-style.u-border-hover-palette-4-light-2:focus {
  color: #adf6f2 !important;
  border-color: #adf6f2 !important;
}
.u-border-active-palette-4-light-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-4-light-2:active,
a.u-button-style.u-button-style.u-border-active-palette-4-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4-light-2,
input.u-field-input.u-field-input.u-border-active-palette-4-light-2:checked {
  color: #adf6f2 !important;
  border-color: #adf6f2 !important;
}
.u-link.u-border-palette-4-light-2[class*="u-border-"] {
  border-color: #adf6f2 !important;
}
.u-link.u-border-palette-4-light-2[class*="u-border-"]:hover {
  border-color: #87f2ec !important;
}
.u-border-palette-4-light-3,
.u-border-palette-4-light-3.u-input,
.u-border-palette-4-light-3.u-field-input.u-field-input,
.u-separator-palette-4-light-3:after {
  border-color: #eafdfc;
  stroke: #eafdfc;
}
.u-button-style.u-border-palette-4-light-3 {
  border-color: #eafdfc !important;
  color: #eafdfc !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4-light-3:hover,
.u-button-style.u-border-palette-4-light-3:focus {
  border-color: transparent !important;
  color: #bef9f6 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4-light-3:hover,
.u-border-hover-palette-4-light-3:focus,
a.u-button-style.u-border-hover-palette-4-light-3:hover,
a.u-button-style:hover > .u-border-hover-palette-4-light-3,
a.u-button-style.u-border-hover-palette-4-light-3:focus {
  color: #eafdfc !important;
  border-color: #eafdfc !important;
}
.u-border-active-palette-4-light-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-4-light-3:active,
a.u-button-style.u-button-style.u-border-active-palette-4-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4-light-3,
input.u-field-input.u-field-input.u-border-active-palette-4-light-3:checked {
  color: #eafdfc !important;
  border-color: #eafdfc !important;
}
.u-link.u-border-palette-4-light-3[class*="u-border-"] {
  border-color: #eafdfc !important;
}
.u-link.u-border-palette-4-light-3[class*="u-border-"]:hover {
  border-color: #bef9f6 !important;
}
.u-border-palette-4-base,
.u-border-palette-4-base.u-input,
.u-border-palette-4-base.u-field-input.u-field-input,
.u-separator-palette-4-base:after {
  border-color: #2cccc4;
  stroke: #2cccc4;
}
.u-button-style.u-border-palette-4-base {
  border-color: #2cccc4 !important;
  color: #2cccc4 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4-base:hover,
.u-button-style.u-border-palette-4-base:focus {
  border-color: transparent !important;
  color: #28b8b0 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4-base:hover,
.u-border-hover-palette-4-base:focus,
a.u-button-style.u-border-hover-palette-4-base:hover,
a.u-button-style:hover > .u-border-hover-palette-4-base,
a.u-button-style.u-border-hover-palette-4-base:focus {
  color: #2cccc4 !important;
  border-color: #2cccc4 !important;
}
.u-border-active-palette-4-base.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-4-base:active,
a.u-button-style.u-button-style.u-border-active-palette-4-base.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4-base,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4-base,
input.u-field-input.u-field-input.u-border-active-palette-4-base:checked {
  color: #2cccc4 !important;
  border-color: #2cccc4 !important;
}
.u-link.u-border-palette-4-base[class*="u-border-"] {
  border-color: #2cccc4 !important;
}
.u-link.u-border-palette-4-base[class*="u-border-"]:hover {
  border-color: #28b8b0 !important;
}
.u-border-palette-5-dark-3,
.u-border-palette-5-dark-3.u-input,
.u-border-palette-5-dark-3.u-field-input.u-field-input,
.u-separator-palette-5-dark-3:after {
  border-color: #292d33;
  stroke: #292d33;
}
.u-button-style.u-border-palette-5-dark-3 {
  border-color: #292d33 !important;
  color: #292d33 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5-dark-3:hover,
.u-button-style.u-border-palette-5-dark-3:focus {
  border-color: transparent !important;
  color: #25292e !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5-dark-3:hover,
.u-border-hover-palette-5-dark-3:focus,
a.u-button-style.u-border-hover-palette-5-dark-3:hover,
a.u-button-style:hover > .u-border-hover-palette-5-dark-3,
a.u-button-style.u-border-hover-palette-5-dark-3:focus {
  color: #292d33 !important;
  border-color: #292d33 !important;
}
.u-border-active-palette-5-dark-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-5-dark-3:active,
a.u-button-style.u-button-style.u-border-active-palette-5-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5-dark-3,
input.u-field-input.u-field-input.u-border-active-palette-5-dark-3:checked {
  color: #292d33 !important;
  border-color: #292d33 !important;
}
.u-link.u-border-palette-5-dark-3[class*="u-border-"] {
  border-color: #292d33 !important;
}
.u-link.u-border-palette-5-dark-3[class*="u-border-"]:hover {
  border-color: #25292e !important;
}
.u-border-palette-5-dark-2,
.u-border-palette-5-dark-2.u-input,
.u-border-palette-5-dark-2.u-field-input.u-field-input,
.u-separator-palette-5-dark-2:after {
  border-color: var(--color-darkest-gray)c66;
  stroke: var(--color-darkest-gray)c66;
}
.u-button-style.u-border-palette-5-dark-2 {
  border-color: var(--color-darkest-gray)c66 !important;
  color: var(--color-darkest-gray)c66 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5-dark-2:hover,
.u-button-style.u-border-palette-5-dark-2:focus {
  border-color: transparent !important;
  color: #4d535c !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5-dark-2:hover,
.u-border-hover-palette-5-dark-2:focus,
a.u-button-style.u-border-hover-palette-5-dark-2:hover,
a.u-button-style:hover > .u-border-hover-palette-5-dark-2,
a.u-button-style.u-border-hover-palette-5-dark-2:focus {
  color: var(--color-darkest-gray)c66 !important;
  border-color: var(--color-darkest-gray)c66 !important;
}
.u-border-active-palette-5-dark-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-5-dark-2:active,
a.u-button-style.u-button-style.u-border-active-palette-5-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5-dark-2,
input.u-field-input.u-field-input.u-border-active-palette-5-dark-2:checked {
  color: var(--color-darkest-gray)c66 !important;
  border-color: var(--color-darkest-gray)c66 !important;
}
.u-link.u-border-palette-5-dark-2[class*="u-border-"] {
  border-color: var(--color-darkest-gray)c66 !important;
}
.u-link.u-border-palette-5-dark-2[class*="u-border-"]:hover {
  border-color: #4d535c !important;
}
.u-border-palette-5-dark-1,
.u-border-palette-5-dark-1.u-input,
.u-border-palette-5-dark-1.u-field-input.u-field-input,
.u-separator-palette-5-dark-1:after {
  border-color: #858e99;
  stroke: #858e99;
}
.u-button-style.u-border-palette-5-dark-1 {
  border-color: #858e99 !important;
  color: #858e99 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5-dark-1:hover,
.u-button-style.u-border-palette-5-dark-1:focus {
  border-color: transparent !important;
  color: #75808c !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5-dark-1:hover,
.u-border-hover-palette-5-dark-1:focus,
a.u-button-style.u-border-hover-palette-5-dark-1:hover,
a.u-button-style:hover > .u-border-hover-palette-5-dark-1,
a.u-button-style.u-border-hover-palette-5-dark-1:focus {
  color: #858e99 !important;
  border-color: #858e99 !important;
}
.u-border-active-palette-5-dark-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-5-dark-1:active,
a.u-button-style.u-button-style.u-border-active-palette-5-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5-dark-1,
input.u-field-input.u-field-input.u-border-active-palette-5-dark-1:checked {
  color: #858e99 !important;
  border-color: #858e99 !important;
}
.u-link.u-border-palette-5-dark-1[class*="u-border-"] {
  border-color: #858e99 !important;
}
.u-link.u-border-palette-5-dark-1[class*="u-border-"]:hover {
  border-color: #75808c !important;
}
.u-border-palette-5,
.u-border-palette-5.u-input,
.u-border-palette-5.u-field-input.u-field-input,
.u-separator-palette-5:after {
  border-color: #b9c1cc;
  stroke: #b9c1cc;
}
.u-button-style.u-border-palette-5 {
  border-color: #b9c1cc !important;
  color: #b9c1cc !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5:hover,
.u-button-style.u-border-palette-5:focus {
  border-color: transparent !important;
  color: #a2adbc !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5:hover,
.u-border-hover-palette-5:focus,
a.u-button-style.u-border-hover-palette-5:hover,
a.u-button-style:hover > .u-border-hover-palette-5,
a.u-button-style.u-border-hover-palette-5:focus {
  color: #b9c1cc !important;
  border-color: #b9c1cc !important;
}
.u-border-active-palette-5.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-5:active,
a.u-button-style.u-button-style.u-border-active-palette-5.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5,
input.u-field-input.u-field-input.u-border-active-palette-5:checked {
  color: #b9c1cc !important;
  border-color: #b9c1cc !important;
}
.u-link.u-border-palette-5[class*="u-border-"] {
  border-color: #b9c1cc !important;
}
.u-link.u-border-palette-5[class*="u-border-"]:hover {
  border-color: #a2adbc !important;
}
.u-border-palette-5-light-1,
.u-border-palette-5-light-1.u-input,
.u-border-palette-5-light-1.u-field-input.u-field-input,
.u-separator-palette-5-light-1:after {
  border-color: #ccd3db;
  stroke: #ccd3db;
}
.u-button-style.u-border-palette-5-light-1 {
  border-color: #ccd3db !important;
  color: #ccd3db !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5-light-1:hover,
.u-button-style.u-border-palette-5-light-1:focus {
  border-color: transparent !important;
  color: #b3bec9 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5-light-1:hover,
.u-border-hover-palette-5-light-1:focus,
a.u-button-style.u-border-hover-palette-5-light-1:hover,
a.u-button-style:hover > .u-border-hover-palette-5-light-1,
a.u-button-style.u-border-hover-palette-5-light-1:focus {
  color: #ccd3db !important;
  border-color: #ccd3db !important;
}
.u-border-active-palette-5-light-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-5-light-1:active,
a.u-button-style.u-button-style.u-border-active-palette-5-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5-light-1,
input.u-field-input.u-field-input.u-border-active-palette-5-light-1:checked {
  color: #ccd3db !important;
  border-color: #ccd3db !important;
}
.u-link.u-border-palette-5-light-1[class*="u-border-"] {
  border-color: #ccd3db !important;
}
.u-link.u-border-palette-5-light-1[class*="u-border-"]:hover {
  border-color: #b3bec9 !important;
}
.u-border-palette-5-light-2,
.u-border-palette-5-light-2.u-input,
.u-border-palette-5-light-2.u-field-input.u-field-input,
.u-separator-palette-5-light-2:after {
  border-color: #e0e5eb;
  stroke: #e0e5eb;
}
.u-button-style.u-border-palette-5-light-2 {
  border-color: #e0e5eb !important;
  color: #e0e5eb !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5-light-2:hover,
.u-button-style.u-border-palette-5-light-2:focus {
  border-color: transparent !important;
  color: #c4ced9 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5-light-2:hover,
.u-border-hover-palette-5-light-2:focus,
a.u-button-style.u-border-hover-palette-5-light-2:hover,
a.u-button-style:hover > .u-border-hover-palette-5-light-2,
a.u-button-style.u-border-hover-palette-5-light-2:focus {
  color: #e0e5eb !important;
  border-color: #e0e5eb !important;
}
.u-border-active-palette-5-light-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-5-light-2:active,
a.u-button-style.u-button-style.u-border-active-palette-5-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5-light-2,
input.u-field-input.u-field-input.u-border-active-palette-5-light-2:checked {
  color: #e0e5eb !important;
  border-color: #e0e5eb !important;
}
.u-link.u-border-palette-5-light-2[class*="u-border-"] {
  border-color: #e0e5eb !important;
}
.u-link.u-border-palette-5-light-2[class*="u-border-"]:hover {
  border-color: #c4ced9 !important;
}
.u-border-palette-5-light-3,
.u-border-palette-5-light-3.u-input,
.u-border-palette-5-light-3.u-field-input.u-field-input,
.u-separator-palette-5-light-3:after {
  border-color: #f5f7fa;
  stroke: #f5f7fa;
}
.u-button-style.u-border-palette-5-light-3 {
  border-color: #f5f7fa !important;
  color: #f5f7fa !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5-light-3:hover,
.u-button-style.u-border-palette-5-light-3:focus {
  border-color: transparent !important;
  color: #d4dde9 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5-light-3:hover,
.u-border-hover-palette-5-light-3:focus,
a.u-button-style.u-border-hover-palette-5-light-3:hover,
a.u-button-style:hover > .u-border-hover-palette-5-light-3,
a.u-button-style.u-border-hover-palette-5-light-3:focus {
  color: #f5f7fa !important;
  border-color: #f5f7fa !important;
}
.u-border-active-palette-5-light-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-5-light-3:active,
a.u-button-style.u-button-style.u-border-active-palette-5-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5-light-3,
input.u-field-input.u-field-input.u-border-active-palette-5-light-3:checked {
  color: #f5f7fa !important;
  border-color: #f5f7fa !important;
}
.u-link.u-border-palette-5-light-3[class*="u-border-"] {
  border-color: #f5f7fa !important;
}
.u-link.u-border-palette-5-light-3[class*="u-border-"]:hover {
  border-color: #d4dde9 !important;
}
.u-border-palette-5-base,
.u-border-palette-5-base.u-input,
.u-border-palette-5-base.u-field-input.u-field-input,
.u-separator-palette-5-base:after {
  border-color: #b9c1cc;
  stroke: #b9c1cc;
}
.u-button-style.u-border-palette-5-base {
  border-color: #b9c1cc !important;
  color: #b9c1cc !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5-base:hover,
.u-button-style.u-border-palette-5-base:focus {
  border-color: transparent !important;
  color: #a2adbc !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5-base:hover,
.u-border-hover-palette-5-base:focus,
a.u-button-style.u-border-hover-palette-5-base:hover,
a.u-button-style:hover > .u-border-hover-palette-5-base,
a.u-button-style.u-border-hover-palette-5-base:focus {
  color: #b9c1cc !important;
  border-color: #b9c1cc !important;
}
.u-border-active-palette-5-base.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-palette-5-base:active,
a.u-button-style.u-button-style.u-border-active-palette-5-base.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5-base,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5-base,
input.u-field-input.u-field-input.u-border-active-palette-5-base:checked {
  color: #b9c1cc !important;
  border-color: #b9c1cc !important;
}
.u-link.u-border-palette-5-base[class*="u-border-"] {
  border-color: #b9c1cc !important;
}
.u-link.u-border-palette-5-base[class*="u-border-"]:hover {
  border-color: #a2adbc !important;
}
.u-border-grey-dark-3,
.u-border-grey-dark-3.u-input,
.u-border-grey-dark-3.u-field-input.u-field-input,
.u-separator-grey-dark-3:after {
  border-color: #212121;
  stroke: #212121;
}
.u-button-style.u-border-grey-dark-3 {
  border-color: #212121 !important;
  color: #212121 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-dark-3:hover,
.u-button-style.u-border-grey-dark-3:focus {
  border-color: transparent !important;
  color: #1e1e1e !important;
  background-color: transparent !important;
}
.u-border-hover-grey-dark-3:hover,
.u-border-hover-grey-dark-3:focus,
a.u-button-style.u-border-hover-grey-dark-3:hover,
a.u-button-style:hover > .u-border-hover-grey-dark-3,
a.u-button-style.u-border-hover-grey-dark-3:focus {
  color: #212121 !important;
  border-color: #212121 !important;
}
.u-border-active-grey-dark-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-dark-3:active,
a.u-button-style.u-button-style.u-border-active-grey-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-grey-dark-3,
input.u-field-input.u-field-input.u-border-active-grey-dark-3:checked {
  color: #212121 !important;
  border-color: #212121 !important;
}
.u-link.u-border-grey-dark-3[class*="u-border-"] {
  border-color: #212121 !important;
}
.u-link.u-border-grey-dark-3[class*="u-border-"]:hover {
  border-color: #1e1e1e !important;
}
.u-border-grey-dark-2,
.u-border-grey-dark-2.u-input,
.u-border-grey-dark-2.u-field-input.u-field-input,
.u-separator-grey-dark-2:after {
  border-color: var(--color-text-medium)333;
  stroke: var(--color-text-medium)333;
}
.u-button-style.u-border-grey-dark-2 {
  border-color: var(--color-text-medium)333 !important;
  color: var(--color-text-medium)333 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-dark-2:hover,
.u-button-style.u-border-grey-dark-2:focus {
  border-color: transparent !important;
  color: #2e2e2e !important;
  background-color: transparent !important;
}
.u-border-hover-grey-dark-2:hover,
.u-border-hover-grey-dark-2:focus,
a.u-button-style.u-border-hover-grey-dark-2:hover,
a.u-button-style:hover > .u-border-hover-grey-dark-2,
a.u-button-style.u-border-hover-grey-dark-2:focus {
  color: var(--color-text-medium)333 !important;
  border-color: var(--color-text-medium)333 !important;
}
.u-border-active-grey-dark-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-dark-2:active,
a.u-button-style.u-button-style.u-border-active-grey-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-grey-dark-2,
input.u-field-input.u-field-input.u-border-active-grey-dark-2:checked {
  color: var(--color-text-medium)333 !important;
  border-color: var(--color-text-medium)333 !important;
}
.u-link.u-border-grey-dark-2[class*="u-border-"] {
  border-color: var(--color-text-medium)333 !important;
}
.u-link.u-border-grey-dark-2[class*="u-border-"]:hover {
  border-color: #2e2e2e !important;
}
.u-border-grey-dark-1,
.u-border-grey-dark-1.u-input,
.u-border-grey-dark-1.u-field-input.u-field-input,
.u-separator-grey-dark-1:after {
  border-color: #454545;
  stroke: #454545;
}
.u-button-style.u-border-grey-dark-1 {
  border-color: #454545 !important;
  color: #454545 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-dark-1:hover,
.u-button-style.u-border-grey-dark-1:focus {
  border-color: transparent !important;
  color: #3e3e3e !important;
  background-color: transparent !important;
}
.u-border-hover-grey-dark-1:hover,
.u-border-hover-grey-dark-1:focus,
a.u-button-style.u-border-hover-grey-dark-1:hover,
a.u-button-style:hover > .u-border-hover-grey-dark-1,
a.u-button-style.u-border-hover-grey-dark-1:focus {
  color: #454545 !important;
  border-color: #454545 !important;
}
.u-border-active-grey-dark-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-dark-1:active,
a.u-button-style.u-button-style.u-border-active-grey-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-grey-dark-1,
input.u-field-input.u-field-input.u-border-active-grey-dark-1:checked {
  color: #454545 !important;
  border-color: #454545 !important;
}
.u-link.u-border-grey-dark-1[class*="u-border-"] {
  border-color: #454545 !important;
}
.u-link.u-border-grey-dark-1[class*="u-border-"]:hover {
  border-color: #3e3e3e !important;
}
.u-border-grey,
.u-border-grey.u-input,
.u-border-grey.u-field-input.u-field-input,
.u-separator-grey:after {
  border-color: #b3b3b3;
  stroke: #b3b3b3;
}
.u-button-style.u-border-grey {
  border-color: #b3b3b3 !important;
  color: #b3b3b3 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey:hover,
.u-button-style.u-border-grey:focus {
  border-color: transparent !important;
  color: #a1a1a1 !important;
  background-color: transparent !important;
}
.u-border-hover-grey:hover,
.u-border-hover-grey:focus,
a.u-button-style.u-border-hover-grey:hover,
a.u-button-style:hover > .u-border-hover-grey,
a.u-button-style.u-border-hover-grey:focus {
  color: #b3b3b3 !important;
  border-color: #b3b3b3 !important;
}
.u-border-active-grey.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey:active,
a.u-button-style.u-button-style.u-border-active-grey.active,
a.u-button-style.u-button-style.active > .u-border-active-grey,
li.active > a.u-button-style.u-button-style.u-border-active-grey,
input.u-field-input.u-field-input.u-border-active-grey:checked {
  color: #b3b3b3 !important;
  border-color: #b3b3b3 !important;
}
.u-link.u-border-grey[class*="u-border-"] {
  border-color: #b3b3b3 !important;
}
.u-link.u-border-grey[class*="u-border-"]:hover {
  border-color: #a1a1a1 !important;
}
.u-border-grey-light-1,
.u-border-grey-light-1.u-input,
.u-border-grey-light-1.u-field-input.u-field-input,
.u-separator-grey-light-1:after {
  border-color: #d9d9d9;
  stroke: #d9d9d9;
}
.u-button-style.u-border-grey-light-1 {
  border-color: #d9d9d9 !important;
  color: #d9d9d9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-light-1:hover,
.u-button-style.u-border-grey-light-1:focus {
  border-color: transparent !important;
  color: #c3c3c3 !important;
  background-color: transparent !important;
}
.u-border-hover-grey-light-1:hover,
.u-border-hover-grey-light-1:focus,
a.u-button-style.u-border-hover-grey-light-1:hover,
a.u-button-style:hover > .u-border-hover-grey-light-1,
a.u-button-style.u-border-hover-grey-light-1:focus {
  color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.u-border-active-grey-light-1.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-light-1:active,
a.u-button-style.u-button-style.u-border-active-grey-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-grey-light-1,
input.u-field-input.u-field-input.u-border-active-grey-light-1:checked {
  color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.u-link.u-border-grey-light-1[class*="u-border-"] {
  border-color: #d9d9d9 !important;
}
.u-link.u-border-grey-light-1[class*="u-border-"]:hover {
  border-color: #c3c3c3 !important;
}
.u-border-grey-light-2,
.u-border-grey-light-2.u-input,
.u-border-grey-light-2.u-field-input.u-field-input,
.u-separator-grey-light-2:after {
  border-color: #eeeeee;
  stroke: #eeeeee;
}
.u-button-style.u-border-grey-light-2 {
  border-color: #eeeeee !important;
  color: #eeeeee !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-light-2:hover,
.u-button-style.u-border-grey-light-2:focus {
  border-color: transparent !important;
  color: #d6d6d6 !important;
  background-color: transparent !important;
}
.u-border-hover-grey-light-2:hover,
.u-border-hover-grey-light-2:focus,
a.u-button-style.u-border-hover-grey-light-2:hover,
a.u-button-style:hover > .u-border-hover-grey-light-2,
a.u-button-style.u-border-hover-grey-light-2:focus {
  color: #eeeeee !important;
  border-color: #eeeeee !important;
}
.u-border-active-grey-light-2.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-light-2:active,
a.u-button-style.u-button-style.u-border-active-grey-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-grey-light-2,
input.u-field-input.u-field-input.u-border-active-grey-light-2:checked {
  color: #eeeeee !important;
  border-color: #eeeeee !important;
}
.u-link.u-border-grey-light-2[class*="u-border-"] {
  border-color: #eeeeee !important;
}
.u-link.u-border-grey-light-2[class*="u-border-"]:hover {
  border-color: #d6d6d6 !important;
}
.u-border-grey-light-3,
.u-border-grey-light-3.u-input,
.u-border-grey-light-3.u-field-input.u-field-input,
.u-separator-grey-light-3:after {
  border-color: #f6f6f6;
  stroke: #f6f6f6;
}
.u-button-style.u-border-grey-light-3 {
  border-color: #f6f6f6 !important;
  color: #f6f6f6 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-light-3:hover,
.u-button-style.u-border-grey-light-3:focus {
  border-color: transparent !important;
  color: #dddddd !important;
  background-color: transparent !important;
}
.u-border-hover-grey-light-3:hover,
.u-border-hover-grey-light-3:focus,
a.u-button-style.u-border-hover-grey-light-3:hover,
a.u-button-style:hover > .u-border-hover-grey-light-3,
a.u-button-style.u-border-hover-grey-light-3:focus {
  color: #f6f6f6 !important;
  border-color: #f6f6f6 !important;
}
.u-border-active-grey-light-3.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-light-3:active,
a.u-button-style.u-button-style.u-border-active-grey-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-grey-light-3,
input.u-field-input.u-field-input.u-border-active-grey-light-3:checked {
  color: #f6f6f6 !important;
  border-color: #f6f6f6 !important;
}
.u-link.u-border-grey-light-3[class*="u-border-"] {
  border-color: #f6f6f6 !important;
}
.u-link.u-border-grey-light-3[class*="u-border-"]:hover {
  border-color: #dddddd !important;
}
.u-border-white,
.u-border-white.u-input,
.u-border-white.u-field-input.u-field-input,
.u-separator-white:after {
  border-color: var(--color-white);
  stroke: var(--color-white);
}
.u-button-style.u-border-white {
  border-color: var(--color-white) !important;
  color: var(--color-white) !important;
  background-color: transparent !important;
}
.u-button-style.u-border-white:hover,
.u-button-style.u-border-white:focus {
  border-color: transparent !important;
  color: #e6e6e6 !important;
  background-color: transparent !important;
}
.u-border-hover-white:hover,
.u-border-hover-white:focus,
a.u-button-style.u-border-hover-white:hover,
a.u-button-style:hover > .u-border-hover-white,
a.u-button-style.u-border-hover-white:focus {
  color: var(--color-white) !important;
  border-color: var(--color-white) !important;
}
.u-border-active-white.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-white:active,
a.u-button-style.u-button-style.u-border-active-white.active,
a.u-button-style.u-button-style.active > .u-border-active-white,
li.active > a.u-button-style.u-button-style.u-border-active-white,
input.u-field-input.u-field-input.u-border-active-white:checked {
  color: var(--color-white) !important;
  border-color: var(--color-white) !important;
}
.u-link.u-border-white[class*="u-border-"] {
  border-color: var(--color-white) !important;
}
.u-link.u-border-white[class*="u-border-"]:hover {
  border-color: #e6e6e6 !important;
}
.u-border-black,
.u-border-black.u-input,
.u-border-black.u-field-input.u-field-input,
.u-separator-black:after {
  border-color: #000000;
  stroke: #000000;
}
.u-button-style.u-border-black {
  border-color: #000000 !important;
  color: #000000 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-black:hover,
.u-button-style.u-border-black:focus {
  border-color: transparent !important;
  color: #000000 !important;
  background-color: transparent !important;
}
.u-border-hover-black:hover,
.u-border-hover-black:focus,
a.u-button-style.u-border-hover-black:hover,
a.u-button-style:hover > .u-border-hover-black,
a.u-button-style.u-border-hover-black:focus {
  color: #000000 !important;
  border-color: #000000 !important;
}
.u-border-active-black.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-black:active,
a.u-button-style.u-button-style.u-border-active-black.active,
a.u-button-style.u-button-style.active > .u-border-active-black,
li.active > a.u-button-style.u-button-style.u-border-active-black,
input.u-field-input.u-field-input.u-border-active-black:checked {
  color: #000000 !important;
  border-color: #000000 !important;
}
.u-link.u-border-black[class*="u-border-"] {
  border-color: #000000 !important;
}
.u-link.u-border-black[class*="u-border-"]:hover {
  border-color: #000000 !important;
}
.u-border-body-color,
.u-border-body-color.u-input,
.u-border-body-color.u-field-input.u-field-input,
.u-separator-body-color:after {
  border-color: #111111;
  stroke: #111111;
}
.u-button-style.u-border-body-color {
  border-color: #111111 !important;
  color: #111111 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-body-color:hover,
.u-button-style.u-border-body-color:focus {
  border-color: transparent !important;
  color: #0f0f0f !important;
  background-color: transparent !important;
}
.u-border-hover-body-color:hover,
.u-border-hover-body-color:focus,
a.u-button-style.u-border-hover-body-color:hover,
a.u-button-style:hover > .u-border-hover-body-color,
a.u-button-style.u-border-hover-body-color:focus {
  color: #111111 !important;
  border-color: #111111 !important;
}
.u-border-active-body-color.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-body-color:active,
a.u-button-style.u-button-style.u-border-active-body-color.active,
a.u-button-style.u-button-style.active > .u-border-active-body-color,
li.active > a.u-button-style.u-button-style.u-border-active-body-color,
input.u-field-input.u-field-input.u-border-active-body-color:checked {
  color: #111111 !important;
  border-color: #111111 !important;
}
.u-link.u-border-body-color[class*="u-border-"] {
  border-color: #111111 !important;
}
.u-link.u-border-body-color[class*="u-border-"]:hover {
  border-color: #0f0f0f !important;
}
.u-border-body-alt-color,
.u-border-body-alt-color.u-input,
.u-border-body-alt-color.u-field-input.u-field-input,
.u-separator-body-alt-color:after {
  border-color: var(--color-white);
  stroke: var(--color-white);
}
.u-button-style.u-border-body-alt-color {
  border-color: var(--color-white) !important;
  color: var(--color-white) !important;
  background-color: transparent !important;
}
.u-button-style.u-border-body-alt-color:hover,
.u-button-style.u-border-body-alt-color:focus {
  border-color: transparent !important;
  color: #e6e6e6 !important;
  background-color: transparent !important;
}
.u-border-hover-body-alt-color:hover,
.u-border-hover-body-alt-color:focus,
a.u-button-style.u-border-hover-body-alt-color:hover,
a.u-button-style:hover > .u-border-hover-body-alt-color,
a.u-button-style.u-border-hover-body-alt-color:focus {
  color: var(--color-white) !important;
  border-color: var(--color-white) !important;
}
.u-border-active-body-alt-color.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-body-alt-color:active,
a.u-button-style.u-button-style.u-border-active-body-alt-color.active,
a.u-button-style.u-button-style.active > .u-border-active-body-alt-color,
li.active > a.u-button-style.u-button-style.u-border-active-body-alt-color,
input.u-field-input.u-field-input.u-border-active-body-alt-color:checked {
  color: var(--color-white) !important;
  border-color: var(--color-white) !important;
}
.u-link.u-border-body-alt-color[class*="u-border-"] {
  border-color: var(--color-white) !important;
}
.u-link.u-border-body-alt-color[class*="u-border-"]:hover {
  border-color: #e6e6e6 !important;
}
.u-border-grey-25,
.u-border-grey-25.u-input,
.u-border-grey-25.u-field-input.u-field-input,
.u-separator-grey-25:after {
  border-color: #c0c0c0;
  stroke: #c0c0c0;
}
.u-button-style.u-border-grey-25 {
  border-color: #c0c0c0 !important;
  color: #c0c0c0 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-25:hover,
.u-button-style.u-border-grey-25:focus {
  border-color: transparent !important;
  color: #adadad !important;
  background-color: transparent !important;
}
.u-border-hover-grey-25:hover,
.u-border-hover-grey-25:focus,
a.u-button-style.u-border-hover-grey-25:hover,
a.u-button-style:hover > .u-border-hover-grey-25,
a.u-button-style.u-border-hover-grey-25:focus {
  color: #c0c0c0 !important;
  border-color: #c0c0c0 !important;
}
.u-border-active-grey-25.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-25:active,
a.u-button-style.u-button-style.u-border-active-grey-25.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-25,
li.active > a.u-button-style.u-button-style.u-border-active-grey-25,
input.u-field-input.u-field-input.u-border-active-grey-25:checked {
  color: #c0c0c0 !important;
  border-color: #c0c0c0 !important;
}
.u-link.u-border-grey-25[class*="u-border-"] {
  border-color: #c0c0c0 !important;
}
.u-link.u-border-grey-25[class*="u-border-"]:hover {
  border-color: #adadad !important;
}
.u-border-grey-5,
.u-border-grey-5.u-input,
.u-border-grey-5.u-field-input.u-field-input,
.u-separator-grey-5:after {
  border-color: #f2f2f2;
  stroke: #f2f2f2;
}
.u-button-style.u-border-grey-5 {
  border-color: #f2f2f2 !important;
  color: #f2f2f2 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-5:hover,
.u-button-style.u-border-grey-5:focus {
  border-color: transparent !important;
  color: #dadada !important;
  background-color: transparent !important;
}
.u-border-hover-grey-5:hover,
.u-border-hover-grey-5:focus,
a.u-button-style.u-border-hover-grey-5:hover,
a.u-button-style:hover > .u-border-hover-grey-5,
a.u-button-style.u-border-hover-grey-5:focus {
  color: #f2f2f2 !important;
  border-color: #f2f2f2 !important;
}
.u-border-active-grey-5.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-5:active,
a.u-button-style.u-button-style.u-border-active-grey-5.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-5,
li.active > a.u-button-style.u-button-style.u-border-active-grey-5,
input.u-field-input.u-field-input.u-border-active-grey-5:checked {
  color: #f2f2f2 !important;
  border-color: #f2f2f2 !important;
}
.u-link.u-border-grey-5[class*="u-border-"] {
  border-color: #f2f2f2 !important;
}
.u-link.u-border-grey-5[class*="u-border-"]:hover {
  border-color: #dadada !important;
}
.u-border-grey-10,
.u-border-grey-10.u-input,
.u-border-grey-10.u-field-input.u-field-input,
.u-separator-grey-10:after {
  border-color: #e5e5e5;
  stroke: #e5e5e5;
}
.u-button-style.u-border-grey-10 {
  border-color: #e5e5e5 !important;
  color: #e5e5e5 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-10:hover,
.u-button-style.u-border-grey-10:focus {
  border-color: transparent !important;
  color: #cecece !important;
  background-color: transparent !important;
}
.u-border-hover-grey-10:hover,
.u-border-hover-grey-10:focus,
a.u-button-style.u-border-hover-grey-10:hover,
a.u-button-style:hover > .u-border-hover-grey-10,
a.u-button-style.u-border-hover-grey-10:focus {
  color: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
}
.u-border-active-grey-10.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-10:active,
a.u-button-style.u-button-style.u-border-active-grey-10.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-10,
li.active > a.u-button-style.u-button-style.u-border-active-grey-10,
input.u-field-input.u-field-input.u-border-active-grey-10:checked {
  color: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
}
.u-link.u-border-grey-10[class*="u-border-"] {
  border-color: #e5e5e5 !important;
}
.u-link.u-border-grey-10[class*="u-border-"]:hover {
  border-color: #cecece !important;
}
.u-border-grey-15,
.u-border-grey-15.u-input,
.u-border-grey-15.u-field-input.u-field-input,
.u-separator-grey-15:after {
  border-color: #d9d9d9;
  stroke: #d9d9d9;
}
.u-button-style.u-border-grey-15 {
  border-color: #d9d9d9 !important;
  color: #d9d9d9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-15:hover,
.u-button-style.u-border-grey-15:focus {
  border-color: transparent !important;
  color: #c3c3c3 !important;
  background-color: transparent !important;
}
.u-border-hover-grey-15:hover,
.u-border-hover-grey-15:focus,
a.u-button-style.u-border-hover-grey-15:hover,
a.u-button-style:hover > .u-border-hover-grey-15,
a.u-button-style.u-border-hover-grey-15:focus {
  color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.u-border-active-grey-15.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-15:active,
a.u-button-style.u-button-style.u-border-active-grey-15.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-15,
li.active > a.u-button-style.u-button-style.u-border-active-grey-15,
input.u-field-input.u-field-input.u-border-active-grey-15:checked {
  color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.u-link.u-border-grey-15[class*="u-border-"] {
  border-color: #d9d9d9 !important;
}
.u-link.u-border-grey-15[class*="u-border-"]:hover {
  border-color: #c3c3c3 !important;
}
.u-border-grey-25,
.u-border-grey-25.u-input,
.u-border-grey-25.u-field-input.u-field-input,
.u-separator-grey-25:after {
  border-color: #c0c0c0;
  stroke: #c0c0c0;
}
.u-button-style.u-border-grey-25 {
  border-color: #c0c0c0 !important;
  color: #c0c0c0 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-25:hover,
.u-button-style.u-border-grey-25:focus {
  border-color: transparent !important;
  color: #adadad !important;
  background-color: transparent !important;
}
.u-border-hover-grey-25:hover,
.u-border-hover-grey-25:focus,
a.u-button-style.u-border-hover-grey-25:hover,
a.u-button-style:hover > .u-border-hover-grey-25,
a.u-button-style.u-border-hover-grey-25:focus {
  color: #c0c0c0 !important;
  border-color: #c0c0c0 !important;
}
.u-border-active-grey-25.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-25:active,
a.u-button-style.u-button-style.u-border-active-grey-25.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-25,
li.active > a.u-button-style.u-button-style.u-border-active-grey-25,
input.u-field-input.u-field-input.u-border-active-grey-25:checked {
  color: #c0c0c0 !important;
  border-color: #c0c0c0 !important;
}
.u-link.u-border-grey-25[class*="u-border-"] {
  border-color: #c0c0c0 !important;
}
.u-link.u-border-grey-25[class*="u-border-"]:hover {
  border-color: #adadad !important;
}
.u-border-grey-30,
.u-border-grey-30.u-input,
.u-border-grey-30.u-field-input.u-field-input,
.u-separator-grey-30:after {
  border-color: #b3b3b3;
  stroke: #b3b3b3;
}
.u-button-style.u-border-grey-30 {
  border-color: #b3b3b3 !important;
  color: #b3b3b3 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-30:hover,
.u-button-style.u-border-grey-30:focus {
  border-color: transparent !important;
  color: #a1a1a1 !important;
  background-color: transparent !important;
}
.u-border-hover-grey-30:hover,
.u-border-hover-grey-30:focus,
a.u-button-style.u-border-hover-grey-30:hover,
a.u-button-style:hover > .u-border-hover-grey-30,
a.u-button-style.u-border-hover-grey-30:focus {
  color: #b3b3b3 !important;
  border-color: #b3b3b3 !important;
}
.u-border-active-grey-30.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-30:active,
a.u-button-style.u-button-style.u-border-active-grey-30.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-30,
li.active > a.u-button-style.u-button-style.u-border-active-grey-30,
input.u-field-input.u-field-input.u-border-active-grey-30:checked {
  color: #b3b3b3 !important;
  border-color: #b3b3b3 !important;
}
.u-link.u-border-grey-30[class*="u-border-"] {
  border-color: #b3b3b3 !important;
}
.u-link.u-border-grey-30[class*="u-border-"]:hover {
  border-color: #a1a1a1 !important;
}
.u-border-grey-40,
.u-border-grey-40.u-input,
.u-border-grey-40.u-field-input.u-field-input,
.u-separator-grey-40:after {
  border-color: var(--color-text-gray)999;
  stroke: var(--color-text-gray)999;
}
.u-button-style.u-border-grey-40 {
  border-color: var(--color-text-gray)999 !important;
  color: var(--color-text-gray)999 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-40:hover,
.u-button-style.u-border-grey-40:focus {
  border-color: transparent !important;
  color: #8a8a8a !important;
  background-color: transparent !important;
}
.u-border-hover-grey-40:hover,
.u-border-hover-grey-40:focus,
a.u-button-style.u-border-hover-grey-40:hover,
a.u-button-style:hover > .u-border-hover-grey-40,
a.u-button-style.u-border-hover-grey-40:focus {
  color: var(--color-text-gray)999 !important;
  border-color: var(--color-text-gray)999 !important;
}
.u-border-active-grey-40.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-40:active,
a.u-button-style.u-button-style.u-border-active-grey-40.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-40,
li.active > a.u-button-style.u-button-style.u-border-active-grey-40,
input.u-field-input.u-field-input.u-border-active-grey-40:checked {
  color: var(--color-text-gray)999 !important;
  border-color: var(--color-text-gray)999 !important;
}
.u-link.u-border-grey-40[class*="u-border-"] {
  border-color: var(--color-text-gray)999 !important;
}
.u-link.u-border-grey-40[class*="u-border-"]:hover {
  border-color: #8a8a8a !important;
}
.u-border-grey-50,
.u-border-grey-50.u-input,
.u-border-grey-50.u-field-input.u-field-input,
.u-separator-grey-50:after {
  border-color: #808080;
  stroke: #808080;
}
.u-button-style.u-border-grey-50 {
  border-color: #808080 !important;
  color: #808080 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-50:hover,
.u-button-style.u-border-grey-50:focus {
  border-color: transparent !important;
  color: #737373 !important;
  background-color: transparent !important;
}
.u-border-hover-grey-50:hover,
.u-border-hover-grey-50:focus,
a.u-button-style.u-border-hover-grey-50:hover,
a.u-button-style:hover > .u-border-hover-grey-50,
a.u-button-style.u-border-hover-grey-50:focus {
  color: #808080 !important;
  border-color: #808080 !important;
}
.u-border-active-grey-50.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-50:active,
a.u-button-style.u-button-style.u-border-active-grey-50.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-50,
li.active > a.u-button-style.u-button-style.u-border-active-grey-50,
input.u-field-input.u-field-input.u-border-active-grey-50:checked {
  color: #808080 !important;
  border-color: #808080 !important;
}
.u-link.u-border-grey-50[class*="u-border-"] {
  border-color: #808080 !important;
}
.u-link.u-border-grey-50[class*="u-border-"]:hover {
  border-color: #737373 !important;
}
.u-border-grey-60,
.u-border-grey-60.u-input,
.u-border-grey-60.u-field-input.u-field-input,
.u-separator-grey-60:after {
  border-color: var(--color-text-light)666;
  stroke: var(--color-text-light)666;
}
.u-button-style.u-border-grey-60 {
  border-color: var(--color-text-light)666 !important;
  color: var(--color-text-light)666 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-60:hover,
.u-button-style.u-border-grey-60:focus {
  border-color: transparent !important;
  color: #5c5c5c !important;
  background-color: transparent !important;
}
.u-border-hover-grey-60:hover,
.u-border-hover-grey-60:focus,
a.u-button-style.u-border-hover-grey-60:hover,
a.u-button-style:hover > .u-border-hover-grey-60,
a.u-button-style.u-border-hover-grey-60:focus {
  color: var(--color-text-light)666 !important;
  border-color: var(--color-text-light)666 !important;
}
.u-border-active-grey-60.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-60:active,
a.u-button-style.u-button-style.u-border-active-grey-60.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-60,
li.active > a.u-button-style.u-button-style.u-border-active-grey-60,
input.u-field-input.u-field-input.u-border-active-grey-60:checked {
  color: var(--color-text-light)666 !important;
  border-color: var(--color-text-light)666 !important;
}
.u-link.u-border-grey-60[class*="u-border-"] {
  border-color: var(--color-text-light)666 !important;
}
.u-link.u-border-grey-60[class*="u-border-"]:hover {
  border-color: #5c5c5c !important;
}
.u-border-grey-70,
.u-border-grey-70.u-input,
.u-border-grey-70.u-field-input.u-field-input,
.u-separator-grey-70:after {
  border-color: #4d4d4d;
  stroke: #4d4d4d;
}
.u-button-style.u-border-grey-70 {
  border-color: #4d4d4d !important;
  color: #4d4d4d !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-70:hover,
.u-button-style.u-border-grey-70:focus {
  border-color: transparent !important;
  color: #454545 !important;
  background-color: transparent !important;
}
.u-border-hover-grey-70:hover,
.u-border-hover-grey-70:focus,
a.u-button-style.u-border-hover-grey-70:hover,
a.u-button-style:hover > .u-border-hover-grey-70,
a.u-button-style.u-border-hover-grey-70:focus {
  color: #4d4d4d !important;
  border-color: #4d4d4d !important;
}
.u-border-active-grey-70.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-70:active,
a.u-button-style.u-button-style.u-border-active-grey-70.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-70,
li.active > a.u-button-style.u-button-style.u-border-active-grey-70,
input.u-field-input.u-field-input.u-border-active-grey-70:checked {
  color: #4d4d4d !important;
  border-color: #4d4d4d !important;
}
.u-link.u-border-grey-70[class*="u-border-"] {
  border-color: #4d4d4d !important;
}
.u-link.u-border-grey-70[class*="u-border-"]:hover {
  border-color: #454545 !important;
}
.u-border-grey-75,
.u-border-grey-75.u-input,
.u-border-grey-75.u-field-input.u-field-input,
.u-separator-grey-75:after {
  border-color: #404040;
  stroke: #404040;
}
.u-button-style.u-border-grey-75 {
  border-color: #404040 !important;
  color: #404040 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-75:hover,
.u-button-style.u-border-grey-75:focus {
  border-color: transparent !important;
  color: #3a3a3a !important;
  background-color: transparent !important;
}
.u-border-hover-grey-75:hover,
.u-border-hover-grey-75:focus,
a.u-button-style.u-border-hover-grey-75:hover,
a.u-button-style:hover > .u-border-hover-grey-75,
a.u-button-style.u-border-hover-grey-75:focus {
  color: #404040 !important;
  border-color: #404040 !important;
}
.u-border-active-grey-75.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-75:active,
a.u-button-style.u-button-style.u-border-active-grey-75.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-75,
li.active > a.u-button-style.u-button-style.u-border-active-grey-75,
input.u-field-input.u-field-input.u-border-active-grey-75:checked {
  color: #404040 !important;
  border-color: #404040 !important;
}
.u-link.u-border-grey-75[class*="u-border-"] {
  border-color: #404040 !important;
}
.u-link.u-border-grey-75[class*="u-border-"]:hover {
  border-color: #3a3a3a !important;
}
.u-border-grey-80,
.u-border-grey-80.u-input,
.u-border-grey-80.u-field-input.u-field-input,
.u-separator-grey-80:after {
  border-color: var(--color-text-medium)333;
  stroke: var(--color-text-medium)333;
}
.u-button-style.u-border-grey-80 {
  border-color: var(--color-text-medium)333 !important;
  color: var(--color-text-medium)333 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-80:hover,
.u-button-style.u-border-grey-80:focus {
  border-color: transparent !important;
  color: #2e2e2e !important;
  background-color: transparent !important;
}
.u-border-hover-grey-80:hover,
.u-border-hover-grey-80:focus,
a.u-button-style.u-border-hover-grey-80:hover,
a.u-button-style:hover > .u-border-hover-grey-80,
a.u-button-style.u-border-hover-grey-80:focus {
  color: var(--color-text-medium)333 !important;
  border-color: var(--color-text-medium)333 !important;
}
.u-border-active-grey-80.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-80:active,
a.u-button-style.u-button-style.u-border-active-grey-80.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-80,
li.active > a.u-button-style.u-button-style.u-border-active-grey-80,
input.u-field-input.u-field-input.u-border-active-grey-80:checked {
  color: var(--color-text-medium)333 !important;
  border-color: var(--color-text-medium)333 !important;
}
.u-link.u-border-grey-80[class*="u-border-"] {
  border-color: var(--color-text-medium)333 !important;
}
.u-link.u-border-grey-80[class*="u-border-"]:hover {
  border-color: #2e2e2e !important;
}
.u-border-grey-90,
.u-border-grey-90.u-input,
.u-border-grey-90.u-field-input.u-field-input,
.u-separator-grey-90:after {
  border-color: #1a1a1a;
  stroke: #1a1a1a;
}
.u-button-style.u-border-grey-90 {
  border-color: #1a1a1a !important;
  color: #1a1a1a !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-90:hover,
.u-button-style.u-border-grey-90:focus {
  border-color: transparent !important;
  color: #171717 !important;
  background-color: transparent !important;
}
.u-border-hover-grey-90:hover,
.u-border-hover-grey-90:focus,
a.u-button-style.u-border-hover-grey-90:hover,
a.u-button-style:hover > .u-border-hover-grey-90,
a.u-button-style.u-border-hover-grey-90:focus {
  color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.u-border-active-grey-90.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-grey-90:active,
a.u-button-style.u-button-style.u-border-active-grey-90.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-90,
li.active > a.u-button-style.u-button-style.u-border-active-grey-90,
input.u-field-input.u-field-input.u-border-active-grey-90:checked {
  color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.u-link.u-border-grey-90[class*="u-border-"] {
  border-color: #1a1a1a !important;
}
.u-link.u-border-grey-90[class*="u-border-"]:hover {
  border-color: #171717 !important;
}
.u-text-color-1-dark-3,
.u-input.u-text-color-1-dark-3,
.u-input.u-text-color-1-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1-dark-3,
li.active > a.u-button-style.u-text-color-1-dark-3[class*="u-border-"],
a.u-button-style.u-text-color-1-dark-3,
a.u-button-style.u-text-color-1-dark-3[class*="u-border-"] {
  color: #2a3329 !important;
  
  
  
}
a.u-button-style.u-text-color-1-dark-3:hover,
a.u-button-style.u-text-color-1-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1-dark-3:focus,
a.u-button-style.u-text-color-1-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1-dark-3:active,
a.u-button-style.u-button-style.u-text-color-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1-dark-3.active,
a.u-button-style.u-button-style.u-text-color-1-dark-3[class*="u-border-"].active {
  color: #262e25 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-1-dark-3,
a.u-button-style:hover > .u-text-hover-color-1-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1-dark-3:hover,
.u-text-hover-color-1-dark-3.u-language-url:hover,
.u-text-hover-color-1-dark-3 .u-language-url:hover,
.u-text-hover-color-1-dark-3.u-carousel-control:hover,
.u-text-hover-color-1-dark-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-1-dark-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-1-dark-3:hover {
  color: #2a3329 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-color-1-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1-dark-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1-dark-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-1-dark-3.u-active {
  color: #2a3329 !important;
}
.u-text-color-1-dark-3 .u-svg-link {
  fill: #2a3329;
}
.u-text-hover-color-1-dark-3:hover .u-svg-link,
.u-text-hover-color-1-dark-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1-dark-3 .u-svg-link {
  fill: #2a3329;
}
.u-text-active-color-1-dark-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-1-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1-dark-3 .u-svg-link {
  fill: #2a3329;
}
.u-link.u-text-color-1-dark-3:hover {
  color: #262e25 !important;
}
a.u-link.u-text-hover-color-1-dark-3:hover {
  color: #2a3329 !important;
}
.u-text-color-1-dark-2,
.u-input.u-text-color-1-dark-2,
.u-input.u-text-color-1-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1-dark-2,
li.active > a.u-button-style.u-text-color-1-dark-2[class*="u-border-"],
a.u-button-style.u-text-color-1-dark-2,
a.u-button-style.u-text-color-1-dark-2[class*="u-border-"] {
  color: #485a46 !important;
  
  
  
}
a.u-button-style.u-text-color-1-dark-2:hover,
a.u-button-style.u-text-color-1-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1-dark-2:focus,
a.u-button-style.u-text-color-1-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1-dark-2:active,
a.u-button-style.u-button-style.u-text-color-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1-dark-2.active,
a.u-button-style.u-button-style.u-text-color-1-dark-2[class*="u-border-"].active {
  color: #41513f !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-1-dark-2,
a.u-button-style:hover > .u-text-hover-color-1-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1-dark-2:hover,
.u-text-hover-color-1-dark-2.u-language-url:hover,
.u-text-hover-color-1-dark-2 .u-language-url:hover,
.u-text-hover-color-1-dark-2.u-carousel-control:hover,
.u-text-hover-color-1-dark-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-1-dark-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-1-dark-2:hover {
  color: #485a46 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-color-1-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1-dark-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1-dark-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-1-dark-2.u-active {
  color: #485a46 !important;
}
.u-text-color-1-dark-2 .u-svg-link {
  fill: #485a46;
}
.u-text-hover-color-1-dark-2:hover .u-svg-link,
.u-text-hover-color-1-dark-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1-dark-2 .u-svg-link {
  fill: #485a46;
}
.u-text-active-color-1-dark-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-1-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1-dark-2 .u-svg-link {
  fill: #485a46;
}
.u-link.u-text-color-1-dark-2:hover {
  color: #41513f !important;
}
a.u-link.u-text-hover-color-1-dark-2:hover {
  color: #485a46 !important;
}
.u-text-color-1-dark-1,
.u-input.u-text-color-1-dark-1,
.u-input.u-text-color-1-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1-dark-1,
li.active > a.u-button-style.u-text-color-1-dark-1[class*="u-border-"],
a.u-button-style.u-text-color-1-dark-1,
a.u-button-style.u-text-color-1-dark-1[class*="u-border-"] {
  color: #658161 !important;
  
  
  
}
a.u-button-style.u-text-color-1-dark-1:hover,
a.u-button-style.u-text-color-1-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1-dark-1:focus,
a.u-button-style.u-text-color-1-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1-dark-1:active,
a.u-button-style.u-button-style.u-text-color-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1-dark-1.active,
a.u-button-style.u-button-style.u-text-color-1-dark-1[class*="u-border-"].active {
  color: #5b7457 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-1-dark-1,
a.u-button-style:hover > .u-text-hover-color-1-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1-dark-1:hover,
.u-text-hover-color-1-dark-1.u-language-url:hover,
.u-text-hover-color-1-dark-1 .u-language-url:hover,
.u-text-hover-color-1-dark-1.u-carousel-control:hover,
.u-text-hover-color-1-dark-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-1-dark-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-1-dark-1:hover {
  color: #658161 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-color-1-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1-dark-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1-dark-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-1-dark-1.u-active {
  color: #658161 !important;
}
.u-text-color-1-dark-1 .u-svg-link {
  fill: #658161;
}
.u-text-hover-color-1-dark-1:hover .u-svg-link,
.u-text-hover-color-1-dark-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1-dark-1 .u-svg-link {
  fill: #658161;
}
.u-text-active-color-1-dark-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-1-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1-dark-1 .u-svg-link {
  fill: #658161;
}
.u-link.u-text-color-1-dark-1:hover {
  color: #5b7457 !important;
}
a.u-link.u-text-hover-color-1-dark-1:hover {
  color: #658161 !important;
}
.u-text-color-1,
.u-input.u-text-color-1,
.u-input.u-text-color-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1,
li.active > a.u-button-style.u-text-color-1[class*="u-border-"],
a.u-button-style.u-text-color-1,
a.u-button-style.u-text-color-1[class*="u-border-"] {
  color: #9ab596 !important;
  
  
  
}
a.u-button-style.u-text-color-1:hover,
a.u-button-style.u-text-color-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1:focus,
a.u-button-style.u-text-color-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1:active,
a.u-button-style.u-button-style.u-text-color-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1.active,
a.u-button-style.u-button-style.u-text-color-1[class*="u-border-"].active {
  color: #87a783 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-1,
a.u-button-style:hover > .u-text-hover-color-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1:hover,
.u-text-hover-color-1.u-language-url:hover,
.u-text-hover-color-1 .u-language-url:hover,
.u-text-hover-color-1.u-carousel-control:hover,
.u-text-hover-color-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-1:hover {
  color: #9ab596 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1,
a.u-button-style.u-button-style.active > .u-text-active-color-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-1.u-active {
  color: #9ab596 !important;
}
.u-text-color-1 .u-svg-link {
  fill: #9ab596;
}
.u-text-hover-color-1:hover .u-svg-link,
.u-text-hover-color-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1 .u-svg-link {
  fill: #9ab596;
}
.u-text-active-color-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1 .u-svg-link {
  fill: #9ab596;
}
.u-link.u-text-color-1:hover {
  color: #87a783 !important;
}
a.u-link.u-text-hover-color-1:hover {
  color: #9ab596 !important;
}
.u-text-color-1-light-1,
.u-input.u-text-color-1-light-1,
.u-input.u-text-color-1-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1-light-1,
li.active > a.u-button-style.u-text-color-1-light-1[class*="u-border-"],
a.u-button-style.u-text-color-1-light-1,
a.u-button-style.u-text-color-1-light-1[class*="u-border-"] {
  color: #b6ccb2 !important;
  
  
  
}
a.u-button-style.u-text-color-1-light-1:hover,
a.u-button-style.u-text-color-1-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1-light-1:focus,
a.u-button-style.u-text-color-1-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1-light-1:active,
a.u-button-style.u-button-style.u-text-color-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1-light-1.active,
a.u-button-style.u-button-style.u-text-color-1-light-1[class*="u-border-"].active {
  color: #a0bd9b !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-1-light-1,
a.u-button-style:hover > .u-text-hover-color-1-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-1-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-1-light-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1-light-1:hover,
.u-text-hover-color-1-light-1.u-language-url:hover,
.u-text-hover-color-1-light-1 .u-language-url:hover,
.u-text-hover-color-1-light-1.u-carousel-control:hover,
.u-text-hover-color-1-light-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-1-light-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-1-light-1:hover {
  color: #b6ccb2 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1-light-1,
a.u-button-style.u-button-style.active > .u-text-active-color-1-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1-light-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1-light-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-1-light-1.u-active {
  color: #b6ccb2 !important;
}
.u-text-color-1-light-1 .u-svg-link {
  fill: #b6ccb2;
}
.u-text-hover-color-1-light-1:hover .u-svg-link,
.u-text-hover-color-1-light-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1-light-1 .u-svg-link {
  fill: #b6ccb2;
}
.u-text-active-color-1-light-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-1-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1-light-1 .u-svg-link {
  fill: #b6ccb2;
}
.u-link.u-text-color-1-light-1:hover {
  color: #a0bd9b !important;
}
a.u-link.u-text-hover-color-1-light-1:hover {
  color: #b6ccb2 !important;
}
.u-text-color-1-light-2,
.u-input.u-text-color-1-light-2,
.u-input.u-text-color-1-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1-light-2,
li.active > a.u-button-style.u-text-color-1-light-2[class*="u-border-"],
a.u-button-style.u-text-color-1-light-2,
a.u-button-style.u-text-color-1-light-2[class*="u-border-"] {
  color: #d4e2d2 !important;
  
  
  
}
a.u-button-style.u-text-color-1-light-2:hover,
a.u-button-style.u-text-color-1-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1-light-2:focus,
a.u-button-style.u-text-color-1-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1-light-2:active,
a.u-button-style.u-button-style.u-text-color-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1-light-2.active,
a.u-button-style.u-button-style.u-text-color-1-light-2[class*="u-border-"].active {
  color: #bbd1b7 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-1-light-2,
a.u-button-style:hover > .u-text-hover-color-1-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-1-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-1-light-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1-light-2:hover,
.u-text-hover-color-1-light-2.u-language-url:hover,
.u-text-hover-color-1-light-2 .u-language-url:hover,
.u-text-hover-color-1-light-2.u-carousel-control:hover,
.u-text-hover-color-1-light-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-1-light-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-1-light-2:hover {
  color: #d4e2d2 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1-light-2,
a.u-button-style.u-button-style.active > .u-text-active-color-1-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1-light-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1-light-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-1-light-2.u-active {
  color: #d4e2d2 !important;
}
.u-text-color-1-light-2 .u-svg-link {
  fill: #d4e2d2;
}
.u-text-hover-color-1-light-2:hover .u-svg-link,
.u-text-hover-color-1-light-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1-light-2 .u-svg-link {
  fill: #d4e2d2;
}
.u-text-active-color-1-light-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-1-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1-light-2 .u-svg-link {
  fill: #d4e2d2;
}
.u-link.u-text-color-1-light-2:hover {
  color: #bbd1b7 !important;
}
a.u-link.u-text-hover-color-1-light-2:hover {
  color: #d4e2d2 !important;
}
.u-text-color-1-light-3,
.u-input.u-text-color-1-light-3,
.u-input.u-text-color-1-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1-light-3,
li.active > a.u-button-style.u-text-color-1-light-3[class*="u-border-"],
a.u-button-style.u-text-color-1-light-3,
a.u-button-style.u-text-color-1-light-3[class*="u-border-"] {
  color: #f4f8f3 !important;
  
  
  
}
a.u-button-style.u-text-color-1-light-3:hover,
a.u-button-style.u-text-color-1-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1-light-3:focus,
a.u-button-style.u-text-color-1-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1-light-3:active,
a.u-button-style.u-button-style.u-text-color-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1-light-3.active,
a.u-button-style.u-button-style.u-text-color-1-light-3[class*="u-border-"].active {
  color: #d8e6d4 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-1-light-3,
a.u-button-style:hover > .u-text-hover-color-1-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-1-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-1-light-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1-light-3:hover,
.u-text-hover-color-1-light-3.u-language-url:hover,
.u-text-hover-color-1-light-3 .u-language-url:hover,
.u-text-hover-color-1-light-3.u-carousel-control:hover,
.u-text-hover-color-1-light-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-1-light-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-1-light-3:hover {
  color: #f4f8f3 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1-light-3,
a.u-button-style.u-button-style.active > .u-text-active-color-1-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1-light-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1-light-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-1-light-3.u-active {
  color: #f4f8f3 !important;
}
.u-text-color-1-light-3 .u-svg-link {
  fill: #f4f8f3;
}
.u-text-hover-color-1-light-3:hover .u-svg-link,
.u-text-hover-color-1-light-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1-light-3 .u-svg-link {
  fill: #f4f8f3;
}
.u-text-active-color-1-light-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-1-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1-light-3 .u-svg-link {
  fill: #f4f8f3;
}
.u-link.u-text-color-1-light-3:hover {
  color: #d8e6d4 !important;
}
a.u-link.u-text-hover-color-1-light-3:hover {
  color: #f4f8f3 !important;
}
.u-text-color-1-base,
.u-input.u-text-color-1-base,
.u-input.u-text-color-1-base[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1-base,
li.active > a.u-button-style.u-text-color-1-base[class*="u-border-"],
a.u-button-style.u-text-color-1-base,
a.u-button-style.u-text-color-1-base[class*="u-border-"] {
  color: #658161 !important;
  
  
  
}
a.u-button-style.u-text-color-1-base:hover,
a.u-button-style.u-text-color-1-base[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1-base:focus,
a.u-button-style.u-text-color-1-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1-base:active,
a.u-button-style.u-button-style.u-text-color-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1-base.active,
a.u-button-style.u-button-style.u-text-color-1-base[class*="u-border-"].active {
  color: #5b7457 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-1-base,
a.u-button-style:hover > .u-text-hover-color-1-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1-base:hover,
a.u-button-style.u-button-style.u-text-hover-color-1-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1-base:focus,
a.u-button-style.u-button-style.u-text-hover-color-1-base[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1-base:hover,
.u-text-hover-color-1-base.u-language-url:hover,
.u-text-hover-color-1-base .u-language-url:hover,
.u-text-hover-color-1-base.u-carousel-control:hover,
.u-text-hover-color-1-base.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-1-base .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-1-base:hover {
  color: #658161 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1-base,
a.u-button-style.u-button-style.active > .u-text-active-color-1-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1-base.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1-base .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-1-base.u-active {
  color: #658161 !important;
}
.u-text-color-1-base .u-svg-link {
  fill: #658161;
}
.u-text-hover-color-1-base:hover .u-svg-link,
.u-text-hover-color-1-base:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1-base .u-svg-link {
  fill: #658161;
}
.u-text-active-color-1-base:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-1-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1-base .u-svg-link {
  fill: #658161;
}
.u-link.u-text-color-1-base:hover {
  color: #5b7457 !important;
}
a.u-link.u-text-hover-color-1-base:hover {
  color: #658161 !important;
}
.u-text-color-2-dark-3,
.u-input.u-text-color-2-dark-3,
.u-input.u-text-color-2-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2-dark-3,
li.active > a.u-button-style.u-text-color-2-dark-3[class*="u-border-"],
a.u-button-style.u-text-color-2-dark-3,
a.u-button-style.u-text-color-2-dark-3[class*="u-border-"] {
  color: #332929 !important;
  
  
  
}
a.u-button-style.u-text-color-2-dark-3:hover,
a.u-button-style.u-text-color-2-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2-dark-3:focus,
a.u-button-style.u-text-color-2-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2-dark-3:active,
a.u-button-style.u-button-style.u-text-color-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2-dark-3.active,
a.u-button-style.u-button-style.u-text-color-2-dark-3[class*="u-border-"].active {
  color: #2e2525 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-2-dark-3,
a.u-button-style:hover > .u-text-hover-color-2-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2-dark-3:hover,
.u-text-hover-color-2-dark-3.u-language-url:hover,
.u-text-hover-color-2-dark-3 .u-language-url:hover,
.u-text-hover-color-2-dark-3.u-carousel-control:hover,
.u-text-hover-color-2-dark-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-2-dark-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-2-dark-3:hover {
  color: #332929 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-color-2-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2-dark-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2-dark-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-2-dark-3.u-active {
  color: #332929 !important;
}
.u-text-color-2-dark-3 .u-svg-link {
  fill: #332929;
}
.u-text-hover-color-2-dark-3:hover .u-svg-link,
.u-text-hover-color-2-dark-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2-dark-3 .u-svg-link {
  fill: #332929;
}
.u-text-active-color-2-dark-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-2-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2-dark-3 .u-svg-link {
  fill: #332929;
}
.u-link.u-text-color-2-dark-3:hover {
  color: #2e2525 !important;
}
a.u-link.u-text-hover-color-2-dark-3:hover {
  color: #332929 !important;
}
.u-text-color-2-dark-2,
.u-input.u-text-color-2-dark-2,
.u-input.u-text-color-2-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2-dark-2,
li.active > a.u-button-style.u-text-color-2-dark-2[class*="u-border-"],
a.u-button-style.u-text-color-2-dark-2,
a.u-button-style.u-text-color-2-dark-2[class*="u-border-"] {
  color: #6b4748 !important;
  
  
  
}
a.u-button-style.u-text-color-2-dark-2:hover,
a.u-button-style.u-text-color-2-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2-dark-2:focus,
a.u-button-style.u-text-color-2-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2-dark-2:active,
a.u-button-style.u-button-style.u-text-color-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2-dark-2.active,
a.u-button-style.u-button-style.u-text-color-2-dark-2[class*="u-border-"].active {
  color: #604041 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-2-dark-2,
a.u-button-style:hover > .u-text-hover-color-2-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2-dark-2:hover,
.u-text-hover-color-2-dark-2.u-language-url:hover,
.u-text-hover-color-2-dark-2 .u-language-url:hover,
.u-text-hover-color-2-dark-2.u-carousel-control:hover,
.u-text-hover-color-2-dark-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-2-dark-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-2-dark-2:hover {
  color: #6b4748 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-color-2-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2-dark-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2-dark-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-2-dark-2.u-active {
  color: #6b4748 !important;
}
.u-text-color-2-dark-2 .u-svg-link {
  fill: #6b4748;
}
.u-text-hover-color-2-dark-2:hover .u-svg-link,
.u-text-hover-color-2-dark-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2-dark-2 .u-svg-link {
  fill: #6b4748;
}
.u-text-active-color-2-dark-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-2-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2-dark-2 .u-svg-link {
  fill: #6b4748;
}
.u-link.u-text-color-2-dark-2:hover {
  color: #604041 !important;
}
a.u-link.u-text-hover-color-2-dark-2:hover {
  color: #6b4748 !important;
}
.u-text-color-2-dark-1,
.u-input.u-text-color-2-dark-1,
.u-input.u-text-color-2-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2-dark-1,
li.active > a.u-button-style.u-text-color-2-dark-1[class*="u-border-"],
a.u-button-style.u-text-color-2-dark-1,
a.u-button-style.u-text-color-2-dark-1[class*="u-border-"] {
  color: #a35559 !important;
  
  
  
}
a.u-button-style.u-text-color-2-dark-1:hover,
a.u-button-style.u-text-color-2-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2-dark-1:focus,
a.u-button-style.u-text-color-2-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2-dark-1:active,
a.u-button-style.u-button-style.u-text-color-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2-dark-1.active,
a.u-button-style.u-button-style.u-text-color-2-dark-1[class*="u-border-"].active {
  color: #934c50 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-2-dark-1,
a.u-button-style:hover > .u-text-hover-color-2-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2-dark-1:hover,
.u-text-hover-color-2-dark-1.u-language-url:hover,
.u-text-hover-color-2-dark-1 .u-language-url:hover,
.u-text-hover-color-2-dark-1.u-carousel-control:hover,
.u-text-hover-color-2-dark-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-2-dark-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-2-dark-1:hover {
  color: #a35559 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-color-2-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2-dark-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2-dark-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-2-dark-1.u-active {
  color: #a35559 !important;
}
.u-text-color-2-dark-1 .u-svg-link {
  fill: #a35559;
}
.u-text-hover-color-2-dark-1:hover .u-svg-link,
.u-text-hover-color-2-dark-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2-dark-1 .u-svg-link {
  fill: #a35559;
}
.u-text-active-color-2-dark-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-2-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2-dark-1 .u-svg-link {
  fill: #a35559;
}
.u-link.u-text-color-2-dark-1:hover {
  color: #934c50 !important;
}
a.u-link.u-text-hover-color-2-dark-1:hover {
  color: #a35559 !important;
}
.u-text-color-2,
.u-input.u-text-color-2,
.u-input.u-text-color-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2,
li.active > a.u-button-style.u-text-color-2[class*="u-border-"],
a.u-button-style.u-text-color-2,
a.u-button-style.u-text-color-2[class*="u-border-"] {
  color: #db545a !important;
  
  
  
}
a.u-button-style.u-text-color-2:hover,
a.u-button-style.u-text-color-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2:focus,
a.u-button-style.u-text-color-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2:active,
a.u-button-style.u-button-style.u-text-color-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2.active,
a.u-button-style.u-button-style.u-text-color-2[class*="u-border-"].active {
  color: #d63b42 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-2,
a.u-button-style:hover > .u-text-hover-color-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2:hover,
.u-text-hover-color-2.u-language-url:hover,
.u-text-hover-color-2 .u-language-url:hover,
.u-text-hover-color-2.u-carousel-control:hover,
.u-text-hover-color-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-2:hover {
  color: #db545a !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2,
a.u-button-style.u-button-style.active > .u-text-active-color-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-2.u-active {
  color: #db545a !important;
}
.u-text-color-2 .u-svg-link {
  fill: #db545a;
}
.u-text-hover-color-2:hover .u-svg-link,
.u-text-hover-color-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2 .u-svg-link {
  fill: #db545a;
}
.u-text-active-color-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2 .u-svg-link {
  fill: #db545a;
}
.u-link.u-text-color-2:hover {
  color: #d63b42 !important;
}
a.u-link.u-text-hover-color-2:hover {
  color: #db545a !important;
}
.u-text-color-2-light-1,
.u-input.u-text-color-2-light-1,
.u-input.u-text-color-2-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2-light-1,
li.active > a.u-button-style.u-text-color-2-light-1[class*="u-border-"],
a.u-button-style.u-text-color-2-light-1,
a.u-button-style.u-text-color-2-light-1[class*="u-border-"] {
  color: #e68387 !important;
  
  
  
}
a.u-button-style.u-text-color-2-light-1:hover,
a.u-button-style.u-text-color-2-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2-light-1:focus,
a.u-button-style.u-text-color-2-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2-light-1:active,
a.u-button-style.u-button-style.u-text-color-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2-light-1.active,
a.u-button-style.u-button-style.u-text-color-2-light-1[class*="u-border-"].active {
  color: #e0656a !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-2-light-1,
a.u-button-style:hover > .u-text-hover-color-2-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-2-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-2-light-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2-light-1:hover,
.u-text-hover-color-2-light-1.u-language-url:hover,
.u-text-hover-color-2-light-1 .u-language-url:hover,
.u-text-hover-color-2-light-1.u-carousel-control:hover,
.u-text-hover-color-2-light-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-2-light-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-2-light-1:hover {
  color: #e68387 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2-light-1,
a.u-button-style.u-button-style.active > .u-text-active-color-2-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2-light-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2-light-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-2-light-1.u-active {
  color: #e68387 !important;
}
.u-text-color-2-light-1 .u-svg-link {
  fill: #e68387;
}
.u-text-hover-color-2-light-1:hover .u-svg-link,
.u-text-hover-color-2-light-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2-light-1 .u-svg-link {
  fill: #e68387;
}
.u-text-active-color-2-light-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-2-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2-light-1 .u-svg-link {
  fill: #e68387;
}
.u-link.u-text-color-2-light-1:hover {
  color: #e0656a !important;
}
a.u-link.u-text-hover-color-2-light-1:hover {
  color: #e68387 !important;
}
.u-text-color-2-light-2,
.u-input.u-text-color-2-light-2,
.u-input.u-text-color-2-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2-light-2,
li.active > a.u-button-style.u-text-color-2-light-2[class*="u-border-"],
a.u-button-style.u-text-color-2-light-2,
a.u-button-style.u-text-color-2-light-2[class*="u-border-"] {
  color: #f1b5b8 !important;
  
  
  
}
a.u-button-style.u-text-color-2-light-2:hover,
a.u-button-style.u-text-color-2-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2-light-2:focus,
a.u-button-style.u-text-color-2-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2-light-2:active,
a.u-button-style.u-button-style.u-text-color-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2-light-2.active,
a.u-button-style.u-button-style.u-text-color-2-light-2[class*="u-border-"].active {
  color: #ea9296 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-2-light-2,
a.u-button-style:hover > .u-text-hover-color-2-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-2-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-2-light-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2-light-2:hover,
.u-text-hover-color-2-light-2.u-language-url:hover,
.u-text-hover-color-2-light-2 .u-language-url:hover,
.u-text-hover-color-2-light-2.u-carousel-control:hover,
.u-text-hover-color-2-light-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-2-light-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-2-light-2:hover {
  color: #f1b5b8 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2-light-2,
a.u-button-style.u-button-style.active > .u-text-active-color-2-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2-light-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2-light-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-2-light-2.u-active {
  color: #f1b5b8 !important;
}
.u-text-color-2-light-2 .u-svg-link {
  fill: #f1b5b8;
}
.u-text-hover-color-2-light-2:hover .u-svg-link,
.u-text-hover-color-2-light-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2-light-2 .u-svg-link {
  fill: #f1b5b8;
}
.u-text-active-color-2-light-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-2-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2-light-2 .u-svg-link {
  fill: #f1b5b8;
}
.u-link.u-text-color-2-light-2:hover {
  color: #ea9296 !important;
}
a.u-link.u-text-hover-color-2-light-2:hover {
  color: #f1b5b8 !important;
}
.u-text-color-2-light-3,
.u-input.u-text-color-2-light-3,
.u-input.u-text-color-2-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2-light-3,
li.active > a.u-button-style.u-text-color-2-light-3[class*="u-border-"],
a.u-button-style.u-text-color-2-light-3,
a.u-button-style.u-text-color-2-light-3[class*="u-border-"] {
  color: #fbeced !important;
  
  
  
}
a.u-button-style.u-text-color-2-light-3:hover,
a.u-button-style.u-text-color-2-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2-light-3:focus,
a.u-button-style.u-text-color-2-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2-light-3:active,
a.u-button-style.u-button-style.u-text-color-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2-light-3.active,
a.u-button-style.u-button-style.u-text-color-2-light-3[class*="u-border-"].active {
  color: #f3c4c7 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-2-light-3,
a.u-button-style:hover > .u-text-hover-color-2-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-2-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-2-light-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2-light-3:hover,
.u-text-hover-color-2-light-3.u-language-url:hover,
.u-text-hover-color-2-light-3 .u-language-url:hover,
.u-text-hover-color-2-light-3.u-carousel-control:hover,
.u-text-hover-color-2-light-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-2-light-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-2-light-3:hover {
  color: #fbeced !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2-light-3,
a.u-button-style.u-button-style.active > .u-text-active-color-2-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2-light-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2-light-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-2-light-3.u-active {
  color: #fbeced !important;
}
.u-text-color-2-light-3 .u-svg-link {
  fill: #fbeced;
}
.u-text-hover-color-2-light-3:hover .u-svg-link,
.u-text-hover-color-2-light-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2-light-3 .u-svg-link {
  fill: #fbeced;
}
.u-text-active-color-2-light-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-2-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2-light-3 .u-svg-link {
  fill: #fbeced;
}
.u-link.u-text-color-2-light-3:hover {
  color: #f3c4c7 !important;
}
a.u-link.u-text-hover-color-2-light-3:hover {
  color: #fbeced !important;
}
.u-text-color-2-base,
.u-input.u-text-color-2-base,
.u-input.u-text-color-2-base[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2-base,
li.active > a.u-button-style.u-text-color-2-base[class*="u-border-"],
a.u-button-style.u-text-color-2-base,
a.u-button-style.u-text-color-2-base[class*="u-border-"] {
  color: #db545a !important;
  
  
  
}
a.u-button-style.u-text-color-2-base:hover,
a.u-button-style.u-text-color-2-base[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2-base:focus,
a.u-button-style.u-text-color-2-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2-base:active,
a.u-button-style.u-button-style.u-text-color-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2-base.active,
a.u-button-style.u-button-style.u-text-color-2-base[class*="u-border-"].active {
  color: #d63b42 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-2-base,
a.u-button-style:hover > .u-text-hover-color-2-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2-base:hover,
a.u-button-style.u-button-style.u-text-hover-color-2-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2-base:focus,
a.u-button-style.u-button-style.u-text-hover-color-2-base[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2-base:hover,
.u-text-hover-color-2-base.u-language-url:hover,
.u-text-hover-color-2-base .u-language-url:hover,
.u-text-hover-color-2-base.u-carousel-control:hover,
.u-text-hover-color-2-base.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-2-base .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-2-base:hover {
  color: #db545a !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2-base,
a.u-button-style.u-button-style.active > .u-text-active-color-2-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2-base.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2-base .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-2-base.u-active {
  color: #db545a !important;
}
.u-text-color-2-base .u-svg-link {
  fill: #db545a;
}
.u-text-hover-color-2-base:hover .u-svg-link,
.u-text-hover-color-2-base:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2-base .u-svg-link {
  fill: #db545a;
}
.u-text-active-color-2-base:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-2-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2-base .u-svg-link {
  fill: #db545a;
}
.u-link.u-text-color-2-base:hover {
  color: #d63b42 !important;
}
a.u-link.u-text-hover-color-2-base:hover {
  color: #db545a !important;
}
.u-text-color-3-dark-3,
.u-input.u-text-color-3-dark-3,
.u-input.u-text-color-3-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3-dark-3,
li.active > a.u-button-style.u-text-color-3-dark-3[class*="u-border-"],
a.u-button-style.u-text-color-3-dark-3,
a.u-button-style.u-text-color-3-dark-3[class*="u-border-"] {
  color: var(--color-text-medium)129 !important;
  
  
  
}
a.u-button-style.u-text-color-3-dark-3:hover,
a.u-button-style.u-text-color-3-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3-dark-3:focus,
a.u-button-style.u-text-color-3-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3-dark-3:active,
a.u-button-style.u-button-style.u-text-color-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3-dark-3.active,
a.u-button-style.u-button-style.u-text-color-3-dark-3[class*="u-border-"].active {
  color: #2e2c25 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-3-dark-3,
a.u-button-style:hover > .u-text-hover-color-3-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3-dark-3:hover,
.u-text-hover-color-3-dark-3.u-language-url:hover,
.u-text-hover-color-3-dark-3 .u-language-url:hover,
.u-text-hover-color-3-dark-3.u-carousel-control:hover,
.u-text-hover-color-3-dark-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-3-dark-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-3-dark-3:hover {
  color: var(--color-text-medium)129 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-color-3-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3-dark-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3-dark-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-3-dark-3.u-active {
  color: var(--color-text-medium)129 !important;
}
.u-text-color-3-dark-3 .u-svg-link {
  fill: var(--color-text-medium)129;
}
.u-text-hover-color-3-dark-3:hover .u-svg-link,
.u-text-hover-color-3-dark-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3-dark-3 .u-svg-link {
  fill: var(--color-text-medium)129;
}
.u-text-active-color-3-dark-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-3-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3-dark-3 .u-svg-link {
  fill: var(--color-text-medium)129;
}
.u-link.u-text-color-3-dark-3:hover {
  color: #2e2c25 !important;
}
a.u-link.u-text-hover-color-3-dark-3:hover {
  color: var(--color-text-medium)129 !important;
}
.u-text-color-3-dark-2,
.u-input.u-text-color-3-dark-2,
.u-input.u-text-color-3-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3-dark-2,
li.active > a.u-button-style.u-text-color-3-dark-2[class*="u-border-"],
a.u-button-style.u-text-color-3-dark-2,
a.u-button-style.u-text-color-3-dark-2[class*="u-border-"] {
  color: #72683f !important;
  
  
  
}
a.u-button-style.u-text-color-3-dark-2:hover,
a.u-button-style.u-text-color-3-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3-dark-2:focus,
a.u-button-style.u-text-color-3-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3-dark-2:active,
a.u-button-style.u-button-style.u-text-color-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3-dark-2.active,
a.u-button-style.u-button-style.u-text-color-3-dark-2[class*="u-border-"].active {
  color: #675e39 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-3-dark-2,
a.u-button-style:hover > .u-text-hover-color-3-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3-dark-2:hover,
.u-text-hover-color-3-dark-2.u-language-url:hover,
.u-text-hover-color-3-dark-2 .u-language-url:hover,
.u-text-hover-color-3-dark-2.u-carousel-control:hover,
.u-text-hover-color-3-dark-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-3-dark-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-3-dark-2:hover {
  color: #72683f !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-color-3-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3-dark-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3-dark-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-3-dark-2.u-active {
  color: #72683f !important;
}
.u-text-color-3-dark-2 .u-svg-link {
  fill: #72683f;
}
.u-text-hover-color-3-dark-2:hover .u-svg-link,
.u-text-hover-color-3-dark-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3-dark-2 .u-svg-link {
  fill: #72683f;
}
.u-text-active-color-3-dark-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-3-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3-dark-2 .u-svg-link {
  fill: #72683f;
}
.u-link.u-text-color-3-dark-2:hover {
  color: #675e39 !important;
}
a.u-link.u-text-hover-color-3-dark-2:hover {
  color: #72683f !important;
}
.u-text-color-3-dark-1,
.u-input.u-text-color-3-dark-1,
.u-input.u-text-color-3-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3-dark-1,
li.active > a.u-button-style.u-text-color-3-dark-1[class*="u-border-"],
a.u-button-style.u-text-color-3-dark-1,
a.u-button-style.u-text-color-3-dark-1[class*="u-border-"] {
  color: #b29a36 !important;
  
  
  
}
a.u-button-style.u-text-color-3-dark-1:hover,
a.u-button-style.u-text-color-3-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3-dark-1:focus,
a.u-button-style.u-text-color-3-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3-dark-1:active,
a.u-button-style.u-button-style.u-text-color-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3-dark-1.active,
a.u-button-style.u-button-style.u-text-color-3-dark-1[class*="u-border-"].active {
  color: #a08b31 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-3-dark-1,
a.u-button-style:hover > .u-text-hover-color-3-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3-dark-1:hover,
.u-text-hover-color-3-dark-1.u-language-url:hover,
.u-text-hover-color-3-dark-1 .u-language-url:hover,
.u-text-hover-color-3-dark-1.u-carousel-control:hover,
.u-text-hover-color-3-dark-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-3-dark-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-3-dark-1:hover {
  color: #b29a36 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-color-3-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3-dark-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3-dark-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-3-dark-1.u-active {
  color: #b29a36 !important;
}
.u-text-color-3-dark-1 .u-svg-link {
  fill: #b29a36;
}
.u-text-hover-color-3-dark-1:hover .u-svg-link,
.u-text-hover-color-3-dark-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3-dark-1 .u-svg-link {
  fill: #b29a36;
}
.u-text-active-color-3-dark-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-3-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3-dark-1 .u-svg-link {
  fill: #b29a36;
}
.u-link.u-text-color-3-dark-1:hover {
  color: #a08b31 !important;
}
a.u-link.u-text-hover-color-3-dark-1:hover {
  color: #b29a36 !important;
}
.u-text-color-3,
.u-input.u-text-color-3,
.u-input.u-text-color-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3,
li.active > a.u-button-style.u-text-color-3[class*="u-border-"],
a.u-button-style.u-text-color-3,
a.u-button-style.u-text-color-3[class*="u-border-"] {
  color: #f1c50e !important;
  
  
  
}
a.u-button-style.u-text-color-3:hover,
a.u-button-style.u-text-color-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3:focus,
a.u-button-style.u-text-color-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3:active,
a.u-button-style.u-button-style.u-text-color-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3.active,
a.u-button-style.u-button-style.u-text-color-3[class*="u-border-"].active {
  color: #d9b10d !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-3,
a.u-button-style:hover > .u-text-hover-color-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3:hover,
.u-text-hover-color-3.u-language-url:hover,
.u-text-hover-color-3 .u-language-url:hover,
.u-text-hover-color-3.u-carousel-control:hover,
.u-text-hover-color-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-3:hover {
  color: #f1c50e !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3,
a.u-button-style.u-button-style.active > .u-text-active-color-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-3.u-active {
  color: #f1c50e !important;
}
.u-text-color-3 .u-svg-link {
  fill: #f1c50e;
}
.u-text-hover-color-3:hover .u-svg-link,
.u-text-hover-color-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3 .u-svg-link {
  fill: #f1c50e;
}
.u-text-active-color-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3 .u-svg-link {
  fill: #f1c50e;
}
.u-link.u-text-color-3:hover {
  color: #d9b10d !important;
}
a.u-link.u-text-hover-color-3:hover {
  color: #f1c50e !important;
}
.u-text-color-3-light-1,
.u-input.u-text-color-3-light-1,
.u-input.u-text-color-3-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3-light-1,
li.active > a.u-button-style.u-text-color-3-light-1[class*="u-border-"],
a.u-button-style.u-text-color-3-light-1,
a.u-button-style.u-text-color-3-light-1[class*="u-border-"] {
  color: #f5d654 !important;
  
  
  
}
a.u-button-style.u-text-color-3-light-1:hover,
a.u-button-style.u-text-color-3-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3-light-1:focus,
a.u-button-style.u-text-color-3-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3-light-1:active,
a.u-button-style.u-button-style.u-text-color-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3-light-1.active,
a.u-button-style.u-button-style.u-text-color-3-light-1[class*="u-border-"].active {
  color: #f3cf35 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-3-light-1,
a.u-button-style:hover > .u-text-hover-color-3-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-3-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-3-light-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3-light-1:hover,
.u-text-hover-color-3-light-1.u-language-url:hover,
.u-text-hover-color-3-light-1 .u-language-url:hover,
.u-text-hover-color-3-light-1.u-carousel-control:hover,
.u-text-hover-color-3-light-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-3-light-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-3-light-1:hover {
  color: #f5d654 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3-light-1,
a.u-button-style.u-button-style.active > .u-text-active-color-3-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3-light-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3-light-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-3-light-1.u-active {
  color: #f5d654 !important;
}
.u-text-color-3-light-1 .u-svg-link {
  fill: #f5d654;
}
.u-text-hover-color-3-light-1:hover .u-svg-link,
.u-text-hover-color-3-light-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3-light-1 .u-svg-link {
  fill: #f5d654;
}
.u-text-active-color-3-light-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-3-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3-light-1 .u-svg-link {
  fill: #f5d654;
}
.u-link.u-text-color-3-light-1:hover {
  color: #f3cf35 !important;
}
a.u-link.u-text-hover-color-3-light-1:hover {
  color: #f5d654 !important;
}
.u-text-color-3-light-2,
.u-input.u-text-color-3-light-2,
.u-input.u-text-color-3-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3-light-2,
li.active > a.u-button-style.u-text-color-3-light-2[class*="u-border-"],
a.u-button-style.u-text-color-3-light-2,
a.u-button-style.u-text-color-3-light-2[class*="u-border-"] {
  color: #f9e79b !important;
  
  
  
}
a.u-button-style.u-text-color-3-light-2:hover,
a.u-button-style.u-text-color-3-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3-light-2:focus,
a.u-button-style.u-text-color-3-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3-light-2:active,
a.u-button-style.u-button-style.u-text-color-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3-light-2.active,
a.u-button-style.u-button-style.u-text-color-3-light-2[class*="u-border-"].active {
  color: #f7de75 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-3-light-2,
a.u-button-style:hover > .u-text-hover-color-3-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-3-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-3-light-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3-light-2:hover,
.u-text-hover-color-3-light-2.u-language-url:hover,
.u-text-hover-color-3-light-2 .u-language-url:hover,
.u-text-hover-color-3-light-2.u-carousel-control:hover,
.u-text-hover-color-3-light-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-3-light-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-3-light-2:hover {
  color: #f9e79b !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3-light-2,
a.u-button-style.u-button-style.active > .u-text-active-color-3-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3-light-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3-light-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-3-light-2.u-active {
  color: #f9e79b !important;
}
.u-text-color-3-light-2 .u-svg-link {
  fill: #f9e79b;
}
.u-text-hover-color-3-light-2:hover .u-svg-link,
.u-text-hover-color-3-light-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3-light-2 .u-svg-link {
  fill: #f9e79b;
}
.u-text-active-color-3-light-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-3-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3-light-2 .u-svg-link {
  fill: #f9e79b;
}
.u-link.u-text-color-3-light-2:hover {
  color: #f7de75 !important;
}
a.u-link.u-text-hover-color-3-light-2:hover {
  color: #f9e79b !important;
}
.u-text-color-3-light-3,
.u-input.u-text-color-3-light-3,
.u-input.u-text-color-3-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3-light-3,
li.active > a.u-button-style.u-text-color-3-light-3[class*="u-border-"],
a.u-button-style.u-text-color-3-light-3,
a.u-button-style.u-text-color-3-light-3[class*="u-border-"] {
  color: #fef9e6 !important;
  
  
  
}
a.u-button-style.u-text-color-3-light-3:hover,
a.u-button-style.u-text-color-3-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3-light-3:focus,
a.u-button-style.u-text-color-3-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3-light-3:active,
a.u-button-style.u-button-style.u-text-color-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3-light-3.active,
a.u-button-style.u-button-style.u-text-color-3-light-3[class*="u-border-"].active {
  color: #fceeb7 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-3-light-3,
a.u-button-style:hover > .u-text-hover-color-3-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-3-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-3-light-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3-light-3:hover,
.u-text-hover-color-3-light-3.u-language-url:hover,
.u-text-hover-color-3-light-3 .u-language-url:hover,
.u-text-hover-color-3-light-3.u-carousel-control:hover,
.u-text-hover-color-3-light-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-3-light-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-3-light-3:hover {
  color: #fef9e6 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3-light-3,
a.u-button-style.u-button-style.active > .u-text-active-color-3-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3-light-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3-light-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-3-light-3.u-active {
  color: #fef9e6 !important;
}
.u-text-color-3-light-3 .u-svg-link {
  fill: #fef9e6;
}
.u-text-hover-color-3-light-3:hover .u-svg-link,
.u-text-hover-color-3-light-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3-light-3 .u-svg-link {
  fill: #fef9e6;
}
.u-text-active-color-3-light-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-3-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3-light-3 .u-svg-link {
  fill: #fef9e6;
}
.u-link.u-text-color-3-light-3:hover {
  color: #fceeb7 !important;
}
a.u-link.u-text-hover-color-3-light-3:hover {
  color: #fef9e6 !important;
}
.u-text-color-3-base,
.u-input.u-text-color-3-base,
.u-input.u-text-color-3-base[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3-base,
li.active > a.u-button-style.u-text-color-3-base[class*="u-border-"],
a.u-button-style.u-text-color-3-base,
a.u-button-style.u-text-color-3-base[class*="u-border-"] {
  color: #f1c50e !important;
  
  
  
}
a.u-button-style.u-text-color-3-base:hover,
a.u-button-style.u-text-color-3-base[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3-base:focus,
a.u-button-style.u-text-color-3-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3-base:active,
a.u-button-style.u-button-style.u-text-color-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3-base.active,
a.u-button-style.u-button-style.u-text-color-3-base[class*="u-border-"].active {
  color: #d9b10d !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-3-base,
a.u-button-style:hover > .u-text-hover-color-3-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3-base:hover,
a.u-button-style.u-button-style.u-text-hover-color-3-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3-base:focus,
a.u-button-style.u-button-style.u-text-hover-color-3-base[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3-base:hover,
.u-text-hover-color-3-base.u-language-url:hover,
.u-text-hover-color-3-base .u-language-url:hover,
.u-text-hover-color-3-base.u-carousel-control:hover,
.u-text-hover-color-3-base.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-3-base .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-3-base:hover {
  color: #f1c50e !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3-base,
a.u-button-style.u-button-style.active > .u-text-active-color-3-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3-base.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3-base .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-3-base.u-active {
  color: #f1c50e !important;
}
.u-text-color-3-base .u-svg-link {
  fill: #f1c50e;
}
.u-text-hover-color-3-base:hover .u-svg-link,
.u-text-hover-color-3-base:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3-base .u-svg-link {
  fill: #f1c50e;
}
.u-text-active-color-3-base:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-3-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3-base .u-svg-link {
  fill: #f1c50e;
}
.u-link.u-text-color-3-base:hover {
  color: #d9b10d !important;
}
a.u-link.u-text-hover-color-3-base:hover {
  color: #f1c50e !important;
}
.u-text-color-4-dark-3,
.u-input.u-text-color-4-dark-3,
.u-input.u-text-color-4-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4-dark-3,
li.active > a.u-button-style.u-text-color-4-dark-3[class*="u-border-"],
a.u-button-style.u-text-color-4-dark-3,
a.u-button-style.u-text-color-4-dark-3[class*="u-border-"] {
  color: #293332 !important;
  
  
  
}
a.u-button-style.u-text-color-4-dark-3:hover,
a.u-button-style.u-text-color-4-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4-dark-3:focus,
a.u-button-style.u-text-color-4-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4-dark-3:active,
a.u-button-style.u-button-style.u-text-color-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4-dark-3.active,
a.u-button-style.u-button-style.u-text-color-4-dark-3[class*="u-border-"].active {
  color: #252e2d !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-4-dark-3,
a.u-button-style:hover > .u-text-hover-color-4-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4-dark-3:hover,
.u-text-hover-color-4-dark-3.u-language-url:hover,
.u-text-hover-color-4-dark-3 .u-language-url:hover,
.u-text-hover-color-4-dark-3.u-carousel-control:hover,
.u-text-hover-color-4-dark-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-4-dark-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-4-dark-3:hover {
  color: #293332 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-color-4-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4-dark-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4-dark-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-4-dark-3.u-active {
  color: #293332 !important;
}
.u-text-color-4-dark-3 .u-svg-link {
  fill: #293332;
}
.u-text-hover-color-4-dark-3:hover .u-svg-link,
.u-text-hover-color-4-dark-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4-dark-3 .u-svg-link {
  fill: #293332;
}
.u-text-active-color-4-dark-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-4-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4-dark-3 .u-svg-link {
  fill: #293332;
}
.u-link.u-text-color-4-dark-3:hover {
  color: #252e2d !important;
}
a.u-link.u-text-hover-color-4-dark-3:hover {
  color: #293332 !important;
}
.u-text-color-4-dark-2,
.u-input.u-text-color-4-dark-2,
.u-input.u-text-color-4-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4-dark-2,
li.active > a.u-button-style.u-text-color-4-dark-2[class*="u-border-"],
a.u-button-style.u-text-color-4-dark-2,
a.u-button-style.u-text-color-4-dark-2[class*="u-border-"] {
  color: #41807c !important;
  
  
  
}
a.u-button-style.u-text-color-4-dark-2:hover,
a.u-button-style.u-text-color-4-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4-dark-2:focus,
a.u-button-style.u-text-color-4-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4-dark-2:active,
a.u-button-style.u-button-style.u-text-color-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4-dark-2.active,
a.u-button-style.u-button-style.u-text-color-4-dark-2[class*="u-border-"].active {
  color: #3a7370 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-4-dark-2,
a.u-button-style:hover > .u-text-hover-color-4-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4-dark-2:hover,
.u-text-hover-color-4-dark-2.u-language-url:hover,
.u-text-hover-color-4-dark-2 .u-language-url:hover,
.u-text-hover-color-4-dark-2.u-carousel-control:hover,
.u-text-hover-color-4-dark-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-4-dark-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-4-dark-2:hover {
  color: #41807c !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-color-4-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4-dark-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4-dark-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-4-dark-2.u-active {
  color: #41807c !important;
}
.u-text-color-4-dark-2 .u-svg-link {
  fill: #41807c;
}
.u-text-hover-color-4-dark-2:hover .u-svg-link,
.u-text-hover-color-4-dark-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4-dark-2 .u-svg-link {
  fill: #41807c;
}
.u-text-active-color-4-dark-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-4-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4-dark-2 .u-svg-link {
  fill: #41807c;
}
.u-link.u-text-color-4-dark-2:hover {
  color: #3a7370 !important;
}
a.u-link.u-text-hover-color-4-dark-2:hover {
  color: #41807c !important;
}
.u-text-color-4-dark-1,
.u-input.u-text-color-4-dark-1,
.u-input.u-text-color-4-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4-dark-1,
li.active > a.u-button-style.u-text-color-4-dark-1[class*="u-border-"],
a.u-button-style.u-text-color-4-dark-1,
a.u-button-style.u-text-color-4-dark-1[class*="u-border-"] {
  color: #2cccc4 !important;
  
  
  
}
a.u-button-style.u-text-color-4-dark-1:hover,
a.u-button-style.u-text-color-4-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4-dark-1:focus,
a.u-button-style.u-text-color-4-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4-dark-1:active,
a.u-button-style.u-button-style.u-text-color-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4-dark-1.active,
a.u-button-style.u-button-style.u-text-color-4-dark-1[class*="u-border-"].active {
  color: #28b8b0 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-4-dark-1,
a.u-button-style:hover > .u-text-hover-color-4-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4-dark-1:hover,
.u-text-hover-color-4-dark-1.u-language-url:hover,
.u-text-hover-color-4-dark-1 .u-language-url:hover,
.u-text-hover-color-4-dark-1.u-carousel-control:hover,
.u-text-hover-color-4-dark-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-4-dark-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-4-dark-1:hover {
  color: #2cccc4 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-color-4-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4-dark-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4-dark-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-4-dark-1.u-active {
  color: #2cccc4 !important;
}
.u-text-color-4-dark-1 .u-svg-link {
  fill: #2cccc4;
}
.u-text-hover-color-4-dark-1:hover .u-svg-link,
.u-text-hover-color-4-dark-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4-dark-1 .u-svg-link {
  fill: #2cccc4;
}
.u-text-active-color-4-dark-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-4-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4-dark-1 .u-svg-link {
  fill: #2cccc4;
}
.u-link.u-text-color-4-dark-1:hover {
  color: #28b8b0 !important;
}
a.u-link.u-text-hover-color-4-dark-1:hover {
  color: #2cccc4 !important;
}
.u-text-color-4,
.u-input.u-text-color-4,
.u-input.u-text-color-4[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4,
li.active > a.u-button-style.u-text-color-4[class*="u-border-"],
a.u-button-style.u-text-color-4,
a.u-button-style.u-text-color-4[class*="u-border-"] {
  color: #3be8e0 !important;
  
  
  
}
a.u-button-style.u-text-color-4:hover,
a.u-button-style.u-text-color-4[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4:focus,
a.u-button-style.u-text-color-4[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4:active,
a.u-button-style.u-button-style.u-text-color-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4.active,
a.u-button-style.u-button-style.u-text-color-4[class*="u-border-"].active {
  color: #21e5dc !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-4,
a.u-button-style:hover > .u-text-hover-color-4[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4:hover,
a.u-button-style.u-button-style.u-text-hover-color-4[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4:focus,
a.u-button-style.u-button-style.u-text-hover-color-4[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4:hover,
.u-text-hover-color-4.u-language-url:hover,
.u-text-hover-color-4 .u-language-url:hover,
.u-text-hover-color-4.u-carousel-control:hover,
.u-text-hover-color-4.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-4 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-4:hover {
  color: #3be8e0 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4,
a.u-button-style.u-button-style.active > .u-text-active-color-4[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-4.u-active {
  color: #3be8e0 !important;
}
.u-text-color-4 .u-svg-link {
  fill: #3be8e0;
}
.u-text-hover-color-4:hover .u-svg-link,
.u-text-hover-color-4:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4 .u-svg-link {
  fill: #3be8e0;
}
.u-text-active-color-4:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-4 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4 .u-svg-link {
  fill: #3be8e0;
}
.u-link.u-text-color-4:hover {
  color: #21e5dc !important;
}
a.u-link.u-text-hover-color-4:hover {
  color: #3be8e0 !important;
}
.u-text-color-4-light-1,
.u-input.u-text-color-4-light-1,
.u-input.u-text-color-4-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4-light-1,
li.active > a.u-button-style.u-text-color-4-light-1[class*="u-border-"],
a.u-button-style.u-text-color-4-light-1,
a.u-button-style.u-text-color-4-light-1[class*="u-border-"] {
  color: #72efe9 !important;
  
  
  
}
a.u-button-style.u-text-color-4-light-1:hover,
a.u-button-style.u-text-color-4-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4-light-1:focus,
a.u-button-style.u-text-color-4-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4-light-1:active,
a.u-button-style.u-button-style.u-text-color-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4-light-1.active,
a.u-button-style.u-button-style.u-text-color-4-light-1[class*="u-border-"].active {
  color: #52ebe4 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-4-light-1,
a.u-button-style:hover > .u-text-hover-color-4-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-4-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-4-light-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4-light-1:hover,
.u-text-hover-color-4-light-1.u-language-url:hover,
.u-text-hover-color-4-light-1 .u-language-url:hover,
.u-text-hover-color-4-light-1.u-carousel-control:hover,
.u-text-hover-color-4-light-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-4-light-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-4-light-1:hover {
  color: #72efe9 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4-light-1,
a.u-button-style.u-button-style.active > .u-text-active-color-4-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4-light-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4-light-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-4-light-1.u-active {
  color: #72efe9 !important;
}
.u-text-color-4-light-1 .u-svg-link {
  fill: #72efe9;
}
.u-text-hover-color-4-light-1:hover .u-svg-link,
.u-text-hover-color-4-light-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4-light-1 .u-svg-link {
  fill: #72efe9;
}
.u-text-active-color-4-light-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-4-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4-light-1 .u-svg-link {
  fill: #72efe9;
}
.u-link.u-text-color-4-light-1:hover {
  color: #52ebe4 !important;
}
a.u-link.u-text-hover-color-4-light-1:hover {
  color: #72efe9 !important;
}
.u-text-color-4-light-2,
.u-input.u-text-color-4-light-2,
.u-input.u-text-color-4-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4-light-2,
li.active > a.u-button-style.u-text-color-4-light-2[class*="u-border-"],
a.u-button-style.u-text-color-4-light-2,
a.u-button-style.u-text-color-4-light-2[class*="u-border-"] {
  color: #adf6f2 !important;
  
  
  
}
a.u-button-style.u-text-color-4-light-2:hover,
a.u-button-style.u-text-color-4-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4-light-2:focus,
a.u-button-style.u-text-color-4-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4-light-2:active,
a.u-button-style.u-button-style.u-text-color-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4-light-2.active,
a.u-button-style.u-button-style.u-text-color-4-light-2[class*="u-border-"].active {
  color: #87f2ec !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-4-light-2,
a.u-button-style:hover > .u-text-hover-color-4-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-4-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-4-light-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4-light-2:hover,
.u-text-hover-color-4-light-2.u-language-url:hover,
.u-text-hover-color-4-light-2 .u-language-url:hover,
.u-text-hover-color-4-light-2.u-carousel-control:hover,
.u-text-hover-color-4-light-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-4-light-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-4-light-2:hover {
  color: #adf6f2 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4-light-2,
a.u-button-style.u-button-style.active > .u-text-active-color-4-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4-light-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4-light-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-4-light-2.u-active {
  color: #adf6f2 !important;
}
.u-text-color-4-light-2 .u-svg-link {
  fill: #adf6f2;
}
.u-text-hover-color-4-light-2:hover .u-svg-link,
.u-text-hover-color-4-light-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4-light-2 .u-svg-link {
  fill: #adf6f2;
}
.u-text-active-color-4-light-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-4-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4-light-2 .u-svg-link {
  fill: #adf6f2;
}
.u-link.u-text-color-4-light-2:hover {
  color: #87f2ec !important;
}
a.u-link.u-text-hover-color-4-light-2:hover {
  color: #adf6f2 !important;
}
.u-text-color-4-light-3,
.u-input.u-text-color-4-light-3,
.u-input.u-text-color-4-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4-light-3,
li.active > a.u-button-style.u-text-color-4-light-3[class*="u-border-"],
a.u-button-style.u-text-color-4-light-3,
a.u-button-style.u-text-color-4-light-3[class*="u-border-"] {
  color: #eafdfc !important;
  
  
  
}
a.u-button-style.u-text-color-4-light-3:hover,
a.u-button-style.u-text-color-4-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4-light-3:focus,
a.u-button-style.u-text-color-4-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4-light-3:active,
a.u-button-style.u-button-style.u-text-color-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4-light-3.active,
a.u-button-style.u-button-style.u-text-color-4-light-3[class*="u-border-"].active {
  color: #bef9f6 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-4-light-3,
a.u-button-style:hover > .u-text-hover-color-4-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-4-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-4-light-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4-light-3:hover,
.u-text-hover-color-4-light-3.u-language-url:hover,
.u-text-hover-color-4-light-3 .u-language-url:hover,
.u-text-hover-color-4-light-3.u-carousel-control:hover,
.u-text-hover-color-4-light-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-4-light-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-4-light-3:hover {
  color: #eafdfc !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4-light-3,
a.u-button-style.u-button-style.active > .u-text-active-color-4-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4-light-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4-light-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-4-light-3.u-active {
  color: #eafdfc !important;
}
.u-text-color-4-light-3 .u-svg-link {
  fill: #eafdfc;
}
.u-text-hover-color-4-light-3:hover .u-svg-link,
.u-text-hover-color-4-light-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4-light-3 .u-svg-link {
  fill: #eafdfc;
}
.u-text-active-color-4-light-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-4-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4-light-3 .u-svg-link {
  fill: #eafdfc;
}
.u-link.u-text-color-4-light-3:hover {
  color: #bef9f6 !important;
}
a.u-link.u-text-hover-color-4-light-3:hover {
  color: #eafdfc !important;
}
.u-text-color-4-base,
.u-input.u-text-color-4-base,
.u-input.u-text-color-4-base[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4-base,
li.active > a.u-button-style.u-text-color-4-base[class*="u-border-"],
a.u-button-style.u-text-color-4-base,
a.u-button-style.u-text-color-4-base[class*="u-border-"] {
  color: #2cccc4 !important;
  
  
  
}
a.u-button-style.u-text-color-4-base:hover,
a.u-button-style.u-text-color-4-base[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4-base:focus,
a.u-button-style.u-text-color-4-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4-base:active,
a.u-button-style.u-button-style.u-text-color-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4-base.active,
a.u-button-style.u-button-style.u-text-color-4-base[class*="u-border-"].active {
  color: #28b8b0 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-4-base,
a.u-button-style:hover > .u-text-hover-color-4-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4-base:hover,
a.u-button-style.u-button-style.u-text-hover-color-4-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4-base:focus,
a.u-button-style.u-button-style.u-text-hover-color-4-base[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4-base:hover,
.u-text-hover-color-4-base.u-language-url:hover,
.u-text-hover-color-4-base .u-language-url:hover,
.u-text-hover-color-4-base.u-carousel-control:hover,
.u-text-hover-color-4-base.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-4-base .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-4-base:hover {
  color: #2cccc4 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4-base,
a.u-button-style.u-button-style.active > .u-text-active-color-4-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4-base.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4-base .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-4-base.u-active {
  color: #2cccc4 !important;
}
.u-text-color-4-base .u-svg-link {
  fill: #2cccc4;
}
.u-text-hover-color-4-base:hover .u-svg-link,
.u-text-hover-color-4-base:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4-base .u-svg-link {
  fill: #2cccc4;
}
.u-text-active-color-4-base:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-4-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4-base .u-svg-link {
  fill: #2cccc4;
}
.u-link.u-text-color-4-base:hover {
  color: #28b8b0 !important;
}
a.u-link.u-text-hover-color-4-base:hover {
  color: #2cccc4 !important;
}
.u-text-color-5-dark-3,
.u-input.u-text-color-5-dark-3,
.u-input.u-text-color-5-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5-dark-3,
li.active > a.u-button-style.u-text-color-5-dark-3[class*="u-border-"],
a.u-button-style.u-text-color-5-dark-3,
a.u-button-style.u-text-color-5-dark-3[class*="u-border-"] {
  color: #292d33 !important;
  
  
  
}
a.u-button-style.u-text-color-5-dark-3:hover,
a.u-button-style.u-text-color-5-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5-dark-3:focus,
a.u-button-style.u-text-color-5-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5-dark-3:active,
a.u-button-style.u-button-style.u-text-color-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5-dark-3.active,
a.u-button-style.u-button-style.u-text-color-5-dark-3[class*="u-border-"].active {
  color: #25292e !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-5-dark-3,
a.u-button-style:hover > .u-text-hover-color-5-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5-dark-3:hover,
.u-text-hover-color-5-dark-3.u-language-url:hover,
.u-text-hover-color-5-dark-3 .u-language-url:hover,
.u-text-hover-color-5-dark-3.u-carousel-control:hover,
.u-text-hover-color-5-dark-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-5-dark-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-5-dark-3:hover {
  color: #292d33 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-color-5-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5-dark-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5-dark-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-5-dark-3.u-active {
  color: #292d33 !important;
}
.u-text-color-5-dark-3 .u-svg-link {
  fill: #292d33;
}
.u-text-hover-color-5-dark-3:hover .u-svg-link,
.u-text-hover-color-5-dark-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5-dark-3 .u-svg-link {
  fill: #292d33;
}
.u-text-active-color-5-dark-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-5-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5-dark-3 .u-svg-link {
  fill: #292d33;
}
.u-link.u-text-color-5-dark-3:hover {
  color: #25292e !important;
}
a.u-link.u-text-hover-color-5-dark-3:hover {
  color: #292d33 !important;
}
.u-text-color-5-dark-2,
.u-input.u-text-color-5-dark-2,
.u-input.u-text-color-5-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5-dark-2,
li.active > a.u-button-style.u-text-color-5-dark-2[class*="u-border-"],
a.u-button-style.u-text-color-5-dark-2,
a.u-button-style.u-text-color-5-dark-2[class*="u-border-"] {
  color: var(--color-darkest-gray)c66 !important;
  
  
  
}
a.u-button-style.u-text-color-5-dark-2:hover,
a.u-button-style.u-text-color-5-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5-dark-2:focus,
a.u-button-style.u-text-color-5-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5-dark-2:active,
a.u-button-style.u-button-style.u-text-color-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5-dark-2.active,
a.u-button-style.u-button-style.u-text-color-5-dark-2[class*="u-border-"].active {
  color: #4d535c !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-5-dark-2,
a.u-button-style:hover > .u-text-hover-color-5-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5-dark-2:hover,
.u-text-hover-color-5-dark-2.u-language-url:hover,
.u-text-hover-color-5-dark-2 .u-language-url:hover,
.u-text-hover-color-5-dark-2.u-carousel-control:hover,
.u-text-hover-color-5-dark-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-5-dark-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-5-dark-2:hover {
  color: var(--color-darkest-gray)c66 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-color-5-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5-dark-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5-dark-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-5-dark-2.u-active {
  color: var(--color-darkest-gray)c66 !important;
}
.u-text-color-5-dark-2 .u-svg-link {
  fill: var(--color-darkest-gray)c66;
}
.u-text-hover-color-5-dark-2:hover .u-svg-link,
.u-text-hover-color-5-dark-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5-dark-2 .u-svg-link {
  fill: var(--color-darkest-gray)c66;
}
.u-text-active-color-5-dark-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-5-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5-dark-2 .u-svg-link {
  fill: var(--color-darkest-gray)c66;
}
.u-link.u-text-color-5-dark-2:hover {
  color: #4d535c !important;
}
a.u-link.u-text-hover-color-5-dark-2:hover {
  color: var(--color-darkest-gray)c66 !important;
}
.u-text-color-5-dark-1,
.u-input.u-text-color-5-dark-1,
.u-input.u-text-color-5-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5-dark-1,
li.active > a.u-button-style.u-text-color-5-dark-1[class*="u-border-"],
a.u-button-style.u-text-color-5-dark-1,
a.u-button-style.u-text-color-5-dark-1[class*="u-border-"] {
  color: #858e99 !important;
  
  
  
}
a.u-button-style.u-text-color-5-dark-1:hover,
a.u-button-style.u-text-color-5-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5-dark-1:focus,
a.u-button-style.u-text-color-5-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5-dark-1:active,
a.u-button-style.u-button-style.u-text-color-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5-dark-1.active,
a.u-button-style.u-button-style.u-text-color-5-dark-1[class*="u-border-"].active {
  color: #75808c !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-5-dark-1,
a.u-button-style:hover > .u-text-hover-color-5-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5-dark-1:hover,
.u-text-hover-color-5-dark-1.u-language-url:hover,
.u-text-hover-color-5-dark-1 .u-language-url:hover,
.u-text-hover-color-5-dark-1.u-carousel-control:hover,
.u-text-hover-color-5-dark-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-5-dark-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-5-dark-1:hover {
  color: #858e99 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-color-5-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5-dark-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5-dark-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-5-dark-1.u-active {
  color: #858e99 !important;
}
.u-text-color-5-dark-1 .u-svg-link {
  fill: #858e99;
}
.u-text-hover-color-5-dark-1:hover .u-svg-link,
.u-text-hover-color-5-dark-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5-dark-1 .u-svg-link {
  fill: #858e99;
}
.u-text-active-color-5-dark-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-5-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5-dark-1 .u-svg-link {
  fill: #858e99;
}
.u-link.u-text-color-5-dark-1:hover {
  color: #75808c !important;
}
a.u-link.u-text-hover-color-5-dark-1:hover {
  color: #858e99 !important;
}
.u-text-color-5,
.u-input.u-text-color-5,
.u-input.u-text-color-5[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5,
li.active > a.u-button-style.u-text-color-5[class*="u-border-"],
a.u-button-style.u-text-color-5,
a.u-button-style.u-text-color-5[class*="u-border-"] {
  color: #b9c1cc !important;
  
  
  
}
a.u-button-style.u-text-color-5:hover,
a.u-button-style.u-text-color-5[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5:focus,
a.u-button-style.u-text-color-5[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5:active,
a.u-button-style.u-button-style.u-text-color-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5.active,
a.u-button-style.u-button-style.u-text-color-5[class*="u-border-"].active {
  color: #a2adbc !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-5,
a.u-button-style:hover > .u-text-hover-color-5[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5:hover,
a.u-button-style.u-button-style.u-text-hover-color-5[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5:focus,
a.u-button-style.u-button-style.u-text-hover-color-5[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5:hover,
.u-text-hover-color-5.u-language-url:hover,
.u-text-hover-color-5 .u-language-url:hover,
.u-text-hover-color-5.u-carousel-control:hover,
.u-text-hover-color-5.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-5 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-5:hover {
  color: #b9c1cc !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5,
a.u-button-style.u-button-style.active > .u-text-active-color-5[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-5.u-active {
  color: #b9c1cc !important;
}
.u-text-color-5 .u-svg-link {
  fill: #b9c1cc;
}
.u-text-hover-color-5:hover .u-svg-link,
.u-text-hover-color-5:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5 .u-svg-link {
  fill: #b9c1cc;
}
.u-text-active-color-5:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-5 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5 .u-svg-link {
  fill: #b9c1cc;
}
.u-link.u-text-color-5:hover {
  color: #a2adbc !important;
}
a.u-link.u-text-hover-color-5:hover {
  color: #b9c1cc !important;
}
.u-text-color-5-light-1,
.u-input.u-text-color-5-light-1,
.u-input.u-text-color-5-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5-light-1,
li.active > a.u-button-style.u-text-color-5-light-1[class*="u-border-"],
a.u-button-style.u-text-color-5-light-1,
a.u-button-style.u-text-color-5-light-1[class*="u-border-"] {
  color: #ccd3db !important;
  
  
  
}
a.u-button-style.u-text-color-5-light-1:hover,
a.u-button-style.u-text-color-5-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5-light-1:focus,
a.u-button-style.u-text-color-5-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5-light-1:active,
a.u-button-style.u-button-style.u-text-color-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5-light-1.active,
a.u-button-style.u-button-style.u-text-color-5-light-1[class*="u-border-"].active {
  color: #b3bec9 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-5-light-1,
a.u-button-style:hover > .u-text-hover-color-5-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-5-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-5-light-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5-light-1:hover,
.u-text-hover-color-5-light-1.u-language-url:hover,
.u-text-hover-color-5-light-1 .u-language-url:hover,
.u-text-hover-color-5-light-1.u-carousel-control:hover,
.u-text-hover-color-5-light-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-5-light-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-5-light-1:hover {
  color: #ccd3db !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5-light-1,
a.u-button-style.u-button-style.active > .u-text-active-color-5-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5-light-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5-light-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-5-light-1.u-active {
  color: #ccd3db !important;
}
.u-text-color-5-light-1 .u-svg-link {
  fill: #ccd3db;
}
.u-text-hover-color-5-light-1:hover .u-svg-link,
.u-text-hover-color-5-light-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5-light-1 .u-svg-link {
  fill: #ccd3db;
}
.u-text-active-color-5-light-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-5-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5-light-1 .u-svg-link {
  fill: #ccd3db;
}
.u-link.u-text-color-5-light-1:hover {
  color: #b3bec9 !important;
}
a.u-link.u-text-hover-color-5-light-1:hover {
  color: #ccd3db !important;
}
.u-text-color-5-light-2,
.u-input.u-text-color-5-light-2,
.u-input.u-text-color-5-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5-light-2,
li.active > a.u-button-style.u-text-color-5-light-2[class*="u-border-"],
a.u-button-style.u-text-color-5-light-2,
a.u-button-style.u-text-color-5-light-2[class*="u-border-"] {
  color: #e0e5eb !important;
  
  
  
}
a.u-button-style.u-text-color-5-light-2:hover,
a.u-button-style.u-text-color-5-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5-light-2:focus,
a.u-button-style.u-text-color-5-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5-light-2:active,
a.u-button-style.u-button-style.u-text-color-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5-light-2.active,
a.u-button-style.u-button-style.u-text-color-5-light-2[class*="u-border-"].active {
  color: #c4ced9 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-5-light-2,
a.u-button-style:hover > .u-text-hover-color-5-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-5-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-5-light-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5-light-2:hover,
.u-text-hover-color-5-light-2.u-language-url:hover,
.u-text-hover-color-5-light-2 .u-language-url:hover,
.u-text-hover-color-5-light-2.u-carousel-control:hover,
.u-text-hover-color-5-light-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-5-light-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-5-light-2:hover {
  color: #e0e5eb !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5-light-2,
a.u-button-style.u-button-style.active > .u-text-active-color-5-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5-light-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5-light-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-5-light-2.u-active {
  color: #e0e5eb !important;
}
.u-text-color-5-light-2 .u-svg-link {
  fill: #e0e5eb;
}
.u-text-hover-color-5-light-2:hover .u-svg-link,
.u-text-hover-color-5-light-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5-light-2 .u-svg-link {
  fill: #e0e5eb;
}
.u-text-active-color-5-light-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-5-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5-light-2 .u-svg-link {
  fill: #e0e5eb;
}
.u-link.u-text-color-5-light-2:hover {
  color: #c4ced9 !important;
}
a.u-link.u-text-hover-color-5-light-2:hover {
  color: #e0e5eb !important;
}
.u-text-color-5-light-3,
.u-input.u-text-color-5-light-3,
.u-input.u-text-color-5-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5-light-3,
li.active > a.u-button-style.u-text-color-5-light-3[class*="u-border-"],
a.u-button-style.u-text-color-5-light-3,
a.u-button-style.u-text-color-5-light-3[class*="u-border-"] {
  color: #f5f7fa !important;
  
  
  
}
a.u-button-style.u-text-color-5-light-3:hover,
a.u-button-style.u-text-color-5-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5-light-3:focus,
a.u-button-style.u-text-color-5-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5-light-3:active,
a.u-button-style.u-button-style.u-text-color-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5-light-3.active,
a.u-button-style.u-button-style.u-text-color-5-light-3[class*="u-border-"].active {
  color: #d4dde9 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-5-light-3,
a.u-button-style:hover > .u-text-hover-color-5-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-5-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-5-light-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5-light-3:hover,
.u-text-hover-color-5-light-3.u-language-url:hover,
.u-text-hover-color-5-light-3 .u-language-url:hover,
.u-text-hover-color-5-light-3.u-carousel-control:hover,
.u-text-hover-color-5-light-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-5-light-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-5-light-3:hover {
  color: #f5f7fa !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5-light-3,
a.u-button-style.u-button-style.active > .u-text-active-color-5-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5-light-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5-light-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-5-light-3.u-active {
  color: #f5f7fa !important;
}
.u-text-color-5-light-3 .u-svg-link {
  fill: #f5f7fa;
}
.u-text-hover-color-5-light-3:hover .u-svg-link,
.u-text-hover-color-5-light-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5-light-3 .u-svg-link {
  fill: #f5f7fa;
}
.u-text-active-color-5-light-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-5-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5-light-3 .u-svg-link {
  fill: #f5f7fa;
}
.u-link.u-text-color-5-light-3:hover {
  color: #d4dde9 !important;
}
a.u-link.u-text-hover-color-5-light-3:hover {
  color: #f5f7fa !important;
}
.u-text-color-5-base,
.u-input.u-text-color-5-base,
.u-input.u-text-color-5-base[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5-base,
li.active > a.u-button-style.u-text-color-5-base[class*="u-border-"],
a.u-button-style.u-text-color-5-base,
a.u-button-style.u-text-color-5-base[class*="u-border-"] {
  color: #b9c1cc !important;
  
  
  
}
a.u-button-style.u-text-color-5-base:hover,
a.u-button-style.u-text-color-5-base[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5-base:focus,
a.u-button-style.u-text-color-5-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5-base:active,
a.u-button-style.u-button-style.u-text-color-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5-base.active,
a.u-button-style.u-button-style.u-text-color-5-base[class*="u-border-"].active {
  color: #a2adbc !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-5-base,
a.u-button-style:hover > .u-text-hover-color-5-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5-base:hover,
a.u-button-style.u-button-style.u-text-hover-color-5-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5-base:focus,
a.u-button-style.u-button-style.u-text-hover-color-5-base[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5-base:hover,
.u-text-hover-color-5-base.u-language-url:hover,
.u-text-hover-color-5-base .u-language-url:hover,
.u-text-hover-color-5-base.u-carousel-control:hover,
.u-text-hover-color-5-base.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-5-base .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-5-base:hover {
  color: #b9c1cc !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5-base,
a.u-button-style.u-button-style.active > .u-text-active-color-5-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5-base.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5-base .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-5-base.u-active {
  color: #b9c1cc !important;
}
.u-text-color-5-base .u-svg-link {
  fill: #b9c1cc;
}
.u-text-hover-color-5-base:hover .u-svg-link,
.u-text-hover-color-5-base:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5-base .u-svg-link {
  fill: #b9c1cc;
}
.u-text-active-color-5-base:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-5-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5-base .u-svg-link {
  fill: #b9c1cc;
}
.u-link.u-text-color-5-base:hover {
  color: #a2adbc !important;
}
a.u-link.u-text-hover-color-5-base:hover {
  color: #b9c1cc !important;
}
.u-text-palette-1-dark-3,
.u-input.u-text-palette-1-dark-3,
.u-input.u-text-palette-1-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1-dark-3,
li.active > a.u-button-style.u-text-palette-1-dark-3[class*="u-border-"],
a.u-button-style.u-text-palette-1-dark-3,
a.u-button-style.u-text-palette-1-dark-3[class*="u-border-"] {
  color: #2a3329 !important;
  
  
  
}
a.u-button-style.u-text-palette-1-dark-3:hover,
a.u-button-style.u-text-palette-1-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1-dark-3:focus,
a.u-button-style.u-text-palette-1-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1-dark-3:active,
a.u-button-style.u-button-style.u-text-palette-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1-dark-3.active,
a.u-button-style.u-button-style.u-text-palette-1-dark-3[class*="u-border-"].active {
  color: #262e25 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-1-dark-3,
a.u-button-style:hover > .u-text-hover-palette-1-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1-dark-3:hover,
.u-text-hover-palette-1-dark-3.u-language-url:hover,
.u-text-hover-palette-1-dark-3 .u-language-url:hover,
.u-text-hover-palette-1-dark-3.u-carousel-control:hover,
.u-text-hover-palette-1-dark-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-1-dark-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-1-dark-3:hover {
  color: #2a3329 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1-dark-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1-dark-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-1-dark-3.u-active {
  color: #2a3329 !important;
}
.u-text-palette-1-dark-3 .u-svg-link {
  fill: #2a3329;
}
.u-text-hover-palette-1-dark-3:hover .u-svg-link,
.u-text-hover-palette-1-dark-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1-dark-3 .u-svg-link {
  fill: #2a3329;
}
.u-text-active-palette-1-dark-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-1-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-3 .u-svg-link {
  fill: #2a3329;
}
.u-link.u-text-palette-1-dark-3:hover {
  color: #262e25 !important;
}
a.u-link.u-text-hover-palette-1-dark-3:hover {
  color: #2a3329 !important;
}
.u-text-palette-1-dark-2,
.u-input.u-text-palette-1-dark-2,
.u-input.u-text-palette-1-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1-dark-2,
li.active > a.u-button-style.u-text-palette-1-dark-2[class*="u-border-"],
a.u-button-style.u-text-palette-1-dark-2,
a.u-button-style.u-text-palette-1-dark-2[class*="u-border-"] {
  color: #485a46 !important;
  
  
  
}
a.u-button-style.u-text-palette-1-dark-2:hover,
a.u-button-style.u-text-palette-1-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1-dark-2:focus,
a.u-button-style.u-text-palette-1-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1-dark-2:active,
a.u-button-style.u-button-style.u-text-palette-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1-dark-2.active,
a.u-button-style.u-button-style.u-text-palette-1-dark-2[class*="u-border-"].active {
  color: #41513f !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-1-dark-2,
a.u-button-style:hover > .u-text-hover-palette-1-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1-dark-2:hover,
.u-text-hover-palette-1-dark-2.u-language-url:hover,
.u-text-hover-palette-1-dark-2 .u-language-url:hover,
.u-text-hover-palette-1-dark-2.u-carousel-control:hover,
.u-text-hover-palette-1-dark-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-1-dark-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-1-dark-2:hover {
  color: #485a46 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1-dark-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1-dark-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-1-dark-2.u-active {
  color: #485a46 !important;
}
.u-text-palette-1-dark-2 .u-svg-link {
  fill: #485a46;
}
.u-text-hover-palette-1-dark-2:hover .u-svg-link,
.u-text-hover-palette-1-dark-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1-dark-2 .u-svg-link {
  fill: #485a46;
}
.u-text-active-palette-1-dark-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-1-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-2 .u-svg-link {
  fill: #485a46;
}
.u-link.u-text-palette-1-dark-2:hover {
  color: #41513f !important;
}
a.u-link.u-text-hover-palette-1-dark-2:hover {
  color: #485a46 !important;
}
.u-text-palette-1-dark-1,
.u-input.u-text-palette-1-dark-1,
.u-input.u-text-palette-1-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1-dark-1,
li.active > a.u-button-style.u-text-palette-1-dark-1[class*="u-border-"],
a.u-button-style.u-text-palette-1-dark-1,
a.u-button-style.u-text-palette-1-dark-1[class*="u-border-"] {
  color: #658161 !important;
  
  
  
}
a.u-button-style.u-text-palette-1-dark-1:hover,
a.u-button-style.u-text-palette-1-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1-dark-1:focus,
a.u-button-style.u-text-palette-1-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1-dark-1:active,
a.u-button-style.u-button-style.u-text-palette-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1-dark-1.active,
a.u-button-style.u-button-style.u-text-palette-1-dark-1[class*="u-border-"].active {
  color: #5b7457 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-1-dark-1,
a.u-button-style:hover > .u-text-hover-palette-1-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1-dark-1:hover,
.u-text-hover-palette-1-dark-1.u-language-url:hover,
.u-text-hover-palette-1-dark-1 .u-language-url:hover,
.u-text-hover-palette-1-dark-1.u-carousel-control:hover,
.u-text-hover-palette-1-dark-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-1-dark-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-1-dark-1:hover {
  color: #658161 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1-dark-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1-dark-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-1-dark-1.u-active {
  color: #658161 !important;
}
.u-text-palette-1-dark-1 .u-svg-link {
  fill: #658161;
}
.u-text-hover-palette-1-dark-1:hover .u-svg-link,
.u-text-hover-palette-1-dark-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1-dark-1 .u-svg-link {
  fill: #658161;
}
.u-text-active-palette-1-dark-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-1-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-1 .u-svg-link {
  fill: #658161;
}
.u-link.u-text-palette-1-dark-1:hover {
  color: #5b7457 !important;
}
a.u-link.u-text-hover-palette-1-dark-1:hover {
  color: #658161 !important;
}
.u-text-palette-1,
.u-input.u-text-palette-1,
.u-input.u-text-palette-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1,
li.active > a.u-button-style.u-text-palette-1[class*="u-border-"],
a.u-button-style.u-text-palette-1,
a.u-button-style.u-text-palette-1[class*="u-border-"] {
  color: #9ab596 !important;
  
  
  
}
a.u-button-style.u-text-palette-1:hover,
a.u-button-style.u-text-palette-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1:focus,
a.u-button-style.u-text-palette-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1:active,
a.u-button-style.u-button-style.u-text-palette-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1.active,
a.u-button-style.u-button-style.u-text-palette-1[class*="u-border-"].active {
  color: #87a783 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-1,
a.u-button-style:hover > .u-text-hover-palette-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1:hover,
.u-text-hover-palette-1.u-language-url:hover,
.u-text-hover-palette-1 .u-language-url:hover,
.u-text-hover-palette-1.u-carousel-control:hover,
.u-text-hover-palette-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-1:hover {
  color: #9ab596 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-1.u-active {
  color: #9ab596 !important;
}
.u-text-palette-1 .u-svg-link {
  fill: #9ab596;
}
.u-text-hover-palette-1:hover .u-svg-link,
.u-text-hover-palette-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1 .u-svg-link {
  fill: #9ab596;
}
.u-text-active-palette-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1 .u-svg-link {
  fill: #9ab596;
}
.u-link.u-text-palette-1:hover {
  color: #87a783 !important;
}
a.u-link.u-text-hover-palette-1:hover {
  color: #9ab596 !important;
}
.u-text-palette-1-light-1,
.u-input.u-text-palette-1-light-1,
.u-input.u-text-palette-1-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1-light-1,
li.active > a.u-button-style.u-text-palette-1-light-1[class*="u-border-"],
a.u-button-style.u-text-palette-1-light-1,
a.u-button-style.u-text-palette-1-light-1[class*="u-border-"] {
  color: #b6ccb2 !important;
  
  
  
}
a.u-button-style.u-text-palette-1-light-1:hover,
a.u-button-style.u-text-palette-1-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1-light-1:focus,
a.u-button-style.u-text-palette-1-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1-light-1:active,
a.u-button-style.u-button-style.u-text-palette-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1-light-1.active,
a.u-button-style.u-button-style.u-text-palette-1-light-1[class*="u-border-"].active {
  color: #a0bd9b !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-1-light-1,
a.u-button-style:hover > .u-text-hover-palette-1-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1-light-1:hover,
.u-text-hover-palette-1-light-1.u-language-url:hover,
.u-text-hover-palette-1-light-1 .u-language-url:hover,
.u-text-hover-palette-1-light-1.u-carousel-control:hover,
.u-text-hover-palette-1-light-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-1-light-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-1-light-1:hover {
  color: #b6ccb2 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-light-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1-light-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1-light-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-1-light-1.u-active {
  color: #b6ccb2 !important;
}
.u-text-palette-1-light-1 .u-svg-link {
  fill: #b6ccb2;
}
.u-text-hover-palette-1-light-1:hover .u-svg-link,
.u-text-hover-palette-1-light-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1-light-1 .u-svg-link {
  fill: #b6ccb2;
}
.u-text-active-palette-1-light-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-1-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1-light-1 .u-svg-link {
  fill: #b6ccb2;
}
.u-link.u-text-palette-1-light-1:hover {
  color: #a0bd9b !important;
}
a.u-link.u-text-hover-palette-1-light-1:hover {
  color: #b6ccb2 !important;
}
.u-text-palette-1-light-2,
.u-input.u-text-palette-1-light-2,
.u-input.u-text-palette-1-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1-light-2,
li.active > a.u-button-style.u-text-palette-1-light-2[class*="u-border-"],
a.u-button-style.u-text-palette-1-light-2,
a.u-button-style.u-text-palette-1-light-2[class*="u-border-"] {
  color: #d4e2d2 !important;
  
  
  
}
a.u-button-style.u-text-palette-1-light-2:hover,
a.u-button-style.u-text-palette-1-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1-light-2:focus,
a.u-button-style.u-text-palette-1-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1-light-2:active,
a.u-button-style.u-button-style.u-text-palette-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1-light-2.active,
a.u-button-style.u-button-style.u-text-palette-1-light-2[class*="u-border-"].active {
  color: #bbd1b7 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-1-light-2,
a.u-button-style:hover > .u-text-hover-palette-1-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1-light-2:hover,
.u-text-hover-palette-1-light-2.u-language-url:hover,
.u-text-hover-palette-1-light-2 .u-language-url:hover,
.u-text-hover-palette-1-light-2.u-carousel-control:hover,
.u-text-hover-palette-1-light-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-1-light-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-1-light-2:hover {
  color: #d4e2d2 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-light-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1-light-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1-light-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-1-light-2.u-active {
  color: #d4e2d2 !important;
}
.u-text-palette-1-light-2 .u-svg-link {
  fill: #d4e2d2;
}
.u-text-hover-palette-1-light-2:hover .u-svg-link,
.u-text-hover-palette-1-light-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1-light-2 .u-svg-link {
  fill: #d4e2d2;
}
.u-text-active-palette-1-light-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-1-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1-light-2 .u-svg-link {
  fill: #d4e2d2;
}
.u-link.u-text-palette-1-light-2:hover {
  color: #bbd1b7 !important;
}
a.u-link.u-text-hover-palette-1-light-2:hover {
  color: #d4e2d2 !important;
}
.u-text-palette-1-light-3,
.u-input.u-text-palette-1-light-3,
.u-input.u-text-palette-1-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1-light-3,
li.active > a.u-button-style.u-text-palette-1-light-3[class*="u-border-"],
a.u-button-style.u-text-palette-1-light-3,
a.u-button-style.u-text-palette-1-light-3[class*="u-border-"] {
  color: #f4f8f3 !important;
  
  
  
}
a.u-button-style.u-text-palette-1-light-3:hover,
a.u-button-style.u-text-palette-1-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1-light-3:focus,
a.u-button-style.u-text-palette-1-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1-light-3:active,
a.u-button-style.u-button-style.u-text-palette-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1-light-3.active,
a.u-button-style.u-button-style.u-text-palette-1-light-3[class*="u-border-"].active {
  color: #d8e6d4 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-1-light-3,
a.u-button-style:hover > .u-text-hover-palette-1-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1-light-3:hover,
.u-text-hover-palette-1-light-3.u-language-url:hover,
.u-text-hover-palette-1-light-3 .u-language-url:hover,
.u-text-hover-palette-1-light-3.u-carousel-control:hover,
.u-text-hover-palette-1-light-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-1-light-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-1-light-3:hover {
  color: #f4f8f3 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-light-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1-light-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1-light-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-1-light-3.u-active {
  color: #f4f8f3 !important;
}
.u-text-palette-1-light-3 .u-svg-link {
  fill: #f4f8f3;
}
.u-text-hover-palette-1-light-3:hover .u-svg-link,
.u-text-hover-palette-1-light-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1-light-3 .u-svg-link {
  fill: #f4f8f3;
}
.u-text-active-palette-1-light-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-1-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1-light-3 .u-svg-link {
  fill: #f4f8f3;
}
.u-link.u-text-palette-1-light-3:hover {
  color: #d8e6d4 !important;
}
a.u-link.u-text-hover-palette-1-light-3:hover {
  color: #f4f8f3 !important;
}
.u-text-palette-1-base,
.u-input.u-text-palette-1-base,
.u-input.u-text-palette-1-base[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1-base,
li.active > a.u-button-style.u-text-palette-1-base[class*="u-border-"],
a.u-button-style.u-text-palette-1-base,
a.u-button-style.u-text-palette-1-base[class*="u-border-"] {
  color: #658161 !important;
  
  
  
}
a.u-button-style.u-text-palette-1-base:hover,
a.u-button-style.u-text-palette-1-base[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1-base:focus,
a.u-button-style.u-text-palette-1-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1-base:active,
a.u-button-style.u-button-style.u-text-palette-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1-base.active,
a.u-button-style.u-button-style.u-text-palette-1-base[class*="u-border-"].active {
  color: #5b7457 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-1-base,
a.u-button-style:hover > .u-text-hover-palette-1-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1-base:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1-base:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1-base[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1-base:hover,
.u-text-hover-palette-1-base.u-language-url:hover,
.u-text-hover-palette-1-base .u-language-url:hover,
.u-text-hover-palette-1-base.u-carousel-control:hover,
.u-text-hover-palette-1-base.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-1-base .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-1-base:hover {
  color: #658161 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-base,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1-base.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1-base .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-1-base.u-active {
  color: #658161 !important;
}
.u-text-palette-1-base .u-svg-link {
  fill: #658161;
}
.u-text-hover-palette-1-base:hover .u-svg-link,
.u-text-hover-palette-1-base:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1-base .u-svg-link {
  fill: #658161;
}
.u-text-active-palette-1-base:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-1-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1-base .u-svg-link {
  fill: #658161;
}
.u-link.u-text-palette-1-base:hover {
  color: #5b7457 !important;
}
a.u-link.u-text-hover-palette-1-base:hover {
  color: #658161 !important;
}
.u-text-palette-2-dark-3,
.u-input.u-text-palette-2-dark-3,
.u-input.u-text-palette-2-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2-dark-3,
li.active > a.u-button-style.u-text-palette-2-dark-3[class*="u-border-"],
a.u-button-style.u-text-palette-2-dark-3,
a.u-button-style.u-text-palette-2-dark-3[class*="u-border-"] {
  color: #332929 !important;
  
  
  
}
a.u-button-style.u-text-palette-2-dark-3:hover,
a.u-button-style.u-text-palette-2-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2-dark-3:focus,
a.u-button-style.u-text-palette-2-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2-dark-3:active,
a.u-button-style.u-button-style.u-text-palette-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2-dark-3.active,
a.u-button-style.u-button-style.u-text-palette-2-dark-3[class*="u-border-"].active {
  color: #2e2525 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-2-dark-3,
a.u-button-style:hover > .u-text-hover-palette-2-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2-dark-3:hover,
.u-text-hover-palette-2-dark-3.u-language-url:hover,
.u-text-hover-palette-2-dark-3 .u-language-url:hover,
.u-text-hover-palette-2-dark-3.u-carousel-control:hover,
.u-text-hover-palette-2-dark-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-2-dark-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-2-dark-3:hover {
  color: #332929 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2-dark-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2-dark-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-2-dark-3.u-active {
  color: #332929 !important;
}
.u-text-palette-2-dark-3 .u-svg-link {
  fill: #332929;
}
.u-text-hover-palette-2-dark-3:hover .u-svg-link,
.u-text-hover-palette-2-dark-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2-dark-3 .u-svg-link {
  fill: #332929;
}
.u-text-active-palette-2-dark-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-2-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-3 .u-svg-link {
  fill: #332929;
}
.u-link.u-text-palette-2-dark-3:hover {
  color: #2e2525 !important;
}
a.u-link.u-text-hover-palette-2-dark-3:hover {
  color: #332929 !important;
}
.u-text-palette-2-dark-2,
.u-input.u-text-palette-2-dark-2,
.u-input.u-text-palette-2-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2-dark-2,
li.active > a.u-button-style.u-text-palette-2-dark-2[class*="u-border-"],
a.u-button-style.u-text-palette-2-dark-2,
a.u-button-style.u-text-palette-2-dark-2[class*="u-border-"] {
  color: #6b4748 !important;
  
  
  
}
a.u-button-style.u-text-palette-2-dark-2:hover,
a.u-button-style.u-text-palette-2-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2-dark-2:focus,
a.u-button-style.u-text-palette-2-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2-dark-2:active,
a.u-button-style.u-button-style.u-text-palette-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2-dark-2.active,
a.u-button-style.u-button-style.u-text-palette-2-dark-2[class*="u-border-"].active {
  color: #604041 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-2-dark-2,
a.u-button-style:hover > .u-text-hover-palette-2-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2-dark-2:hover,
.u-text-hover-palette-2-dark-2.u-language-url:hover,
.u-text-hover-palette-2-dark-2 .u-language-url:hover,
.u-text-hover-palette-2-dark-2.u-carousel-control:hover,
.u-text-hover-palette-2-dark-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-2-dark-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-2-dark-2:hover {
  color: #6b4748 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2-dark-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2-dark-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-2-dark-2.u-active {
  color: #6b4748 !important;
}
.u-text-palette-2-dark-2 .u-svg-link {
  fill: #6b4748;
}
.u-text-hover-palette-2-dark-2:hover .u-svg-link,
.u-text-hover-palette-2-dark-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2-dark-2 .u-svg-link {
  fill: #6b4748;
}
.u-text-active-palette-2-dark-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-2-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-2 .u-svg-link {
  fill: #6b4748;
}
.u-link.u-text-palette-2-dark-2:hover {
  color: #604041 !important;
}
a.u-link.u-text-hover-palette-2-dark-2:hover {
  color: #6b4748 !important;
}
.u-text-palette-2-dark-1,
.u-input.u-text-palette-2-dark-1,
.u-input.u-text-palette-2-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2-dark-1,
li.active > a.u-button-style.u-text-palette-2-dark-1[class*="u-border-"],
a.u-button-style.u-text-palette-2-dark-1,
a.u-button-style.u-text-palette-2-dark-1[class*="u-border-"] {
  color: #a35559 !important;
  
  
  
}
a.u-button-style.u-text-palette-2-dark-1:hover,
a.u-button-style.u-text-palette-2-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2-dark-1:focus,
a.u-button-style.u-text-palette-2-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2-dark-1:active,
a.u-button-style.u-button-style.u-text-palette-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2-dark-1.active,
a.u-button-style.u-button-style.u-text-palette-2-dark-1[class*="u-border-"].active {
  color: #934c50 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-2-dark-1,
a.u-button-style:hover > .u-text-hover-palette-2-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2-dark-1:hover,
.u-text-hover-palette-2-dark-1.u-language-url:hover,
.u-text-hover-palette-2-dark-1 .u-language-url:hover,
.u-text-hover-palette-2-dark-1.u-carousel-control:hover,
.u-text-hover-palette-2-dark-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-2-dark-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-2-dark-1:hover {
  color: #a35559 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2-dark-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2-dark-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-2-dark-1.u-active {
  color: #a35559 !important;
}
.u-text-palette-2-dark-1 .u-svg-link {
  fill: #a35559;
}
.u-text-hover-palette-2-dark-1:hover .u-svg-link,
.u-text-hover-palette-2-dark-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2-dark-1 .u-svg-link {
  fill: #a35559;
}
.u-text-active-palette-2-dark-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-2-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-1 .u-svg-link {
  fill: #a35559;
}
.u-link.u-text-palette-2-dark-1:hover {
  color: #934c50 !important;
}
a.u-link.u-text-hover-palette-2-dark-1:hover {
  color: #a35559 !important;
}
.u-text-palette-2,
.u-input.u-text-palette-2,
.u-input.u-text-palette-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2,
li.active > a.u-button-style.u-text-palette-2[class*="u-border-"],
a.u-button-style.u-text-palette-2,
a.u-button-style.u-text-palette-2[class*="u-border-"] {
  color: #db545a !important;
  
  
  
}
a.u-button-style.u-text-palette-2:hover,
a.u-button-style.u-text-palette-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2:focus,
a.u-button-style.u-text-palette-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2:active,
a.u-button-style.u-button-style.u-text-palette-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2.active,
a.u-button-style.u-button-style.u-text-palette-2[class*="u-border-"].active {
  color: #d63b42 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-2,
a.u-button-style:hover > .u-text-hover-palette-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2:hover,
.u-text-hover-palette-2.u-language-url:hover,
.u-text-hover-palette-2 .u-language-url:hover,
.u-text-hover-palette-2.u-carousel-control:hover,
.u-text-hover-palette-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-2:hover {
  color: #db545a !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-2.u-active {
  color: #db545a !important;
}
.u-text-palette-2 .u-svg-link {
  fill: #db545a;
}
.u-text-hover-palette-2:hover .u-svg-link,
.u-text-hover-palette-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2 .u-svg-link {
  fill: #db545a;
}
.u-text-active-palette-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2 .u-svg-link {
  fill: #db545a;
}
.u-link.u-text-palette-2:hover {
  color: #d63b42 !important;
}
a.u-link.u-text-hover-palette-2:hover {
  color: #db545a !important;
}
.u-text-palette-2-light-1,
.u-input.u-text-palette-2-light-1,
.u-input.u-text-palette-2-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2-light-1,
li.active > a.u-button-style.u-text-palette-2-light-1[class*="u-border-"],
a.u-button-style.u-text-palette-2-light-1,
a.u-button-style.u-text-palette-2-light-1[class*="u-border-"] {
  color: #e68387 !important;
  
  
  
}
a.u-button-style.u-text-palette-2-light-1:hover,
a.u-button-style.u-text-palette-2-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2-light-1:focus,
a.u-button-style.u-text-palette-2-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2-light-1:active,
a.u-button-style.u-button-style.u-text-palette-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2-light-1.active,
a.u-button-style.u-button-style.u-text-palette-2-light-1[class*="u-border-"].active {
  color: #e0656a !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-2-light-1,
a.u-button-style:hover > .u-text-hover-palette-2-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2-light-1:hover,
.u-text-hover-palette-2-light-1.u-language-url:hover,
.u-text-hover-palette-2-light-1 .u-language-url:hover,
.u-text-hover-palette-2-light-1.u-carousel-control:hover,
.u-text-hover-palette-2-light-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-2-light-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-2-light-1:hover {
  color: #e68387 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-light-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2-light-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2-light-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-2-light-1.u-active {
  color: #e68387 !important;
}
.u-text-palette-2-light-1 .u-svg-link {
  fill: #e68387;
}
.u-text-hover-palette-2-light-1:hover .u-svg-link,
.u-text-hover-palette-2-light-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2-light-1 .u-svg-link {
  fill: #e68387;
}
.u-text-active-palette-2-light-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-2-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2-light-1 .u-svg-link {
  fill: #e68387;
}
.u-link.u-text-palette-2-light-1:hover {
  color: #e0656a !important;
}
a.u-link.u-text-hover-palette-2-light-1:hover {
  color: #e68387 !important;
}
.u-text-palette-2-light-2,
.u-input.u-text-palette-2-light-2,
.u-input.u-text-palette-2-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2-light-2,
li.active > a.u-button-style.u-text-palette-2-light-2[class*="u-border-"],
a.u-button-style.u-text-palette-2-light-2,
a.u-button-style.u-text-palette-2-light-2[class*="u-border-"] {
  color: #f1b5b8 !important;
  
  
  
}
a.u-button-style.u-text-palette-2-light-2:hover,
a.u-button-style.u-text-palette-2-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2-light-2:focus,
a.u-button-style.u-text-palette-2-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2-light-2:active,
a.u-button-style.u-button-style.u-text-palette-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2-light-2.active,
a.u-button-style.u-button-style.u-text-palette-2-light-2[class*="u-border-"].active {
  color: #ea9296 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-2-light-2,
a.u-button-style:hover > .u-text-hover-palette-2-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2-light-2:hover,
.u-text-hover-palette-2-light-2.u-language-url:hover,
.u-text-hover-palette-2-light-2 .u-language-url:hover,
.u-text-hover-palette-2-light-2.u-carousel-control:hover,
.u-text-hover-palette-2-light-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-2-light-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-2-light-2:hover {
  color: #f1b5b8 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-light-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2-light-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2-light-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-2-light-2.u-active {
  color: #f1b5b8 !important;
}
.u-text-palette-2-light-2 .u-svg-link {
  fill: #f1b5b8;
}
.u-text-hover-palette-2-light-2:hover .u-svg-link,
.u-text-hover-palette-2-light-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2-light-2 .u-svg-link {
  fill: #f1b5b8;
}
.u-text-active-palette-2-light-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-2-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2-light-2 .u-svg-link {
  fill: #f1b5b8;
}
.u-link.u-text-palette-2-light-2:hover {
  color: #ea9296 !important;
}
a.u-link.u-text-hover-palette-2-light-2:hover {
  color: #f1b5b8 !important;
}
.u-text-palette-2-light-3,
.u-input.u-text-palette-2-light-3,
.u-input.u-text-palette-2-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2-light-3,
li.active > a.u-button-style.u-text-palette-2-light-3[class*="u-border-"],
a.u-button-style.u-text-palette-2-light-3,
a.u-button-style.u-text-palette-2-light-3[class*="u-border-"] {
  color: #fbeced !important;
  
  
  
}
a.u-button-style.u-text-palette-2-light-3:hover,
a.u-button-style.u-text-palette-2-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2-light-3:focus,
a.u-button-style.u-text-palette-2-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2-light-3:active,
a.u-button-style.u-button-style.u-text-palette-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2-light-3.active,
a.u-button-style.u-button-style.u-text-palette-2-light-3[class*="u-border-"].active {
  color: #f3c4c7 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-2-light-3,
a.u-button-style:hover > .u-text-hover-palette-2-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2-light-3:hover,
.u-text-hover-palette-2-light-3.u-language-url:hover,
.u-text-hover-palette-2-light-3 .u-language-url:hover,
.u-text-hover-palette-2-light-3.u-carousel-control:hover,
.u-text-hover-palette-2-light-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-2-light-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-2-light-3:hover {
  color: #fbeced !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-light-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2-light-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2-light-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-2-light-3.u-active {
  color: #fbeced !important;
}
.u-text-palette-2-light-3 .u-svg-link {
  fill: #fbeced;
}
.u-text-hover-palette-2-light-3:hover .u-svg-link,
.u-text-hover-palette-2-light-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2-light-3 .u-svg-link {
  fill: #fbeced;
}
.u-text-active-palette-2-light-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-2-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2-light-3 .u-svg-link {
  fill: #fbeced;
}
.u-link.u-text-palette-2-light-3:hover {
  color: #f3c4c7 !important;
}
a.u-link.u-text-hover-palette-2-light-3:hover {
  color: #fbeced !important;
}
.u-text-palette-2-base,
.u-input.u-text-palette-2-base,
.u-input.u-text-palette-2-base[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2-base,
li.active > a.u-button-style.u-text-palette-2-base[class*="u-border-"],
a.u-button-style.u-text-palette-2-base,
a.u-button-style.u-text-palette-2-base[class*="u-border-"] {
  color: #db545a !important;
  
  
  
}
a.u-button-style.u-text-palette-2-base:hover,
a.u-button-style.u-text-palette-2-base[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2-base:focus,
a.u-button-style.u-text-palette-2-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2-base:active,
a.u-button-style.u-button-style.u-text-palette-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2-base.active,
a.u-button-style.u-button-style.u-text-palette-2-base[class*="u-border-"].active {
  color: #d63b42 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-2-base,
a.u-button-style:hover > .u-text-hover-palette-2-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2-base:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2-base:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2-base[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2-base:hover,
.u-text-hover-palette-2-base.u-language-url:hover,
.u-text-hover-palette-2-base .u-language-url:hover,
.u-text-hover-palette-2-base.u-carousel-control:hover,
.u-text-hover-palette-2-base.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-2-base .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-2-base:hover {
  color: #db545a !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-base,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2-base.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2-base .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-2-base.u-active {
  color: #db545a !important;
}
.u-text-palette-2-base .u-svg-link {
  fill: #db545a;
}
.u-text-hover-palette-2-base:hover .u-svg-link,
.u-text-hover-palette-2-base:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2-base .u-svg-link {
  fill: #db545a;
}
.u-text-active-palette-2-base:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-2-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2-base .u-svg-link {
  fill: #db545a;
}
.u-link.u-text-palette-2-base:hover {
  color: #d63b42 !important;
}
a.u-link.u-text-hover-palette-2-base:hover {
  color: #db545a !important;
}
.u-text-palette-3-dark-3,
.u-input.u-text-palette-3-dark-3,
.u-input.u-text-palette-3-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3-dark-3,
li.active > a.u-button-style.u-text-palette-3-dark-3[class*="u-border-"],
a.u-button-style.u-text-palette-3-dark-3,
a.u-button-style.u-text-palette-3-dark-3[class*="u-border-"] {
  color: var(--color-text-medium)129 !important;
  
  
  
}
a.u-button-style.u-text-palette-3-dark-3:hover,
a.u-button-style.u-text-palette-3-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3-dark-3:focus,
a.u-button-style.u-text-palette-3-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3-dark-3:active,
a.u-button-style.u-button-style.u-text-palette-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3-dark-3.active,
a.u-button-style.u-button-style.u-text-palette-3-dark-3[class*="u-border-"].active {
  color: #2e2c25 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-3-dark-3,
a.u-button-style:hover > .u-text-hover-palette-3-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3-dark-3:hover,
.u-text-hover-palette-3-dark-3.u-language-url:hover,
.u-text-hover-palette-3-dark-3 .u-language-url:hover,
.u-text-hover-palette-3-dark-3.u-carousel-control:hover,
.u-text-hover-palette-3-dark-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-3-dark-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-3-dark-3:hover {
  color: var(--color-text-medium)129 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3-dark-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3-dark-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-3-dark-3.u-active {
  color: var(--color-text-medium)129 !important;
}
.u-text-palette-3-dark-3 .u-svg-link {
  fill: var(--color-text-medium)129;
}
.u-text-hover-palette-3-dark-3:hover .u-svg-link,
.u-text-hover-palette-3-dark-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3-dark-3 .u-svg-link {
  fill: var(--color-text-medium)129;
}
.u-text-active-palette-3-dark-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-3-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-3 .u-svg-link {
  fill: var(--color-text-medium)129;
}
.u-link.u-text-palette-3-dark-3:hover {
  color: #2e2c25 !important;
}
a.u-link.u-text-hover-palette-3-dark-3:hover {
  color: var(--color-text-medium)129 !important;
}
.u-text-palette-3-dark-2,
.u-input.u-text-palette-3-dark-2,
.u-input.u-text-palette-3-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3-dark-2,
li.active > a.u-button-style.u-text-palette-3-dark-2[class*="u-border-"],
a.u-button-style.u-text-palette-3-dark-2,
a.u-button-style.u-text-palette-3-dark-2[class*="u-border-"] {
  color: #72683f !important;
  
  
  
}
a.u-button-style.u-text-palette-3-dark-2:hover,
a.u-button-style.u-text-palette-3-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3-dark-2:focus,
a.u-button-style.u-text-palette-3-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3-dark-2:active,
a.u-button-style.u-button-style.u-text-palette-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3-dark-2.active,
a.u-button-style.u-button-style.u-text-palette-3-dark-2[class*="u-border-"].active {
  color: #675e39 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-3-dark-2,
a.u-button-style:hover > .u-text-hover-palette-3-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3-dark-2:hover,
.u-text-hover-palette-3-dark-2.u-language-url:hover,
.u-text-hover-palette-3-dark-2 .u-language-url:hover,
.u-text-hover-palette-3-dark-2.u-carousel-control:hover,
.u-text-hover-palette-3-dark-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-3-dark-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-3-dark-2:hover {
  color: #72683f !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3-dark-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3-dark-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-3-dark-2.u-active {
  color: #72683f !important;
}
.u-text-palette-3-dark-2 .u-svg-link {
  fill: #72683f;
}
.u-text-hover-palette-3-dark-2:hover .u-svg-link,
.u-text-hover-palette-3-dark-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3-dark-2 .u-svg-link {
  fill: #72683f;
}
.u-text-active-palette-3-dark-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-3-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-2 .u-svg-link {
  fill: #72683f;
}
.u-link.u-text-palette-3-dark-2:hover {
  color: #675e39 !important;
}
a.u-link.u-text-hover-palette-3-dark-2:hover {
  color: #72683f !important;
}
.u-text-palette-3-dark-1,
.u-input.u-text-palette-3-dark-1,
.u-input.u-text-palette-3-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3-dark-1,
li.active > a.u-button-style.u-text-palette-3-dark-1[class*="u-border-"],
a.u-button-style.u-text-palette-3-dark-1,
a.u-button-style.u-text-palette-3-dark-1[class*="u-border-"] {
  color: #b29a36 !important;
  
  
  
}
a.u-button-style.u-text-palette-3-dark-1:hover,
a.u-button-style.u-text-palette-3-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3-dark-1:focus,
a.u-button-style.u-text-palette-3-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3-dark-1:active,
a.u-button-style.u-button-style.u-text-palette-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3-dark-1.active,
a.u-button-style.u-button-style.u-text-palette-3-dark-1[class*="u-border-"].active {
  color: #a08b31 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-3-dark-1,
a.u-button-style:hover > .u-text-hover-palette-3-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3-dark-1:hover,
.u-text-hover-palette-3-dark-1.u-language-url:hover,
.u-text-hover-palette-3-dark-1 .u-language-url:hover,
.u-text-hover-palette-3-dark-1.u-carousel-control:hover,
.u-text-hover-palette-3-dark-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-3-dark-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-3-dark-1:hover {
  color: #b29a36 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3-dark-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3-dark-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-3-dark-1.u-active {
  color: #b29a36 !important;
}
.u-text-palette-3-dark-1 .u-svg-link {
  fill: #b29a36;
}
.u-text-hover-palette-3-dark-1:hover .u-svg-link,
.u-text-hover-palette-3-dark-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3-dark-1 .u-svg-link {
  fill: #b29a36;
}
.u-text-active-palette-3-dark-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-3-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-1 .u-svg-link {
  fill: #b29a36;
}
.u-link.u-text-palette-3-dark-1:hover {
  color: #a08b31 !important;
}
a.u-link.u-text-hover-palette-3-dark-1:hover {
  color: #b29a36 !important;
}
.u-text-palette-3,
.u-input.u-text-palette-3,
.u-input.u-text-palette-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3,
li.active > a.u-button-style.u-text-palette-3[class*="u-border-"],
a.u-button-style.u-text-palette-3,
a.u-button-style.u-text-palette-3[class*="u-border-"] {
  color: #f1c50e !important;
  
  
  
}
a.u-button-style.u-text-palette-3:hover,
a.u-button-style.u-text-palette-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3:focus,
a.u-button-style.u-text-palette-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3:active,
a.u-button-style.u-button-style.u-text-palette-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3.active,
a.u-button-style.u-button-style.u-text-palette-3[class*="u-border-"].active {
  color: #d9b10d !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-3,
a.u-button-style:hover > .u-text-hover-palette-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3:hover,
.u-text-hover-palette-3.u-language-url:hover,
.u-text-hover-palette-3 .u-language-url:hover,
.u-text-hover-palette-3.u-carousel-control:hover,
.u-text-hover-palette-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-3:hover {
  color: #f1c50e !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-3.u-active {
  color: #f1c50e !important;
}
.u-text-palette-3 .u-svg-link {
  fill: #f1c50e;
}
.u-text-hover-palette-3:hover .u-svg-link,
.u-text-hover-palette-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3 .u-svg-link {
  fill: #f1c50e;
}
.u-text-active-palette-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3 .u-svg-link {
  fill: #f1c50e;
}
.u-link.u-text-palette-3:hover {
  color: #d9b10d !important;
}
a.u-link.u-text-hover-palette-3:hover {
  color: #f1c50e !important;
}
.u-text-palette-3-light-1,
.u-input.u-text-palette-3-light-1,
.u-input.u-text-palette-3-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3-light-1,
li.active > a.u-button-style.u-text-palette-3-light-1[class*="u-border-"],
a.u-button-style.u-text-palette-3-light-1,
a.u-button-style.u-text-palette-3-light-1[class*="u-border-"] {
  color: #f5d654 !important;
  
  
  
}
a.u-button-style.u-text-palette-3-light-1:hover,
a.u-button-style.u-text-palette-3-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3-light-1:focus,
a.u-button-style.u-text-palette-3-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3-light-1:active,
a.u-button-style.u-button-style.u-text-palette-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3-light-1.active,
a.u-button-style.u-button-style.u-text-palette-3-light-1[class*="u-border-"].active {
  color: #f3cf35 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-3-light-1,
a.u-button-style:hover > .u-text-hover-palette-3-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3-light-1:hover,
.u-text-hover-palette-3-light-1.u-language-url:hover,
.u-text-hover-palette-3-light-1 .u-language-url:hover,
.u-text-hover-palette-3-light-1.u-carousel-control:hover,
.u-text-hover-palette-3-light-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-3-light-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-3-light-1:hover {
  color: #f5d654 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-light-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3-light-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3-light-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-3-light-1.u-active {
  color: #f5d654 !important;
}
.u-text-palette-3-light-1 .u-svg-link {
  fill: #f5d654;
}
.u-text-hover-palette-3-light-1:hover .u-svg-link,
.u-text-hover-palette-3-light-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3-light-1 .u-svg-link {
  fill: #f5d654;
}
.u-text-active-palette-3-light-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-3-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3-light-1 .u-svg-link {
  fill: #f5d654;
}
.u-link.u-text-palette-3-light-1:hover {
  color: #f3cf35 !important;
}
a.u-link.u-text-hover-palette-3-light-1:hover {
  color: #f5d654 !important;
}
.u-text-palette-3-light-2,
.u-input.u-text-palette-3-light-2,
.u-input.u-text-palette-3-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3-light-2,
li.active > a.u-button-style.u-text-palette-3-light-2[class*="u-border-"],
a.u-button-style.u-text-palette-3-light-2,
a.u-button-style.u-text-palette-3-light-2[class*="u-border-"] {
  color: #f9e79b !important;
  
  
  
}
a.u-button-style.u-text-palette-3-light-2:hover,
a.u-button-style.u-text-palette-3-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3-light-2:focus,
a.u-button-style.u-text-palette-3-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3-light-2:active,
a.u-button-style.u-button-style.u-text-palette-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3-light-2.active,
a.u-button-style.u-button-style.u-text-palette-3-light-2[class*="u-border-"].active {
  color: #f7de75 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-3-light-2,
a.u-button-style:hover > .u-text-hover-palette-3-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3-light-2:hover,
.u-text-hover-palette-3-light-2.u-language-url:hover,
.u-text-hover-palette-3-light-2 .u-language-url:hover,
.u-text-hover-palette-3-light-2.u-carousel-control:hover,
.u-text-hover-palette-3-light-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-3-light-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-3-light-2:hover {
  color: #f9e79b !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-light-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3-light-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3-light-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-3-light-2.u-active {
  color: #f9e79b !important;
}
.u-text-palette-3-light-2 .u-svg-link {
  fill: #f9e79b;
}
.u-text-hover-palette-3-light-2:hover .u-svg-link,
.u-text-hover-palette-3-light-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3-light-2 .u-svg-link {
  fill: #f9e79b;
}
.u-text-active-palette-3-light-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-3-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3-light-2 .u-svg-link {
  fill: #f9e79b;
}
.u-link.u-text-palette-3-light-2:hover {
  color: #f7de75 !important;
}
a.u-link.u-text-hover-palette-3-light-2:hover {
  color: #f9e79b !important;
}
.u-text-palette-3-light-3,
.u-input.u-text-palette-3-light-3,
.u-input.u-text-palette-3-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3-light-3,
li.active > a.u-button-style.u-text-palette-3-light-3[class*="u-border-"],
a.u-button-style.u-text-palette-3-light-3,
a.u-button-style.u-text-palette-3-light-3[class*="u-border-"] {
  color: #fef9e6 !important;
  
  
  
}
a.u-button-style.u-text-palette-3-light-3:hover,
a.u-button-style.u-text-palette-3-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3-light-3:focus,
a.u-button-style.u-text-palette-3-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3-light-3:active,
a.u-button-style.u-button-style.u-text-palette-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3-light-3.active,
a.u-button-style.u-button-style.u-text-palette-3-light-3[class*="u-border-"].active {
  color: #fceeb7 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-3-light-3,
a.u-button-style:hover > .u-text-hover-palette-3-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3-light-3:hover,
.u-text-hover-palette-3-light-3.u-language-url:hover,
.u-text-hover-palette-3-light-3 .u-language-url:hover,
.u-text-hover-palette-3-light-3.u-carousel-control:hover,
.u-text-hover-palette-3-light-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-3-light-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-3-light-3:hover {
  color: #fef9e6 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-light-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3-light-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3-light-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-3-light-3.u-active {
  color: #fef9e6 !important;
}
.u-text-palette-3-light-3 .u-svg-link {
  fill: #fef9e6;
}
.u-text-hover-palette-3-light-3:hover .u-svg-link,
.u-text-hover-palette-3-light-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3-light-3 .u-svg-link {
  fill: #fef9e6;
}
.u-text-active-palette-3-light-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-3-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3-light-3 .u-svg-link {
  fill: #fef9e6;
}
.u-link.u-text-palette-3-light-3:hover {
  color: #fceeb7 !important;
}
a.u-link.u-text-hover-palette-3-light-3:hover {
  color: #fef9e6 !important;
}
.u-text-palette-3-base,
.u-input.u-text-palette-3-base,
.u-input.u-text-palette-3-base[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3-base,
li.active > a.u-button-style.u-text-palette-3-base[class*="u-border-"],
a.u-button-style.u-text-palette-3-base,
a.u-button-style.u-text-palette-3-base[class*="u-border-"] {
  color: #f1c50e !important;
  
  
  
}
a.u-button-style.u-text-palette-3-base:hover,
a.u-button-style.u-text-palette-3-base[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3-base:focus,
a.u-button-style.u-text-palette-3-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3-base:active,
a.u-button-style.u-button-style.u-text-palette-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3-base.active,
a.u-button-style.u-button-style.u-text-palette-3-base[class*="u-border-"].active {
  color: #d9b10d !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-3-base,
a.u-button-style:hover > .u-text-hover-palette-3-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3-base:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3-base:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3-base[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3-base:hover,
.u-text-hover-palette-3-base.u-language-url:hover,
.u-text-hover-palette-3-base .u-language-url:hover,
.u-text-hover-palette-3-base.u-carousel-control:hover,
.u-text-hover-palette-3-base.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-3-base .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-3-base:hover {
  color: #f1c50e !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-base,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3-base.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3-base .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-3-base.u-active {
  color: #f1c50e !important;
}
.u-text-palette-3-base .u-svg-link {
  fill: #f1c50e;
}
.u-text-hover-palette-3-base:hover .u-svg-link,
.u-text-hover-palette-3-base:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3-base .u-svg-link {
  fill: #f1c50e;
}
.u-text-active-palette-3-base:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-3-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3-base .u-svg-link {
  fill: #f1c50e;
}
.u-link.u-text-palette-3-base:hover {
  color: #d9b10d !important;
}
a.u-link.u-text-hover-palette-3-base:hover {
  color: #f1c50e !important;
}
.u-text-palette-4-dark-3,
.u-input.u-text-palette-4-dark-3,
.u-input.u-text-palette-4-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4-dark-3,
li.active > a.u-button-style.u-text-palette-4-dark-3[class*="u-border-"],
a.u-button-style.u-text-palette-4-dark-3,
a.u-button-style.u-text-palette-4-dark-3[class*="u-border-"] {
  color: #293332 !important;
  
  
  
}
a.u-button-style.u-text-palette-4-dark-3:hover,
a.u-button-style.u-text-palette-4-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4-dark-3:focus,
a.u-button-style.u-text-palette-4-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4-dark-3:active,
a.u-button-style.u-button-style.u-text-palette-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4-dark-3.active,
a.u-button-style.u-button-style.u-text-palette-4-dark-3[class*="u-border-"].active {
  color: #252e2d !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-4-dark-3,
a.u-button-style:hover > .u-text-hover-palette-4-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4-dark-3:hover,
.u-text-hover-palette-4-dark-3.u-language-url:hover,
.u-text-hover-palette-4-dark-3 .u-language-url:hover,
.u-text-hover-palette-4-dark-3.u-carousel-control:hover,
.u-text-hover-palette-4-dark-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-4-dark-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-4-dark-3:hover {
  color: #293332 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4-dark-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4-dark-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-4-dark-3.u-active {
  color: #293332 !important;
}
.u-text-palette-4-dark-3 .u-svg-link {
  fill: #293332;
}
.u-text-hover-palette-4-dark-3:hover .u-svg-link,
.u-text-hover-palette-4-dark-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4-dark-3 .u-svg-link {
  fill: #293332;
}
.u-text-active-palette-4-dark-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-4-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-3 .u-svg-link {
  fill: #293332;
}
.u-link.u-text-palette-4-dark-3:hover {
  color: #252e2d !important;
}
a.u-link.u-text-hover-palette-4-dark-3:hover {
  color: #293332 !important;
}
.u-text-palette-4-dark-2,
.u-input.u-text-palette-4-dark-2,
.u-input.u-text-palette-4-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4-dark-2,
li.active > a.u-button-style.u-text-palette-4-dark-2[class*="u-border-"],
a.u-button-style.u-text-palette-4-dark-2,
a.u-button-style.u-text-palette-4-dark-2[class*="u-border-"] {
  color: #41807c !important;
  
  
  
}
a.u-button-style.u-text-palette-4-dark-2:hover,
a.u-button-style.u-text-palette-4-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4-dark-2:focus,
a.u-button-style.u-text-palette-4-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4-dark-2:active,
a.u-button-style.u-button-style.u-text-palette-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4-dark-2.active,
a.u-button-style.u-button-style.u-text-palette-4-dark-2[class*="u-border-"].active {
  color: #3a7370 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-4-dark-2,
a.u-button-style:hover > .u-text-hover-palette-4-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4-dark-2:hover,
.u-text-hover-palette-4-dark-2.u-language-url:hover,
.u-text-hover-palette-4-dark-2 .u-language-url:hover,
.u-text-hover-palette-4-dark-2.u-carousel-control:hover,
.u-text-hover-palette-4-dark-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-4-dark-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-4-dark-2:hover {
  color: #41807c !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4-dark-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4-dark-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-4-dark-2.u-active {
  color: #41807c !important;
}
.u-text-palette-4-dark-2 .u-svg-link {
  fill: #41807c;
}
.u-text-hover-palette-4-dark-2:hover .u-svg-link,
.u-text-hover-palette-4-dark-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4-dark-2 .u-svg-link {
  fill: #41807c;
}
.u-text-active-palette-4-dark-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-4-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-2 .u-svg-link {
  fill: #41807c;
}
.u-link.u-text-palette-4-dark-2:hover {
  color: #3a7370 !important;
}
a.u-link.u-text-hover-palette-4-dark-2:hover {
  color: #41807c !important;
}
.u-text-palette-4-dark-1,
.u-input.u-text-palette-4-dark-1,
.u-input.u-text-palette-4-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4-dark-1,
li.active > a.u-button-style.u-text-palette-4-dark-1[class*="u-border-"],
a.u-button-style.u-text-palette-4-dark-1,
a.u-button-style.u-text-palette-4-dark-1[class*="u-border-"] {
  color: #2cccc4 !important;
  
  
  
}
a.u-button-style.u-text-palette-4-dark-1:hover,
a.u-button-style.u-text-palette-4-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4-dark-1:focus,
a.u-button-style.u-text-palette-4-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4-dark-1:active,
a.u-button-style.u-button-style.u-text-palette-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4-dark-1.active,
a.u-button-style.u-button-style.u-text-palette-4-dark-1[class*="u-border-"].active {
  color: #28b8b0 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-4-dark-1,
a.u-button-style:hover > .u-text-hover-palette-4-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4-dark-1:hover,
.u-text-hover-palette-4-dark-1.u-language-url:hover,
.u-text-hover-palette-4-dark-1 .u-language-url:hover,
.u-text-hover-palette-4-dark-1.u-carousel-control:hover,
.u-text-hover-palette-4-dark-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-4-dark-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-4-dark-1:hover {
  color: #2cccc4 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4-dark-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4-dark-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-4-dark-1.u-active {
  color: #2cccc4 !important;
}
.u-text-palette-4-dark-1 .u-svg-link {
  fill: #2cccc4;
}
.u-text-hover-palette-4-dark-1:hover .u-svg-link,
.u-text-hover-palette-4-dark-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4-dark-1 .u-svg-link {
  fill: #2cccc4;
}
.u-text-active-palette-4-dark-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-4-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-1 .u-svg-link {
  fill: #2cccc4;
}
.u-link.u-text-palette-4-dark-1:hover {
  color: #28b8b0 !important;
}
a.u-link.u-text-hover-palette-4-dark-1:hover {
  color: #2cccc4 !important;
}
.u-text-palette-4,
.u-input.u-text-palette-4,
.u-input.u-text-palette-4[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4,
li.active > a.u-button-style.u-text-palette-4[class*="u-border-"],
a.u-button-style.u-text-palette-4,
a.u-button-style.u-text-palette-4[class*="u-border-"] {
  color: #3be8e0 !important;
  
  
  
}
a.u-button-style.u-text-palette-4:hover,
a.u-button-style.u-text-palette-4[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4:focus,
a.u-button-style.u-text-palette-4[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4:active,
a.u-button-style.u-button-style.u-text-palette-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4.active,
a.u-button-style.u-button-style.u-text-palette-4[class*="u-border-"].active {
  color: #21e5dc !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-4,
a.u-button-style:hover > .u-text-hover-palette-4[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4:hover,
.u-text-hover-palette-4.u-language-url:hover,
.u-text-hover-palette-4 .u-language-url:hover,
.u-text-hover-palette-4.u-carousel-control:hover,
.u-text-hover-palette-4.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-4 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-4:hover {
  color: #3be8e0 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4,
a.u-button-style.u-button-style.active > .u-text-active-palette-4[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-4.u-active {
  color: #3be8e0 !important;
}
.u-text-palette-4 .u-svg-link {
  fill: #3be8e0;
}
.u-text-hover-palette-4:hover .u-svg-link,
.u-text-hover-palette-4:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4 .u-svg-link {
  fill: #3be8e0;
}
.u-text-active-palette-4:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-4 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4 .u-svg-link {
  fill: #3be8e0;
}
.u-link.u-text-palette-4:hover {
  color: #21e5dc !important;
}
a.u-link.u-text-hover-palette-4:hover {
  color: #3be8e0 !important;
}
.u-text-palette-4-light-1,
.u-input.u-text-palette-4-light-1,
.u-input.u-text-palette-4-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4-light-1,
li.active > a.u-button-style.u-text-palette-4-light-1[class*="u-border-"],
a.u-button-style.u-text-palette-4-light-1,
a.u-button-style.u-text-palette-4-light-1[class*="u-border-"] {
  color: #72efe9 !important;
  
  
  
}
a.u-button-style.u-text-palette-4-light-1:hover,
a.u-button-style.u-text-palette-4-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4-light-1:focus,
a.u-button-style.u-text-palette-4-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4-light-1:active,
a.u-button-style.u-button-style.u-text-palette-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4-light-1.active,
a.u-button-style.u-button-style.u-text-palette-4-light-1[class*="u-border-"].active {
  color: #52ebe4 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-4-light-1,
a.u-button-style:hover > .u-text-hover-palette-4-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4-light-1:hover,
.u-text-hover-palette-4-light-1.u-language-url:hover,
.u-text-hover-palette-4-light-1 .u-language-url:hover,
.u-text-hover-palette-4-light-1.u-carousel-control:hover,
.u-text-hover-palette-4-light-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-4-light-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-4-light-1:hover {
  color: #72efe9 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-light-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4-light-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4-light-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-4-light-1.u-active {
  color: #72efe9 !important;
}
.u-text-palette-4-light-1 .u-svg-link {
  fill: #72efe9;
}
.u-text-hover-palette-4-light-1:hover .u-svg-link,
.u-text-hover-palette-4-light-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4-light-1 .u-svg-link {
  fill: #72efe9;
}
.u-text-active-palette-4-light-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-4-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4-light-1 .u-svg-link {
  fill: #72efe9;
}
.u-link.u-text-palette-4-light-1:hover {
  color: #52ebe4 !important;
}
a.u-link.u-text-hover-palette-4-light-1:hover {
  color: #72efe9 !important;
}
.u-text-palette-4-light-2,
.u-input.u-text-palette-4-light-2,
.u-input.u-text-palette-4-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4-light-2,
li.active > a.u-button-style.u-text-palette-4-light-2[class*="u-border-"],
a.u-button-style.u-text-palette-4-light-2,
a.u-button-style.u-text-palette-4-light-2[class*="u-border-"] {
  color: #adf6f2 !important;
  
  
  
}
a.u-button-style.u-text-palette-4-light-2:hover,
a.u-button-style.u-text-palette-4-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4-light-2:focus,
a.u-button-style.u-text-palette-4-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4-light-2:active,
a.u-button-style.u-button-style.u-text-palette-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4-light-2.active,
a.u-button-style.u-button-style.u-text-palette-4-light-2[class*="u-border-"].active {
  color: #87f2ec !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-4-light-2,
a.u-button-style:hover > .u-text-hover-palette-4-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4-light-2:hover,
.u-text-hover-palette-4-light-2.u-language-url:hover,
.u-text-hover-palette-4-light-2 .u-language-url:hover,
.u-text-hover-palette-4-light-2.u-carousel-control:hover,
.u-text-hover-palette-4-light-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-4-light-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-4-light-2:hover {
  color: #adf6f2 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-light-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4-light-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4-light-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-4-light-2.u-active {
  color: #adf6f2 !important;
}
.u-text-palette-4-light-2 .u-svg-link {
  fill: #adf6f2;
}
.u-text-hover-palette-4-light-2:hover .u-svg-link,
.u-text-hover-palette-4-light-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4-light-2 .u-svg-link {
  fill: #adf6f2;
}
.u-text-active-palette-4-light-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-4-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4-light-2 .u-svg-link {
  fill: #adf6f2;
}
.u-link.u-text-palette-4-light-2:hover {
  color: #87f2ec !important;
}
a.u-link.u-text-hover-palette-4-light-2:hover {
  color: #adf6f2 !important;
}
.u-text-palette-4-light-3,
.u-input.u-text-palette-4-light-3,
.u-input.u-text-palette-4-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4-light-3,
li.active > a.u-button-style.u-text-palette-4-light-3[class*="u-border-"],
a.u-button-style.u-text-palette-4-light-3,
a.u-button-style.u-text-palette-4-light-3[class*="u-border-"] {
  color: #eafdfc !important;
  
  
  
}
a.u-button-style.u-text-palette-4-light-3:hover,
a.u-button-style.u-text-palette-4-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4-light-3:focus,
a.u-button-style.u-text-palette-4-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4-light-3:active,
a.u-button-style.u-button-style.u-text-palette-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4-light-3.active,
a.u-button-style.u-button-style.u-text-palette-4-light-3[class*="u-border-"].active {
  color: #bef9f6 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-4-light-3,
a.u-button-style:hover > .u-text-hover-palette-4-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4-light-3:hover,
.u-text-hover-palette-4-light-3.u-language-url:hover,
.u-text-hover-palette-4-light-3 .u-language-url:hover,
.u-text-hover-palette-4-light-3.u-carousel-control:hover,
.u-text-hover-palette-4-light-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-4-light-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-4-light-3:hover {
  color: #eafdfc !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-light-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4-light-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4-light-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-4-light-3.u-active {
  color: #eafdfc !important;
}
.u-text-palette-4-light-3 .u-svg-link {
  fill: #eafdfc;
}
.u-text-hover-palette-4-light-3:hover .u-svg-link,
.u-text-hover-palette-4-light-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4-light-3 .u-svg-link {
  fill: #eafdfc;
}
.u-text-active-palette-4-light-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-4-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4-light-3 .u-svg-link {
  fill: #eafdfc;
}
.u-link.u-text-palette-4-light-3:hover {
  color: #bef9f6 !important;
}
a.u-link.u-text-hover-palette-4-light-3:hover {
  color: #eafdfc !important;
}
.u-text-palette-4-base,
.u-input.u-text-palette-4-base,
.u-input.u-text-palette-4-base[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4-base,
li.active > a.u-button-style.u-text-palette-4-base[class*="u-border-"],
a.u-button-style.u-text-palette-4-base,
a.u-button-style.u-text-palette-4-base[class*="u-border-"] {
  color: #2cccc4 !important;
  
  
  
}
a.u-button-style.u-text-palette-4-base:hover,
a.u-button-style.u-text-palette-4-base[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4-base:focus,
a.u-button-style.u-text-palette-4-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4-base:active,
a.u-button-style.u-button-style.u-text-palette-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4-base.active,
a.u-button-style.u-button-style.u-text-palette-4-base[class*="u-border-"].active {
  color: #28b8b0 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-4-base,
a.u-button-style:hover > .u-text-hover-palette-4-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4-base:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4-base:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4-base[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4-base:hover,
.u-text-hover-palette-4-base.u-language-url:hover,
.u-text-hover-palette-4-base .u-language-url:hover,
.u-text-hover-palette-4-base.u-carousel-control:hover,
.u-text-hover-palette-4-base.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-4-base .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-4-base:hover {
  color: #2cccc4 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-base,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4-base.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4-base .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-4-base.u-active {
  color: #2cccc4 !important;
}
.u-text-palette-4-base .u-svg-link {
  fill: #2cccc4;
}
.u-text-hover-palette-4-base:hover .u-svg-link,
.u-text-hover-palette-4-base:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4-base .u-svg-link {
  fill: #2cccc4;
}
.u-text-active-palette-4-base:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-4-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4-base .u-svg-link {
  fill: #2cccc4;
}
.u-link.u-text-palette-4-base:hover {
  color: #28b8b0 !important;
}
a.u-link.u-text-hover-palette-4-base:hover {
  color: #2cccc4 !important;
}
.u-text-palette-5-dark-3,
.u-input.u-text-palette-5-dark-3,
.u-input.u-text-palette-5-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5-dark-3,
li.active > a.u-button-style.u-text-palette-5-dark-3[class*="u-border-"],
a.u-button-style.u-text-palette-5-dark-3,
a.u-button-style.u-text-palette-5-dark-3[class*="u-border-"] {
  color: #292d33 !important;
  
  
  
}
a.u-button-style.u-text-palette-5-dark-3:hover,
a.u-button-style.u-text-palette-5-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5-dark-3:focus,
a.u-button-style.u-text-palette-5-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5-dark-3:active,
a.u-button-style.u-button-style.u-text-palette-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5-dark-3.active,
a.u-button-style.u-button-style.u-text-palette-5-dark-3[class*="u-border-"].active {
  color: #25292e !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-5-dark-3,
a.u-button-style:hover > .u-text-hover-palette-5-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5-dark-3:hover,
.u-text-hover-palette-5-dark-3.u-language-url:hover,
.u-text-hover-palette-5-dark-3 .u-language-url:hover,
.u-text-hover-palette-5-dark-3.u-carousel-control:hover,
.u-text-hover-palette-5-dark-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-5-dark-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-5-dark-3:hover {
  color: #292d33 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5-dark-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5-dark-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-5-dark-3.u-active {
  color: #292d33 !important;
}
.u-text-palette-5-dark-3 .u-svg-link {
  fill: #292d33;
}
.u-text-hover-palette-5-dark-3:hover .u-svg-link,
.u-text-hover-palette-5-dark-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5-dark-3 .u-svg-link {
  fill: #292d33;
}
.u-text-active-palette-5-dark-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-5-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-3 .u-svg-link {
  fill: #292d33;
}
.u-link.u-text-palette-5-dark-3:hover {
  color: #25292e !important;
}
a.u-link.u-text-hover-palette-5-dark-3:hover {
  color: #292d33 !important;
}
.u-text-palette-5-dark-2,
.u-input.u-text-palette-5-dark-2,
.u-input.u-text-palette-5-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5-dark-2,
li.active > a.u-button-style.u-text-palette-5-dark-2[class*="u-border-"],
a.u-button-style.u-text-palette-5-dark-2,
a.u-button-style.u-text-palette-5-dark-2[class*="u-border-"] {
  color: var(--color-darkest-gray)c66 !important;
  
  
  
}
a.u-button-style.u-text-palette-5-dark-2:hover,
a.u-button-style.u-text-palette-5-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5-dark-2:focus,
a.u-button-style.u-text-palette-5-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5-dark-2:active,
a.u-button-style.u-button-style.u-text-palette-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5-dark-2.active,
a.u-button-style.u-button-style.u-text-palette-5-dark-2[class*="u-border-"].active {
  color: #4d535c !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-5-dark-2,
a.u-button-style:hover > .u-text-hover-palette-5-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5-dark-2:hover,
.u-text-hover-palette-5-dark-2.u-language-url:hover,
.u-text-hover-palette-5-dark-2 .u-language-url:hover,
.u-text-hover-palette-5-dark-2.u-carousel-control:hover,
.u-text-hover-palette-5-dark-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-5-dark-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-5-dark-2:hover {
  color: var(--color-darkest-gray)c66 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5-dark-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5-dark-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-5-dark-2.u-active {
  color: var(--color-darkest-gray)c66 !important;
}
.u-text-palette-5-dark-2 .u-svg-link {
  fill: var(--color-darkest-gray)c66;
}
.u-text-hover-palette-5-dark-2:hover .u-svg-link,
.u-text-hover-palette-5-dark-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5-dark-2 .u-svg-link {
  fill: var(--color-darkest-gray)c66;
}
.u-text-active-palette-5-dark-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-5-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-2 .u-svg-link {
  fill: var(--color-darkest-gray)c66;
}
.u-link.u-text-palette-5-dark-2:hover {
  color: #4d535c !important;
}
a.u-link.u-text-hover-palette-5-dark-2:hover {
  color: var(--color-darkest-gray)c66 !important;
}
.u-text-palette-5-dark-1,
.u-input.u-text-palette-5-dark-1,
.u-input.u-text-palette-5-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5-dark-1,
li.active > a.u-button-style.u-text-palette-5-dark-1[class*="u-border-"],
a.u-button-style.u-text-palette-5-dark-1,
a.u-button-style.u-text-palette-5-dark-1[class*="u-border-"] {
  color: #858e99 !important;
  
  
  
}
a.u-button-style.u-text-palette-5-dark-1:hover,
a.u-button-style.u-text-palette-5-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5-dark-1:focus,
a.u-button-style.u-text-palette-5-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5-dark-1:active,
a.u-button-style.u-button-style.u-text-palette-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5-dark-1.active,
a.u-button-style.u-button-style.u-text-palette-5-dark-1[class*="u-border-"].active {
  color: #75808c !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-5-dark-1,
a.u-button-style:hover > .u-text-hover-palette-5-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5-dark-1:hover,
.u-text-hover-palette-5-dark-1.u-language-url:hover,
.u-text-hover-palette-5-dark-1 .u-language-url:hover,
.u-text-hover-palette-5-dark-1.u-carousel-control:hover,
.u-text-hover-palette-5-dark-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-5-dark-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-5-dark-1:hover {
  color: #858e99 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5-dark-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5-dark-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-5-dark-1.u-active {
  color: #858e99 !important;
}
.u-text-palette-5-dark-1 .u-svg-link {
  fill: #858e99;
}
.u-text-hover-palette-5-dark-1:hover .u-svg-link,
.u-text-hover-palette-5-dark-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5-dark-1 .u-svg-link {
  fill: #858e99;
}
.u-text-active-palette-5-dark-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-5-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-1 .u-svg-link {
  fill: #858e99;
}
.u-link.u-text-palette-5-dark-1:hover {
  color: #75808c !important;
}
a.u-link.u-text-hover-palette-5-dark-1:hover {
  color: #858e99 !important;
}
.u-text-palette-5,
.u-input.u-text-palette-5,
.u-input.u-text-palette-5[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5,
li.active > a.u-button-style.u-text-palette-5[class*="u-border-"],
a.u-button-style.u-text-palette-5,
a.u-button-style.u-text-palette-5[class*="u-border-"] {
  color: #b9c1cc !important;
  
  
  
}
a.u-button-style.u-text-palette-5:hover,
a.u-button-style.u-text-palette-5[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5:focus,
a.u-button-style.u-text-palette-5[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5:active,
a.u-button-style.u-button-style.u-text-palette-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5.active,
a.u-button-style.u-button-style.u-text-palette-5[class*="u-border-"].active {
  color: #a2adbc !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-5,
a.u-button-style:hover > .u-text-hover-palette-5[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5:hover,
.u-text-hover-palette-5.u-language-url:hover,
.u-text-hover-palette-5 .u-language-url:hover,
.u-text-hover-palette-5.u-carousel-control:hover,
.u-text-hover-palette-5.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-5 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-5:hover {
  color: #b9c1cc !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5,
a.u-button-style.u-button-style.active > .u-text-active-palette-5[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-5.u-active {
  color: #b9c1cc !important;
}
.u-text-palette-5 .u-svg-link {
  fill: #b9c1cc;
}
.u-text-hover-palette-5:hover .u-svg-link,
.u-text-hover-palette-5:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5 .u-svg-link {
  fill: #b9c1cc;
}
.u-text-active-palette-5:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-5 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5 .u-svg-link {
  fill: #b9c1cc;
}
.u-link.u-text-palette-5:hover {
  color: #a2adbc !important;
}
a.u-link.u-text-hover-palette-5:hover {
  color: #b9c1cc !important;
}
.u-text-palette-5-light-1,
.u-input.u-text-palette-5-light-1,
.u-input.u-text-palette-5-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5-light-1,
li.active > a.u-button-style.u-text-palette-5-light-1[class*="u-border-"],
a.u-button-style.u-text-palette-5-light-1,
a.u-button-style.u-text-palette-5-light-1[class*="u-border-"] {
  color: #ccd3db !important;
  
  
  
}
a.u-button-style.u-text-palette-5-light-1:hover,
a.u-button-style.u-text-palette-5-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5-light-1:focus,
a.u-button-style.u-text-palette-5-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5-light-1:active,
a.u-button-style.u-button-style.u-text-palette-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5-light-1.active,
a.u-button-style.u-button-style.u-text-palette-5-light-1[class*="u-border-"].active {
  color: #b3bec9 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-5-light-1,
a.u-button-style:hover > .u-text-hover-palette-5-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5-light-1:hover,
.u-text-hover-palette-5-light-1.u-language-url:hover,
.u-text-hover-palette-5-light-1 .u-language-url:hover,
.u-text-hover-palette-5-light-1.u-carousel-control:hover,
.u-text-hover-palette-5-light-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-5-light-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-5-light-1:hover {
  color: #ccd3db !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-light-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5-light-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5-light-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-5-light-1.u-active {
  color: #ccd3db !important;
}
.u-text-palette-5-light-1 .u-svg-link {
  fill: #ccd3db;
}
.u-text-hover-palette-5-light-1:hover .u-svg-link,
.u-text-hover-palette-5-light-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5-light-1 .u-svg-link {
  fill: #ccd3db;
}
.u-text-active-palette-5-light-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-5-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5-light-1 .u-svg-link {
  fill: #ccd3db;
}
.u-link.u-text-palette-5-light-1:hover {
  color: #b3bec9 !important;
}
a.u-link.u-text-hover-palette-5-light-1:hover {
  color: #ccd3db !important;
}
.u-text-palette-5-light-2,
.u-input.u-text-palette-5-light-2,
.u-input.u-text-palette-5-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5-light-2,
li.active > a.u-button-style.u-text-palette-5-light-2[class*="u-border-"],
a.u-button-style.u-text-palette-5-light-2,
a.u-button-style.u-text-palette-5-light-2[class*="u-border-"] {
  color: #e0e5eb !important;
  
  
  
}
a.u-button-style.u-text-palette-5-light-2:hover,
a.u-button-style.u-text-palette-5-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5-light-2:focus,
a.u-button-style.u-text-palette-5-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5-light-2:active,
a.u-button-style.u-button-style.u-text-palette-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5-light-2.active,
a.u-button-style.u-button-style.u-text-palette-5-light-2[class*="u-border-"].active {
  color: #c4ced9 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-5-light-2,
a.u-button-style:hover > .u-text-hover-palette-5-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5-light-2:hover,
.u-text-hover-palette-5-light-2.u-language-url:hover,
.u-text-hover-palette-5-light-2 .u-language-url:hover,
.u-text-hover-palette-5-light-2.u-carousel-control:hover,
.u-text-hover-palette-5-light-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-5-light-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-5-light-2:hover {
  color: #e0e5eb !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-light-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5-light-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5-light-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-5-light-2.u-active {
  color: #e0e5eb !important;
}
.u-text-palette-5-light-2 .u-svg-link {
  fill: #e0e5eb;
}
.u-text-hover-palette-5-light-2:hover .u-svg-link,
.u-text-hover-palette-5-light-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5-light-2 .u-svg-link {
  fill: #e0e5eb;
}
.u-text-active-palette-5-light-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-5-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5-light-2 .u-svg-link {
  fill: #e0e5eb;
}
.u-link.u-text-palette-5-light-2:hover {
  color: #c4ced9 !important;
}
a.u-link.u-text-hover-palette-5-light-2:hover {
  color: #e0e5eb !important;
}
.u-text-palette-5-light-3,
.u-input.u-text-palette-5-light-3,
.u-input.u-text-palette-5-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5-light-3,
li.active > a.u-button-style.u-text-palette-5-light-3[class*="u-border-"],
a.u-button-style.u-text-palette-5-light-3,
a.u-button-style.u-text-palette-5-light-3[class*="u-border-"] {
  color: #f5f7fa !important;
  
  
  
}
a.u-button-style.u-text-palette-5-light-3:hover,
a.u-button-style.u-text-palette-5-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5-light-3:focus,
a.u-button-style.u-text-palette-5-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5-light-3:active,
a.u-button-style.u-button-style.u-text-palette-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5-light-3.active,
a.u-button-style.u-button-style.u-text-palette-5-light-3[class*="u-border-"].active {
  color: #d4dde9 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-5-light-3,
a.u-button-style:hover > .u-text-hover-palette-5-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5-light-3:hover,
.u-text-hover-palette-5-light-3.u-language-url:hover,
.u-text-hover-palette-5-light-3 .u-language-url:hover,
.u-text-hover-palette-5-light-3.u-carousel-control:hover,
.u-text-hover-palette-5-light-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-5-light-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-5-light-3:hover {
  color: #f5f7fa !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-light-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5-light-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5-light-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-5-light-3.u-active {
  color: #f5f7fa !important;
}
.u-text-palette-5-light-3 .u-svg-link {
  fill: #f5f7fa;
}
.u-text-hover-palette-5-light-3:hover .u-svg-link,
.u-text-hover-palette-5-light-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5-light-3 .u-svg-link {
  fill: #f5f7fa;
}
.u-text-active-palette-5-light-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-5-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5-light-3 .u-svg-link {
  fill: #f5f7fa;
}
.u-link.u-text-palette-5-light-3:hover {
  color: #d4dde9 !important;
}
a.u-link.u-text-hover-palette-5-light-3:hover {
  color: #f5f7fa !important;
}
.u-text-palette-5-base,
.u-input.u-text-palette-5-base,
.u-input.u-text-palette-5-base[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5-base,
li.active > a.u-button-style.u-text-palette-5-base[class*="u-border-"],
a.u-button-style.u-text-palette-5-base,
a.u-button-style.u-text-palette-5-base[class*="u-border-"] {
  color: #b9c1cc !important;
  
  
  
}
a.u-button-style.u-text-palette-5-base:hover,
a.u-button-style.u-text-palette-5-base[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5-base:focus,
a.u-button-style.u-text-palette-5-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5-base:active,
a.u-button-style.u-button-style.u-text-palette-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5-base.active,
a.u-button-style.u-button-style.u-text-palette-5-base[class*="u-border-"].active {
  color: #a2adbc !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-palette-5-base,
a.u-button-style:hover > .u-text-hover-palette-5-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5-base:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5-base:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5-base[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5-base:hover,
.u-text-hover-palette-5-base.u-language-url:hover,
.u-text-hover-palette-5-base .u-language-url:hover,
.u-text-hover-palette-5-base.u-carousel-control:hover,
.u-text-hover-palette-5-base.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-palette-5-base .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-palette-5-base:hover {
  color: #b9c1cc !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-base,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5-base.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5-base .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-palette-5-base.u-active {
  color: #b9c1cc !important;
}
.u-text-palette-5-base .u-svg-link {
  fill: #b9c1cc;
}
.u-text-hover-palette-5-base:hover .u-svg-link,
.u-text-hover-palette-5-base:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5-base .u-svg-link {
  fill: #b9c1cc;
}
.u-text-active-palette-5-base:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-palette-5-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5-base .u-svg-link {
  fill: #b9c1cc;
}
.u-link.u-text-palette-5-base:hover {
  color: #a2adbc !important;
}
a.u-link.u-text-hover-palette-5-base:hover {
  color: #b9c1cc !important;
}
.u-text-grey-dark-3,
.u-input.u-text-grey-dark-3,
.u-input.u-text-grey-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-dark-3,
li.active > a.u-button-style.u-text-grey-dark-3[class*="u-border-"],
a.u-button-style.u-text-grey-dark-3,
a.u-button-style.u-text-grey-dark-3[class*="u-border-"] {
  color: #212121 !important;
  
  
  
}
a.u-button-style.u-text-grey-dark-3:hover,
a.u-button-style.u-text-grey-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-dark-3:focus,
a.u-button-style.u-text-grey-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-dark-3:active,
a.u-button-style.u-button-style.u-text-grey-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-dark-3.active,
a.u-button-style.u-button-style.u-text-grey-dark-3[class*="u-border-"].active {
  color: #1e1e1e !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-dark-3,
a.u-button-style:hover > .u-text-hover-grey-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-grey-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-grey-dark-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-dark-3:hover,
.u-text-hover-grey-dark-3.u-language-url:hover,
.u-text-hover-grey-dark-3 .u-language-url:hover,
.u-text-hover-grey-dark-3.u-carousel-control:hover,
.u-text-hover-grey-dark-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-dark-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-dark-3:hover {
  color: #212121 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-grey-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-dark-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-dark-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-dark-3.u-active {
  color: #212121 !important;
}
.u-text-grey-dark-3 .u-svg-link {
  fill: #212121;
}
.u-text-hover-grey-dark-3:hover .u-svg-link,
.u-text-hover-grey-dark-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-dark-3 .u-svg-link {
  fill: #212121;
}
.u-text-active-grey-dark-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-dark-3 .u-svg-link {
  fill: #212121;
}
.u-link.u-text-grey-dark-3:hover {
  color: #1e1e1e !important;
}
a.u-link.u-text-hover-grey-dark-3:hover {
  color: #212121 !important;
}
.u-text-grey-dark-2,
.u-input.u-text-grey-dark-2,
.u-input.u-text-grey-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-dark-2,
li.active > a.u-button-style.u-text-grey-dark-2[class*="u-border-"],
a.u-button-style.u-text-grey-dark-2,
a.u-button-style.u-text-grey-dark-2[class*="u-border-"] {
  color: var(--color-text-medium)333 !important;
  
  
  
}
a.u-button-style.u-text-grey-dark-2:hover,
a.u-button-style.u-text-grey-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-dark-2:focus,
a.u-button-style.u-text-grey-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-dark-2:active,
a.u-button-style.u-button-style.u-text-grey-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-dark-2.active,
a.u-button-style.u-button-style.u-text-grey-dark-2[class*="u-border-"].active {
  color: #2e2e2e !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-dark-2,
a.u-button-style:hover > .u-text-hover-grey-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-grey-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-grey-dark-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-dark-2:hover,
.u-text-hover-grey-dark-2.u-language-url:hover,
.u-text-hover-grey-dark-2 .u-language-url:hover,
.u-text-hover-grey-dark-2.u-carousel-control:hover,
.u-text-hover-grey-dark-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-dark-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-dark-2:hover {
  color: var(--color-text-medium)333 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-grey-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-dark-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-dark-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-dark-2.u-active {
  color: var(--color-text-medium)333 !important;
}
.u-text-grey-dark-2 .u-svg-link {
  fill: var(--color-text-medium)333;
}
.u-text-hover-grey-dark-2:hover .u-svg-link,
.u-text-hover-grey-dark-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-dark-2 .u-svg-link {
  fill: var(--color-text-medium)333;
}
.u-text-active-grey-dark-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-dark-2 .u-svg-link {
  fill: var(--color-text-medium)333;
}
.u-link.u-text-grey-dark-2:hover {
  color: #2e2e2e !important;
}
a.u-link.u-text-hover-grey-dark-2:hover {
  color: var(--color-text-medium)333 !important;
}
.u-text-grey-dark-1,
.u-input.u-text-grey-dark-1,
.u-input.u-text-grey-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-dark-1,
li.active > a.u-button-style.u-text-grey-dark-1[class*="u-border-"],
a.u-button-style.u-text-grey-dark-1,
a.u-button-style.u-text-grey-dark-1[class*="u-border-"] {
  color: #454545 !important;
  
  
  
}
a.u-button-style.u-text-grey-dark-1:hover,
a.u-button-style.u-text-grey-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-dark-1:focus,
a.u-button-style.u-text-grey-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-dark-1:active,
a.u-button-style.u-button-style.u-text-grey-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-dark-1.active,
a.u-button-style.u-button-style.u-text-grey-dark-1[class*="u-border-"].active {
  color: #3e3e3e !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-dark-1,
a.u-button-style:hover > .u-text-hover-grey-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-grey-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-grey-dark-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-dark-1:hover,
.u-text-hover-grey-dark-1.u-language-url:hover,
.u-text-hover-grey-dark-1 .u-language-url:hover,
.u-text-hover-grey-dark-1.u-carousel-control:hover,
.u-text-hover-grey-dark-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-dark-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-dark-1:hover {
  color: #454545 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-grey-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-dark-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-dark-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-dark-1.u-active {
  color: #454545 !important;
}
.u-text-grey-dark-1 .u-svg-link {
  fill: #454545;
}
.u-text-hover-grey-dark-1:hover .u-svg-link,
.u-text-hover-grey-dark-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-dark-1 .u-svg-link {
  fill: #454545;
}
.u-text-active-grey-dark-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-dark-1 .u-svg-link {
  fill: #454545;
}
.u-link.u-text-grey-dark-1:hover {
  color: #3e3e3e !important;
}
a.u-link.u-text-hover-grey-dark-1:hover {
  color: #454545 !important;
}
.u-text-grey,
.u-input.u-text-grey,
.u-input.u-text-grey[class*="u-border-"],
li.active > a.u-button-style.u-text-grey,
li.active > a.u-button-style.u-text-grey[class*="u-border-"],
a.u-button-style.u-text-grey,
a.u-button-style.u-text-grey[class*="u-border-"] {
  color: #b3b3b3 !important;
  
  
  
}
a.u-button-style.u-text-grey:hover,
a.u-button-style.u-text-grey[class*="u-border-"]:hover,
a.u-button-style.u-text-grey:focus,
a.u-button-style.u-text-grey[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey:active,
a.u-button-style.u-button-style.u-text-grey[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey.active,
a.u-button-style.u-button-style.u-text-grey[class*="u-border-"].active {
  color: #a1a1a1 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey,
a.u-button-style:hover > .u-text-hover-grey[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey:hover,
a.u-button-style.u-button-style.u-text-hover-grey[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey:focus,
a.u-button-style.u-button-style.u-text-hover-grey[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey:hover,
.u-text-hover-grey.u-language-url:hover,
.u-text-hover-grey .u-language-url:hover,
.u-text-hover-grey.u-carousel-control:hover,
.u-text-hover-grey.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey:hover {
  color: #b3b3b3 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey,
a.u-button-style.u-button-style.active > .u-text-active-grey[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey.u-active {
  color: #b3b3b3 !important;
}
.u-text-grey .u-svg-link {
  fill: #b3b3b3;
}
.u-text-hover-grey:hover .u-svg-link,
.u-text-hover-grey:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey .u-svg-link {
  fill: #b3b3b3;
}
.u-text-active-grey:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey .u-svg-link {
  fill: #b3b3b3;
}
.u-link.u-text-grey:hover {
  color: #a1a1a1 !important;
}
a.u-link.u-text-hover-grey:hover {
  color: #b3b3b3 !important;
}
.u-text-grey-light-1,
.u-input.u-text-grey-light-1,
.u-input.u-text-grey-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-light-1,
li.active > a.u-button-style.u-text-grey-light-1[class*="u-border-"],
a.u-button-style.u-text-grey-light-1,
a.u-button-style.u-text-grey-light-1[class*="u-border-"] {
  color: #d9d9d9 !important;
  
  
  
}
a.u-button-style.u-text-grey-light-1:hover,
a.u-button-style.u-text-grey-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-light-1:focus,
a.u-button-style.u-text-grey-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-light-1:active,
a.u-button-style.u-button-style.u-text-grey-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-light-1.active,
a.u-button-style.u-button-style.u-text-grey-light-1[class*="u-border-"].active {
  color: #c3c3c3 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-light-1,
a.u-button-style:hover > .u-text-hover-grey-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-grey-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-grey-light-1[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-light-1:hover,
.u-text-hover-grey-light-1.u-language-url:hover,
.u-text-hover-grey-light-1 .u-language-url:hover,
.u-text-hover-grey-light-1.u-carousel-control:hover,
.u-text-hover-grey-light-1.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-light-1 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-light-1:hover {
  color: #d9d9d9 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-light-1,
a.u-button-style.u-button-style.active > .u-text-active-grey-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-light-1.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-light-1 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-light-1.u-active {
  color: #d9d9d9 !important;
}
.u-text-grey-light-1 .u-svg-link {
  fill: #d9d9d9;
}
.u-text-hover-grey-light-1:hover .u-svg-link,
.u-text-hover-grey-light-1:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-light-1 .u-svg-link {
  fill: #d9d9d9;
}
.u-text-active-grey-light-1:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-light-1 .u-svg-link {
  fill: #d9d9d9;
}
.u-link.u-text-grey-light-1:hover {
  color: #c3c3c3 !important;
}
a.u-link.u-text-hover-grey-light-1:hover {
  color: #d9d9d9 !important;
}
.u-text-grey-light-2,
.u-input.u-text-grey-light-2,
.u-input.u-text-grey-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-light-2,
li.active > a.u-button-style.u-text-grey-light-2[class*="u-border-"],
a.u-button-style.u-text-grey-light-2,
a.u-button-style.u-text-grey-light-2[class*="u-border-"] {
  color: #eeeeee !important;
  
  
  
}
a.u-button-style.u-text-grey-light-2:hover,
a.u-button-style.u-text-grey-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-light-2:focus,
a.u-button-style.u-text-grey-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-light-2:active,
a.u-button-style.u-button-style.u-text-grey-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-light-2.active,
a.u-button-style.u-button-style.u-text-grey-light-2[class*="u-border-"].active {
  color: #d6d6d6 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-light-2,
a.u-button-style:hover > .u-text-hover-grey-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-grey-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-grey-light-2[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-light-2:hover,
.u-text-hover-grey-light-2.u-language-url:hover,
.u-text-hover-grey-light-2 .u-language-url:hover,
.u-text-hover-grey-light-2.u-carousel-control:hover,
.u-text-hover-grey-light-2.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-light-2 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-light-2:hover {
  color: #eeeeee !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-light-2,
a.u-button-style.u-button-style.active > .u-text-active-grey-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-light-2.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-light-2 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-light-2.u-active {
  color: #eeeeee !important;
}
.u-text-grey-light-2 .u-svg-link {
  fill: #eeeeee;
}
.u-text-hover-grey-light-2:hover .u-svg-link,
.u-text-hover-grey-light-2:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-light-2 .u-svg-link {
  fill: #eeeeee;
}
.u-text-active-grey-light-2:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-light-2 .u-svg-link {
  fill: #eeeeee;
}
.u-link.u-text-grey-light-2:hover {
  color: #d6d6d6 !important;
}
a.u-link.u-text-hover-grey-light-2:hover {
  color: #eeeeee !important;
}
.u-text-grey-light-3,
.u-input.u-text-grey-light-3,
.u-input.u-text-grey-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-light-3,
li.active > a.u-button-style.u-text-grey-light-3[class*="u-border-"],
a.u-button-style.u-text-grey-light-3,
a.u-button-style.u-text-grey-light-3[class*="u-border-"] {
  color: #f6f6f6 !important;
  
  
  
}
a.u-button-style.u-text-grey-light-3:hover,
a.u-button-style.u-text-grey-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-light-3:focus,
a.u-button-style.u-text-grey-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-light-3:active,
a.u-button-style.u-button-style.u-text-grey-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-light-3.active,
a.u-button-style.u-button-style.u-text-grey-light-3[class*="u-border-"].active {
  color: #dddddd !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-light-3,
a.u-button-style:hover > .u-text-hover-grey-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-grey-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-grey-light-3[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-light-3:hover,
.u-text-hover-grey-light-3.u-language-url:hover,
.u-text-hover-grey-light-3 .u-language-url:hover,
.u-text-hover-grey-light-3.u-carousel-control:hover,
.u-text-hover-grey-light-3.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-light-3 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-light-3:hover {
  color: #f6f6f6 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-light-3,
a.u-button-style.u-button-style.active > .u-text-active-grey-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-light-3.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-light-3 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-light-3.u-active {
  color: #f6f6f6 !important;
}
.u-text-grey-light-3 .u-svg-link {
  fill: #f6f6f6;
}
.u-text-hover-grey-light-3:hover .u-svg-link,
.u-text-hover-grey-light-3:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-light-3 .u-svg-link {
  fill: #f6f6f6;
}
.u-text-active-grey-light-3:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-light-3 .u-svg-link {
  fill: #f6f6f6;
}
.u-link.u-text-grey-light-3:hover {
  color: #dddddd !important;
}
a.u-link.u-text-hover-grey-light-3:hover {
  color: #f6f6f6 !important;
}
.u-text-white,
.u-input.u-text-white,
.u-input.u-text-white[class*="u-border-"],
li.active > a.u-button-style.u-text-white,
li.active > a.u-button-style.u-text-white[class*="u-border-"],
a.u-button-style.u-text-white,
a.u-button-style.u-text-white[class*="u-border-"] {
  color: var(--color-white) !important;
  
  
  
}
a.u-button-style.u-text-white:hover,
a.u-button-style.u-text-white[class*="u-border-"]:hover,
a.u-button-style.u-text-white:focus,
a.u-button-style.u-text-white[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-white:active,
a.u-button-style.u-button-style.u-text-white[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-white.active,
a.u-button-style.u-button-style.u-text-white[class*="u-border-"].active {
  color: #e6e6e6 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-white,
a.u-button-style:hover > .u-text-hover-white[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-white:hover,
a.u-button-style.u-button-style.u-text-hover-white[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-white.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-white[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-white:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-white[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-white:focus,
a.u-button-style.u-button-style.u-text-hover-white[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-white:hover,
.u-text-hover-white.u-language-url:hover,
.u-text-hover-white .u-language-url:hover,
.u-text-hover-white.u-carousel-control:hover,
.u-text-hover-white.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-white .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-white:hover {
  color: var(--color-white) !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-white:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-white[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-white.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-white[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-white,
a.u-button-style.u-button-style.active > .u-text-active-white[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-white.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-white .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-white.u-active {
  color: var(--color-white) !important;
}
.u-text-white .u-svg-link {
  fill: var(--color-white);
}
.u-text-hover-white:hover .u-svg-link,
.u-text-hover-white:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-white .u-svg-link {
  fill: var(--color-white);
}
.u-text-active-white:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-white .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-white .u-svg-link {
  fill: var(--color-white);
}
.u-link.u-text-white:hover {
  color: #e6e6e6 !important;
}
a.u-link.u-text-hover-white:hover {
  color: var(--color-white) !important;
}
.u-text-black,
.u-input.u-text-black,
.u-input.u-text-black[class*="u-border-"],
li.active > a.u-button-style.u-text-black,
li.active > a.u-button-style.u-text-black[class*="u-border-"],
a.u-button-style.u-text-black,
a.u-button-style.u-text-black[class*="u-border-"] {
  color: #000000 !important;
  
  
  
}
a.u-button-style.u-text-black:hover,
a.u-button-style.u-text-black[class*="u-border-"]:hover,
a.u-button-style.u-text-black:focus,
a.u-button-style.u-text-black[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-black:active,
a.u-button-style.u-button-style.u-text-black[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-black.active,
a.u-button-style.u-button-style.u-text-black[class*="u-border-"].active {
  color: #000000 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-black,
a.u-button-style:hover > .u-text-hover-black[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-black:hover,
a.u-button-style.u-button-style.u-text-hover-black[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-black.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-black[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-black:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-black[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-black:focus,
a.u-button-style.u-button-style.u-text-hover-black[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-black:hover,
.u-text-hover-black.u-language-url:hover,
.u-text-hover-black .u-language-url:hover,
.u-text-hover-black.u-carousel-control:hover,
.u-text-hover-black.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-black .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-black:hover {
  color: #000000 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-black:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-black[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-black.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-black[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-black,
a.u-button-style.u-button-style.active > .u-text-active-black[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-black.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-black .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-black.u-active {
  color: #000000 !important;
}
.u-text-black .u-svg-link {
  fill: #000000;
}
.u-text-hover-black:hover .u-svg-link,
.u-text-hover-black:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-black .u-svg-link {
  fill: #000000;
}
.u-text-active-black:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-black .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-black .u-svg-link {
  fill: #000000;
}
.u-link.u-text-black:hover {
  color: #000000 !important;
}
a.u-link.u-text-hover-black:hover {
  color: #000000 !important;
}
.u-text-body-color,
.u-input.u-text-body-color,
.u-input.u-text-body-color[class*="u-border-"],
li.active > a.u-button-style.u-text-body-color,
li.active > a.u-button-style.u-text-body-color[class*="u-border-"],
a.u-button-style.u-text-body-color,
a.u-button-style.u-text-body-color[class*="u-border-"] {
  color: #111111 !important;
  
  
  
}
a.u-button-style.u-text-body-color:hover,
a.u-button-style.u-text-body-color[class*="u-border-"]:hover,
a.u-button-style.u-text-body-color:focus,
a.u-button-style.u-text-body-color[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-body-color:active,
a.u-button-style.u-button-style.u-text-body-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-body-color.active,
a.u-button-style.u-button-style.u-text-body-color[class*="u-border-"].active {
  color: #0f0f0f !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-body-color,
a.u-button-style:hover > .u-text-hover-body-color[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-body-color:hover,
a.u-button-style.u-button-style.u-text-hover-body-color[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-color.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-color[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-color:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-body-color:focus,
a.u-button-style.u-button-style.u-text-hover-body-color[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-body-color:hover,
.u-text-hover-body-color.u-language-url:hover,
.u-text-hover-body-color .u-language-url:hover,
.u-text-hover-body-color.u-carousel-control:hover,
.u-text-hover-body-color.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-body-color .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-body-color:hover {
  color: #111111 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-color:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-color.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-color[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-body-color,
a.u-button-style.u-button-style.active > .u-text-active-body-color[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-body-color.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-body-color .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-body-color.u-active {
  color: #111111 !important;
}
.u-text-body-color .u-svg-link {
  fill: #111111;
}
.u-text-hover-body-color:hover .u-svg-link,
.u-text-hover-body-color:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-body-color .u-svg-link {
  fill: #111111;
}
.u-text-active-body-color:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-body-color .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-body-color .u-svg-link {
  fill: #111111;
}
.u-link.u-text-body-color:hover {
  color: #0f0f0f !important;
}
a.u-link.u-text-hover-body-color:hover {
  color: #111111 !important;
}
.u-text-body-alt-color,
.u-input.u-text-body-alt-color,
.u-input.u-text-body-alt-color[class*="u-border-"],
li.active > a.u-button-style.u-text-body-alt-color,
li.active > a.u-button-style.u-text-body-alt-color[class*="u-border-"],
a.u-button-style.u-text-body-alt-color,
a.u-button-style.u-text-body-alt-color[class*="u-border-"] {
  color: var(--color-white) !important;
  
  
  
}
a.u-button-style.u-text-body-alt-color:hover,
a.u-button-style.u-text-body-alt-color[class*="u-border-"]:hover,
a.u-button-style.u-text-body-alt-color:focus,
a.u-button-style.u-text-body-alt-color[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-body-alt-color:active,
a.u-button-style.u-button-style.u-text-body-alt-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-body-alt-color.active,
a.u-button-style.u-button-style.u-text-body-alt-color[class*="u-border-"].active {
  color: #e6e6e6 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-body-alt-color,
a.u-button-style:hover > .u-text-hover-body-alt-color[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-body-alt-color:hover,
a.u-button-style.u-button-style.u-text-hover-body-alt-color[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-alt-color.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-alt-color[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-alt-color:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-alt-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-body-alt-color:focus,
a.u-button-style.u-button-style.u-text-hover-body-alt-color[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-body-alt-color:hover,
.u-text-hover-body-alt-color.u-language-url:hover,
.u-text-hover-body-alt-color .u-language-url:hover,
.u-text-hover-body-alt-color.u-carousel-control:hover,
.u-text-hover-body-alt-color.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-body-alt-color .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-body-alt-color:hover {
  color: var(--color-white) !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-alt-color:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-alt-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-alt-color.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-alt-color[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-body-alt-color,
a.u-button-style.u-button-style.active > .u-text-active-body-alt-color[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-body-alt-color.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-body-alt-color .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-body-alt-color.u-active {
  color: var(--color-white) !important;
}
.u-text-body-alt-color .u-svg-link {
  fill: var(--color-white);
}
.u-text-hover-body-alt-color:hover .u-svg-link,
.u-text-hover-body-alt-color:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-body-alt-color .u-svg-link {
  fill: var(--color-white);
}
.u-text-active-body-alt-color:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-body-alt-color .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-body-alt-color .u-svg-link {
  fill: var(--color-white);
}
.u-link.u-text-body-alt-color:hover {
  color: #e6e6e6 !important;
}
a.u-link.u-text-hover-body-alt-color:hover {
  color: var(--color-white) !important;
}
.u-text-grey-25,
.u-input.u-text-grey-25,
.u-input.u-text-grey-25[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-25,
li.active > a.u-button-style.u-text-grey-25[class*="u-border-"],
a.u-button-style.u-text-grey-25,
a.u-button-style.u-text-grey-25[class*="u-border-"] {
  color: #c0c0c0 !important;
  
  
  
}
a.u-button-style.u-text-grey-25:hover,
a.u-button-style.u-text-grey-25[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-25:focus,
a.u-button-style.u-text-grey-25[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-25:active,
a.u-button-style.u-button-style.u-text-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-25.active,
a.u-button-style.u-button-style.u-text-grey-25[class*="u-border-"].active {
  color: #adadad !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-25,
a.u-button-style:hover > .u-text-hover-grey-25[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-25:hover,
a.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-25:focus,
a.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-25:hover,
.u-text-hover-grey-25.u-language-url:hover,
.u-text-hover-grey-25 .u-language-url:hover,
.u-text-hover-grey-25.u-carousel-control:hover,
.u-text-hover-grey-25.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-25 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-25:hover {
  color: #c0c0c0 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-25,
a.u-button-style.u-button-style.active > .u-text-active-grey-25[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-25.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-25 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-25.u-active {
  color: #c0c0c0 !important;
}
.u-text-grey-25 .u-svg-link {
  fill: #c0c0c0;
}
.u-text-hover-grey-25:hover .u-svg-link,
.u-text-hover-grey-25:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-25 .u-svg-link {
  fill: #c0c0c0;
}
.u-text-active-grey-25:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-25 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-25 .u-svg-link {
  fill: #c0c0c0;
}
.u-link.u-text-grey-25:hover {
  color: #adadad !important;
}
a.u-link.u-text-hover-grey-25:hover {
  color: #c0c0c0 !important;
}
.u-text-grey-5,
.u-input.u-text-grey-5,
.u-input.u-text-grey-5[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-5,
li.active > a.u-button-style.u-text-grey-5[class*="u-border-"],
a.u-button-style.u-text-grey-5,
a.u-button-style.u-text-grey-5[class*="u-border-"] {
  color: #f2f2f2 !important;
  
  
  
}
a.u-button-style.u-text-grey-5:hover,
a.u-button-style.u-text-grey-5[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-5:focus,
a.u-button-style.u-text-grey-5[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-5:active,
a.u-button-style.u-button-style.u-text-grey-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-5.active,
a.u-button-style.u-button-style.u-text-grey-5[class*="u-border-"].active {
  color: #dadada !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-5,
a.u-button-style:hover > .u-text-hover-grey-5[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-5:hover,
a.u-button-style.u-button-style.u-text-hover-grey-5[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-5.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-5[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-5:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-5:focus,
a.u-button-style.u-button-style.u-text-hover-grey-5[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-5:hover,
.u-text-hover-grey-5.u-language-url:hover,
.u-text-hover-grey-5 .u-language-url:hover,
.u-text-hover-grey-5.u-carousel-control:hover,
.u-text-hover-grey-5.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-5 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-5:hover {
  color: #f2f2f2 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-5:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-5.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-5[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-5,
a.u-button-style.u-button-style.active > .u-text-active-grey-5[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-5.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-5 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-5.u-active {
  color: #f2f2f2 !important;
}
.u-text-grey-5 .u-svg-link {
  fill: #f2f2f2;
}
.u-text-hover-grey-5:hover .u-svg-link,
.u-text-hover-grey-5:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-5 .u-svg-link {
  fill: #f2f2f2;
}
.u-text-active-grey-5:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-5 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-5 .u-svg-link {
  fill: #f2f2f2;
}
.u-link.u-text-grey-5:hover {
  color: #dadada !important;
}
a.u-link.u-text-hover-grey-5:hover {
  color: #f2f2f2 !important;
}
.u-text-grey-10,
.u-input.u-text-grey-10,
.u-input.u-text-grey-10[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-10,
li.active > a.u-button-style.u-text-grey-10[class*="u-border-"],
a.u-button-style.u-text-grey-10,
a.u-button-style.u-text-grey-10[class*="u-border-"] {
  color: #e5e5e5 !important;
  
  
  
}
a.u-button-style.u-text-grey-10:hover,
a.u-button-style.u-text-grey-10[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-10:focus,
a.u-button-style.u-text-grey-10[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-10:active,
a.u-button-style.u-button-style.u-text-grey-10[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-10.active,
a.u-button-style.u-button-style.u-text-grey-10[class*="u-border-"].active {
  color: #cecece !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-10,
a.u-button-style:hover > .u-text-hover-grey-10[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-10:hover,
a.u-button-style.u-button-style.u-text-hover-grey-10[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-10.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-10[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-10:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-10[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-10:focus,
a.u-button-style.u-button-style.u-text-hover-grey-10[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-10:hover,
.u-text-hover-grey-10.u-language-url:hover,
.u-text-hover-grey-10 .u-language-url:hover,
.u-text-hover-grey-10.u-carousel-control:hover,
.u-text-hover-grey-10.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-10 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-10:hover {
  color: #e5e5e5 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-10:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-10[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-10.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-10[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-10,
a.u-button-style.u-button-style.active > .u-text-active-grey-10[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-10.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-10 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-10.u-active {
  color: #e5e5e5 !important;
}
.u-text-grey-10 .u-svg-link {
  fill: #e5e5e5;
}
.u-text-hover-grey-10:hover .u-svg-link,
.u-text-hover-grey-10:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-10 .u-svg-link {
  fill: #e5e5e5;
}
.u-text-active-grey-10:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-10 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-10 .u-svg-link {
  fill: #e5e5e5;
}
.u-link.u-text-grey-10:hover {
  color: #cecece !important;
}
a.u-link.u-text-hover-grey-10:hover {
  color: #e5e5e5 !important;
}
.u-text-grey-15,
.u-input.u-text-grey-15,
.u-input.u-text-grey-15[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-15,
li.active > a.u-button-style.u-text-grey-15[class*="u-border-"],
a.u-button-style.u-text-grey-15,
a.u-button-style.u-text-grey-15[class*="u-border-"] {
  color: #d9d9d9 !important;
  
  
  
}
a.u-button-style.u-text-grey-15:hover,
a.u-button-style.u-text-grey-15[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-15:focus,
a.u-button-style.u-text-grey-15[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-15:active,
a.u-button-style.u-button-style.u-text-grey-15[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-15.active,
a.u-button-style.u-button-style.u-text-grey-15[class*="u-border-"].active {
  color: #c3c3c3 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-15,
a.u-button-style:hover > .u-text-hover-grey-15[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-15:hover,
a.u-button-style.u-button-style.u-text-hover-grey-15[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-15.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-15[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-15:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-15[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-15:focus,
a.u-button-style.u-button-style.u-text-hover-grey-15[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-15:hover,
.u-text-hover-grey-15.u-language-url:hover,
.u-text-hover-grey-15 .u-language-url:hover,
.u-text-hover-grey-15.u-carousel-control:hover,
.u-text-hover-grey-15.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-15 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-15:hover {
  color: #d9d9d9 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-15:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-15[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-15.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-15[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-15,
a.u-button-style.u-button-style.active > .u-text-active-grey-15[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-15.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-15 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-15.u-active {
  color: #d9d9d9 !important;
}
.u-text-grey-15 .u-svg-link {
  fill: #d9d9d9;
}
.u-text-hover-grey-15:hover .u-svg-link,
.u-text-hover-grey-15:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-15 .u-svg-link {
  fill: #d9d9d9;
}
.u-text-active-grey-15:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-15 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-15 .u-svg-link {
  fill: #d9d9d9;
}
.u-link.u-text-grey-15:hover {
  color: #c3c3c3 !important;
}
a.u-link.u-text-hover-grey-15:hover {
  color: #d9d9d9 !important;
}
.u-text-grey-25,
.u-input.u-text-grey-25,
.u-input.u-text-grey-25[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-25,
li.active > a.u-button-style.u-text-grey-25[class*="u-border-"],
a.u-button-style.u-text-grey-25,
a.u-button-style.u-text-grey-25[class*="u-border-"] {
  color: #c0c0c0 !important;
  
  
  
}
a.u-button-style.u-text-grey-25:hover,
a.u-button-style.u-text-grey-25[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-25:focus,
a.u-button-style.u-text-grey-25[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-25:active,
a.u-button-style.u-button-style.u-text-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-25.active,
a.u-button-style.u-button-style.u-text-grey-25[class*="u-border-"].active {
  color: #adadad !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-25,
a.u-button-style:hover > .u-text-hover-grey-25[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-25:hover,
a.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-25:focus,
a.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-25:hover,
.u-text-hover-grey-25.u-language-url:hover,
.u-text-hover-grey-25 .u-language-url:hover,
.u-text-hover-grey-25.u-carousel-control:hover,
.u-text-hover-grey-25.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-25 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-25:hover {
  color: #c0c0c0 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-25,
a.u-button-style.u-button-style.active > .u-text-active-grey-25[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-25.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-25 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-25.u-active {
  color: #c0c0c0 !important;
}
.u-text-grey-25 .u-svg-link {
  fill: #c0c0c0;
}
.u-text-hover-grey-25:hover .u-svg-link,
.u-text-hover-grey-25:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-25 .u-svg-link {
  fill: #c0c0c0;
}
.u-text-active-grey-25:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-25 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-25 .u-svg-link {
  fill: #c0c0c0;
}
.u-link.u-text-grey-25:hover {
  color: #adadad !important;
}
a.u-link.u-text-hover-grey-25:hover {
  color: #c0c0c0 !important;
}
.u-text-grey-30,
.u-input.u-text-grey-30,
.u-input.u-text-grey-30[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-30,
li.active > a.u-button-style.u-text-grey-30[class*="u-border-"],
a.u-button-style.u-text-grey-30,
a.u-button-style.u-text-grey-30[class*="u-border-"] {
  color: #b3b3b3 !important;
  
  
  
}
a.u-button-style.u-text-grey-30:hover,
a.u-button-style.u-text-grey-30[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-30:focus,
a.u-button-style.u-text-grey-30[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-30:active,
a.u-button-style.u-button-style.u-text-grey-30[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-30.active,
a.u-button-style.u-button-style.u-text-grey-30[class*="u-border-"].active {
  color: #a1a1a1 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-30,
a.u-button-style:hover > .u-text-hover-grey-30[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-30:hover,
a.u-button-style.u-button-style.u-text-hover-grey-30[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-30.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-30[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-30:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-30[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-30:focus,
a.u-button-style.u-button-style.u-text-hover-grey-30[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-30:hover,
.u-text-hover-grey-30.u-language-url:hover,
.u-text-hover-grey-30 .u-language-url:hover,
.u-text-hover-grey-30.u-carousel-control:hover,
.u-text-hover-grey-30.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-30 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-30:hover {
  color: #b3b3b3 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-30:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-30[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-30.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-30[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-30,
a.u-button-style.u-button-style.active > .u-text-active-grey-30[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-30.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-30 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-30.u-active {
  color: #b3b3b3 !important;
}
.u-text-grey-30 .u-svg-link {
  fill: #b3b3b3;
}
.u-text-hover-grey-30:hover .u-svg-link,
.u-text-hover-grey-30:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-30 .u-svg-link {
  fill: #b3b3b3;
}
.u-text-active-grey-30:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-30 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-30 .u-svg-link {
  fill: #b3b3b3;
}
.u-link.u-text-grey-30:hover {
  color: #a1a1a1 !important;
}
a.u-link.u-text-hover-grey-30:hover {
  color: #b3b3b3 !important;
}
.u-text-grey-40,
.u-input.u-text-grey-40,
.u-input.u-text-grey-40[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-40,
li.active > a.u-button-style.u-text-grey-40[class*="u-border-"],
a.u-button-style.u-text-grey-40,
a.u-button-style.u-text-grey-40[class*="u-border-"] {
  color: var(--color-text-gray)999 !important;
  
  
  
}
a.u-button-style.u-text-grey-40:hover,
a.u-button-style.u-text-grey-40[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-40:focus,
a.u-button-style.u-text-grey-40[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-40:active,
a.u-button-style.u-button-style.u-text-grey-40[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-40.active,
a.u-button-style.u-button-style.u-text-grey-40[class*="u-border-"].active {
  color: #8a8a8a !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-40,
a.u-button-style:hover > .u-text-hover-grey-40[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-40:hover,
a.u-button-style.u-button-style.u-text-hover-grey-40[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-40.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-40[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-40:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-40[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-40:focus,
a.u-button-style.u-button-style.u-text-hover-grey-40[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-40:hover,
.u-text-hover-grey-40.u-language-url:hover,
.u-text-hover-grey-40 .u-language-url:hover,
.u-text-hover-grey-40.u-carousel-control:hover,
.u-text-hover-grey-40.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-40 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-40:hover {
  color: var(--color-text-gray)999 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-40:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-40[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-40.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-40[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-40,
a.u-button-style.u-button-style.active > .u-text-active-grey-40[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-40.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-40 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-40.u-active {
  color: var(--color-text-gray)999 !important;
}
.u-text-grey-40 .u-svg-link {
  fill: var(--color-text-gray)999;
}
.u-text-hover-grey-40:hover .u-svg-link,
.u-text-hover-grey-40:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-40 .u-svg-link {
  fill: var(--color-text-gray)999;
}
.u-text-active-grey-40:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-40 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-40 .u-svg-link {
  fill: var(--color-text-gray)999;
}
.u-link.u-text-grey-40:hover {
  color: #8a8a8a !important;
}
a.u-link.u-text-hover-grey-40:hover {
  color: var(--color-text-gray)999 !important;
}
.u-text-grey-50,
.u-input.u-text-grey-50,
.u-input.u-text-grey-50[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-50,
li.active > a.u-button-style.u-text-grey-50[class*="u-border-"],
a.u-button-style.u-text-grey-50,
a.u-button-style.u-text-grey-50[class*="u-border-"] {
  color: #808080 !important;
  
  
  
}
a.u-button-style.u-text-grey-50:hover,
a.u-button-style.u-text-grey-50[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-50:focus,
a.u-button-style.u-text-grey-50[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-50:active,
a.u-button-style.u-button-style.u-text-grey-50[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-50.active,
a.u-button-style.u-button-style.u-text-grey-50[class*="u-border-"].active {
  color: #737373 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-50,
a.u-button-style:hover > .u-text-hover-grey-50[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-50:hover,
a.u-button-style.u-button-style.u-text-hover-grey-50[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-50.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-50[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-50:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-50[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-50:focus,
a.u-button-style.u-button-style.u-text-hover-grey-50[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-50:hover,
.u-text-hover-grey-50.u-language-url:hover,
.u-text-hover-grey-50 .u-language-url:hover,
.u-text-hover-grey-50.u-carousel-control:hover,
.u-text-hover-grey-50.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-50 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-50:hover {
  color: #808080 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-50:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-50[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-50.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-50[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-50,
a.u-button-style.u-button-style.active > .u-text-active-grey-50[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-50.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-50 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-50.u-active {
  color: #808080 !important;
}
.u-text-grey-50 .u-svg-link {
  fill: #808080;
}
.u-text-hover-grey-50:hover .u-svg-link,
.u-text-hover-grey-50:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-50 .u-svg-link {
  fill: #808080;
}
.u-text-active-grey-50:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-50 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-50 .u-svg-link {
  fill: #808080;
}
.u-link.u-text-grey-50:hover {
  color: #737373 !important;
}
a.u-link.u-text-hover-grey-50:hover {
  color: #808080 !important;
}
.u-text-grey-60,
.u-input.u-text-grey-60,
.u-input.u-text-grey-60[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-60,
li.active > a.u-button-style.u-text-grey-60[class*="u-border-"],
a.u-button-style.u-text-grey-60,
a.u-button-style.u-text-grey-60[class*="u-border-"] {
  color: var(--color-text-light)666 !important;
  
  
  
}
a.u-button-style.u-text-grey-60:hover,
a.u-button-style.u-text-grey-60[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-60:focus,
a.u-button-style.u-text-grey-60[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-60:active,
a.u-button-style.u-button-style.u-text-grey-60[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-60.active,
a.u-button-style.u-button-style.u-text-grey-60[class*="u-border-"].active {
  color: #5c5c5c !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-60,
a.u-button-style:hover > .u-text-hover-grey-60[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-60:hover,
a.u-button-style.u-button-style.u-text-hover-grey-60[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-60.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-60[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-60:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-60[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-60:focus,
a.u-button-style.u-button-style.u-text-hover-grey-60[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-60:hover,
.u-text-hover-grey-60.u-language-url:hover,
.u-text-hover-grey-60 .u-language-url:hover,
.u-text-hover-grey-60.u-carousel-control:hover,
.u-text-hover-grey-60.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-60 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-60:hover {
  color: var(--color-text-light)666 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-60:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-60[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-60.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-60[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-60,
a.u-button-style.u-button-style.active > .u-text-active-grey-60[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-60.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-60 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-60.u-active {
  color: var(--color-text-light)666 !important;
}
.u-text-grey-60 .u-svg-link {
  fill: var(--color-text-light)666;
}
.u-text-hover-grey-60:hover .u-svg-link,
.u-text-hover-grey-60:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-60 .u-svg-link {
  fill: var(--color-text-light)666;
}
.u-text-active-grey-60:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-60 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-60 .u-svg-link {
  fill: var(--color-text-light)666;
}
.u-link.u-text-grey-60:hover {
  color: #5c5c5c !important;
}
a.u-link.u-text-hover-grey-60:hover {
  color: var(--color-text-light)666 !important;
}
.u-text-grey-70,
.u-input.u-text-grey-70,
.u-input.u-text-grey-70[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-70,
li.active > a.u-button-style.u-text-grey-70[class*="u-border-"],
a.u-button-style.u-text-grey-70,
a.u-button-style.u-text-grey-70[class*="u-border-"] {
  color: #4d4d4d !important;
  
  
  
}
a.u-button-style.u-text-grey-70:hover,
a.u-button-style.u-text-grey-70[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-70:focus,
a.u-button-style.u-text-grey-70[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-70:active,
a.u-button-style.u-button-style.u-text-grey-70[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-70.active,
a.u-button-style.u-button-style.u-text-grey-70[class*="u-border-"].active {
  color: #454545 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-70,
a.u-button-style:hover > .u-text-hover-grey-70[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-70:hover,
a.u-button-style.u-button-style.u-text-hover-grey-70[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-70.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-70[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-70:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-70[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-70:focus,
a.u-button-style.u-button-style.u-text-hover-grey-70[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-70:hover,
.u-text-hover-grey-70.u-language-url:hover,
.u-text-hover-grey-70 .u-language-url:hover,
.u-text-hover-grey-70.u-carousel-control:hover,
.u-text-hover-grey-70.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-70 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-70:hover {
  color: #4d4d4d !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-70:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-70[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-70.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-70[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-70,
a.u-button-style.u-button-style.active > .u-text-active-grey-70[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-70.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-70 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-70.u-active {
  color: #4d4d4d !important;
}
.u-text-grey-70 .u-svg-link {
  fill: #4d4d4d;
}
.u-text-hover-grey-70:hover .u-svg-link,
.u-text-hover-grey-70:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-70 .u-svg-link {
  fill: #4d4d4d;
}
.u-text-active-grey-70:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-70 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-70 .u-svg-link {
  fill: #4d4d4d;
}
.u-link.u-text-grey-70:hover {
  color: #454545 !important;
}
a.u-link.u-text-hover-grey-70:hover {
  color: #4d4d4d !important;
}
.u-text-grey-75,
.u-input.u-text-grey-75,
.u-input.u-text-grey-75[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-75,
li.active > a.u-button-style.u-text-grey-75[class*="u-border-"],
a.u-button-style.u-text-grey-75,
a.u-button-style.u-text-grey-75[class*="u-border-"] {
  color: #404040 !important;
  
  
  
}
a.u-button-style.u-text-grey-75:hover,
a.u-button-style.u-text-grey-75[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-75:focus,
a.u-button-style.u-text-grey-75[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-75:active,
a.u-button-style.u-button-style.u-text-grey-75[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-75.active,
a.u-button-style.u-button-style.u-text-grey-75[class*="u-border-"].active {
  color: #3a3a3a !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-75,
a.u-button-style:hover > .u-text-hover-grey-75[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-75:hover,
a.u-button-style.u-button-style.u-text-hover-grey-75[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-75.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-75[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-75:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-75[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-75:focus,
a.u-button-style.u-button-style.u-text-hover-grey-75[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-75:hover,
.u-text-hover-grey-75.u-language-url:hover,
.u-text-hover-grey-75 .u-language-url:hover,
.u-text-hover-grey-75.u-carousel-control:hover,
.u-text-hover-grey-75.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-75 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-75:hover {
  color: #404040 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-75:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-75[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-75.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-75[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-75,
a.u-button-style.u-button-style.active > .u-text-active-grey-75[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-75.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-75 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-75.u-active {
  color: #404040 !important;
}
.u-text-grey-75 .u-svg-link {
  fill: #404040;
}
.u-text-hover-grey-75:hover .u-svg-link,
.u-text-hover-grey-75:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-75 .u-svg-link {
  fill: #404040;
}
.u-text-active-grey-75:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-75 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-75 .u-svg-link {
  fill: #404040;
}
.u-link.u-text-grey-75:hover {
  color: #3a3a3a !important;
}
a.u-link.u-text-hover-grey-75:hover {
  color: #404040 !important;
}
.u-text-grey-80,
.u-input.u-text-grey-80,
.u-input.u-text-grey-80[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-80,
li.active > a.u-button-style.u-text-grey-80[class*="u-border-"],
a.u-button-style.u-text-grey-80,
a.u-button-style.u-text-grey-80[class*="u-border-"] {
  color: var(--color-text-medium)333 !important;
  
  
  
}
a.u-button-style.u-text-grey-80:hover,
a.u-button-style.u-text-grey-80[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-80:focus,
a.u-button-style.u-text-grey-80[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-80:active,
a.u-button-style.u-button-style.u-text-grey-80[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-80.active,
a.u-button-style.u-button-style.u-text-grey-80[class*="u-border-"].active {
  color: #2e2e2e !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-80,
a.u-button-style:hover > .u-text-hover-grey-80[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-80:hover,
a.u-button-style.u-button-style.u-text-hover-grey-80[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-80.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-80[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-80:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-80[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-80:focus,
a.u-button-style.u-button-style.u-text-hover-grey-80[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-80:hover,
.u-text-hover-grey-80.u-language-url:hover,
.u-text-hover-grey-80 .u-language-url:hover,
.u-text-hover-grey-80.u-carousel-control:hover,
.u-text-hover-grey-80.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-80 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-80:hover {
  color: var(--color-text-medium)333 !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-80:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-80[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-80.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-80[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-80,
a.u-button-style.u-button-style.active > .u-text-active-grey-80[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-80.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-80 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-80.u-active {
  color: var(--color-text-medium)333 !important;
}
.u-text-grey-80 .u-svg-link {
  fill: var(--color-text-medium)333;
}
.u-text-hover-grey-80:hover .u-svg-link,
.u-text-hover-grey-80:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-80 .u-svg-link {
  fill: var(--color-text-medium)333;
}
.u-text-active-grey-80:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-80 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-80 .u-svg-link {
  fill: var(--color-text-medium)333;
}
.u-link.u-text-grey-80:hover {
  color: #2e2e2e !important;
}
a.u-link.u-text-hover-grey-80:hover {
  color: var(--color-text-medium)333 !important;
}
.u-text-grey-90,
.u-input.u-text-grey-90,
.u-input.u-text-grey-90[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-90,
li.active > a.u-button-style.u-text-grey-90[class*="u-border-"],
a.u-button-style.u-text-grey-90,
a.u-button-style.u-text-grey-90[class*="u-border-"] {
  color: #1a1a1a !important;
  
  
  
}
a.u-button-style.u-text-grey-90:hover,
a.u-button-style.u-text-grey-90[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-90:focus,
a.u-button-style.u-text-grey-90[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-90:active,
a.u-button-style.u-button-style.u-text-grey-90[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-90.active,
a.u-button-style.u-button-style.u-text-grey-90[class*="u-border-"].active {
  color: #171717 !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-grey-90,
a.u-button-style:hover > .u-text-hover-grey-90[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-90:hover,
a.u-button-style.u-button-style.u-text-hover-grey-90[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-90.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-90[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-90:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-90[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-90:focus,
a.u-button-style.u-button-style.u-text-hover-grey-90[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-90:hover,
.u-text-hover-grey-90.u-language-url:hover,
.u-text-hover-grey-90 .u-language-url:hover,
.u-text-hover-grey-90.u-carousel-control:hover,
.u-text-hover-grey-90.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-grey-90 .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-grey-90:hover {
  color: #1a1a1a !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-90:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-90[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-90.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-90[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-90,
a.u-button-style.u-button-style.active > .u-text-active-grey-90[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-90.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-90 .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-grey-90.u-active {
  color: #1a1a1a !important;
}
.u-text-grey-90 .u-svg-link {
  fill: #1a1a1a;
}
.u-text-hover-grey-90:hover .u-svg-link,
.u-text-hover-grey-90:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-90 .u-svg-link {
  fill: #1a1a1a;
}
.u-text-active-grey-90:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-grey-90 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-90 .u-svg-link {
  fill: #1a1a1a;
}
.u-link.u-text-grey-90:hover {
  color: #171717 !important;
}
a.u-link.u-text-hover-grey-90:hover {
  color: #1a1a1a !important;
}
.u-color-var,
.u-body.u-color-var,
section.u-color-var:before,
.u-color-var > .u-audio-main-layout-wrapper:before,
.u-color-var > .u-container-layout:before,
.u-color-var > .u-inner-container-layout:before,
.u-color-var.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-var:before,
.u-table-alt-color-var tr:nth-child(even) {
  background-color: var(--color-var);
}
.u-input.u-color-var,
.u-field-input.u-color-var,
.u-button-style.u-color-var,
.u-button-style.u-color-var[class*="u-border-"] {
  background-color: var(--color-var) !important;
}
/* hover */
.u-hover-color-var:hover,
.u-hover-color-var[class*="u-border-"]:hover,
.u-hover-color-var:focus,
.u-hover-color-var[class*="u-border-"]:focus,
a.u-button-style.u-hover-color-var:hover,
a.u-button-style.u-hover-color-var.hover,
a.u-button-style.u-hover-color-var[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-var[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-var,
a.u-button-style:hover > .u-hover-color-var[class*="u-border-"],
a.u-button-style.u-hover-color-var:focus,
a.u-button-style.u-hover-color-var[class*="u-border-"]:focus {
  background-color: var(--hover-color-var) !important;
}
/* active */
.u-active-color-var.u-active.u-active,
.u-active-color-var[class*="u-border-"].u-active.u-active,
a.u-button-style.u-button-style.u-active-color-var:active,
a.u-button-style.u-button-style.u-active-color-var[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-var.active,
a.u-button-style.u-button-style.u-active-color-var[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-var,
a.u-button-style.u-button-style.active > .u-active-color-var[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-var,
li.active > a.u-button-style.u-button-style.u-active-color-var[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-var:checked {
  background-color: var(--active-color-var) !important;
}
a.u-link.u-hover-color-var:hover {
  color: var(--color-var) !important;
}
.u-border-color-var,
.u-border-color-var.u-input,
.u-border-color-var.u-field-input.u-field-input,
.u-separator-color-var:after {
  border-color: var(--border-color-var);
  stroke: var(--border-color-var);
}
.u-button-style.u-border-color-var {
  border-color: var(--border-color-var) !important;
}
.u-border-hover-color-var:hover,
.u-border-hover-color-var:focus,
a.u-button-style.u-border-hover-color-var:hover,
a.u-button-style:hover > .u-border-hover-color-var,
a.u-button-style.u-border-hover-color-var:focus {
  border-color: var(--border-hover-color-var) !important;
}
.u-border-active-color-var.u-active.u-active,
a.u-button-style.u-button-style.u-border-active-color-var:active,
a.u-button-style.u-button-style.u-border-active-color-var.active,
a.u-button-style.u-button-style.active > .u-border-active-color-var,
li.active > a.u-button-style.u-button-style.u-border-active-color-var,
input.u-field-input.u-field-input.u-border-active-color-var:checked {
  border-color: var(--border-active-color-var) !important;
}
.u-link.u-border-color-var[class*="u-border-"] {
  border-color: var(--border-color-var) !important;
}
.u-text-color-var,
.u-input.u-text-color-var,
.u-input.u-text-color-var[class*="u-border-"],
li.active > a.u-button-style.u-text-color-var,
li.active > a.u-button-style.u-text-color-var[class*="u-border-"],
a.u-button-style.u-text-color-var,
a.u-button-style.u-text-color-var[class*="u-border-"] {
  color: var(--text-color-var) !important;
}
/* hover */
a.u-button-style:hover > .u-text-hover-color-var,
a.u-button-style:hover > .u-text-hover-color-var[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-var:hover,
a.u-button-style.u-button-style.u-text-hover-color-var[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-var.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-var[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-var:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-var[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-var:focus,
a.u-button-style.u-button-style.u-text-hover-color-var[class*="u-border-"]:focus,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-var:hover,
.u-text-hover-color-var.u-language-url:hover,
.u-text-hover-color-var .u-language-url:hover,
.u-text-hover-color-var.u-carousel-control:hover,
.u-text-hover-color-var.u-gallery-nav:hover,
.u-popupmenu-items.u-text-hover-color-var .u-nav-link:hover,
.u-calendar-time-list .u-calendar-time-slot.u-text-hover-color-var:hover {
  color: var(--text-hover-color-var) !important;
}
/* active */
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-var:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-var[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-var.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-var[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-var,
a.u-button-style.u-button-style.active > .u-text-active-color-var[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-var.active,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-var .u-nav-link.active,
.u-calendar-time-list .u-calendar-time-slot.u-text-active-color-var.u-active {
  color: var(--text-active-color-var) !important;
}
.u-text-color-var .u-svg-link {
  fill: var(--text-color-var);
}
.u-text-hover-color-var:hover .u-svg-link,
.u-text-hover-color-var:focus .u-svg-link,
.u-button-style:hover > .u-text-hover-color-var .u-svg-link {
  fill: var(--text-hover-color-var);
}
.u-text-active-color-var:active .u-svg-link.u-svg-link,
.u-button-style.u-button-style:active > .u-text-active-color-var .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-var .u-svg-link {
  fill: var(--text-active-color-var);
}
a.u-link.u-text-hover-color-var:hover {
  color: var(--text-hover-color-var) !important;
}
/*end-variables colors*/

/*begin-variables sitestylecss*/



        .u-body
        {
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        --theme-sheet-width-xl: 1140px;
        --theme-sheet-width-lg: 940px;
        --theme-sheet-width-md: 720px;
        --theme-sheet-width-sm: 540px;
        --theme-sheet-width-xs: 340px;
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        }

        /** common-rules **/
        h1.u-title
        {
        font-weight: 400;
        font-size: 6rem;
        line-height: 1.1;
        margin-top: 20px;
        margin-bottom: 20px;
        }
        h2.u-subtitle
        {
        font-weight: 400;
        font-size: 3rem;
        line-height: 1.1;
        margin-top: 20px;
        margin-bottom: 20px;
        }
        h1:not(.u-title)
        {
        font-size: 4.5rem;
        line-height: 1.1;
        margin-top: 20px;
        margin-bottom: 20px;
        font-weight: 700;
        }
        h2:not(.u-subtitle)
        {
        font-weight: 400;
        font-size: 3rem;
        line-height: 1.1;
        margin-top: 20px;
        margin-bottom: 20px;
        }
        h3
        {
        font-weight: 400;
        font-size: 2.25rem;
        line-height: 1.2;
        margin-top: 20px;
        margin-bottom: 20px;
        }
        h4
        {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-top: 20px;
        margin-bottom: 20px;
        list-icon-spacing: 0.3;
        list-icon-size: 0.8;
        font-weight: 400;
        }
        h5
        {
        font-weight: 400;
        font-size: 1.25rem;
        line-height: 1.2;
        margin-top: 20px;
        margin-bottom: 20px;
        }
        h6
        {
        font-weight: 400;
        font-size: 1.125rem;
        line-height: 1.2;
        margin-top: 20px;
        margin-bottom: 20px;
        }
        p.u-large-text
        {
        font-size: 1.5rem;
        margin-top: 20px;
        margin-bottom: 20px;
        }
        p.u-small-text
        {
        font-size: 0.875rem;
        margin-top: 20px;
        margin-bottom: 20px;
        }
        p:not(.u-text-variant)
        {
        font-size: 1.125rem;
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 1.8;
        list-icon-spacing: 0.3;
        list-icon-size: 0.8;
        }
        a
        {
        font-size: 1.125rem;
        line-height: 1.6;
        }
        .u-btn
        {
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 1.4;
        }
        blockquote
        {
        font-size: 1.125rem;
        font-style: italic;
        padding-left: 20px;
        border-width: 4px;
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 1.6;
        }
        .u-metadata
        {
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 1.6;
        }
        ul:not(.u-unstyled)
        {
        font-size: 1.125rem;
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 1.6;
        }
        ol
        {
        font-size: 1.125rem;
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 1.6;
        }
        .u-post-content
        {
        font-size: 1.125rem;
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 1.6;
        }
        .u-input
        {
        border-width: 1px;
        borders: top right bottom left;
        }
        /** common-rules **/

        /** publish-rules **/
        /*begin-media rules*/
        @media (max-width: 1199px) {
        h1.u-title
        {
        font-size: 4.5rem;
        }
        }
        @media (max-width: 767px) {
        h1.u-title
        {
        font-size: 3.75rem;
        }
        }
        @media (max-width: 575px) {
        h1.u-title
        {
        font-size: 3rem;
        }
        }
        @media (max-width: 767px) {
        h2.u-subtitle
        {
        font-size: 2.25rem;
        }
        }
        @media (max-width: 575px) {
        h2.u-subtitle
        {
        font-size: 1.875rem;
        }
        }
        @media (max-width: 1199px) {
        h1:not(.u-title)
        {
        font-size: 3.75rem;
        }
        }
        @media (max-width: 767px) {
        h1:not(.u-title)
        {
        font-size: 3rem;
        }
        }
        @media (max-width: 575px) {
        h1:not(.u-title)
        {
        font-size: 2.25rem;
        }
        }
        @media (max-width: 767px) {
        h2:not(.u-subtitle)
        {
        font-size: 2.25rem;
        }
        }
        @media (max-width: 575px) {
        h2:not(.u-subtitle)
        {
        font-size: 1.875rem;
        }
        }
        @media (max-width: 767px) {
        h3
        {
        font-size: 1.875rem;
        }
        }
        @media (max-width: 575px) {
        h3
        {
        font-size: 1.5rem;
        }
        }
        @media (max-width: 767px) {
        p:not(.u-text-variant)
        {
        font-size: 1rem;
        }
        }
        @media (max-width: 767px) {
        a
        {
        font-size: 1rem;
        }
        }
        @media (max-width: 767px) {
        blockquote
        {
        font-size: 1rem;
        }
        }
        @media (max-width: 767px) {
        ul:not(.u-unstyled)
        {
        font-size: 1rem;
        }
        }
        @media (max-width: 767px) {
        ol
        {
        font-size: 1rem;
        }
        }
        @media (max-width: 767px) {
        .u-post-content
        {
        font-size: 1rem;
        }
        }
        /*end-media rules*/
        /** publish-rules **/

        

        /** cms-rules **/
        /*begin-responsive rules*/
        .u-lg h1.u-title
        {
        font-size: 4.5rem;
        }
        .u-md h1.u-title
        {
        font-size: 4.5rem;
        }
        .u-sm h1.u-title
        {
        font-size: 3.75rem;
        }
        .u-xs h1.u-title
        {
        font-size: 3rem;
        }
        .u-sm h2.u-subtitle
        {
        font-size: 2.25rem;
        }
        .u-xs h2.u-subtitle
        {
        font-size: 1.875rem;
        }
        .u-lg h1:not(.u-title)
        {
        font-size: 3.75rem;
        }
        .u-md h1:not(.u-title)
        {
        font-size: 3.75rem;
        }
        .u-sm h1:not(.u-title)
        {
        font-size: 3rem;
        }
        .u-xs h1:not(.u-title)
        {
        font-size: 2.25rem;
        }
        .u-sm h2:not(.u-subtitle)
        {
        font-size: 2.25rem;
        }
        .u-xs h2:not(.u-subtitle)
        {
        font-size: 1.875rem;
        }
        .u-sm h3
        {
        font-size: 1.875rem;
        }
        .u-xs h3
        {
        font-size: 1.5rem;
        }
        .u-sm p:not(.u-text-variant)
        {
        font-size: 1rem;
        }
        .u-xs p:not(.u-text-variant)
        {
        font-size: 1rem;
        }
        .u-sm a
        {
        font-size: 1rem;
        }
        .u-xs a
        {
        font-size: 1rem;
        }
        .u-sm blockquote
        {
        font-size: 1rem;
        }
        .u-xs blockquote
        {
        font-size: 1rem;
        }
        .u-sm ul:not(.u-unstyled)
        {
        font-size: 1rem;
        }
        .u-xs ul:not(.u-unstyled)
        {
        font-size: 1rem;
        }
        .u-sm ol
        {
        font-size: 1rem;
        }
        .u-xs ol
        {
        font-size: 1rem;
        }
        .u-sm .u-post-content
        {
        font-size: 1rem;
        }
        .u-xs .u-post-content
        {
        font-size: 1rem;
        }
        /*end-responsive rules*/
        /** cms-rules **/

        /** color-rules **/
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > a,
        .u-gradient > .u-container-layout > a,
        .u-image:not(.u-shading) > .u-container-layout > a,
        a
        {
        color: #658161;
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > a:hover,
        .u-gradient > .u-container-layout > a:hover,
        .u-image:not(.u-shading) > .u-container-layout > a:hover,
        a:hover
        {
        color: #5b7457;
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > a:active,
        .u-gradient > .u-container-layout > a:active,
        .u-image:not(.u-shading) > .u-container-layout > a:active,
        a:active
        {
        color: #5b7457;
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > .u-btn,
        .u-gradient > .u-container-layout > .u-btn,
        .u-image:not(.u-shading) > .u-container-layout > .u-btn,
        .u-btn
        {
        background-color: #658161;
        color: var(--color-white);
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > .u-btn:hover,
        .u-gradient > .u-container-layout > .u-btn:hover,
        .u-image:not(.u-shading) > .u-container-layout > .u-btn:hover,
        .u-btn:hover
        {
        background-color: #5b7457;
        color: #e6e6e6;
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > .u-btn:focus,
        .u-gradient > .u-container-layout > .u-btn:focus,
        .u-image:not(.u-shading) > .u-container-layout > .u-btn:focus,
        .u-btn:focus
        {
        background-color: #5b7457;
        color: #e6e6e6;
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > .u-btn:active,
        .u-gradient > .u-container-layout > .u-btn:active,
        .u-image:not(.u-shading) > .u-container-layout > .u-btn:active,
        .u-btn:active
        {
        background-color: #5b7457;
        color: #e6e6e6;
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > blockquote,
        .u-gradient > .u-container-layout > blockquote,
        .u-image:not(.u-shading) > .u-container-layout > blockquote,
        blockquote
        {
        border-color: #658161;
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > .u-input,
        .u-gradient > .u-container-layout > .u-input,
        .u-image:not(.u-shading) > .u-container-layout > .u-input,
        .u-input
        {
        border-color: #b3b3b3;
        background-color: var(--color-white);
        color: #000000;
        }
        /** color-rules **/

        /** alt-color-rules **/
        :where(.u-body-color, .u-palette-1-base, .u-palette-1-dark-3, .u-palette-1-dark-2, .u-palette-1-dark-1, .u-palette-1, .u-palette-2-base, .u-palette-2-dark-3, .u-palette-2-dark-2, .u-palette-2-dark-1, .u-palette-2, .u-palette-2-light-1, .u-palette-3-dark-3, .u-palette-3-dark-2, .u-palette-3-dark-1, .u-palette-4-base, .u-palette-4-dark-3, .u-palette-4-dark-2, .u-palette-4-dark-1, .u-palette-5-dark-3, .u-palette-5-dark-2, .u-palette-5-dark-1, .u-grey-40, .u-grey-30, .u-grey-90, .u-grey-80, .u-grey-75, .u-black, .u-grey-70, .u-grey-60, .u-grey-50, .u-grey-dark-3, .u-grey-dark-2, .u-grey-dark-1, .u-grey, .u-shading) a, :where(.u-overlap-contrast .u-header) a:not(.u-nav-link):not(.u-btn)
        {
        color: #d4e2d2;
        }
        :where(.u-body-color, .u-palette-1-base, .u-palette-1-dark-3, .u-palette-1-dark-2, .u-palette-1-dark-1, .u-palette-1, .u-palette-2-base, .u-palette-2-dark-3, .u-palette-2-dark-2, .u-palette-2-dark-1, .u-palette-2, .u-palette-2-light-1, .u-palette-3-dark-3, .u-palette-3-dark-2, .u-palette-3-dark-1, .u-palette-4-base, .u-palette-4-dark-3, .u-palette-4-dark-2, .u-palette-4-dark-1, .u-palette-5-dark-3, .u-palette-5-dark-2, .u-palette-5-dark-1, .u-grey-40, .u-grey-30, .u-grey-90, .u-grey-80, .u-grey-75, .u-black, .u-grey-70, .u-grey-60, .u-grey-50, .u-grey-dark-3, .u-grey-dark-2, .u-grey-dark-1, .u-grey) a:hover
        {
        color: #a1a1a1;
        }
        :where(.u-body-color, .u-palette-1-base, .u-palette-1-dark-3, .u-palette-1-dark-2, .u-palette-1-dark-1, .u-palette-1, .u-palette-2-base, .u-palette-2-dark-3, .u-palette-2-dark-2, .u-palette-2-dark-1, .u-palette-2, .u-palette-2-light-1, .u-palette-3-dark-3, .u-palette-3-dark-2, .u-palette-3-dark-1, .u-palette-4-base, .u-palette-4-dark-3, .u-palette-4-dark-2, .u-palette-4-dark-1, .u-palette-5-dark-3, .u-palette-5-dark-2, .u-palette-5-dark-1, .u-grey-40, .u-grey-30, .u-grey-90, .u-grey-80, .u-grey-75, .u-black, .u-grey-70, .u-grey-60, .u-grey-50, .u-grey-dark-3, .u-grey-dark-2, .u-grey-dark-1, .u-grey) a:active
        {
        color: #a1a1a1;
        }
        :where(.u-shading, .u-overlap-contrast .u-header) .u-btn
        {
        background-color: #d4e2d2;
        color: #000000;
        }
        :where(.u-shading, .u-overlap-contrast .u-header) .u-btn:hover
        {
        background-color: #bbd1b7;
        color: var(--color-white);
        }
        :where(.u-shading, .u-overlap-contrast .u-header) .u-btn:active
        {
        background-color: #bbd1b7;
        color: var(--color-white);
        }
        /** alt-color-rules **/
    


/*end-variables sitestylecss*/
.u-header .u-section-row-1 {
  background-image: none;
}

.u-header .u-sheet-1 {
  min-height: 79px;
}

.u-header .u-layout-wrap-1 {
  width: 935px;
  margin: 0 0 0 auto;
}

.u-header .u-layout-cell-1 {
  min-height: 79px;
}

.u-header .u-container-layout-1 {
  padding: 10px 20px;
}

.u-header .u-btn-1 {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto;
  padding: 0;
}

.u-header .u-icon-1 {
  vertical-align: 0px;
}

.u-header .u-layout-cell-2 {
  min-height: 79px;
}

.u-header .u-container-layout-2 {
  padding: 10px 20px;
}

.u-header .u-btn-2 {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto;
  padding: 0;
}

.u-header .u-layout-cell-3 {
  min-height: 79px;
}

.u-header .u-container-layout-3 {
  padding: 10px 20px;
}

.u-header .u-text-1 {
  font-size: 1rem;
  margin: 0;
}

.u-header .u-layout-cell-4 {
  min-height: 79px;
}

.u-header .u-container-layout-4 {
  padding: 10px 0 10px 20px;
}

.u-header .u-social-icons-1 {
  height: 25px;
  min-height: 16px;
  width: 115px;
  min-width: 68px;
  margin: 0 0 0 auto;
}

.u-header .u-icon-4 {
  height: 100%;
}

.u-header .u-icon-5 {
  height: 100%;
}

.u-header .u-icon-6 {
  height: 100%;
}
.u-header .u-sheet-2 {
  min-height: 104px;
}

.u-header .u-image-1 {
  width: 154px;
  height: 61px;
  margin: 21px auto 0 0;
}

.u-header .u-logo-image-1 {
  width: 100%;
  height: 100%;
}

.u-header .u-menu-1 {
  margin: -46px 0 0 auto;
}

.u-header .u-nav-1 {
  font-weight: 600;
  font-size: 1rem;
}

.u-header .u-nav-3 {
  font-size: 1.25rem;
}
@media (max-width: 1199px) {
  .u-header .u-text-1 {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .u-header .u-image-1 {
    width: 154px;
    height: 61px;
  }

  .u-header .u-menu-1 {
    margin-top: -45px;
  }
}
@media (max-width: 991px) {
  .u-header .u-sheet-1 {
    min-height: 100px;
  }

  .u-header .u-layout-wrap-1 {
    width: 720px;
  }

  .u-header .u-layout-cell-1 {
    min-height: 100px;
  }

  .u-header .u-layout-cell-2 {
    min-height: 100px;
  }

  .u-header .u-layout-cell-3 {
    min-height: 100px;
  }

  .u-header .u-layout-cell-4 {
    min-height: 61px;
  }

  .u-header .u-social-icons-1 {
    width: 100px;
  }
}

@media (max-width: 767px) {
  .u-header .u-sheet-1 {
    min-height: 70px;
  }

  .u-header .u-layout-wrap-1 {
    margin-top: 0;
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }

  .u-header .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-header .u-layout-cell-2 {
    min-height: 70px;
  }

  .u-header .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-header .u-container-layout-3 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-header .u-layout-cell-4 {
    min-height: 70px;
  }

  .u-header .u-container-layout-4 {
    padding-left: 10px;
  }

  .u-header .u-social-icons-1 {
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .u-header .u-sheet-1 {
    min-height: 74px;
  }

  .u-header .u-layout-cell-2 {
    min-height: 74px;
  }

  .u-header .u-container-layout-2 {
    padding-left: 0;
  }

  .u-header .u-btn-2 {
    margin-left: 0;
  }

  .u-header .u-layout-cell-4 {
    min-height: 74px;
  }
}

 .u-footer {
  background-image: none;
}

.u-footer .u-sheet-1 {
  min-height: 464px;
}

.u-footer .u-layout-wrap-1 {
  margin-top: 60px;
  margin-bottom: 0;
}

.u-footer .u-layout-cell-1 {
  min-height: 294px;
}

.u-footer .u-container-layout-1 {
  padding: 30px 30px 30px 0;
}

.u-footer .u-image-1 {
  width: 199px;
  height: 79px;
  margin: 0 auto 0 0;
}

.u-footer .u-logo-image-1 {
  width: 100%;
  height: 100%;
}

.u-footer .u-text-1 {
  margin: 30px auto 0 0;
}

.u-footer .u-social-icons-1 {
  height: 32px;
  min-height: 16px;
  width: 136px;
  min-width: 68px;
  margin: 30px auto 0 0;
}

.u-footer .u-icon-1 {
  height: 100%;
}

.u-footer .u-icon-2 {
  height: 100%;
}

.u-footer .u-icon-3 {
  height: 100%;
}

.u-footer .u-layout-cell-2 {
  min-height: 294px;
}

.u-footer .u-container-layout-2 {
  padding: 30px;
}

.u-footer .u-text-2 {
  margin: 0;
}

.u-footer .u-line-1 {
  width: 218px;
  height: 0;
  margin: 9px auto 0 0;
}

.u-footer .u-text-3 {
  line-height: 2;
  margin: 10px 0 0;
}

.u-footer .u-btn-1 {
  margin-top: 8px;
  border-style: solid;
  font-weight: 400;
  padding: 0;
}

.u-footer .u-btn-2 {
  border-style: solid;
  font-weight: 400;
  padding: 0;
}

.u-footer .u-btn-3 {
  border-style: solid;
  margin-top: 0;
  font-weight: 400;
  padding: 0;
}

.u-footer .u-btn-4 {
  border-style: solid;
  font-weight: 400;
  padding: 0;
}

.u-footer .u-btn-5 {
  border-style: solid;
  font-weight: 400;
  padding: 0;
}

.u-footer .u-layout-cell-3 {
  min-height: 294px;
}

.u-footer .u-container-layout-3 {
  padding: 30px;
}

.u-footer .u-text-4 {
  margin: 0;
}

.u-footer .u-line-2 {
  width: 180px;
  height: 0;
  margin: 9px auto 0 0;
}

.u-footer .u-text-5 {
  margin: 10px 0 0;
}

.u-footer .u-text-6 {
  margin: 16px auto 0 0;
}

.u-footer .u-btn-6 {
  border-style: solid;
  font-weight: 400;
  padding: 0;
}

.u-footer .u-text-7 {
  margin: 20px 0 0;
}

.u-footer .u-btn-7 {
  border-style: solid;
  font-weight: 400;
  padding: 0;
}

.u-footer .u-layout-cell-4 {
  min-height: 294px;
}

.u-footer .u-container-layout-4 {
  padding: 30px 0 30px 30px;
}

.u-footer .u-text-8 {
  margin: 0 60px 0 0;
}

.u-footer .u-line-3 {
  width: 180px;
  height: 0;
  margin: 9px auto 0 0;
}

.u-footer .u-form-1 {
  height: 137px;
  width: 247px;
  margin: 32px 38px 0 0;
}

.u-footer .u-input-1 {
  height: 55px;
}

.u-footer .u-btn-8 {
  text-transform: uppercase;
  font-weight: 700;
  background-image: none;
  --radius: 2px;
  width: 100%;
  padding: 16px 0 17px;
}

.u-footer .u-text-9 {
  font-size: 1rem;
  letter-spacing: 0px;
  font-style: normal;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  margin: 20px auto 60px;
}

.u-footer .u-btn-9 {
  border-style: solid;
  font-style: normal;
  padding: 0;
}
@media (max-width: 1199px) {
  .u-footer .u-sheet-1 {
    min-height: 412px;
  }

  .u-footer .u-layout-cell-1 {
    min-height: 242px;
  }

  .u-footer .u-image-1 {
    width: 199px;
    height: 79px;
  }

  .u-footer .u-layout-cell-2 {
    min-height: 242px;
  }

  .u-footer .u-line-1 {
    width: 175px;
  }

  .u-footer .u-layout-cell-3 {
    min-height: 242px;
  }

  .u-footer .u-line-2 {
    width: 175px;
  }

  .u-footer .u-layout-cell-4 {
    min-height: 242px;
  }

  .u-footer .u-text-8 {
    margin-right: 10px;
  }

  .u-footer .u-form-1 {
    width: 205px;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .u-footer .u-sheet-1 {
    min-height: 270px;
  }

  .u-footer .u-layout-cell-1 {
    min-height: 100px;
  }

  .u-footer .u-layout-cell-2 {
    min-height: 100px;
  }

  .u-footer .u-layout-cell-3 {
    min-height: 100px;
  }

  .u-footer .u-container-layout-3 {
    padding-left: 0;
  }

  .u-footer .u-layout-cell-4 {
    min-height: 282px;
  }

  .u-footer .u-form-1 {
    width: 300px;
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .u-footer .u-sheet-1 {
    min-height: 470px;
  }

  .u-footer .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-footer .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-footer .u-container-layout-3 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-footer .u-layout-cell-4 {
    min-height: 269px;
  }

  .u-footer .u-container-layout-4 {
    padding-left: 10px;
  }

  .u-footer .u-form-1 {
    width: 377px;
    margin-right: 153px;
  }
}
@media (max-width: 575px) {
  .u-footer .u-layout-cell-4 {
    min-height: 100px;
  }

  .u-footer .u-text-8 {
    margin-right: 0;
  }

  .u-footer .u-form-1 {
    width: 330px;
    margin-right: 30px;
  }
}

 /*begin-variables base-font-size*/ 
 html { font-size: 16px; }
 /*end-variables base-font-size*/ .u-section-1 {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('https://assets.nicepagecdn.com/d2cc3eaa/6322200/images/legumes-fruit-salmon-pieces-wooden-plate3.jpg');
  background-size: cover, cover;
}

.u-section-1 .u-sheet-1 {
  min-height: 626px;
}

.u-section-1 .u-text-1 {
  font-weight: 700;
  font-size: 3.75rem;
  margin: 110px auto 0;
}

.u-section-1 .u-text-2 {
  font-size: 1rem;
  letter-spacing: 0px;
  font-style: normal;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  margin: 20px auto 0;
}

.u-section-1 .u-btn-1 {
  border-style: solid;
  font-style: normal;
  padding: 0;
}

.u-section-1 .u-btn-2 {
  border-style: solid;
  text-transform: uppercase;
  font-weight: 700;
  --radius: 10px;
  margin: 41px auto 0;
  padding: 18px 36px 19px;
}

@media (max-width: 1199px) {
   .u-section-1 {
    background-position: 50% 50%;
  }

  .u-section-1 .u-sheet-1 {
    min-height: 516px;
  }
}

@media (max-width: 991px) {
  .u-section-1 .u-sheet-1 {
    min-height: 521px;
  }

  .u-section-1 .u-text-1 {
    margin-top: 73px;
  }

  .u-section-1 .u-btn-2 {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .u-section-1 .u-sheet-1 {
    min-height: 469px;
  }

  .u-section-1 .u-text-1 {
    font-size: 3rem;
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-sheet-1 {
    min-height: 450px;
  }

  .u-section-1 .u-text-1 {
    font-size: 2.25rem;
  }

  .u-section-1 .u-btn-2 {
    margin-bottom: 0;
  }
}.u-section-2 .u-sheet-1 {

}

.u-section-2 .u-list-1 {
  margin-top: -107px;
  margin-bottom: 60px;
}

.u-section-2 .u-repeater-1 {
   grid-template-columns: repeat(3, calc(33% - 14.25px));
  --gap: 20px;
}

.u-section-2 .u-list-item-1 {
  --radius: 20px;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.2);
  margin-top: 0;
  margin-bottom: 0;
}

.u-section-2 .u-container-layout-1 {
  padding: 30px;
}

.u-section-2 .u-icon-1 {
  height: 70px;
  width: 70px;
  margin: 0 auto;
}

.u-section-2 .u-text-1 {
  font-weight: 700;
  margin: 20px 0 0;
}

.u-section-2 .u-text-2 {
  font-style: italic;
  margin: 20px 0 0;
}

.u-section-2 .u-btn-1 {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
  padding: 0;
}

.u-section-2 .u-list-item-2 {
  --radius: 20px;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.2);
  margin-top: 0;
  margin-bottom: 0;
}

.u-section-2 .u-container-layout-2 {
  padding: 30px;
}

.u-section-2 .u-icon-2 {
  height: 70px;
  width: 70px;
  margin: 0 auto;
}

.u-section-2 .u-text-3 {
  font-weight: 700;
  margin: 20px 0 0;
}

.u-section-2 .u-text-4 {
  font-style: italic;
  margin: 20px 0 0;
}

.u-section-2 .u-btn-2 {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
  padding: 0;
}

.u-section-2 .u-list-item-3 {
  --radius: 20px;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.2);
  margin-top: 0;
  margin-bottom: 0;
}

.u-section-2 .u-container-layout-3 {
  padding: 30px;
}

.u-section-2 .u-icon-3 {
  height: 70px;
  width: 70px;
  margin: 0 auto;
}

.u-section-2 .u-text-5 {
  font-weight: 700;
  margin: 20px 0 0;
}

.u-section-2 .u-text-6 {
  font-style: italic;
  margin: 20px 0 0;
}

.u-section-2 .u-btn-3 {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
  padding: 0;
}

.u-section-2 .u-list-item-4 {
  --radius: 20px;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.2);
  margin-top: 0;
  margin-bottom: 0;
}

.u-section-2 .u-container-layout-4 {
  padding: 30px;
}

.u-section-2 .u-icon-4 {
  height: 70px;
  width: 70px;
  margin: 0 auto;
}

.u-section-2 .u-text-7 {
  font-weight: 700;
  margin: 20px 0 0;
}

.u-section-2 .u-text-8 {
  font-style: italic;
  margin: 20px 0 0;
}

.u-section-2 .u-btn-4 {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
  padding: 0;
}

@media (max-width: 1199px) {
  .u-section-2 .u-repeater-1 {
    grid-gap: 20px;
  }

  .u-section-2 .u-list-item-1 {
    --animation-custom_in-opacity: 0;
    --animation-custom_in-rotate: 0deg;
    --animation-custom_in-scale: 1;
  }

  .u-section-2 .u-list-item-2 {
    --animation-custom_in-opacity: 0;
    --animation-custom_in-rotate: 0deg;
    --animation-custom_in-scale: 1;
  }

  .u-section-2 .u-list-item-3 {
    --animation-custom_in-opacity: 0;
    --animation-custom_in-rotate: 0deg;
    --animation-custom_in-scale: 1;
  }

  .u-section-2 .u-list-item-4 {
    --animation-custom_in-opacity: 0;
    --animation-custom_in-rotate: 0deg;
    --animation-custom_in-scale: 1;
  }
}

@media (max-width: 991px) {
  .u-section-2 .u-sheet-1 {
   
  }

  .u-section-2 .u-repeater-1 {
    grid-template-columns: repeat(3, calc(33% - 10px));
    min-height: 367px;
    grid-auto-columns: calc(33% - 10px);
  }
}

@media (max-width: 767px) {
  .u-section-2 .u-repeater-1 {
    grid-template-columns: 100%;
    grid-auto-columns: calc(100% - 0px);
  }

  .u-section-2 .u-container-layout-1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-2 .u-container-layout-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-2 .u-container-layout-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-2 .u-container-layout-4 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
  .u-section-2 .u-repeater-1 {
    grid-auto-columns: 100%;
  }
}

.u-block-f258-56:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-56:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-56:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-block-f258-56:not([data-block-selected]):not([data-cell-selected]).u-block-f258-56:not([data-block-selected]):not([data-cell-selected]).u-block-f258-56:not([data-block-selected]):not([data-cell-selected]):hover:before {
  background-color: #333129 !important;
}

.u-block-f258-62:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-62:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-62:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-block-f258-62:not([data-block-selected]):not([data-cell-selected]).u-block-f258-62:not([data-block-selected]):not([data-cell-selected]).u-block-f258-62:not([data-block-selected]):not([data-cell-selected]):hover:before {
  background-color: #333129 !important;
}

.u-block-f258-68:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-68:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-68:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-block-f258-68:not([data-block-selected]):not([data-cell-selected]).u-block-f258-68:not([data-block-selected]):not([data-cell-selected]).u-block-f258-68:not([data-block-selected]):not([data-cell-selected]):hover:before {
  background-color: #333129 !important;
}

.u-block-f258-74:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-74:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-74:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-block-f258-74:not([data-block-selected]):not([data-cell-selected]).u-block-f258-74:not([data-block-selected]):not([data-cell-selected]).u-block-f258-74:not([data-block-selected]):not([data-cell-selected]):hover:before {
  background-color: #333129 !important;
}

.u-block-f258-59:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-59:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-59:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-container-layout:hover .u-block-f258-59:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-container-layout.hover .u-block-f258-59:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-block-f258-65:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-65:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-65:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-container-layout:hover .u-block-f258-65:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-container-layout.hover .u-block-f258-65:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-block-f258-71:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-71:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-71:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-container-layout:hover .u-block-f258-71:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-container-layout.hover .u-block-f258-71:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-block-f258-77:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-77:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-77:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-container-layout:hover .u-block-f258-77:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-container-layout.hover .u-block-f258-77:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-block-f258-66:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-66:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-66:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-container-layout:hover .u-block-f258-66:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-container-layout.hover .u-block-f258-66:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-block-f258-60:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-60:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-60:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-container-layout:hover .u-block-f258-60:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-container-layout.hover .u-block-f258-60:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-block-f258-72:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-72:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-72:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-container-layout:hover .u-block-f258-72:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-container-layout.hover .u-block-f258-72:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-block-f258-78:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-78:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-78:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-container-layout:hover .u-block-f258-78:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-container-layout.hover .u-block-f258-78:not([data-block-selected]):not([data-cell-selected]) {
  color: #ffffff !important;
}

.u-block-f258-61:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-61:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-61:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-container-layout:hover .u-block-f258-61:not([data-block-selected]):not([data-cell-selected]) {
  transform: translateX(0px) translateY(-5px) scale(1) !important;
}

.u-container-layout.hover .u-block-f258-61:not([data-block-selected]):not([data-cell-selected]) {
  transform: translateX(0px) translateY(-5px) scale(1) !important;
}

.u-block-f258-67:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-67:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-67:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-container-layout:hover .u-block-f258-67:not([data-block-selected]):not([data-cell-selected]) {
  transform: translateX(0px) translateY(-5px) scale(1) !important;
}

.u-container-layout.hover .u-block-f258-67:not([data-block-selected]):not([data-cell-selected]) {
  transform: translateX(0px) translateY(-5px) scale(1) !important;
}

.u-block-f258-73:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-73:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-73:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-container-layout:hover .u-block-f258-73:not([data-block-selected]):not([data-cell-selected]) {
  transform: translateX(0px) translateY(-5px) scale(1) !important;
}

.u-container-layout.hover .u-block-f258-73:not([data-block-selected]):not([data-cell-selected]) {
  transform: translateX(0px) translateY(-5px) scale(1) !important;
}

.u-block-f258-79:not([data-block-selected]):not([data-cell-selected]),
.u-block-f258-79:not([data-block-selected]):not([data-cell-selected]):before,
.u-block-f258-79:not([data-block-selected]):not([data-cell-selected]) > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, background-size, background-position;
}

.u-container-layout:hover .u-block-f258-79:not([data-block-selected]):not([data-cell-selected]) {
  transform: translateX(0px) translateY(-5px) scale(1) !important;
}

.u-container-layout.hover .u-block-f258-79:not([data-block-selected]):not([data-cell-selected]) {
  transform: translateX(0px) translateY(-5px) scale(1) !important;
} .u-section-3 {
  background-image: none;
}

.u-section-3 .u-sheet-1 {
  min-height: 619px;
}

.u-section-3 .u-text-1 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  margin: 60px auto 0;
}

.u-section-3 .u-list-1 {
  margin: 30px 0 60px;
}

.u-section-3 .u-repeater-1 {
  grid-auto-columns: calc(33.3333% - 17.3333px);
  grid-template-columns: repeat(3, calc(33.3333% - 17.3333px));
  min-height: 388px;
  --gap: 26px;
}

.u-section-3 .u-list-item-1 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-3 .u-container-layout-1 {
  padding: 31px 0 30px;
}

.u-section-3 .u-icon-1 {
  height: 39px;
  width: 39px;
  text-shadow: -2px 0 0 rgba(0,0,0,0);
  margin: 2px auto 0 0;
}

.u-section-3 .u-text-2 {
  margin: -39px 0 0 56px;
}

.u-section-3 .u-text-3 {
  font-size: 1rem;
  margin: 13px 0 0 57px;
}

.u-section-3 .u-list-item-2 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-3 .u-container-layout-2 {
  padding: 31px 0 30px;
}

.u-section-3 .u-icon-2 {
  height: 39px;
  width: 39px;
  text-shadow: -2px 0 0 rgba(0,0,0,0);
  margin: 2px auto 0 0;
}

.u-section-3 .u-text-4 {
  font-weight: 400;
  font-size: 1.5rem;
  margin: -39px 0 0 56px;
}

.u-section-3 .u-text-5 {
  font-size: 1rem;
  font-style: normal;
  margin: 13px 0 0 57px;
}

.u-section-3 .u-list-item-3 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-3 .u-container-layout-3 {
  padding: 31px 0 30px;
}

.u-section-3 .u-icon-3 {
  height: 39px;
  width: 39px;
  text-shadow: -2px 0 0 rgba(0,0,0,0);
  margin: 2px auto 0 0;
}

.u-section-3 .u-text-6 {
  font-weight: 400;
  font-size: 1.5rem;
  margin: -39px 0 0 56px;
}

.u-section-3 .u-text-7 {
  font-size: 1rem;
  font-style: normal;
  margin: 13px 0 0 57px;
}

.u-section-3 .u-list-item-4 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-3 .u-container-layout-4 {
  padding: 31px 0 30px;
}

.u-section-3 .u-icon-4 {
  height: 39px;
  width: 39px;
  text-shadow: -2px 0 0 rgba(0,0,0,0);
  margin: 2px auto 0 0;
}

.u-section-3 .u-text-8 {
  font-weight: 400;
  font-size: 1.5rem;
  margin: -39px 0 0 56px;
}

.u-section-3 .u-text-9 {
  font-size: 1rem;
  font-style: normal;
  margin: 13px 0 0 57px;
}

.u-section-3 .u-list-item-5 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-3 .u-container-layout-5 {
  padding: 31px 0 30px;
}

.u-section-3 .u-icon-5 {
  height: 39px;
  width: 39px;
  text-shadow: -2px 0 0 rgba(0,0,0,0);
  margin: 2px auto 0 0;
}

.u-section-3 .u-text-10 {
  font-weight: 400;
  font-size: 1.5rem;
  margin: -39px 0 0 56px;
}

.u-section-3 .u-text-11 {
  font-size: 1rem;
  font-style: normal;
  margin: 13px 0 0 57px;
}

.u-section-3 .u-list-item-6 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-3 .u-container-layout-6 {
  padding: 31px 0 30px;
}

.u-section-3 .u-icon-6 {
  height: 39px;
  width: 39px;
  text-shadow: -2px 0 0 rgba(0,0,0,0);
  margin: 2px auto 0 0;
}

.u-section-3 .u-text-12 {
  font-weight: 400;
  font-size: 1.5rem;
  margin: -39px 0 0 56px;
}

.u-section-3 .u-text-13 {
  font-size: 1rem;
  font-style: normal;
  margin: 13px 0 0 57px;
}

@media (max-width: 1199px) {
  .u-section-3 .u-list-1 {
    margin-right: initial;
    margin-left: initial;
  }

  .u-section-3 .u-repeater-1 {
    grid-auto-columns: calc(33.333333333333336% - 17.3333px);
    grid-template-columns: repeat(3, calc(33.333333333333336% - 17.3333px));
    min-height: 320px;
    grid-gap: 26px;
  }

  .u-section-3 .u-text-2 {
    width: auto;
    margin-top: -41px;
    margin-left: 60px;
  }

  .u-section-3 .u-text-3 {
    width: auto;
    margin-top: 23px;
    margin-left: 60px;
  }

  .u-section-3 .u-text-4 {
    width: auto;
    margin-top: -41px;
    margin-left: 60px;
  }

  .u-section-3 .u-text-5 {
    width: auto;
    margin-top: 23px;
    margin-left: 60px;
  }

  .u-section-3 .u-text-6 {
    width: auto;
    margin-top: -41px;
    margin-left: 60px;
  }

  .u-section-3 .u-text-7 {
    width: auto;
    margin-top: 23px;
    margin-left: 60px;
  }

  .u-section-3 .u-text-8 {
    width: auto;
    margin-top: -41px;
    margin-left: 60px;
  }

  .u-section-3 .u-text-9 {
    width: auto;
    margin-top: 23px;
    margin-left: 60px;
  }

  .u-section-3 .u-text-10 {
    width: auto;
    margin-top: -41px;
    margin-left: 60px;
  }

  .u-section-3 .u-text-11 {
    width: auto;
    margin-top: 23px;
    margin-left: 60px;
  }

  .u-section-3 .u-text-12 {
    width: auto;
    margin-top: -41px;
    margin-left: 60px;
  }

  .u-section-3 .u-text-13 {
    width: auto;
    margin-top: 23px;
    margin-left: 60px;
  }
}

@media (max-width: 991px) {
  .u-section-3 .u-repeater-1 {
    grid-auto-columns: calc(50% - 12.999975000000001px);
    grid-template-columns: repeat(2, calc(50% - 12.999975000000001px));
    min-height: 551px;
  }

  .u-section-3 .u-container-layout-1 {
    padding-top: 0px;
  }

  .u-section-3 .u-text-2 {
    margin-top: 20px;
    margin-left: 0;
  }

  .u-section-3 .u-text-3 {
    margin-left: 0;
  }

  .u-section-3 .u-container-layout-2 {
    padding-top: 0px;
  }

  .u-section-3 .u-text-4 {
    margin-top: 20px;
    margin-left: 0;
  }

  .u-section-3 .u-text-5 {
    margin-left: 0;
  }

  .u-section-3 .u-container-layout-3 {
    padding-top: 0px;
  }

  .u-section-3 .u-text-6 {
    margin-top: 20px;
    margin-left: 0;
  }

  .u-section-3 .u-text-7 {
    margin-left: 0;
  }

  .u-section-3 .u-container-layout-4 {
    padding-top: 30px;
  }

  .u-section-3 .u-text-8 {
    margin-top: 20px;
    margin-left: 0;
  }

  .u-section-3 .u-text-9 {
    margin-left: 0;
  }

  .u-section-3 .u-container-layout-5 {
    padding-top: 30px;
  }

  .u-section-3 .u-text-10 {
    margin-top: 20px;
    margin-left: 0;
  }

  .u-section-3 .u-text-11 {
    margin-left: 0;
  }

  .u-section-3 .u-container-layout-6 {
    padding-top: 30px;
  }

  .u-section-3 .u-text-12 {
    margin-top: 20px;
    margin-left: 0;
  }

  .u-section-3 .u-text-13 {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .u-section-3 .u-repeater-1 {
    grid-auto-columns: calc(50% - 13px);
    grid-template-columns: repeat(2, calc(50% - 13px));
  }
}

@media (max-width: 575px) {
  .u-section-3 .u-repeater-1 {
    grid-auto-columns: calc(100% - 0px);
    grid-template-columns: 100%;
  }
} .u-section-4 {
  background-image: none;
}

.u-section-4 .u-sheet-1 {
  min-height: 661px;
}

.u-section-4 .u-text-1 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  margin: 60px auto 0;
}

.u-section-4 .u-text-2 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
  margin: 11px auto 0;
}

.u-section-4 .u-list-1 {
  margin-top: 41px;
  margin-bottom: 60px;
}

.u-section-4 .u-repeater-1 {
 grid-template-columns: repeat(3, 33.333333333333336%);
 
  --gap: 22px;
}

.u-section-4 .u-list-item-1 {
  background-image: none;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-4 .u-container-layout-1 {
  padding: 30px;
}

.u-section-4 .u-group-1 {
  min-height: 50px;
  width: 50px;
  margin: 0 auto;
}

.u-section-4 .u-text-3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto;
}

.u-section-4 .u-text-4 {
  margin: 20px 0 0;
}

.u-section-4 .u-text-5 {
  font-style: italic;
  font-size: 1rem;
  margin: 20px 0 0;
}

.u-section-4 .u-btn-1 {
  border-style: solid;
  font-weight: 700;
  font-size: 0.9375rem;
  --radius: 10px;
  margin: 20px auto 0;
  padding: 6px 31px 6px 30px;
}

.u-section-4 .u-list-item-2 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-4 .u-container-layout-3 {
  padding: 30px;
}

.u-section-4 .u-group-2 {
  min-height: 50px;
  width: 50px;
  margin: 0 auto;
}

.u-section-4 .u-text-6 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto;
}

.u-section-4 .u-text-7 {
  font-weight: 400;
  margin: 20px 0 0;
}

.u-section-4 .u-text-8 {
  font-style: italic;
  font-size: 1rem;
  margin: 20px 0 0;
}

.u-section-4 .u-btn-2 {
  border-style: solid;
  font-weight: 700;
  font-size: 0.9375rem;
  --radius: 10px;
  margin: 20px auto 0;
  padding: 6px 31px 6px 30px;
}

.u-section-4 .u-list-item-3 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-4 .u-container-layout-5 {
  padding: 30px;
}

.u-section-4 .u-group-3 {
  min-height: 50px;
  width: 50px;
  margin: 0 auto;
}

.u-section-4 .u-text-9 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto;
}

.u-section-4 .u-text-10 {
  font-weight: 400;
  margin: 20px 0 0;
}

.u-section-4 .u-text-11 {
  font-style: italic;
  font-size: 1rem;
  margin: 20px 0 0;
}

.u-section-4 .u-btn-3 {
  border-style: solid;
  font-weight: 700;
  font-size: 0.9375rem;
  --radius: 10px;
  margin: 20px auto 0;
  padding: 6px 31px 6px 30px;
}

.u-section-4 .u-list-item-4 {
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 300px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
}

.u-section-4 .u-container-layout-7 {
  padding: 30px;
}

.u-section-4 .u-group-4 {
  min-height: 50px;
  width: 50px;
  margin: 0 auto;
}

.u-section-4 .u-text-12 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto;
}

.u-section-4 .u-text-13 {
  font-weight: 400;
  margin: 20px 0 0;
}

.u-section-4 .u-text-14 {
  font-style: italic;
  font-size: 1rem;
  margin: 20px 0 0;
}

.u-section-4 .u-btn-4 {
  border-style: solid;
  font-weight: 700;
  font-size: 0.9375rem;
  --radius: 10px;
  margin: 20px auto 0;
  padding: 6px 31px 6px 30px;
}

@media (max-width: 1199px) {
  .u-section-4 .u-repeater-1 {
    min-height: 314px;
    grid-gap: 22px;
  }
}

@media (max-width: 991px) {
  .u-section-4 .u-sheet-1 {
    min-height: 938px;
  }

  .u-section-4 .u-repeater-1 {
    grid-template-columns: repeat(2, calc(50% - 11px));
    min-height: 697px;
    grid-auto-columns: calc(50% - 11px);
  }
}

@media (max-width: 767px) {
  .u-section-4 .u-repeater-1 {
    grid-template-columns: 100%;
    grid-auto-columns: calc(100% - 0px);
  }

  .u-section-4 .u-container-layout-1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-4 .u-text-3 {
    font-size: 1.5rem;
  }

  .u-section-4 .u-container-layout-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-4 .u-text-6 {
    font-size: 1.5rem;
  }

  .u-section-4 .u-container-layout-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-4 .u-text-9 {
    font-size: 1.5rem;
  }

  .u-section-4 .u-container-layout-7 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-4 .u-text-12 {
    font-size: 1.5rem;
  }
}

@media (max-width: 575px) {
  .u-section-4 .u-repeater-1 {
    grid-auto-columns: 100%;
  }
} .u-section-5 {
  background-image: none;
}

.u-section-5 .u-sheet-1 {
  min-height: 678px;
}

.u-section-5 .u-layout-wrap-1 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.u-section-5 .u-layout-cell-1 {
  min-height: 547px;
  --animation-custom_in-translate_x: -300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 1;
  background-image: none;
  --radius: 10px;
}

.u-section-5 .u-container-layout-1 {
  padding: 30px 50px 30px 30px;
}

.u-section-5 .u-image-1 {
  width: 169px;
  height: 169px;
  background-image: url("https://assets.nicepagecdn.com/d2cc3eaa/6322200/images/brunette-woman-eating-salad_23-2.jpg");
  background-position: 50% 50%;
  margin: 0 auto 0 0;
}

.u-section-5 .u-text-1 {
  font-size: 3rem;
  margin: 20px 0 0;
}

.u-section-5 .u-text-2 {
  font-size: 1.25rem;
  margin: 30px auto 0 0;
}

.u-section-5 .u-layout-cell-2 {
  min-height: 546px;
  --animation-custom_in-translate_x: 300px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-scale: 0.3;
}

.u-section-5 .u-container-layout-2 {
  padding: 30px;
}

.u-section-5 .u-form-1 {
  height: 590px;
  width: 632px;
  margin: 0 auto;
}

.u-section-5 .u-form-group-1 {
  margin-left: 0;
}

.u-section-5 .u-form-group-2 {
  margin-left: 0;
}

.u-section-5 .u-form-group-4 {
  margin-left: 0;
}

.u-section-5 .u-btn-1 {
  background-image: none;
  text-transform: uppercase;
  font-size: 1.125rem;
  --radius: 10px;
  font-weight: 400;
  width: 100%;
  padding: 16px 0 17px;
}

@media (max-width: 1199px) {
  .u-section-5 .u-sheet-1 {
    min-height: 582px;
  }

  .u-section-5 .u-layout-cell-1 {
    min-height: 451px;
  }

  .u-section-5 .u-image-1 {
    width: 132px;
    height: 132px;
  }

  .u-section-5 .u-layout-cell-2 {
    min-height: 450px;
  }

  .u-section-5 .u-form-1 {
    width: 535px;
  }
}

@media (max-width: 991px) {
  .u-section-5 .u-sheet-1 {
    min-height: 231px;
  }

  .u-section-5 .u-layout-cell-1 {
    min-height: 100px;
  }

  .u-section-5 .u-container-layout-1 {
    padding-right: 30px;
  }

  .u-section-5 .u-layout-cell-2 {
    min-height: 547px;
  }

  .u-section-5 .u-form-1 {
    height: 487px;
    margin-right: 30px;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .u-section-5 .u-sheet-1 {
    min-height: 331px;
  }

  .u-section-5 .u-container-layout-1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-5 .u-text-1 {
    font-size: 1.875rem;
  }

  .u-section-5 .u-text-2 {
    font-size: 1rem;
  }

  .u-section-5 .u-container-layout-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-5 .u-form-1 {
    margin-right: 10px;
    width: 520px;
  }
}

@media (max-width: 575px) {
  .u-section-5 .u-text-1 {
    font-size: 1.5rem;
  }

  .u-section-5 .u-layout-cell-2 {
    min-height: 100px;
  }

  .u-section-5 .u-form-1 {
    width: 320px;
    margin-right: 0;
  }
}

/* ========== NICEPAGE UTILITY CLASSES & SECTIONS ========== */

/* Section Base Styles */
.u-section-1,
.u-section-2,
.u-section-3,
.u-section-4,
.u-section-5 {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.u-section-1 {
  background: linear-gradient(135deg, rgba(42, 51, 41, 0.95) 0%, rgba(72, 90, 70, 0.95) 100%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  background-attachment: fixed;
  color: var(--color-white);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-section-2,
.u-section-3,
.u-section-4,
.u-section-5 {
  background: var(--color-white);
  border-top: 1px solid var(--color-light-gray);
}

/* Section Backgrounds - Alternating */
.u-section-2,
.u-section-4 {
  background: var(--color-white);
}

.u-section-3,
.u-section-5 {
  background: var(--color-lighter-gray);
}

/* Sheet Container */
.u-clearfix {
  clear: both;
}

.u-sheet,
.u-sheet-1,
.u-sheet-2,
.u-sheet-3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* List & Repeater Styles */
.u-list,
.u-list-1 {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.u-repeater,
.u-repeater-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 100%;
}

.u-repeater-1 {
   grid-template-columns: repeat(3, 33.333333333333336%);
}

/* List Item - Card Base */
.u-list-item,
.u-repeater-item {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 2px 8px var(--color-shadow-light);
  transition: all var(--transition-speed) var(--transition-easing);
  overflow: hidden;
}

.u-list-item:hover,
.u-repeater-item:hover {
  box-shadow: 0 8px 24px var(--color-shadow-medium);
  transform: translateY(-6px);
}

/* Container Styles */
.u-container-style {
  background: var(--color-white);
  padding: 0;
}

.u-white {
  background: var(--color-white) !important;
  border: 1px solid var(--color-light-gray);
}

.u-container-layout,
.u-similar-container {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.u-valign-top {
  justify-content: flex-start;
}

.u-valign-bottom {
  justify-content: flex-end;
}

.u-valign-middle {
  justify-content: center;
}

/* Alignment Classes */
.u-align-center {
  text-align: center;
}

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

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

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

.u-container-align-left {
  text-align: left;
}

.u-expanded-width {
  width: 100%;
}

/* Text Styles */
.u-text,
.u-text-1,
.u-text-2,
.u-text-3,
.u-text-4,
.u-text-5,
.u-text-6,
.u-text-7,
.u-text-8 {
  font-family: var(--font-family-body);
  color: var(--color-text-medium);
  line-height: 1.6;
}

.u-text-1,
.u-text-2 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  color: var(--color-text-dark);
}

.u-text-1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.u-text-2 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
  font-weight: 400;
}

.u-text-3,
.u-text-4,
.u-text-5,
.u-text-6 {
  font-size: 1rem;
}

/* Buttons */
.u-btn,
.u-button-style {
  display: inline-block;
  padding: 12px 30px;
  background: var(--color-brand-dark-3);
  color: var(--color-white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-easing);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.u-btn:hover,
.u-button-style:hover {
  background: var(--color-brand-dark-2);
  box-shadow: 0 4px 12px var(--color-shadow-primary);
  transform: translateY(-2px);
}

.u-btn-1,
.u-btn-2,
.u-btn-3,
.u-btn-4 {
  margin-top: 15px;
  font-size: 0.875rem;
  padding: 10px 25px;
}

/* Icons */
.u-icon,
.u-file-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Delays */
.u-repeater-item {
  animation: slideInUp 0.6s ease-out forwards;
  opacity: 0;
}

.u-list-item-1 {
  animation-delay: 0.1s;
}

.u-list-item-2 {
  animation-delay: 0.2s;
}

.u-list-item-3 {
  animation-delay: 0.3s;
}

.u-list-item-4 {
  animation-delay: 0.4s;
}

.u-list-item-5 {
  animation-delay: 0.5s;
}

.u-list-item-6 {
  animation-delay: 0.6s;
}

/* Radius Classes */
.u-radius {
  border-radius: var(--border-radius);
}

.u-shape-round {
  border-radius: var(--border-radius-lg);
}

/* Spacing */
.u-spacing-15 {
  line-height: 1.5;
}

.u-spacing-20 {
  line-height: 2;
}

.u-spacing-30 {
  line-height: 2.5;
}

/* ========== DRMUD CUSTOM COMPONENTS ========== */

/* Feature Cards */
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.u-repeater-item h4 {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  margin-top: 0;
}

.u-repeater-item p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.5;
}

/* List Items Inside Cards */
.u-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.u-list-item {
  background: transparent;
  box-shadow: none;
  border: none;
}

.u-list-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
}

/* Process Steps */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--color-brand-dark-3);
  color: var(--color-white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Testimonials */
.testimonial-rating {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--color-warning);
  letter-spacing: 2px;
}

.testimonial-author h5 {
  font-family: var(--font-family-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 15px 0 5px 0;
}

.testimonial-author p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 1199px) {
  .u-section-1,
  .u-section-2,
  .u-section-3,
  .u-section-4,
  .u-section-5 {
    padding: 50px 0;
  }

  .u-sheet,
  .u-sheet-1 {
    padding: 50px 30px;
  }

  .u-repeater-1 {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .u-text-1 {
    font-size: 2.2rem;
  }

  .u-text-2 {
    font-size: 1.05rem;
  }
}

@media (max-width: 991px) {
  .u-section-1,
  .u-section-2,
  .u-section-3,
  .u-section-4,
  .u-section-5 {
    padding: 40px 0;
  }

  .u-sheet,
  .u-sheet-1 {
    padding: 40px 25px;
  }

  .u-repeater-1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .u-text-1 {
    font-size: 1.9rem;
  }

  .u-text-2 {
    font-size: 0.95rem;
  }

  .u-container-layout,
  .u-similar-container {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .u-section-1,
  .u-section-2,
  .u-section-3,
  .u-section-4,
  .u-section-5 {
    padding: 30px 0;
  }

  .u-sheet,
  .u-sheet-1 {
    padding: 30px 15px;
  }

  .u-repeater-1 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .u-text-1 {
    font-size: 1.6rem;
  }

  .u-text-2 {
    font-size: 0.9rem;
  }

  .u-container-layout,
  .u-similar-container {
    padding: 20px;
  }

  .u-icon,
  .u-file-icon {
    font-size: 2.2rem;
  }

  .u-list-item-1,
  .u-list-item-2,
  .u-list-item-3,
  .u-list-item-4,
  .u-list-item-5,
  .u-list-item-6 {
    animation-delay: 0.1s !important;
  }
}

@media (max-width: 575px) {
  .u-sheet,
  .u-sheet-1 {
    padding: 20px 10px;
  }

  .u-text-1 {
    font-size: 1.4rem;
  }

  .u-text-2 {
    font-size: 0.85rem;
  }

  .u-btn,
  .u-button-style {
    font-size: 0.8rem;
    padding: 10px 20px;
  }

  .u-container-layout,
  .u-similar-container {
    padding: 15px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* ========== IMAGE PLACEHOLDER STYLES ========== */
.img-placeholder-bg {
  background-image: url('../img/placeholder.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 16px var(--color-shadow-medium);
}

.split-section img,
.feature-image {
  background-image: url('../img/placeholder.svg');
  background-size: cover;
  background-position: center;
  background-color: #e8e8e8;
}

/* Container backgrounds for visual interest */
.u-section-2,
.u-section-3,
.u-section-4,
.u-section-5 {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
}

.u-section-2 {
  background-image:  
                    linear-gradient(180deg, rgba(248, 253, 246, 0.85), rgba(248, 253, 246, 0.85));
  background-size: auto, cover;
}

.u-section-3 {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
  background-size: auto, cover;
}

.u-section-4 {
    background-image: linear-gradient(180deg, rgba(248, 253, 246, 0.87), rgba(248, 253, 246, 0.87));
  background-size: auto, cover;
}

.u-section-5 {
  background-image: linear-gradient(180deg, rgba(232, 245, 233, 0.8), rgba(232, 245, 233, 0.8));
  background-size: auto, cover;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-brand-dark-1), var(--color-brand-main));
}

.feature-card,
.benefit-card,
.segment-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

/* Process step cards with accent */
.process-step {
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-brand-main), transparent);
}