/* Recommended styles for Splitting */
.splitting .word,
.splitting .char {
  display: inline-block;
}

/* Psuedo-element chars */
.splitting .char {
  position: relative;
}

/**
 * Populate the psuedo elements with the character to allow for expanded effects
 * Set to `display: none` by default; just add `display: block` when you want
 * to use the psuedo elements
 */
.splitting .char::before,
.splitting .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Expanded CSS Variables */

.splitting {
  /* The center word index */
  --word-center: calc((var(--word-total) - 1) / 2);

  /* The center character index */
  --char-center: calc((var(--char-total) - 1) / 2);

  /* The center character index */
  --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
  /* Pecent (0-1) of the word's position */
  --word-percent: calc(var(--word-index) / var(--word-total));

  /* Pecent (0-1) of the line's position */
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  /* Percent (0-1) of the char's position */
  --char-percent: calc(var(--char-index) / var(--char-total));

  /* Offset from center, positive & negative */
  --char-offset: calc(var(--char-index) - var(--char-center));

  /* Absolute distance from center, only positive */
  --distance: calc(
     (var(--char-offset) * var(--char-offset)) / var(--char-center)
  );

  /* Distance from center where -1 is the far left, 0 is center, 1 is far right */
  --distance-sine: calc(var(--char-offset) / var(--char-center));

  /* Distance from center where 1 is far left/far right, 0 is center */
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

.splitting.cells img { width: 100%; display: block; }

@supports ( display: grid ) {
  .splitting.cells {
    position: relative;
    overflow: hidden;
    background-size: cover;
    visibility: hidden;
  }

  .splitting .cell-grid {
    background: inherit;
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    display: grid;
    grid-template: repeat( var(--row-total), 1fr ) / repeat( var(--col-total), 1fr );
  }

  .splitting .cell {
    background: inherit;
    position: relative;
    overflow: hidden;
  }

  .splitting .cell-inner {
    background: inherit;
    position: absolute;
    visibility: visible;
    /* Size to fit the whole container size */
    width: calc(100% * var(--col-total));
    height: calc(100% * var(--row-total));
    /* Position properly */
    left: calc(-100% * var(--col-index));
    top: calc(-100% * var(--row-index));
  }

  /* Helper variables for advanced effects */
  .splitting .cell {
    --center-x: calc((var(--col-total) - 1) / 2);
    --center-y: calc((var(--row-total) - 1) / 2);

    /* Offset from center, positive & negative */
    --offset-x: calc(var(--col-index) - var(--center-x));
    --offset-y: calc(var(--row-index) - var(--center-y));

    /* Absolute distance from center, only positive */
    --distance-x: calc( (var(--offset-x) * var(--offset-x)) / var(--center-x) );

    /* Absolute distance from center, only positive */
    --distance-y: calc( (var(--offset-y) * var(--offset-y)) / var(--center-y) );
  }
}


@font-face {
  font-family: 'icomoon';
  src:  url('icomoon/fonts/icomoon.eot??qeker9');
  src:  url('icomoon/fonts/icomoon.eot??qeker9#iefix') format('embedded-opentype'),
    url('icomoon/fonts/icomoon.ttf??qeker9') format('truetype'),
    url('icomoon/fonts/icomoon.woff??qeker9') format('woff'),
    url('icomoon/fonts/icomoon.svg??qeker9#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-notice:before {
  content: "\e91a";
}
.icon-warning:before {
  content: "\e91a";
}
.icon-explanation-mark:before {
  content: "\e91a";
}
.icon-notification:before {
  content: "\e91a";
}
.icon-minus:before {
  content: "\e90e";
}
.icon-youtube:before {
  content: "\e900";
}
.icon-alarm:before {
  content: "\e901";
}
.icon-basket:before {
  content: "\e902";
}
.icon-bin:before {
  content: "\e903";
}
.icon-book:before {
  content: "\e905";
}
.icon-bubble:before {
  content: "\e906";
}
.icon-calendar:before {
  content: "\e907";
}
.icon-camera:before {
  content: "\e908";
}
.icon-cart:before {
  content: "\e909";
}
.icon-chat:before {
  content: "\e90a";
}
.icon-clock:before {
  content: "\e90b";
}
.icon-cloud:before {
  content: "\e90c";
}
.icon-cog:before {
  content: "\e90d";
}
.icon-credit:before {
  content: "\e90f";
}
.icon-cycle:before {
  content: "\e913";
}
.icon-docs-1:before {
  content: "\e914";
}
.icon-docs-2:before {
  content: "\e915";
}
.icon-edit:before {
  content: "\e91b";
}
.icon-email:before {
  content: "\e91c";
}
.icon-flow-tree:before {
  content: "\e91e";
}
.icon-folder:before {
  content: "\e91f";
}
.icon-heart:before {
  content: "\e922";
}
.icon-home:before {
  content: "\e923";
}
.icon-image:before {
  content: "\e924";
}
.icon-info:before {
  content: "\e925";
}
.icon-key:before {
  content: "\e926";
}
.icon-link:before {
  content: "\e927";
}
.icon-lock:before {
  content: "\e928";
}
.icon-loop:before {
  content: "\e929";
}
.icon-megaphone:before {
  content: "\e92a";
}
.icon-mobile:before {
  content: "\e92c";
}
.icon-mouse:before {
  content: "\e92d";
}
.icon-pencil:before {
  content: "\e932";
}
.icon-person-1:before {
  content: "\e933";
}
.icon-person-2:before {
  content: "\e934";
}
.icon-phone:before {
  content: "\e935";
}
.icon-pin:before {
  content: "\e937";
}
.icon-play:before {
  content: "\e938";
}
.icon-plus-1:before {
  content: "\e939";
}
.icon-print-1:before {
  content: "\e93a";
}
.icon-print-2:before {
  content: "\e93b";
}
.icon-pushpin:before {
  content: "\e93c";
}
.icon-quote-set1-end:before {
  content: "\e93d";
}
.icon-quote-set1-start:before {
  content: "\e93e";
}
.icon-share:before {
  content: "\e942";
}
.icon-speaker_notes:before {
  content: "\e944";
}
.icon-star:before {
  content: "\e945";
}
.icon-stats:before {
  content: "\e946";
}
.icon-tag:before {
  content: "\e947";
}
.icon-timer:before {
  content: "\e94a";
}
.icon-user:before {
  content: "\e94d";
}
.icon-user-add:before {
  content: "\e94e";
}
.icon-warning1:before {
  content: "\e94f";
}
.icon-wrench:before {
  content: "\e950";
}
.icon-facebook:before {
  content: "\e951";
}
.icon-flickr:before {
  content: "\e952";
}
.icon-google-plus:before {
  content: "\e953";
}
.icon-instagram:before {
  content: "\e954";
}
.icon-linkedin:before {
  content: "\e955";
}
.icon-pinterest:before {
  content: "\e956";
}
.icon-tumblr:before {
  content: "\e957";
}
.icon-twitter:before {
  content: "\e958";
}
.icon-arrow-set2-down:before {
  content: "\e95d";
}
.icon-arrow-set2-left:before {
  content: "\e95e";
}
.icon-arrow-set2-right:before {
  content: "\e95f";
}
.icon-arrow-set2-up:before {
  content: "\e960";
}
.icon-pause:before {
  content: "\e904";
}
.icon-icon-file-doc:before {
  content: "\e910";
}
.icon-icon-file-zip:before {
  content: "\e911";
}
.icon-icon-file-pdf:before {
  content: "\e912";
}
.icon-icon-file-ppt:before {
  content: "\e916";
}
.icon-icon-file-blank:before {
  content: "\e917";
}
.icon-icon-search:before {
  content: "\e918";
}
.icon-icon-play:before {
  content: "\e919";
}
.icon-icon-check:before {
  content: "\e92b";
}
.icon-icon-close:before {
  content: "\e92e";
}
.icon-icon-cross:before {
  content: "\e936";
}
.icon-icon-download:before {
  content: "\e93f";
}
.icon-icon-share:before {
  content: "\e940";
}
.icon-icon-calendar:before {
  content: "\e941";
}
.icon-icon-map:before {
  content: "\e943";
}
.icon-icon-arrow-long:before {
  content: "\e948";
}
.icon-icon-burger:before {
  content: "\e949";
}
.icon-icon-quotes:before {
  content: "\e94b";
}

.tns-outer{padding:0 !important}.tns-outer [hidden]{display:none !important}.tns-outer [aria-controls],.tns-outer [data-action]{cursor:pointer}.tns-slider{transition:all 0s}.tns-slider>.tns-item{box-sizing:border-box}.tns-horizontal.tns-subpixel{white-space:nowrap}.tns-horizontal.tns-subpixel>.tns-item{display:inline-block;vertical-align:top;white-space:normal}.tns-horizontal.tns-no-subpixel:after{content:'';display:table;clear:both}.tns-horizontal.tns-no-subpixel>.tns-item{float:left}.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item{margin-right:-100%}.tns-no-calc{position:relative;left:0}.tns-gallery{position:relative;left:0;min-height:1px}.tns-gallery>.tns-item{position:absolute;left:-100%;transition:transform 0s, opacity 0s}.tns-gallery>.tns-slide-active{position:relative;left:auto !important}.tns-gallery>.tns-moving{transition:all 0.25s}.tns-autowidth{display:inline-block}.tns-lazy-img{transition:opacity 0.6s;opacity:0.6}.tns-lazy-img.tns-complete{opacity:1}.tns-ah{transition:height 0s}.tns-ovh{overflow:hidden}.tns-visually-hidden{position:absolute;left:-10000em}.tns-transparent{opacity:0;visibility:hidden}.tns-fadeIn{opacity:1;filter:alpha(opacity=100);z-index:0}.tns-normal,.tns-fadeOut{opacity:0;filter:alpha(opacity=0);z-index:-1}.tns-vpfix{white-space:nowrap}.tns-vpfix>div,.tns-vpfix>li{display:inline-block}.tns-t-subp2{margin:0 auto;width:310px;position:relative;height:10px;overflow:hidden}.tns-t-ct{width:2333.3333333%;width:calc(100% * 70 / 3);position:absolute;right:0}.tns-t-ct:after{content:'';display:table;clear:both}.tns-t-ct>div{width:1.4285714%;width:calc(100% / 70);height:10px;float:left}

/*# sourceMappingURL=sourcemaps/tiny-slider.css.map */

@charset "UTF-8";
/*!
 * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  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: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

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

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

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

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

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

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

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

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

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

.d-inline-grid {
  display: inline-grid !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;
}

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

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

.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-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;
}

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

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

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !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;
}

.justify-content-evenly {
  justify-content: space-evenly !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;
}

.order-first {
  order: -1 !important;
}

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

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.me-0 {
  margin-right: 0 !important;
}

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

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

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

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

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

.me-auto {
  margin-right: auto !important;
}

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

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

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

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

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

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

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

.ms-0 {
  margin-left: 0 !important;
}

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

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

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

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

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

.ms-auto {
  margin-left: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pe-0 {
  padding-right: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

.ps-0 {
  padding-left: 0 !important;
}

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !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;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !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;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !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;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !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;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !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;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !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;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !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;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !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;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !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;
  }
  .d-print-none {
    display: none !important;
  }
}
/*!
 * Bootstrap Utilities v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root,
[data-bs-theme=light] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: #052c65;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #0a3622;
  --bs-info-text-emphasis: #055160;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #58151c;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #cfe2ff;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #d1e7dd;
  --bs-info-bg-subtle: #cff4fc;
  --bs-warning-bg-subtle: #fff3cd;
  --bs-danger-bg-subtle: #f8d7da;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #9ec5fe;
  --bs-secondary-border-subtle: #c4c8cb;
  --bs-success-border-subtle: #a3cfbb;
  --bs-info-border-subtle: #9eeaf9;
  --bs-warning-border-subtle: #ffe69c;
  --bs-danger-border-subtle: #f1aeb5;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #0a58ca;
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6ea8fe;
  --bs-secondary-text-emphasis: #a7acb1;
  --bs-success-text-emphasis: #75b798;
  --bs-info-text-emphasis: #6edff6;
  --bs-warning-text-emphasis: #ffda6a;
  --bs-danger-text-emphasis: #ea868f;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #031633;
  --bs-secondary-bg-subtle: #161719;
  --bs-success-bg-subtle: #051b11;
  --bs-info-bg-subtle: #032830;
  --bs-warning-bg-subtle: #332701;
  --bs-danger-bg-subtle: #2c0b0e;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #084298;
  --bs-secondary-border-subtle: #41464b;
  --bs-success-border-subtle: #0f5132;
  --bs-info-border-subtle: #087990;
  --bs-warning-border-subtle: #997404;
  --bs-danger-border-subtle: #842029;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6ea8fe;
  --bs-link-hover-color: #8bb9fe;
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #664d03;
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: #75b798;
  --bs-form-valid-border-color: #75b798;
  --bs-form-invalid-color: #ea868f;
  --bs-form-invalid-border-color: #ea868f;
}

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

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-primary:hover, .link-primary:focus {
  color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-success:hover, .link-success:focus {
  color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-info:hover, .link-info:focus {
  color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning:hover, .link-warning:focus {
  color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger:hover, .link-danger:focus {
  color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-light:hover, .link-light:focus {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark:hover, .link-dark:focus {
  color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}

.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  backface-visibility: hidden;
}
.icon-link > .bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}
@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}

.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.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;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

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

.vr {
  display: inline-block;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

.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;
}

.float-start {
  float: left !important;
}

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

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

.object-fit-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.object-fit-fill {
  -o-object-fit: fill !important;
     object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
     object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
     object-fit: none !important;
}

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

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

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

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

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

.overflow-x-auto {
  overflow-x: auto !important;
}

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

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

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

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

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

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

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

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

.d-inline-grid {
  display: inline-grid !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;
}

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

.shadow {
  box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}

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

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.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;
}

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

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

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

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

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.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;
}

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

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

.min-vw-100 {
  min-width: 100vw !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;
}

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

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

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

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

.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-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;
}

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

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

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !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;
}

.justify-content-evenly {
  justify-content: space-evenly !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;
}

.order-first {
  order: -1 !important;
}

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

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.me-0 {
  margin-right: 0 !important;
}

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

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

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

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

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

.me-auto {
  margin-right: auto !important;
}

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

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

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

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

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

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

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

.ms-0 {
  margin-left: 0 !important;
}

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

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

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

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

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

.ms-auto {
  margin-left: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pe-0 {
  padding-right: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

.ps-0 {
  padding-left: 0 !important;
}

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

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

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

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

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

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

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

.row-gap-2 {
  row-gap: 0.5rem !important;
}

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

.row-gap-5 {
  row-gap: 3rem !important;
}

.column-gap-0 {
  -moz-column-gap: 0 !important;
       column-gap: 0 !important;
}

.column-gap-1 {
  -moz-column-gap: 0.25rem !important;
       column-gap: 0.25rem !important;
}

.column-gap-2 {
  -moz-column-gap: 0.5rem !important;
       column-gap: 0.5rem !important;
}

.column-gap-3 {
  -moz-column-gap: 1rem !important;
       column-gap: 1rem !important;
}

.column-gap-4 {
  -moz-column-gap: 1.5rem !important;
       column-gap: 1.5rem !important;
}

.column-gap-5 {
  -moz-column-gap: 3rem !important;
       column-gap: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

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

.fst-normal {
  font-style: normal !important;
}

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

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

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

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

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

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

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

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

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

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

.text-decoration-none {
  text-decoration: none !important;
}

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

.text-decoration-line-through {
  text-decoration: line-through !important;
}

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

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

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

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

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

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

.link-opacity-25 {
  --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

.link-opacity-50 {
  --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

.link-opacity-75 {
  --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

.link-opacity-100 {
  --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

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

.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

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

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

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

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

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

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

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

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

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

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

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

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-sm-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-sm-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !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;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !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;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
  .column-gap-sm-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .object-fit-md-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-md-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-md-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-md-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-md-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !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;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !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;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
  .column-gap-md-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-md-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .object-fit-lg-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-lg-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-lg-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !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;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !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;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
  .column-gap-lg-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .object-fit-xl-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xl-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xl-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !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;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !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;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xl-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xxl-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !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;
  }
  .d-print-none {
    display: none !important;
  }
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  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: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list, .slick-slider .slick-track {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:after, .slick-track:before {
  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;
}

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  box-sizing: border-box;
  touch-action: manipulation;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open, .flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before, .flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before, .flatpickr-calendar.arrowRight:before, .flatpickr-calendar.rightMost:after, .flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before, .flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled, .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month { /*
/*rtl:begin:ignore*/
  left: 0;
} /*
/*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month { /*
/*rtl:begin:ignore*/
  right: 0;
} /*
/*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input, .numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button, .numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  transform: translate3d(0, 0, 0);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus, .flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: bolder;
}

.dayContainer, .flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.dayContainer + .dayContainer {
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  box-sizing: border-box;
  touch-action: manipulation;
  box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #eceef1;
}

.flatpickr-calendar.hasTime .flatpickr-innerContainer {
  border-bottom: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  border: 1px solid #eceef1;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #eceef1;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #eceef1;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #eceef1;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #eceef1;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: flex;
}

.flatpickr-months .flatpickr-month {
  border-radius: 5px 5px 0 0;
  background: #eceef1;
  color: #5a6171;
  fill: #5a6171;
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: #5a6171;
  fill: #5a6171;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  left: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  right: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #bbb;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(72, 72, 72, 0.15);
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(72, 72, 72, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(72, 72, 72, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(90, 97, 113, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  transform: translate3d(0px, 0px, 0px);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: #5a6171;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #5a6171;
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(90, 97, 113, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: #eceef1;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: #eceef1;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: #eceef1;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: #eceef1;
  color: #5a6171;
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 307.875px;
  border-left: 1px solid #eceef1;
  border-right: 1px solid #eceef1;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}

.dayContainer + .dayContainer {
  box-shadow: -1px 0 0 #eceef1;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #484848;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e2e2e2;
  border-color: #e2e2e2;
}

.flatpickr-day.today {
  border-color: #bbb;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #bbb;
  background: #bbb;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #ff5a5f;
  box-shadow: none;
  color: #fff;
  border-color: #ff5a5f;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #ff5a5f;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(72, 72, 72, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(72, 72, 72, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  border-left: 1px solid #eceef1;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(72, 72, 72, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #eceef1;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  background: #fff;
  border-radius: 0 0 5px 5px;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #484848;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #484848;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #484848;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #484848;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eaeaea;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
span.flatpickr-day.selected {
  font-weight: bold;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

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

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  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;
}

/* Default body text size*/
/* Font variables */
/* devices */
/* base colors */
/* form colors */
/* ======= SOCIAL MEDIA ========*/
/* ======= RESETS ========*/
/* reset */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
}

h1,
.h1,
.event-detail-header-title,
.resource-detail-header-title,
.vacancy-detail-header-title,
.highlights-header-title,
.flexbanner.__style2.__blogdetail .blog-header-title,
.flexbanner .flexbanner-content-title,
.usercontent h1,
.mce-content-body h1,
.umbraco-forms-page h1,
h2,
.h2,
.homepage-banner-content-title,
.usercontent h2,
.mce-content-body h2,
.umbraco-forms-page h2,
h3,
.h3,
.usercontent h3,
.mce-content-body h3,
.umbraco-forms-page h3,
h4,
.h4,
.related-resources-item-title,
.quotes-text-item-name,
.promoted-item-info-title,
.testimonials-text-item-name,
.usercontent h4,
.mce-content-body h4,
.umbraco-forms-page h4,
h5,
.h5,
.usercontent h5,
.mce-content-body h5,
.umbraco-forms-page h5,
h6,
.h6,
.usercontent h6,
.mce-content-body h6,
.umbraco-forms-page h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

hr {
  border-top-color: #e5e5e5;
  clear: both;
}

form {
  margin: 0;
}

button {
  padding: 0;
  width: auto;
  border: none;
  background: none;
  font-weight: inherit;
  font-family: "Poppins", sans-serif;
}

label {
  margin: 0;
  font-weight: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li,
ol li {
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: all 300ms;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
}

.mywig-events-list-item-remove a::before,
.mywig-downloads-list-item-remove a::before, .mywig-events-list-item-download a::before,
.mywig-downloads-list-item-download a::before, .mywig-events-list-item-view a::after,
.mywig-downloads-list-item-view a::after, .mywig-events-list-item-link a::before,
.mywig-downloads-list-item-link a::before, .mywig-events-list-item-calendar a::before,
.mywig-downloads-list-item-calendar a::before, .mywig-events-list-header .select2-container--default .select2-selection--single .select2-selection__arrow b::before,
.mywig-downloads-list-header .select2-container--default .select2-selection--single .select2-selection__arrow b::before, .formpage-sidebar .text-link::before, .formpage-section-accordion .accordion-head::after, .listing-filters-taglist-active .tag::after, .listing-filters-form form .field_wrap .label_wrap::after,
.listing-filters-form form .dropdown .label_wrap::after, .listing-filters-form form .field_wrap.__date .label_wrap::before,
.listing-filters-form form .dropdown.__date .label_wrap::before, .downloads-item-action-download::before, .downloads-item-type::before, .quotes-images-wrap::before, .logos-header-title::after, .promoted-item-info::after, .dropdown-button::before, .gallery .slick-arrow::before, .testimonials-images-wrap::before, .highlights-carousel-pause::before,
.testimonials-pause::before, .modalblock-close::after, .accordionblock.__speakers .accordion-head::after, .accordion-head::before, .socialicon::before, .searchtoggle-text::before, .searchbar-form form .submit_wrap button span::before, .banner-video-controls-button.__pause::before, .banner-video-controls-button.__play::before, .paging li:last-child > a::before,
.paging li:last-child > span::before, .paging li:first-child > a::before,
.paging li:first-child > span::before, .sidemenu-toggle::after, .nav ul li.backto > a::before, .nav ul > li.menu-item button::before,
.nav ul > li.menu-item a::before, .error_feedback ul li::before,
.validation-summary-errors ul li::before, .input_error::before,
.field-validation-error::before, .field_wrap > .__checkbox > label::after,
.field_wrap > .__checkbox > .input_wrap > label::after, .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper > label::after,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper > label::after, .field_wrap.__checkbox > label::after,
.field_wrap.__checkbox > .input_wrap > label::after,
.field_wrap.__checkbox .umbraco-forms-field-wrapper label::after,
.umbraco-forms-field.dataconsent > label::after,
.umbraco-forms-field.dataconsent > .input_wrap > label::after,
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label::after,
.umbraco-forms-field.singlecheckbox > label::after,
.umbraco-forms-field.singlecheckbox > .input_wrap > label::after,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper label::after,
.umbraco-forms-field.multiplechoice > label::after,
.umbraco-forms-field.multiplechoice > .input_wrap > label::after,
.umbraco-forms-field.multiplechoice .umbraco-forms-field-wrapper label::after, .sliderbutton::after, i {
  display: inline-block;
  text-transform: none;
  vertical-align: middle;
  font-family: icomoon;
  font-size: 22px;
  color: #000000;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  speak: none;
  transition: all 0.3s;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000;
  opacity: 0.4;
  transition: all 0.3s;
}

.banner {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.visually-hidden,
.slick-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  transition: none;
}
.visually-hidden-focusable,
.slick-sr-only-focusable {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  left: -999999px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  transition: none;
  width: 1px;
}
.visually-hidden-focusable:focus,
.slick-sr-only-focusable:focus {
  border: auto;
  clip: auto;
  height: auto;
  left: auto;
  margin: auto;
  overflow: auto;
  padding: auto;
  position: relative;
  width: auto;
}
.visually-hidden-focusable:focus.skiptomain,
.slick-sr-only-focusable:focus.skiptomain {
  background: #FFFFFF;
  clip: auto;
  color: black;
  height: auto;
  left: 5px;
  margin: 0;
  position: absolute;
  top: 5px;
  width: auto;
  z-index: 26;
  padding: 15px 30px;
  outline: 3px solid #FF7321;
}

.slick-hidden {
  display: none;
}

img[data-object-fit=contain] {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.blog-list-item-media img, .events-list-item-media img, .related-resources-item-media img, .related-events-item-media img, .staff-item-image img, .mixcontent-image img, .quotes-images-item img, .promoted-item-media img, .gallery-slides-item figure img, .testimonials-images-item img, .testimonials-nav-item img, .highlights-carousel-item-media .videoblock iframe, .highlights-carousel-item-media img, .accordionblock.__speakers .accordion-head .speakers-image, .flexbanner.__style2 .flexbanner-content-media img, img[data-object-fit=cover] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.vacancy-list-item-title span {
  width: 100%;
  background-image: linear-gradient(transparent calc(100% - 50px), #FF7321 0px);
  background-repeat: no-repeat;
  background-size: 0% 10%;
  background-position: left bottom;
  transition: background-size 1s;
}
.vacancy-list-item-title:hover span, .vacancy-list-item-title:focus span {
  background-size: 100% 10%;
}

.js-reframe {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

.js-reframe iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* Helper mixins */
/* headings */
.h1, .event-detail-header-title,
.resource-detail-header-title,
.vacancy-detail-header-title, .highlights-header-title, .flexbanner.__style2.__blogdetail .blog-header-title, .flexbanner .flexbanner-content-title, .usercontent h1,
.mce-content-body h1,
.umbraco-forms-page h1,
.h2,
.homepage-banner-content-title,
.usercontent h2,
.mce-content-body h2,
.umbraco-forms-page h2,
.h3,
.usercontent h3,
.mce-content-body h3,
.umbraco-forms-page h3,
.h4,
.related-resources-item-title,
.quotes-text-item-name,
.promoted-item-info-title,
.testimonials-text-item-name,
.usercontent h4,
.mce-content-body h4,
.umbraco-forms-page h4,
.h5,
.usercontent h5,
.mce-content-body h5,
.umbraco-forms-page h5,
.h6,
.usercontent h6,
.mce-content-body h6,
.umbraco-forms-page h6 {
  color: #181111;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 17px 0;
}

.h1, .event-detail-header-title,
.resource-detail-header-title,
.vacancy-detail-header-title, .highlights-header-title, .flexbanner.__style2.__blogdetail .blog-header-title, .flexbanner .flexbanner-content-title, .usercontent h1,
.mce-content-body h1,
.umbraco-forms-page h1 {
  font-size: 2.5rem;
}
@media (min-width: 992px) {
  .h1, .event-detail-header-title,
  .resource-detail-header-title,
  .vacancy-detail-header-title, .highlights-header-title, .flexbanner.__style2.__blogdetail .blog-header-title, .flexbanner .flexbanner-content-title, .usercontent h1,
  .mce-content-body h1,
  .umbraco-forms-page h1 {
    font-size: 3.5rem;
  }
}

.h2, .homepage-banner-content-title, .usercontent h2,
.mce-content-body h2,
.umbraco-forms-page h2 {
  font-size: 2rem;
}
@media (min-width: 992px) {
  .h2, .homepage-banner-content-title, .usercontent h2,
  .mce-content-body h2,
  .umbraco-forms-page h2 {
    font-size: 2.5rem;
  }
}

.h3, .usercontent h3,
.mce-content-body h3,
.umbraco-forms-page h3 {
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  .h3, .usercontent h3,
  .mce-content-body h3,
  .umbraco-forms-page h3 {
    font-size: 2rem;
  }
}

.h4, .related-resources-item-title, .quotes-text-item-name, .promoted-item-info-title, .testimonials-text-item-name, .usercontent h4,
.mce-content-body h4,
.umbraco-forms-page h4 {
  font-size: 1.125rem;
}
@media (min-width: 992px) {
  .h4, .related-resources-item-title, .quotes-text-item-name, .promoted-item-info-title, .testimonials-text-item-name, .usercontent h4,
  .mce-content-body h4,
  .umbraco-forms-page h4 {
    font-size: 1.5rem;
  }
}

.h5, .usercontent h5,
.mce-content-body h5,
.umbraco-forms-page h5 {
  font-size: 1rem;
}
@media (min-width: 992px) {
  .h5, .usercontent h5,
  .mce-content-body h5,
  .umbraco-forms-page h5 {
    font-size: 1.125rem;
  }
}

.h6, .usercontent h6,
.mce-content-body h6,
.umbraco-forms-page h6 {
  font-size: 1rem;
}

.a:not(.button):not(.sliderbutton), .staff-item-description.__overflow .readmorebutton:not(.button):not(.sliderbutton), .field_wrap .label_wrap label > a:not(.button):not(.sliderbutton),
.field_wrap .umbraco-forms-field label > a:not(.button):not(.sliderbutton),
.umbraco-forms-form .label_wrap label > a:not(.button):not(.sliderbutton),
.umbraco-forms-form .umbraco-forms-field label > a:not(.button):not(.sliderbutton), .field_wrap legend.label_wrap > a:not(.button):not(.sliderbutton),
.umbraco-forms-form legend.label_wrap > a:not(.button):not(.sliderbutton), .usercontent a:not(.button):not(.sliderbutton),
.mce-content-body a:not(.button):not(.sliderbutton),
.umbraco-forms-page a:not(.button):not(.sliderbutton) {
  color: #D14900;
  font-weight: 600;
  font-size: 1.25rem;
}
.a:not(.button):not(.sliderbutton):hover, .staff-item-description.__overflow .readmorebutton:not(.button):not(.sliderbutton):hover, .field_wrap .label_wrap label > a:not(.button):not(.sliderbutton):hover,
.field_wrap .umbraco-forms-field label > a:not(.button):not(.sliderbutton):hover,
.umbraco-forms-form .label_wrap label > a:not(.button):not(.sliderbutton):hover,
.umbraco-forms-form .umbraco-forms-field label > a:not(.button):not(.sliderbutton):hover, .field_wrap legend.label_wrap > a:not(.button):not(.sliderbutton):hover,
.umbraco-forms-form legend.label_wrap > a:not(.button):not(.sliderbutton):hover, .usercontent a:not(.button):not(.sliderbutton):hover,
.mce-content-body a:not(.button):not(.sliderbutton):hover,
.umbraco-forms-page a:not(.button):not(.sliderbutton):hover, .a:not(.button):not(.sliderbutton):focus, .staff-item-description.__overflow .readmorebutton:not(.button):not(.sliderbutton):focus, .field_wrap .label_wrap label > a:not(.button):not(.sliderbutton):focus,
.field_wrap .umbraco-forms-field label > a:not(.button):not(.sliderbutton):focus,
.umbraco-forms-form .label_wrap label > a:not(.button):not(.sliderbutton):focus,
.umbraco-forms-form .umbraco-forms-field label > a:not(.button):not(.sliderbutton):focus, .field_wrap legend.label_wrap > a:not(.button):not(.sliderbutton):focus,
.umbraco-forms-form legend.label_wrap > a:not(.button):not(.sliderbutton):focus, .usercontent a:not(.button):not(.sliderbutton):focus,
.mce-content-body a:not(.button):not(.sliderbutton):focus,
.umbraco-forms-page a:not(.button):not(.sliderbutton):focus {
  text-decoration: underline;
}

.p, .stats-header-subtitle, .promoted-item-info-subtitle, .usercontent p,
.mce-content-body p,
.umbraco-forms-page p {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #181111;
}
.p:not(:last-child), .stats-header-subtitle:not(:last-child), .promoted-item-info-subtitle:not(:last-child), .usercontent p:not(:last-child),
.mce-content-body p:not(:last-child),
.umbraco-forms-page p:not(:last-child) {
  margin-bottom: 17px;
}

/* usercontent */
.usercontent a.link-large,
.mce-content-body a.link-large,
.umbraco-forms-page a.link-large {
  font-size: 1.125rem;
}
@media (min-width: 992px) {
  .usercontent a.link-large,
  .mce-content-body a.link-large,
  .umbraco-forms-page a.link-large {
    font-size: 1.375rem;
  }
}
.usercontent strong,
.mce-content-body strong,
.umbraco-forms-page strong {
  font-weight: 600;
}
.usercontent form a,
.mce-content-body form a,
.umbraco-forms-page form a {
  color: #999;
}
.usercontent form a:hover, .usercontent form a:focus,
.mce-content-body form a:hover,
.mce-content-body form a:focus,
.umbraco-forms-page form a:hover,
.umbraco-forms-page form a:focus {
  color: #737373;
}
.usercontent ul:not(.select2-results__options):not(.select2-selection__rendered),
.usercontent ol:not(.select2-results__options):not(.select2-selection__rendered),
.mce-content-body ul:not(.select2-results__options):not(.select2-selection__rendered),
.mce-content-body ol:not(.select2-results__options):not(.select2-selection__rendered),
.umbraco-forms-page ul:not(.select2-results__options):not(.select2-selection__rendered),
.umbraco-forms-page ol:not(.select2-results__options):not(.select2-selection__rendered) {
  margin: 0 0 10px 13px;
  padding: 0;
  list-style-type: none;
  line-height: 1.6em;
}
@media (min-width: 992px) {
  .usercontent ul li,
  .usercontent ol li,
  .mce-content-body ul li,
  .mce-content-body ol li,
  .umbraco-forms-page ul li,
  .umbraco-forms-page ol li {
    font-size: 1.125rem;
  }
}
.usercontent ul li ul,
.usercontent ul li ol,
.usercontent ol li ul,
.usercontent ol li ol,
.mce-content-body ul li ul,
.mce-content-body ul li ol,
.mce-content-body ol li ul,
.mce-content-body ol li ol,
.umbraco-forms-page ul li ul,
.umbraco-forms-page ul li ol,
.umbraco-forms-page ol li ul,
.umbraco-forms-page ol li ol {
  margin: 5px 0 10px 0;
}
.usercontent ul:not(.select2-results__options):not(.select2-selection__rendered) li,
.mce-content-body ul:not(.select2-results__options):not(.select2-selection__rendered) li,
.umbraco-forms-page ul:not(.select2-results__options):not(.select2-selection__rendered) li {
  position: relative;
  margin: 0 0 5px 0;
  padding: 0 0 0 23px;
}
.usercontent ul:not(.select2-results__options):not(.select2-selection__rendered) li::before,
.mce-content-body ul:not(.select2-results__options):not(.select2-selection__rendered) li::before,
.umbraco-forms-page ul:not(.select2-results__options):not(.select2-selection__rendered) li::before {
  content: "";
  color: #FF7321;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #181111;
  position: absolute;
  top: 11px;
  left: 0;
}
.usercontent ul:not(.select2-results__options):not(.select2-selection__rendered) li ol li::before,
.mce-content-body ul:not(.select2-results__options):not(.select2-selection__rendered) li ol li::before,
.umbraco-forms-page ul:not(.select2-results__options):not(.select2-selection__rendered) li ol li::before {
  content: counter(step-counter) ".";
  display: inline-block;
  width: 25px;
  color: #181111;
  font-weight: 600;
  font-size: 1.125rem;
  position: absolute;
  top: 0;
  left: 0;
}
.usercontent ol li,
.mce-content-body ol li,
.umbraco-forms-page ol li {
  position: relative;
  margin: 0 0 5px 0;
  padding: 0 0 0 25px;
  counter-increment: step-counter;
}
.usercontent ol li::before,
.mce-content-body ol li::before,
.umbraco-forms-page ol li::before {
  content: counter(step-counter) ".";
  display: inline-block;
  width: 25px;
  color: #181111;
  font-weight: 600;
  font-size: 1.125rem;
  position: absolute;
  top: 0;
  left: 0;
}
.usercontent ol li ol li::before,
.mce-content-body ol li ol li::before,
.umbraco-forms-page ol li ol li::before {
  content: "";
  background: none;
  color: #FF7321;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #181111;
  position: absolute;
  top: 11px;
  left: 0;
}
.usercontent blockquote,
.mce-content-body blockquote,
.umbraco-forms-page blockquote {
  word-break: normal;
  white-space: normal;
  background: none;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 40px;
}
.usercontent blockquote > p,
.mce-content-body blockquote > p,
.umbraco-forms-page blockquote > p {
  border-left: 3px solid #FF7321;
  line-height: 1.6em;
  padding-left: 40px;
  margin: 0 0 1rem 0;
}
.usercontent blockquote footer,
.mce-content-body blockquote footer,
.umbraco-forms-page blockquote footer {
  font-size: 0.9rem;
  padding-left: 20px;
}
.usercontent figure,
.mce-content-body figure,
.umbraco-forms-page figure {
  margin: 0;
}
.usercontent .iframe-wrap,
.mce-content-body .iframe-wrap,
.umbraco-forms-page .iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 100%;
  overflow: hidden;
  margin: 0 0 1.5625rem;
}
.usercontent .iframe-wrap iframe,
.usercontent .iframe-wrap object,
.usercontent .iframe-wrap embed,
.mce-content-body .iframe-wrap iframe,
.mce-content-body .iframe-wrap object,
.mce-content-body .iframe-wrap embed,
.umbraco-forms-page .iframe-wrap iframe,
.umbraco-forms-page .iframe-wrap object,
.umbraco-forms-page .iframe-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.usercontent .table-wrap,
.mce-content-body .table-wrap,
.umbraco-forms-page .table-wrap {
  display: block;
  width: 100%;
  overflow-x: auto;
  margin: 0 0 1.5625rem;
}
.usercontent .table-wrap table,
.mce-content-body .table-wrap table,
.umbraco-forms-page .table-wrap table {
  width: 100%;
  max-width: 100%;
}
.usercontent > :last-child,
.mce-content-body > :last-child,
.umbraco-forms-page > :last-child {
  margin-bottom: 0;
}
.usercontent .alignleft,
.mce-content-body .alignleft,
.umbraco-forms-page .alignleft {
  float: left;
}
.usercontent .alignright,
.mce-content-body .alignright,
.umbraco-forms-page .alignright {
  float: right;
}
.usercontent table,
.mce-content-body table,
.umbraco-forms-page table {
  border-collapse: collapse;
}
.usercontent table tr td, .usercontent table tr th,
.mce-content-body table tr td,
.mce-content-body table tr th,
.umbraco-forms-page table tr td,
.umbraco-forms-page table tr th {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}
.usercontent table tr th,
.mce-content-body table tr th,
.umbraco-forms-page table tr th {
  background: #e7e7e7;
}

.button, .sliderbutton, .submit_wrap button,
.form-submit button {
  background: #FF7321;
  color: #181111;
  font-weight: 600;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 16px 32px;
  border: none;
  border-radius: 18px;
  min-width: 165px;
  font-size: 1rem;
  text-decoration: none !important;
  overflow: hidden;
  cursor: pointer;
  transition: 300ms cubic-bezier(0.2, 0.2, 0.8, 0.8);
  z-index: 1;
}
.button::before, .sliderbutton::before, .submit_wrap button::before,
.form-submit button::before {
  content: "";
  position: absolute;
  top: 0;
  background: #181111;
  height: 0;
  width: 100%;
  right: 0;
  transition: 300ms cubic-bezier(0.2, 0.2, 0.8, 0.8);
  z-index: -1;
}
.button:hover, .sliderbutton:hover, .submit_wrap button:hover,
.form-submit button:hover, .button:focus, .sliderbutton:focus, .submit_wrap button:focus,
.form-submit button:focus {
  color: #FF7321 !important;
}
.button:hover::before, .sliderbutton:hover::before, .submit_wrap button:hover::before,
.form-submit button:hover::before, .button:focus::before, .sliderbutton:focus::before, .submit_wrap button:focus::before,
.form-submit button:focus::before {
  height: 100%;
  bottom: 0;
  top: auto;
}
.button:hover .icon::before, .sliderbutton:hover .icon::before, .submit_wrap button:hover .icon::before,
.form-submit button:hover .icon::before, .button:focus .icon::before, .sliderbutton:focus .icon::before, .submit_wrap button:focus .icon::before,
.form-submit button:focus .icon::before {
  color: #FF7321;
}
.button span, .sliderbutton span, .submit_wrap button span,
.form-submit button span {
  position: relative;
}
.button i, .sliderbutton i, .submit_wrap button i,
.form-submit button i {
  font-size: 12px;
  margin-right: 5px;
}
.button i ::before, .sliderbutton i ::before, .submit_wrap button i ::before,
.form-submit button i ::before {
  transition: 0.3s ease all;
}
.button i.icon-icon-map, .sliderbutton i.icon-icon-map, .submit_wrap button i.icon-icon-map,
.form-submit button i.icon-icon-map {
  font-size: 26px;
}
.button.__small, .__small.sliderbutton, .submit_wrap button.__small,
.form-submit button.__small {
  padding: 10px 20px;
  min-width: 0px;
}
.button.__fullwidth, .__fullwidth.sliderbutton, .submit_wrap button.__fullwidth,
.form-submit button.__fullwidth {
  width: 100%;
}
.button.__block, .__block.sliderbutton, .submit_wrap button.__block,
.form-submit button.__block {
  width: 100%;
  padding: 25px 30px;
}
.button.__black, .__black.sliderbutton, .submit_wrap button.__black,
.form-submit button.__black {
  background: #181111;
  color: #FFFFFF !important;
}
.button.__black:before, .__black.sliderbutton:before, .submit_wrap button.__black:before,
.form-submit button.__black:before {
  background: #FF7321;
}
.button.__black i, .__black.sliderbutton i, .submit_wrap button.__black i,
.form-submit button.__black i {
  color: #FF7321;
}
.button.__black:hover, .__black.sliderbutton:hover, .submit_wrap button.__black:hover,
.form-submit button.__black:hover, .button.__black:focus, .__black.sliderbutton:focus, .submit_wrap button.__black:focus,
.form-submit button.__black:focus {
  color: #181111 !important;
}
.button.__black:hover::before, .__black.sliderbutton:hover::before, .submit_wrap button.__black:hover::before,
.form-submit button.__black:hover::before, .button.__black:focus::before, .__black.sliderbutton:focus::before, .submit_wrap button.__black:focus::before,
.form-submit button.__black:focus::before {
  height: 100%;
  bottom: 0;
  top: auto;
}
.button.__black:hover i, .__black.sliderbutton:hover i, .submit_wrap button.__black:hover i,
.form-submit button.__black:hover i, .button.__black:focus i, .__black.sliderbutton:focus i, .submit_wrap button.__black:focus i,
.form-submit button.__black:focus i {
  color: #181111 !important;
}
.button.__ondark::before, .__ondark.sliderbutton::before, .submit_wrap button.__ondark::before,
.form-submit button.__ondark::before {
  background-color: #000000;
}

a[aria-disabled=true],
button[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}

.sliderbutton {
  width: 60px;
  height: 60px;
  padding: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.sliderbutton::after {
  content: "\e95f";
  color: #FFFFFF;
  font-size: 28px;
}
.sliderbutton.__prev::after {
  content: "\e95e";
}

/* form elements */
input[type=date],
input[type=email],
input[type=file],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
input[type=time],
textarea,
select,
.select2-css.select2-selection--multiple,
.select2-css.select2-selection--single,
.umbraco-forms-form .umbraco-forms-field-wrapper input[type=text],
.umbraco-forms-form .umbraco-forms-field input.text,
.umbraco-forms-form .umbraco-forms-field textarea {
  background: #FFFFFF;
  border-radius: 2px;
  border: 1px solid #727272;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  height: auto;
  line-height: 1.2;
  margin: 0;
  padding: 20px 20px 18px 20px;
  transition: all 200ms;
  max-width: 100% !important;
  width: 100%;
}
.select2-container--focus input[type=date], input[type=date]:focus,
.select2-container--focus input[type=email],
input[type=email]:focus,
.select2-container--focus input[type=file],
input[type=file]:focus,
.select2-container--focus input[type=number],
input[type=number]:focus,
.select2-container--focus input[type=password],
input[type=password]:focus,
.select2-container--focus input[type=tel],
input[type=tel]:focus,
.select2-container--focus input[type=text],
input[type=text]:focus,
.select2-container--focus input[type=time],
input[type=time]:focus,
.select2-container--focus textarea,
textarea:focus,
.select2-container--focus select,
select:focus,
.select2-container--focus .select2-css.select2-selection--multiple,
.select2-css.select2-selection--multiple:focus,
.select2-container--focus .select2-css.select2-selection--single,
.select2-css.select2-selection--single:focus,
.select2-container--focus .umbraco-forms-form .umbraco-forms-field-wrapper input[type=text],
.umbraco-forms-form .umbraco-forms-field-wrapper input[type=text]:focus,
.select2-container--focus .umbraco-forms-form .umbraco-forms-field input.text,
.umbraco-forms-form .umbraco-forms-field input.text:focus,
.select2-container--focus .umbraco-forms-form .umbraco-forms-field textarea,
.umbraco-forms-form .umbraco-forms-field textarea:focus {
  outline: 3px solid #FF7321;
}

.field_wrap.__textarea textarea,
.umbraco-forms-page .umbraco-forms-field.longanswer textarea {
  max-width: 100% !important;
  width: 100%;
  min-height: 180px;
}

.umbraco-forms-tooltip.help-block {
  margin-bottom: 20px;
  display: block;
}
.field_wrap + .umbraco-forms-tooltip.help-block {
  margin-top: -16px;
}

input[type=file] {
  padding: 10px;
  border: 1px dashed #bbb;
}

body .umbraco-forms-form fieldset,
body fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
body .umbraco-forms-form fieldset legend,
body fieldset legend {
  padding-inline-start: 0;
  padding-inline-end: 0;
}
body div.fieldset,
body fieldset.fieldset {
  margin: 0 0 30px;
  padding: 0 0 20px;
  border: 0;
  border-bottom: 1px solid rgba(114, 114, 114, 0.35) !important;
}
body div.fieldset .legend,
body div.fieldset legend.legend,
body fieldset.fieldset .legend,
body fieldset.fieldset legend.legend {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.8125rem;
  margin: 0 0 15px;
}

.field_wrap,
.umbraco-forms-form {
  position: relative;
  margin: 0 0 20px 0;
}
.field_wrap legend.label_wrap,
.umbraco-forms-form legend.label_wrap {
  font-size: 1.125rem;
  line-height: 1.5625rem;
  font-weight: 500;
  color: #252525;
  margin-bottom: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
}
.field_wrap .label_wrap,
.field_wrap .umbraco-forms-field,
.umbraco-forms-form .label_wrap,
.umbraco-forms-form .umbraco-forms-field {
  padding-bottom: 6px;
}
.field_wrap .label_wrap label,
.field_wrap .umbraco-forms-field label,
.umbraco-forms-form .label_wrap label,
.umbraco-forms-form .umbraco-forms-field label {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  color: #181111;
  margin-bottom: 0;
}
.field_wrap .label_wrap + .help-block,
.field_wrap .umbraco-forms-field + .help-block,
.umbraco-forms-form .label_wrap + .help-block,
.umbraco-forms-form .umbraco-forms-field + .help-block {
  display: block;
  padding-bottom: 6px;
  margin-top: -6px;
  font-size: 1rem;
}

.field_wrap.__select .select2-container {
  width: 100% !important;
}

/* custom checkboxes + radio buttons */
.field_wrap.__checkbox input[type=checkbox],
.umbraco-forms-field.dataconsent input[type=checkbox],
.umbraco-forms-field.singlecheckbox input[type=checkbox],
.umbraco-forms-field.multiplechoice input[type=checkbox] {
  position: absolute;
  left: -9999px;
  margin: 0;
}
.field_wrap.__checkbox > label,
.field_wrap.__checkbox > .input_wrap > label,
.field_wrap.__checkbox .umbraco-forms-field-wrapper label,
.umbraco-forms-field.dataconsent > label,
.umbraco-forms-field.dataconsent > .input_wrap > label,
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label,
.umbraco-forms-field.singlecheckbox > label,
.umbraco-forms-field.singlecheckbox > .input_wrap > label,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper label,
.umbraco-forms-field.multiplechoice > label,
.umbraco-forms-field.multiplechoice > .input_wrap > label,
.umbraco-forms-field.multiplechoice .umbraco-forms-field-wrapper label {
  font-size: 1rem;
  color: #181111;
  cursor: pointer;
  display: block;
  margin: 0 0 15px 0;
  padding-left: 30px;
  position: relative;
}
.field_wrap.__checkbox > label::before,
.field_wrap.__checkbox > .input_wrap > label::before,
.field_wrap.__checkbox .umbraco-forms-field-wrapper label::before,
.umbraco-forms-field.dataconsent > label::before,
.umbraco-forms-field.dataconsent > .input_wrap > label::before,
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label::before,
.umbraco-forms-field.singlecheckbox > label::before,
.umbraco-forms-field.singlecheckbox > .input_wrap > label::before,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper label::before,
.umbraco-forms-field.multiplechoice > label::before,
.umbraco-forms-field.multiplechoice > .input_wrap > label::before,
.umbraco-forms-field.multiplechoice .umbraco-forms-field-wrapper label::before {
  content: "";
  border: 1px solid #727272;
  background: #eaeaea;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  position: absolute;
  top: 1px;
  left: 0;
  color: transparent;
}
.field_wrap.__checkbox > label::after,
.field_wrap.__checkbox > .input_wrap > label::after,
.field_wrap.__checkbox .umbraco-forms-field-wrapper label::after,
.umbraco-forms-field.dataconsent > label::after,
.umbraco-forms-field.dataconsent > .input_wrap > label::after,
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label::after,
.umbraco-forms-field.singlecheckbox > label::after,
.umbraco-forms-field.singlecheckbox > .input_wrap > label::after,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper label::after,
.umbraco-forms-field.multiplechoice > label::after,
.umbraco-forms-field.multiplechoice > .input_wrap > label::after,
.umbraco-forms-field.multiplechoice .umbraco-forms-field-wrapper label::after {
  content: "\e92b";
  font-size: 12px;
  font-weight: 900;
  color: white;
  position: absolute;
  top: 4px;
  left: 2px;
  opacity: 0;
}
.field_wrap.__checkbox > label.__focused::before,
.field_wrap.__checkbox > .input_wrap > label.__focused::before,
.field_wrap.__checkbox .umbraco-forms-field-wrapper label.__focused::before,
.umbraco-forms-field.dataconsent > label.__focused::before,
.umbraco-forms-field.dataconsent > .input_wrap > label.__focused::before,
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label.__focused::before,
.umbraco-forms-field.singlecheckbox > label.__focused::before,
.umbraco-forms-field.singlecheckbox > .input_wrap > label.__focused::before,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper label.__focused::before,
.umbraco-forms-field.multiplechoice > label.__focused::before,
.umbraco-forms-field.multiplechoice > .input_wrap > label.__focused::before,
.umbraco-forms-field.multiplechoice .umbraco-forms-field-wrapper label.__focused::before {
  border-color: #181111;
  outline: 2px solid #FF7321;
}
.field_wrap.__checkbox > label.__checked::before,
.field_wrap.__checkbox > .input_wrap > label.__checked::before,
.field_wrap.__checkbox .umbraco-forms-field-wrapper label.__checked::before,
.umbraco-forms-field.dataconsent > label.__checked::before,
.umbraco-forms-field.dataconsent > .input_wrap > label.__checked::before,
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label.__checked::before,
.umbraco-forms-field.singlecheckbox > label.__checked::before,
.umbraco-forms-field.singlecheckbox > .input_wrap > label.__checked::before,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper label.__checked::before,
.umbraco-forms-field.multiplechoice > label.__checked::before,
.umbraco-forms-field.multiplechoice > .input_wrap > label.__checked::before,
.umbraco-forms-field.multiplechoice .umbraco-forms-field-wrapper label.__checked::before {
  background: #D14900;
  border-color: #D14900;
}
.field_wrap.__checkbox > label.__checked::after,
.field_wrap.__checkbox > .input_wrap > label.__checked::after,
.field_wrap.__checkbox .umbraco-forms-field-wrapper label.__checked::after,
.umbraco-forms-field.dataconsent > label.__checked::after,
.umbraco-forms-field.dataconsent > .input_wrap > label.__checked::after,
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label.__checked::after,
.umbraco-forms-field.singlecheckbox > label.__checked::after,
.umbraco-forms-field.singlecheckbox > .input_wrap > label.__checked::after,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper label.__checked::after,
.umbraco-forms-field.multiplechoice > label.__checked::after,
.umbraco-forms-field.multiplechoice > .input_wrap > label.__checked::after,
.umbraco-forms-field.multiplechoice .umbraco-forms-field-wrapper label.__checked::after {
  opacity: 1;
}

.umbraco-forms-field.dataconsent > label.umbraco-forms-label,
.umbraco-forms-field.singlecheckbox > label.umbraco-forms-label {
  padding-left: 0;
}
.umbraco-forms-field.dataconsent > label.umbraco-forms-label::before, .umbraco-forms-field.dataconsent > label.umbraco-forms-label::after,
.umbraco-forms-field.singlecheckbox > label.umbraco-forms-label::before,
.umbraco-forms-field.singlecheckbox > label.umbraco-forms-label::after {
  content: none;
}
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper > label,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper > label {
  font-size: 1rem;
  color: #181111;
  cursor: pointer;
  display: block;
  margin: 0 0 15px 0;
  padding-left: 30px;
  position: relative;
}
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper > label::before,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper > label::before {
  content: "";
  border: 1px solid #727272;
  background: #eaeaea;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  position: absolute;
  top: 1px;
  left: 0;
  color: transparent;
}
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper > label::after,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper > label::after {
  content: "\e92b";
  font-size: 12px;
  font-weight: 900;
  color: white;
  position: absolute;
  top: 4px;
  left: 2px;
  opacity: 0;
}
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper > label.__focused::before,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper > label.__focused::before {
  border-color: #181111;
  outline: 2px solid #FF7321;
}
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper > label.__checked::before,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper > label.__checked::before {
  background: #D14900;
  border-color: #D14900;
}
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper > label.__checked::after,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper > label.__checked::after {
  opacity: 1;
}

.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper label,
.umbraco-forms-field.multiplechoice .umbraco-forms-field-wrapper label {
  padding: 6px 0 0 45px;
}
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label::before, .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label::after,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper label::before,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper label::after,
.umbraco-forms-field.multiplechoice .umbraco-forms-field-wrapper label::before,
.umbraco-forms-field.multiplechoice .umbraco-forms-field-wrapper label::after {
  width: 32px;
  height: 32px;
}
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label::after,
.umbraco-forms-field.singlecheckbox .umbraco-forms-field-wrapper label::after,
.umbraco-forms-field.multiplechoice .umbraco-forms-field-wrapper label::after {
  font-size: 1rem;
  transform: translate(4px, 6px);
}

.field_wrap > .__checkbox input[type=checkbox] {
  position: absolute;
  left: -9999px;
  margin: 0;
}
.field_wrap > .__checkbox > label,
.field_wrap > .__checkbox > .input_wrap > label {
  font-size: 1.125rem;
  color: #181111;
  cursor: pointer;
  display: block;
  margin: 0 0 15px 0;
  padding-left: 30px;
  position: relative;
}
.field_wrap > .__checkbox > label::before,
.field_wrap > .__checkbox > .input_wrap > label::before {
  content: "";
  border: 1px solid #727272;
  background: #eaeaea;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  position: absolute;
  top: 1px;
  left: 0;
  color: transparent;
}
.field_wrap > .__checkbox > label::after,
.field_wrap > .__checkbox > .input_wrap > label::after {
  content: "\e92b";
  font-size: 12px;
  font-weight: 900;
  color: white;
  position: absolute;
  top: 4px;
  left: 2px;
  opacity: 0;
}
.field_wrap > .__checkbox > label.__focused::before,
.field_wrap > .__checkbox > .input_wrap > label.__focused::before {
  outline: 2px solid #FF7321;
  border-color: #181111;
}
.field_wrap > .__checkbox > label.__checked::before,
.field_wrap > .__checkbox > .input_wrap > label.__checked::before {
  background: #D14900;
  border-color: #D14900;
}
.field_wrap > .__checkbox > label.__checked::after,
.field_wrap > .__checkbox > .input_wrap > label.__checked::after {
  opacity: 1;
}

.field_wrap.__radiobuttons input[type=radio],
.umbraco-forms-field .radiobuttonlist input[type=radio] {
  position: absolute;
  left: -9999px;
  margin: 0;
}
.field_wrap.__radiobuttons > label,
.field_wrap.__radiobuttons > .input_wrap > label,
.umbraco-forms-field .radiobuttonlist > label,
.umbraco-forms-field .radiobuttonlist > .input_wrap > label {
  font-size: 1.125rem;
  position: relative;
  display: block;
  padding-top: 4px;
  margin: 0 0 15px 0;
  padding-left: 45px;
  cursor: pointer;
  color: #181111;
}
.field_wrap.__radiobuttons > label::before,
.field_wrap.__radiobuttons > .input_wrap > label::before,
.umbraco-forms-field .radiobuttonlist > label::before,
.umbraco-forms-field .radiobuttonlist > .input_wrap > label::before {
  content: "";
  border: 1px solid #727272;
  border-radius: 50%;
  background: #FFFFFF;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -1px;
  left: 0;
  color: transparent;
}
.field_wrap.__radiobuttons > label::after,
.field_wrap.__radiobuttons > .input_wrap > label::after,
.umbraco-forms-field .radiobuttonlist > label::after,
.umbraco-forms-field .radiobuttonlist > .input_wrap > label::after {
  content: "";
  border: 1px solid #181111;
  border-radius: 50%;
  background: #FFFFFF;
  transform: scale(0.5);
  width: 30px;
  height: 30px;
  position: absolute;
  top: -1px;
  left: 0;
  color: transparent;
  opacity: 0;
}
.field_wrap.__radiobuttons > label.__focused::before,
.field_wrap.__radiobuttons > .input_wrap > label.__focused::before,
.umbraco-forms-field .radiobuttonlist > label.__focused::before,
.umbraco-forms-field .radiobuttonlist > .input_wrap > label.__focused::before {
  border-color: #181111;
}
.field_wrap.__radiobuttons > label.__checked::before,
.field_wrap.__radiobuttons > .input_wrap > label.__checked::before,
.umbraco-forms-field .radiobuttonlist > label.__checked::before,
.umbraco-forms-field .radiobuttonlist > .input_wrap > label.__checked::before {
  border-color: #D14900;
  background: #D14900;
}
.field_wrap.__radiobuttons > label.__checked::after,
.field_wrap.__radiobuttons > .input_wrap > label.__checked::after,
.umbraco-forms-field .radiobuttonlist > label.__checked::after,
.umbraco-forms-field .radiobuttonlist > .input_wrap > label.__checked::after {
  border-color: #D14900;
  opacity: 1;
}

/* date picker */
input[type=text].datepickerfield {
  background-image: url("../../public/images/ico-calendar.png");
  background-position: right 15px center;
  background-repeat: no-repeat;
}

/* placeholders */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #554B4B;
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #554B4B;
  opacity: 1;
}

/* errors */
.input_error,
.field-validation-error {
  background: #FDF5F5;
  border: 1px solid #CB003A;
  font-size: 1.125rem;
  color: #CB003A;
  font-weight: 500;
  padding: 15px;
  display: flex;
  transform: translateY(-20px);
  align-items: center;
}
.input_error::before,
.field-validation-error::before {
  content: "\e91a";
  color: #CB003A;
  font-size: 22px;
  margin-right: 10px;
}

form .label_wrap label.error {
  color: #CB003A;
  font-weight: 500;
}
form .input_wrap input.error,
form .input_wrap select.error,
form .input_wrap textarea.error, form .input_wrap.error .select2-css {
  border: 1px solid #CB003A;
}
form .input_wrap input.error.__inline,
form .input_wrap select.error.__inline,
form .input_wrap textarea.error.__inline, form .input_wrap.error .select2-css.__inline {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
form .submit_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 768px) {
  form .submit_wrap.__twobuttons .button, form .submit_wrap.__twobuttons button, form .submit_wrap.__twobuttons .sliderbutton {
    min-width: auto;
    width: calc(50% - 10px);
  }
}

.field_wrap.__checkbox > label.error,
.field_wrap.__checkbox > .input_wrap > label.error,
.field_wrap.__radiobuttons > label.error,
.field_wrap.__radiobuttons > .input_wrap > label.error {
  color: #CB003A;
}
.field_wrap.__checkbox > label.error::before,
.field_wrap.__checkbox > .input_wrap > label.error::before,
.field_wrap.__radiobuttons > label.error::before,
.field_wrap.__radiobuttons > .input_wrap > label.error::before {
  background: #FDF5F5;
  border: 1px solid #CB003A;
}
.field_wrap.__checkbox > label.error::after,
.field_wrap.__checkbox > .input_wrap > label.error::after,
.field_wrap.__radiobuttons > label.error::after,
.field_wrap.__radiobuttons > .input_wrap > label.error::after {
  color: #CB003A;
}
.field_wrap.__checkbox > label.error.__checked::before,
.field_wrap.__checkbox > .input_wrap > label.error.__checked::before,
.field_wrap.__radiobuttons > label.error.__checked::before,
.field_wrap.__radiobuttons > .input_wrap > label.error.__checked::before {
  background: #CB003A;
  border: 1px solid #CB003A;
}
.field_wrap.__checkbox > label.error.__checked::after,
.field_wrap.__checkbox > .input_wrap > label.error.__checked::after,
.field_wrap.__radiobuttons > label.error.__checked::after,
.field_wrap.__radiobuttons > .input_wrap > label.error.__checked::after {
  color: white;
}
.field_wrap.__checkbox > label.error.__focused::before,
.field_wrap.__checkbox > .input_wrap > label.error.__focused::before,
.field_wrap.__radiobuttons > label.error.__focused::before,
.field_wrap.__radiobuttons > .input_wrap > label.error.__focused::before {
  border-color: #98002b;
  background: #f9e0e0;
}

.field_wrap.__radiobuttons > label.error.__checked::after,
.field_wrap.__radiobuttons > .input_wrap > label.error.__checked::after {
  background: white;
  border: 1px solid #CB003A;
}

.error_feedback,
.validation-summary-errors {
  margin: 0 0 2em 0;
  background: white;
  padding: 15px 20px;
  border: 1px solid #CB003A;
  background: #FDF5F5;
  color: #4b4243;
  text-align: left;
}
.error_feedback ul,
.validation-summary-errors ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.error_feedback ul li,
.validation-summary-errors ul li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.error_feedback ul li::before,
.validation-summary-errors ul li::before {
  content: "\e91a";
  color: #CB003A;
  font-size: 18px;
  margin-right: 8px;
}
.error_feedback ul li:last-child,
.validation-summary-errors ul li:last-child {
  margin: 0;
}

.select2-css.select2-selection--multiple .select2-selection__arrow, .select2-css.select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.select2-css.select2-selection--multiple {
  padding: 10px;
}
.select2-css.select2-selection--multiple .select2-selection__rendered {
  display: flex;
  align-items: center;
}
.select2-css.select2-selection--multiple .select2-selection__choice {
  padding: 10px;
  margin: 0 10px 0 0;
}

.select2-css.select2-selection--single .select2-selection__rendered {
  padding-left: 0;
}

.select2-template-image {
  display: flex;
  align-items: center;
}
.select2-template-image img {
  margin: 0 10px 0 0;
}

.select2-container--focus .select2-css.select2-selection--multiple, .select2-container--focus .select2-css.select2-selection--single,
.select2-container--open .select2-css.select2-selection--multiple,
.select2-container--open .select2-css.select2-selection--single {
  border-color: #000000;
}
.select2-container--focus .select2-dropdown,
.select2-container--open .select2-dropdown {
  border-color: #000000;
}

.select2-results .select2-results__option {
  padding: 15px 20px;
}
.select2-results .select2-results__option--highlighted[aria-selected] {
  background: #FF7321;
}

.select2-search--dropdown .select2-search__field {
  padding: 15px 20px;
}

.umbraco-forms-page .umbraco-forms-fieldset,
.umbraco-forms-page .umbraco-forms-legend {
  margin-bottom: 20px;
}
.umbraco-forms-page .umbraco-forms-fieldset:has(.titleanddescription),
.umbraco-forms-page .umbraco-forms-legend:has(.titleanddescription) {
  margin-bottom: 20px;
}
.umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-field:last-child,
.umbraco-forms-page .umbraco-forms-legend .umbraco-forms-field:last-child {
  margin-bottom: 0;
}
.umbraco-forms-page .umbraco-forms-fieldset .row-fluid,
.umbraco-forms-page .umbraco-forms-legend .row-fluid {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .umbraco-forms-page .umbraco-forms-fieldset .row-fluid,
  .umbraco-forms-page .umbraco-forms-legend .row-fluid {
    flex-wrap: nowrap;
  }
}
.umbraco-forms-page .umbraco-forms-fieldset .row-fluid [class*=col],
.umbraco-forms-page .umbraco-forms-legend .row-fluid [class*=col] {
  flex-shrink: 1;
}
.umbraco-forms-page .umbraco-forms-field {
  margin-bottom: 20px;
}
.umbraco-forms-page .umbraco-forms-field .radiobuttonlist > label,
.umbraco-forms-page .umbraco-forms-field .checkboxlist > label {
  font-size: 1rem;
  margin: 0;
  float: unset;
  clear: unset;
}
.umbraco-forms-page .umbraco-forms-field.longanswer > label, .umbraco-forms-page .umbraco-forms-field.datepicker > label {
  padding-bottom: 6px;
}
.umbraco-forms-page .umbraco-forms-field.longanswer input,
.umbraco-forms-page .umbraco-forms-field.longanswer textarea, .umbraco-forms-page .umbraco-forms-field.datepicker input,
.umbraco-forms-page .umbraco-forms-field.datepicker textarea {
  transform: translateY(6px);
}
.umbraco-forms-page .umbraco-forms-field select {
  padding: 10px;
}
.umbraco-forms-page .umbraco-forms-field select option:hover {
  background: #000000;
  color: #FFFFFF;
}
.umbraco-forms-page .umbraco-forms-field select option:not(:first-child):checked {
  background: #D14900;
  color: #FFFFFF;
}
.umbraco-forms-page .umbraco-forms-hidden {
  display: none;
}
.umbraco-forms-page .umbraco-forms-navigation {
  margin-top: 32px;
}
.umbraco-forms-page .umbraco-forms-navigation > div {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.umbraco-forms-page .umbraco-forms-navigation .button:hover, .umbraco-forms-page .umbraco-forms-navigation .submit_wrap button:hover, .submit_wrap .umbraco-forms-page .umbraco-forms-navigation button:hover,
.umbraco-forms-page .umbraco-forms-navigation .form-submit button:hover,
.form-submit .umbraco-forms-page .umbraco-forms-navigation button:hover, .umbraco-forms-page .umbraco-forms-navigation .sliderbutton:hover, .umbraco-forms-page .umbraco-forms-navigation .button:focus, .umbraco-forms-page .umbraco-forms-navigation .submit_wrap button:focus, .submit_wrap .umbraco-forms-page .umbraco-forms-navigation button:focus,
.umbraco-forms-page .umbraco-forms-navigation .form-submit button:focus,
.form-submit .umbraco-forms-page .umbraco-forms-navigation button:focus, .umbraco-forms-page .umbraco-forms-navigation .sliderbutton:focus {
  background-color: #000000;
}
.umbraco-forms-page p,
.umbraco-forms-page p a:not(.button):not(.sliderbutton):not(.sliderbutton) {
  font-size: 1rem;
}

/* burger */
.burger {
  display: inline-block;
  width: 60px;
  height: 60px;
  font-size: 0;
  background: #181111;
  position: relative;
  border-radius: 50%;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
  z-index: 9999;
  cursor: pointer;
  transition: all 0.5s;
}
.burger.__active {
  display: none;
}
@media (min-width: 992px) {
  .burger.__active {
    display: inline-block;
  }
}
.burger.__active .burger-toggle {
  background: transparent;
}
.burger.__active .burger-toggle:before {
  top: 0;
  width: 100%;
  background: #FFFFFF;
  transform: rotate(135deg);
}
.burger.__active .burger-toggle:after {
  bottom: 0;
  background: #FFFFFF;
  transform: rotate(225deg);
}
@media (min-width: 992px) {
  .burger {
    display: none;
  }
}
.burger-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 3px;
  background: #FFFFFF;
}
.burger-toggle:before, .burger-toggle:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform 0.3s;
}
.burger-toggle:before {
  top: -10px;
  width: 50%;
  transform: rotate(0);
}
.burger-toggle:after {
  bottom: -10px;
  transform: rotate(0);
}
.burger.sticky-burger {
  display: none;
}

.navwindow {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 5555;
  display: none;
  cursor: pointer;
  transition: all 0.2s;
}

/* navwrap */
.navwrap {
  position: fixed;
  top: 0;
  right: -100vw;
  bottom: 0;
  height: 100%;
  width: 100vw;
  background: #FFAF17;
  z-index: 8888;
  overflow: auto;
  transition: all 0.5s;
}
.navwrap.__active {
  right: 0 !important;
}
@media (min-width: 992px) {
  .navwrap {
    position: inherit;
    top: inherit;
    right: inherit;
    bottom: inherit;
    height: auto;
    width: auto;
    background: transparent;
    z-index: 9999;
    overflow: inherit;
    transition: all 0.3s;
  }
}

@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
  .nav {
    -webkit-transform: translateZ(0);
  }
}
@media (min-width: 992px) {
  .navborder {
    border-top: 1px solid rgba(161, 161, 161, 0.3);
  }
}

/* nav */
.nav {
  height: 100%;
  position: relative;
  width: 100%;
  overflow-y: scroll;
  font-family: "Poppins", sans-serif;
  background: #FFAF17;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .nav {
    overflow-y: inherit;
    background: none;
    width: auto;
    opacity: 1;
  }
}
.nav ul {
  height: auto;
  float: left;
  width: 100%;
}
@media (min-width: 992px) {
  .nav ul {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    padding: 0;
  }
}
.nav ul > li.menu-item {
  display: block;
  position: relative;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .nav ul > li.menu-item {
    display: inline-block;
    border: 0;
    padding: 0;
    margin: 0 0 0 50px;
  }
  .nav ul > li.menu-item:first-child {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .nav ul > li.menu-item {
    margin-left: 56px;
  }
}
@media (min-width: 992px) {
  .nav ul > li.menu-item:hover > a,
  .nav ul > li.menu-item > a:focus,
  .nav ul > li.menu-item form > button:focus, .nav ul > li.menu-item:hover form > button {
    background: none;
  }
  .nav ul > li.menu-item:hover > a::before,
  .nav ul > li.menu-item > a:focus::before,
  .nav ul > li.menu-item form > button:focus::before, .nav ul > li.menu-item:hover form > button::before {
    width: 100%;
    opacity: 1;
  }
}
.nav ul > li.menu-item.__open {
  background: #181111;
  border-top: 0;
}
.nav ul > li.menu-item.__open ul {
  background: #181111;
}
.nav ul > li.menu-item.__open > a, .nav ul > li.menu-item.__open form > button {
  border-top: 0;
  color: #FFAF17;
}
.nav ul > li.menu-item.__open > a::before, .nav ul > li.menu-item.__open form > button::before {
  color: #FFAF17;
  transform: rotate(90deg);
}
.nav ul > li.menu-item button,
.nav ul > li.menu-item a {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5625rem;
  color: #181111;
  padding: 13px 0;
  border-top: 1px solid #cd8c13;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
}
.nav ul > li.menu-item button::before,
.nav ul > li.menu-item a::before {
  content: "\e95f";
  margin: 0 10px 0 0;
  font-size: 13px;
}
@media (min-width: 992px) {
  .nav ul > li.menu-item button,
  .nav ul > li.menu-item a {
    padding: 20px 0;
    line-height: normal;
    height: 100%;
    border: none;
    color: #181111;
  }
  .nav ul > li.menu-item button::before,
  .nav ul > li.menu-item a::before {
    content: "";
    height: 3px;
    width: 0;
    position: absolute;
    top: -1px;
    left: 0;
    margin: 0;
    background: #FF7321;
    transition: all 0.3s;
  }
}
.nav ul > li.menu-item > a {
  padding-left: 18px;
}
@media (min-width: 992px) {
  .nav ul > li.menu-item > a {
    padding: 20px 0;
  }
}
.nav ul > li.menu-item-has-children {
  position: relative;
}
@media (min-width: 992px) {
  .nav ul > li.menu-item-has-children:hover > ul,
  .nav ul > li.menu-item-has-children a:focus ~ ul, .nav ul > li.menu-item-has-children.__active > ul {
    height: auto;
    overflow: visible;
  }
}
.nav ul > li.menu-item-has-children > ul {
  background: #141414;
  position: relative;
  width: calc(100% + 30px);
  margin: 0 -15px 15px;
  height: auto;
  z-index: 50;
  display: none;
}
.nav ul > li.menu-item-has-children > ul.__active {
  overflow-y: scroll;
  right: 0 !important;
  display: block;
}
@media (min-width: 992px) {
  .nav ul > li.menu-item-has-children > ul {
    position: absolute;
    width: 260px;
    top: inherit;
    bottom: inherit;
    right: inherit;
    height: inherit;
    z-index: 50;
    transform: translateX(0);
    display: block;
    height: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
  }
}
.nav ul > li.menu-item-has-children > ul li {
  padding: 0 30px;
}
@media (min-width: 992px) {
  .nav ul > li.menu-item-has-children > ul li {
    display: block;
    margin: 0;
    padding: 0;
  }
  .nav ul > li.menu-item-has-children > ul li:first-child {
    margin-top: 15px;
  }
  .nav ul > li.menu-item-has-children > ul li:last-child {
    padding-bottom: 15px;
  }
  .nav ul > li.menu-item-has-children > ul li:hover > a,
  .nav ul > li.menu-item-has-children > ul li > a:focus {
    padding-left: 35px;
    color: #FFAF17;
  }
}
.nav ul > li.menu-item-has-children > ul li > a {
  color: #E8E7E8;
  border-color: #858585;
  padding: 10px 0;
  font-size: 1rem;
  margin: 0;
}
.nav ul > li.menu-item-has-children > ul li > a::before {
  content: none;
}
@media (min-width: 992px) {
  .nav ul > li.menu-item-has-children > ul li > a {
    padding: 5px 30px;
    line-height: inherit;
    color: #E8E7E8;
  }
  .nav ul > li.menu-item-has-children > ul li > a::before {
    display: none;
  }
}
@media (min-width: 992px) {
  .nav ul > li.menu-item-has-children > ul li ul {
    top: 0;
    right: -100vw;
    z-index: 60;
    margin-top: -15px;
  }
  .nav ul > li.menu-item-has-children > ul li ul.__active {
    overflow-y: scroll;
    right: 0 !important;
    display: block;
  }
}
.nav ul > li.menu-item-has-children > ul li ul li {
  padding: 0 15px;
}
@media (min-width: 992px) {
  .nav ul > li.menu-item-has-children > ul li ul li {
    padding: 0;
  }
}
.nav ul > li.menu-item-has-children > ul li ul a {
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .nav ul > li.menu-item-has-children > ul li ul a {
    color: #9E9E9E;
  }
}
@media (min-width: 992px) {
  .nav ul:first-child > li.menu-item-has-children > a::after {
    display: none;
  }
  .nav ul li.current-menu-item a::before {
    width: 100%;
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .nav ul li.backto {
    display: none;
  }
}
.nav ul li.backto > a {
  font-size: 18px !important;
  padding: 20px;
  border-bottom: 1px solid #353434;
  position: relative;
}
.nav ul li.backto > a::before {
  content: "\e95e";
  font-family: icomoon;
  font-size: 10px;
  color: #FFFFFF;
  display: inline-block;
  margin: 0 30px 0 0;
}
@media (min-width: 992px) {
  .nav ul li.viewall {
    display: none;
  }
}

/* right hand side hover on last child */
@media (min-width: 992px) {
  .nav ul > li.menu-item-has-children:last-child ul ul {
    right: auto;
    left: -100%;
  }
  .nav > ul > li.menu-item:nth-last-child(2) > ul > li > ul {
    left: -260px;
  }
}
/* sidemenu */
.sidemenu {
  margin: 0 0 30px 0;
}
.sidemenu.__active .sidemenu-toggle::after {
  content: "\e960";
}
.sidemenu-toggle {
  font-size: 1.375rem;
  color: #181111;
  border-bottom: 1px solid #ccc;
  text-transform: uppercase;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .sidemenu-toggle {
    display: none;
  }
}
.sidemenu-toggle::after {
  content: "\e95d";
  font-size: 14px;
}
.sidemenu-menu {
  display: none;
}
@media (min-width: 992px) {
  .sidemenu-menu {
    display: block !important;
  }
}
.sidemenu-menu ul li.menu-item:hover > a::after, .sidemenu-menu ul li.menu-item:focus > a::after {
  width: 20px;
  margin: 0 10px 0 0;
}
.sidemenu-menu ul li.menu-item a {
  color: #181111;
  font-size: 1.125rem;
  padding: 5px 0;
  display: flex;
  position: relative;
  align-items: center;
}
.sidemenu-menu ul li.menu-item a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background: #FF7321;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}
.sidemenu-menu ul li.current-menu-item > a::after {
  width: 20px;
  margin: 0 10px 0 0;
}

.header-opts {
  align-items: center;
}

.aux-menu {
  position: relative;
  z-index: 30;
  height: 80px;
  background: #FFAF17;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .aux-menu {
    background: #FFFFFF;
  }
}
.aux-menu ul {
  padding-left: 18px;
}
.aux-menu ul li.menu-item {
  font-size: 1rem;
  color: #292929;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0 17px;
}
.aux-menu ul li.menu-item:last-child {
  margin-right: 0;
}
.aux-menu ul li.menu-item form {
  display: inline-block;
}
.aux-menu ul li.menu-item button, .aux-menu ul li.menu-item a {
  position: relative;
  transition: 0.3s all;
  font-size: 1rem;
  color: #292929;
  font-weight: 500;
  letter-spacing: 1px;
}
.aux-menu ul li.menu-item button::after, .aux-menu ul li.menu-item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 3px;
  background-color: #D14900;
  width: 0;
  transition: 0.3s all;
}
@media (min-width: 992px) {
  .aux-menu ul li.menu-item button:hover::after, .aux-menu ul li.menu-item button:focus::after, .aux-menu ul li.menu-item a:hover::after, .aux-menu ul li.menu-item a:focus::after {
    width: 100%;
  }
}

.__mobile .aux-menu {
  position: relative;
}
.__mobile .aux-menu::before {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  border-top: 1px solid #cd8c13;
}
@media (min-width: 992px) {
  .__mobile .aux-menu::before {
    content: none;
  }
}
.__mobile .aux-menu .aux-menu-nav ul {
  row-gap: 12px;
}

.breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ccc;
}
.breadcrumb-content {
  padding: 15px 0;
}
.breadcrumb-content a,
.breadcrumb-content span {
  font-size: 1.125rem;
}
.breadcrumb-content a {
  transition: all 0.3s;
}
.breadcrumb-content a:hover, .breadcrumb-content a:focus {
  color: #D14900;
}
.breadcrumb-content i {
  font-size: 12px;
}

.mobile-navwrap .burger {
  display: none;
  position: fixed;
  top: 10px;
  right: 8px;
}
.mobile-navwrap .burger.__active {
  display: inline-block;
}

.paging {
  margin: 40px 0;
  display: flex;
}
.paging li.disabled > a,
.paging li.disabled > span {
  cursor: not-allowed;
  opacity: 0.3;
}
.paging li.disabled > a:hover, .paging li.disabled > a:focus,
.paging li.disabled > span:hover,
.paging li.disabled > span:focus {
  background: inherit;
  border-color: inherit;
}
.paging li.active > a,
.paging li.active > span {
  background: #313131;
  border-color: #313131;
  color: #FFFFFF;
}
.paging li > a,
.paging li > span {
  font-weight: 500;
  line-height: 25px;
  height: 43px;
  width: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 7px 0 0;
  background: #F6F6F6;
  border: 1px solid #C9C9C9;
  border-radius: 3px;
  color: #000000;
}
.paging li > a,
.paging li > span {
  transition: all 0.3s;
}
.paging li > a:hover, .paging li > a:focus,
.paging li > span:hover,
.paging li > span:focus {
  background: #FF7321;
  border-color: #FF7321;
  color: #000000;
}
.paging li:first-child > a::before,
.paging li:first-child > span::before {
  content: "\e95e";
  color: #000000;
  font-size: 13px;
}
.paging li:last-child > a::before,
.paging li:last-child > span::before {
  content: "\e95f";
  color: #000000;
  font-size: 13px;
}
.paging li:not(:first-child):not(.active):not(:last-child) {
  display: none;
}
@media (min-width: 992px) {
  .paging li:not(:first-child):not(.active):not(:last-child) {
    display: inherit;
  }
}

.banner {
  position: relative;
  text-align: center;
  padding: 40px 0;
}
.banner::before {
  z-index: 3;
}
@media (min-width: 576px) {
  .banner {
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .banner {
    padding: 0;
    height: 500px;
    text-align: left;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .banner {
    height: 550px;
  }
}
@media (min-width: 1200px) {
  .banner {
    height: 600px;
  }
}
@media (min-width: 768px) {
  .banner.__subpage {
    height: 350px;
  }
}
@media (min-width: 992px) {
  .banner.__subpage {
    height: 400px;
  }
}
@media (min-width: 1200px) {
  .banner.__subpage {
    height: 450px;
  }
}
.banner-wrap {
  width: 100%;
}
.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  z-index: 2;
}
.banner-video video {
  position: absolute;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: 100%;
  object-fit: cover;
}
.banner-video-controls {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 4;
}
@media (min-width: 992px) {
  .banner-video-controls {
    display: block;
  }
}
.banner-video-controls-button {
  align-items: center;
  background: #FF7321;
  color: #FFFFFF;
  display: flex;
  height: 60px;
  justify-content: center;
  transition: background 0.3s ease;
  width: 60px !important;
}
.banner-video-controls-button.__play {
  background-color: #FF7321;
}
.banner-video-controls-button.__play::before {
  content: "\e938";
  font-size: 1.125rem;
  line-height: 1;
  color: #FFFFFF;
}
.banner-video-controls-button.__play:focus {
  box-shadow: inset 0 0 0 2px #FFFFFF;
}
.banner-video-controls-button.__pause {
  background-color: #FF7321;
}
.banner-video-controls-button.__pause::before {
  content: "\e904";
  font-size: 1.125rem;
  line-height: 1;
  color: #FFFFFF;
}
.banner-video-controls-button.__pause:focus {
  box-shadow: inset 0 0 0 2px #FFFFFF;
}
.banner-video-controls-button.__slidein {
  width: 100%;
  background: right top/210% 100% linear-gradient(to right, #ed5800 50%, #FF7321 50%);
}
@media (min-width: 576px) {
  .banner-video-controls-button.__slidein {
    width: auto;
  }
}
.banner-video-controls-button.__slidein:hover, .banner-video-controls-button.__slidein:focus {
  background: left top/210% 100% linear-gradient(to right, #ed5800 50%, #FF7321 50%);
}
.banner-content {
  position: relative;
  z-index: 5;
  color: #FFFFFF;
  font-size: 1.125rem;
}
.banner-title {
  font-size: 2rem;
}
@media (min-width: 576px) {
  .banner-title {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .banner-title {
    font-size: 3.125rem;
  }
}
@media (min-width: 992px) {
  .banner-title {
    font-size: 3.75rem;
  }
}
.banner-link {
  margin: 20px 0 0 0;
}

.homepage-banner {
  padding: 20px 0 0;
  margin: 0 0 78px;
}
@media (min-width: 992px) {
  .homepage-banner {
    margin: 0 0 100px;
  }
}
@media (min-width: 768px) {
  .homepage-banner-content {
    padding: 0 25px 0 0;
  }
}
.homepage-banner-content-title {
  margin-bottom: 29px;
}
.homepage-banner-content-subtitle {
  color: #434343;
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.6;
}
@media (min-width: 992px) {
  .homepage-banner-content-subtitle {
    font-size: 1.125rem;
  }
}
.homepage-banner-media {
  width: 100%;
  margin: 0 0 25px;
}
@media (min-width: 992px) {
  .homepage-banner-media {
    max-width: 580px;
    margin: 0 0 0 auto;
    background-size: 100%;
  }
}
.homepage-banner-media-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  position: relative;
  top: 5px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: auto;
}
@supports not (aspect-ratio: 1) {
  .homepage-banner-media-image::before {
    content: "";
    float: left;
    padding-top: calc(1 / 1 * 100%);
  }
  .homepage-banner-media-image::after {
    content: "";
    display: block;
    clear: both;
  }
}
@media (min-width: 768px) {
  .homepage-banner-media-image {
    margin: unset;
  }
}
@media (min-width: 992px) {
  .homepage-banner-media-image {
    max-width: 640px;
  }
}
.homepage-banner-media-image::after {
  content: "";
  border: 23px solid #FF7321;
  border-left-color: #FFAF17;
  border-radius: 50%;
  position: absolute;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  transform: rotate(316deg);
}
@media (min-width: 992px) {
  .homepage-banner-media-image::after {
    border: 40px solid #FF7321;
    border-left-color: #FFAF17;
  }
}
.homepage-banner-media-image img {
  border-radius: 50%;
}
.homepage-banner.__home .homepage-banner-content-title {
  margin-bottom: 32px;
}
.homepage-banner.__contact {
  margin: 0 0 50px;
}
.homepage-banner.__contact .homepage-banner-content {
  padding: 0;
}
.homepage-banner.__contact .contact-select-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
  margin: 0 0 5px;
}
.homepage-banner.__contact .contact-select-wrap {
  border: 1px solid #DFDFDF;
  border-radius: 6px;
  background-color: #F6F6F6;
  padding: 20px 25px;
}
.homepage-banner.__contact .contact-select-wrap .field_wrap {
  margin: 0;
}

.flexbanner {
  padding: 35px 0 80px;
  background: #FFAF17;
  background-size: 536px 509px;
}
@media (min-width: 992px) {
  .flexbanner {
    background: url("../../public/images/banner-flex-bg.svg") right 13px top no-repeat #FFAF17;
    background-size: auto 382px;
    padding: 56px 0;
  }
}
.flexbanner .breadcrumb {
  border: 0;
  margin-bottom: 44px;
}
.flexbanner .breadcrumb-content {
  padding: 0;
}
.flexbanner .breadcrumb-content a,
.flexbanner .breadcrumb-content span {
  color: #181111;
  font-size: 1.125rem;
  letter-spacing: 1px;
  line-height: 1.6;
}
.flexbanner .breadcrumb-content a:hover, .flexbanner .breadcrumb-content a:focus {
  text-decoration: underline;
}
.flexbanner .breadcrumb-content i {
  font-size: 8px;
}
.flexbanner .flexbanner-content-title {
  margin-bottom: 6px;
}
.flexbanner .flexbanner-content-text {
  font-size: 1.125rem;
  color: #181111;
  line-height: 28px;
  font-weight: 400;
}
.flexbanner.__style2 {
  background-color: #181111;
  background-image: none;
  padding: 0;
  margin: 0 -8px;
}
.flexbanner.__style2 .breadcrumb {
  margin: 0;
}
.flexbanner.__style2 .breadcrumb-content {
  padding: 15px 0;
}
.flexbanner.__style2 .breadcrumb-content a,
.flexbanner.__style2 .breadcrumb-content span,
.flexbanner.__style2 .breadcrumb-content i {
  color: #FFFFFF;
}
.flexbanner.__style2 .flexbanner-content-media {
  width: 100%;
}
.flexbanner.__style2 .flexbanner-content-media picture {
  width: 100%;
  height: 250px;
}
@media (min-width: 768px) {
  .flexbanner.__style2 .flexbanner-content-media picture {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .flexbanner.__style2 .flexbanner-content-media picture {
    height: 560px;
  }
}
.flexbanner.__style2.__blogdetail {
  background-color: #FFFFFF;
  margin: 0 -8px 50px;
}
.flexbanner.__style2.__blogdetail .breadcrumb {
  background: #181111;
}
.flexbanner.__style2.__blogdetail .blog-header {
  padding: 90px 0 0;
}
.flexbanner.__style2.__blogdetail .blog-header-title {
  margin: 0 0 60px;
}
.flexbanner.__style2.__blogdetail .blog-header img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.flexbanner.homepage-banner {
  background: none;
  margin: 0 -8px;
  padding: 0;
}
.flexbanner.homepage-banner .breadcrumb {
  background-color: #181111;
  margin: 0 0 40px;
}
.flexbanner.homepage-banner .breadcrumb-content {
  padding: 15px 0;
}
.flexbanner.homepage-banner .breadcrumb-content a,
.flexbanner.homepage-banner .breadcrumb-content span,
.flexbanner.homepage-banner .breadcrumb-content i {
  color: #FFFFFF;
}
.flexbanner.__black {
  background-color: #141414;
}
@media (min-width: 992px) {
  .flexbanner.__black {
    background-position: right 62px top;
    padding: 34px 0 56px 0;
  }
}
@media (min-width: 992px) {
  .flexbanner.__black .breadcrumb {
    margin-bottom: 29px;
  }
}
.flexbanner.__black .breadcrumb a,
.flexbanner.__black .breadcrumb span,
.flexbanner.__black .breadcrumb i {
  color: #FFFFFF;
}
.flexbanner.__black .flexbanner-content-title, .flexbanner.__black .flexbanner-content-text {
  color: #FFFFFF;
  margin: 0;
}
@media (min-width: 992px) {
  .flexbanner.__titleonly {
    background-position: right 62px top;
    padding: 58px 0 66px 0;
  }
}
.flexbanner.__titleonly .breadcrumb {
  display: none;
}
.flexbanner.__mywig {
  background: #181111;
  background-image: none;
  padding: 65px 0 65px;
}
.flexbanner.__mywig .flexbanner-content-title, .flexbanner.__mywig .flexbanner-content-date {
  color: #FFFFFF;
}
.flexbanner.__mywig .flexbanner-content-date {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5625rem;
}
.flexbanner.__style3 {
  background-position: center;
  background-size: cover;
  background-color: black;
  background-repeat: no-repeat;
  position: relative;
}
.flexbanner.__style3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6));
}
.flexbanner.__style3 .breadcrumb-content,
.flexbanner.__style3 .breadcrumb-content a,
.flexbanner.__style3 .breadcrumb-content span,
.flexbanner.__style3 .icon-arrow-set2-right::before,
.flexbanner.__style3 .flexbanner-content-text,
.flexbanner.__style3 .flexbanner-content-title {
  color: white;
}
.flexbanner.__style3 .breadcrumb {
  margin-bottom: 60px;
}

.searchbar {
  background: #141414;
  position: absolute;
  left: -100%;
  width: 100vw;
  height: calc(100dvh - 87px);
  z-index: 9999;
  top: 80px;
  transition: all 0.7s;
}
@media (min-width: 992px) {
  .searchbar {
    left: 0;
    right: 395px;
    height: 87px;
    top: 0;
    transform: translateX(-1200px);
    width: auto;
    max-width: 60%;
  }
}
@media (min-width: 1400px) {
  .searchbar {
    transform: translateX(-1400px);
  }
}
@media (min-width: 1800px) {
  .searchbar {
    transform: translateX(-1800px);
  }
}
.searchbar::before {
  content: "";
  background: #141414;
  width: 500px;
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  transition: all 0.4s;
  transition-delay: 0.2s;
}
.searchbar-form {
  padding: 10px 0;
}
.searchbar-form form {
  display: flex;
  align-items: center;
  /* placeholders */
}
.searchbar-form form .field_wrap {
  width: calc(100% - 87px);
  margin: 0;
}
.searchbar-form form .field_wrap .input_wrap input {
  height: 100%;
  background: #181111;
  border: none;
  font-size: 1.25rem;
  color: #FFFFFF;
}
.searchbar-form form .submit_wrap {
  width: 80px;
  padding: 0 15px;
  margin: 0;
}
.searchbar-form form .submit_wrap button {
  height: 50px;
  width: 50px;
  padding: 0;
  border-radius: 50%;
  font-size: 0.1px;
  color: transparent;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.searchbar-form form .submit_wrap button span::before {
  content: "\e918";
  font-size: 14px;
}
.searchbar-form form .submit_wrap button:hover span::before, .searchbar-form form .submit_wrap button:focus span::before {
  color: #FF7321;
}
.searchbar-form form input::-webkit-input-placeholder,
.searchbar-form form textarea::-webkit-input-placeholder {
  color: #FFFFFF;
}
.searchbar-form form input:-moz-placeholder,
.searchbar-form form textarea:-moz-placeholder {
  color: #FFFFFF;
}
.searchbar-form form input::-moz-placeholder,
.searchbar-form form textarea::-moz-placeholder {
  color: #FFFFFF;
}
.searchbar-form form input:-ms-input-placeholder,
.searchbar-form form textarea:-ms-input-placeholder {
  color: #FFFFFF;
}

.searchtoggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1rem;
  color: #292929;
  background: #FFAF17;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 1px;
  height: 87px;
  padding: 0;
  z-index: 30;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .searchtoggle {
    background: #FFFFFF;
  }
  .searchtoggle:hover .searchtoggle-text::after, .searchtoggle:focus-within .searchtoggle-text::after {
    width: 100%;
  }
}
.searchtoggle.__active {
  padding: 0 25px;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .searchtoggle.__active {
    background: #141414;
    padding-left: 150px;
  }
}
.searchtoggle.__active .searchtoggle-text::before {
  content: "\e936";
  color: #FFFFFF;
}
.searchtoggle-text {
  padding: 28px 0;
  position: relative;
}
.searchtoggle-text::before {
  content: "\e918";
  font-size: 14px;
  margin: 0 5px 0 0;
  color: #292929;
  transition: all 0.3s;
}
.searchtoggle-text::after {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 0;
  height: 3px;
  background-color: #D14900;
  width: 0;
  transition: 0.3s all;
}

.__mobile .searchtoggle {
  padding: 35px;
}
.__mobile .searchtoggle::before {
  font-size: 20px;
}
.__mobile .searchtoggle.__active {
  color: #181111;
}
.__mobile .searchtoggle.__active::before {
  color: #181111;
}
.__mobile .searchbar {
  display: flex;
  align-items: center;
}
.__mobile .searchbar-form {
  margin: -80px 15px 0 15px;
  background: #FFFFFF;
  border-radius: 16px;
}
.__mobile .searchbar-form .field_wrap .input_wrap {
  margin-left: 10px;
}
.__mobile .searchbar-form .field_wrap .input_wrap input {
  background: #FFFFFF;
  color: #181111;
  padding: 14px 20px 12px 20px;
}
.__mobile .searchbar-form .field_wrap .input_wrap input::-moz-placeholder {
  color: #181111;
}
.__mobile .searchbar-form .field_wrap .input_wrap input::placeholder {
  color: #181111;
}

.socialwrap {
  display: flex;
  margin: 30px 0;
}

.socialicon {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  margin: 0 30px 0 0;
  transition: all 0.3s;
}
.socialicon::before {
  font-size: 16px;
  margin: 0 5px 0 0;
  transition: all 0.3s;
}
.socialicon.__twitter::before {
  content: "\e958";
}
.socialicon.__facebook::before {
  content: "\e951";
}
.socialicon.__linkedin::before {
  content: "\e955";
}
.socialicon.__instagram::before {
  content: "\e954";
}
.socialicon.__pinterest::before {
  content: "\e956";
}
.socialicon.__youtube::before {
  content: "\e900";
  font-size: 1.875rem;
}
.socialicon:hover, .socialicon:focus {
  color: #D14900;
}
.socialicon:hover::before, .socialicon:focus::before {
  color: #D14900;
}

/* accordion */
.accordion {
  border-bottom: 1px solid #8F8F8F;
  margin: -1px 0 0 0;
}
.accordion-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 24px;
  padding: 20px 50px 20px 0;
  position: relative;
  transition: all 0.3s;
  width: 100%;
  cursor: pointer;
}
.accordion-head::before {
  content: "\e939";
  color: #000000;
  font-size: 16px;
  left: 0;
  margin: 0 30px 0 0;
  transition: all 0.3s;
}
.accordion-head.__active::before {
  content: "\e90e";
}
.accordion-head:hover, .accordion-head:focus, .accordion-head:active {
  color: #D14900;
}
.accordion-content {
  padding: 0px 40px 50px 46px;
  display: none;
  font-size: 1.125rem;
  line-height: 25px;
}

.accordionblock.__speakers .speakers-title {
  line-height: 39px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(114, 114, 114, 0.35);
}
.accordionblock.__speakers .accordion {
  border-bottom: 1px solid rgba(114, 114, 114, 0.35);
}
.accordionblock.__speakers .accordion-head {
  padding-right: 0;
  cursor: pointer;
}
.accordionblock.__speakers .accordion-head::before {
  content: none;
}
.accordionblock.__speakers .accordion-head::after {
  content: "\e939";
  color: #000000;
  font-size: 30px;
  left: 0;
  margin: 0 0 0 auto;
  transition: all 0.3s;
}
.accordionblock.__speakers .accordion-head:hover .speakers-detail-role, .accordionblock.__speakers .accordion-head:focus .speakers-detail-role {
  color: #181111;
}
.accordionblock.__speakers .accordion-head.__active::after {
  content: "\e90e";
}
.accordionblock.__speakers .accordion-head .speakers-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 25px 0 0;
}
@media (min-width: 992px) {
  .accordionblock.__speakers .accordion-head .speakers-image {
    width: 105px;
    height: 105px;
  }
}
.accordionblock.__speakers .accordion-head .speakers-detail {
  margin: 0 25px 0 0;
  text-align: left;
}
.accordionblock.__speakers .accordion-head .speakers-detail-name {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 24px;
}
.accordionblock.__speakers .accordion-head .speakers-detail-role {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 25px;
}
.accordionblock.__speakers .accordion-content {
  padding: 0 0 40px 0;
}
@media (min-width: 992px) {
  .accordionblock.__speakers .accordion-content {
    padding: 0 0 40px 130px;
  }
}

.fullwidthimage {
  width: 100%;
  position: relative;
}
.fullwidthimage.__setheight, .fullwidthimage.__setheight picture {
  height: 300px;
}
.fullwidthimage img {
  width: 100%;
  height: 100%;
}
.fullwidthimage img[data-object-fit] {
  -o-object-fit: cover;
     object-fit: cover;
}
.fullwidthimage-caption {
  background-color: #141414;
  position: relative;
  bottom: 0;
  left: 0;
  display: inline-block;
  padding: 21px 20px;
}
.fullwidthimage-caption p {
  color: #FFFFFF;
  font-weight: 600;
}

@media (min-width: 992px) {
  .imageblock.__fullwidth {
    margin: 0 -8px;
  }
  .imageblock.__fullwidth .fullwidthimage {
    width: calc(100% + 16px);
  }
}

body.__modal {
  overflow: hidden;
}

.modalblock {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  transition: all 2.3s;
  display: none;
}
.modalblock.__active {
  display: block;
}
.modalblock-container {
  margin: 0 auto;
  width: 95%;
  height: 100%;
  position: relative;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .modalblock-container {
    width: 95%;
  }
}
@media (min-width: 992px) {
  .modalblock-container {
    width: 80%;
  }
}
@media (min-width: 1200px) {
  .modalblock-container {
    width: 60%;
  }
}
.modalblock-content {
  width: 100%;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.17);
  padding: 20px 25px;
  margin: 0 0 20px;
  min-height: 80px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
@media (min-width: 992px) {
  .modalblock-content {
    padding: 40px 55px;
  }
}
.modalblock-close {
  width: 40px;
  height: 40px;
  background: #000000;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.modalblock-close::after {
  content: "\e936";
  font-size: 18px;
  color: #FFFFFF;
}
.modalblock-close:hover, .modalblock-close:focus {
  opacity: 0.7;
}

@media (min-width: 992px) {
  .__animate {
    opacity: 0;
  }
  .__animate.__animatein {
    transition: all 700ms cubic-bezier(0.75, 0, 0.25, 1);
    opacity: 1;
  }
  /* splitting */
  .__animate.splitting span {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease-in-out all;
    transition-delay: calc(var(--line-index) * 0.1s);
  }
  .__animate.splitting.__animatein span {
    opacity: 1;
    transform: translateY(0px);
  }
  .homepage-banner-content-title {
    transition-delay: 0.4s;
  }
  .events-list-item.__featured {
    transition-delay: 0.4s;
  }
  .events-list-item.__featured.__stagger {
    transition-delay: 0.8s;
  }
}
.sliderPause {
  font-size: 0 !important;
}

.highlights-carousel-pause,
.testimonials-pause {
  width: 48px;
  height: 48px;
  background: #181111;
  color: #FFFFFF;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s ease all;
}
.highlights-carousel-pause:hover, .highlights-carousel-pause:focus,
.testimonials-pause:hover,
.testimonials-pause:focus {
  background-color: #FF7321;
}
.highlights-carousel-pause:hover::before, .highlights-carousel-pause:focus::before,
.testimonials-pause:hover::before,
.testimonials-pause:focus::before {
  color: black;
}
.highlights-carousel-pause::before,
.testimonials-pause::before {
  content: "\e904";
  font-size: 16px;
  color: white;
  transition: 0.3s ease all, 0s transform ease;
}
.highlights-carousel-pause.__play::before,
.testimonials-pause.__play::before {
  content: "\e919";
  transform: translateX(2px);
}

.highlights {
  padding: 0;
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .highlights {
    padding: 0;
    margin: 0 0 80px;
  }
}
.highlights-header {
  padding: 0 30px 0 0;
}
@media (min-width: 992px) {
  .highlights-header {
    padding: 0 50px 0 0;
  }
}
.highlights-header-title {
  margin: 0;
}
.highlights-carousel {
  margin: 0 -8px;
}
.highlights-carousel .slick-list {
  padding-right: 40px;
}
@media (min-width: 992px) {
  .highlights-carousel .slick-list {
    padding: 0;
  }
}
.highlights-carousel .slick-list .slick-slide[aria-hidden=true] a,
.highlights-carousel .slick-list .slick-slide[aria-hidden=true] button {
  display: none !important;
}
.highlights-carousel .slick-track {
  padding-top: 25px;
}
.highlights-carousel-dots {
  margin: 0 0 0 35px;
}
.highlights-carousel-dots .slick-dots {
  display: flex;
}
.highlights-carousel-dots .slick-dots button {
  width: 8px;
  height: 8px;
  background: #434343;
  font-size: 0.1px;
  color: transparent;
  border-radius: 50%;
  margin: 0 0 0 15px;
  transition: all 0.2s;
}
.highlights-carousel-dots .slick-dots li {
  display: flex;
  align-items: center;
}
.highlights-carousel-dots .slick-dots .slick-active button {
  width: 12px;
  height: 12px;
  background: #FF7321;
}
.highlights-carousel-pause {
  margin: 0 0 0 35px;
}
.highlights-carousel-item-main a, .highlights-carousel-item-inset a {
  display: block;
  width: 100%;
}
.highlights-carousel-item-main a:hover .highlights-carousel-item-info-title span, .highlights-carousel-item-main a:focus .highlights-carousel-item-info-title span, .highlights-carousel-item-inset a:hover .highlights-carousel-item-info-title span, .highlights-carousel-item-inset a:focus .highlights-carousel-item-info-title span {
  background-size: 100% 10%;
}
.highlights-carousel-item-media {
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
  height: 380px;
}
@media (min-width: 992px) {
  .highlights-carousel-item-media {
    height: 550px;
  }
}
.highlights-carousel-item-media picture {
  width: 100%;
  height: 380px;
}
@media (min-width: 992px) {
  .highlights-carousel-item-media picture {
    height: 550px;
  }
}
.highlights-carousel-item-media .videoblock {
  position: relative;
  height: 100%;
  width: 100%;
  display: block;
}
.highlights-carousel-item-media .videoblock-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  z-index: 15;
  cursor: pointer;
}
@media (min-width: 992px) {
  .highlights-carousel-item-media .videoblock-overlay:hover p, .highlights-carousel-item-media .videoblock-overlay:focus p {
    background: #000000;
    transform: translateX(50%) scale(1.1);
  }
}
.highlights-carousel-item-media .videoblock-overlay .videoblock-icon {
  position: absolute;
  bottom: 25px;
  right: 50px;
  width: 58px;
  height: 58px;
  transform: translateX(50%);
  border-radius: 50%;
  background-color: #FF7321;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.3s;
}
.highlights-carousel-item-media .videoblock-overlay .videoblock-icon i::before {
  content: "\e919";
  color: #FFFFFF;
  font-size: 16px;
  position: relative;
  transform: translateY(-1px);
}
.highlights-carousel-item-media .videoblock iframe {
  position: relative;
}
@media (min-width: 992px) {
  .highlights-carousel-item-info {
    max-width: 80%;
  }
}
.highlights-carousel-item-info-type {
  font-size: 1.125rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.5rem;
  margin: 0 0 5px;
}
.highlights-carousel-item-info-title {
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #181111;
  font-weight: 500;
}
@media (min-width: 992px) {
  .highlights-carousel-item-info-title {
    font-size: 1.4375rem;
    line-height: 1.875rem;
  }
}
.highlights-carousel-item-info-title span {
  width: 100%;
  background-image: linear-gradient(transparent calc(100% - 50px), #FF7321 0px);
  background-repeat: no-repeat;
  background-size: 0% 10%;
  background-position: left bottom;
  transition: background-size 1s;
}
.highlights-carousel-item-main {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 0 0 20px;
}
@media (min-width: 992px) {
  .highlights-carousel-item-main {
    flex: 0 0 67%;
    max-width: calc(67% - 50px);
    padding: 0;
  }
}
@media (min-width: 992px) {
  .highlights-carousel-item-main .videoblock-overlay:hover .videoblock-icon, .highlights-carousel-item-main .videoblock-overlay:focus .videoblock-icon {
    background: #000000;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.highlights-carousel-item-main .videoblock-overlay .videoblock-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #FF7321;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .highlights-carousel-item-main .videoblock-overlay .videoblock-icon {
    width: 86px;
    height: 86px;
  }
}
.highlights-carousel-item-main .videoblock-overlay .videoblock-icon i::before {
  font-size: 22px;
  transform: translateY(0);
}
.highlights-carousel-item-inset {
  flex: 0 0 25%;
  width: calc(25% + 50px);
  position: relative;
  padding: 0 50px 30px 0;
}
.highlights-carousel-item-inset .highlights-carousel-item-media {
  width: 300px;
  height: 375px;
}
.highlights-carousel-item-inset::after {
  content: "";
  width: 36px;
  height: 1px;
  background: #FF7321;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.highlights-carousel-item-inset::before {
  content: "";
  position: absolute;
  left: -25px;
  top: -25px;
  height: 375px;
  width: 300px;
  z-index: 0;
  background: #FF7321;
}

.testimonials {
  padding: 30px 0 85px;
  background: #141414;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.3;
  background: linear-gradient(223deg, #2D2D2D 7.41%, #222222 89.35%);
}
@media (min-width: 992px) {
  .testimonials {
    padding: 55px 0 85px;
    overflow: hidden;
    position: relative;
  }
}
@media (min-width: 1400px) {
  .testimonials .container {
    max-width: 1240px;
  }
}
.testimonials .svg-path defs stop {
  stop-color: #FF7321;
}
.testimonials-title {
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}
@media (min-width: 992px) {
  .testimonials-sliders {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
}
.testimonials-pause {
  background: white;
  margin-top: 32px;
}
@media (min-width: 992px) {
  .testimonials-pause {
    margin: 0;
    position: absolute;
    bottom: 86px;
  }
}
.testimonials-pause::before {
  color: #181111;
}
.testimonials-pause:hover, .testimonials-pause:focus {
  background: #FF7321;
}
@media (min-width: 992px) {
  .testimonials-nav {
    flex: 0 0 120px;
    max-width: 120px;
  }
  .testimonials-nav.__animatein {
    transition-delay: 0.4s;
  }
}
.testimonials-nav-item {
  position: relative;
  cursor: pointer;
  margin: 5px;
}
.testimonials-nav-item img {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  z-index: 1;
  max-width: none;
}
@media (min-width: 992px) {
  .testimonials-nav-item img {
    width: 80px;
    height: 80px;
    margin: 0;
  }
}
.testimonials-nav-item:hover img, .testimonials-nav-item:focus img {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.83);
}
.testimonials-nav .slick-list {
  overflow: visible;
}
@media (min-width: 992px) {
  .testimonials-nav .slick-list {
    height: 100% !important;
  }
}
.testimonials-nav .slick-track {
  display: flex;
}
@media (min-width: 992px) {
  .testimonials-nav .slick-track {
    flex-direction: column-reverse;
    justify-content: center;
    height: 100% !important;
  }
}
.testimonials-nav .slick-track .slick-slide {
  position: relative;
}
@media (min-width: 992px) {
  .testimonials-nav .slick-track .slick-slide:first-child, .testimonials-nav .slick-track .slick-slide:last-child {
    transform: translateX(25px);
  }
}
.testimonials-nav .slick-track .slick-slide.slick-current img {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.83);
}
.testimonials-nav .slick-track .slick-slide.slick-current::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FF7321;
  position: absolute;
  top: 0;
  left: 60px;
  display: inline-block;
  z-index: 2;
}
.testimonials-images {
  flex: 0 0 375px;
  max-width: 375px;
  height: 375px;
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}
@media (min-width: 1200px) {
  .testimonials-images {
    flex: 0 0 640px;
    max-width: 640px;
    height: 640px;
  }
}
.testimonials-images-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 410px) {
  .testimonials-images-wrap {
    width: 370px;
  }
}
@media (min-width: 992px) {
  .testimonials-images-wrap {
    width: auto;
  }
  .testimonials-images-wrap.__animatein {
    transition-delay: 0.2s;
  }
}
.testimonials-images-wrap::before {
  content: "\e94b";
  font-size: 26px;
  color: #222;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #FF7321;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 4;
}
@media (min-width: 1200px) {
  .testimonials-images-wrap::before {
    font-size: 40px;
    width: 125px;
    height: 125px;
    top: 60px;
    right: 78px;
  }
}
.testimonials-images-wrap .svg-path {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  transform: translate(-50%, -50%);
  z-index: 4;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .testimonials-images-wrap .svg-path {
    transform: translateY(-50%);
    left: 40px;
  }
}
.testimonials-images-wrap .svg-path svg {
  width: 290px;
  height: 290px;
}
@media (min-width: 576px) {
  .testimonials-images-wrap .svg-path svg {
    width: 330px;
    height: 330px;
  }
}
@media (min-width: 768px) {
  .testimonials-images-wrap .svg-path svg {
    width: 370px;
    height: 380px;
  }
}
@media (min-width: 1200px) {
  .testimonials-images-wrap .svg-path svg {
    width: 540px;
    height: 540px;
  }
}
.testimonials-images-item {
  position: relative;
  z-index: 3;
}
.testimonials-images-item img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .testimonials-images-item img {
    width: 290px;
    height: 290px;
  }
}
@media (min-width: 768px) {
  .testimonials-images-item img {
    width: 300px;
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .testimonials-images-item img {
    width: 480px;
    height: 480px;
  }
}
.testimonials-text {
  flex: 1 1 100%;
  max-width: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 992px) {
  .testimonials-text {
    padding-left: 30px;
  }
  .testimonials-text.__animatein {
    transition-delay: 0.4s;
  }
}
.testimonials-text-item {
  max-width: 100%;
}
.testimonials-text-item-quote {
  color: #FFFFFF;
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0 auto 16px;
  width: 300px;
  max-width: 100%;
}
@media (min-width: 992px) {
  .testimonials-text-item-quote {
    font-size: 1.25rem;
    width: auto;
    max-width: none;
  }
}
.testimonials-text-item-name {
  color: #FFFFFF;
  margin: 16px auto 3px;
  width: 300px;
  max-width: 100%;
}
@media (min-width: 992px) {
  .testimonials-text-item-name {
    width: auto;
    max-width: none;
  }
}
.testimonials-text-item-name::before {
  content: "";
  width: 20px;
  height: 1px;
  border-top: 1px solid #FF7321;
  display: block;
  margin: 0 0 16px;
}
.testimonials-text-item-role {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto;
  opacity: 0.85;
  width: 300px;
  max-width: 100%;
}
@media (min-width: 992px) {
  .testimonials-text-item-role {
    font-size: 1.125rem;
    width: auto;
    max-width: none;
  }
}

.gallery .slick-arrow {
  width: 38px;
  height: 38px;
  background: #181111;
  font-size: 0.1px;
  color: transparent;
  cursor: pointer;
  position: absolute;
  top: 29.5vw;
  left: 30px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s all;
}
@media (min-width: 992px) {
  .gallery .slick-arrow {
    top: 280px;
  }
}
.gallery .slick-arrow::before {
  content: "\e95e";
  color: #FFFFFF;
  font-size: 12px;
}
.gallery .slick-arrow:hover, .gallery .slick-arrow:focus {
  background: #FF7321;
}
.gallery .slick-arrow.slick-prev::before {
  content: "\e95e";
}
.gallery .slick-arrow.slick-next {
  left: auto;
  right: 30px;
}
.gallery .slick-arrow.slick-next::before {
  content: "\e95f";
}
.gallery-slides-item figure {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 59vw;
}
@media (min-width: 992px) {
  .gallery-slides-item figure {
    height: 560px;
  }
}
.gallery-slides-item figure img {
  margin: 0 0 20px;
}

html {
  font-size: 16px;
}

body {
  color: #181111;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
body.__mobile {
  overflow: hidden;
}
body .container,
body .container-fluid,
body .container-xxl,
body .container-xl,
body .container-lg,
body .container-md,
body .container-sm {
  padding-left: 8px;
  padding-right: 8px;
}
body .container .row,
body .container-fluid .row,
body .container-xxl .row,
body .container-xl .row,
body .container-lg .row,
body .container-md .row,
body .container-sm .row {
  margin-left: -8px;
  margin-right: -8px;
}
body .container .row .col-xl,
body .container .row .col-xl-auto,
body .container .row .col-xl-12,
body .container .row .col-xl-11,
body .container .row .col-xl-10,
body .container .row .col-xl-9,
body .container .row .col-xl-8,
body .container .row .col-xl-7,
body .container .row .col-xl-6,
body .container .row .col-xl-5,
body .container .row .col-xl-4,
body .container .row .col-xl-3,
body .container .row .col-xl-2,
body .container .row .col-xl-1,
body .container .row .col-lg,
body .container .row .col-lg-auto,
body .container .row .col-lg-12,
body .container .row .col-lg-11,
body .container .row .col-lg-10,
body .container .row .col-lg-9,
body .container .row .col-lg-8,
body .container .row .col-lg-7,
body .container .row .col-lg-6,
body .container .row .col-lg-5,
body .container .row .col-lg-4,
body .container .row .col-lg-3,
body .container .row .col-lg-2,
body .container .row .col-lg-1,
body .container .row .col-md,
body .container .row .col-md-auto,
body .container .row .col-md-12,
body .container .row .col-md-11,
body .container .row .col-md-10,
body .container .row .col-md-9,
body .container .row .col-md-8,
body .container .row .col-md-7,
body .container .row .col-md-6,
body .container .row .col-md-5,
body .container .row .col-md-4,
body .container .row .col-md-3,
body .container .row .col-md-2,
body .container .row .col-md-1,
body .container .row .col-sm,
body .container .row .col-sm-auto,
body .container .row .col-sm-12,
body .container .row .col-sm-11,
body .container .row .col-sm-10,
body .container .row .col-sm-9,
body .container .row .col-sm-8,
body .container .row .col-sm-7,
body .container .row .col-sm-6,
body .container .row .col-sm-5,
body .container .row .col-sm-4,
body .container .row .col-sm-3,
body .container .row .col-sm-2,
body .container .row .col-sm-1,
body .container .row .col,
body .container .row .col-auto,
body .container .row .col-12,
body .container .row .col-11,
body .container .row .col-10,
body .container .row .col-9,
body .container .row .col-8,
body .container .row .col-7,
body .container .row .col-6,
body .container .row .col-5,
body .container .row .col-4,
body .container .row .col-3,
body .container .row .col-2,
body .container .row .col-1,
body .container-fluid .row .col-xl,
body .container-xxl .row .col-xl,
body .container-fluid .row .col-xl-auto,
body .container-xxl .row .col-xl-auto,
body .container-fluid .row .col-xl-12,
body .container-xxl .row .col-xl-12,
body .container-fluid .row .col-xl-11,
body .container-xxl .row .col-xl-11,
body .container-fluid .row .col-xl-10,
body .container-xxl .row .col-xl-10,
body .container-fluid .row .col-xl-9,
body .container-xxl .row .col-xl-9,
body .container-fluid .row .col-xl-8,
body .container-xxl .row .col-xl-8,
body .container-fluid .row .col-xl-7,
body .container-xxl .row .col-xl-7,
body .container-fluid .row .col-xl-6,
body .container-xxl .row .col-xl-6,
body .container-fluid .row .col-xl-5,
body .container-xxl .row .col-xl-5,
body .container-fluid .row .col-xl-4,
body .container-xxl .row .col-xl-4,
body .container-fluid .row .col-xl-3,
body .container-xxl .row .col-xl-3,
body .container-fluid .row .col-xl-2,
body .container-xxl .row .col-xl-2,
body .container-fluid .row .col-xl-1,
body .container-xxl .row .col-xl-1,
body .container-fluid .row .col-lg,
body .container-xxl .row .col-lg,
body .container-fluid .row .col-lg-auto,
body .container-xxl .row .col-lg-auto,
body .container-fluid .row .col-lg-12,
body .container-xxl .row .col-lg-12,
body .container-fluid .row .col-lg-11,
body .container-xxl .row .col-lg-11,
body .container-fluid .row .col-lg-10,
body .container-xxl .row .col-lg-10,
body .container-fluid .row .col-lg-9,
body .container-xxl .row .col-lg-9,
body .container-fluid .row .col-lg-8,
body .container-xxl .row .col-lg-8,
body .container-fluid .row .col-lg-7,
body .container-xxl .row .col-lg-7,
body .container-fluid .row .col-lg-6,
body .container-xxl .row .col-lg-6,
body .container-fluid .row .col-lg-5,
body .container-xxl .row .col-lg-5,
body .container-fluid .row .col-lg-4,
body .container-xxl .row .col-lg-4,
body .container-fluid .row .col-lg-3,
body .container-xxl .row .col-lg-3,
body .container-fluid .row .col-lg-2,
body .container-xxl .row .col-lg-2,
body .container-fluid .row .col-lg-1,
body .container-xxl .row .col-lg-1,
body .container-fluid .row .col-md,
body .container-xxl .row .col-md,
body .container-fluid .row .col-md-auto,
body .container-xxl .row .col-md-auto,
body .container-fluid .row .col-md-12,
body .container-xxl .row .col-md-12,
body .container-fluid .row .col-md-11,
body .container-xxl .row .col-md-11,
body .container-fluid .row .col-md-10,
body .container-xxl .row .col-md-10,
body .container-fluid .row .col-md-9,
body .container-xxl .row .col-md-9,
body .container-fluid .row .col-md-8,
body .container-xxl .row .col-md-8,
body .container-fluid .row .col-md-7,
body .container-xxl .row .col-md-7,
body .container-fluid .row .col-md-6,
body .container-xxl .row .col-md-6,
body .container-fluid .row .col-md-5,
body .container-xxl .row .col-md-5,
body .container-fluid .row .col-md-4,
body .container-xxl .row .col-md-4,
body .container-fluid .row .col-md-3,
body .container-xxl .row .col-md-3,
body .container-fluid .row .col-md-2,
body .container-xxl .row .col-md-2,
body .container-fluid .row .col-md-1,
body .container-xxl .row .col-md-1,
body .container-fluid .row .col-sm,
body .container-xxl .row .col-sm,
body .container-fluid .row .col-sm-auto,
body .container-xxl .row .col-sm-auto,
body .container-fluid .row .col-sm-12,
body .container-xxl .row .col-sm-12,
body .container-fluid .row .col-sm-11,
body .container-xxl .row .col-sm-11,
body .container-fluid .row .col-sm-10,
body .container-xxl .row .col-sm-10,
body .container-fluid .row .col-sm-9,
body .container-xxl .row .col-sm-9,
body .container-fluid .row .col-sm-8,
body .container-xxl .row .col-sm-8,
body .container-fluid .row .col-sm-7,
body .container-xxl .row .col-sm-7,
body .container-fluid .row .col-sm-6,
body .container-xxl .row .col-sm-6,
body .container-fluid .row .col-sm-5,
body .container-xxl .row .col-sm-5,
body .container-fluid .row .col-sm-4,
body .container-xxl .row .col-sm-4,
body .container-fluid .row .col-sm-3,
body .container-xxl .row .col-sm-3,
body .container-fluid .row .col-sm-2,
body .container-xxl .row .col-sm-2,
body .container-fluid .row .col-sm-1,
body .container-xxl .row .col-sm-1,
body .container-fluid .row .col,
body .container-xxl .row .col,
body .container-fluid .row .col-auto,
body .container-xxl .row .col-auto,
body .container-fluid .row .col-12,
body .container-xxl .row .col-12,
body .container-fluid .row .col-11,
body .container-xxl .row .col-11,
body .container-fluid .row .col-10,
body .container-xxl .row .col-10,
body .container-fluid .row .col-9,
body .container-xxl .row .col-9,
body .container-fluid .row .col-8,
body .container-xxl .row .col-8,
body .container-fluid .row .col-7,
body .container-xxl .row .col-7,
body .container-fluid .row .col-6,
body .container-xxl .row .col-6,
body .container-fluid .row .col-5,
body .container-xxl .row .col-5,
body .container-fluid .row .col-4,
body .container-xxl .row .col-4,
body .container-fluid .row .col-3,
body .container-xxl .row .col-3,
body .container-fluid .row .col-2,
body .container-xxl .row .col-2,
body .container-fluid .row .col-1,
body .container-xxl .row .col-1,
body .container-xl .row .col-xl,
body .container-xl .row .col-xl-auto,
body .container-xl .row .col-xl-12,
body .container-xl .row .col-xl-11,
body .container-xl .row .col-xl-10,
body .container-xl .row .col-xl-9,
body .container-xl .row .col-xl-8,
body .container-xl .row .col-xl-7,
body .container-xl .row .col-xl-6,
body .container-xl .row .col-xl-5,
body .container-xl .row .col-xl-4,
body .container-xl .row .col-xl-3,
body .container-xl .row .col-xl-2,
body .container-xl .row .col-xl-1,
body .container-xl .row .col-lg,
body .container-xl .row .col-lg-auto,
body .container-xl .row .col-lg-12,
body .container-xl .row .col-lg-11,
body .container-xl .row .col-lg-10,
body .container-xl .row .col-lg-9,
body .container-xl .row .col-lg-8,
body .container-xl .row .col-lg-7,
body .container-xl .row .col-lg-6,
body .container-xl .row .col-lg-5,
body .container-xl .row .col-lg-4,
body .container-xl .row .col-lg-3,
body .container-xl .row .col-lg-2,
body .container-xl .row .col-lg-1,
body .container-xl .row .col-md,
body .container-xl .row .col-md-auto,
body .container-xl .row .col-md-12,
body .container-xl .row .col-md-11,
body .container-xl .row .col-md-10,
body .container-xl .row .col-md-9,
body .container-xl .row .col-md-8,
body .container-xl .row .col-md-7,
body .container-xl .row .col-md-6,
body .container-xl .row .col-md-5,
body .container-xl .row .col-md-4,
body .container-xl .row .col-md-3,
body .container-xl .row .col-md-2,
body .container-xl .row .col-md-1,
body .container-xl .row .col-sm,
body .container-xl .row .col-sm-auto,
body .container-xl .row .col-sm-12,
body .container-xl .row .col-sm-11,
body .container-xl .row .col-sm-10,
body .container-xl .row .col-sm-9,
body .container-xl .row .col-sm-8,
body .container-xl .row .col-sm-7,
body .container-xl .row .col-sm-6,
body .container-xl .row .col-sm-5,
body .container-xl .row .col-sm-4,
body .container-xl .row .col-sm-3,
body .container-xl .row .col-sm-2,
body .container-xl .row .col-sm-1,
body .container-xl .row .col,
body .container-xl .row .col-auto,
body .container-xl .row .col-12,
body .container-xl .row .col-11,
body .container-xl .row .col-10,
body .container-xl .row .col-9,
body .container-xl .row .col-8,
body .container-xl .row .col-7,
body .container-xl .row .col-6,
body .container-xl .row .col-5,
body .container-xl .row .col-4,
body .container-xl .row .col-3,
body .container-xl .row .col-2,
body .container-xl .row .col-1,
body .container-lg .row .col-xl,
body .container-lg .row .col-xl-auto,
body .container-lg .row .col-xl-12,
body .container-lg .row .col-xl-11,
body .container-lg .row .col-xl-10,
body .container-lg .row .col-xl-9,
body .container-lg .row .col-xl-8,
body .container-lg .row .col-xl-7,
body .container-lg .row .col-xl-6,
body .container-lg .row .col-xl-5,
body .container-lg .row .col-xl-4,
body .container-lg .row .col-xl-3,
body .container-lg .row .col-xl-2,
body .container-lg .row .col-xl-1,
body .container-lg .row .col-lg,
body .container-lg .row .col-lg-auto,
body .container-lg .row .col-lg-12,
body .container-lg .row .col-lg-11,
body .container-lg .row .col-lg-10,
body .container-lg .row .col-lg-9,
body .container-lg .row .col-lg-8,
body .container-lg .row .col-lg-7,
body .container-lg .row .col-lg-6,
body .container-lg .row .col-lg-5,
body .container-lg .row .col-lg-4,
body .container-lg .row .col-lg-3,
body .container-lg .row .col-lg-2,
body .container-lg .row .col-lg-1,
body .container-lg .row .col-md,
body .container-lg .row .col-md-auto,
body .container-lg .row .col-md-12,
body .container-lg .row .col-md-11,
body .container-lg .row .col-md-10,
body .container-lg .row .col-md-9,
body .container-lg .row .col-md-8,
body .container-lg .row .col-md-7,
body .container-lg .row .col-md-6,
body .container-lg .row .col-md-5,
body .container-lg .row .col-md-4,
body .container-lg .row .col-md-3,
body .container-lg .row .col-md-2,
body .container-lg .row .col-md-1,
body .container-lg .row .col-sm,
body .container-lg .row .col-sm-auto,
body .container-lg .row .col-sm-12,
body .container-lg .row .col-sm-11,
body .container-lg .row .col-sm-10,
body .container-lg .row .col-sm-9,
body .container-lg .row .col-sm-8,
body .container-lg .row .col-sm-7,
body .container-lg .row .col-sm-6,
body .container-lg .row .col-sm-5,
body .container-lg .row .col-sm-4,
body .container-lg .row .col-sm-3,
body .container-lg .row .col-sm-2,
body .container-lg .row .col-sm-1,
body .container-lg .row .col,
body .container-lg .row .col-auto,
body .container-lg .row .col-12,
body .container-lg .row .col-11,
body .container-lg .row .col-10,
body .container-lg .row .col-9,
body .container-lg .row .col-8,
body .container-lg .row .col-7,
body .container-lg .row .col-6,
body .container-lg .row .col-5,
body .container-lg .row .col-4,
body .container-lg .row .col-3,
body .container-lg .row .col-2,
body .container-lg .row .col-1,
body .container-md .row .col-xl,
body .container-md .row .col-xl-auto,
body .container-md .row .col-xl-12,
body .container-md .row .col-xl-11,
body .container-md .row .col-xl-10,
body .container-md .row .col-xl-9,
body .container-md .row .col-xl-8,
body .container-md .row .col-xl-7,
body .container-md .row .col-xl-6,
body .container-md .row .col-xl-5,
body .container-md .row .col-xl-4,
body .container-md .row .col-xl-3,
body .container-md .row .col-xl-2,
body .container-md .row .col-xl-1,
body .container-md .row .col-lg,
body .container-md .row .col-lg-auto,
body .container-md .row .col-lg-12,
body .container-md .row .col-lg-11,
body .container-md .row .col-lg-10,
body .container-md .row .col-lg-9,
body .container-md .row .col-lg-8,
body .container-md .row .col-lg-7,
body .container-md .row .col-lg-6,
body .container-md .row .col-lg-5,
body .container-md .row .col-lg-4,
body .container-md .row .col-lg-3,
body .container-md .row .col-lg-2,
body .container-md .row .col-lg-1,
body .container-md .row .col-md,
body .container-md .row .col-md-auto,
body .container-md .row .col-md-12,
body .container-md .row .col-md-11,
body .container-md .row .col-md-10,
body .container-md .row .col-md-9,
body .container-md .row .col-md-8,
body .container-md .row .col-md-7,
body .container-md .row .col-md-6,
body .container-md .row .col-md-5,
body .container-md .row .col-md-4,
body .container-md .row .col-md-3,
body .container-md .row .col-md-2,
body .container-md .row .col-md-1,
body .container-md .row .col-sm,
body .container-md .row .col-sm-auto,
body .container-md .row .col-sm-12,
body .container-md .row .col-sm-11,
body .container-md .row .col-sm-10,
body .container-md .row .col-sm-9,
body .container-md .row .col-sm-8,
body .container-md .row .col-sm-7,
body .container-md .row .col-sm-6,
body .container-md .row .col-sm-5,
body .container-md .row .col-sm-4,
body .container-md .row .col-sm-3,
body .container-md .row .col-sm-2,
body .container-md .row .col-sm-1,
body .container-md .row .col,
body .container-md .row .col-auto,
body .container-md .row .col-12,
body .container-md .row .col-11,
body .container-md .row .col-10,
body .container-md .row .col-9,
body .container-md .row .col-8,
body .container-md .row .col-7,
body .container-md .row .col-6,
body .container-md .row .col-5,
body .container-md .row .col-4,
body .container-md .row .col-3,
body .container-md .row .col-2,
body .container-md .row .col-1,
body .container-sm .row .col-xl,
body .container-sm .row .col-xl-auto,
body .container-sm .row .col-xl-12,
body .container-sm .row .col-xl-11,
body .container-sm .row .col-xl-10,
body .container-sm .row .col-xl-9,
body .container-sm .row .col-xl-8,
body .container-sm .row .col-xl-7,
body .container-sm .row .col-xl-6,
body .container-sm .row .col-xl-5,
body .container-sm .row .col-xl-4,
body .container-sm .row .col-xl-3,
body .container-sm .row .col-xl-2,
body .container-sm .row .col-xl-1,
body .container-sm .row .col-lg,
body .container-sm .row .col-lg-auto,
body .container-sm .row .col-lg-12,
body .container-sm .row .col-lg-11,
body .container-sm .row .col-lg-10,
body .container-sm .row .col-lg-9,
body .container-sm .row .col-lg-8,
body .container-sm .row .col-lg-7,
body .container-sm .row .col-lg-6,
body .container-sm .row .col-lg-5,
body .container-sm .row .col-lg-4,
body .container-sm .row .col-lg-3,
body .container-sm .row .col-lg-2,
body .container-sm .row .col-lg-1,
body .container-sm .row .col-md,
body .container-sm .row .col-md-auto,
body .container-sm .row .col-md-12,
body .container-sm .row .col-md-11,
body .container-sm .row .col-md-10,
body .container-sm .row .col-md-9,
body .container-sm .row .col-md-8,
body .container-sm .row .col-md-7,
body .container-sm .row .col-md-6,
body .container-sm .row .col-md-5,
body .container-sm .row .col-md-4,
body .container-sm .row .col-md-3,
body .container-sm .row .col-md-2,
body .container-sm .row .col-md-1,
body .container-sm .row .col-sm,
body .container-sm .row .col-sm-auto,
body .container-sm .row .col-sm-12,
body .container-sm .row .col-sm-11,
body .container-sm .row .col-sm-10,
body .container-sm .row .col-sm-9,
body .container-sm .row .col-sm-8,
body .container-sm .row .col-sm-7,
body .container-sm .row .col-sm-6,
body .container-sm .row .col-sm-5,
body .container-sm .row .col-sm-4,
body .container-sm .row .col-sm-3,
body .container-sm .row .col-sm-2,
body .container-sm .row .col-sm-1,
body .container-sm .row .col,
body .container-sm .row .col-auto,
body .container-sm .row .col-12,
body .container-sm .row .col-11,
body .container-sm .row .col-10,
body .container-sm .row .col-9,
body .container-sm .row .col-8,
body .container-sm .row .col-7,
body .container-sm .row .col-6,
body .container-sm .row .col-5,
body .container-sm .row .col-4,
body .container-sm .row .col-3,
body .container-sm .row .col-2,
body .container-sm .row .col-1 {
  padding-right: 8px;
  padding-left: 8px;
}

.wrapper {
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.wrapper.__searchactive .searchbar {
  left: 0;
}
@media (min-width: 992px) {
  .wrapper.__searchactive .searchbar {
    transform: translateX(0);
  }
}

.header {
  background: #FFFFFF;
  padding: 10px 0;
  position: relative;
  z-index: 25;
}
@media (min-width: 992px) {
  .header {
    padding: 0;
  }
}
.header .row {
  align-items: center;
}
.header-logo {
  display: block;
  padding: 12px 0;
}
.header-logo img {
  max-height: 50px;
  width: auto;
}
@media (min-width: 992px) {
  .header-logo img {
    max-height: 63px;
  }
}
.header-opts {
  display: flex;
  margin-left: auto;
  justify-content: flex-end;
}

@keyframes showmenu {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
#navbar {
  background: #FFFFFF;
}
#navbar .sticky-logo {
  display: none;
  max-height: 50px;
}
#navbar .sticky-logo img {
  width: 100%;
  max-height: 46px;
}
#navbar.__sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  padding: 10px 0;
  transform: translateY(-100%);
  animation: showmenu 0.3s;
  animation-fill-mode: forwards;
  border-bottom: 1px solid rgba(161, 161, 161, 0.3);
}
@media (min-width: 992px) {
  #navbar.__sticky {
    padding: 0;
  }
}
#navbar.__sticky .sticky-logo {
  display: inline-block;
}
#navbar.__sticky .sticky-burger {
  display: inline-block;
}

#Main .container {
  padding: 0 20px;
}
@media (min-width: 768px) {
  #Main .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.dropdown {
  position: relative;
}
.dropdown-button {
  background: #FFFFFF;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  height: auto;
  line-height: 1.2;
  margin: 0;
  padding: 20px;
  transition: all 200ms;
  width: 100%;
  border-radius: 5px;
  border: 0;
  min-height: 60px;
  min-width: 220px;
  font-size: 1.0625rem;
  text-align: left;
  position: relative;
  cursor: pointer;
}
.dropdown-button::before {
  content: "\e95d";
  font-size: 10px;
  color: black;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.dropdown-button.__active::before {
  transform: translateY(-50%) rotate(-180deg);
}
.dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 30px);
  left: 0;
  width: 220px;
  background-color: white;
  border-radius: 4px;
  padding: 10px;
  z-index: 99;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.21);
}
.dropdown-window {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  z-index: 23;
}

.footer {
  background: #141414;
  padding: 50px 20px 30px;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .footer {
    padding: 85px 0;
  }
}
.footer.__lower {
  background: #141414;
  padding: 20px 20px 30px;
}
@media (min-width: 992px) {
  .footer.__lower {
    padding: 0 0 65px;
  }
}
@media (min-width: 992px) {
  .footer.__lower .row:first-child {
    padding-top: 35px;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
  }
}
.footer.__lower .copyright {
  margin: 30px 0 20px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .footer.__lower .copyright {
    margin: 0 0 14px;
  }
}
.footer.__lower .sd-text {
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.footer.__lower .sd-text a {
  text-decoration: underline;
  transition: 0.3s ease all;
}
.footer.__lower .sd-text a:hover, .footer.__lower .sd-text a:focus {
  text-decoration: none;
}
.footer-nav {
  text-align: left;
}
.footer-nav ul li {
  display: block;
  margin: 0 0 10px;
}
.footer-nav ul li a {
  font-weight: 500;
  position: relative;
  line-height: 1.2;
  display: inline-block;
  color: #FFFFFF;
  transition: all 0.3s;
}
.footer-nav ul li a::after {
  content: "";
  width: 0;
  height: 1px;
  background: #FFAF17;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all 0.3s;
}
.footer-nav ul li a:hover, .footer-nav ul li a:focus {
  text-decoration: none;
}
.footer-nav ul li a:hover::after, .footer-nav ul li a:focus::after {
  width: 100%;
}
@media (min-width: 992px) {
  .footer-nav.__horizontal ul {
    display: flex;
    margin: 0 0 30px;
  }
  .footer-nav.__horizontal ul li {
    margin: 0 30px 0 0;
  }
}
@media (min-width: 768px) {
  .footer-cta {
    margin: 0 0 0 -30px;
  }
}
.footer-cta-title {
  color: #FFFFFF;
  margin: 0 0 10px;
}
@media (min-width: 992px) {
  .footer-cta-title {
    font-weight: 500;
  }
}
.footer-cta-text {
  color: #FFFFFF;
  opacity: 0.8;
}
.footer-cta .button, .footer-cta .submit_wrap button, .submit_wrap .footer-cta button,
.footer-cta .form-submit button,
.form-submit .footer-cta button, .footer-cta .sliderbutton {
  margin: 27px 0 0 0;
}
.footer .socialwrap {
  margin: 0 0 30px;
  display: flex;
}
@media (min-width: 992px) {
  .footer .socialwrap {
    margin: 0;
    justify-content: flex-end;
  }
}
.footer .socialwrap .socialicon {
  margin: 0 30px 0 0;
}
@media (min-width: 992px) {
  .footer .socialwrap .socialicon {
    margin: 0 0 0 30px;
  }
}
.footer .socialwrap .socialicon::before {
  color: #FFFFFF;
  font-size: 20px;
}
.footer .socialwrap .socialicon:hover::before, .footer .socialwrap .socialicon:focus::before {
  color: #FFAF17;
}

.promoted {
  background: #E8E7E8;
}
@media (min-width: 992px) {
  .promoted {
    padding: 40px 0;
  }
}
.promoted.__largepadding {
  margin: 0 0 50px;
}
@media (min-width: 992px) {
  .promoted.__largepadding {
    margin: 0 0 80px;
  }
}
.promoted .row > div:nth-child(2).__animate {
  transition-delay: 0.2s;
}
.promoted .row > div:nth-child(3).__animate {
  transition-delay: 0.4s;
}
.promoted.__whitebg {
  background: transparent;
}
.promoted-title {
  margin: 0 0 25px;
  text-align: center;
}
@media (min-width: 992px) {
  .promoted-title {
    margin: 0 0 28px;
  }
}
.promoted-item {
  margin-bottom: 50px;
  width: 100%;
}
@media (min-width: 992px) {
  .promoted-item {
    margin: 0;
  }
}
.promoted-item-media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 460px;
  margin: 0 auto 15px;
  max-width: 365px;
  transition: 0.3s ease all;
}
@media (min-width: 768px) {
  .promoted-item-media {
    max-width: none;
  }
}
@media (min-width: 992px) {
  .promoted-item-media {
    height: 460px;
    margin-bottom: 26px;
  }
}
.promoted-item-info {
  position: relative;
  z-index: 2;
}
.promoted-item-info-title {
  color: #000000;
  margin: 0 0 10px;
}
.promoted-item-info::after {
  content: none;
  color: #D14900;
  font-size: 11px;
  display: block;
  text-align: left;
  margin-top: 20px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .promoted-item-info::after {
    content: "\e948";
  }
}
.promoted-item:hover .promoted-item-media, .promoted-item:focus .promoted-item-media {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.4);
}
.promoted-item:hover .promoted-item-info-title, .promoted-item:focus .promoted-item-info-title {
  color: #D14900;
}
.promoted-item:hover .promoted-item-info::after, .promoted-item:focus .promoted-item-info::after {
  opacity: 1;
  transform: translateX(0);
}
.promoted-item.__square .promoted-item-media {
  height: 0;
  padding-bottom: 100%;
}
.promoted-item.__square .promoted-item-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.promoted.__mywig .promoted-title {
  text-align: center;
  margin: 0 0 45px;
}
.promoted.__mywig .promoted-item-media {
  height: 365px;
}
.promoted.__mywig .promoted-item-info-title {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.promoted.__mywig .promoted-item-info-title span {
  width: 100%;
  background-image: linear-gradient(transparent calc(100% - 50px), #FF7321 0px);
  background-repeat: no-repeat;
  background-size: 0% 10%;
  background-position: left bottom;
  transition: background-size 1s;
}
.promoted.__mywig .promoted-item:hover .promoted-item-info-title, .promoted.__mywig .promoted-item:focus .promoted-item-info-title {
  color: #181111;
}
.promoted.__mywig .promoted-item:hover .promoted-item-info-title span, .promoted.__mywig .promoted-item:focus .promoted-item-info-title span {
  background-size: 100% 10%;
}

.stats {
  margin: 0 0 100px;
}
@media (min-width: 992px) {
  .stats.__animatein .stats-header::before,
  .stats.__animatein .stats-numbers::before {
    width: 100%;
  }
}
.stats-header {
  position: relative;
  width: 100%;
  padding: 0 0 10px;
}
@media (min-width: 992px) {
  .stats-header {
    padding: 30px 0 0;
  }
  .stats-header::before {
    content: "";
    width: 0;
    height: 1px;
    background: #434343;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
  }
}
.stats-header-title {
  color: #181111;
  margin: 0 0 10px;
  max-width: 500px;
}
.stats-header-subtitle {
  max-width: 500px;
}
.stats-numbers {
  position: relative;
}
@media (min-width: 992px) {
  .stats-numbers::before {
    content: "";
    width: 0;
    height: 1px;
    background: #434343;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
  }
}
.stats-numbers-item {
  position: relative;
  padding: 30px 0 10px;
  border-bottom: 1px solid rgba(67, 67, 67, 0.27);
}
.stats-numbers-item::after {
  content: "";
  width: 0;
  height: 1px;
  background: rgba(151, 151, 151, 0.2);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.stats-numbers-item:last-child {
  border: 0;
}
.stats-numbers-item:last-child::after {
  content: 0;
}
@media (min-width: 992px) {
  .stats-numbers-item {
    border-bottom: 0;
  }
  .stats-numbers-item.__animatein::after {
    width: 100%;
  }
  .stats-numbers-item:first-child .stats-numbers-item-data.__animatein {
    transition-delay: 0.4s;
  }
  .stats-numbers-item:first-child .stats-numbers-item-label.__animatein {
    transition-delay: 0.5s;
  }
  .stats-numbers-item:nth-child(2) .stats-numbers-item-data.__animatein {
    transition-delay: 0.6s;
  }
  .stats-numbers-item:nth-child(2) .stats-numbers-item-label.__animatein {
    transition-delay: 0.7s;
  }
  .stats-numbers-item:last-child .stats-numbers-item-data.__animatein {
    transition-delay: 0.8s;
  }
  .stats-numbers-item:last-child .stats-numbers-item-label.__animatein {
    transition-delay: 0.9s;
  }
}
.stats-numbers-item-data {
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: -2.25px;
  line-height: 1.1;
  margin: 0;
  color: #D14900;
  background-size: 100%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .stats-numbers-item-data {
    background: none;
    color: #D14900;
  }
}
.stats-numbers-item-label {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #181111;
  margin-top: -15px;
}

.logos {
  position: relative;
  padding: 30px 0;
  margin: 0;
}
@media (min-width: 992px) {
  .logos {
    margin: 0 -8px;
  }
}
.logos .container-fluid, .logos .container-sm, .logos .container-md, .logos .container-lg, .logos .container-xl, .logos .container-xxl {
  padding-right: 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .logos .container-fluid, .logos .container-sm, .logos .container-md, .logos .container-lg, .logos .container-xl, .logos .container-xxl {
    padding-right: 8px;
  }
}
.logos-header {
  text-align: center;
  width: 100%;
}
@media (min-width: 992px) {
  .logos-header {
    position: absolute;
    top: 75px;
    left: 100px;
    z-index: 10;
    width: 280px;
    height: 280px;
    background: #222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
  }
}
.logos-header-title {
  font-size: 1.875rem;
  line-height: 3.25rem;
  letter-spacing: -0.5px;
  font-weight: 500;
  text-align: center;
}
.logos-header-title strong {
  font-weight: inherit;
}
@media (min-width: 992px) {
  .logos-header-title {
    color: #FFFFFF;
    font-size: 1.5625rem;
    line-height: 1.8125rem;
    font-weight: 400;
    transition: all 0.3s;
  }
  .logos-header-title strong {
    font-weight: 700;
    display: block;
  }
}
.logos-header-title::after {
  content: none;
  color: #FFAF17;
  font-size: 16px;
  display: block;
  text-align: center;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .logos-header-title::after {
    content: "\e948";
  }
}
.logos-header span + span {
  display: block;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.logos-header span + span i {
  font-size: 0.1875rem;
}
@media (min-width: 992px) {
  .logos-header:hover, .logos-header:focus {
    background: #FFAF17;
  }
  .logos-header:hover .logos-header-title, .logos-header:focus .logos-header-title {
    color: #000000;
  }
  .logos-header:hover .logos-header-title::after, .logos-header:focus .logos-header-title::after {
    color: #000000;
  }
}
.logos-sliders {
  position: relative;
  z-index: 5;
}
.logos-slider-top, .logos-slider-middle, .logos-slider-bottom {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .logos-slider-top, .logos-slider-bottom {
    transform: translateX(-40px);
  }
}
.logos-slider-item {
  padding: 25px 15px;
}
@media (min-width: 992px) {
  .logos-slider-item {
    padding: 40px;
  }
}
.logos-slider-item img {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
}
@media (min-width: 992px) {
  .logos-slider-item img {
    max-width: 180px;
    max-height: 80px;
  }
}

.flexibleblocks {
  overflow: hidden;
}
.flexibleblocks-block {
  margin: 0 0 30px;
}
@media (min-width: 992px) {
  .flexibleblocks-block {
    margin: 0 0 80px;
  }
}
.flexibleblocks.__twocolumn .flexibleblocks-block .row > div, .flexibleblocks.__contained .flexibleblocks-block .row > div {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
}
@media (min-width: 992px) {
  .flexibleblocks.__twocolumn .flexibleblocks-block .gallery .gallery-slides-item figure,
  .flexibleblocks.__twocolumn .flexibleblocks-block .gallery .videoblock,
  .flexibleblocks.__twocolumn .flexibleblocks-block .video .gallery-slides-item figure,
  .flexibleblocks.__twocolumn .flexibleblocks-block .video .videoblock, .flexibleblocks.__contained .flexibleblocks-block .gallery .gallery-slides-item figure,
  .flexibleblocks.__contained .flexibleblocks-block .gallery .videoblock,
  .flexibleblocks.__contained .flexibleblocks-block .video .gallery-slides-item figure,
  .flexibleblocks.__contained .flexibleblocks-block .video .videoblock {
    height: 460px;
  }
  .flexibleblocks.__twocolumn .flexibleblocks-block .gallery .slick-arrow,
  .flexibleblocks.__twocolumn .flexibleblocks-block .video .slick-arrow, .flexibleblocks.__contained .flexibleblocks-block .gallery .slick-arrow,
  .flexibleblocks.__contained .flexibleblocks-block .video .slick-arrow {
    top: 215px;
  }
}
@media (min-width: 768px) {
  .flexibleblocks.__twocolumn .flexibleblocks-block .quote .quotes-images-wrap, .flexibleblocks.__contained .flexibleblocks-block .quote .quotes-images-wrap {
    max-width: none;
  }
}
@media (min-width: 992px) {
  .flexibleblocks.__twocolumn .flexibleblocks-block .quote .quotes-images-wrap, .flexibleblocks.__contained .flexibleblocks-block .quote .quotes-images-wrap {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    height: 260px;
  }
  .flexibleblocks.__twocolumn .flexibleblocks-block .quote .quotes-images-wrap::before, .flexibleblocks.__contained .flexibleblocks-block .quote .quotes-images-wrap::before {
    width: 56px;
    height: 56px;
    font-size: 17px;
    top: 10px;
    right: 10px;
  }
  .flexibleblocks.__twocolumn .flexibleblocks-block .quote .quotes-images, .flexibleblocks.__contained .flexibleblocks-block .quote .quotes-images {
    height: 250px;
    transform: translate(-2px, -2px);
  }
  .flexibleblocks.__twocolumn .flexibleblocks-block .quote .svg-path svg, .flexibleblocks.__contained .flexibleblocks-block .quote .svg-path svg {
    width: 100%;
    height: 100%;
  }
  .flexibleblocks.__twocolumn .flexibleblocks-block .quote .quotes-images-item img, .flexibleblocks.__contained .flexibleblocks-block .quote .quotes-images-item img {
    width: 215px;
    height: 215px;
  }
  .flexibleblocks.__twocolumn .flexibleblocks-block .quote .quotes-text, .flexibleblocks.__contained .flexibleblocks-block .quote .quotes-text {
    flex: 0 0 67%;
    max-width: 67%;
  }
  .flexibleblocks.__twocolumn .flexibleblocks-block .quote .quotes-text-item-quote, .flexibleblocks.__contained .flexibleblocks-block .quote .quotes-text-item-quote {
    font-size: 1.25rem;
  }
}

.textblock .button, .textblock .submit_wrap button, .submit_wrap .textblock button,
.textblock .form-submit button,
.form-submit .textblock button, .textblock .sliderbutton,
.sidetitle .button,
.sidetitle .submit_wrap button,
.submit_wrap .sidetitle button,
.sidetitle .form-submit button,
.form-submit .sidetitle button,
.sidetitle .sliderbutton {
  color: #fff;
}
.textblock.__dark,
.sidetitle.__dark {
  background: #141414;
  padding: 45px 0 65px;
}
@media (min-width: 992px) {
  .textblock.__dark,
  .sidetitle.__dark {
    padding: 95px 0 120px;
  }
}
.textblock.__dark h1,
.textblock.__dark h2,
.textblock.__dark h3,
.textblock.__dark h4,
.textblock.__dark h5,
.textblock.__dark h6,
.textblock.__dark p,
.textblock.__dark .h1,
.textblock.__dark .event-detail-header-title,
.textblock.__dark .resource-detail-header-title,
.textblock.__dark .vacancy-detail-header-title,
.textblock.__dark .flexbanner .flexbanner-content-title,
.flexbanner .textblock.__dark .flexbanner-content-title,
.textblock.__dark .flexbanner.__style2.__blogdetail .blog-header-title,
.flexbanner.__style2.__blogdetail .textblock.__dark .blog-header-title,
.textblock.__dark .highlights-header-title,
.textblock.__dark .h2,
.textblock.__dark .homepage-banner-content-title,
.textblock.__dark .h3,
.textblock.__dark .h4,
.textblock.__dark .related-resources-item-title,
.textblock.__dark .quotes-text-item-name,
.textblock.__dark .testimonials-text-item-name,
.textblock.__dark .promoted-item-info-title,
.textblock.__dark .h5,
.textblock.__dark .h6,
.textblock.__dark .p,
.textblock.__dark .promoted-item-info-subtitle,
.textblock.__dark .stats-header-subtitle,
.textblock.__dark ul li,
.textblock.__dark ol li,
.textblock.__dark table td,
.sidetitle.__dark h1,
.sidetitle.__dark h2,
.sidetitle.__dark h3,
.sidetitle.__dark h4,
.sidetitle.__dark h5,
.sidetitle.__dark h6,
.sidetitle.__dark p,
.sidetitle.__dark .h1,
.sidetitle.__dark .event-detail-header-title,
.sidetitle.__dark .resource-detail-header-title,
.sidetitle.__dark .vacancy-detail-header-title,
.sidetitle.__dark .flexbanner .flexbanner-content-title,
.flexbanner .sidetitle.__dark .flexbanner-content-title,
.sidetitle.__dark .flexbanner.__style2.__blogdetail .blog-header-title,
.flexbanner.__style2.__blogdetail .sidetitle.__dark .blog-header-title,
.sidetitle.__dark .highlights-header-title,
.sidetitle.__dark .h2,
.sidetitle.__dark .homepage-banner-content-title,
.sidetitle.__dark .h3,
.sidetitle.__dark .h4,
.sidetitle.__dark .related-resources-item-title,
.sidetitle.__dark .quotes-text-item-name,
.sidetitle.__dark .testimonials-text-item-name,
.sidetitle.__dark .promoted-item-info-title,
.sidetitle.__dark .h5,
.sidetitle.__dark .h6,
.sidetitle.__dark .p,
.sidetitle.__dark .promoted-item-info-subtitle,
.sidetitle.__dark .stats-header-subtitle,
.sidetitle.__dark ul li,
.sidetitle.__dark ol li,
.sidetitle.__dark table td {
  color: #FFFFFF;
}
.textblock.__dark ul li::before,
.sidetitle.__dark ul li::before {
  background: #FFAF17 !important;
}
.textblock.__dark ol li::before,
.sidetitle.__dark ol li::before {
  color: #FFAF17;
}
.textblock.__dark a:not(.button):not(.sliderbutton),
.sidetitle.__dark a:not(.button):not(.sliderbutton) {
  color: #FFAF17;
}

.sidetitle .button, .sidetitle .submit_wrap button, .submit_wrap .sidetitle button,
.sidetitle .form-submit button,
.form-submit .sidetitle button, .sidetitle .sliderbutton {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .quotes {
    display: flex;
    align-items: center;
  }
}
.quotes-images {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .quotes-images {
    margin-bottom: 0;
  }
}
.quotes-images-wrap {
  position: relative;
}
@media (min-width: 768px) {
  .quotes-images-wrap {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .quotes-images-wrap {
    height: 560px;
  }
}
.quotes-images-wrap::before {
  content: "\e94b";
  font-size: 24px;
  color: #222;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FFAF17;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 25px;
  right: 15px;
  z-index: 4;
  box-shadow: 0 17px 41px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .quotes-images-wrap::before {
    font-size: 33px;
    width: 100px;
    height: 100px;
    top: 60px;
    right: 30px;
  }
}
.quotes-images-wrap .svg-path {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 100%;
  height: 100%;
}
.quotes-images-wrap .svg-path svg {
  width: 100%;
  height: 100%;
}
.quotes-images-item {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  height: 250px;
  width: 250px;
}
@media (min-width: 576px) {
  .quotes-images-item {
    height: 375px;
    width: 375px;
  }
}
@media (min-width: 1200px) {
  .quotes-images-item {
    height: 100%;
    width: 100%;
  }
}
.quotes-images-item img {
  width: 85%;
  height: 85%;
  border-radius: 50%;
}
.quotes-text {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-left: 30px;
}
@media (min-width: 992px) {
  .quotes-text {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.quotes-text-item {
  max-width: 100%;
}
.quotes-text-item-quote {
  color: #181111;
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .quotes-text-item-quote {
    font-size: 1.25rem;
    margin-bottom: 60px;
  }
}
.quotes-text-item-name {
  color: #181111;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 3px;
}
.quotes-text-item-name::before {
  content: "";
  width: 20px;
  height: 1px;
  border-top: 1px solid #FFAF17;
  display: block;
  margin: 0 0 5px;
}
.quotes-text-item-role {
  color: #181111;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}
@media (min-width: 992px) {
  .quotes-text-item-role {
    font-size: 1.125rem;
  }
}

.mixcontent {
  margin: 0;
}
@media (min-width: 768px) {
  .mixcontent {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .mixcontent {
    margin: 0 -8px;
  }
}
.mixcontent-text {
  padding: 20px 15px;
}
@media (min-width: 992px) {
  .mixcontent-text {
    padding: 40px 65px;
  }
}
.mixcontent-image {
  position: relative;
  height: 69vw;
}
.mixcontent-image img {
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .mixcontent-text, .mixcontent-image {
    width: calc(50% - 15px);
  }
  .mixcontent-image {
    height: 34.5vw;
  }
  .mixcontent.__alt {
    flex-direction: row-reverse;
  }
}

.downloads-item {
  border: 1px solid #A1A1A1;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.04);
  padding: 18px 18px 18px 25px;
  display: flex;
  align-items: center;
  margin: 0 0 15px;
  position: relative;
}
.downloads-item::before {
  content: "";
  background-color: #FEBD88;
  position: absolute;
  left: 0;
  width: 7px;
  height: 100%;
  transition: 0.3s ease all;
}
.downloads-item:hover::before, .downloads-item:focus::before {
  width: 10px;
}
.downloads-item:hover .downloads-item-action-download, .downloads-item:focus .downloads-item-action-download {
  background: #FEBD88;
}
.downloads-item-type::before {
  content: "\e917";
  font-size: 30px;
  color: #000000;
  margin-right: 18px;
}
.downloads-item-type.__pdf::before {
  content: "\e912";
}
.downloads-item-type.__doc::before {
  content: "\e910";
}
.downloads-item-type.__zip::before {
  content: "\e911";
}
.downloads-item-type.__ppt::before {
  content: "\e916";
}
.downloads-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.375rem;
  margin: 0 30px 0 0;
}
.downloads-item-action {
  margin-left: auto;
}
.downloads-item-action-download {
  height: 38px;
  width: 38px;
  background: #E8E7E8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease all;
}
.downloads-item-action-download::before {
  content: "\e93f";
  color: #141414;
  font-size: 14px;
}
.downloads-item-action-download::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}

.staff-header {
  text-align: center;
  margin-bottom: 36px;
}
@media (min-width: 992px) {
  .staff-header {
    margin-bottom: 65px;
  }
}
.staff-header-title {
  font-weight: 600;
  letter-spacing: -0.46px;
  line-height: 1.875rem;
  margin-bottom: 4px;
}
.staff-header-desc {
  font-size: 1.125rem;
  line-height: 1.6;
}
.staff-item {
  margin: 0 0 30px;
}
.staff-item-image {
  width: 100%;
  height: 270px;
  margin: 0 0 20px;
}
.staff-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.staff-item-role {
  font-size: 1.125rem;
  margin: 0 0 5px;
  line-height: 1.6;
}
.staff-item-description {
  font-size: 1.125rem;
  line-height: 1.6;
  overflow: hidden;
  position: relative;
}
.staff-item-description.__overflow::before {
  content: "";
  width: 100%;
  height: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
}
.staff-item-description.__overflow a {
  text-decoration: underline;
}
.staff-item-description.__overflow a:hover, .staff-item-description.__overflow a:focus, .staff-item-description.__overflow a:active {
  text-decoration: none;
}
.staff-item-description.__overflow .readmorebutton {
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 14px;
  padding-left: 10px;
  padding-right: 10px;
  height: 30px;
  display: flex;
  align-items: flex-end;
  background: white;
}
.staff-item-description.__overflow.__open::before {
  width: 126px;
  right: 0;
  left: auto;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 10%);
  height: 30px;
}
.staff-item-description.__overflow.__open .readmorebutton {
  bottom: 3px;
}

.video .videoblock {
  position: relative;
  width: 100%;
  height: 56.5vw;
  display: block;
}
@media (min-width: 992px) {
  .video .videoblock {
    height: 530px;
  }
}
.video .videoblock-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  z-index: 15;
  cursor: pointer;
}
@media (min-width: 992px) {
  .video .videoblock-overlay:hover .videoblock-icon, .video .videoblock-overlay:focus .videoblock-icon {
    background: #000000;
    width: 90px;
    height: 90px;
  }
}
.video .videoblock-overlay .videoblock-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #FF7321;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .video .videoblock-overlay .videoblock-icon {
    width: 86px;
    height: 86px;
  }
}
.video .videoblock-overlay .videoblock-icon i::before {
  content: "\e919";
  color: #FFFFFF;
  font-size: 16px;
  position: relative;
}
@media (min-width: 992px) {
  .video .videoblock-overlay .videoblock-icon i::before {
    font-size: 1.375rem;
  }
}
.video .videoblock iframe {
  position: relative;
  width: 100%;
  height: 100%;
  height: 100%;
  border: 0;
}

.related-events-header {
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(161, 161, 161, 0.35);
  margin-bottom: 0;
}
.related-events-item {
  padding: 15px 0;
}
.related-events-item:not(:last-child) {
  border-bottom: 1px solid rgba(161, 161, 161, 0.35);
}
@media (min-width: 992px) {
  .related-events-item {
    display: flex;
    padding: 30px 0;
  }
}
.related-events-item-details {
  margin: 0 0 20px 0;
  padding: 10px 0 0 0;
  width: 100%;
}
@media (min-width: 992px) {
  .related-events-item-details {
    margin: 0 90px 0 0;
  }
}
.related-events-item-media {
  width: 100%;
  height: 240px;
}
@media (min-width: 992px) {
  .related-events-item-media {
    flex: 0 0 370px;
    max-width: 370px;
  }
}
.related-events-item-media img {
  border-radius: 3px;
}
.related-events-item-header {
  margin: 0 0 20px;
}
.related-events-item-header span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.125rem;
  display: inline-flex;
  align-items: center;
}
.related-events-item-header span::after {
  content: "•";
  margin: 0 5px;
  font-size: 20px;
  line-height: 0.3125rem;
  position: relative;
  top: -1px;
}
.related-events-item-header span:last-child::after {
  content: none;
}
.related-events-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 10px;
}
.related-events-item-title span {
  width: 100%;
  background-image: linear-gradient(transparent calc(100% - 50px), #FF7321 0px);
  background-repeat: no-repeat;
  background-size: 0% 10%;
  background-position: left bottom;
  transition: background-size 1s;
}
.related-events-item-title:hover span, .related-events-item-title:focus span {
  background-size: 100% 10%;
}
.related-events-item-caption {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 15px;
}
.related-events-item-themes span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.125rem;
  display: inline-flex;
  align-items: center;
}
.related-events-item-themes span::after {
  content: "•";
  margin: 0 5px;
  font-size: 20px;
  line-height: 0.3125rem;
  position: relative;
  top: -1px;
}
.related-events-item-themes span:last-child::after {
  content: none;
}

.related-resources {
  padding: 0 0 50px;
}
@media (min-width: 992px) {
  .related-resources {
    padding: 0 0 80px;
  }
}
.related-resources.__grey {
  padding-top: 30px;
  background: #F4F4F4;
}
@media (min-width: 992px) {
  .related-resources.__grey {
    padding-top: 55px;
  }
}
.related-resources.__mywig {
  padding-top: 30px;
  background: #181111;
}
@media (min-width: 992px) {
  .related-resources.__mywig {
    padding-top: 55px;
  }
}
.related-resources.__mywig .my-wig-header {
  margin: 0 0 30px;
}
.related-resources.__mywig .my-wig-header h2 {
  color: #FFFFFF;
}
.related-resources.__mywig .related-resources-item {
  color: #FFFFFF;
}
.related-resources.__mywig .related-resources-item-title span {
  background-image: linear-gradient(transparent calc(100% - 50px), #FFFFFF 0px);
}
.related-resources-title {
  line-height: 2.4375rem;
  margin: 0 0 20px;
}
@media (min-width: 992px) {
  .related-resources-title {
    margin: 0 0 80px;
  }
}
.related-resources-item {
  padding: 8px 8px 0;
  margin: 0 0 20px;
}
@media (min-width: 992px) {
  .related-resources-item {
    margin: 0;
  }
}
.related-resources-item-media {
  width: 100%;
  height: 60vw;
  margin: 0 0 12px;
}
@media (min-width: 992px) {
  .related-resources-item-media {
    height: 325px;
  }
}
.related-resources-item-media img {
  border-radius: 3px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .related-resources-item-media {
    height: 325px;
  }
}
.related-resources-item-media:hover + .related-resources-item-details .related-resources-item-title span, .related-resources-item-media:focus + .related-resources-item-details .related-resources-item-title span {
  background-size: 100% 10%;
}
.related-resources-item-title {
  margin: 0 0 20px;
}
.related-resources-item-title span {
  width: 100%;
  background-image: linear-gradient(transparent calc(100% - 50px), #FF7321 0px);
  background-repeat: no-repeat;
  background-size: 0% 10%;
  background-position: left bottom;
  transition: background-size 1s;
}
.related-resources-item-title:hover span, .related-resources-item-title:focus span {
  background-size: 100% 10%;
}
.related-resources-item-footer span {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
}
.related-resources-item-footer span::after {
  content: "•";
  margin: 0 5px;
  font-size: 20px;
  line-height: 0.3125rem;
  position: relative;
  top: -1px;
}
.related-resources-item-footer span:last-child::after {
  content: none;
}

.formblock {
  background: rgba(67, 67, 67, 0.1);
  padding: 20px 15px;
}
@media (min-width: 768px) {
  .formblock {
    padding: 40px 50px;
  }
}
.formblock-header {
  margin: 0 0 20px;
}
.formblock-header-title {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.44px;
  line-height: 1.8125rem;
  margin: 0 0 4px;
}
.formblock-header-subtitle {
  font-size: 1.125rem;
  line-height: 1.5625rem;
}
.formblock .error_feedback {
  max-width: 500px;
}
.formblock-form {
  max-width: 500px;
}
.formblock-form .field_wrap .label_wrap label {
  color: #252525;
}

.listing-filters {
  background: #141414;
  padding: 20px 0;
  position: relative;
  z-index: 24;
}
.listing-filters-form form .field_wrap,
.listing-filters-form form .dropdown {
  margin: 0 0 15px;
}
@media (min-width: 992px) {
  .listing-filters-form form .field_wrap,
  .listing-filters-form form .dropdown {
    margin: 0 24px 0 0;
  }
}
.listing-filters-form form .field_wrap .input_wrap input[type=date],
.listing-filters-form form .field_wrap .input_wrap input[type=email],
.listing-filters-form form .field_wrap .input_wrap input[type=file],
.listing-filters-form form .field_wrap .input_wrap input[type=number],
.listing-filters-form form .field_wrap .input_wrap input[type=password],
.listing-filters-form form .field_wrap .input_wrap input[type=tel],
.listing-filters-form form .field_wrap .input_wrap input[type=text],
.listing-filters-form form .field_wrap .input_wrap input[type=time],
.listing-filters-form form .field_wrap .input_wrap textarea,
.listing-filters-form form .field_wrap .input_wrap select,
.listing-filters-form form .field_wrap .input_wrap .select2-css.select2-selection--multiple,
.listing-filters-form form .field_wrap .input_wrap .select2-css.select2-selection--single,
.listing-filters-form form .dropdown .input_wrap input[type=date],
.listing-filters-form form .dropdown .input_wrap input[type=email],
.listing-filters-form form .dropdown .input_wrap input[type=file],
.listing-filters-form form .dropdown .input_wrap input[type=number],
.listing-filters-form form .dropdown .input_wrap input[type=password],
.listing-filters-form form .dropdown .input_wrap input[type=tel],
.listing-filters-form form .dropdown .input_wrap input[type=text],
.listing-filters-form form .dropdown .input_wrap input[type=time],
.listing-filters-form form .dropdown .input_wrap textarea,
.listing-filters-form form .dropdown .input_wrap select,
.listing-filters-form form .dropdown .input_wrap .select2-css.select2-selection--multiple,
.listing-filters-form form .dropdown .input_wrap .select2-css.select2-selection--single {
  border-radius: 5px;
  border: 0;
  min-height: 60px;
  min-width: 220px;
  font-size: 1.125rem;
}
.listing-filters-form form .field_wrap .input_wrap .select2-container--default .select2-selection--single .select2-selection__rendered,
.listing-filters-form form .dropdown .input_wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1;
}
.listing-filters-form form .field_wrap.__search .input_wrap input,
.listing-filters-form form .dropdown.__search .input_wrap input {
  padding-right: 35px;
}
.listing-filters-form form .field_wrap.__search .input_wrap button,
.listing-filters-form form .dropdown.__search .input_wrap button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.listing-filters-form form .field_wrap.__search .input_wrap button:hover i, .listing-filters-form form .field_wrap.__search .input_wrap button:focus i,
.listing-filters-form form .dropdown.__search .input_wrap button:hover i,
.listing-filters-form form .dropdown.__search .input_wrap button:focus i {
  color: #D14900;
}
.listing-filters-form form .field_wrap.__search .input_wrap button i,
.listing-filters-form form .dropdown.__search .input_wrap button i {
  font-size: 20px;
}
.listing-filters-form form .field_wrap.__date .label_wrap::before,
.listing-filters-form form .dropdown.__date .label_wrap::before {
  content: "\e941";
  font-size: 20px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.listing-filters-form form .field_wrap.__date .label_wrap label,
.listing-filters-form form .dropdown.__date .label_wrap label {
  padding-left: 35px;
}
.listing-filters-form form .field_wrap .label_wrap,
.listing-filters-form form .dropdown .label_wrap {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 5px;
  border: 0;
  min-height: 60px;
  min-width: 220px;
  background: #FFFFFF;
  font-size: 1.125rem;
  line-height: 1.5625rem;
  color: #181111;
  padding: 15px 20px;
}
.listing-filters-form form .field_wrap .label_wrap::after,
.listing-filters-form form .dropdown .label_wrap::after {
  content: "\e95d";
  font-size: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.listing-filters-form form .field_wrap .label_wrap label,
.listing-filters-form form .dropdown .label_wrap label {
  font-weight: 400;
}
.listing-filters-form form .field_wrap .__checkbox,
.listing-filters-form form .dropdown .__checkbox {
  position: relative;
}
.listing-filters-form form .field_wrap .__checkbox .input_wrap,
.listing-filters-form form .dropdown .__checkbox .input_wrap {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transform: translateY(30px);
  border-radius: 5px;
  background-color: #FFFFFF;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.21);
  padding: 15px;
  z-index: 5;
}
.listing-filters-form form .field_wrap .__checkbox .input_wrap label,
.listing-filters-form form .dropdown .__checkbox .input_wrap label {
  padding-left: 25px;
  color: #181111;
  text-align: left;
}
.listing-filters-form form .field_wrap .__checkbox .input_wrap label:last-child,
.listing-filters-form form .dropdown .__checkbox .input_wrap label:last-child {
  margin-bottom: 0;
}
.listing-filters-form form .field_wrap .__checkbox .input_wrap label::before,
.listing-filters-form form .dropdown .__checkbox .input_wrap label::before {
  width: 12px;
  height: 12px;
  border: 1px solid #979797;
  border-radius: 1px;
  background: #FFFFFF;
  top: 4px;
}
.listing-filters-form form .field_wrap .__checkbox .input_wrap label::after,
.listing-filters-form form .dropdown .__checkbox .input_wrap label::after {
  font-size: 7px;
  color: #FFFFFF;
  top: 7px;
  left: 3px;
}
.listing-filters-form form .field_wrap .__checkbox .input_wrap label.__checked::before,
.listing-filters-form form .dropdown .__checkbox .input_wrap label.__checked::before {
  background: #181111;
  border-color: #181111;
}
.listing-filters-form form .dropdown .field_wrap {
  margin: 0;
}
.listing-filters-tags {
  border-bottom: 1px solid rgba(151, 151, 151, 0.35);
}
.listing-filters-taglist {
  display: flex;
  padding: 20px 0;
}
.listing-filters-taglist .label,
.listing-filters-taglist button {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5625rem;
  margin-right: 15px;
}
.listing-filters-taglist button {
  border-bottom: 2px solid #181111;
  cursor: pointer;
}
.listing-filters-taglist button:hover, .listing-filters-taglist button:focus {
  color: #D14900;
  border-color: #D14900;
}
.listing-filters-taglist-active .tag {
  display: inline-block;
  border: 1px solid #AAAAAA;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 5px 5px 8px;
  margin-right: 7px;
  cursor: pointer;
  line-height: 1;
}
.listing-filters-taglist-active .tag::after {
  content: "\e92e";
  font-size: 12px;
  margin-left: 5px;
  position: relative;
  top: -1px;
}
.listing-filters.__search {
  margin: 0 0 40px;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(114, 114, 114, 0.35);
}
.listing-filters.__search .listing-filters-form p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5625rem;
  margin: 15px 20px auto 0;
}
@media (min-width: 992px) {
  .listing-filters.__search .listing-filters-form p {
    margin: 0 20px 0 0;
  }
}
.listing-filters.__search form .field_wrap {
  margin: 0 0 15px;
}
@media (min-width: 992px) {
  .listing-filters.__search form .field_wrap {
    margin: 0 15px 0 0;
  }
}
.listing-filters.__search form .field_wrap .label_wrap {
  border: 1px solid #9A9A9A;
}

.leadership-programmes-header,
.search-results-header {
  padding: 0 0 12px;
  margin: 0 0 20px;
  border-bottom: 1px solid rgba(114, 114, 114, 0.35);
}
.leadership-programmes-item,
.search-results-item {
  margin: 0 0 20px;
}
.leadership-programmes-item a:hover .leadership-programmes-item-title,
.leadership-programmes-item a:hover .search-results-item-title, .leadership-programmes-item a:focus .leadership-programmes-item-title,
.leadership-programmes-item a:focus .search-results-item-title,
.search-results-item a:hover .leadership-programmes-item-title,
.search-results-item a:hover .search-results-item-title,
.search-results-item a:focus .leadership-programmes-item-title,
.search-results-item a:focus .search-results-item-title {
  color: #D14900;
}
.leadership-programmes-item a:hover .leadership-programmes-item-title span,
.leadership-programmes-item a:hover .search-results-item-title span, .leadership-programmes-item a:focus .leadership-programmes-item-title span,
.leadership-programmes-item a:focus .search-results-item-title span,
.search-results-item a:hover .leadership-programmes-item-title span,
.search-results-item a:hover .search-results-item-title span,
.search-results-item a:focus .leadership-programmes-item-title span,
.search-results-item a:focus .search-results-item-title span {
  background-size: 100% 10%;
}
.leadership-programmes-item-title,
.search-results-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 8px;
  transition: 0.3s ease all;
}
.leadership-programmes-item-title span,
.search-results-item-title span {
  width: 100%;
  background-image: linear-gradient(transparent calc(100% - 50px), #FF7321 0px);
  background-repeat: no-repeat;
  background-size: 0% 10%;
  background-position: left bottom;
  transition: background-size 1s;
}
.leadership-programmes-item-summary,
.search-results-item-summary {
  font-size: 1.125rem;
  line-height: 1.6;
}

.events-list-item {
  padding: 15px 0;
  border-bottom: 1px solid #727272;
}
@media (min-width: 992px) {
  .events-list-item {
    display: flex;
    padding: 32px 0;
  }
}
.events-list-item:last-child {
  border: 0;
}
.events-list-item-details {
  margin: 0 0 20px;
  padding: 10px 0 0 0;
  width: 100%;
}
@media (min-width: 992px) {
  .events-list-item-details {
    margin: 0 90px 0 0;
  }
}
.events-list-item-media {
  flex: 0 0 370px;
  max-width: 370px;
  height: 240px;
}
.events-list-item-media img {
  border-radius: 3px;
}
.events-list-item-header {
  margin: 0 0 20px;
}
.events-list-item-header span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
}
.events-list-item-header span::after {
  content: "•";
  margin: 0 5px;
  font-size: 20px;
  line-height: 0.3125rem;
  position: relative;
  top: -1px;
}
.events-list-item-header span:last-child::after {
  content: none;
}
.events-list-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 20px;
}
.events-list-item-title span {
  width: 100%;
  background-image: linear-gradient(transparent calc(100% - 50px), #FF7321 0px);
  background-repeat: no-repeat;
  background-size: 0% 10%;
  background-position: left bottom;
  transition: background-size 1s;
}
.events-list-item-title:hover span, .events-list-item-title:focus span {
  background-size: 100% 10%;
}
.events-list-item-caption {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 20px;
}
.events-list-item-themes span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
}
.events-list-item-themes span::after {
  content: "•";
  margin: 0 5px;
  font-size: 20px;
  line-height: 0.3125rem;
  position: relative;
  top: -1px;
}
.events-list-item-themes span:last-child::after {
  content: none;
}
.events-list-item.__featured {
  display: block;
  padding-bottom: 0;
  border-bottom: 1px solid #727272;
}
@media (min-width: 768px) {
  .events-list-item.__featured {
    height: 100%;
  }
}
.events-list-item.__featured .events-list-item-media {
  width: 100%;
  max-width: 100%;
  height: 60vw;
  margin: 0 0 32px;
}
@media (min-width: 992px) {
  .events-list-item.__featured .events-list-item-media {
    height: 360px;
  }
}
.events-list-item.__featured .events-list-item-media img {
  border-radius: 3px;
}
.events-list-item.__featured .events-list-item-details {
  padding-top: 0;
  margin-bottom: 32px;
}
.events-list-results {
  padding-top: 15px;
}
@media (min-width: 992px) {
  .events-list-results {
    padding-top: 68px;
  }
}
@media (min-width: 992px) {
  .events-list.__mywig .events-list-item-details {
    margin-right: 45px;
  }
}
.events-list.__mywig .events-list-item.__featured {
  border: 0;
}

.event-detail,
.resource-detail,
.vacancy-detail {
  padding: 40px 0 0;
}
.event-detail-header,
.resource-detail-header,
.vacancy-detail-header {
  margin: 0 0 40px;
}
.event-detail-header-type,
.resource-detail-header-type,
.vacancy-detail-header-type {
  display: inline-block;
  margin: 0 0 10px;
  border-radius: 7px;
  background-color: #010101;
  padding: 2px 10px;
  color: #FFAF17;
  font-size: 1rem;
  font-weight: 500;
}
.event-detail-header-title,
.resource-detail-header-title,
.vacancy-detail-header-title {
  line-height: 1.2;
  margin: 0 0 27px;
}
.event-detail-header-subtitle,
.resource-detail-header-subtitle,
.vacancy-detail-header-subtitle {
  font-size: 1.125rem;
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #727272;
}
.event-detail-header-summary,
.resource-detail-header-summary,
.vacancy-detail-header-summary {
  font-size: 1.375rem;
  font-weight: 500;
}
.event-detail-header-client,
.resource-detail-header-client,
.vacancy-detail-header-client {
  display: flex;
  align-items: center;
  margin: 0 0 45px;
}
.event-detail-header-client img,
.resource-detail-header-client img,
.vacancy-detail-header-client img {
  width: 100px;
  height: auto;
  margin: 0 25px 0 0;
}
.event-detail-header-client p,
.resource-detail-header-client p,
.vacancy-detail-header-client p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5rem;
}
.event-detail-sidebar,
.resource-detail-sidebar,
.vacancy-detail-sidebar {
  padding: 40px 0;
  height: 100%;
}
.event-detail-sidebar.sticky.__active,
.resource-detail-sidebar.sticky.__active,
.vacancy-detail-sidebar.sticky.__active {
  padding: 0;
  height: auto;
  position: fixed;
  top: 70px;
  z-index: 9;
  max-width: 100%;
  background: white;
}
@media (min-width: 768px) {
  .event-detail-sidebar.sticky.__active,
  .resource-detail-sidebar.sticky.__active,
  .vacancy-detail-sidebar.sticky.__active {
    max-width: 224px;
  }
}
@media (min-width: 1200px) {
  .event-detail-sidebar.sticky.__active,
  .resource-detail-sidebar.sticky.__active,
  .vacancy-detail-sidebar.sticky.__active {
    max-width: 269px;
  }
}
.event-detail-sidebar.sticky.__active.__bottom,
.resource-detail-sidebar.sticky.__active.__bottom,
.vacancy-detail-sidebar.sticky.__active.__bottom {
  position: absolute;
  bottom: 0;
  top: auto;
}
.event-detail-sidebar-actions,
.resource-detail-sidebar-actions,
.vacancy-detail-sidebar-actions {
  margin: 0 0 40px;
}
.event-detail-sidebar-sponsor,
.resource-detail-sidebar-sponsor,
.vacancy-detail-sidebar-sponsor {
  margin: 0 0 25px;
}
.event-detail-sidebar-sponsor img,
.resource-detail-sidebar-sponsor img,
.vacancy-detail-sidebar-sponsor img {
  margin: 0 0 10px;
}
.event-detail-sidebar-sponsor p,
.resource-detail-sidebar-sponsor p,
.vacancy-detail-sidebar-sponsor p {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 20px;
}
.event-detail-sidebar-sponsor::after,
.resource-detail-sidebar-sponsor::after,
.vacancy-detail-sidebar-sponsor::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  border-bottom: 1px solid #FF7321;
}
.event-detail-sidebar-details-title,
.resource-detail-sidebar-details-title,
.vacancy-detail-sidebar-details-title {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.44px;
  line-height: 3.0625rem;
  border-bottom: 1px solid rgba(151, 151, 151, 0.45);
  margin: 0 0 35px;
}
.event-detail-sidebar-details .details-section,
.resource-detail-sidebar-details .details-section,
.vacancy-detail-sidebar-details .details-section {
  margin: 0 0 35px;
}
.event-detail-sidebar-details .details-section h2,
.event-detail-sidebar-details .details-section h3,
.resource-detail-sidebar-details .details-section h2,
.resource-detail-sidebar-details .details-section h3,
.vacancy-detail-sidebar-details .details-section h2,
.vacancy-detail-sidebar-details .details-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 7px;
}
.event-detail-sidebar-details .details-section p,
.resource-detail-sidebar-details .details-section p,
.vacancy-detail-sidebar-details .details-section p {
  font-size: 1.125rem;
  letter-spacing: 0;
  line-height: 1.6;
}
.event-detail-sidebar-share .share-button,
.resource-detail-sidebar-share .share-button,
.vacancy-detail-sidebar-share .share-button {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5rem;
  cursor: pointer;
}
.event-detail-sidebar-share .share-button i,
.resource-detail-sidebar-share .share-button i,
.vacancy-detail-sidebar-share .share-button i {
  width: 46px;
  height: 46px;
  font-size: 18px;
  background: #FFAF17;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -2px;
  margin-right: 10px;
}
.event-detail-sidebar-share .share-button:hover i, .event-detail-sidebar-share .share-button:focus i,
.resource-detail-sidebar-share .share-button:hover i,
.resource-detail-sidebar-share .share-button:focus i,
.vacancy-detail-sidebar-share .share-button:hover i,
.vacancy-detail-sidebar-share .share-button:focus i {
  background: #181111;
  color: #FFAF17;
}

.blog-list {
  padding: 40px 0;
}
.blog-list-item {
  padding: 8px 8px 0;
  margin: 0 0 45px;
}
.blog-list-item-media {
  width: 100%;
  height: 60vw;
  margin: 0 0 12px;
}
@media (min-width: 992px) {
  .blog-list-item-media {
    height: 325px;
  }
}
.blog-list-item-media img {
  border-radius: 3px;
}
.blog-list-item-media:hover + .related-resources-item-details .related-resources-item-title span, .blog-list-item-media:focus + .related-resources-item-details .related-resources-item-title span {
  background-size: 100% 10%;
}
.blog-list-item-title {
  margin: 0 0 10px;
}
.blog-list-item-title span {
  width: 100%;
  background-image: linear-gradient(transparent calc(100% - 50px), #FF7321 0px);
  background-repeat: no-repeat;
  background-size: 0% 10%;
  background-position: left bottom;
  transition: background-size 1s;
}
.blog-list-item-title:hover span, .blog-list-item-title:focus span {
  background-size: 100% 10%;
}
.blog-list-item-footer span {
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
}
.blog-list-item-footer span::after {
  content: "•";
  margin: 0 5px;
  font-size: 20px;
  line-height: 0.3125rem;
  position: relative;
  top: -1px;
}
.blog-list-item-footer span:last-child::after {
  content: none;
}
@media (min-width: 992px) {
  .blog-list .blog-list-item {
    margin-bottom: 60px;
  }
}

.sharing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(143, 143, 143, 0.35);
  padding-bottom: 20px;
  margin: 0 0 100px;
}
.sharing .share-button {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5rem;
  cursor: pointer;
}
.sharing .share-button i {
  width: 46px;
  height: 46px;
  font-size: 18px;
  background: #FFAF17;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -2px;
  margin-right: 10px;
}
.sharing .share-button:hover i, .sharing .share-button:focus i {
  background: #181111;
  color: #FFAF17;
}
.sharing .blog-footer span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.125rem;
  display: inline-flex;
  align-items: center;
}
.sharing .blog-footer span::after {
  content: "•";
  margin: 0 5px;
  font-size: 20px;
  line-height: 0.3125rem;
  position: relative;
  top: -1px;
}
.sharing .blog-footer span:last-child::after {
  content: none;
}
.sharing .blog-footer span a:hover, .sharing .blog-footer span a:focus {
  text-decoration: underline;
}

.vacancy-list {
  padding: 40px 0 0;
  margin: 0 0 80px;
}
.vacancy-list-item {
  display: flex;
  align-items: flex-start;
  margin: 0 0 30px;
}
.vacancy-list-item-logo {
  flex: 0 0 60px;
  max-width: 60px;
  margin: 0 15px 0 0;
  height: auto;
}
@media (min-width: 992px) {
  .vacancy-list-item-logo {
    flex: 0 0 80px;
    max-width: 80px;
    margin: 0 30px 0 0;
  }
}
.vacancy-list-item-details {
  padding: 0 0 40px;
  border-bottom: 1px solid rgba(151, 151, 151, 0.5);
}
.vacancy-list-item-type {
  display: inline-block;
  border-radius: 2px;
  background-color: #313131;
  padding: 2px 8px;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.5625rem;
  margin: 0 0 10px;
}
.vacancy-list-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8125rem;
  margin: 0 0 5px;
}
.vacancy-list-item-summary {
  font-size: 1.125rem;
  line-height: 1.5625rem;
  margin: 0 0 15px;
}
@media (min-width: 992px) {
  .vacancy-list-item-footer {
    display: flex;
    flex-wrap: wrap;
  }
}
.vacancy-list-item-footer p {
  margin: 0 0 5px;
}
@media (min-width: 992px) {
  .vacancy-list-item-footer p {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

.resource-detail-header-subtitle span {
  display: inline-block;
  font-weight: 500;
  margin-top: 20px;
}
.resource-detail-header-subtitle span ~ span {
  margin-left: 15px;
}

.contact-panel {
  display: none;
  background: #181111;
  padding: 80px 0;
  color: white;
}
.contact-panel .field_wrap legend.label_wrap,
.contact-panel .h1,
.usercontent .contact-panel h1,
.mce-content-body .contact-panel h1,
.contact-panel .umbraco-forms-page h1,
.umbraco-forms-page .contact-panel h1,
.contact-panel .flexbanner .flexbanner-content-title,
.flexbanner .contact-panel .flexbanner-content-title,
.contact-panel .flexbanner.__style2.__blogdetail .blog-header-title,
.flexbanner.__style2.__blogdetail .contact-panel .blog-header-title,
.contact-panel .highlights-header-title,
.contact-panel .event-detail-header-title,
.contact-panel .resource-detail-header-title,
.contact-panel .vacancy-detail-header-title,
.contact-panel .usercontent h1,
.contact-panel .mce-content-body h1,
.contact-panel .h2,
.usercontent .contact-panel h2,
.mce-content-body .contact-panel h2,
.contact-panel .umbraco-forms-page h2,
.umbraco-forms-page .contact-panel h2,
.contact-panel .homepage-banner-content-title,
.contact-panel .usercontent h2,
.contact-panel .mce-content-body h2,
.contact-panel .h3,
.usercontent .contact-panel h3,
.mce-content-body .contact-panel h3,
.contact-panel .umbraco-forms-page h3,
.umbraco-forms-page .contact-panel h3,
.contact-panel .usercontent h3,
.contact-panel .mce-content-body h3,
.contact-panel .h4,
.usercontent .contact-panel h4,
.mce-content-body .contact-panel h4,
.contact-panel .umbraco-forms-page h4,
.umbraco-forms-page .contact-panel h4,
.contact-panel .testimonials-text-item-name,
.contact-panel .promoted-item-info-title,
.contact-panel .quotes-text-item-name,
.contact-panel .related-resources-item-title,
.contact-panel .usercontent h4,
.contact-panel .mce-content-body h4,
.contact-panel .h5,
.usercontent .contact-panel h5,
.mce-content-body .contact-panel h5,
.contact-panel .umbraco-forms-page h5,
.umbraco-forms-page .contact-panel h5,
.contact-panel .usercontent h5,
.contact-panel .mce-content-body h5,
.contact-panel .h6,
.usercontent .contact-panel h6,
.mce-content-body .contact-panel h6,
.contact-panel .umbraco-forms-page h6,
.umbraco-forms-page .contact-panel h6,
.contact-panel .usercontent h6,
.contact-panel .mce-content-body h6,
.contact-panel p {
  color: white;
}
.contact-panel-header {
  text-align: center;
}
.contact-panel-header-title {
  display: inline-block;
  color: #FFFFFF;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 3.25rem;
  text-align: center;
  margin: 0 auto 25px;
  position: relative;
}
.contact-panel-header-title::after {
  content: "";
  background: #FF7321;
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -3px;
}
.contact-panel-header-summary {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.5625rem;
  text-align: center;
  margin: 0 0 25px;
}
.contact-panel-form {
  margin: 0 0 100px;
}
.contact-panel-form .error_feedback {
  background: #412424;
  color: #FFFFFF;
}
.contact-panel-form form .umbraco-forms-tooltip.help-block {
  color: white;
}
.contact-panel-form form .field_wrap .label_wrap label,
.contact-panel-form form .field_wrap .input_wrap label {
  color: #FFFFFF;
}
.contact-panel-form form .field_wrap .input_error {
  background: #412424;
  border-top: 1px solid #FF7321;
  color: #FFFFFF;
  margin-top: 10px;
}
.contact-panel-form form .submit_wrap {
  text-align: center;
}
.contact-panel-form form .submit_wrap button {
  min-width: 250px;
  margin: 0 auto;
}
.contact-panel-form form .umbraco-forms-navigation .button::before, .contact-panel-form form .umbraco-forms-navigation .submit_wrap button::before, .submit_wrap .contact-panel-form form .umbraco-forms-navigation button::before,
.contact-panel-form form .umbraco-forms-navigation .form-submit button::before,
.form-submit .contact-panel-form form .umbraco-forms-navigation button::before, .contact-panel-form form .umbraco-forms-navigation .sliderbutton::before {
  background-color: #000000;
}
.contact-panel-form form .umbraco-forms-field .radiobuttonlist > label {
  color: #FFFFFF;
}
.contact-panel-form form .umbraco-forms-field .radiobuttonlist > label::before {
  background: #FFFFFF;
}
.contact-panel-form form .umbraco-forms-field .radiobuttonlist > label::after {
  border-color: #D14900;
  background: #D14900;
}
.contact-panel-form form .umbraco-forms-field .radiobuttonlist > label.__focused::before {
  border-color: #181111;
}
.contact-panel-form form .umbraco-forms-field .radiobuttonlist > label.__checked::before {
  border-color: #D14900;
  background: #FFFFFF;
}
.contact-panel-form form .umbraco-forms-field.dataconsent label,
.contact-panel-form form .umbraco-forms-field.singlecheckbox label,
.contact-panel-form form .umbraco-forms-field.multiplechoice label {
  color: #FFFFFF;
}
.contact-panel-form form .umbraco-forms-field.dataconsent label::after,
.contact-panel-form form .umbraco-forms-field.singlecheckbox label::after,
.contact-panel-form form .umbraco-forms-field.multiplechoice label::after {
  color: #D14900;
}
.contact-panel-form form .umbraco-forms-field.dataconsent label.__checked::before,
.contact-panel-form form .umbraco-forms-field.singlecheckbox label.__checked::before,
.contact-panel-form form .umbraco-forms-field.multiplechoice label.__checked::before {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
.contact-panel-form form ul li::before {
  background-color: #FFFFFF !important;
}
.contact-panel-form form ul ol li::before {
  background: none !important;
}
.contact-panel-form form ol li::before {
  color: #FFFFFF !important;
}
.contact-panel .staff {
  color: #FFFFFF;
}
.contact-panel .staff-header {
  text-align: center;
}

.contact-information {
  margin: 45px 0 120px;
}
.contact-information-title {
  border-top: 1px solid rgba(151, 151, 151, 0.35);
  padding-top: 35px;
  margin-right: 35px;
}
.contact-information-details {
  border-top: 1px solid rgba(151, 151, 151, 0.35);
  padding: 35px 0 0 0;
  display: flex;
}
@media (min-width: 992px) {
  .contact-information-details {
    padding: 35px 0 0 40px;
  }
}
.contact-information-details-column {
  flex: 0 0 57%;
  max-width: 57%;
  padding: 0 0 0 40px;
}
.contact-information-details-column + .contact-information-details-column {
  flex: 0 0 43%;
  max-width: 43%;
  padding: 0 40px;
}
.contact-information-icon {
  width: 60px;
  height: auto;
  margin: 0 0 15px;
}
.contact-information-icon svg {
  width: 100%;
}
.contact-information h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: #353535;
}
.contact-information p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.two-column.__formpage {
  background: #F4F4F4;
  padding: 30px 0 50px;
}
@media (min-width: 992px) {
  .two-column.__formpage {
    padding: 60px 0 100px;
  }
}

.formpage-section {
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.17);
  padding: 20px 25px;
  margin: 0 0 20px;
}
@media (min-width: 992px) {
  .formpage-section {
    padding: 40px 55px;
    margin: 0;
  }
}
.formpage-section + .formpage-section {
  margin-top: 10px;
}
.formpage-section-header-title {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.45px;
  line-height: 1.8125rem;
  margin: 0 0 20px;
}
.formpage-section-header-title.__medium {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
  letter-spacing: 0;
}
.formpage-section-header-title.__large {
  font-size: 1.875rem;
  font-weight: 600;
}
.formpage-section-header p {
  margin: 0 0 10px;
}
.formpage-section .button, .formpage-section .submit_wrap button, .submit_wrap .formpage-section button,
.formpage-section .form-submit button,
.form-submit .formpage-section button, .formpage-section .sliderbutton {
  margin-top: 30px;
}
.formpage-section a.link {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5625rem;
  position: relative;
}
.formpage-section a.link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FF7321;
  transition: 0.3s all;
}
.formpage-section a.link:hover::after, .formpage-section a.link:focus::after {
  width: 0%;
}
.formpage-section-form .field_wrap {
  max-width: 500px;
}
.formpage-section-data {
  margin: 0 0 30px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(151, 151, 151, 0.35);
}
.formpage-section-data-label {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.8125rem;
  margin: 0 0 5px;
}
.formpage-section-data-value {
  font-size: 1.125rem;
  line-height: 1.5625rem;
  margin: 0 0 10px;
}
.formpage-section hr {
  border: 0;
  border-bottom: 1px solid rgba(151, 151, 151, 0.4);
  margin: 30px 0;
}
.formpage-section-accordion .accordion {
  border-bottom: 1px solid rgba(151, 151, 151, 0.4);
}
.formpage-section-accordion .accordion-head {
  justify-content: space-between;
  padding: 20px 15px 20px 0;
  cursor: pointer;
}
.formpage-section-accordion .accordion-head::before {
  content: none;
}
.formpage-section-accordion .accordion-head::after {
  content: "\e95d";
  font-size: 18px;
}
.formpage-section-accordion .accordion-head.__active::after {
  transform: rotate(-180deg);
}
.formpage-section-accordion .accordion-content {
  padding: 20px 15px 20px 0;
}
.formpage-section-accordion .accordion-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8125rem;
  margin: 0 0 15px;
}
.formpage-section .booking-details {
  margin-bottom: 15px;
}
.formpage-section .booking-details h3 {
  font-size: 1.125rem;
  line-height: 1.5625rem;
  font-weight: 600;
}
.formpage-section .booking-details p {
  font-size: 1.125rem;
  line-height: 1.5625rem;
}
.formpage-sidebar-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
  margin: 0 0 10px;
}
.formpage-sidebar-title.__large {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.8125rem;
}
.formpage-sidebar p {
  font-size: 1.125rem;
  line-height: 1.5625rem;
  margin: 0 0 10px;
}
.formpage-sidebar .text-link {
  font-size: 1.125rem;
  line-height: 1.5625rem;
  font-weight: 500;
  margin: 0 0 10px;
  display: inline-block;
  position: relative;
}
.formpage-sidebar .text-link::before {
  content: "\e95f";
  width: 22px;
  height: 22px;
  line-height: normal;
  margin: 0 5px 0 0;
  font-size: 10px;
  color: #181111;
  background: #FFAF17;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.formpage-sidebar .text-link::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -1px;
  height: 1px;
  width: 0;
  background: #0A0A0A;
  transition: all 0.2s;
}
.formpage-sidebar .text-link:hover::after, .formpage-sidebar .text-link:focus::after {
  width: calc(100% - 28px);
}

.contentpage {
  padding: 45px 0 120px;
}

.alert-bar {
  background: #FFAF17;
  padding: 15px 0;
}
.alert-bar-text p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5625rem;
}

.mywig-wrapper.__grey {
  background: #f4f4f4;
}

.mywig-navbar {
  padding: 0;
}
@media (min-width: 992px) {
  .mywig-navbar {
    padding: 30px 0 0;
  }
}
.mywig-navbar-nav {
  border-bottom: 1px solid rgba(151, 151, 151, 0.4);
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .mywig-navbar-nav {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .mywig-navbar-nav ul {
    display: flex;
    align-items: flex-end;
  }
}
.mywig-navbar-nav-link {
  margin: 0 50px 0 0;
}
.mywig-navbar-nav-link.__current a::after {
  width: 100%;
}
.mywig-navbar-nav-link:last-child {
  margin: 0;
}
.mywig-navbar-nav-link a {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5625rem;
  padding: 15px 0;
  position: relative;
}
.mywig-navbar-nav-link a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #FFAF17;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}
.mywig-navbar-nav-link a:hover::after, .mywig-navbar-nav-link a:focus::after {
  width: 100%;
}

.my-wig-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0 0;
}
.my-wig-header h2 {
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: 1.5625rem;
}

.mywig-events,
.mywig-downloads {
  padding: 35px 0 50px;
}
.mywig-events-list,
.mywig-downloads-list {
  margin: 0 0 35px;
}
.mywig-events-list-header,
.mywig-downloads-list-header {
  background: #181111;
  border-radius: 4px;
  padding: 10px 20px;
  margin: 0 0 2px;
}
.mywig-events-list-header h2,
.mywig-downloads-list-header h2 {
  font-size: 1.125rem;
  color: #FFFFFF;
  letter-spacing: 0.45px;
  font-weight: 600;
  line-height: 1.8125rem;
}
.mywig-events-list-header .select2-css.select2-selection--single,
.mywig-downloads-list-header .select2-css.select2-selection--single {
  background: #181111;
  color: #FFFFFF;
  border: 0 none;
  border-radius: 0;
  display: inline-block;
  padding: 5px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8125rem;
}
.mywig-events-list-header .select2-container--default .select2-selection--single .select2-selection__rendered,
.mywig-downloads-list-header .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #FFFFFF;
}
.mywig-events-list-header .select2-container--default .select2-selection--single .select2-selection__arrow,
.mywig-downloads-list-header .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 0;
}
.mywig-events-list-header .select2-container--default .select2-selection--single .select2-selection__arrow b,
.mywig-downloads-list-header .select2-container--default .select2-selection--single .select2-selection__arrow b {
  position: static;
  margin: 0;
  border: 0;
}
.mywig-events-list-header .select2-container--default .select2-selection--single .select2-selection__arrow b::before,
.mywig-downloads-list-header .select2-container--default .select2-selection--single .select2-selection__arrow b::before {
  content: "\e95d";
  font-size: 8px;
  color: #FFFFFF;
  position: absolute;
  top: -2px;
  left: 50%;
}
.mywig-events-list-item,
.mywig-downloads-list-item {
  padding: 15px 30px;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.17);
  margin: 0 0 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* downloads */
}
@media (min-width: 768px) {
  .mywig-events-list-item,
  .mywig-downloads-list-item {
    flex-direction: row;
    align-items: center;
  }
}
.mywig-events-list-item-details,
.mywig-downloads-list-item-details {
  margin: 0 auto 0 0;
}
.mywig-events-list-item-details h3,
.mywig-downloads-list-item-details h3 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5625rem;
  margin: 0 0 4px;
}
.mywig-events-list-item-details h3 a,
.mywig-downloads-list-item-details h3 a {
  position: relative;
}
.mywig-events-list-item-details h3 a::after,
.mywig-downloads-list-item-details h3 a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #181111;
  transition: all 0.3s;
}
.mywig-events-list-item-details h3 a:hover::after, .mywig-events-list-item-details h3 a:focus::after,
.mywig-downloads-list-item-details h3 a:hover::after,
.mywig-downloads-list-item-details h3 a:focus::after {
  width: 100%;
}
.mywig-events-list-item-details p,
.mywig-downloads-list-item-details p {
  font-size: 1rem;
  line-height: 1.5625rem;
}
.mywig-events-list-item-details div p,
.mywig-downloads-list-item-details div p {
  margin: 0 30px 0 0;
}
.mywig-events-list-item-status,
.mywig-downloads-list-item-status {
  min-width: 200px;
  text-align: left;
}
@media (min-width: 768px) {
  .mywig-events-list-item-status,
  .mywig-downloads-list-item-status {
    margin: 0 0 0 45px;
  }
}
.mywig-events-list-item-status p,
.mywig-events-list-item-status a,
.mywig-downloads-list-item-status p,
.mywig-downloads-list-item-status a {
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5625rem;
}
.mywig-events-list-item-status p::before,
.mywig-events-list-item-status a::before,
.mywig-downloads-list-item-status p::before,
.mywig-downloads-list-item-status a::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #181111;
  margin-right: 5px;
  display: inline-block;
}
.mywig-events-list-item-status a::after,
.mywig-downloads-list-item-status a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #181111;
  transition: all 0.3s;
}
.mywig-events-list-item-status a:hover::after, .mywig-events-list-item-status a:focus::after,
.mywig-downloads-list-item-status a:hover::after,
.mywig-downloads-list-item-status a:focus::after {
  width: 100%;
}
.mywig-events-list-item-status.__red p::before,
.mywig-events-list-item-status.__red a::before,
.mywig-downloads-list-item-status.__red p::before,
.mywig-downloads-list-item-status.__red a::before {
  background-color: #FF7321;
}
.mywig-events-list-item-status.__amber p::before,
.mywig-events-list-item-status.__amber a::before,
.mywig-downloads-list-item-status.__amber p::before,
.mywig-downloads-list-item-status.__amber a::before {
  background-color: #FFAF17;
}
.mywig-events-list-item-status.__green p::before,
.mywig-events-list-item-status.__green a::before,
.mywig-downloads-list-item-status.__green p::before,
.mywig-downloads-list-item-status.__green a::before {
  background-color: #4ACA19;
}
.mywig-events-list-item-status.__past p::before,
.mywig-events-list-item-status.__past a::before,
.mywig-downloads-list-item-status.__past p::before,
.mywig-downloads-list-item-status.__past a::before {
  background-color: #757575;
}
@media (min-width: 768px) {
  .mywig-events-list-item-calendar,
  .mywig-downloads-list-item-calendar {
    margin: 0 0 0 25px;
    min-width: 190px;
  }
}
.mywig-events-list-item-calendar a,
.mywig-downloads-list-item-calendar a {
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5625rem;
}
.mywig-events-list-item-calendar a::before,
.mywig-downloads-list-item-calendar a::before {
  content: "\e939";
  font-size: 16px;
  margin: 0 10px 0 0;
  position: relative;
  top: -2px;
}
.mywig-events-list-item-calendar a::after,
.mywig-downloads-list-item-calendar a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #181111;
  transition: all 0.3s;
}
.mywig-events-list-item-calendar a:hover::after, .mywig-events-list-item-calendar a:focus::after,
.mywig-downloads-list-item-calendar a:hover::after,
.mywig-downloads-list-item-calendar a:focus::after {
  width: 100%;
}
.mywig-events-list-item-link,
.mywig-downloads-list-item-link {
  min-width: 150px;
}
@media (min-width: 768px) {
  .mywig-events-list-item-link,
  .mywig-downloads-list-item-link {
    margin: 0 0 0 75px;
  }
}
.mywig-events-list-item-link a,
.mywig-downloads-list-item-link a {
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5625rem;
}
.mywig-events-list-item-link a::before,
.mywig-downloads-list-item-link a::before {
  content: "\e95f";
  font-size: 16px;
  margin: 0 10px 0 0;
  position: relative;
  top: -2px;
}
.mywig-events-list-item-link a::after,
.mywig-downloads-list-item-link a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #181111;
  transition: all 0.3s;
}
.mywig-events-list-item-link a:hover::after, .mywig-events-list-item-link a:focus::after,
.mywig-downloads-list-item-link a:hover::after,
.mywig-downloads-list-item-link a:focus::after {
  width: 100%;
}
@media (min-width: 768px) {
  .mywig-events-list-item-view,
  .mywig-downloads-list-item-view {
    margin: 0 0 0 55px;
    min-width: 70px;
  }
}
.mywig-events-list-item-view a,
.mywig-downloads-list-item-view a {
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5625rem;
}
.mywig-events-list-item-view a::before,
.mywig-downloads-list-item-view a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: #181111;
  transition: all 0.3s;
}
.mywig-events-list-item-view a::after,
.mywig-downloads-list-item-view a::after {
  content: "\e95f";
  width: 19px;
  height: 19px;
  margin: 0 0 0 5px;
  background: #FFAF17;
  font-size: 9px;
  color: #181111;
  position: relative;
  top: -1px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.mywig-events-list-item-view a:hover::before, .mywig-events-list-item-view a:focus::before,
.mywig-downloads-list-item-view a:hover::before,
.mywig-downloads-list-item-view a:focus::before {
  width: 100%;
}
.mywig-events-list-item-icon i,
.mywig-downloads-list-item-icon i {
  font-size: 38px;
  margin: 0 30px 0 0;
}
.mywig-events-list-item-download,
.mywig-downloads-list-item-download {
  margin: 0 0 0 55px;
}
.mywig-events-list-item-download a,
.mywig-downloads-list-item-download a {
  width: 38px;
  height: 38px;
  background-color: #FFAF17;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
  transform-origin: center;
}
.mywig-events-list-item-download a::before,
.mywig-downloads-list-item-download a::before {
  content: "\e93f";
  font-size: 14px;
  color: #181111;
}
.mywig-events-list-item-download a:hover, .mywig-events-list-item-download a:focus,
.mywig-downloads-list-item-download a:hover,
.mywig-downloads-list-item-download a:focus {
  background-color: #181111;
  transform: scale(1.1);
}
.mywig-events-list-item-download a:hover::before, .mywig-events-list-item-download a:focus::before,
.mywig-downloads-list-item-download a:hover::before,
.mywig-downloads-list-item-download a:focus::before {
  color: #FFAF17;
}
.mywig-events-list-item-remove,
.mywig-downloads-list-item-remove {
  margin: 0 0 0 20px;
}
.mywig-events-list-item-remove a::before,
.mywig-downloads-list-item-remove a::before {
  content: "\e936";
  font-size: 16px;
  color: #181111;
  transition: all 0.2s;
  transform-origin: center;
}
.mywig-events-list-item-remove a:hover::before, .mywig-events-list-item-remove a:focus::before,
.mywig-downloads-list-item-remove a:hover::before,
.mywig-downloads-list-item-remove a:focus::before {
  color: #D14900;
  transform: scale(1.1);
}

.mywig-downloads-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mywig-downloads-list-header .field_wrap {
  margin: 0;
}
.mywig-downloads-list-item {
  padding: 25px 30px;
  margin: 0 0 5px;
}
.mywig-downloads-list-item-icon [class*=".icon-icon-file"]::before,
.mywig-downloads-list-item-icon .icon-icon-file-txt:before,
.mywig-downloads-list-item-icon .icon-icon-file-docx:before,
.mywig-downloads-list-item-icon .icon-icon-file-doc:before,
.mywig-downloads-list-item-icon .icon-icon-file-xlsx:before,
.mywig-downloads-list-item-icon .icon-icon-file-xls:before,
.mywig-downloads-list-item-icon .icon-icon-file-odt:before,
.mywig-downloads-list-item-icon .icon-icon-file-ods:before,
.mywig-downloads-list-item-icon .icon-icon-file-txt:before {
  content: "\e910";
}
.mywig-downloads-list-item-icon .icon-icon-file-ppt:before,
.mywig-downloads-list-item-icon .icon-icon-file-pptx:before {
  content: "\e916";
}
.mywig-downloads-list-item-icon .icon-icon-file-blank:before,
.mywig-downloads-list-item-icon .icon-icon-file-jpg:before,
.mywig-downloads-list-item-icon .icon-icon-file-jpeg:before,
.mywig-downloads-list-item-icon .icon-icon-file-png:before,
.mywig-downloads-list-item-icon .icon-icon-file-psd:before,
.mywig-downloads-list-item-icon .icon-icon-file-gif:before,
.mywig-downloads-list-item-icon .icon-icon-file-bmp:before,
.mywig-downloads-list-item-icon .icon-icon-file-webp:before {
  content: "\e917";
}

.cc-window,
.cc-revoke {
  font-family: "Poppins", sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  *::before, *::after, *:active, *:hover, *:focus {
    transition: none !important;
  }
}

/*# sourceMappingURL=main.css.map*/