.investment-and-innovation p {
  font-size: 2rem;
}

.item .title {
  margin: 2rem 0;
  font-size: 2.5rem;
  font-weight: 600;
}

.item .text p{
  font-size: 1.5rem;
}

.items {
  display: flex; flex-direction: row; flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.items .item {
  box-shadow: 10px 20px 20px rgba(0, 0, 0, 0.555);
  background: linear-gradient(to bottom right, #0527478c 0%, white 100%);
  min-height: max-content;
  width: 100%;
  height: 25rem;
  transition: ease 0.5s;
  border: 1px solid transparent;

}

.items .item:hover {
  box-shadow: 20px 40px 60px rgba(0, 0, 0, 0.438);
  border: 1px solid black;
  background-color: #05274759;
  transform: scale(1.05);
}

@media screen and (max-width: 450px) {
  html {
    font-size: 12px;
  }
}

@media screen and (max-width: 800px) {
  .item {
    margin-top: 20rem;
  }
}