header {
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
  height: 89px;
  display: flex;
  justify-content: space-between;
  padding: 0 16%;
  align-items: center;
  background-color: rgba(31, 30, 30, 0.5);
}

.logo_img {
  cursor: pointer;
  height: 56px;
}

.rqst {
  cursor: pointer;
}

.inquire_box {
  display: flex;
  align-items: center;
  column-gap: 40px;
  font-weight: 400;
  font-size: 21px;
}

.rqst_img {
  display: none;
}

.call {
  display: flex;
  align-items: center;
  column-gap: 3px;
  cursor: pointer;
}

/********** Mobile CSS **********/
@media (max-width: 1024px) {
  header {
    padding: 0 4%;
  }
  
  .inquire_box {
    display: flex;
    align-items: center;
    column-gap: 24px;
    font-size: 12px;
  }

  .rqst {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 9px;
  }

  .rqst_img {
    display: block;
  }

  .call {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    Row-gap: 5px;
  }
}