.history-container {
  display: flex;
  width: 100%;
  flex-direction: row;
  padding-top: 50px;
  padding-bottom: 50px;
  margin: 0 auto;
}

.history-content {
  width: 50%;
  position: relative;
  padding-left: 15%;
}
.history-title {
  width: 525px;
  height: 75px;
  background-color: #3f78e0;
  border-radius: 50px 50px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.history-title h1 {
  color: white;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.history-content-wrapper {
  margin-top: 30px;
  width: 75%;
  margin-bottom: 30px;
}
.history-content-wrapper p {
  font-size: 105%;
  letter-spacing: 1px;
}
.history-timeline-title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.history-timeline-title h3 {
  letter-spacing: 1px;
}
.history-timeline-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 15px;
}
.history-timeline-wrapper p {
  font-size: 105%;
  width: 75%;
  margin-bottom: 0;
  letter-spacing: 0.75px;
}
.history-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.history-image img {
  width: 650px;
  height: auto;
  filter: drop-shadow(rgb(0, 0, 0) 1px 4px 7px);
}

@media screen and (min-width: 351px) and (max-width: 1000px) {
  .history-container {
    flex-direction: column;
  }
  .history-content {
    width: 100%;
    padding-left: 10%;
  }
  .history-title {
    width: 90%;
    height: 85px;
  }
  .history-title h1 {
    width: 90%;
  }
  .history-content-wrapper {
    width: 90%;
  }
  .history-image {
    margin-top: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .history-image img {
    width: 100%;
    max-width: 650px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1500px) {
  .history-content {
    flex-shrink: 0;
    padding-left: 7%;
  }
  .history-title {
    margin-left: -5%;
  }
  .history-image img {
    padding-left: 7%;
    width: 100%;
    max-width: 650px;
    padding-right: 7%;
  }
}
