@charset "utf-8";

header {
  background: #eb5e00;
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 48px 0 40px;
  justify-content: space-between;
}

.logo_area {
  display: flex;
  align-items: center;
}

.logo {
  margin-right: 35px;
  display: flex;
  align-items: center;
}

.logo_text {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1.6px;
  line-height: 30px;
}

.contact_button {
  width: 205px;
  height: 32px;
  background: #fff;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 1.04px;
  color: #eb5e00;
  text-decoration: none;
  line-height: 13px;
}

.contact_btn_img {
  margin-right: 8.5px;
  display: flex;
  align-items: center;
}

.header_btn_area {
  display: flex;
  align-items: center;
}

.logout_btn {
  width: 140px;
  height: 32px;
  border: 2px solid #4d4f5c;
  border-radius: 16px;
  font-weight: bold;
  letter-spacing: 0.65px;
  line-height: 13px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-decoration: none;
}

.back_btn {
  position: absolute;
  left: 0;
  top: 105px;
  width: 130px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #fff;
  border-radius: 0 23px 23px 0;
  border: 2px solid #eb5e00;
  border-left: 0;
  padding-right: 25px;
  color: #eb5e00;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 16px;
  font-weight: bold;
}

.back_btn_img {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

@media screen and (max-width: 1024px) {
  header {
    padding: 0 5%;
  }

  .logo {
    margin-right: 15px;
  }

  .logo img {
    width: 170px;
  }

  .logo_text {
    font-size: 18px;
    letter-spacing: 1.2px;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 0 20px;
    height: 57px;
  }

  .logo {
    margin-right: 10px;
  }

  .logo img {
    width: 133px;
  }

  .logo_text {
    font-size: 10px;
    letter-spacing: 0.8px;
  }

  .contact_btn_text {
    display: none;
  }

  .contact_button {
    width: 48px;
    height: 35px;
    border-radius: 20px;
  }

  .contact_btn_img {
    margin-right: 0;
  }

  .logout_btn {
    width: 110px;
  }

  .back_btn {
    display: none;
  }
}
