﻿@charset "UTF-8";
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

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

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

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

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

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}
.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

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

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

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

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

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

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

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

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

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

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

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

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

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

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

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

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

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

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

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

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

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

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

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

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

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

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

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

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/***** RESPONSIVE HELPERS *****/
/*

The below block of code will re-define Bootstrap 4's breakpoints and container max-widths.
Bootstrap 4's breakpointed classes are compiled based on the below SCSS maps within Bootstrap's own
stylesheets. By overriding them here with our own breakpoints and max-widths, we can automatically
add our own breakpoints to Bootstrap's existing classes:
eg .col-[your-breakpoint-name]-12

*/
:root {
  --max-width-sm: 540px;
  --max-width-md: 720px;
  --max-width-lg: 960px;
  --max-width-xl: 1140px;
  --max-width-xxl: 1280px;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1366px) {
  .container {
    max-width: 1280px;
  }
}

.container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1366px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1280px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

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

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1366px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .order-xxl-first {
    order: -1;
  }

  .order-xxl-last {
    order: 13;
  }

  .order-xxl-0 {
    order: 0;
  }

  .order-xxl-1 {
    order: 1;
  }

  .order-xxl-2 {
    order: 2;
  }

  .order-xxl-3 {
    order: 3;
  }

  .order-xxl-4 {
    order: 4;
  }

  .order-xxl-5 {
    order: 5;
  }

  .order-xxl-6 {
    order: 6;
  }

  .order-xxl-7 {
    order: 7;
  }

  .order-xxl-8 {
    order: 8;
  }

  .order-xxl-9 {
    order: 9;
  }

  .order-xxl-10 {
    order: 10;
  }

  .order-xxl-11 {
    order: 11;
  }

  .order-xxl-12 {
    order: 12;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.slick-arrow, .slick-dots button {
  font-weight: 700;
}

.slick-slide:not(.slick-active) {
  transition-delay: 300ms !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("styles/ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}
.slick-prev:before,
.slick-next:before {
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "\f053";
}
[dir=rtl] .slick-prev:before {
  content: "\f054";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "\f054";
}
[dir=rtl] .slick-next:before {
  content: "\f053";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: none;
  width: 20px;
  height: 20px;
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #ffffff;
  opacity: 1;
}

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */
.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #000000;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: "Ginto Normal", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.pika-single.is-hidden {
  display: none;
}
.pika-single.is-bound {
  position: absolute;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}

.pika-single:before, .pika-single:after {
  content: " ";
  display: table;
}
.pika-single:after {
  clear: both;
}

.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}

.pika-title {
  position: relative;
  text-align: center;
}
.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  opacity: 0;
}

.pika-label {
  display: inline-block;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #ffffff;
  background-color: #2261ae;
}

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 0.5;
}
.pika-prev:hover,
.pika-next:hover {
  opacity: 1;
}
.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: 0.2;
}

.pika-prev,
.is-rtl .pika-next {
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
}

.pika-next,
.is-rtl .pika-prev {
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
}

.pika-select {
  display: inline-block;
}

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
.pika-table th,
.pika-table td {
  width: 14.2857142857%;
  padding: 0;
}
.pika-table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: bold;
  text-align: center;
}
.pika-table abbr {
  border-bottom: none;
  cursor: help;
}

.pika-button {
  cursor: pointer;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  background: #f9f7f6;
}
.is-today .pika-button {
  color: #2261ae;
  font-weight: bold;
}
.is-selected .pika-button {
  color: #000000;
  font-weight: bold;
  background: #ffcb58;
  box-shadow: inset 0 1px 3px none;
  border-radius: 3px;
}
.is-disabled .pika-button, .is-outside-current-month .pika-button {
  color: #999;
  opacity: 0.3;
}
.is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
}
.pika-button:hover {
  color: #000000;
  background: rgba(255, 203, 88, 0.5);
  box-shadow: none;
  border-radius: 3px;
}
.pika-button .is-selection-disabled {
  pointer-events: none;
  cursor: default;
}

.pika-week {
  font-size: 11px;
  color: #999;
}

.is-inrange .pika-button {
  color: #666;
  background: #D5E9F7;
}

.is-startrange .pika-button {
  color: #fff;
  background: #6CB31D;
  box-shadow: none;
  border-radius: 3px;
}

.is-endrange .pika-button {
  color: #fff;
  background: #33aaff;
  box-shadow: none;
  border-radius: 3px;
}

.pika-single {
  border: none;
  border-radius: 5px;
  overflow: hidden;
}
.pika-table th abbr {
  cursor: default;
  text-decoration: none;
}
.pika-table th, .pika-table td {
  padding: 2px;
}
.pika-table th .pika-button, .pika-table td .pika-button {
  border-radius: 3px;
}
.pika-table .pika-button {
  font-size: 14px;
  padding: 0.5em;
  text-align: center;
}
.pika .is-today .pika-button {
  background: rgba(157, 216, 215, 0.4);
}
.pika-title {
  background-color: #2261ae;
  margin: -8px -8px 0 -8px;
  padding: 8px;
}

.featherlight .featherlight-inner {
  width: 100%;
}

@font-face {
  font-family: "Ginto Normal";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/GintoNormal-Regular.woff") format("woff"), url("/assets/fonts/GintoNormal-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Ginto Normal";
  font-style: italic;
  font-weight: 400;
  src: url("/assets/fonts/GintoNormal-RegularIta.woff") format("woff"), url("/assets/fonts/GintoNormal-RegularIta.woff2") format("woff2");
}
@font-face {
  font-family: "Ginto Normal";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/GintoNormal-Bold.woff") format("woff"), url("/assets/fonts/GintoNormal-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Ginto Normal";
  font-style: italic;
  font-weight: 500;
  src: url("/assets/fonts/GintoNormal-BoldIta.woff") format("woff"), url("/assets/fonts/GintoNormal-BoldIta.woff2") format("woff2");
}
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
  max-width: 100vw;
}

body {
  font-family: "Ginto Normal", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  color: #000000;
  position: relative;
  max-height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-variant-ligatures: no-contextual;
}
body > #scCrossPiece {
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  body {
    padding-top: calc(60px + 2px);
    padding-bottom: 50px;
  }
}
body:not(.user-is-tabbing) :focus {
  outline: none;
}

p {
  margin-bottom: 1em;
  margin-top: 0;
}
p > img {
  height: auto !important;
  width: auto !important;
  max-width: 100%;
}
p > iframe {
  max-width: 100%;
  border: none;
}

h1,
.h1 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}
h1:not(:first-child),
.h1:not(:first-child) {
  margin-top: 1.5em;
}
h1:not(:last-child),
.h1:not(:last-child) {
  margin-bottom: 0.75em;
}

h2,
.h2 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}
h2:not(:first-child),
.h2:not(:first-child) {
  margin-top: 1.5em;
}
h2:not(:last-child),
.h2:not(:last-child) {
  margin-bottom: 0.75em;
}

h3,
.h3 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}
h3:not(:first-child),
.h3:not(:first-child) {
  margin-top: 1.5em;
}
h3:not(:last-child),
.h3:not(:last-child) {
  margin-bottom: 0.75em;
}

h4,
.h4 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}
h4:not(:first-child),
.h4:not(:first-child) {
  margin-top: 1.5em;
}
h4:not(:last-child),
.h4:not(:last-child) {
  margin-bottom: 0.75em;
}

h5,
.h5 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}
h5:not(:first-child),
.h5:not(:first-child) {
  margin-top: 1.5em;
}
h5:not(:last-child),
.h5:not(:last-child) {
  margin-bottom: 0.75em;
}

h6,
.h6 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}
h6:not(:first-child),
.h6:not(:first-child) {
  margin-top: 1.5em;
}
h6:not(:last-child),
.h6:not(:last-child) {
  margin-bottom: 0.75em;
}

h1,
.h1 {
  /*font-size: calc(72px - ((72px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(72px - ((72px - 16px) / 2)) !important;
  /*}*/
}
@media (min-width: 1200px) {
  h1,
.h1 {
    font-size: calc(72px - ((72px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  h1,
.h1 {
    font-size: 72px !important;
  }
}

h2,
.h2 {
  /*font-size: calc(46px - ((46px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(46px - ((46px - 16px) / 2)) !important;
  /*}*/
}
@media (min-width: 1200px) {
  h2,
.h2 {
    font-size: calc(46px - ((46px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  h2,
.h2 {
    font-size: 46px !important;
  }
}

h3,
.h3 {
  /*font-size: calc(30px - ((30px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(30px - ((30px - 16px) / 2)) !important;
  /*}*/
}
@media (min-width: 1200px) {
  h3,
.h3 {
    font-size: calc(30px - ((30px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  h3,
.h3 {
    font-size: 30px !important;
  }
}

h4,
.h4 {
  /*font-size: calc(24px - ((24px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(24px - ((24px - 16px) / 2)) !important;
  /*}*/
}
@media (min-width: 1200px) {
  h4,
.h4 {
    font-size: calc(24px - ((24px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  h4,
.h4 {
    font-size: 24px !important;
  }
}

h5,
.h5 {
  /*font-size: calc(18px - ((18px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(18px - ((18px - 16px) / 2)) !important;
  /*}*/
}
@media (min-width: 1200px) {
  h5,
.h5 {
    font-size: calc(18px - ((18px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  h5,
.h5 {
    font-size: 18px !important;
  }
}

h6,
.h6 {
  /*font-size: calc(16px - ((16px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(16px - ((16px - 16px) / 2)) !important;
  /*}*/
}
@media (min-width: 1200px) {
  h6,
.h6 {
    font-size: calc(16px - ((16px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  h6,
.h6 {
    font-size: 16px !important;
  }
}

.page-fade {
  background: #ffffff;
  opacity: 0.75;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

[class*=__element] {
  display: inline-block;
  line-height: 0;
}

body section, body form, .content__col section, .content__col form {
  flex: 0 0 auto;
}
body section + section, body section + form, body form + section, body form + form, .content__col section + section, .content__col section + form, .content__col form + section, .content__col form + form {
  margin-top: 70px;
}
@media (max-width: 991.98px) {
  body section + section, body section + form, body form + section, body form + form, .content__col section + section, .content__col section + form, .content__col form + section, .content__col form + form {
    margin-top: 50px;
  }
}

body > .full-width-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  body > .full-width-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  body > .full-width-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  body > .full-width-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  body > .full-width-container {
    max-width: 1140px;
  }
}
@media (min-width: 1366px) {
  body > .full-width-container {
    max-width: 1280px;
  }
}

.content {
  margin-bottom: -70px;
}
.content__col {
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .content__col {
    padding-bottom: 50px;
  }
}
.content__col--side {
  /*margin-bottom: -$margin__sidebar-section;*/
}
.content__col--side > * + * {
  margin-top: 30px;
}
.content__col--bottom {
  padding-top: 70px;
}
@media (max-width: 991.98px) {
  .content__col--bottom {
    padding-top: 50px;
  }
}
.content__col--bottom::before {
  content: "";
  display: inline-block;
  height: 1px;
  background-color: #beb0a3;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 991.98px) {
  .content {
    margin-bottom: -50px;
  }
}
.content + section.container, .content + section.full-width-container {
  border-top: 1px solid #beb0a3;
  padding-top: 70px;
}
@media (max-width: 991.98px) {
  .content + section.container, .content + section.full-width-container {
    padding-top: 50px;
  }
}

.no-scroll {
  overflow: hidden;
}

.color--primary {
  color: #2261ae;
}

.color--text {
  color: #000000;
}

.color--text-light {
  color: #796D6D;
}

.color--white {
  color: #ffffff;
}

.text-style--italic {
  font-style: italic;
}

.text-style--normal {
  font-style: normal;
}

.font-weight--bold {
  font-weight: bold;
}

.font-weight--regular {
  font-weight: regular;
}

.margin-lr--auto {
  margin-left: auto;
  margin-right: auto;
}
.margin-top--0_25em {
  margin-top: 0.25em;
}
.margin-bottom--0_25em {
  margin-bottom: 0.25em;
}
.margin-left--0_25em {
  margin-left: 0.25em;
}
.margin-right--0_25em {
  margin-right: 0.25em;
}
.margin-top--0_5em {
  margin-top: 0.5em;
}
.margin-bottom--0_5em {
  margin-bottom: 0.5em;
}
.margin-left--0_5em {
  margin-left: 0.5em;
}
.margin-right--0_5em {
  margin-right: 0.5em;
}
.margin-top--0_75em {
  margin-top: 0.75em;
}
.margin-bottom--0_75em {
  margin-bottom: 0.75em;
}
.margin-left--0_75em {
  margin-left: 0.75em;
}
.margin-right--0_75em {
  margin-right: 0.75em;
}
.margin-top--1em {
  margin-top: 1em;
}
.margin-bottom--1em {
  margin-bottom: 1em;
}
.margin-left--1em {
  margin-left: 1em;
}
.margin-right--1em {
  margin-right: 1em;
}
.margin-top--1_5em {
  margin-top: 1.5em;
}
.margin-bottom--1_5em {
  margin-bottom: 1.5em;
}
.margin-left--1_5em {
  margin-left: 1.5em;
}
.margin-right--1_5em {
  margin-right: 1.5em;
}
.margin-top--2em {
  margin-top: 2em;
}
.margin-bottom--2em {
  margin-bottom: 2em;
}
.margin-left--2em {
  margin-left: 2em;
}
.margin-right--2em {
  margin-right: 2em;
}
.margin-top--3em {
  margin-top: 3em;
}
.margin-bottom--3em {
  margin-bottom: 3em;
}
.margin-left--3em {
  margin-left: 3em;
}
.margin-right--3em {
  margin-right: 3em;
}

.com-404 {
  text-align: center;
  margin-bottom: auto;
}
.com-404:first-of-type {
  margin-top: 70px;
}
.com-404__title {
  margin-top: 0.25em !important;
  margin-bottom: 0.5em !important;
  color: #2261ae;
}
.com-404__image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 120px;
}
.com-404__body {
  /*font-size: calc(22px - ((22px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(22px - ((22px - 16px) / 2)) !important;
  /*}*/
  font-weight: 500;
}
@media (min-width: 1200px) {
  .com-404__body {
    font-size: calc(22px - ((22px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .com-404__body {
    font-size: 22px !important;
  }
}
.com-404__body p {
  margin-bottom: 0.5em;
}
.com-404 + .footer {
  margin-top: 70px;
}

.accordion {
  padding: 1.5em;
  border-radius: 5px;
  background-color: #f9f7f6;
  border: 2px solid #f9f7f6;
  padding-left: 3.5em;
  display: flex;
  flex-direction: column;
  transition: background-color 0.2s ease, border 0.2s ease;
}
@media (max-width: 991.98px) {
  .accordion {
    padding-right: 1.5em;
  }
}
.accordion__header, .accordion__footer {
  margin: -1.5em -1.5em -1.5em -3.5em;
  padding: 1.5em 1.5em 1.5em 3.5em;
}
.accordion__header {
  transition: background-color 0.2s ease, border 0.2s ease, color 0.2s ease;
  text-align: left;
  font-size: 16px;
  background: none;
  border: none;
  position: relative;
}
@media (max-width: 991.98px) {
  .accordion__header {
    margin-right: -1.5em;
    padding-right: 1.5em;
  }
}
.accordion__header > * {
  margin: 0;
  line-height: 1;
}
.accordion__header::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 300 !important;
  content: "\f067" !important;
  font-size: 26px;
  position: absolute;
  line-height: 0;
  top: 50%;
  margin-top: 0.1em;
  left: 31.5px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}
.accordion__footer {
  transition: 0.3s ease;
  background: #fff;
  /*border: 1px solid $color--grey-50;
  border-radius: 0 0 $border-radius--standard $border-radius--standard;*/
  margin-top: 1.5em;
  padding: 1.5em;
}
.accordion + .accordion {
  margin-top: 1em;
}
.accordion__body {
  display: none;
}
.accordion__body > :first-child {
  margin-top: 1.5em;
}
.accordion__body p:empty, .accordion__body p:blank {
  display: none;
}
.accordion__link {
  margin-top: 0.5em;
}
.accordion--blue .accordion__header {
  border-radius: 3px;
}
.accordion--blue:not(.accordion--open) .accordion__header {
  background-color: #f9f7f6;
}
.accordion--blue:not(.accordion--open) .accordion__header:hover, .accordion--blue:not(.accordion--open) .accordion__header:focus {
  color: #ffffff;
  background-color: #2261ae;
}
.accordion--blue.accordion--open {
  border-color: #2261ae;
}
.accordion--blue.accordion--open .accordion__header {
  color: #2261ae;
}
.accordion--open {
  background-color: #ffffff;
  border-color: #dfd8d1;
}
.accordion--open .accordion__footer {
  border-top: 2px solid #dfd8d1;
}
.accordion--open .accordion__header::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.accordion-list {
  /*@include margin-section('top');*/
}

.banner {
  display: block;
  z-index: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .banner {
    padding-bottom: 15px;
  }
}
.banner:not(.banner--home):not(.banner--landing-page) .banner__carousel + *,
.banner:not(.banner--home):not(.banner--landing-page) .banner__image + * {
  margin-top: 0;
}
.banner:not(.banner--home):not(.banner--landing-page) .banner__carousel .banner__element,
.banner:not(.banner--home):not(.banner--landing-page) .banner__image .banner__element {
  top: 0;
  left: 100%;
}
.banner:not(.banner--home):not(.banner--landing-page) .banner__carousel::after,
.banner:not(.banner--home):not(.banner--landing-page) .banner__image::after {
  content: "";
  background: #ffffff;
  position: absolute;
  top: 260px;
  left: 50%;
  z-index: -1;
  height: 100vh;
  width: 101vw;
  transform: translateX(-50%);
}
.banner > .container > *:first-child:not(.banner__back-link) {
  margin-top: 30px;
}
.banner__back-link {
  display: inline-block;
  margin-top: 1.5em;
  position: relative;
  z-index: 2;
}
.banner__back-link::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 400 !important;
  content: "\f060" !important;
  font-size: 0.8em;
  margin-right: 0.75em;
  display: inline-block;
}
.banner__back-link + * {
  margin-top: 30px !important;
}
.banner .banner__element {
  display: none;
  margin: 0;
  position: absolute;
  pointer-events: none;
}
@media (min-width: 992px) {
  .banner .banner__element {
    display: block;
  }
}
.banner .banner__title {
  margin: 0;
  position: relative;
  z-index: 1;
}
.banner .banner__title + .banner__carousel,
.banner .banner__title + .banner__image {
  margin-top: 30px;
}
.banner__subtitle {
  color: #000000;
  font-weight: 500;
  margin-top: 1em;
  display: block;
  /*font-size: calc(20px - ((20px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(20px - ((20px - 16px) / 2)) !important;
  /*}*/
}
@media (min-width: 1200px) {
  .banner__subtitle {
    font-size: calc(20px - ((20px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .banner__subtitle {
    font-size: 20px !important;
  }
}
@media (max-width: 991.98px) {
  .banner__subtitle {
    font-size: 14px;
  }
}
.banner__image {
  position: relative;
  overflow: visible !important;
}
.banner__image > img {
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .banner__image {
    position: relative;
    overflow: hidden;
    padding-bottom: calc(1 / 1 * 100%);
  }
  .banner__image > *:first-child, .banner__image > code:first-child + * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (min-width: 576px) {
  .banner__image {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .banner__image {
    height: 480px;
  }
}
.banner__quick-links {
  text-align: center;
}
.banner__quick-links [class*=col-] {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .banner__quick-links h2 {
    margin-bottom: 1em;
  }
}
.banner__quick-links__tile {
  display: block;
  flex: 1 0 auto;
  background-color: #f2efed;
  color: #000000;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*font-size: calc(20px - ((20px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(20px - ((20px - 16px) / 2)) !important;
  /*}*/
  font-weight: 500;
  padding: 2em;
  border-radius: 5px;
  justify-content: center;
  transition: 0.3s ease;
}
@media (min-width: 1200px) {
  .banner__quick-links__tile {
    font-size: calc(20px - ((20px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .banner__quick-links__tile {
    font-size: 20px !important;
  }
}
@media (max-width: 991.98px) {
  .banner__quick-links__tile {
    margin-top: 1em;
  }
}
.banner__quick-links__tile .fa, .banner__quick-links__tile .fal, .banner__quick-links__tile .far, .banner__quick-links__tile .fas, .banner__quick-links__tile .fab {
  font-size: 3em;
  margin-bottom: 0.25em;
}
.banner__quick-links__tile:hover, .banner__quick-links__tile:focus {
  background-color: #ffffff;
  color: #2261ae;
}
.banner__quick-links__button {
  margin: 2.5em auto 0;
}
@media (max-width: 991.98px) {
  .banner__quick-links__button {
    width: 100%;
  }
}
.banner, .banner--white {
  background: #ffffff;
  color: #2261ae;
}
.banner--light-grey-20 {
  background: #f2efed;
  color: #000000;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .banner--light-grey-20 {
    padding-bottom: 50px;
  }
}
.banner--red {
  background: #a0252b;
  color: #ffffff;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .banner--red {
    padding-bottom: 50px;
  }
}
.banner--dark-red {
  background: #730b12;
  color: #ffffff;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .banner--dark-red {
    padding-bottom: 50px;
  }
}
.banner--dark-blue {
  background: #2261ae;
  color: #ffffff;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .banner--dark-blue {
    padding-bottom: 50px;
  }
}
.banner--dark-green {
  background: #2f3b03;
  color: #ffffff;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .banner--dark-green {
    padding-bottom: 50px;
  }
}
.banner--forest-green {
  background: #505f2d;
  color: #ffffff;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .banner--forest-green {
    padding-bottom: 50px;
  }
}
.banner--purple {
  background: #63516d;
  color: #ffffff;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .banner--purple {
    padding-bottom: 50px;
  }
}
.banner--dark-grey {
  background: #796D6D;
  color: #ffffff;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .banner--dark-grey {
    padding-bottom: 50px;
  }
}
.banner--black {
  background: #000000;
  color: #ffffff;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .banner--black {
    padding-bottom: 50px;
  }
}

.banner__carousel {
  z-index: 1;
}
.banner__carousel.slick-slider {
  margin-bottom: 0;
}
.banner__carousel .slick-track {
  display: flex;
}
.banner__carousel .carousel__pager {
  right: 30px;
  bottom: 30px;
}
@media (max-width: 991.98px) {
  .banner__carousel .carousel__pager {
    top: 0;
    bottom: auto;
    margin-top: 80%;
    padding-bottom: calc(20% + 15px);
    transform: translateY(-100%);
  }
}
@media (max-width: 991.98px) {
  .banner__carousel .slideshow__pager {
    padding-bottom: 15px !important;
  }
}
.banner__carousel__slide {
  border-radius: 5px;
  overflow: hidden;
  height: auto;
}
@media (min-width: 992px) {
  .banner__carousel__slide {
    height: 480px;
  }
}
.banner__carousel__content {
  background: #9dd8d7;
  color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  .banner__carousel__content {
    flex: 1 0 auto;
  }
  .banner__carousel__content p {
    flex: 1 0 auto;
  }
}
.banner__carousel__content > *:not(:last-child) {
  margin-bottom: 0.5em;
}
.banner__carousel__subtitle {
  font-weight: bold;
  font-size: 20px;
}
.banner__carousel__subtitle:empty {
  display: none;
}
.banner__carousel__title {
  /*font-size: calc(36px - ((36px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(36px - ((36px - 16px) / 2)) !important;
  /*}*/
  margin-top: 0 !important;
}
@media (min-width: 1200px) {
  .banner__carousel__title {
    font-size: calc(36px - ((36px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .banner__carousel__title {
    font-size: 36px !important;
  }
}
.banner__carousel__button {
  margin-top: 1em;
}
.banner__carousel__image {
  position: relative;
  background-color: #ffffff;
}
@media (max-width: 991.98px) {
  .banner__carousel__image {
    flex: 0;
    border-radius: 5px;
    overflow: hidden;
  }
}
.banner__carousel__image::after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, black));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#000000", GradientType=0 );
  opacity: 0.75;
}
.banner__carousel__image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .banner__carousel__image {
    padding-bottom: 80%;
  }
}
.banner__carousel .banner__carousel__slide, .banner__carousel--side-by-side .banner__carousel__slide {
  display: flex;
}
@media (max-width: 991.98px) {
  .banner__carousel .banner__carousel__slide, .banner__carousel--side-by-side .banner__carousel__slide {
    flex-direction: column;
  }
}
.banner__carousel .banner__carousel__content, .banner__carousel--side-by-side .banner__carousel__content {
  width: 375px;
  padding: 2em;
}
@media (max-width: 991.98px) {
  .banner__carousel .banner__carousel__content, .banner__carousel--side-by-side .banner__carousel__content {
    padding: 30px;
    margin: -20% 15px 0;
    width: auto;
    order: 2;
    z-index: 1;
    border-radius: 5px;
  }
}
.banner__carousel .banner__carousel__image, .banner__carousel--side-by-side .banner__carousel__image {
  flex: 1 1 auto;
}
@media (max-width: 991.98px) {
  .banner__carousel .banner__carousel__image, .banner__carousel--side-by-side .banner__carousel__image {
    flex: 0;
    order: 1;
  }
}
@media (min-width: 992px) {
  .banner__carousel--layered {
    position: relative;
  }
  .banner__carousel--layered .banner__carousel__content {
    position: absolute;
    bottom: 90px;
    left: 60px;
    right: 50%;
    width: auto;
    border-radius: 5px;
    z-index: 1;
  }
  .banner__carousel--layered .carousel__pager {
    right: auto;
    left: 60px;
    bottom: calc(90px / 2 - 1.25em/2);
  }
}

.banner--home {
  background: #2261ae;
  color: #ffffff;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .banner--home {
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .banner--home .banner__carousel__slide {
    height: 600px;
  }
  .banner--home + section {
    margin-top: calc(70px - 130px/ 2);
  }
}
.banner--home > .container > *:first-child {
  margin-top: 0 !important;
}
.banner--home > .container > *:not(:last-child) {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .banner--home > .container > *:not(:last-child) {
    margin-bottom: 70px;
  }
}
.banner--home .banner__carousel::after {
  display: none;
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 50%;
  left: 50%;
  z-index: -1;
  height: 100vh;
  width: 101vw;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .banner--home .banner__carousel::after {
    display: block;
  }
}
.banner--home .banner__element {
  margin: 0;
}
.banner--home .banner__element--bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
.banner--home .banner__element--bottom::after {
  content: "";
  background-color: #ffffff;
  position: absolute;
  width: 100vw;
  left: 0;
  top: 50%;
  bottom: 0;
  z-index: -1;
}
.banner--home .banner__element--top {
  position: absolute;
  bottom: 50%;
  left: 100%;
}

@media (min-width: 992px) {
  .banner--landing-page .banner__carousel__slide {
    height: 480px;
  }
}
.banner--landing-page::after {
  display: none;
  content: "";
  background: #ffffff;
  position: absolute;
  top: 60%;
  left: 50%;
  z-index: -1;
  height: 50%;
  width: 101vw;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .banner--landing-page::after {
    display: block;
  }
}
.banner--landing-page .banner__element {
  right: 0;
  top: 0;
  height: 60%;
  width: 100%;
  text-align: right;
}
.banner--landing-page .banner__element img {
  display: inline-block;
  height: 100%;
  width: auto;
}

.breadcrumb {
  display: none;
  border-bottom: 3px solid #ece7e3;
  z-index: 1;
  position: relative;
}
@media (min-width: 992px) {
  .breadcrumb {
    display: block;
  }
}
.breadcrumb__container {
  display: flex;
}
.breadcrumb__link {
  color: #796D6D;
}
.breadcrumb__link > a {
  display: inline-block;
  padding: 0.5em 0.25em;
  color: inherit;
  text-decoration: none;
}
.breadcrumb__link > a:hover, .breadcrumb__link > a:focus {
  text-decoration: underline;
  color: #2261ae;
}
.breadcrumb__link + .breadcrumb__link {
  position: relative;
  margin-left: 1.25em;
}
.breadcrumb__link + .breadcrumb__link::before {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 400 !important;
  content: "\f061" !important;
  font-size: 0.8em;
  margin: 0 0.4em;
}
.breadcrumb__link:last-child {
  border-bottom: 3px solid #2261ae;
  padding-bottom: 3px;
  margin-bottom: -3px;
}
.breadcrumb__link:last-child a {
  color: #000000;
}

button, input[type=submit] {
  font-family: inherit;
  cursor: pointer;
}

.button {
  font-weight: 500;
  display: inline-block;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  border: 2px solid;
  transition: 0.1s ease;
  text-decoration: none;
  /*&:not(:last-child) {
      margin-bottom: 1.5em;
  }*/
}
.button .fa, .button .fal, .button .far, .button .fas, .button .fab {
  /*margin-top: 0.4em;*/
}
.button .fa.button__icon--right, .button .fal.button__icon--right, .button .far.button__icon--right, .button .fas.button__icon--right, .button .fab.button__icon--right {
  margin-left: 0.5em;
}
.button .fa.button__icon--left, .button .fal.button__icon--left, .button .far.button__icon--left, .button .fas.button__icon--left, .button .fab.button__icon--left {
  margin-right: 0.5em;
}
.button::before {
  margin-right: 0.5em;
  margin-top: 0.2em;
}
.button::after {
  margin-left: 0.5em;
  margin-top: 0.2em;
}
.button, .button--large {
  padding: 0.75em 1.5em;
  font-size: 18px;
}
.button--medium {
  padding: 0.5em 1em;
  font-size: 16px;
}
.button--small {
  padding: 0.25em 0.75em;
  font-size: 14px;
  line-height: 175%;
}
.button--disabled {
  pointer-events: none;
  cursor: none;
  opacity: 0.25;
}
.button--stretch {
  width: 100%;
}
.button, .button--blue {
  background-color: #2261ae;
  color: #ffffff;
  border-color: #2261ae;
}
.button:not(.button--disabled):hover, .button:not(.button--disabled):focus, .button--blue:not(.button--disabled):hover, .button--blue:not(.button--disabled):focus {
  background-color: #ffffff;
  color: #2261ae;
  border-color: #2261ae;
}
.button--black {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
.button--white {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}
.button--yellow {
  background-color: #ffcb58;
  color: #000000;
  border-color: #ffcb58;
  /*@include button-hover($color__text, $color--white);*/
}
.button--ice-blue {
  background-color: #9dd8d7;
  color: #000000;
  border-color: #9dd8d7;
  /*@include button-hover($color__text, $color--white);*/
}
.button--ghost {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}
.button--hover-white:not(.button--disabled):hover, .button--hover-white:not(.button--disabled):focus {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.carousel .slick-track {
  display: flex;
}
.carousel__pager {
  display: flex;
  position: absolute;
  z-index: 1;
  align-items: center;
  color: #ffffff;
}
.carousel__pager > * {
  position: relative;
  transform: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.carousel__pager .slick-prev {
  order: 1;
}
.carousel__pager .slick-next {
  order: 3;
}
.carousel__pager .slick-arrow {
  color: inherit;
}
.carousel__pager .slick-arrow:after, .carousel__pager .slick-arrow:before {
  color: inherit;
}
.carousel__pager .slick-dots {
  display: flex;
  order: 2;
  font-size: 14px;
  width: auto;
  margin: 0 0.75em;
}
.carousel__pager .slick-dots li,
.carousel__pager .slick-dots button {
  font-family: "Ginto Normal", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  display: inline-flex;
  font-weight: 500;
  height: 1.75em;
  width: 1.75em;
  line-height: 0;
  text-decoration: none;
  color: #ffffff;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: inherit;
  border-radius: 100%;
  transition: 0.3s ease;
  padding-bottom: 0.15em;
}
+ .carousel__pager .slick-dots li,
+ .carousel__pager .slick-dots button {
  margin: 0;
  margin-left: 0.25em;
}
.carousel__pager .slick-dots li--active,
.carousel__pager .slick-dots button--active {
  background-color: #ffffff;
  color: #000000;
}
.carousel__pager .slick-dots button {
  padding-bottom: 0.2em;
}
.carousel__pager .slick-dots .slick-active button {
  background-color: #ffffff;
  color: #000000;
}
.carousel__pager, .carousel__pager--white {
  color: #ffffff;
}
.carousel__pager li,
.carousel__pager button, .carousel__pager--white li,
.carousel__pager--white button {
  color: #ffffff;
}
.carousel__pager .slick-active button, .carousel__pager--white .slick-active button {
  background-color: #ffffff;
  color: #000000;
}
.carousel__pager.carousel__pager--black {
  color: #000000;
}
.carousel__pager.carousel__pager--black li,
.carousel__pager.carousel__pager--black button {
  color: #000000;
}
.carousel__pager.carousel__pager--black .slick-active button {
  background-color: #000000;
  color: #ffffff;
}
.carousel__play-pause {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 14px;
  order: 5;
  margin-left: 1em;
}
.carousel__play-pause::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 900 !important;
  content: "\f04c" !important;
}
.carousel__play-pause.paused::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 900 !important;
  content: "\f04b" !important;
}
@media (max-width: 575.98px) {
  .carousel {
    margin-left: -15px;
    margin-right: -15px;
  }
  .carousel__slide, .carousel__image {
    border-radius: 0;
  }
}

body.user-is-tabbing .carousel__pager button:focus {
  outline: auto;
  outline-color: #5aa3d2;
}

.contact-us__element {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: none;
}
.contact-us__element img {
  transform: scale(1.5);
  transform-origin: top right;
}
@media (min-width: 992px) {
  .contact-us__element {
    display: block;
  }
}
.contact-us__top {
  padding-top: 70px;
  position: relative;
}
@media (max-width: 991.98px) {
  .contact-us__top {
    padding-top: 50px;
  }
}
@media (max-width: 991.98px) {
  .contact-us__top {
    padding-top: 15px;
  }
}
.contact-us__top::before {
  content: "";
  background: #2261ae;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 20%;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .contact-us__top::before {
    bottom: 80%;
  }
}
.contact-us__top > .container {
  display: flex;
}
@media (max-width: 991.98px) {
  .contact-us__top > .container {
    flex-direction: column;
  }
}
.contact-us__map {
  position: relative;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
  background-color: #f2efed;
}
@media (min-width: 992px) {
  .contact-us__map {
    border-radius: 5px 0 0 5px;
    background-color: #ffffff;
  }
}
@media (min-width: 992px) {
  .contact-us__map {
    height: 100%;
  }
  .contact-us__map-container {
    width: 55%;
  }
  .contact-us__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 991.98px) {
  .contact-us__map {
    position: relative;
    overflow: hidden;
    padding-bottom: calc(1 / 1 * 100%);
  }
  .contact-us__map > *:first-child, .contact-us__map > code:first-child + * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.contact-us__details {
  border-radius: 0 0 5px 5px;
  background-color: #f9f7f6;
  flex: 1 1 auto;
  padding: 2em 3em;
}
@media (min-width: 992px) {
  .contact-us__details {
    border-radius: 0 5px 5px 0;
    background-color: #ffffff;
  }
}
@media (max-width: 991.98px) {
  .contact-us__details {
    padding: 1.5em;
  }
}
.contact-us__detail-heading {
  font-size: 22px !important;
  margin-bottom: 0.5em !important;
  margin-top: 1.5em !important;
}
.contact-us__detail-info {
  /*font-size: 14px;*/
}
.contact-us__detail-button {
  margin-top: 2em;
  display: block;
}
@media (max-width: 991.98px) {
  .contact-us__detail-button .button {
    display: block;
    text-align: center;
  }
}
.contact-us__form {
  margin-top: 70px;
}
@media (max-width: 991.98px) {
  .contact-us__form {
    margin-top: 50px;
  }
}
.contact-us__form .field__label {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0.25em;
  user-select: none;
  margin-right: auto;
  display: inline-block;
  color: transparent;
  transition: 0.2s ease;
  transform: translateY(100%) scale(0.5);
  transform-origin: bottom left;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .contact-us__form .field__label {
    font-size: 14px;
  }
}
.contact-us__form .field__input {
  font-size: 18px;
  line-height: 20px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #796D6D;
}
@media (max-width: 991.98px) {
  .contact-us__form .field__input {
    font-size: 16px;
  }
}
.contact-us__form .field--text .field__input,
.contact-us__form .field--select .field__input,
.contact-us__form .field--date .field__input,
.contact-us__form .field--search .field__input,
.contact-us__form .field--textarea .field__input {
  padding: 0 0 0.875em 0;
  height: calc(1px + 0.875em* 2 + 20px);
}

.cta-main__inner {
  display: flex;
  position: relative;
}
@media (max-width: 991.98px) {
  .cta-main {
    flex-direction: column;
  }
}
.cta-main__element {
  display: none;
  position: absolute;
  top: 0;
  right: 100%;
  bottom: auto;
  left: auto;
}
@media (min-width: 992px) {
  .cta-main__element {
    display: block;
  }
}
@media (min-width: 992px) {
  .cta-main__content, .cta-main__image {
    width: 50%;
  }
}
.cta-main__content {
  background-color: #ffcb58;
  padding: 4em;
}
@media (max-width: 991.98px) {
  .cta-main__content {
    padding: 2em;
  }
}
.cta-main__title {
  margin-bottom: 0.5em;
}
.cta-main__body {
  /*font-size: calc(20px - ((20px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(20px - ((20px - 16px) / 2)) !important;
  /*}*/
}
@media (min-width: 1200px) {
  .cta-main__body {
    font-size: calc(20px - ((20px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .cta-main__body {
    font-size: 20px !important;
  }
}
.cta-main__link {
  margin-top: 1.5em;
}
.cta-main__image {
  position: relative;
}
@media (max-width: 991.98px) {
  .cta-main__image {
    padding-top: 100%;
  }
}
.cta-main__image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-sidebar {
  padding: 1.5em;
  border-radius: 5px;
  background-color: #ffcb58;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-sidebar__link {
  margin-top: 1.5em;
}

.document-archive__title {
  padding-bottom: 0.25em;
  border-bottom: 3px solid #ece7e3;
}
.document-archive__group {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 5px;
  border: 2px solid #dfd8d1;
  margin-bottom: 1em;
}
.document-archive__item {
  display: flex;
  flex-direction: column;
}
.document-archive__item:nth-child(n) {
  background: #f9f7f6;
}
.document-archive__item:nth-child(2n) {
  background: #ffffff;
}
@media (max-width: 991.98px) {
  .document-archive__item:not(:first-child) .document-archive__date {
    display: none;
  }
}
@media (min-width: 992px) {
  .document-archive__item:not(:first-child) .document-archive__date > * {
    display: none;
  }
}
@media (min-width: 992px) {
  .document-archive__item {
    padding: 1.5em;
  }
}
@media (max-width: 991.98px) {
  .document-archive__item {
    padding: 0 1em;
    /*border-radius: 5px;
    border: 2px solid $color--grey-50;*/
    /*margin-bottom: 1em;*/
  }
  .document-archive__item + .document-archive__item {
    border-top: 2px solid #dfd8d1;
  }
  .document-archive__item .row > * {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .document-archive__item .row > *:not(.document-archive__details):not(.document-archive__date) {
    /*border-top: 2px solid $color--grey-70;*/
  }
}
.document-archive__date {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .document-archive__date {
    border-bottom: 2px solid #dfd8d1;
    /*font-size: calc(24px - ((24px - 16px) / 1.5)) !important;

    @include media-breakpoint-up(md) {*/
    font-size: calc(24px - ((24px - 16px) / 2)) !important;
    /*}*/
  }
}
@media (max-width: 991.98px) and (min-width: 1200px) {
  .document-archive__date {
    font-size: calc(24px - ((24px - 16px) / 3)) !important;
  }
}
@media (max-width: 991.98px) and (min-width: 1366px) {
  .document-archive__date {
    font-size: 24px !important;
  }
}
.document-archive__details {
  display: block;
  font-weight: 500;
  color: #796D6D;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .document-archive__details + .document-archive__details {
    text-align: right;
  }
}
.document-archive__download {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .document-archive__download {
    flex-grow: 0;
    flex-basis: 250px;
  }
}
.document-archive__download > .fa, .document-archive__download > .fal, .document-archive__download > .far, .document-archive__download > .fas, .document-archive__download > .fab {
  font-size: 33px;
  margin-top: 0.1em;
}
.document-archive__download .button {
  margin-left: 0.5em;
  flex: 1 0 auto;
}

.download-single {
  font-size: 14px;
  margin: 1.5em 0;
  padding: 0.75em;
  background-color: #f9f7f6;
  border: 2px solid #d8d0c8;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  .download-single {
    flex-direction: column;
  }
}
.download-single > * {
  padding: 0.75em;
}
.download-single__details, .download-single__description {
  flex: 1 1 50%;
}
.download-single__download {
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .download-single__download {
    align-self: center;
  }
}
.download-single [class*=col-]:last-child {
  display: flex;
  align-items: center;
}

.download-list {
  padding: 1.5em;
  border-radius: 5px;
  background-color: #f9f7f6;
  display: flex;
  flex-direction: column;
}
.download-list__item {
  position: relative;
  padding-left: 2em;
}
.download-list__item + .download-list__item {
  margin-top: 1.5em;
}
.download-list__icon {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5em;
  margin-top: 0.25em;
}
.download-list__name {
  line-height: 150%;
}
.download-list__link {
  margin-top: 1em;
  display: inline-block;
}
.download-list .row {
  margin: -15px;
}
.download-list__col {
  padding: 15px;
}
@media (min-width: 768px) {
  .download-list__col .download-list__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .download-list__col .download-list__link {
    margin: 0 0 0 1em;
    flex: 0 0 auto;
  }
}

.content__col--main .download-list__col {
  flex: 0 0 100%;
  max-width: 100%;
}

.event-calendar__heading {
  padding-bottom: 0.25em;
  border-bottom: 4px solid #ece7e3;
  margin-bottom: 0.5em;
}

.event-detail__image {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1.5em;
}
.event-detail__image img {
  max-width: 100%;
  display: block;
  height: auto;
}
.event-detail__description {
  margin-top: 1.5em;
  /*font-size: calc(20px - ((20px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(20px - ((20px - 16px) / 2)) !important;
  /*}*/
}
@media (min-width: 1200px) {
  .event-detail__description {
    font-size: calc(20px - ((20px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .event-detail__description {
    font-size: 20px !important;
  }
}
.event-detail__map {
  background-color: #f9f7f6;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  padding-bottom: calc(9 / 16 * 100%);
  margin-bottom: 1.5em;
}
.event-detail__map > *:first-child, .event-detail__map > code:first-child + * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .event-detail__map {
    position: relative;
    overflow: hidden;
    padding-bottom: calc(1 / 1 * 100%);
  }
  .event-detail__map > *:first-child, .event-detail__map > code:first-child + * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.event-detail__sidebar {
  /*@include responsive-font-size(18px);*/
}
.event-detail__sidebar > h4 {
  /*font-size: calc(20px - ((20px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(20px - ((20px - 16px) / 2)) !important;
  /*}*/
}
@media (min-width: 1200px) {
  .event-detail__sidebar > h4 {
    font-size: calc(20px - ((20px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .event-detail__sidebar > h4 {
    font-size: 20px !important;
  }
}
.event-detail__sidebar > img {
  width: 100%;
  height: auto;
}
.event-detail__sidebar > div:not([class]):not(:empty):not(:first-child) {
  margin-top: 0.5em;
}
.event-detail__sidebar--separator {
  padding-bottom: 30px;
  border-bottom: 2px solid #dfd8d1;
}
.event-detail__sidebar .link--small {
  display: block;
}
.event-detail__sidebar .link--small + .link--small {
  margin-top: 0.5em;
}

.sidebar-section {
  padding-left: calc(10px + 3px);
  position: relative;
}
.sidebar-section::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 3px;
  background-color: #2261ae;
  top: 0;
  left: 0;
  bottom: 0;
}
.sidebar-section > * {
  margin: 0;
}
.sidebar-section > * + * {
  margin-top: 0.25em;
}
.sidebar-section__location {
  color: #2261ae;
  margin-bottom: 0 !important;
}
.sidebar-section__label {
  font-weight: 500;
}
.sidebar-section + .sidebar-section {
  margin-top: 2em;
}

.event-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000000;
  margin-top: 45px;
}
.event-item__body {
  display: flex;
  flex-direction: column;
}
.event-item__body > * {
  order: 1;
}
.event-item__image {
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 1em;
  position: relative;
  overflow: hidden;
  padding-bottom: calc(1 / 1 * 100%);
}
.event-item__image > *:first-child, .event-item__image > code:first-child + * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .event-item__image {
    position: relative;
    overflow: hidden;
    padding-bottom: calc(5 / 4 * 100%);
  }
  .event-item__image > *:first-child, .event-item__image > code:first-child + * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.event-item__image::after {
  content: "";
  position: absolute;
  height: 12px;
  background: #2261ae;
  left: 0;
  right: 0;
  bottom: 0;
  transition: background 0.1s ease;
}
.event-item__category {
  font-weight: 500;
  font-size: 13px;
  color: #796D6D;
  text-decoration: none;
  text-transform: uppercase;
  display: none;
  margin: 0 0 0.5em;
  order: 0 !important;
}
.event-item__category:hover, .event-item__category:focus {
  color: #2261ae;
  text-decoration: underline;
}
.event-item__category:first-child {
  display: inline-block;
}
.event-item__title {
  text-decoration: none;
}
.event-item__title > * {
  font-size: 20px !important;
  transition: color 0.1s ease;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
}
.event-item__title:hover > *, .event-item__title:focus > * {
  text-decoration: underline;
  color: #2261ae;
}
.event-item__field {
  vertical-align: middle;
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-top: 0.75em;
}
.event-item__field span {
  margin-top: -0.2em;
  padding-bottom: 0.2em;
}
.event-item__field .fa, .event-item__field .fal, .event-item__field .far, .event-item__field .fas, .event-item__field .fab {
  font-size: 1.25em;
  width: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5em;
  transition: color 0.1s ease;
}

.event-slider__heading {
  color: #2261ae;
}
.event-slider__carousel {
  display: flex;
  flex-direction: column;
  cursor: grab;
}
.event-slider__carousel .slick-list {
  width: 100%;
}
.event-slider .carousel__pager {
  right: 15px;
  top: -30px;
  transform: translateY(-100%);
}
@media (max-width: 991.98px) {
  .event-slider .carousel__pager {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    order: 2;
    margin-top: 1.5em;
    align-self: center;
  }
}
.event-slider__slide {
  margin: 0 15px;
  cursor: grab;
}
.event-slider--dark {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #f2efed;
}
@media (max-width: 991.98px) {
  .event-slider--dark {
    padding-top: 50px;
  }
}
@media (max-width: 991.98px) {
  .event-slider--dark {
    padding-bottom: 50px;
  }
}
.event-slider--dark .event-item__title, .event-slider--dark .event-slider__heading {
  color: #000000;
}
.event-slider--dark .event-item__image::after {
  content: "";
  position: absolute;
  height: 12px;
  background: #000000;
  left: 0;
  right: 0;
  bottom: 0;
}

.related-events {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.related-events__date {
  flex: 0 0 17.5%;
  display: none;
}
@media (min-width: 992px) {
  .related-events__date {
    display: block;
  }
}
.related-events__title {
  color: #2261ae;
  display: inline-block;
}
.related-events__link {
  display: inline-block;
}
.related-events__link::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 400 !important;
  content: "\f061" !important;
  font-size: 0.8em;
  margin-left: 0.5em;
  display: inline-block;
}
.related-events .news-slider {
  width: calc(100% + 30px);
}
@media (min-width: 992px) {
  .related-events .news-item {
    flex-direction: row;
  }
}
.related-events__image > * {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(3 / 5 * 100%);
  padding-bottom: 0;
  height: 250px;
  width: calc(250px * (5 / 3));
}
.related-events__image > * > *:first-child, .related-events__image > * > code:first-child + * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .related-events__body {
    margin-left: 2em;
  }
}
.related-events__body > a {
  text-decoration: none;
  transition: color 0.2s ease;
  color: #000000;
}
.related-events__body > a:hover, .related-events__body > a:focus {
  color: #2261ae;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .related-events__body .news-item__title {
    margin-top: 0;
  }
}
.related-events__body .news-item__date {
  display: block;
}
@media (min-width: 992px) {
  .related-events__body .news-item__date {
    display: none;
  }
}
.related-events__location {
  font-weight: 500;
  margin-bottom: 1em;
  display: inline-block;
}

.featured-links {
  background-color: #ffcb58;
  color: #000000;
  padding: 3em 0;
  margin-top: 70px;
  position: relative;
}
@media (max-width: 991.98px) {
  .featured-links {
    margin-top: 50px;
  }
}
.featured-links + .footer {
  margin-top: 0;
}
@media (max-width: 991.98px) {
  .featured-links {
    text-align: center;
  }
}
.featured-links__element {
  position: absolute;
  right: 0;
  bottom: 100%;
  display: none;
}
@media (min-width: 992px) {
  .featured-links__element {
    display: block;
  }
}
.featured-links__title {
  margin-bottom: 1em;
}
.featured-links__row {
  margin-top: -15px;
  margin-bottom: -15px;
}
.featured-links__col {
  display: flex;
}
.featured-links__link {
  border-radius: 5px;
  flex: 1 1 auto;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 1em;
  text-decoration: none;
  background: #f2efed;
  color: #000000;
  margin: 15px 0;
  transition: 0.2s ease;
}
.featured-links__link:hover, .featured-links__link:focus {
  background-color: #ffffff;
  color: #2261ae;
  text-decoration: underline;
}

.filter {
  display: flex;
  flex-wrap: wrap;
}
.filter-label {
  text-transform: uppercase;
  color: #796D6D;
  font-weight: 500;
  margin-bottom: 0.5em;
  display: block;
}
.filter-bar {
  width: 100%;
  background-color: #ece7e3;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
  /*position: relative;*/
  overflow: hidden;
  border: 1px solid #979797;
  border-radius: 5px;
}
.filter-bar__group {
  /*position: relative;*/
  position: static;
}
.filter-bar__group[class*=col] {
  padding: 0;
}
@media (max-width: 991.98px) {
  .filter-bar__group + .filter-bar__group > .filter-bar__header, .filter-bar__group + .filter-bar__group > .filter-bar__search {
    border-top: 1px solid #979797;
  }
}
@media (min-width: 992px) {
  .filter-bar__group + .filter-bar__group > .filter-bar__header, .filter-bar__group + .filter-bar__group > .filter-bar__search {
    border-left: 1px solid #979797;
  }
}
.filter-bar__header, .filter-bar__search input {
  font-size: 16px;
  padding: 0.6em 2em 0.8em 1em;
  font-family: "Ginto Normal", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  position: relative;
  width: 100%;
  text-align: left;
  background-color: transparent;
  color: rgba(0, 0, 0, 0.75);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.filter-bar__header {
  border: none;
}
.filter-bar__header::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 400 !important;
  content: "\f067" !important;
  font-size: 0.9em;
  margin-top: 0.05em;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.filter-bar__header--active {
  font-weight: 500;
  color: #000000;
  background-color: #f9f7f6;
}
.filter-bar__header:focus:not(:active):not(.expanded) {
  background: #ffffff;
}
.filter-bar__header.expanded {
  background-color: #000000;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .filter-bar__header.expanded {
    border-bottom: 1px solid #2261ae;
  }
}
.filter-bar__header.expanded::after {
  transform: translateY(-50%) translateX(9%) rotate(-45deg);
}
.filter-bar__search {
  position: relative;
}
.filter-bar__search input {
  color: #000000;
  border: none;
}
.filter-bar__search input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.filter-bar__search input:focus {
  background: #ffffff;
  box-shadow: inset 0 0 5px rgba(34, 97, 174, 0.5);
}
.filter-bar__search input--active {
  color: #000000;
  background: #f9f7f6;
}
.filter-bar__search input + .filter-bar__search-icon {
  color: rgba(0, 0, 0, 0.75);
  pointer-events: none;
}
.filter-bar__search input + .filter-bar__search-icon::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 900 !important;
  content: "\f002" !important;
  font-size: 0.9em;
  margin-top: 0.05em;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
}
.filter-bar__body {
  display: flex;
  flex-wrap: wrap;
  padding: 1em 1.25em;
}
.filter-bar__body > * {
  width: 100%;
}
@media (max-width: 991.98px) {
  .filter-bar__body {
    background-color: #f9f7f6;
  }
}
@media (min-width: 992px) {
  .filter-bar__body {
    margin-top: 0.8em;
    position: absolute;
    z-index: 1050;
    min-width: 200px;
    max-width: 500px;
    border-radius: 0 5px 5px;
    background-color: #ece7e3;
    border: 1px solid #979797;
  }
}
.filter-bar__heading {
  display: none;
}
@media (min-width: 992px) {
  .filter-bar__heading {
    display: block;
  }
}
.filter-bar__toggle-list {
  display: flex;
  flex-wrap: wrap;
  margin: -0.25em;
}
.filter-bar__actions {
  margin-top: 1em;
  display: flex;
}
.filter-bar__reset-button {
  margin-left: auto;
  padding: 0;
  background-color: transparent;
  border: none;
  color: #796D6D;
}
.filter-bar__reset-button:hover, .filter-bar__reset-button:focus {
  background-color: transparent !important;
  color: #2261ae !important;
}
.filter-bar__slider {
  height: 1px;
  background: #beb0a3;
  position: absolute;
  left: 0;
  right: 0;
}
.filter-bar__slider-container {
  margin: 1em 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  user-select: none;
  position: relative;
}
.filter-bar__slider::before, .filter-bar__slider::after {
  content: "";
  display: inline-block;
  height: 0.33em;
  width: 0.33em;
  background: #beb0a3;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}
.filter-bar__slider::before {
  left: 0;
}
.filter-bar__slider::after {
  left: 100%;
}
.filter-bar__slider > .ui-slider-range {
  background: #2261ae;
  height: 0.33em;
  border: 1px solid #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.05s ease-out;
}
.filter-bar__slider > span.ui-slider-handle {
  padding: 1em;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
  transition: 0.05s ease-out;
}
.filter-bar__slider > span.ui-slider-handle::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  height: 0.8em;
  width: 0.8em;
  border: 1px solid #ffffff;
  background: #2261ae;
}
.filter-bar__slider ~ span {
  margin-top: 1em;
  font-size: 14px;
  text-align: center;
  display: flex;
  width: 1px;
  white-space: pre;
  justify-content: center;
}
.filter-button {
  margin-left: auto;
}
.filter-button + .filter-button {
  margin-left: 1em;
}
.filter-toggle {
  margin: 0.25em;
}
.filter-toggle__input {
  margin: 0;
  width: 0;
  height: 0;
  line-height: 0;
  display: block;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.filter-toggle__input:checked + .filter-toggle__button {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
.filter-toggle__input:checked + .filter-toggle__button:not(.button--disabled):hover, .filter-toggle__input:checked + .filter-toggle__button:not(.button--disabled):focus {
  background-color: #2261ae;
  color: #ffffff;
  border-color: #2261ae;
}
.filter-toggle__input:checked:focus + .filter-toggle__button {
  background-color: #2261ae;
  color: #ffffff;
  border-color: #2261ae;
}
.filter-toggle__input:focus + .filter-toggle__button {
  background-color: #ffffff;
  color: #2261ae;
  border-color: #2261ae;
}
.filter-toggle__button {
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}

@media (max-width: 991.98px) {
  .footer {
    padding-bottom: 50px;
  }
}
.footer__menu, .footer__ribbon {
  width: 100%;
}
.footer__menu {
  background-color: #ece7e3;
  position: relative;
  padding: 50px 0;
}
@media (min-width: 992px) {
  .footer__menu {
    padding: 70px 0;
  }
}
.footer__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2em;
}
@media (max-width: 991.98px) {
  .footer__head {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 991.98px) {
  .footer__back-to-top {
    margin-top: 2em;
  }
}
.footer__logo {
  height: 50px;
}
.footer__sitemap {
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .footer__sitemap {
    padding-bottom: 130px;
  }
}
.footer__sitemap ul {
  margin: 0;
}
@media (max-width: 991.98px) {
  .footer__sitemap ul {
    margin-bottom: 2em;
  }
}
.footer__sitemap li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.footer__heading, .footer__link {
  margin: 0.1em -0.25em;
  padding: 0.25em;
  display: inline-block;
  color: #000000;
  line-height: 16px;
}
.footer__heading {
  margin-bottom: 28px;
  font-size: 16px !important;
}
.footer__link {
  border-radius: 3px;
  transition: 0.1s ease;
}
.footer__link--social {
  text-decoration: none;
}
.footer__link--social .fa, .footer__link--social .fal, .footer__link--social .far, .footer__link--social .fas, .footer__link--social .fab {
  margin-right: 0.5em;
  font-size: 1.25em;
  line-height: 0;
  vertical-align: middle;
}
.footer__element {
  position: absolute;
  right: 0;
  bottom: 0;
}
.footer__ribbon {
  background-color: #2261ae;
  padding: 2em 0;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .footer__ribbon {
    flex-direction: column;
  }
}
.footer__ribbon > .container {
  display: flex;
}
@media (max-width: 991.98px) {
  .footer__ribbon > .container {
    flex-direction: column;
  }
}
.footer__ribbon__copyright, .footer__ribbon__link {
  color: #ffffff;
  display: inline-block;
  line-height: 1;
  padding: 0.5em;
}
@media (min-width: 992px) {
  .footer__ribbon__copyright {
    margin-right: auto;
  }
}
.footer__ribbon__link {
  transition: 0.2s ease;
  border-radius: 3px;
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  .footer__ribbon__link {
    margin-top: 0.5em;
  }
}
@media (min-width: 992px) {
  .footer__ribbon__link + .footer__ribbon__link {
    margin-left: 0.5em;
  }
}
.footer__ribbon__link:hover, .footer__ribbon__link:focus {
  background-color: #ffffff;
  color: #000000;
}

.form {
  margin-bottom: -15px;
}
.form + .form {
  margin-top: 30px;
}
.form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.form__field,
.form__field * {
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.form__field input.field__input:focus + .field__label,
.form__field select.field__input:focus + .field__label,
.form__field textarea.field__input:focus + .field__label,
.form__field .field__input > input:focus + .field__label {
  color: #2261ae;
}
.form__field input.field__input:focus, .form__field input.field__input:active,
.form__field select.field__input:focus,
.form__field select.field__input:active,
.form__field textarea.field__input:focus,
.form__field textarea.field__input:active,
.form__field .field__input > input:focus,
.form__field .field__input > input:active {
  outline: none;
  color: #000000;
  background-color: #fff;
  border-color: #2261ae;
  box-shadow: inset 0 0 6px rgba(34, 97, 174, 0.3333333333);
}
.form__field input.field__input:focus ::placeholder, .form__field input.field__input:active ::placeholder,
.form__field select.field__input:focus ::placeholder,
.form__field select.field__input:active ::placeholder,
.form__field textarea.field__input:focus ::placeholder,
.form__field textarea.field__input:active ::placeholder,
.form__field .field__input > input:focus ::placeholder,
.form__field .field__input > input:active ::placeholder {
  color: transparent;
}
.form__field.field--checkbox-list .field__input:focus-within, .form__field.field--radio-list .field__input:focus-within {
  color: #2261ae;
}
.form__field:focus-within .field__label, .form__field:focus-within > label:focus-within {
  color: #2261ae;
}
.form__field ::placeholder {
  transition: 0.2s ease;
}
.form__actions {
  display: flex;
  margin: 15px 0;
}
.form__fieldset {
  margin-bottom: 15px;
}
.form__fieldset .fieldset__label {
  font-family: "Ginto Normal", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.5em;
  color: #796D6D;
  transform: none;
  line-height: 1;
  position: absolute;
  top: 0;
  padding: 0 0.5em 0.25em 0;
  background-color: #fff;
  width: auto;
}
.form__fieldset .fieldset__label + .fieldset__box {
  margin-top: 0.5em;
}
.form__fieldset .fieldset__box {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin: 0;
  padding-top: 15px;
  padding: 15px calc(15px - 15px) 0;
  border: 1px solid #979797;
}

.field__label {
  font-family: "Ginto Normal", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  user-select: none;
  font-family: "Ginto Normal", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.5em;
  color: #796D6D;
  transform: none;
}

input.field__input,
select.field__input,
textarea.field__input {
  font-family: "Ginto Normal", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  line-height: 19px;
  border-radius: 5px;
  border: 1px solid #e5dfda;
  background-color: #f2efed;
}
input.field__input + .field__label,
select.field__input + .field__label,
textarea.field__input + .field__label {
  pointer-events: auto;
}
input.field__input:focus + .field__label::before,
select.field__input:focus + .field__label::before,
textarea.field__input:focus + .field__label::before {
  box-shadow: inset 0 0 6px rgba(34, 97, 174, 0.3333333333);
}

.form__field {
  position: relative;
}
.form__field.field--icon-left .field__input {
  padding-left: 2.5em;
}
.form__field.field--icon-left .field__icon {
  left: 1em;
}
.form__field.field--icon-right .field__input {
  padding-right: 2.5em;
}
.form__field.field--icon-right .field__icon {
  right: 1em;
}
.form__field[class*=col].field--icon-left .field__icon {
  left: calc(30px/ 2 + 1em);
}
.form__field[class*=col].field--icon-right .field__icon {
  right: calc(30px/ 2 + 1em);
}
.form__field .field__icon {
  position: absolute;
  font-size: inherit;
  color: #000000;
  bottom: 0.9em;
  user-select: none;
  pointer-events: none;
}
.form__field .field__input:focus + .field__icon {
  color: #2261ae;
}

.field--text .field__input, .field--select .field__input, .field--date .field__input, .field--search .field__input, .field--textarea .field__input {
  padding: 0.875em 0.875em;
  height: calc(2px + 0.875em* 2 + 17px);
}
.field--readonly .field__readonly {
  padding: 0.875em 0;
}
.field--textarea .field__input {
  height: auto;
  resize: none;
}
.field--checkbox, .field--radio {
  flex-direction: row;
  align-items: flex-start;
  font-family: "Ginto Normal", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.5em;
  color: #796D6D;
  transform: none;
}
.field--checkbox-list, .field--radio-list {
  flex-direction: column;
  font-family: "Ginto Normal", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  line-height: 19px;
  color: #796D6D;
}
.field--checkbox-list > * + *, .field--radio-list > * + * {
  margin-top: 0.5em;
}
.field--checkbox input.field__input,
.field--checkbox label.field__input input, .field--checkbox-list input.field__input,
.field--checkbox-list label.field__input input, .field--radio input.field__input,
.field--radio label.field__input input, .field--radio-list input.field__input,
.field--radio-list label.field__input input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: none;
  height: 20px;
  width: 20px;
  vertical-align: middle;
  margin: 0 0.5em 0.25em 0;
  position: relative;
  border-radius: 5px;
  border: 1px solid #e5dfda;
  background-color: #f2efed;
}
.field--checkbox input.field__input:checked::before,
.field--checkbox label.field__input input:checked::before, .field--checkbox-list input.field__input:checked::before,
.field--checkbox-list label.field__input input:checked::before, .field--radio input.field__input:checked::before,
.field--radio label.field__input input:checked::before, .field--radio-list input.field__input:checked::before,
.field--radio-list label.field__input input:checked::before {
  content: "";
  background-color: #2261ae;
  position: absolute;
  left: 4px;
  top: 4px;
  right: 4px;
  bottom: 4px;
  display: inline-block;
}
.field--radio input.field__input, .field--radio input.field__input::before,
.field--radio label.field__input input,
.field--radio label.field__input input::before, .field--radio-list input.field__input, .field--radio-list input.field__input::before,
.field--radio-list label.field__input input,
.field--radio-list label.field__input input::before {
  border-radius: 100px;
}
.field--select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.field--select select::-ms-expand {
  display: none;
}
.field--select .field__input {
  padding-right: 2em;
  margin-bottom: -4px;
  background-image: url('data:image/svg+xml;utf8,<svg width="8" height="5" viewBox="0 0 8 5" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M0.538289 0H7.46171C7.94067 0 8.18015 0.637415 7.84111 1.01097L4.38075 4.82656C4.17087 5.05781 3.82913 5.05781 3.61925 4.82656L0.158886 1.01097C-0.180154 0.637415 0.0593268 0 0.538289 0Z" fill="%23796D6D"/></svg>');
  background-size: 8px;
  background-repeat: no-repeat;
  background-position-x: calc(100% - 0.875em);
  background-position-y: 55%;
}
.field--select:focus-within .field__input, .field--select .field__input:focus {
  background-image: url('data:image/svg+xml;utf8,<svg width="8" height="5" viewBox="0 0 8 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.538289 0H7.46171C7.94067 0 8.18015 0.637415 7.84111 1.01097L4.38075 4.82656C4.17087 5.05781 3.82913 5.05781 3.61925 4.82656L0.158886 1.01097C-0.180154 0.637415 0.0593268 0 0.538289 0Z" fill="%232261ae"/></svg>');
}
.field--small .field__label {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0.5em;
}
.field--small .field__input {
  height: auto;
  font-size: 12px;
  padding: 0.666em 1em;
  line-height: 1;
}
.field--small.field--select::after {
  bottom: 0.5em;
}
.field--filter .field__label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.5em;
  color: #000000;
  transform: none;
}
.field--filter .field__input {
  font-size: 16px;
  line-height: 17px;
  background-color: #ffffff;
  border-radius: 5px;
  border: 1px solid #979797;
}
.field--filter .field__input + .field__label {
  pointer-events: auto;
}
.field--filter .field__input:focus + .field__label::before {
  box-shadow: inset 0 0 6px rgba(34, 97, 174, 0.3333333333);
}
.field--filter:focus-within .field__input,
.field--filter:focus-within .field__label::before {
  box-shadow: inset 0 0 6px rgba(34, 97, 174, 0.3333333333);
}

.field--disabled,
.field--disabled * {
  pointer-events: none !important;
  cursor: default !important;
}
.field--disabled .field__label {
  color: #dfd8d1;
}
.field--disabled .field__input,
.field--disabled .field__label::before {
  color: #dfd8d1;
  border-color: #ece7e3;
  background-color: #f2efed;
}
.field--disabled::before {
  color: #dfd8d1;
}
.field--required {
  /*&.field--checkbox,
  &.field--radio {*/
  /*}*/
  /*&:not(.field--checkbox):not(.field--radio) .field__label::after {
      content: "*";
      font-weight: bold;
      color: $color--red;
      margin-left: 0.25em;
  }*/
}
.field--required .field__label::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 900 !important;
  content: "\f111" !important;
  color: #CF121D;
  font-size: 0.33em;
  margin-left: 0.75em;
  margin-top: 0.75em;
  vertical-align: text-top;
}
.field--invalid .field__label, .field--invalid::before {
  color: #CF121D;
}
.field--invalid .field__input,
.field--invalid .field__label::before {
  border-color: #CF121D;
  color: #CF121D;
  background-color: #f47c83;
}
.field--invalid .field__error {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translate(100%, -50%);
  right: 0;
  padding: 6px;
  box-sizing: content-box;
  background-size: 12px;
  background-position: center;
}

.gallery {
  /*@include margin-section('top');*/
}
.gallery__carousel {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
}
.gallery__slide {
  display: flex !important;
  flex-direction: column;
  height: auto;
}
.gallery .carousel__pager {
  right: 30px;
  top: 0;
  margin-top: calc(5 / 7 * 100%);
  transform: translateY(-100%);
  padding-bottom: 30px;
}
.gallery__image {
  position: relative;
  border-radius: 5px;
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: calc(5 / 7 * 100%);
}
.gallery__image > *:first-child, .gallery__image > code:first-child + * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__image::after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 66%;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, black));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#000000", GradientType=0 );
  opacity: 0.75;
}
.gallery__caption {
  background: #ffffff;
  font-size: 14px;
  margin-top: 1.5em;
  flex: 1 0 auto;
}

.header {
  width: 100%;
  position: relative;
  z-index: 10;
}
.header__ribbon {
  font-size: 12px;
  background-color: #ece7e3;
  z-index: 2;
  position: relative;
  height: 40px;
  align-items: center;
  display: none;
}
@media (min-width: 992px) {
  .header__ribbon {
    display: flex;
  }
}
.header__ribbon .ribbon__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__ribbon .ribbon__link {
  margin: 0 1em;
  margin-top: -0.25em;
  color: #000000;
  transition: color 0.3s;
}
.header__ribbon .ribbon__link--separated {
  padding: 1em 0;
  padding-left: 2em;
  margin-left: 1em;
  border-left: 1px solid #ffffff;
}
.header__ribbon .ribbon__link:last-child {
  margin-right: 0;
}
.header__ribbon .ribbon__link:hover, .header__ribbon .ribbon__link:focus {
  color: #2261ae;
}
.header__nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
}
@media (min-width: 992px) {
  .header__nav {
    position: relative;
    height: auto;
  }
}
.header__nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: #f9f7f6;
}
@media (max-width: 991.98px) {
  .header__nav::before {
    bottom: -2px;
    border-bottom: 2px solid #2261ae;
  }
}
@media (min-width: 992px) {
  .header__nav::before {
    background: #ffffff;
  }
}
.header__nav > [class*=container] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .header__nav > [class*=container] {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
  }
}
.header__nav.overlay-active .nav__overlay {
  transform: translate(-50%, 0%);
}
@media (max-width: 991.98px) {
  .header__nav.overlay-active .nav__overlay {
    transform: translateX(0%);
  }
}
@media (min-width: 992px) {
  .header__nav.overlay-active .nav__logo .logo--white {
    opacity: 1;
  }
  .header__nav.overlay-active .nav__logo .logo--color {
    opacity: 0;
  }
}
.header__nav .nav__logo {
  position: relative;
  z-index: 2;
}
.header__nav .nav__logo a {
  line-height: 0;
}
@media (max-width: 991.98px) {
  .header__nav .nav__logo {
    margin-right: auto;
    padding: 15px 0;
    height: 60px;
  }
  .header__nav .nav__logo img {
    height: 100%;
  }
}
@media (min-width: 992px) {
  .header__nav .nav__logo {
    margin-right: auto;
    height: 50px;
  }
  .header__nav .nav__logo a {
    display: inline-block;
  }
}
.header__nav .nav__logo .logo--white {
  opacity: 0;
  display: none;
}
@media (min-width: 992px) {
  .header__nav .nav__logo .logo--white {
    display: block;
  }
}
@media (min-width: 992px) {
  .header__nav .nav__logo .logo--white {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.25s ease;
  }
}
.header__nav .nav__logo .logo--color {
  transition: opacity 0.25s ease;
  opacity: 1;
}
.header__nav .nav__menu {
  align-items: center;
  display: flex;
}
@media (max-width: 991.98px) {
  .header__nav .nav__menu {
    background: #ece7e3;
    color: #000000;
    width: calc(100% + 0.5px);
    display: block;
    position: absolute;
    transition: transform 0.25s ease;
    transform: translate(-50%, -100%);
    left: 50%;
    min-height: 0;
    overflow-y: auto;
    z-index: -2;
    top: calc(100% - 1px);
    height: calc(100vh - 60px - 50px + 1px);
  }
}
@media (max-width: 991.98px) and (min-width: 992px) {
  .header__nav .nav__menu {
    max-height: 85vh;
  }
}
@media (max-width: 991.98px) {
  .header__nav .nav__menu > [class*=container] {
    padding-top: 10vh;
    padding-bottom: 10vh;
  }
}
@media (max-width: 991.98px) {
  .header__nav .nav__menu__close {
    position: absolute;
    font-size: 28px;
    padding: 0;
    background: none;
    border: none;
    line-height: 0;
    padding: 0.2em 0.25em;
    color: inherit;
    top: 20px;
    right: 15px;
    -webkit-tap-highlight-color: transparent;
  }
}
.header__nav .nav__menu > ul {
  padding: 0;
  margin: 0;
  display: flex;
}
@media (max-width: 991.98px) {
  .header__nav .nav__menu > ul {
    flex-direction: column;
  }
}
.header__nav .nav__menu li {
  display: inline-block;
  list-style: none;
}
.header__nav .nav__menu-secondary {
  display: flex;
  padding: 0 1.875em;
  margin-top: 2em;
}
@media (min-width: 992px) {
  .header__nav .nav__menu-secondary {
    display: none;
  }
}
.header__nav .nav__menu-secondary > ul {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.header__nav .nav__menu-secondary > ul:first-child {
  padding-left: 0;
}
.header__nav .nav__menu-secondary > ul:not(:first-child) {
  padding-right: 0;
}
.header__nav .nav__menu-secondary .nav__link,
.header__nav .nav__menu-secondary .nav__heading {
  font-size: 14px;
  line-height: 14px;
  padding: 0 0 1.25em 0;
  border: none;
  margin: 0;
}
.header__nav .nav__menu-secondary .nav__link .fa, .header__nav .nav__menu-secondary .nav__link .fal, .header__nav .nav__menu-secondary .nav__link .far, .header__nav .nav__menu-secondary .nav__link .fas, .header__nav .nav__menu-secondary .nav__link .fab,
.header__nav .nav__menu-secondary .nav__heading .fa,
.header__nav .nav__menu-secondary .nav__heading .fal,
.header__nav .nav__menu-secondary .nav__heading .far,
.header__nav .nav__menu-secondary .nav__heading .fas,
.header__nav .nav__menu-secondary .nav__heading .fab {
  margin-right: 0.5em;
  line-height: 0;
  vertical-align: middle;
}
.header__nav .nav__link {
  padding: 0.5em 0.5em;
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  margin: 0 0.25em;
}
@media (max-width: 991.98px) {
  .header__nav .nav__link {
    margin: 0;
  }
}
@media (max-width: 991.98px) {
  .header__nav .nav__link {
    font-size: 20px;
    display: block;
    padding: 1em 1.5em;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.25);
  }
  .header__nav .nav__link.nav__link--parent::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Pro" !important;
    color: inherit;
    font-weight: 900 !important;
    content: "\f054" !important;
    font-size: 0.8em;
    margin-left: 0.75em;
    vertical-align: middle;
  }
}
.header__nav .nav__link:hover, .header__nav .nav__link:focus {
  color: #2261ae;
  text-decoration: underline;
}
.header__nav .nav__icon-button {
  margin: 0.25em;
  margin-bottom: 0;
  padding: 0.5em;
  background: none;
  border: none;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
  font-size: 16px;
}
.header__nav .nav__icon-button:nth-last-child(2) {
  margin-right: -0.5em;
}
.header__nav .nav__icon-button + .nav__icon-button {
  margin-left: 0.25em;
}
.header__nav .nav__icon-button--search {
  font-size: 1.125em;
  color: #2261ae;
}
.header__nav .nav__icon-button--search::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 400 !important;
  content: "\f002" !important;
}
.header__nav .nav__icon-button--menu {
  display: block;
  color: #2261ae;
  position: relative;
  transition: 0.3s ease;
}
@media (min-width: 992px) {
  .header__nav .nav__icon-button--menu {
    display: none;
  }
}
.header__nav .nav__icon-button--menu::before, .header__nav .nav__icon-button--menu::after {
  transition: 0.3s ease;
}
.header__nav .nav__icon-button--menu::before {
  font-size: 1.25em;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 400 !important;
  content: "\f0c9" !important;
  opacity: 1;
}
.header__nav .nav__icon-button--menu::after {
  font-size: 1.5em;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 300 !important;
  content: "\f00d" !important;
  position: absolute;
  top: 0.25em;
  left: 0.375em;
  opacity: 0;
}
.header__nav.search-active .nav__search {
  transform: translate(-50%, 0%);
}
.header__nav.mobile-menu-active .nav__menu {
  transform: translate(-50%, 0%);
}
.header__nav.mobile-menu-active .nav__icon-button--menu {
  transform: rotate(-90deg);
}
.header__nav.mobile-menu-active .nav__icon-button--menu::before {
  opacity: 0;
}
.header__nav.mobile-menu-active .nav__icon-button--menu::after {
  opacity: 1;
}
.header__nav .nav__quick-links__button {
  margin-left: 0.75em;
}
@media (max-width: 991.98px) {
  .header__nav .nav__quick-links__button::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Pro" !important;
    color: inherit;
    font-weight: 900 !important;
    content: "\f0d7" !important;
    font-size: 1.25em;
  }
}
@media (min-width: 992px) {
  .header__nav .nav__quick-links__button::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Pro" !important;
    color: inherit;
    font-weight: 900 !important;
    content: "\f0d7" !important;
  }
}
.header__nav .nav__quick-links__button::before, .header__nav .nav__quick-links__button::after {
  transition: transform 0.3s ease;
}
@media (max-width: 991.98px) {
  .header__nav .nav__quick-links__button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffcb58;
    color: #000000;
    margin: 0;
    border-radius: 0;
    width: 100%;
    height: 50px;
    border: none;
    border-top: 1px solid #000000;
    font-size: 18px;
    transition: bottom 0.25s ease;
    box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.15);
  }
  .header__nav .nav__quick-links__button::before, .header__nav .nav__quick-links__button::after {
    transform: rotate(-180deg);
  }
  .header__nav .nav__quick-links__button i {
    transition: 0.25s ease;
  }
  .header__nav .nav__quick-links__button:hover, .header__nav .nav__quick-links__button:focus {
    background-color: #ffcb58;
    color: #000000;
  }
}
.header__nav.quick-links-active .nav__quick-links {
  transform: translate(-50%, 0%);
}
.header__nav.quick-links-active .nav__quick-links__button {
  bottom: calc( 100% - 60px - 2px - 50px );
}
.header__nav.quick-links-active .nav__quick-links__button::before, .header__nav.quick-links-active .nav__quick-links__button::after {
  transform: rotate(0deg);
}

.header.header--experience-editor .header__nav:not(.search-active) .nav__search {
  opacity: 0;
  pointer-events: none;
}
.header.header--experience-editor .header__nav:not(.overlay-active) .nav__overlay {
  opacity: 0;
  pointer-events: none;
}
.header.header--experience-editor .header__nav:not(.quick-links-active) .nav__quick-links {
  opacity: 0;
  pointer-events: none;
}

@keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 100px));
  }
}
@keyframes slide-back {
  from {
    transform: translateX(calc(-100% - 100px));
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slide-left--mobile {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide-back--mobile {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.nav__overlay {
  background: #2261ae;
  color: #ffffff;
  width: calc(100% + 0.5px);
  display: block;
  position: absolute;
  transition: transform 0.25s ease;
  transform: translate(-50%, -100%);
  left: 50%;
  height: 700px;
  z-index: 1;
  top: -1px;
  display: flex;
}
@media (min-width: 992px) {
  .nav__overlay {
    max-height: 85vh;
  }
}
.nav__overlay__close {
  position: absolute;
  font-size: 28px;
  padding: 0;
  background: none;
  border: none;
  line-height: 0;
  padding: 0.2em 0.25em;
  color: inherit;
  top: 20px;
  right: 15px;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 991.98px) {
  .nav__overlay {
    z-index: -2;
    margin-top: calc(60px + 2px);
    left: 0;
    transform: translateX(100%);
    overflow-y: auto;
    min-height: auto;
    height: calc(100vh - 60px - 2px - 50px + 1px);
  }
}
.nav__overlay > [class*=container] {
  display: flex;
  justify-content: stretch;
  position: relative;
  background: inherit;
}
@media (max-width: 991.98px) {
  .nav__overlay > [class*=container] {
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    overflow-y: auto;
  }
}
.nav__overlay ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.nav__overlay li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__overlay .overlay__info, .nav__overlay .overlay__menu {
  display: none !important;
}
@media (min-width: 992px) {
  .nav__overlay .overlay__info, .nav__overlay .overlay__menu {
    flex: 1 1 auto;
    padding-top: 115px;
    width: 50%;
  }
}
.nav__overlay .overlay__info.active, .nav__overlay .overlay__menu.active {
  display: flex !important;
}
.nav__overlay .overlay__close {
  position: absolute;
  top: calc(115px / 2);
  transform: translateY(-50%);
  right: 15px;
  background: none;
  border: none;
  color: #ffffff;
  vertical-align: middle;
  padding: 0.5em;
  font-size: 16px;
  align-items: center;
  cursor: pointer;
  display: none;
}
@media (min-width: 992px) {
  .nav__overlay .overlay__close {
    display: flex;
  }
}
.nav__overlay .overlay__close .fa, .nav__overlay .overlay__close .fal, .nav__overlay .overlay__close .far, .nav__overlay .overlay__close .fas, .nav__overlay .overlay__close .fab {
  font-size: 1.5em;
  margin-bottom: -0.25em;
  margin-left: 0.35em;
}
.nav__overlay .overlay__back {
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  border: none;
  color: #ffffff;
  vertical-align: middle;
  padding: 0.5em;
  font-size: 16px;
  display: flex;
  line-height: 0;
  align-items: center;
  align-self: flex-start;
  cursor: pointer;
  padding: 30px 30px 15px 30px;
  z-index: 2;
}
@media (min-width: 992px) {
  .nav__overlay .overlay__back {
    display: none;
  }
}
.nav__overlay .overlay__back .fa, .nav__overlay .overlay__back .fal, .nav__overlay .overlay__back .far, .nav__overlay .overlay__back .fas, .nav__overlay .overlay__back .fab {
  font-size: 1.25em;
  margin-bottom: -0.2em;
  margin-right: 0.35em;
}
.nav__overlay .overlay__info {
  flex-direction: column;
  position: relative;
  background: inherit;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .nav__overlay .overlay__info {
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1em 1.5em;
  }
}
@media (min-width: 992px) {
  .nav__overlay .overlay__info {
    border-right: 3px solid rgba(255, 255, 255, 0.15);
    justify-content: flex-end;
    padding-bottom: 100px;
    padding-right: 100px;
  }
}
.nav__overlay .overlay__title {
  display: inline-block;
  /*font-size: calc(80px - ((80px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(80px - ((80px - 16px) / 2)) !important;
  /*}*/
  font-weight: 500;
  text-decoration: none;
  border-bottom: 0.1em solid;
  color: #ffffff;
  align-self: flex-start;
  margin-right: 1em;
  margin-bottom: 0.25em;
  position: relative;
  transition: 0.3s;
  line-height: 125%;
  word-break: normal;
}
@media (min-width: 1200px) {
  .nav__overlay .overlay__title {
    font-size: calc(80px - ((80px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .nav__overlay .overlay__title {
    font-size: 80px !important;
  }
}
@media (max-width: 991.98px) {
  .nav__overlay .overlay__title {
    font-size: 38px !important;
    margin: 1.25em 0 0.25em;
  }
}
.nav__overlay .overlay__title::after {
  font-size: 0.75em;
  position: absolute;
  top: 65%;
  left: 100%;
  transform: translate(75%, -50%);
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 900 !important;
  content: "\f054" !important;
}
.nav__overlay .overlay__title:hover, .nav__overlay .overlay__title:focus {
  color: #ffcb58;
}
.nav__overlay .overlay__description {
  /*font-size: calc(20px - ((20px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(20px - ((20px - 16px) / 2)) !important;
  /*}*/
  line-height: 150%;
  display: none;
}
@media (min-width: 1200px) {
  .nav__overlay .overlay__description {
    font-size: calc(20px - ((20px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .nav__overlay .overlay__description {
    font-size: 20px !important;
  }
}
@media (min-width: 992px) {
  .nav__overlay .overlay__description {
    display: block;
  }
}
.nav__overlay .overlay__menu {
  position: relative;
}
@media (min-width: 992px) {
  .nav__overlay .overlay__menu {
    padding-bottom: 100px;
    padding-left: 100px;
  }
}
.nav__overlay .overlay__menu > ul {
  opacity: 1;
}
.nav__overlay .overlay__menu > .overlay__submenu {
  opacity: 0;
  pointer-events: none;
}
.nav__overlay .overlay__menu > .overlay__submenu.active {
  opacity: 1;
  pointer-events: auto;
}
.nav__overlay .overlay__menu > * {
  transition: opacity 0.25s ease;
}
.nav__overlay .overlay__menu.submenu-active > ul {
  opacity: 0;
  pointer-events: none;
}
.nav__overlay .overlay__menu.submenu-active > * {
  animation: 0.25s ease both slide-left;
}
@media (max-width: 991.98px) {
  .nav__overlay .overlay__menu.submenu-active > * {
    animation-name: slide-left--mobile;
  }
}
.nav__overlay .overlay__menu.submenu-inactive > * {
  animation: 0.25s ease both slide-back;
}
@media (max-width: 991.98px) {
  .nav__overlay .overlay__menu.submenu-inactive > * {
    animation-name: slide-back--mobile;
  }
}
.nav__overlay .overlay__link {
  display: block;
  text-decoration: none;
  color: #ffffff;
  transition: 0.2s;
  border-radius: 5px;
  padding: 0.5em;
  /*font-size: calc(30px - ((30px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(30px - ((30px - 16px) / 2)) !important;
  /*}*/
  line-height: 125%;
}
@media (min-width: 1200px) {
  .nav__overlay .overlay__link {
    font-size: calc(30px - ((30px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .nav__overlay .overlay__link {
    font-size: 30px !important;
  }
}
@media (max-width: 991.98px) {
  .nav__overlay .overlay__link {
    border-radius: 0;
    font-size: 20px;
    display: block;
    padding: 1em 1.5em;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
  }
}
.nav__overlay .overlay__link span {
  margin-top: -0.25em;
  display: block;
}
.nav__overlay .overlay__link:hover, .nav__overlay .overlay__link:focus {
  background: #ffffff;
  color: #000000;
}
.nav__overlay .overlay__link--parent span {
  display: flex;
  align-items: flex-end;
  width: 100%;
}
.nav__overlay .overlay__link--parent span::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 900 !important;
  content: "\f054" !important;
  font-size: 0.8em;
  margin-left: auto;
  padding: 0.1em 0;
}
.nav__overlay .overlay__submenu {
  width: 100%;
  position: absolute;
  left: 100%;
  top: 0;
}
@media (min-width: 992px) {
  .nav__overlay .overlay__submenu {
    margin: -1em 0;
    top: 115px;
    padding-left: 100px;
    width: calc(100% - 100px);
  }
  .nav__overlay .overlay__submenu > :first-child {
    margin-bottom: 1em;
  }
}
.nav__overlay .overlay__submenu > :last-child {
  margin-top: 1em;
}
.nav__overlay .overlay__submenu > ul {
  position: relative;
}
.nav__overlay .overlay__submenu > ul::before {
  content: "";
  position: absolute;
  left: -100px;
  top: -1em;
  right: -50vw;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.25);
}
.nav__overlay .overlay__submenu-back {
  /*font-size: calc(20px - ((20px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(20px - ((20px - 16px) / 2)) !important;
  /*}*/
  padding: 0.65em;
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-block;
}
@media (min-width: 1200px) {
  .nav__overlay .overlay__submenu-back {
    font-size: calc(20px - ((20px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .nav__overlay .overlay__submenu-back {
    font-size: 20px !important;
  }
}
@media (max-width: 991.98px) {
  .nav__overlay .overlay__submenu-back {
    padding: 1.3em 1.95em;
  }
}
.nav__overlay .overlay__submenu-back::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 900 !important;
  content: "\f053" !important;
  /*font-size: 0.8em;*/
  margin-right: 0.75em;
}
.nav__overlay--white {
  background-color: #ffffff;
  color: #000000;
}
.nav__overlay--light-grey-20 {
  background-color: #f2efed;
  color: #000000;
}
.nav__overlay--dark-blue {
  background-color: #2261ae;
  color: #ffffff;
}
.nav__overlay--red {
  background-color: #a0252b;
  color: #ffffff;
}
.nav__overlay--dark-red {
  background-color: #730b12;
  color: #ffffff;
}
.nav__overlay--forest-green {
  background-color: #505f2d;
  color: #ffffff;
}
.nav__overlay--dark-green {
  background-color: #2f3b03;
  color: #ffffff;
}
.nav__overlay--purple {
  background-color: #63516d;
  color: #ffffff;
}
.nav__overlay--dark-grey {
  background-color: #796D6D;
  color: #ffffff;
}
.nav__overlay--black {
  background-color: #000000;
  color: #ffffff;
}

.nav__quick-links {
  background: #2261ae;
  color: #ffffff;
  width: calc(100% + 0.5px);
  display: block;
  position: absolute;
  transition: transform 0.25s ease;
  transform: translate(-50%, -100%);
  left: 50%;
  min-height: 0;
  z-index: -2;
  display: flex;
  overflow-y: auto;
  top: calc(100% - 1px);
}
@media (min-width: 992px) {
  .nav__quick-links {
    max-height: 85vh;
  }
}
.nav__quick-links > [class*=container] {
  padding-top: 10vh;
  padding-bottom: 10vh;
}
.nav__quick-links__close {
  position: absolute;
  font-size: 28px;
  padding: 0;
  background: none;
  border: none;
  line-height: 0;
  padding: 0.2em 0.25em;
  color: inherit;
  top: 20px;
  right: 15px;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 991.98px) {
  .nav__quick-links {
    position: fixed;
    height: calc(100vh - 60px - 2px - 50px);
    transform: translate(-50%, 100%);
    top: calc(60px + 2px + 50px);
  }
}
.nav__quick-links > .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
@media (max-width: 991.98px) {
  .nav__quick-links > .container {
    padding: 30px;
    padding-bottom: calc(30px - 3em);
  }
}
@media (min-width: 992px) {
  .nav__quick-links > .container {
    padding-bottom: 0;
    margin-bottom: 130px;
  }
}
.nav__quick-links .nav__quick-links__title {
  display: none;
  margin-top: 0;
  margin-bottom: 1em;
  text-align: center;
}
@media (min-width: 992px) {
  .nav__quick-links .nav__quick-links__title {
    display: block;
  }
}
.nav__quick-links__close {
  display: none;
}
@media (min-width: 992px) {
  .nav__quick-links__close {
    display: block;
  }
}

.quick-links__icon {
  /*font-size: calc(46px - ((46px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(46px - ((46px - 16px) / 2)) !important;
  /*}*/
  margin-bottom: 0.25em;
}
@media (min-width: 1200px) {
  .quick-links__icon {
    font-size: calc(46px - ((46px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .quick-links__icon {
    font-size: 46px !important;
  }
}
@media (max-width: 991.98px) {
  .quick-links__icon {
    margin-right: 0.5em;
    line-height: 0;
  }
}
@media (max-width: 991.98px) {
  .quick-links__list {
    margin-bottom: 3em;
  }
  .quick-links__list h3 {
    display: inline-block;
  }
}
.quick-links__list ul,
.quick-links__list li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
.quick-links__link {
  display: inline-block;
  padding: 0.15em 0.5em 0.35em;
  margin: 2px -0.5em 0;
  color: #ffffff;
  transition: 0.2s ease;
  border-radius: 2px;
  text-decoration: none;
  font-size: 18px;
}
.quick-links__link::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 400 !important;
  content: "\f061" !important;
  display: inline;
  font-size: 0.8em;
  padding-left: 0.5em;
  vertical-align: middle;
}
.quick-links__link:hover, .quick-links__link:focus {
  background: #ffffff;
  color: #000000;
}
.quick-links__element {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
}
@media (min-width: 992px) {
  .quick-links__element {
    display: block;
  }
}

.nav__search {
  background: #ffcb58;
  color: #000000;
  width: calc(100% + 0.5px);
  display: block;
  position: absolute;
  transition: transform 0.25s ease;
  transform: translate(-50%, -100%);
  left: 50%;
  min-height: 0;
  z-index: -2;
  display: flex;
  top: calc(100% - 1px);
}
@media (min-width: 992px) {
  .nav__search {
    max-height: 85vh;
  }
}
.nav__search > [class*=container] {
  padding-top: 10vh;
  padding-bottom: 10vh;
}
.nav__search__close {
  position: absolute;
  font-size: 28px;
  padding: 0;
  background: none;
  border: none;
  line-height: 0;
  padding: 0.2em 0.25em;
  color: inherit;
  top: 20px;
  right: 15px;
  -webkit-tap-highlight-color: transparent;
}
.nav__search > .container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}
.nav__search .nav__search__title {
  margin-top: 0;
  margin-bottom: 0.5em;
}
.nav__search__input {
  position: relative;
}
.nav__search__input,
.nav__search__input input {
  display: block;
  width: 100%;
  /*font-size: calc(18px - ((18px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(18px - ((18px - 16px) / 2)) !important;
  /*}*/
}
@media (min-width: 1200px) {
  .nav__search__input,
.nav__search__input input {
    font-size: calc(18px - ((18px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .nav__search__input,
.nav__search__input input {
    font-size: 18px !important;
  }
}
.nav__search__input input {
  border-radius: 5px;
  border: none;
  padding: 0.75em 3em 0.75em 1.5em;
  font-family: "Ginto Normal", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.nav__search__button {
  background: none;
  border: none;
  position: absolute;
  font-size: 18px;
  right: 0.5em;
  padding: 0.75em;
  top: 50%;
  transform: translateY(-50%);
}
.nav__search__help {
  margin-top: 0.5em;
  text-align: right;
}

.image-faq {
  background-color: #ece7e3;
  padding: 70px 0;
}
@media (max-width: 991.98px) {
  .image-faq {
    padding: 50px 0;
  }
}
.image-faq__image-container {
  padding: 7.5%;
  margin-top: -7.5%;
  position: relative;
}
@media (max-width: 991.98px) {
  .image-faq__image-container {
    margin-top: 0;
    margin-bottom: 50px;
  }
}
.image-faq .accordion__body {
  /*font-size: calc(20px - ((20px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(20px - ((20px - 16px) / 2)) !important;
  /*}*/
}
@media (min-width: 1200px) {
  .image-faq .accordion__body {
    font-size: calc(20px - ((20px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .image-faq .accordion__body {
    font-size: 20px !important;
  }
}
.image-faq__image {
  position: relative;
  padding-top: 100%;
}
.image-faq__image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.image-faq__element {
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: left bottom;
  height: 40%;
}
.image-faq__element img {
  height: 100%;
  width: auto;
}

a {
  text-decoration: underline;
  color: #2261ae;
  word-break: break-word;
}
a:hover, a:focus {
  text-decoration: none;
}
a.link--external::after {
  font-size: 0.75em;
  margin-left: 0.5em;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 900 !important;
  content: "\f35d" !important;
}
a.link--small {
  font-size: 14px;
  font-weight: 500;
}

/*
	Styles for popup alert (SJOGSR-285)

*/
.modal-container {
  display: inline-block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  display: none;
  z-index: 1050;
  /* Fix alignment for IE - doesn't like flex alignment much*/
  align-items: flex-start;
  justify-content: flex-start;
  padding: 15px 0;
}

.modal {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  /* Fix alignment for IE */
  position: relative;
  left: 50%;
  margin: auto 15px;
  transform: translateX(-50%);
  transform: translateX(calc(-50% - 15px));
}
.modal__header, .modal__body {
  max-width: 600px;
}
.modal__header {
  position: relative;
}
.modal__dismiss {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  background: #fff;
  color: #CF121D;
  border: none;
  height: 30px;
  width: 30px;
  border-radius: 100px;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.modal__body {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .modal__body {
    padding: 1.5em;
  }
}
.modal__body > * + * {
  margin-top: 20px;
}
.modal__heading {
  margin: 0 !important;
}
.modal p {
  line-height: 125%;
  margin-bottom: 0;
}

.menu-grid [class*=col-] {
  display: flex;
}
.menu-grid__container {
  background: #f9f7f6;
  border: 1px solid #ece7e3;
  border-radius: 5px;
  overflow: hidden;
  flex: 1 1 auto;
  margin: 15px 0;
  display: flex;
  flex-direction: column;
}
.menu-grid__image {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(1 / 1 * 100%);
}
.menu-grid__image > *:first-child, .menu-grid__image > code:first-child + * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-grid__body {
  position: relative;
  padding-top: 15px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.menu-grid__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: #2261ae;
}
.menu-grid__body > a {
  display: block;
  color: #000000;
  text-decoration: none;
  transition: none;
}
.menu-grid__body > a:hover, .menu-grid__body > a:focus {
  color: #2261ae;
  background-color: #ffffff;
  text-decoration: none;
}
.menu-grid__body > a:hover > .menu-grid__title span, .menu-grid__body > a:focus > .menu-grid__title span {
  text-decoration: underline;
}
.menu-grid__title {
  padding: 0.8em;
  border-bottom: 1px solid #beb0a3;
  margin: 0;
}
.menu-grid__title::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 900 !important;
  content: "\f061" !important;
  font-size: 0.9em;
  display: inline;
  margin-left: 0.5em;
}
.menu-grid__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: -1px;
}
.menu-grid__link {
  display: block;
  padding: 0.75em 1.25em;
  text-decoration: none;
  transition: none;
  color: #000000;
  line-height: 125%;
  background: #f9f7f6;
  border-bottom: 1px solid #beb0a3;
}
.menu-grid__link:hover, .menu-grid__link:focus {
  text-decoration: underline;
  background-color: #ffffff;
  color: #2261ae;
}
.menu-grid__description {
  padding: 1.25em;
}
.menu-grid__read-more {
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-top: 1em;
  display: flex !important;
  background: none !important;
  margin: 1.125em;
  margin-top: auto;
}
@media (max-width: 991.98px) {
  .menu-grid__read-more {
    margin-top: 0;
  }
}
.menu-grid__read-more::before {
  content: "";
  line-height: 0;
  width: 2em;
  height: 2em;
  border-radius: 100px;
  background-color: #2261ae;
  margin-right: 0.75em;
}

.featured-news {
  text-align: center;
}
.featured-news > .row {
  justify-content: center;
}
.featured-news__title {
  color: #2261ae;
  text-align: left;
}

.news-archive {
  text-decoration: none;
  color: #000000;
}
.news-archive__heading {
  padding-bottom: 0.25em;
  border-bottom: 4px solid #ece7e3;
  margin-bottom: 0.5em;
}
.news-archive__row {
  margin: -15px;
}
.news-archive__row [class*=col-] {
  padding: 15px;
  display: flex;
}
.news-archive__item {
  padding: 1.5em;
  border-radius: 5px;
  border: 1px solid #beb0a3;
  background-color: #f9f7f6;
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  align-items: flex-start;
  flex-direction: column;
}
.news-archive__date {
  font-weight: 500;
}
.news-archive__details {
  display: flex;
  width: 100%;
  margin-bottom: 1.5em;
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
}
.news-archive__details > * {
  /*padding: 0 $grid-gutter-width/2;*/
}
.news-archive__title {
  /*font-size: calc(24px - ((24px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(24px - ((24px - 16px) / 2)) !important;
  /*}*/
  font-weight: 500;
  color: #000000;
  width: 100%;
  display: inline-block;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .news-archive__title {
    font-size: calc(24px - ((24px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .news-archive__title {
    font-size: 24px !important;
  }
}
.news-archive__title:hover, .news-archive__title:focus {
  color: #2261ae;
  text-decoration: underline;
}
.news-archive__label {
  flex: 1 1 50%;
  /*display: flex;
  flex-direction: column;*/
  align-items: flex-start;
  margin-top: 1em;
  font-size: 15px;
}
.news-archive__label__heading {
  font-weight: 500;
  text-transform: uppercase;
}
.news-archive__label__value {
  font-weight: 500;
  font-size: 13px;
  color: #796D6D;
  text-decoration: none;
  text-transform: uppercase;
  font-size: inherit;
}
.news-archive__label__value:hover, .news-archive__label__value:focus {
  color: #2261ae;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .news-archive__label:nth-child(2n) {
    padding-right: 15px;
  }
  .news-archive__label:nth-child(2n+1) {
    padding-left: 15px;
  }
}
.news-archive__content {
  flex: 1 0 auto;
  display: flex;
  width: 100%;
}
@media (max-width: 991.98px) {
  .news-archive__content {
    flex-wrap: wrap;
  }
}
.news-archive__image {
  width: 100%;
}
@media (min-width: 992px) {
  .news-archive__image {
    width: 50%;
    padding-right: 15px;
  }
}
.news-archive__image > div {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(3 / 4 * 100%);
  border-radius: 5px;
}
.news-archive__image > div > *:first-child, .news-archive__image > div > code:first-child + * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-archive__image + .news-archive__body {
  padding-left: 15px;
}
@media (max-width: 991.98px) {
  .news-archive__image + .news-archive__body {
    padding-left: 0;
    margin-top: 1em;
  }
}
.news-archive__image + .news-archive__body .news-archive__description {
  margin-top: 0;
  margin-bottom: auto;
}
.news-archive__body {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}
.news-archive__description {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-archive__download {
  margin-top: 2em;
}
.news-archive__download > [class*=fa-] {
  font-size: 24px;
  vertical-align: middle;
  margin-top: -0.25em;
  margin-right: 0.25em;
}

.news-detail__label__value {
  font-weight: 500;
  font-size: 13px;
  color: #796D6D;
  text-decoration: none;
  text-transform: uppercase;
  font-size: inherit;
}
.news-detail__category {
  margin-bottom: 0.5em;
}
.news-detail__date {
  margin-bottom: 0.5em;
}

.news-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 3em;
  text-align: left;
}
.news-item__image {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  padding-bottom: calc(1 / 1 * 100%);
}
.news-item__image > *:first-child, .news-item__image > code:first-child + * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-item__image::after {
  content: "";
  position: absolute;
  height: 12px;
  background: #2261ae;
  left: 0;
  right: 0;
  bottom: 0;
}
.news-item__date {
  padding-top: 1.5em;
}
.news-item > a {
  text-decoration: none;
  transition: color 0.2s ease;
  color: #000000;
}
.news-item > a:hover, .news-item > a:focus {
  color: #2261ae;
  text-decoration: underline;
}
.news-item__title {
  font-weight: bold;
  margin: 1em 0;
}
.news-item__link {
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-top: 1em;
}
@media (max-width: 991.98px) {
  .news-item__link {
    margin-top: 0;
  }
}
.news-item__link::before {
  content: "";
  line-height: 0;
  width: 2em;
  height: 2em;
  border-radius: 100px;
  background-color: #2261ae;
  margin-right: 0.75em;
}

.news-slider .carousel__pager {
  display: none;
}
@media (max-width: 991.98px) {
  .news-slider__slide {
    padding: 0 15px;
  }
  .news-slider__slide .news-item {
    padding: 1.5em;
    border: 2px solid #ece7e3;
    border-radius: 5px;
  }
  .news-slider__slide .news-item__date {
    padding: 0;
  }
  .news-slider__slide .news-item__image {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .news-slider .carousel__pager {
    display: flex;
    top: 100%;
    left: 50%;
    right: auto;
    padding-bottom: 0;
    margin: 0;
    justify-content: center;
    transform: translate(-50%, -100%);
  }
}

.pagination {
  display: flex;
  align-items: center;
  padding: 2.5em 0;
  flex-wrap: wrap;
  /*@include bp-mobile {
      justify-content: space-between;
  }*/
}
.pagination > * {
  flex: none;
  margin-bottom: 0.5em;
}
.pagination > * + * {
  margin-left: 1em;
}
@media (max-width: 991.98px) {
  .pagination > * + * {
    margin-left: 0.75em;
  }
}
.pagination__pager-dot {
  font-family: "Ginto Normal", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  display: inline-flex;
  font-weight: 500;
  height: 1.75em;
  width: 1.75em;
  line-height: 0;
  text-decoration: none;
  color: #000000;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: inherit;
  border-radius: 100%;
  transition: 0.3s ease;
  padding-bottom: 0.15em;
}
+ .pagination__pager-dot {
  margin: 0;
  margin-left: 0.25em;
}
.pagination__pager-dot--active {
  background-color: #000000;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .pagination__pager-dot {
    order: 3;
  }
}
@media (max-width: 991.98px) {
  .pagination__button {
    padding: 0.25em 0.75em;
    font-size: 14px;
    line-height: 175%;
    order: 1;
  }
}
.pagination--center {
  justify-content: center;
}
.pagination--separator {
  margin-top: 2.5em;
  border-top: 3px solid #ece7e3;
}

.quote-block {
  /*font-size: calc(26px - ((26px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(26px - ((26px - 16px) / 2)) !important;
  /*}*/
  /*@include margin-section('top');*/
}
@media (min-width: 1200px) {
  .quote-block {
    font-size: calc(26px - ((26px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .quote-block {
    font-size: 26px !important;
  }
}
.quote-block:first-child {
  margin-top: 0;
}
.quote-block:last-child {
  margin-bottom: 0;
}
.quote-block__inner {
  color: #2261ae;
  position: relative;
  line-height: 150%;
  padding-left: 4em;
}
@media (max-width: 991.98px) {
  .quote-block__inner {
    padding-left: 2.5em;
  }
}
.quote-block__inner::before {
  content: '"';
  font-size: 2.5em;
  font-weight: 500;
  font-style: italic;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  margin-left: 0.25em;
}
@media (max-width: 991.98px) {
  .quote-block__inner::before {
    margin-left: 0;
  }
}

.recommendations__title {
  color: #2261ae;
}
@media (min-width: 992px) {
  .recommendations > .row {
    flex-direction: column;
  }
  .recommendations .news-slider__slide + .news-slider__slide {
    margin-top: 3em;
  }
  .recommendations .news-item {
    flex-direction: row;
    margin-bottom: 0;
  }
}
.recommendations__image > * {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(3 / 5 * 100%);
  padding-bottom: 0;
  height: 250px;
  width: calc(250px * (5 / 3));
}
.recommendations__image > * > *:first-child, .recommendations__image > * > code:first-child + * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .recommendations__body {
    margin-left: 2em;
  }
}
.recommendations__body > a {
  text-decoration: none;
  transition: color 0.2s ease;
  color: #000000;
}
.recommendations__body > a:hover, .recommendations__body > a:focus {
  color: #2261ae;
  text-decoration: underline;
}
.recommendations__body .news-item__title {
  margin-top: 0;
}
.recommendations__breadcrumb {
  display: flex;
  margin: 0 -0.25em 1.5em;
}
@media (max-width: 767.98px) {
  .recommendations__breadcrumb {
    display: none !important;
  }
}
.recommendations__breadcrumb__link {
  line-height: 1;
}
.recommendations__breadcrumb__link > a {
  display: inline-block;
  padding: 0 0.25em;
  color: #2261ae;
  text-decoration: none;
}
.recommendations__breadcrumb__link > a:hover, .recommendations__breadcrumb__link > a:focus {
  text-decoration: underline;
  color: #000000;
}
.recommendations__breadcrumb__link + .recommendations__breadcrumb__link {
  position: relative;
  margin-left: 1.25em;
}
.recommendations__breadcrumb__link + .recommendations__breadcrumb__link::before {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-30%);
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro" !important;
  color: inherit;
  font-weight: 400 !important;
  content: "\f061" !important;
  font-size: 0.8em;
  margin: 0 0.4em;
}

.related-links {
  padding: 1.5em;
  border-radius: 5px;
  background-color: #f9f7f6;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  align-items: flex-start;
}
.related-links__link + .related-links__link {
  margin-top: 0.75em;
}

.sidebar-element {
  display: none;
}
@media (min-width: 992px) {
  .sidebar-element {
    display: block;
  }
}
.sidebar-element img {
  width: 100%;
  height: auto;
  display: block;
}

.sitemap__list {
  margin-bottom: 2em;
}
.sitemap__list li {
  padding: 0.2em 0;
}
.sitemap__list h2, .sitemap__list h3 {
  margin-bottom: 0.25em;
}
.sitemap__list ul {
  font-size: 18px;
  margin: 0;
  padding-left: 2em;
}
.sitemap__list ul a {
  color: #000000;
}
.sitemap__list ul a:hover, .sitemap__list ul a:focus {
  color: #2261ae;
}
.sitemap__list ul ul {
  font-size: 15px;
  margin-top: 0.25em;
  margin-bottom: 0.5em;
}

.social-share {
  display: flex;
  flex-direction: column;
}
.social-share__title {
  text-align: right;
}
.social-share__list {
  display: flex;
  justify-content: flex-end;
}
.social-share__icon {
  color: #000000;
  font-size: 24px;
}
.social-share__icon + .social-share__icon {
  margin-left: 1em;
}
.social-share__icon:hover, .social-share__icon:focus {
  color: #2261ae;
}
.social-share .social-share__title, .social-share--left .social-share__title {
  text-align: left;
}
.social-share .social-share__list, .social-share--left .social-share__list {
  justify-content: flex-start;
}
.social-share--right .social-share__title {
  text-align: right;
}
.social-share--right .social-share__list {
  justify-content: flex-end;
}

.search__input, .search__help {
  display: block;
}
.search__input {
  position: relative;
}
.search__input,
.search__input input {
  display: block;
  width: 100%;
  /*font-size: calc(18px - ((18px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(18px - ((18px - 16px) / 2)) !important;
  /*}*/
}
@media (min-width: 1200px) {
  .search__input,
.search__input input {
    font-size: calc(18px - ((18px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .search__input,
.search__input input {
    font-size: 18px !important;
  }
}
.search__input input {
  border-radius: 5px;
  border: none;
  padding: 0.75em 3em 0.75em 1.5em;
  font-family: "Ginto Normal", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.search__button {
  background: none;
  border: none;
  position: absolute;
  font-size: 18px;
  right: 0.5em;
  padding: 0.75em;
  top: 50%;
  transform: translateY(-50%);
}
.search__help {
  margin-top: 0.5em;
  text-align: right;
  display: none;
}
@media (min-width: 992px) {
  .search__help {
    display: block;
  }
}

.search-banner {
  color: #000000;
  background: #ffcb58;
  padding-bottom: 70px;
}
.search-banner > .container {
  display: flex;
  flex-direction: column;
}
.search-banner > .container > form {
  display: flex;
  flex-wrap: wrap;
}
.search-banner .search__input {
  margin-top: 1em;
}
.search-banner__categories {
  padding: 1em 0 0;
  margin: -0.5em;
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
}
.search-banner__categories > * {
  margin: 0.5em;
}
.search-banner .search__help {
  flex: 0 0 auto;
}

.search-results__sidebar {
  padding: 1.5em;
  border-radius: 5px;
  background-color: #ffcb58;
}
.search-results__sidebar .button {
  margin-top: 1.5em;
}
.search-results__details {
  margin-bottom: 0;
}
.search-results__list {
  border-bottom: 1px solid #dfd8d1;
  border-top: 1px solid #dfd8d1;
  padding: 3em 0;
}
.search-results__item {
  display: flex;
  flex-direction: column;
}
.search-results__item + * {
  margin-top: 3em;
}
.search-results__type {
  text-transform: uppercase;
  font-weight: bold;
  color: #796D6D;
}
.search-results__title {
  color: #000000;
  transition: none;
  margin: 0.5em 0;
  align-self: flex-start;
}
.search-results__title:hover, .search-results__title:focus {
  text-decoration: none;
  color: #2261ae;
}
.search-results__match {
  font-weight: 500;
  background: rgba(255, 203, 88, 0.5);
}
.search-results__description {
  margin-bottom: 0.5em;
}
.search-results__hyperlink {
  align-self: flex-start;
  word-break: break-word;
}

.text-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 23.3333333333px 15px;
}
@media (max-width: 991.98px) {
  .text-icon {
    padding: 25px 15px;
  }
}
.text-icon__element {
  display: inline-block;
  height: 130px;
}
.text-icon__element img {
  height: 100%;
  width: auto;
}
.text-icon__element + .text-icon__body {
  margin-top: 2em;
}
.text-icon__body {
  display: inline-block;
  /*font-size: calc(22px - ((22px - 16px) / 1.5)) !important;

  @include media-breakpoint-up(md) {*/
  font-size: calc(22px - ((22px - 16px) / 2)) !important;
  /*}*/
  width: 50%;
  line-height: 150%;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .text-icon__body {
    font-size: calc(22px - ((22px - 16px) / 3)) !important;
  }
}
@media (min-width: 1366px) {
  .text-icon__body {
    font-size: 22px !important;
  }
}
@media (max-width: 991.98px) {
  .text-icon__body {
    width: 100%;
  }
}

.membership {
  /* Mobile View */
  /* End Mobile View */
}
.membership:not(:first-child) {
  margin-top: 70px;
}
@media (max-width: 991.98px) {
  .membership:not(:first-child) {
    margin-top: 50px;
  }
}
.membership__content + .membership__table, .membership__table + .membership__content {
  margin-top: 1.5em;
}
.membership__title {
  color: #2261ae;
}
.membership .mem-desktop {
  display: none;
}
@media (min-width: 992px) {
  .membership .mem-desktop {
    display: flex;
  }
}
.membership .mem-desktop .membership__header ul, .membership .mem-desktop .membership__product ul {
  margin: 0;
  padding: 0;
}
.membership .membership__header ul li, .membership .membership__product ul li {
  list-style-type: none;
  margin: 10px 0 0 0;
  height: 75px;
  overflow: hidden;
}
.membership .membership__header ul li.empty-summary, .membership .membership__product ul li.empty-summary {
  height: 22px;
}
.membership .membership__header {
  width: 125px;
}
@media (max-width: 1300px) {
  .membership .membership__header {
    width: 16.66666667%;
  }
}
.membership .membership__header li {
  height: 75px;
  margin: 10px 0 0 0;
  font-size: 14px;
}
.membership .membership__header li div:last-child {
  font-size: 12px;
}
.membership .membership__product li {
  text-align: center;
}
.membership .membership__product li:first-child {
  /*margin: 3px 0 0 0;*/
}
.membership .membership__product li:nth-child(2) {
  font-size: 12px;
}
.membership .membership__product li.mem-price {
  margin-top: 8px;
  text-align: left;
  height: 100%;
}
.membership .membership__product .mem-extras {
  height: 100%;
  background-color: #F2F2F2;
  padding: 10px;
}
.membership .membership__product .mem-price {
  text-align: left;
}
.membership .membership__product .mem-price div:first-child,
.membership .membership__product .mem-price div:nth-child(2) {
  color: #0475bc;
}
.membership .membership__product .mem-price div:first-child {
  min-height: 17px;
}
.membership .membership__product .mem-price div {
  font-size: 12px;
}
.membership .membership__product .mem-price div:last-child {
  color: #000;
  text-align: center;
}
.membership .membership__product .mem-price div:nth-child(2) {
  font-size: 17px;
}
.membership .mem-join {
  height: auto;
  margin-top: 8px;
  text-align: center;
}
.membership .fa {
  font-size: 1.2em;
}
.membership .fa-times {
  color: #E9644A;
}
.membership .fa-check {
  color: #00B700;
}
.membership .fa-minus {
  color: #E6E6E6;
}
.membership .mem-mobile {
  display: block;
}
@media (min-width: 992px) {
  .membership .mem-mobile {
    display: none;
  }
}
.membership .mem-mobile .mem-extras {
  margin: 8px 0;
}
.membership .mem-mobile .mem-price {
  text-align: center;
}
.membership .mem-mobile .mem-price div:first-child {
  font-size: 17px;
}
.membership .mem-mobile .mem-price div:last-child {
  font-size: 12px;
}
.membership .mem-mobile .membership__product {
  padding: 0;
}
.membership .mem-mobile .membership__product h4.panel-title {
  position: relative;
}
.membership .mem-mobile .membership__product ul {
  padding: 0;
  margin-bottom: 0;
}
.membership .mem-mobile .membership__product li {
  height: 100%;
  margin-bottom: 15px;
}
.membership .mem-mobile .membership__product li:nth-child(2) {
  height: 100%;
}
.membership .mem-mobile .membership__product li span {
  font-size: 15px;
}
.membership .mem-mobile .membership__product li span:first-child {
  float: left;
}
.membership .mem-mobile .membership__product li span:last-child {
  float: right;
}

.iframe-widget {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.iframe-widget .iframe-window {
  border: none;
  width: 100%;
}

.rich-text iframe {
  max-width: 100%;
}

@media print {
  .nav__menu, .nav__overlay, .nav__search, .nav__icon-button, .nav__quick-links, .nav__quick-links__button {
    display: none !important;
  }

  body, .footer {
    padding: 0;
  }

  .header__nav {
    position: static;
  }
}
