@import url(./color.css);
@import url("//fonts.googleapis.com/earlyaccess/notosanskr.css");
/*공통영역*/

* {
  margin: 0px;
  padding: 0px;
  font-family: "Noto Sans KR", sans-serif;
}

.wrap {
  width: 100%;
  position: relative;
}
html {
  scroll-behavior: smooth;
}
.inner {
  width: 1300px;
  position: relative;
  margin: auto;
}
body::-webkit-scrollbar {
  display: none;
}
a {
  text-decoration: none;
  color: var(--black);
}

.hidden {
  width: 0px;
  height: 0px;
  border: none;
  outline: none;
  opacity: 0;
  overflow: hidden;
  position: absolute;
}

/*header*/
header {
  background-color: var(--white);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100%;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
}
.header-top {
  height: 40px;
  background-color: var(--point);
}

header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  width: 1440px;
}

.header-logo-img {
  height: 80px;
}
.header-top .inner {
  display: flex;
  height: 40px;
  align-items: center;
  font-size: 14px;
  justify-content: right;
}
.header-top .inner a {
  color: var(--white);
}
.call-button {
  font-weight: bolder;
  font-size: 24px;
  color: var(--point);
}
.header-right {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-right span {
  font-size: 12px;
  top: 20%;
  font-weight: bold;
  position: absolute;
}

/*main-first-section*/

#main-first-section {
  height: 100vh;
  background-image: url(./assets/img-05.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

#main-first-section .wrap {
  width: 100%;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}
.section-subtext {
  text-align: center;
  font-size: 40px;
  margin-bottom: 12px;
  color: var(--white);
}
.section-title {
  font-size: 55px;
  text-align: center;
  color: var(--white);
}
.section-title strong {
  color: var(--point);
}
/*main-second-section*/
#main-second-section {
  padding: 90px 0px;
}
.page-title {
  font-size: 56px;
  font-weight: bold;
  color: var(--black);
}
.page-title strong {
  color: var(--point);
}
.service-item-line {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.service-item {
  height: 540px;
  color: var(--white);
  box-sizing: border-box;
  width: calc((100% - 40px) / 3);
  background-size: cover;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.service-item:nth-child(1) {
  background-image: url(./assets/item1.jpg);
}
.service-item:nth-child(2) {
  background-image: url(./assets/item2.jpg);
}
.service-item:nth-child(3) {
  background-image: url(./assets/item3.jpg);
}
.service-item:nth-child(4) {
  background-image: url(./assets/item4.jpg);
}
.service-item:nth-child(5) {
  background-image: url(./assets/item5.jpg);
}
.service-item:nth-child(6) {
  background-image: url(./assets/item6.jpg);
}

.service-item-overray {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: absolute;
  padding: 30px;
  left: 0px;
  box-sizing: border-box;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.5);
}
.service-item-icon {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.service-item-title {
  font-size: 40px;
  font-weight: bold;
  word-break: keep-all;
  margin-bottom: 12px;
}
.service-item-text {
  font-size: 18px;
  word-break: keep-all;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  transform: translateX(-100%);
}

.service-item:hover .service-item-text {
  opacity: 1;
  transform: translateX(0);
}
/*promotion-section*/
#promotion-section {
  padding: 90px 0px;
  padding-top: 0px;
}
.promotion-flex {
  display: flex;
  gap: 30px;
}

.promotion-left {
  position: relative;
}
.promotion-left-overray {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 30px;
  box-sizing: border-box;
}
.promotion-left-title {
  font-size: 32px;
  color: var(--white);
  word-break: keep-all;
  font-weight: bold;
}
.promotion-left-text {
  word-break: keep-all;
  font-size: 32px;
  margin-top: 32px;
  color: var(--white);
}
.promotion-right {
  background-color: var(--gray);
  padding: 30px;
  width: 100%;
  border-radius: 30px;
}
.promotion-right > p {
  font-size: 28px;
  font-weight: bold;
}
.promotion-list {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.promotion-item {
  width: calc((100% - 12px) / 2);
  background-color: var(--point);
  box-sizing: border-box;
  border-radius: 20px;
  padding: 20px;
  height: 280px;
  font-size: 20px;
  position: relative;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  word-break: keep-all;
}
.promotion-item strong {
  color: #e9eb45;
  display: block;
}

.promotion-item-last {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e9eb45;
  font-size: 28px;
  font-weight: bold;
  height: 100px;
}
#item-1 {
  background-image: url(./assets/item1.png);
}
#item-2 {
  background-image: url(./assets/item2.png);
}

/*review-section*/
#review-section {
  padding: 90px 0px;
  background-color: var(--gray);
}
.section-subtitle-gray {
  text-align: center;
  color: #aeaeae;
  font-size: 40px;
  font-weight: bold;
}
.section-title-gray {
  text-align: center;
  color: #000;
  font-size: 58px;
  font-weight: bold;
  margin-bottom: 48px;
}
.section-title-gray strong {
  color: var(--point);
}
.review-line {
  display: flex;
  gap: 30px;
}

.review-item {
  width: calc((100% - 60px) / 3);
  background-color: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
}
.review-item-top {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}
.reivew-item-img {
  display: block;
  margin: auto;
  height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
/*branding-section*/
#branding-section {
  padding: 90px 0px;
}
.service-brand-line {
  display: flex;
  align-items: center;
  gap: 20px;
}
.service-brand-item {
  position: relative;
  width: calc((100% - 40px) / 3);
  border-radius: 10px;
  height: 300px;
  overflow: hidden;
}
.service-brand-item-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-brand-overray {
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.4);
}
.service-brand-title {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--white);
}
.service-brand-text {
  font-size: 18px;
  word-break: keep-all;
  color: var(--white);
}

/*send-message-section*/
#send-message-section {
  padding: 90px 0px;
}
#send-message-section .page-title {
  text-align: center;
  margin-bottom: 60px;
}
.form-line {
  padding: 20px 0px;
  box-sizing: border-box;
  width: 600px;
  margin: auto;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.form-label {
  width: 120px;
  font-size: 16px;
  font-weight: bold;
}
.form-line select {
  padding: 12px;
  width: 400px;
  box-sizing: border-box;
  outline: none;
  background-color: var(--white);
}
.form-flex {
  width: 400px;
  display: flex;
  gap: 12px;
}
.form-flex > select {
  width: calc((100% - 12px) / 2);
}
.form-input {
  padding: 12px;
  width: 400px;
  box-sizing: border-box;
  background-color: var(--white);
  outline: none;
  border: 1px solid black;
}
.agree-area {
  width: 100%;
  position: relative;
  padding: 12px;
  padding-bottom: 50px;
  box-sizing: border-box;
  font-size: 12px;
  border: 1px solid #eee;
}
.agree-button-area {
  margin-top: 12px;
  position: absolute;
  padding: 12px;
  width: 100%;
  background-color: #fafafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  bottom: 0px;
  left: 0px;
}
.submit-button {
  width: 200px;
  border: 1px solid var(--point);
  font-size: 16px;
  color: var(--point);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: auto;
  margin-top: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.submit-button:hover {
  background-color: var(--point);
  color: var(--white);
}

footer {
  width: 100%;
  background-color: var(--black);
  padding: 30px 0px;
}

.footer-line {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 12px;
}
.copyright {
  font-size: 14px;
  color: #aeaeae;
}

/*service-area-section*/
#service-area-section {
  padding: 90px 0px;
}
.service-area-itemLine {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-area-item {
  width: calc((100% - 20px) / 2);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.service-area-item-bg {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.service-area-item-overray {
  width: 100%;
  position: absolute;
  top: 0px;
  height: 300px;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.4);
}
.service-area-item-name {
  font-size: 28px;
  font-weight: bold;
  color: var(--white);
}
.service-area-item-bottom {
  padding: 12px;
  font-size: 14px;
  background-color: #f5f5f5;
  box-sizing: border-box;
  width: 100%;
  line-height: 28px;
}

/*clean-area*/
.clean-area {
  display: flex;
  align-items: center;
  gap: 30px;
}
.clean-area-left {
  width: calc((100% - 30px) / 2);
}
.clean-area-left img {
  width: 100%;
  display: block;
}
.clean-area-title {
  font-size: 48px;
  color: var(--point);
  font-weight: bold;
  margin-bottom: 12px;
}
.clean-area-text {
  font-size: 20px;
  margin-bottom: 24px;
}
.clean-area-text strong {
  font-weight: normal;
  color: var(--point);
}
.clean-item-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.clean-item {
  width: calc((100% - 12px) / 2);
  box-sizing: border-box;
  border-radius: 5px;
  background-color: var(--point);
  color: var(--white);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 12px;
}
@media (max-width: 1300px) {
  .clean-area {
    display: block;
  }
  .clean-area > div {
    width: 100%;
    margin-bottom: 24px;
  }
  .clean-area-title {
    font-size: 24px;
  }
  .clean-area-text {
    font-size: 14px;
  }
  .clean-item {
    font-size: 12px;
  }

  .inner {
    width: 90vw !important;
  }
  .promotion-flex {
    display: block;
  }
  .form-line {
    width: 100%;
  }
  .promotion-list {
    display: block;
  }
  .promotion-right {
    width: 100%;
    box-sizing: border-box;
  }
  .promotion-left > img {
    width: 100%;
    display: block;
  }
  section {
    width: 100vw;
    overflow-x: hidden;
  }
  .header-top {
    position: fixed;
    bottom: 24px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    width: 100px;
  }
  .header-top .inner {
    width: 100% !important;
  }
  .header-top .inner a {
    text-align: center;
    width: 100%;
  }
  header .inner {
    height: 80px;
  }
  .header-logo-img {
    height: 64px;
  }
  .call-button {
    font-size: 18px;
  }
  .section-subtext {
    font-size: 18px;
    word-break: keep-all;
  }
  .section-title {
    font-size: 24px;
  }
  .page-title {
    font-size: 24px;
  }
  .service-item-line {
    display: block;
  }
  .service-item {
    width: 100%;
    margin-bottom: 12px;
    height: 300px;
    border-radius: 10px;
  }
  .service-item-overray {
    border-radius: 10px;
    padding: 20px;
  }
  .service-item-title {
    font-size: 24px;
  }
  .service-item-text {
    font-size: 14px;
  }
  .promotion-left-title {
    font-size: 28px;
  }
  .promotion-left-text {
    font-size: 24px;
    margin-top: 12px;
  }
  .promotion-left > img {
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
  .promotion-left {
    margin-bottom: 12px;
  }
  .promotion-right {
    border-radius: 10px;
    padding: 20px;
  }
  .promotion-right > p {
    font-size: 24px;
    word-break: keep-all;
  }
  .promotion-list {
    margin-top: 12px;
  }
  .promotion-item {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
  }
  .promotion-item-last {
    font-size: 20px;
    height: 120px;
  }
  .section-subtitle-gray {
    font-size: 18px;
  }
  .section-title-gray {
    font-size: 24px;
  }
  .review-line {
    display: block;
  }
  .review-item {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
  }
  .service-brand-line {
    display: block;
  }
  .service-brand-item {
    width: 100%;
    margin-bottom: 12px;
  }
  .service-brand-title {
    word-break: keep-all;
  }
  #send-message-section .page-title {
    margin-bottom: 32px;
  }
  .form-label {
    font-size: 13px;
    width: 80px;
  }
  .form-line select,
  .form-input {
    font-size: 13px;
    padding: 8px;
  }
  .submit-button {
    width: 100%;
    font-size: 14px;
  }
  .footer-line {
    font-size: 10px;
    margin-bottom: 4px;
  }
  footer {
    padding: 12px 0px;
  }
  .copyright {
    font-size: 10px;
  }
  .service-area-item {
    width: 100%;
  }
  .service-area-itemLine {
    gap: 12px;
  }
  .service-area-item-overray,
  .service-area-item-bg {
    height: 200px;
  }
  .service-area-item-name {
    font-size: 20px;
  }
}
