.press_section {
  margin-top: 130px;
  margin-bottom: 30px;
}
.press_title {
  display: flex;
  align-items: center;
}
.left-line {
  width: calc(50% - 135px);
  height: 1px;
  border-bottom: 1px solid var(--border);
  margin-right: 30px;
}
.right-line {
  width: calc(50% - 135px);
  height: 1px;
  border-bottom: 1px solid var(--border);
  margin-left: 30px;
}
.press_section .heading {
  font-size: 36px;
  color: var(--text);
  line-height: 25px;
  letter-spacing: 0.2px;
  font-weight: 500;
}
.press_company {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  align-items: center;
}
.press_company img {
  filter: grayscale(1);
  cursor: pointer;
  transition: all 250ms ease;
}
.press_company img:hover {
  filter: grayscale(0);
}
.press_company div {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .press_section .heading {
    font-size: 24px;
    color: var(--text);
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 48px;
  }
  .press_title {
    justify-content: center;
  }
  .left-line {
    display: none;
  }
  .right-line {
    display: none;
  }
  .press_company {
    flex-direction: column;
    /* width: 50%; */
  }
  .press_company div {
    display: flex;
  }
  .press_company img {
    filter: grayscale(0);
  }
}
