.history_container {
  width: 100%;
  height: 100%;
  margin: 5rem 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.history_box {
  width: 75%;
  height: auto;
  background-color: white;
  border-radius: 24px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 30rem;
}

.history {
  width: 50%;
  padding: 0rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.history h1 {
  margin: 1rem 0rem;
  font-family: Bebas;
  color: var(--Navy_main);
  font-size: 3rem;
  text-align: center;
}

.history p {
  text-align: center;
  margin: 3rem 0rem;
  font-family: Lato-Reg;
}

.history_box iframe {
  margin: 2rem;
}

@media only screen and (max-width: 1200px) {
  .history_box {
    justify-content: center;
    flex-direction: column;
  }

  .history_box iframe {
    max-width: 80%;
    height: auto;
  }

  .history {
    width: 80%;
    padding: 1rem;
  }
}
