:root {
  --color-text-light: #34495e;
  --color-white: #ecf0f1;
}

body {
  background-image: var(--background-img);
  background-repeat: repeat;
  font-size: clamp(14px, 1vw, 1vw);
}

a {
  color: #e68747;
}

a:hover {
  transform: scale(1.08);
  color: #372111;
  text-decoration: none;
}

td, tr {
    align-content: center;
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.dib-nav {
  text-decoration: none;
  color: #FF944D;
}

.dib-nav:hover {
    font-weight: bold;
    color: #FFB380;
}

.wrap-word {
  width: 200px;
  -ms-word-break: break-all;
  word-break: break-all;
}

.wrap-word2 {
  -ms-word-break: break-all;
  word-break: break-all;
}

.dib-button {
    background-color: #FF944D;
    border-color: #FF944D;
    color: #372111;
    margin-bottom: 3px;
}

.dib-button:hover {
    font-weight: bold;
    background-color: #FFB380;
    border-color: #FFB380;
}

.dib-button:visited {
    color: #372111;
}

.nav-item-custom {
    font-size: clamp(25px, 1vw, 1vw);
}

.navbar {
    background-color: rgba(245, 245, 245, 0.0);
}

/* change navbar background on collapse */
@media (max-width: 992px) {
  ul.navbar-nav {
    background-color: rgba(0, 0, 0, 0.7);
  }
}

.dib-card {
    background-color: rgba(245, 245, 245, 0.8);
}

.fullmap {
  height: 100%;
  min-height: 100%;
  width: 100%;
  min-width: 100%
}

.img-wrapper-20 {
    max-width: 100%;
    margin: 0rem 0.5rem 0rem 0rem;
}
.img-wrapper-20 img:hover {
        transform: scale(1.08);
    }

.d-flex {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.carousel-button {
  padding: 0;
  margin: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  cursor: pointer;
  position: absolute;
  color: var(--color-white);
  font-size: 3rem;
  transform: translateY(-50%);
  top: 50%;
}

.ul-slider,
.li-slider {
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.carousel {
  width: 100%;
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.carousel-slider {
  width: 100%;
  height: 87%;
  overflow: hidden;
  position: relative;
}

.content-inner-slider {
  width: 100%;
  height: 100%;
  display: flex;
}

.carousel-img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-prev-button {
  left: 0;
}

.carousel-next-button {
  right: 0;
}

.carousel-dots {
  display: flex;
  margin: 1rem 0;
}

.carousel-dot {
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--color-text-light);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.carousel-form {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.auto_slide {
}

  @keyframes ticker-kf {
    0% {
      transform: translateX(0);
    }

    100% {
      /* 10rem for each logo x 6 logos total = -60rem */
      transform: translateX(var(--transform-rem));
    }
  }

  .img-ticker {
    display: flex;
    margin-left: -1rem;
    margin-right: -1rem;
    animation: ticker-kf 10s linear infinite;
  }

  .tickerlogo {
    width: 8rem;
    max-height: 8rem;
    flex: none;
    margin: 0 1rem 0 1rem;
    align-self: center;
    max-width: 100%;
    height: auto;
  }

  .tickerlogo:hover {
    transform: scale(1.08);
  }