.interview-outer {
  display: flex;
  width: 1400px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.interview-title-outer {
  width: 1400px;
  height: 368px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.interview-container {
  width: 1400px;
  height: auto;
  padding-bottom: 80px;
  gap: 37px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .interview-outer {
    display: flex;
    width: auto;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .interview-title-outer {
    width: 375px;
    height: 248px;
  }

  .interview-container {
    width: 375px;
    height: auto;
    gap: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 40px 0px;
  }

  .interview-container a:hover .Interview-btn-img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}