@font-face {
  font-family: Mont;
  src: url("/donkey-talks/fonts/Font_Mont/MONT-HeavyDEMO.otf") format("opentype");
}

body#donkey-talks {
  margin-top: 7.5vh;
  width: 98vw;
}

#states-full-component {
  font-family: Mont, sans-serif;
  font-weight: bold;
}

.donkey-talks-statement {
  font-family: "Arial", sans-serif;
  margin: 0.5rem auto 0 auto;
  padding: 1rem;
  width: 80vw;
  font-weight: bold;
  line-height: 24px;
}

.donkey-talks-statement p {
  margin-bottom: 1rem;
}

#banner-wrapper {
  width: 80vw;
  margin: 0 auto;
  max-height: 25vh;
}

#banner-wrapper img {
  max-width: 100%;
  max-height: 100%;
}

.hidden {
  display: none !important;
  visibility: hidden;
  transition: visibility 0.15s linear;
}

/* tweak padding and margin here */
.states-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  padding: 1rem;
}

.state-item {
  margin: 1rem;
  /* min-width: 10rem; */
  height: 12rem;
  /* width: 12rem; */
  width: calc(25% - 2rem);
  position: relative;
  overflow: hidden;
  display: flex;
}

.state-image-wrapper {
  height: 100%;
  width: 100%;
}


.state-image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.state-item:nth-child(even) {
  background-color: #3769E7;
}

.state-item:nth-child(odd) {
  background-color: #2951A3;
}

.state-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem 0.5rem;
}

.state-text h3 {
  margin: 0;
  font-size: 17px;
}

.state-text h1 {
  margin: 0;
  font-size: 24px;
}

@media (max-width: 1080px) {
  .state-item {
    width: calc(50% - 2rem);
    max-height: 22rem;
  }
  .state-image-wrapper img {
    width: 100%;
    object-fit: cover;
  }
} 

.modal {
  position: fixed;
  z-index: 5;
}

.modal-background {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
	/* change video background color here (R,G,B, opacity) */
  background-color: rgba(8, 4, 36, 0.9);
  height: 100vh;
  width: 100vw;
  z-index: 3;
}
