.header_logo {
  display: none;
}

.header_container {
  display: flex;
  justify-content: space-center;
  align-items: center;
  width: auto;
  height: 96px;
  padding: 0px 40px 0px 200px;
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.header_text {
  font-size: 28px;
  font-weight: 400;
}

/********** MEDIA QUERY **********/

@media (max-width: 1000px) {
  .header_container {
    padding: 20px 16px;
    height: 60px;
  }

  .header_text {
    display: none;
  }

  .header_logo {
    display: block;
  }
}
