.tingle-modal * {
  box-sizing: border-box;
}

.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  cursor: url("data:image/svg+xml,%3Csvg width='19' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.514.535l-6.42 6.42L2.677.536a1.517 1.517 0 00-2.14 0 1.517 1.517 0 000 2.14l6.42 6.419-6.42 6.419a1.517 1.517 0 000 2.14 1.517 1.517 0 002.14 0l6.419-6.42 6.419 6.42a1.517 1.517 0 002.14 0 1.517 1.517 0 000-2.14l-6.42-6.42 6.42-6.418a1.517 1.517 0 000-2.14 1.516 1.516 0 00-2.14 0z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E"), auto;
}

@supports ((-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))) {
  .tingle-modal {
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
}
/* confirm and alerts
-------------------------------------------------------------- */
.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}

/* modal
-------------------------------------------------------------- */
.tingle-modal--noOverlayClose {
  cursor: default;
}

.tingle-modal--noClose .tingle-modal__close {
  display: none;
}

.tingle-modal__close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 1000;
  padding: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}

.tingle-modal__close svg * {
  fill: currentColor;
}

.tingle-modal__closeLabel {
  display: none;
}

.tingle-modal__close:hover {
  color: #fff;
}

.tingle-modal-box {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 90%;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  will-change: transform, opacity;
}

.tingle-modal-box__content {
  padding: 1rem 1rem;
}

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
  cursor: auto;
}

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: "";
}

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px;
  /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  transition: bottom 0.3s ease-in-out 0.3s;
}

/* state
-------------------------------------------------------------- */
.tingle-enabled {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}

.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}

.tingle-modal--visible .tingle-modal-box {
  -webkit-animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh;
}

/* btn
-------------------------------------------------------------- */
.tingle-btn {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

.tingle-btn--primary {
  background-color: #3498db;
}

.tingle-btn--danger {
  background-color: #e74c3c;
}

.tingle-btn--default {
  background-color: #34495e;
}

.tingle-btn--pull-left {
  float: left;
}

.tingle-btn--pull-right {
  float: right;
}

/* responsive
-------------------------------------------------------------- */
@media (max-width: 540px) {
  .tingle-modal {
    top: 0px;
    display: block;
    padding-top: 60px;
    width: 100%;
  }

  .tingle-modal-box {
    width: auto;
    border-radius: 0;
  }

  .tingle-modal-box__content {
    overflow-y: scroll;
  }

  .tingle-modal--noClose {
    top: 0;
  }

  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }

  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%;
  }

  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #2c3e50;
    box-shadow: none;
    color: #fff;
  }

  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.6rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  }

  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: 0.8rem;
    width: 1.6rem;
    vertical-align: middle;
    font-size: 0;
  }
}
/* animations
-------------------------------------------------------------- */
@-webkit-keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.container-fluid, .container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
}

.row {
  margin-left: -10px;
  margin-right: -10px;
  box-sizing: border-box;
  font-size: 0;
}
.row > * {
  font-size: 1rem;
}

[class^=col-],
[class*=" col-"] {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.col-1 {
  width: 8.3333333333%;
}

.col-offset-1 {
  margin-left: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-offset-2 {
  margin-left: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

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

.col-4 {
  width: 33.3333333333%;
}

.col-offset-4 {
  margin-left: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-offset-5 {
  margin-left: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

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

.col-7 {
  width: 58.3333333333%;
}

.col-offset-7 {
  margin-left: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-offset-8 {
  margin-left: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

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

.col-10 {
  width: 83.3333333333%;
}

.col-offset-10 {
  margin-left: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-offset-11 {
  margin-left: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

.col-offset-12 {
  margin-left: 100%;
}

@media (min-width: 600px) {
  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-1 {
    width: 8.3333333333%;
  }

  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-sm-2 {
    width: 16.6666666667%;
  }

  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-sm-3 {
    width: 25%;
  }

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

  .col-sm-4 {
    width: 33.3333333333%;
  }

  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-sm-5 {
    width: 41.6666666667%;
  }

  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-sm-6 {
    width: 50%;
  }

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

  .col-sm-7 {
    width: 58.3333333333%;
  }

  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-sm-8 {
    width: 66.6666666667%;
  }

  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-sm-9 {
    width: 75%;
  }

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

  .col-sm-10 {
    width: 83.3333333333%;
  }

  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-sm-11 {
    width: 91.6666666667%;
  }

  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 900px) {
  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-1 {
    width: 8.3333333333%;
  }

  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-md-2 {
    width: 16.6666666667%;
  }

  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-md-3 {
    width: 25%;
  }

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

  .col-md-4 {
    width: 33.3333333333%;
  }

  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-md-5 {
    width: 41.6666666667%;
  }

  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-md-6 {
    width: 50%;
  }

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

  .col-md-7 {
    width: 58.3333333333%;
  }

  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-md-8 {
    width: 66.6666666667%;
  }

  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-md-9 {
    width: 75%;
  }

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

  .col-md-10 {
    width: 83.3333333333%;
  }

  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-md-11 {
    width: 91.6666666667%;
  }

  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-1 {
    width: 8.3333333333%;
  }

  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-lg-2 {
    width: 16.6666666667%;
  }

  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-lg-3 {
    width: 25%;
  }

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

  .col-lg-4 {
    width: 33.3333333333%;
  }

  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-lg-5 {
    width: 41.6666666667%;
  }

  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

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

  .col-lg-7 {
    width: 58.3333333333%;
  }

  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-lg-8 {
    width: 66.6666666667%;
  }

  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-lg-9 {
    width: 75%;
  }

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

  .col-lg-10 {
    width: 83.3333333333%;
  }

  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-lg-11 {
    width: 91.6666666667%;
  }

  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1800px) {
  .col-xl-offset-0 {
    margin-left: 0;
  }

  .col-xl-1 {
    width: 8.3333333333%;
  }

  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-xl-2 {
    width: 16.6666666667%;
  }

  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-xl-3 {
    width: 25%;
  }

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

  .col-xl-4 {
    width: 33.3333333333%;
  }

  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-xl-5 {
    width: 41.6666666667%;
  }

  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-xl-6 {
    width: 50%;
  }

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

  .col-xl-7 {
    width: 58.3333333333%;
  }

  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-xl-8 {
    width: 66.6666666667%;
  }

  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-xl-9 {
    width: 75%;
  }

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

  .col-xl-10 {
    width: 83.3333333333%;
  }

  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-xl-11 {
    width: 91.6666666667%;
  }

  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-xl-12 {
    width: 100%;
  }

  .col-xl-offset-12 {
    margin-left: 100%;
  }
}
.btn {
  overflow-wrap: break-word;
  color: #006330 !important;
  border-color: #006330;
  display: inline-block;
  position: relative;
  text-align: center;
  cursor: pointer;
  border-style: solid;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  padding: 9px 20px;
  line-height: 14px;
  font-size: 14px;
  font-family: "AptiferSansLTPro", sans-serif !important;
  font-weight: 200 !important;
  box-shadow: none !important;
  outline: 0;
  border-width: 1px 1px 1px 1px;
  border-radius: 50px 50px 50px 50px;
  background: rgba(255, 255, 255, 0);
  text-transform: uppercase;
  will-change: color, background-color;
}
.btn.circle {
  padding: 9px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
}

a.btn:hover, a.btn.active, button.btn:hover, button.btn.active {
  color: #fff !important;
  background-color: #006330;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  transform-style: preserve-3d;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  outline: none;
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  outline: none;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__slider {
  position: relative;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide--draggable > .splide__slider > .splide__track, .splide--draggable > .splide__track {
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide--fade > .splide__slider > .splide__track > .splide__list, .splide--fade > .splide__track > .splide__list {
  display: block;
}

.splide--fade > .splide__slider > .splide__track > .splide__list > .splide__slide, .splide--fade > .splide__track > .splide__list > .splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

.splide--fade > .splide__slider > .splide__track > .splide__list > .splide__slide.is-active, .splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide--ttb.is-active > .splide__slider > .splide__track > .splide__list, .splide--ttb.is-active > .splide__track > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover {
  opacity: 0.9;
}

.splide__arrow:focus {
  outline: none;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus {
  outline: none;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide--nav > .splide__slider > .splide__track > .splide__list > .splide__slide, .splide--nav > .splide__track > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide--nav > .splide__slider > .splide__track > .splide__list > .splide__slide.is-active, .splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide--nav > .splide__slider > .splide__track > .splide__list > .splide__slide:focus, .splide--nav > .splide__track > .splide__list > .splide__slide:focus {
  outline: none;
}

.splide--rtl > .splide__arrows .splide__arrow--prev, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide--rtl > .splide__arrows .splide__arrow--prev svg, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide--rtl > .splide__arrows .splide__arrow--next, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide--rtl > .splide__arrows .splide__arrow--next svg, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide--ttb > .splide__arrows .splide__arrow, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow, .splide--ttb > .splide__track > .splide__arrows .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide--ttb > .splide__arrows .splide__arrow--prev, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev {
  top: 1em;
}

.splide--ttb > .splide__arrows .splide__arrow--prev svg, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide--ttb > .splide__arrows .splide__arrow--next, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide--ttb > .splide__arrows .splide__arrow--next svg, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide--ttb > .splide__pagination, .splide--ttb > .splide__slider > .splide__pagination {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@font-face {
  font-family: "NKG-Business-Segments";
  src: url("../fonts/NKG-Business-Segments.eot?1moev1");
  src: url("../fonts/NKG-Business-Segments.eot?1moev1#iefix") format("embedded-opentype"), url("../fonts/NKG-Business-Segments.ttf?1moev1") format("truetype"), url("../fonts/NKG-Business-Segments.woff?1moev1") format("woff"), url("../fonts/NKG-Business-Segments.svg?1moev1#NKG-Business-Segments") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-nkg-business-segment], [class*=" icon-nkg-business-segment"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "NKG-Business-Segments" !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-nkg-business-segmentagent:before {
  content: "\e900";
}

.icon-nkg-business-segmentexport:before {
  content: "\e901";
}

.icon-nkg-business-segmentfarming:before {
  content: "\e902";
}

.icon-nkg-business-segmentimport:before {
  content: "\e903";
}

.icon-nkg-business-segmentinitiative:before {
  content: "\e904";
}

.icon-nkg-business-segmentservice:before {
  content: "\e905";
}

#nkgCompanyList .BorlabsCookie ._brlbs-content-blocker ._brlbs-embed {
  width: 100%;
}
#nkgCompanyList .BorlabsCookie ._brlbs-content-blocker ._brlbs-embed ._brlbs-thumbnail {
  width: 100%;
  max-width: none;
}

#gmap {
  height: 600px;
  width: 100%;
}

#companyFilterBar {
  justify-content: space-evenly;
  display: flex;
  flex-flow: row wrap;
  margin: 40px 40px 60px;
}
@media (max-width: 500px) {
  #companyFilterBar .hide-on-xs {
    display: none;
  }
}
#companyFilterBar select {
  display: none;
  padding-left: 16px;
  margin-top: 20px;
  height: 39px;
}
#companyFilterBar select#regionSelect {
  display: block;
  padding-right: 30px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media (max-width: 500px) {
  #companyFilterBar select {
    display: block;
  }
}
#companyFilterBar .break {
  flex-basis: 100%;
  width: 0;
  height: 0;
  overflow: hidden;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-bottom: 20px;
}
#companyFilterBar button {
  position: relative;
  margin-top: 20px;
}
#companyFilterBar button i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
#companyFilterBar button.active#triggerSearch {
  background: #fff !important;
  color: #006330 !important;
}
#companyFilterBar button.active input {
  width: 120px;
  border-radius: 0;
  margin-left: 25px;
}
#companyFilterBar button input {
  border: none;
  margin: 0 0 0 5px;
  padding: 0;
  height: 19px;
  width: 0;
  transition: width 0.35s ease-in-out;
  will-change: width;
}

#companyTextFilter {
  margin-bottom: 10px;
}

@-webkit-keyframes company-info {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  33% {
    opacity: 0;
    transform: translate3d(0, -60%, 0);
  }
  34% {
    top: 50%;
    left: 50%;
    width: calc(100% - 20px);
    transform: translate3d(-50%, -70%, 0);
    position: absolute;
  }
  100% {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    width: calc(100% - 20px);
    transform: translate3d(-50%, -50%, 0);
  }
}

@keyframes company-info {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  33% {
    opacity: 0;
    transform: translate3d(0, -60%, 0);
  }
  34% {
    top: 50%;
    left: 50%;
    width: calc(100% - 20px);
    transform: translate3d(-50%, -70%, 0);
    position: absolute;
  }
  100% {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    width: calc(100% - 20px);
    transform: translate3d(-50%, -50%, 0);
  }
}
#companyList > div {
  cursor: pointer;
  margin-bottom: 20px;
}
#companyList > div.hide, #companyList > div.hide-filter, #companyList > div.hide-region {
  display: none;
}
#companyList > div:hover .company-info, #companyList > div:focus .company-info {
  transform: translate3d(0, 0, 0);
}
#companyList > div:hover .company-info h5, #companyList > div:focus .company-info h5 {
  -webkit-animation: company-info 0.7s forwards;
          animation: company-info 0.7s forwards;
}
#companyList > div:hover .company-info ul, #companyList > div:focus .company-info ul {
  transform: translate3d(0, 0, 0);
}
#companyList > div .company-info {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  transform: translate3d(0, calc(100% - 80px), 0);
  will-change: transform;
  transition: transform 0.25s ease-in-out;
  background-color: rgba(0, 99, 48, 0.5);
  color: #fff;
  padding: 10px;
}
#companyList > div .company-info h5 {
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 22px;
  color: #fff;
  text-align: center;
  min-height: 60px;
  transform: translate3d(0, 0, 0);
}
#companyList > div .company-info ul {
  padding: 0;
  margin: 0;
  left: 0;
}
#companyList > div .company-info li {
  color: #fff;
  position: relative;
  padding-left: 40px;
  margin-top: 5px;
}
#companyList > div .company-info li img, #companyList > div .company-info li i {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
  width: auto;
  max-width: 50px;
}
#companyList > div .company-info li i {
  font-size: 24px;
  line-height: 29px;
  left: 12px;
}
#companyList > div .img-wrap {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
#companyList > div .img-wrap > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform 0.25s ease-in-out;
}
#companyList > div .modal-content {
  display: none;
}

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

.tingle-modal {
  z-index: 100000 !important;
}

.company a, .company a:hover {
  color: #747474;
}
.company ul:not(.splide__list):not(.splide__pagination):not(.links) {
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
}
.company ul:not(.splide__list):not(.splide__pagination):not(.links).categories {
  position: relative;
  bottom: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.company ul:not(.splide__list):not(.splide__pagination):not(.links).categories li {
  color: #006330 !important;
}
.company ul:not(.splide__list):not(.splide__pagination):not(.links).categories li.btn, .company ul:not(.splide__list):not(.splide__pagination):not(.links).categories li .btn {
  color: #006330 !important;
  border-color: #006330 !important;
  padding-left: 20px !important;
}
.company ul:not(.splide__list):not(.splide__pagination):not(.links).categories li i {
  margin-right: 5px;
  color: #006330 !important;
  font-size: 24px;
  vertical-align: sub;
}
.company ul:not(.splide__list):not(.splide__pagination):not(.links) li {
  display: inline-block;
  position: relative;
}
.company ul:not(.splide__list):not(.splide__pagination):not(.links) li:first-of-type {
  width: 100%;
  padding-left: 0 !important;
  margin-bottom: 10px;
}
.company ul:not(.splide__list):not(.splide__pagination):not(.links) li:first-of-type span {
  padding-left: 40px;
}
.company ul:not(.splide__list):not(.splide__pagination):not(.links) li.btn, .company ul:not(.splide__list):not(.splide__pagination):not(.links) li span.btn {
  border-color: #fff;
  color: #fff !important;
}
.company ul:not(.splide__list):not(.splide__pagination):not(.links) li.category {
  padding-left: 40px;
}
.company ul:not(.splide__list):not(.splide__pagination):not(.links) li img {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
  width: auto;
  max-width: 50px;
}
.company strong {
  display: block;
}
.company .links {
  margin: 20px 0 0 !important;
  padding: 0;
  list-style: none;
}
.company .links li {
  display: inline-block;
  margin-left: 10px;
  margin-top: 10px;
}
@media (max-width: 500px) {
  .company .links li {
    margin-left: 5px;
  }
}
.company .links li:first-of-type {
  margin-left: 0;
}
.company .logo {
  max-height: 100px;
  display: block;
  margin: 0 auto 30px;
}
@media (min-width: 769px) {
  .company .logo {
    margin: 0 0 30px;
  }
}
.company p {
  margin-bottom: 20px;
}
@media (min-width: 700px) {
  .company p {
    max-width: 80%;
  }
}
