/* color root */
:root {
  --main-color: #f04e06;
  --main-color-10: #f76626;
  --white: #ffffff;
  --white-10: #e1e1e1;
  --white-20: #dddddd;
  --white-30: #bbbbbb;
  --black: #000000;
  --black-10: #191f28;
  --blakc-20: #333333;
  --blakc-30: #888888;
}

body {
  position: relative;
  background-image: url(../img/ceo/body_bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

/* top-bar */
.top-bar {
  position: sticky;
  top: 0;
  width: 100%;
  height: 78px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 4px 20px rgba(255, 255, 255, 0.3);
  z-index: 1000;
}
.top-bar .contents {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar .contents .login {
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s;
  border: 1.5px solid #f76626;
  color: #f76626;
}
.top-bar .contents .login:hover {
  background-color: #f76626;
  color: #fff;
}
.top-bar .contents .login-icon {
  display: block;
  transition: all 0.3s;
  color: #f04e06;
}
.top-bar .contents .login-icon:hover {
  color: #f76626;
}

/* top-bar.max */
.top-bar.max {
  display: none;
}
.top-bar.max ul > li > a {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top-bar.max ul > li > a span {
  position: absolute;
  width: 100%;
  position: absolute;
  height: 4px;
  background-color: #f04e06;
  border-radius: 10px;
  transition: all 0.3s;
}
.top-bar.max ul > li > a span:nth-child(1) {
  top: 12%;
}
.top-bar.max ul > li > a span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.top-bar.max ul > li > a span:nth-child(3) {
  bottom: -4%;
}
.top-bar.max ul > li > a:hover span:nth-child(1) {
  top: 25%;
}
.top-bar.max ul > li > a:hover span:nth-child(2) {
  width: 0px;
}
.top-bar.max ul > li > a:hover span:nth-child(3) {
  bottom: 25%;
}

/* page p1 css */
.page.p1 {
  padding-top: 130px;
  padding-bottom: 250px;
}
.page.p1 .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.page.p1 .text-box a {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 4px 20px rgba(255, 255, 255, 0.3);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
  border-radius: 18px;
  transition: all 0.3s;
}
@keyframes fadein {
  from {
    background: rgba(0, 0, 0, 0.1);
  }
  to {
    background-color: var(--main-color-10);
  }
}
@-moz-keyframes fadein {
  /* Firefox */
  from {
    background: rgba(0, 0, 0, 0.1);
  }
  to {
    background-color: var(--main-color-10);
  }
}
@-webkit-keyframes fadein {
  /* Safari and Chrome */
  from {
    background: rgba(0, 0, 0, 0.1);
  }
  to {
    background-color: var(--main-color-10);
  }
}
@-o-keyframes fadein {
  /* Opera */
  from {
    background: rgba(0, 0, 0, 0.1);
  }
  to {
    background-color: var(--main-color-10);
  }
}
.page.p1 .text-box a {
  font-weight: 800;
  background-color: var(--main-color-10);
  -moz-animation: fadein 3s; /* Firefox */
  -webkit-animation: fadein 3s; /* Safari and Chrome */
  -o-animation: fadein 3s; /* Opera */
}

/* page p2 css */
.page.p2 {
  padding: 250px 0;
  display: flex;
  justify-content: space-around;
}
.page.p2 .img-box {
  height: 100%;
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}
.page.p2 .img-box img {
  position: relative;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}
.page.p2 .img-box .bg-video_content {
  position: absolute;
  height: 95.1%;
  border-radius: 36px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* page p2 mobile css */
.page_mobile.p2 {
  padding: 120px 20px;
  display: none;
  justify-content: space-around;
}
.page_mobile.p2 .img-box {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}
.page_mobile.p2 .img-box img {
  position: relative;
  width: 300px;
}
.page_mobile.p2 .img-box .bg-video_content {
  position: absolute;
  width: 92.4%;
  border-radius: 44px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* page p3 css */
.page.p3 {
  padding: 250px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page.p3 .img-box {
  height: 100%;
  position: relative;
  margin-top: 80px;
}
.page.p3 .img-box img {
  position: relative;
}
.page.p3 .img-box .bg-video_content {
  padding: 0 4%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* page p4 css */
.page.p4 {
  padding: 250px 0;
  display: flex;
  justify-content: center;
}
.page.p4 .text-box .img-box {
  position: relative;
  margin-top: 72px;
}
.page.p4 .text-box .img-box img {
  position: relative;
}
.page.p4 .text-box .img-box .bg-video_content {
  position: absolute;
  width: 92%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* page p4 mobile */
.page_mobile.p4 {
  padding: 120px 20px;
  display: none;
  justify-content: center;
}
.page_mobile.p4 .text-box .img-box {
  position: relative;
}
.page_mobile.p4 .text-box .img-box img {
  position: relative;
}
.page_mobile.p4 .text-box .img-box .bg-video_content {
  position: absolute;
  width: 92%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* page p5 css */
.page.p5 {
  width: 1046px;
  padding: 250px 0;
}

.page.p5 .second-h {
  display: none;
}
.page.p5 .contents {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.page.p5 .content {
  width: 100%;
  height: 635px;
  border-radius: 40px;
  padding: 54px 35px;
}
.page.p5 .content.c1 {
  display: flex;
  align-items: end;
}
.page.p5 .contents .content {
  height: 635px;
  margin-top: 72px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.page.p5 .contents .content.c1 {
  background-image: url(../img/ceo/pagep5_img_1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* background: linear-gradient(-50deg,rgba(255, 230, 218, 1) 0%, rgba(255, 255, 255, 1) 100%); */
}
.page.p5 .contents .content.c2 {
  background-image: url(../img/ceo/pagep5_img_2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* background-color: var(--main-color); */
}

/* page p6 */
.page.p6 {
  padding: 250px 0;
}
.page.p6 .text-box .b-text.b1 {
  position: relative;
  width: max-content;
  background: linear-gradient(to right, #1b2029, #1b2029) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.5s;
}
.page.p6 .text-box .b-text.b2 {
  position: relative;
  width: max-content;
  background: linear-gradient(to right, #ff5302, #ff5302) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.5s;
}
.page.p6 .contents {
  width: 100%;
  margin-top: 120px;
  display: flex;
  gap: 36px;
}
.page.p6 .contents .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 80px 38px;
  border-radius: 36px;
  transition: all 0.3s ease;
}
.page.p6 .contents .content:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}
.page.p6 .contents .content.c1 {
  background-image: url(../img/ceo/page6_content1.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page.p6 .contents .content.c2 {
  background-image: url(../img/ceo/page6_content2.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page.p6 .contents .content.c3 {
  background-image: url(../img/ceo/page6_content3.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page.p6 .contents .content .btn-box {
  display: flex;
  gap: 30px;
  margin-top: 60px;
}
.page.p6 .contents .content .btn-box a {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 12px 0px;
  border: 1.5px solid var(--white);
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.page.p6 .contents .content .btn-box a:hover {
  background-color: #ffffff65;
}

/* page p7 */
.page.p7 {
  padding: 125px 0 125px 0;
}
.page.p7 .text-box {
  margin-bottom: 56px;
  overflow: hidden;
}
.page.p7 .content {
  width: 100%;
  height: 346px;
  background-image: url(../img/ceo/page7_content.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 146px;
}
.page.p7 .content:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}
.page.p7 .content .download-box {
  text-align: end;
}
.page.p7 .content .download-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid white;
  border-radius: 10px;
  padding: 14px 0;
  transition: all 0.2s ease;
}
.page.p7 .content .download-box a:hover {
  background-color: #ffffff65;
}
/* footer */
.footer {
  width: 100%;
  height: 330px;
  background-color: #333;
  display: flex;
  align-items: center;
}
.footer .contents-box {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.footer .contents-box .text-box .list.l1 {
  margin-top: 16px;
}
.footer .contents-box .text-box .list.l2 {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.footer .contents-box .text-box .list.l3 {
  margin-top: 32px;
}
.footer .contents-box ul {
  display: flex;
  gap: 20px;
}
.footer .contents-box ul > li > a {
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #bbb;
  border-radius: 100px;
  transition: all 0.3s;
}
.footer .contents-box ul > li > a:hover {
  background-color: #ffffff80;
  color: white;
  font-weight: 700;
}

/* top_btn */
.top_btn {
  position: fixed;
  bottom: 50px;
  right: 50px;
  display: none; /* 초기에는 숨김 */
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.top_bt {
  background-color: var(--white);
  color: var(--main-color);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 30px;
  padding-bottom: 2px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s, transform 0.3s;
}
.top_bt:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/* application */
.application {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  padding: 10px 32px;
  border-radius: 100px;
  display: flex;
  opacity: 0;
  visibility: hidden;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.5s;
}
.application.show {
  display: flex;
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.application .text-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.application .text-box .inquiry {
  display: flex;
  align-items: center;
  gap: 8px;
}
.application a {
  padding: 10px 20px;
  border-radius: 50px;
  background-color: var(--main-color-10);
}
.application a:hover {
  background-color: var(--main-color);
}

/* application mobile */
.application_mobile {
  position: fixed;
  bottom: 124px;
  right: 50px;
  display: none; /* 초기에는 숨김 */
  z-index: 1000;
}
.application_mobile .application_bt {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 30px;
  padding-bottom: 2px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s, transform 0.3s;
}
.application_bt:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/* application_mobile_popup */
.application_mobile_popup {
  position: fixed;
  bottom: 180px;
  right: 20px;
  border-radius: 30px;
  display: flex; /* 초기에는 숨김 */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  z-index: 1001;
  width: 300px;
  height: 200px;
  transition: all;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 4px 20px rgba(255, 255, 255, 0.3);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.application_mobile_popup.show {
  opacity: 1;
  visibility: visible;
}
.application_mobile_popup .contents .text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-right: 10px;
  margin-bottom: 4px;
}
.application_mobile_popup .contents .tel {
  text-align: center;
}
.application_mobile_popup .contents .line {
  width: 215px;
  height: 1px;
  background-color: var(--white-10);
}
.application_mobile_popup .contents .btn {
  padding: 15px 52px;
  background-color: var(--main-color-10);
  transition: all 0.3s;
  border-radius: 10px;
}
.application_mobile_popup .contents .btn:hover {
  background-color: var(--main-color);
}

/* pos_down_popup */
.pos_down_popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 28px 32px;
  background: rgba(255, 255, 255);
  backdrop-filter: blur(6px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 4px 20px rgba(255, 255, 255, 0.3);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  z-index: 1002;
}
.pos_down_popup .text-box {
  display: flex;
  flex-direction: column;
  align-items: center;

}
.pos_down_popup button {
  cursor: pointer;
  height: 46px;
  width: 100%;
}
.pos_down_popup.active {
  display: flex;
}

/* pos_down_popup_filter */
.pos_down_popup_filter {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  z-index: 1001;
}
.pos_down_popup_filter.active {
  display: flex;
}