h1 {
  color: #0b1c39;
  font-size: 90px;
}

header {
  background-color: #f0f0f2;
}
header .headerFlex {
  display: flex;
}

.headerText {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.headerText p {
  padding: 40px 80px 40px 0;
}

.headerImage {
  width: 30%;
}
.headerImage img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1200px) {
  header {
    padding: 20px 80px;
  }
}
@media (max-width: 992px) {
  h1 {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .headerImage {
    display: none;
  }
  .headerText {
    width: 100%;
  }
  .headerText p {
    padding: 20px 0;
  }
  header {
    padding: 20px;
  }
}/*# sourceMappingURL=header.css.map */