:root {
  /* color */
  --main-color: #66ccce;
  --green-color: #66ccce;
  --light-grey: #f1f1f1;
  --dark-grey: #545454;
  --yellow: #ffd700;
  --point-color: #ff8886;
  --white-color: #ffffff;
  --black-color: #000000;
  --text-color: #383838;
  /* footer color */
  --footer-bg-color: rgb(206, 206, 206);
  --copyright-color: #e3e3e3;
  /* font */
  --font-kr: 'Nanum Barun Gothic', sans-serif;
  --font-eng: 'Comfortaa', cursive;
}

*{
	box-sizing: border-box;
}

/* Contact Header */
.contact_header {
  /* size */
  width: 100%;
  height: 15rem;
  /* background 
  이미지로 교체할 경우*/
  /* background: url(../img/contact-img.jpg) no-repeat center/cover; */
}

/* Background brightness */
.contact_title_wrapper {
  /* size */
  width: 100%;
  height: 100%;
  /* background */
  background-color: var(--green-color);
  /* background-color: rgba(0, 0, 0, 0.397); */
  /* flex */
  display: flex;
  align-items: center;
  justify-content: center;
 
}

/* Contact Title */
#contact_title {
  /* font */
  font-family: var(--font-eng);
  font-size: 3rem;
  color: var(--white-color);
}

/* Contact Us main content */
.contact {
  /* size */
  max-width: 800px;
  width: 90%;
  /* flex */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding */
  margin: 0 auto;
   transform: scale(90%);

}
/* Contact Subtitle*/
.contact_subtitle {
  /* size */
  width: 100%;
  /* font */
  font-family: var(--font-kr);
  font-size: 2.4rem;
  color: var(--dark-grey);
  /* padding */
  padding-bottom: 0.8rem;
}

/* Contact Form */
.contact_form {
  /* size */
  width: 100%;
  /* flex */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  /* padding */
  padding: 2rem 0;
  
}
/* Contact Sections */
.contact_form_two_items,
.contact_form_items {
  /* size */
  width: 100%;
  /* flex */
  display: flex;
}

/* 병렬 */
.contact_form_two_items {
  /* flex */
  align-items: center;
  justify-content: space-between;
}

/* 병렬 아이템 wrapper */
.contact_two_items {
  /* size */
  width: 48%;
  /* flex */
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.3rem;
}

/* Input Styling */
:is(.contact_two_items, .contact_form_items) input,
.contact_form_items > textarea {
  /* size */
  width: 100%;
  /* padding */
  padding: 1rem;
  /* border */
  border: 2px solid var(--green-color);
  border-radius: 20px;
}

/* Label Styling */
:is(.contact_two_items, .contact_form_items) label {
  /* display */
  display: inline-block;
  /* font */
  font-family: var(--font-kr);
  font-size: 1rem;
  color: var(--dark-grey);
  /* padding */
  padding-left: 15px;
  padding-bottom: 5px;
}

/* 필수 사항 */
sup {
  /* font */
  font-family: var(--font-kr);
  color: var(--point-color);
}

.contact_form_items {
  /* flex */
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* Contact Send */
.contact_send {
  /* size */
  width: 200px;
  padding: 15px 0;
  /* border */
  border-color: var(--green-color);
  /* background */
  background-color: var(--green-color);
  /* font */
  font-family: var(--font-kr);
  font-weight: bold;
  color: var(--white-color);
  font-size: 1rem;
  /* boxshadow */
  box-shadow: 0 5px 1px #29af97;
  /* cursor */
  cursor: pointer;
}

/* Content textarea */
#content {
  /* size */
  height: 300px;
}

/* 파일 업로드 */
.contact_form_file_upload {
  /* size */
  width: 100%;
  /* flex */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.file_upload_title {
  /* size */
  width: 100%;
  /* font */
  font-family: var(--font-kr);
  color: var(--dark-grey);
}

/* input type file 제거 */
.company_file_input_wrapper input[type='file'] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

/* File uploader Wrapper */
.company_file_input_wrapper {
  /* size */
  width: 100%;
  /* flex */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* File Upload Button */
#file_upload_btn {
  /* display */
  display: block;
  /* size */
  width: 18%;
  /* padding */
  padding: 1rem 0;
  /* background */
  background-color: var(--point-color);
  /* font */
  font-family: var(--font-kr);
  color: var(--white-color);
  /* border */
  border-radius: 15px;
  /* text */
  text-align: center;
  /* cursor */
  cursor: pointer;
  /* transition */
  transition: all 0.3s ease-in-out;
}

#file_upload_btn:hover {
  /* background */
  background-color: #f25c5a;
}

/* File Printer */
.file_upload_printer {
  /* 글자 넘칠 경우 생략 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
  /* size */
  width: 80%;
  /* padding */
  padding: 0.9rem;
  /* border */
  border: 2px solid var(--green-color);
  border-radius: 15px;
  /* font */
  font-family: var(--font-kr);
  color: #949494;
}

/* Privacy Policy Butotn style */
/* Privacy more */
.privacy-more {
  /* font */
  color: var(--green-color);
  /* border */
  border-bottom: 1px solid var(--green-color);
  /* cursor */
  cursor: pointer;
}

/* Contact Form Responsive */
@media screen and (max-width: 550px) {
  /* 병렬 column 으로 변경 */
  .contact_form_two_items {
    /* flex */
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
  }
  /* 병렬 아이템 wrapper */
  .contact_two_items {
    /* size */
    width: 100%;
  }

  /* File uploader Wrapper */
  .company_file_input_wrapper {
    /* flex */
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  /* File Upload Button */
  #file_upload_btn {
    /* size */
    width: 100%;
    /* border */
    border-radius: 15px 15px 0 0;
  }
  /* File Printer */
  .file_upload_printer {
    /* size */
    width: 100%;
    /* border */
    border-radius: 0 0 15px 15px;
  }
}

/*  Privacy Policy Modal창 스타일링
=================================== */
/* 백그라운드 어둡게 */
.privacy_behind_bg {
  /* display */
  display: none;
  /* position */
  position: fixed;
  top: 0;
  /* size */
  width: 100%;
  height: 100vh;
  /* background */
  background-color: #0000004a;
  /* z-index */
  z-index: 12001;
}
/* Privacy BG active */
.privacy_behind_bg-active {
  /* display */
  display: block;
}

/* 모달창 */
.PrivacyPolicyModal {
  /* position */
  position: fixed;
  top: 50%;
  left: 50%;
  /* transform */
  transform: translate(-50%, 100%);
  /* size */
  max-width: 650px;
  width: 90%;
  max-height: 650px;
  height: 90%;
  /* background */
  background-color: var(--white-color);
  /* padding */
  padding: 2rem;
  /* flex */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border */
  border-radius: 20px;
  /* z-index */
  z-index: 12002;
  /* visible */
  visibility: hidden;
  /* transition */
  transition: all 0.4s ease-in-out;
  /* box-shadow */
  -webkit-box-shadow: 0px 0px 10px 0px #545454;
  box-shadow: 0px 0px 10px 0px #545454;
}
.PrivacyPolicyModal-active {
  /* transform */
  transform: translate(-50%, -50%);
  /* visible */
  visibility: visible;
}
/* Privacy Close Btn  Wrapper */
.privacy_close_btn_wrapper {
  /* display */
  display: block;
  /* size */
  width: 100%;
  /* position */
  position: relative;
  /* padding */
  padding-bottom: 3rem;
}

.privacy_close_btn {
  /* position */
  position: absolute;
  top: 0;
  right: 0;
  /* background */
  background-color: transparent;
  /* font */
  font-size: 2rem;
  color: var(--point-color);
  /* cursor */
  cursor: pointer;
}

/* Privacy Main content */
.privacy_content {
  /* size */
  width: 100%;
  /* overflow */
  overflow-y: auto;
}

/* Priavacy Header */
.privacy_header {
  /* size */
  width: 100%;
  /* flex */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  /* padding */
  padding-bottom: 20px;
}
.privacy_header > h2,
.privacy_header > p,
.privacy_main > section > h3,
.privacy_main > section > p,
.privacy_main > section > ul > li {
  /* font */
  font-family: var(--font-kr);
}

.privacy_header > h2 {
    width: 100%;
    font-weight: bold;
    font-size: 2rem;
    color: var(--green-color);
    /* border-bottom: 1px solid var(--green-color); */
    margin-top: 20px;
}

.privacy_header > p {
  /* font */
  color: var(--dark-grey);
}

/* Priavacy Main */
.privacy_main {
  /* size */
  width: 100%;
  /* flex */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.privacy_main > section > h3 {
  /* font */
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--dark-grey);
  /* padding */
  padding-bottom: 5px;
}

.privacy_main > section > p,
.privacy_main > section > ul > li {
  /* font */
  font-size: 0.9rem;
  color: var(--dark-grey);
}

/* But */
.but {
  /* display */
  display: block;
  /* font */
  font-family: var(--font-kr);
  font-size: 0.8rem;
  color: #f25c5a;
  /* padding */
  padding-top: 3px;
}

/* Privacy Policy Responsive */
@media screen and (max-width: 500px) {
  /* Main head */
  .privacy_header > h2 {
    /* font */
    font-size: 1.5rem;
  }
  /* Main subhead */
  .privacy_main > section > h3 {
    /* font */
    font-size: 1rem;
  }
  /* Content */
  .privacy_main > section > p,
  .privacy_main > section > ul > li {
    /* font */
    font-size: 0.85rem;
  }
  /* But */
  .but {
    /* font */
    font-size: 0.7rem;
  }
  .privacy_header > p {
    /* font */
    font-size: 0.9rem;
  }
}


