@charset "UTF-8";

/* 기본 설정들 */
html {
  overflow-x: hidden;
  color: #212121;
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
}

body {
  overflow-x: hidden;
}

html * {
  word-break: keep-all;
}

html,
body {
  font-family: "Noto Sans KR", sans-serif;
}

img,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.p {
  display: block;
}

.m {
  display: none;
}

.fb {
  font-family: "Noto Sans KR";
  font-weight: 600;
  font-style: bold;
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-thumb {
  background-color: #2f3542;
  border-radius: 10px;
}

.cont {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}

.cont_main {
  width: 100%;
  max-width: 1025px;
  margin: 0 auto;
}

button {
  cursor: pointer;
}

.color {
  color: #f38200;
}

.color1 {
  color: #f38200;
}

@media screen and (max-width: 1250px) {
  .p {
    display: none;
  }

  .m {
    display: block;
  }

  .cont {
    width: 90%;
  }

  .cont_main {
    width: 90%;
  }
}

/* 기본 설정들 */

/* 헤더 시작 */

html.ham_open .header2 {
  right: 0%;
  transition: right 0.6s;
}

html.ham_open {
  overflow: hidden;
}

html.ham_open {
}

.header2.ham_mb {
  display: none;
}

header {
  transition: 0.4s;
  color: #212121;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  z-index: 999;
}

header.on {
  background-color: #302d2c;
  color: #fff;
}

header .menu_list_group {
  display: flex;
  gap: 50px;
  height: 100%;
  align-items: center;
}

header .header_btn_right {
  padding-right: 140px;
  display: flex;
  gap: 30px;
  align-items: center;
}

header .logmem {
  display: flex;
  gap: 3px;
}

header .menu_list {
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

header .logo_bx {
  cursor: pointer;
  padding-left: 30px;
}

header .login {
  cursor: pointer;
}

header .member {
  cursor: pointer;
}

.ham_btn {
  width: 35px;
  position: fixed;
  height: 15px;
  cursor: pointer;
  top: 40px;
  right: 50px;
  z-index: 999999;
}

.ham_btn > span {
  background-color: #212121;
  width: 100%;
  position: absolute;
  height: 1px;
}

header.on + .ham_btn > span {
  background-color: #fff;
}

.ham_btn > span:nth-child(1) {
  top: 0;
  transition: transform 0.4s, top 0.4s;
}

.ham_btn > span:nth-child(2) {
  top: 50%;
  opacity: 1;
  left: 0;
  transition: opacity 0.4s, left 0.4s;
}

.ham_btn > span:nth-child(3) {
  top: 100%;
  transition: transform 0.4s, top 0.4s;
}

.fa-solid.fa-chevron-down {
  font-size: 13px;
  font-weight: 600;
}

html.ham_open .ham_btn > span:nth-child(1) {
  transform: rotate(-45deg);
  top: 40%;
  transition: transform 0.4s, top 0.4s;
}

html.ham_open .ham_btn > span:nth-child(2) {
  left: -15px;
  opacity: 0;
  transition: opacity 0.4s, left 0.4s;
}

html.ham_open .ham_btn > span:nth-child(3) {
  transform: rotate(45deg);
  top: 40%;
  transition: transform 0.4s, top 0.4s;
}

.menu_main {
  cursor: pointer;
  position: relative;
}

.menu_main::after {
  content: "";
  position: absolute;
  top: calc(100% + 8px);
  width: 0;
  height: 1px;
  background-color: #fff;
  left: 0;
}

.menu_list:hover .menu_main::after {
  width: 100%;
  transition: 0.4s;
}

header .menu_sub_list_bx {
  color: #fff;
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  width: max-content;
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 80%;
  background: #302d2c;
  box-shadow: 0 3px 2px #0000004f;
}

header.on .menu_sub_list_bx {
  color: #fff;
}

.menu_sub_list {
  font-size: 17px;
  line-height: 36px;
  cursor: pointer;
}

.menu_sub_list:hover {
  color: #f38200;
  transition: 0.4s;
}

.menu_sub_list.sub_add:hover {
  color: #fff;
}

.menu_sub_list.sub_add:hover {
}

.menu_list:hover .menu_sub_list_bx {
  opacity: 1;
  height: auto;
  transition: opacity 0.4s;
  padding: 25px;
}

/* 헤더 서브에 서브 작업 */
.menu_sub_list .sub_sub_tit {
  transition: 0.4s;
  font-size: 16px;
}

.menu_sub_list .sub_sub_tit > i {
  font-size: 13px;
}

.menu_sub_list .sub_sub_list_bx {
}

.menu_sub_list .sub_sub_list {
  font-size: 15px;
  color: #c9c9c9;
}

.menu_sub_list.on .sub_sub_tit {
  color: #f38200;
}

.menu_sub_list.sub_add .sub_sub_tit:hover {
  color: #f38200;
}

.menu_sub_list.sub_add .sub_sub_list:hover {
  color: #f38200;
}

.menu_sub_list .sub_sub_list_bx {
  height: 0;
  overflow: hidden;
  transition: 0.4s;
}

.menu_sub_list.on .sub_sub_list_bx {
  transition: 0.4s;
}

.menu_sub_list {
}

.menu_sub_list {
}

.header2 {
  transition: right 0.6s;
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 1000;
  right: 100%;
}

.header2 .header2_left {
  position: relative;
  overflow: hidden;
  padding-top: 73px;
  width: 70%;
  background-color: #302d2c;
  color: #fff;
}

.header2 .header2_right {
  width: 30%;
  background: url(/img/header/header_ham.png) no-repeat center / cover;
}

.header2 .left_cont {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.header2 .left_cont_top {
  display: flex;
  justify-content: space-between;
}

.header2 .left_top2 {
  display: flex;
  gap: 20px;
  font-size: 55px;
  font-weight: 900;
  align-items: center;
}

.header2 .left_left_list_group {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 58px;
  font-size: 25px;
}

.header2 .left_left_list {
  position: relative;
  height: 25px;
  cursor: pointer;
}

.header2 .left_left_list::after {
  width: 0;
  height: 1px;
  background-color: #fff;
  content: "";
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
}

.header2 .left_left_list:hover::after {
  width: 100%;
  transition: 0.4s;
}

.header2 .left_left_list {
}

.header2 .left_cont_bottom {
  display: flex;
  gap: 60px;
}

.header2 .left_right_ligt_group {
  display: flex;
  gap: 58px;
  flex-direction: column;
}

.header2 .right_sub_list {
  transition: 0.4s;
  height: 25px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header2 .right_sub_list:hover {
  color: #f38200;
}

/* 햄버거 추가작업 */
/* .header2 .right_sub_list.sub_add:hover{color: inherit;} */
.header2 .left_right_list {
  position: relative;
}

.header2 .right_sub_list.sub_add {
  display: flex;
  gap: 5px;
}

.header2 .right_sub_list.sub_add .sub_sub_tit {
}

.header2 .right_sub_list.sub_add .left_sub_list_bx {
  position: absolute;
  display: flex;
  gap: 22px;
  top: calc(100% + 20px);
  left: 5%;
}

.header2 .right_sub_list.sub_add .left_sub_list_bx {
  z-index: -1;
}

.header2 .right_sub_list.sub_add.on .left_sub_list_bx {
  z-index: 1;
}

.header2 .right_sub_list.sub_add .left_sub_list_bx .left_sub_list {
  opacity: 0;
  z-index: -1;
  overflow: hidden;
  transition: 0.4s;
  white-space: nowrap;
  color: #c9c9c9;
  font-size: 16px;
}

.header2 .right_sub_list.sub_add .left_sub_list_bx .left_sub_list:hover {
  color: #f38200;
}

.header2 .right_sub_list.sub_add.on .left_sub_list_bx .left_sub_list {
  opacity: 1;
  z-index: 1;
}

.header2 .left_right_list {
  display: flex;
  gap: 40px;
  align-items: center;
}

.header2 .header2_line {
  width: 1px;
  height: 620px;
  background-color: #fff;
}

.header2 .left_top1 {
  cursor: pointer;
}

.header2 .left_top2 {
  cursor: pointer;
}

.header2.ham_pc .logmem {
  display: flex;
  gap: 15px;
  position: absolute;
  right: 30px;
  bottom: 50px;
}

.header2.ham_pc .logmem > div {
  cursor: pointer;
}

.header2 {
}

.logmem > div {
  transition: 0.2s;
}

.logmem > div:hover {
  color: #f38200;
}

.logmem > div.btn_slash {
  color: #212121;
}

/* 헤더 끝 */

/* side_head 시작 */
.side_head.pc {
  position: fixed;
  right: 90px;
  bottom: 10%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.side_head.mb {
  position: fixed;
  right: 90px;
  bottom: 10%;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 15px;
}

.top_btn {
  box-shadow: 0 0 2px #000000a1;
  display: flex;
  transition: background-color 0.4s;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #fff;
}

.phone_btn > img {
  width: 50%;
}

.top_btn:hover {
  background-color: #f38200;
}

.top_btn:hover img {
  filter: invert(100%) brightness(200%);
}

.phone_btn {
  box-shadow: 0 0 2px #000000a1;
  display: flex;
  transition: background-color 0.4s;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #f38200;
}

.phone_btn:hover {
  background-color: #fff;
}

@media screen and (max-width: 1730px) {
  header .menu_list_group {
    gap: 20px;
  }
}

@media screen and (max-width: 1480px) {
  header {
    gap: 10px;
  }

  header .header_btn_right {
    gap: 10px;
  }

  header .menu_list_group {
    font-size: 15px;
  }

  header .header_btn_right {
    padding-right: 105px;
  }
}

@media screen and (max-width: 1310px) {
  .phone_btn.mb {
    display: flex !important;
  }

  .side_head.mb {
    display: flex !important;
  }

  .side_head.pc {
    display: none;
  }

  .plus_btn_group {
    transition: 0.4s;
    overflow: hidden;
    opacity: 0;
    height: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .side_head.mb.on .plus_btn_group {
    opacity: 1;
    height: 200px;
    transition: 0.4s;
    overflow: visible;
  }

  .side_head.mb {
    gap: 5px;
  }

  .side_head.mb.on {
    gap: 10px;
  }

  header .menu_list_group {
    display: none;
  }

  header {
    justify-content: space-between;
  }

  header .logo_bx {
    padding-left: 30px;
  }

  .ham_pc {
    display: none;
  }

  .header2.ham_mb {
    width: 100%;
    height: 100%;
    flex-direction: column;
    display: block;
  }

  .header2.ham_mb .ham_mb_head {
    background-color: #302d2c;
    height: 150px;
  }

  .header2.ham_mb .ham_mb_logo {
    width: 90%;
    margin: 0 auto;
    padding-top: 57px;
    padding-bottom: 15px;
  }

  .header2.ham_mb .ham_mb_bottom_cont {
    position: relative;
    background-color: #302d2c;
    width: 100%;
    height: calc(100% - 150px);
  }

  .header2.ham_mb .ham_mb_list_cont_group {
    position: absolute;
    display: flex;
    right: 0;
    top: 0;
    width: 95%;
    background: url(/img/header/header_mb_bg.png) no-repeat center/cover;
  }

  .header2.ham_mb .mb_list_left_group {
    width: 50%;
    height: calc(100vh - 350px);
  }

  .header2.ham_mb .mb_list_left {
    height: calc(100% / 8);
    cursor: pointer;
    transition: 0.4s;
    background-color: #302d2c;
    color: #fff;
    font-size: 17px;
    line-height: 25px;
    display: flex;
    align-items: center;
    padding: 0px 15px;
    border-bottom: 1px solid #fff;
  }

  .header2.ham_mb .mb_list_left.last {
    border-bottom: none;
  }

  .header2.ham_mb .mb_list_left.on {
    background-color: transparent;
    transition: 0.4s;
  }

  .header2.ham_mb .ham_gnb_mobile_right {
    width: 50%;
  }

  .header2.ham_mb .mb_num {
    display: flex;
    gap: 15px;
    position: absolute;
    bottom: 20px;
    color: #fff;
    font-size: 35px;
    font-weight: 900;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .header2.ham_mb .num {
    white-space: nowrap;
  }

  .header2.ham_mb .num_img {
    width: 35px;
    height: 35px;
  }

  .sub_gnb_list_bx {
    display: none;
    padding-top: 20px;
  }

  .sub_gnb_list_bx.on {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .sub_gnb_list {
    font-size: 17px;
    line-height: 25px;
    color: #fff;
    padding-left: 15px;
  }

  /* 모바일 헤더 수정사항 */
  .sub_gnb_list.sub_add {
  }

  .sub_gnb_list.sub_add .mb_sub_tit_bx {
    display: flex;
    gap: 5px;
    align-items: center;
    position: relative;
  }

  .sub_gnb_list.sub_add .mb_sub_list_bx {
    height: 0;
    overflow: hidden;
    transition: 0.4s;
  }

  .sub_gnb_list.sub_add .mb_sub_list {
    height: 30px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #fedab0;
  }

  .sub_gnb_list.sub_add.on .mb_sub_tit_bx {
    transition: 0.4s;
  }

  .sub_gnb_list.sub_add.on .mb_sub_list_bx {
    padding-top: 10px;
    transition: 0.4s;
    white-space: nowrap;
  }

  .sub_gnb_list.sub_add.on .mb_sub_list {
  }

  .sub_gnb_list.sub_add {
  }

  .sub_gnb_list.sub_add {
  }
}

@media screen and (max-width: 500px) {
  header .logmem {
    font-size: 13px;
  }

  .ham_btn {
    right: 15px;
  }

  header .header_btn_right {
    padding-right: 70px;
  }
}

/* side_head 끝 */

/* login_popup 로그인 시작 */
.login_popup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999999;
}

html.login_open .login_popup {
  display: block;
}

html.login_open {
  overflow: hidden;
}

.popup_filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #00000067;
}

.login_popup_cont {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding-top: 35px;
  padding-bottom: 35px;
  gap: 30px;
  position: absolute;
  width: 90%;
  max-width: 540px;
  min-height: 410px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.login_input_cont {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input {
  height: 56px;
  box-sizing: border-box;
  font-size: 17px;
  padding-left: 15px;
  border: 1px solid #707070;
}

.input.login_btn {
  padding-left: 0;
  transition: 0.4s;
  border: 1px solid #006668;
  background-color: #006668;
  color: #fff;
}

.input.login_btn:hover {
  filter: brightness(0.8);
}

.login_sub_btn {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.login_sub_btn > div {
  cursor: pointer;
  transition: 0.4s;
}

.login_sub_btn > div:hover {
  color: #f38200;
}

.popup_logo {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.login_x_btn {
  position: absolute;
  bottom: calc(100% + 10px);
  right: calc(0px);
  cursor: pointer;
}

.sns_login_group {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.sns_btn {
  cursor: pointer;
  transition: 0.4s;
}

.sns_btn:hover {
  filter: brightness(0.8);
}

/* .login_filter{position: absolute;width: 100%;height: 100%;background-color: #2121214f;display: none;z-index: 0;} */

/* .login_open .login_filter{display: block;} */

/* login_popup 로그인 끝 */

/* footer 시작 */

/* footer 시작 */
footer {
  font-weight: 200;
  z-index: 900;
  min-height: 190px;
  padding-bottom: 50px;
  line-height: 25px;
  font-size: 16px;
  background: #666;
  color: #fff;
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
}

footer .cont {
  max-width: 1210px;
  margin: 0 auto;
}

.footer_btn_group {
  display: flex;
}

.footer_btn {
  cursor: pointer;
  padding-right: 25px;
}

.footer_btn2 {
  cursor: pointer;
  padding-right: 25px;
  padding-left: 25px;
  position: relative;
}

.footer_btn2::after {
  content: "";
  position: absolute;
  height: 17px;
  width: 1px;
  background-color: #fff;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.footer_btn3 {
  cursor: pointer;
  padding-right: 10px;
  padding-left: 10px;
  position: relative;
}

.footer_btn3::after {
  content: "";
  position: absolute;
  height: 17px;
  width: 1px;
  background-color: #fff;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.footer_btn_group {
  padding: 28px 0;
  font-size: 15px;
}

.footer2 {
  display: flex;
  gap: 30px;
}

.footer2_txt {
  font-weight: 200;
}

/* 
footer .footer-fbx { height: 100%; display: flex; align-items: center; justify-content: center; } 
footer .footer-fbx .footer-bx { display: flex; flex-wrap: wrap; } 
footer .footer-fbx .footer-bx > img { margin-right: 25px; cursor: pointer; } 
footer .footer-fbx .footer-bx-info-bbx { max-width: 550px; } 
footer .footer-fbx .footer-bx-info span { font-weight: bold; } 
footer .footer-fbx .footer-bx .footer-bx-btn { transition: .3s; font-size: 16px; font-weight: bold; line-height: 25px; cursor: pointer; margin: 5px; display: flex; align-items: center; justify-content: center; width: 170px; height: 40px; border: 1px solid #707070; } 
footer .footer-fbx .footer-bx .footer-bx-btn:hover { color: #C24944; border: 1px solid #C24944; } 
footer .footer-fbx .cpr { color: #707070; } 
footer .footer-fbx .footer-bx-info-s::after { content: ''; margin-right: 5px; display: inline-block; width: 1px; height: 18px; position: relative; top: 50%; transform: translateY(-50%); background: #272727; } 
*/

@media screen and (max-width: 1340px) {
  header .menu_list_group {
    font-size: 13px;
  }
}

@media screen and (max-width: 1210px) {
  footer {
    height: auto;
  }

  footer .footer-fbx .footer-bx > img {
    margin: 0;
    width: 150px;
  }

  footer .footer-fbx {
    flex-direction: column;
    padding: 30px 0;
  }

  footer .footer-fbx .footer-bx {
    flex-direction: row;
  }

  footer .footer-fbx .footer-bx .footer-bx-btn {
    width: 140px;
  }

  footer .footer-fbx .footer-bx-info-bbx {
    padding: 20px 0;
    width: 90%;
  }
}

@media screen and (max-width: 490px) {
  .footer_btn_group {
    font-size: 13px;
  }

  .footer_btn_group {
    justify-content: center;
  }

  .footer2 {
    flex-direction: column;
    padding-top: 15px;
    border-top: 1px solid #fff;
  }

  .footer2_txt {
    font-size: 13px;
    line-height: 18px;
  }

  .footer_btn2 {
    white-space: nowrap;
    padding-right: 15px;
    padding-left: 15px;
  }

  .footer_btn {
    padding-right: 15px;
  }
}

/* footer 끝 */

/* footer 끝 */

/* 메인페이지 시작 */

#fullpage {
  width: 100vw;
  height: 100vh;
}

#menu li {
  display: inline-block;
  color: #000;
  background: #fff;
}

/* #menu li.active { background: #666; background: rgba(0, 0, 0, 0.5); color: #fff; } */
#menu li a {
  text-decoration: none;
  color: #000;
  cursor: auto;
}

#menu li a,
#menu li.active a {
  padding: 9px 18px;
  display: block;
}

#menu li.active a {
  color: #fff;
}

#menu {
  position: relative;
  z-index: 70;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 3px;
  overflow: hidden;
  border: 1px solid #171717;
}

.indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #f38200;
  transition: top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  height: 18px;
}

.nav_bar_group {
  position: fixed;
  right: 100px;
  top: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
}

.nav_bar_up {
  width: 52px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.pagenation {
  white-space: nowrap;
  display: flex;
  font-family: "GmarketSans";
  color: #f38200;
}

.nav_bar_group button {
  padding: 0;
  background-color: transparent;
  border: none;
}

.nav_bar_group button img {
  transition: 0.3s;
}

.nav_bar_group button:hover img {
  filter: invert(1);
}

.sec3 .swiper-container {
  width: 100vw;
  height: 100vh;
}

.sec3 .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.main_sec1 .sec1_swi {
  height: 100%;
}

.main_sec1 .sec1_swi .swiper-slide {
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_sec1 .progress-container {
  display: flex;
  gap: 30px;
  transform: scaleY(0.6);
}

.main_sec1 .autoplay-progress {
  width: calc(100% / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}

.main_sec1 .autoplay-progress svg {
  background-color: #0000001c;
  --progress: 0;
  z-index: 10;
  width: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(100 * (1 - var(--progress)));
  stroke-dasharray: 100;
}

.main_sec1 .foot_group {
  position: absolute;
  z-index: 10;
  width: 50vw;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
}

.foot_group .swiper-button-next {
  color: #f38200;
  right: -11%;
  left: auto;
  height: 25px;
  top: 15px;
}

.foot_group .swiper-button-prev {
  color: #f38200;
  right: -7%;
  left: auto;
  height: 25px;
  top: 15px;
}

.foot_group .swiper-button-next:after,
.foot_group .swiper-button-prev:after {
  font-size: 25px;
}

.main_sec1 .pause_btn {
  font-size: 20px;
  position: absolute;
  left: 95%;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.main_sec1 .sec1_swi .slide_img_bg {
  transform: scale(1.15);
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: transform 4s ease-out;
}

.main_sec1 .sec1_swi .slide1 .slide_img_bg {
  background: url(/img/main/sec1_1_bg.png) no-repeat center/cover;
}

.main_sec1 .sec1_swi .slide2 .slide_img_bg {
  background: url(/img/main/sec1_2_bg.png) no-repeat center/cover;
}

.main_sec1 .sec1_swi .slide3 .slide_img_bg {
  background: url(/img/main/sec1_3_bg.png) no-repeat center/cover;
}

.main_sec1 .swiper-slide .slide_img_bg.active {
  transform: scale(1);
  animation: scale-animation 4.5s forwards;
}

@keyframes scale-animation {
  0% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.main_sec1 .sec1_swi .slide_txt_group {
  position: relative;
  z-index: 1;
  font-family: "Noto Serif KR", serif;
}

.main_sec1 .slide_tit {
  color: #fff;
  font-size: 53px;
  font-weight: 600;
  line-height: 69px;
  text-align: right;
}

.main_sec1 .swiper-slide .cont_main {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 100px;
}

.main_sec1 .slide_sub {
  color: #fff;
  font-weight: 600;
  text-align: right;
  font-size: 22px;
  margin-top: 50px;
}

.main_sec1 .cont_main > div {
  opacity: 0;
  position: relative;
  top: 20px;
  transition: opacity 0.8s, top 1.2s;
}

.main_sec1 .cont_main > div:nth-child(1) {
  transition-delay: 0.5s;
}

.main_sec1 .cont_main > div:nth-child(2) {
  transition-delay: 0.8s;
}

.main_sec1 .cont_main > div:nth-child(3) {
  transition-delay: 1s;
}

.main_sec1 .cont_main > div.slide_on {
  opacity: 1;
  top: 0;
}

.sec1_view_more {
  width: max-content;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "GmarketSans";
  font-size: 16px;
  font-weight: 200;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.sec1_view_more::after {
  content: "";
  transition: 0.4s;
  position: absolute;
  top: 100%;
  left: 0;
  width: 0%;
  height: 0.5px;
  background-color: #f3820088;
}

.sec1_view_more:hover::after {
  width: 90%;
}

.sec1_view_more:hover .btn_arrow {
}

.sec1_view_more:hover .btn_arrow .hover_img {
  opacity: 1;
  transition: opacity 0.3s linear 0.4s;
}

.sec1_view_more:hover .btn_arrow .no_hover {
  opacity: 0;
  transition: opacity 0.3s linear 0.4s;
}

.btn_arrow {
  width: 31px;
  height: 31px;
  position: relative;
}

.btn_arrow img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hover_img {
  opacity: 0;
}

.main_sec2 {
  position: relative;
  background-color: #000;
}

.main_sec2 .fp-tableCell {
  position: relative;
  overflow: hidden;
}

.main_sec2 .remote {
  position: absolute;
  z-index: 3;
  right: 20%;
  top: 30%;
  display: flex;
  flex-direction: column;
  gap: 150px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}

.main_sec2 .remote_list {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px;
  cursor: pointer;
  padding: 0 27px;
}

.main_sec2 .remote_list .remote_list_img {
  width: 80px;
}

.main_sec2 .remote_list .remote_txt_group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main_sec2 .eng_tit {
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
  font-family: "GmarketSans";
  color: #fff;
}

.main_sec2 .kor_tit {
  font-size: 22px;
  color: #fff;
}

.main_sec2 .remote_black_bx {
  position: absolute;
  top: -20px;
  width: 120%;
  height: 168px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0626279a;
  transition: top 0.6s;
}

.main_sec2.active {
  opacity: 1;
}

.main_sec2 {
  opacity: 0;
  transition: 1s 0.2s;
}

.main_sec2 .sec2_group {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s, transform 1s;
}

.main_sec2 .sec2_group.click_on {
  opacity: 1;
  z-index: 1;
  overflow: visible;
}

.main_sec2 .sec2_group .sec2_group_bg {
  overflow: visible;
  transform: scale(1.2);
  transition: transform 1s;
  position: absolute;
  z-index: 0;
  height: calc(100%);
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main_sec2 .sec2_group.click_on .sec2_group_bg {
  transform: scale(1);
  overflow: visible;
}

.main_sec2 .sec2_group .sec2_group_bg.bg1 {
  background-image: url(/img/main/sec2_1_bg.png);
}

.main_sec2 .sec2_group .sec2_group_bg.bg2 {
  background-image: url(/img/main/sec2_2_bg.png);
  background-position: 70% 50%;
}

.main_sec2 .sec2_group .sec2_group_bg.bg3 {
  background-image: url(/img/main/sec2_3_bg.png);
  background-position: 43% 50%;
}

@media screen and (max-width: 980px) {
  .main_sec2 .sec2_group .sec2_group_bg.bg1 {
    background-image: url(/img/main/m_sec2_1_bg.png);
  }

  .main_sec2 .sec2_group .sec2_group_bg.bg2 {
    background-image: url(/img/main/m_sec2_2_bg.png);
    background-position: 70% 50%;
  }

  .main_sec2 .sec2_group .sec2_group_bg.bg3 {
    background-image: url(/img/main/m_sec2_3_bg.png);
    background-position: 43% 50%;
  }
}

.main_sec2 .sec2_group1 {
}

.main_sec2.fp-completely .sec2_group1 .sec2_tit {
  position: relative;
  left: -20px;
  transition: 1s;
}

.main_sec2.fp-completely .sec2_group1 .sec2_tit2 {
  position: relative;
  right: -20px;
  transition: 1s;
}

.main_sec2.fp-completely .sec2_group1 .sec2_sub {
  position: relative;
  left: -20px;
  transition: 1s;
}

.main_sec2.fp-completely .sec2_group1 .sec1_view_more {
  position: relative;
  right: -20px;
  transition: 1s;
}

.main_sec2.fp-completely .sec2_group1.click_on {
}

.main_sec2.fp-completely .sec2_group1.click_on .sec2_tit {
  left: 0;
}

.main_sec2.fp-completely .sec2_group1.click_on .sec2_tit2 {
  right: 0;
}

.main_sec2.fp-completely .sec2_group1.click_on .sec2_sub {
  left: 0;
}

.main_sec2.fp-completely .sec2_group1.click_on .sec1_view_more {
  right: 0;
}

.main_sec2 .sec2_group2 .sec2_tit {
  position: relative;
  left: -20px;
  transition: 1s;
}

.main_sec2 .sec2_group2 .sec2_tit2 {
  position: relative;
  right: -20px;
  transition: 1s;
}

.main_sec2 .sec2_group2 .sec2_sub {
  position: relative;
  left: -20px;
  transition: 1s;
}

.main_sec2 .sec2_group2 .sec1_view_more {
  position: relative;
  right: -20px;
  transition: 1s;
}

.main_sec2 .sec2_group2 .sec2_txt_btn {
  gap: 150px;
}

.main_sec2 .sec2_group2.click_on {
}

.main_sec2 .sec2_group2.click_on .sec2_tit {
  left: 0;
}

.main_sec2 .sec2_group2.click_on .sec2_tit2 {
  right: 0;
}

.main_sec2 .sec2_group2.click_on .sec2_sub {
  left: 0;
}

.main_sec2 .sec2_group2.click_on .sec1_view_more {
  right: 0;
}

.main_sec2 .sec2_group3 .sec2_tit {
  position: relative;
  left: -20px;
  transition: 1s;
}

.main_sec2 .sec2_group3 .sec2_tit2 {
  position: relative;
  right: -20px;
  transition: 1s;
}

.main_sec2 .sec2_group3 .sec2_sub {
  position: relative;
  left: -20px;
  transition: 1s;
}

.main_sec2 .sec2_group3 .sec1_view_more {
  position: relative;
  right: -20px;
  transition: 1s;
}

.main_sec2 .sec2_group3.click_on {
}

.main_sec2 .sec2_group3.click_on .sec2_tit {
  left: 0;
}

.main_sec2 .sec2_group3.click_on .sec2_tit2 {
  right: 0;
}

.main_sec2 .sec2_group3.click_on .sec2_sub {
  left: 0;
}

.main_sec2 .sec2_group3.click_on .sec1_view_more {
  right: 0;
}

.main_sec2 .sec2_txt_btn {
  position: absolute;
  bottom: 15%;
  left: 10%;
  display: flex;
  gap: 30px;
  align-items: flex-end;
}

.main_sec2 .sec2_txt_group {
}

.main_sec2 .sec2_tit {
  font-size: 55px;
  font-family: "GmarketSans";
  font-weight: 200;
  line-height: 68px;
  color: #fff;
}

.main_sec2 .sec2_tit2 {
  text-align: right;
  font-size: 31px;
  line-height: 31px;
  color: #fff;
}

.main_sec2 .sec2_sub {
  font-size: 28px;
  line-height: 45px;
  font-family: "Noto Serif KR", serif;
  letter-spacing: -2px;
  margin-top: 50px;
  color: #fff;
}

.main_sec2 {
}

.main_sec2 {
}

.main_sec2 {
}

.main_sec2 {
}

.main_sec3 {
  position: relative;
}

.bg_group {
  overflow: hidden;
  background-color: #302d2c;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}

.main_sec3 .sec3_slide1_bg {
  display: flex;
  position: relative;
}

.rolling-list ul {
  overflow: hidden;
  display: flex;
  width: max-content;
}

.rolling-list ul li {
  overflow: hidden;
  color: #ffffff10;
  box-sizing: border-box;
  border-radius: 20px;
  margin: 0 16px;
  padding: 10px 31px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 184px;
  font-weight: 600;
  font-family: "GmarketSans";
}

.rolling-list {
  height: max-content;
}

.rolling-list.original {
  animation: rollingleft1 100s linear infinite;
}

.rolling-list.clone {
  animation: rollingleft2 100s linear infinite;
}

.rolling-list.original-reverse {
  animation: rollingleft1-reverse 100s linear infinite;
}

.rolling-list.clone-reverse {
  animation: rollingleft2-reverse 100s linear infinite;
}

.sec3_slide1_bg * {
  -webkit-transform: translate3d(0, 0, 0);
}

@keyframes rollingleft1 {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-100%);
  }

  50.01% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes rollingleft2 {
  0% {
    transition: translateX(0);
  }

  100% {
    transform: translateX(-200%);
  }
}

@keyframes rollingleft1-reverse {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0%);
  }

  50.01% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes rollingleft2-reverse {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.black {
  font-weight: 800;
}

.main_sec3 .slide1_cont_group {
  -webkit-transform: translate3d(0, 0, 0);
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 100px;
}

.main_sec3 .slide1_txt {
  font-size: 43px;
  line-height: 75px;
  font-family: "Noto Serif KR", serif;
  color: #fff;
}

.main_sec3 .mouse_img_group {
  font-size: 15px;
  line-height: 34px;
  color: #fff;
}

.main_sec3 .mouse_img {
  position: relative;
}

.main_sec3 .mouse_img .mouse_wheel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0%;
  animation: scrollWheel 1.7s cubic-bezier(0.17, 0.46, 0.43, 0.93) infinite;
}

.main_sec3 {
}

@keyframes scrollWheel {
  /* 0% {
        top: 0%;
    }
    50% {
        top: 50%;
    }
    100% {
        top: 0%;
    } */

  0% {
    opacity: 0;
    top: 0%;
  }

  100% {
    opacity: 1;
    top: 60%;
  }
}

.main_sec3 .sec3_slide2 {
  position: relative;
}

.main_sec3 .sec3_slide2_bg {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.main_sec3 .sec3_slide2_bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  transition: transform 1.5s;
}

.main_sec3 .sec3_slide2.swiper-slide-active .sec3_slide2_bg img {
  transform: scale(1);
}

.slide_bgc_pc2 {
  -webkit-transform: translate3d(0, 0, 0);
  position: absolute;
  background-color: #f38200;
  mix-blend-mode: multiply;
  top: 35%;
  z-index: 0;
  right: 15%;
}

.main_sec3 .sec3_slide2 .sec3_slide2_cont_group {
  -webkit-transform: translate3d(0, 0, 0);
  top: 35%;
  display: flex;
  flex-direction: column;
  gap: 37px;
  padding: 50px 80px 50px 60px;
  /*  background-color: #5e3c0378; */
  color: #fff;
  position: absolute;
  z-index: 1;
  right: 15%;
}

.main_sec3 .sec3_slide2 .sec3_slide2_tit {
  font-size: 49px;
  font-weight: 600;
  line-height: 78px;
  font-family: "Noto Serif KR", serif;
}

.main_sec3 .sec3_slide2 .sec3_slide2_tit2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 32px;
}

.main_sec3 .sec3_slide2 .sec3_slide2_sub {
  font-size: 18px;
  line-height: 32px;
}

.main_sec3 .sec3_slide2 .introduce_btn {
  width: max-content;
  transition: 0.4s;
  align-items: center;
  display: flex;
  gap: 18px;
  font-size: 22px;
  line-height: 32px;
  cursor: pointer;
}

.main_sec3 .sec3_slide2 .introduce_btn:hover {
  color: #f38200;
}

.main_sec3 .sec3_slide2 .introduce_btn:hover .btn_img .line1 {
  width: 50px;
}

.main_sec3 .sec3_slide2 .btn_img {
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.4s;
  right: 0;
}

.btn_ring {
  width: 20px;
  height: 20px;
}

.white_line {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.line1 {
  width: 40px;
  height: 1px;
  background-color: #fff;
  transition: 0.4s;
}

.line2 {
  position: absolute;
  transform: rotate(30deg);
  height: 1px;
  width: 20px;
  background-color: #fff;
  right: 0;
  top: -5px;
}

.main_sec3 .sec3_slide3 .white_line {
  position: absolute;
  top: 50%;
  left: auto;
  right: 20px;
  transform: translateY(-50%);
}

.main_sec3 .sec3_slide3 .line1 {
}

.main_sec3 .sec3_slide3 .line2 {
  position: absolute;
  transform: rotate(-30deg);
  height: 1px;
  width: 20px;
  background-color: #fff;
  left: 0;
  top: -5px;
}

.main_sec3 {
}

.main_sec3 .sec3_slide3 {
  position: relative;
}

.main_sec3 .sec3_slide3_bg {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 50px;
  left: 0;
}

.main_sec3 .sec3_slide3_bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  transition: transform 1.5s;
}

.main_sec3 .sec3_slide3.swiper-slide-active .sec3_slide2_bg img {
  transform: scale(1);
}

/* #n_215 {
    fill: rgba(243,130,0,1);
}
.n_215 {
    mix-blend-mode: darken;
    position: absolute;
    overflow: visible;
    left: 0;top: 0;
    width: 100%;height: 100%;

} */

.slide_bgc_pc1 {
  -webkit-transform: translate3d(0, 0, 0);
  position: absolute;
  background-color: rgba(243, 130, 0, 1);
  mix-blend-mode: darken;
  top: 40%;
  z-index: 0;
  left: 10%;
}

.main_sec3 .sec3_slide3 .sec3_slide2_cont_group {
  -webkit-transform: translate3d(0, 0, 0);
  top: 40%;
  align-items: flex-end;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 37px;
  padding: 50px 80px 50px 60px;
  color: #fff;
  position: absolute;
  z-index: 1;
  left: 10%;
}

.main_sec3 .sec3_slide3 .sec3_slide2_tit {
  font-size: 49px;
  font-weight: 600;
  line-height: 78px;
  font-family: "Noto Serif KR", serif;
}

.main_sec3 .sec3_slide3 .sec3_slide2_tit2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 32px;
}

.main_sec3 .sec3_slide3 .sec3_slide2_sub {
  font-size: 18px;
  line-height: 32px;
}

.main_sec3 .sec3_slide3 .introduce_btn {
  width: max-content;
  transition: 0.4s;
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  gap: 18px;
  font-size: 22px;
  line-height: 32px;
  cursor: pointer;
}

.main_sec3 .sec3_slide3 .introduce_btn:hover {
  color: #f38200;
}

.main_sec3 .sec3_slide3 .introduce_btn:hover .btn_img .line1 {
  width: 50px;
}

.main_sec3 .sec3_slide3 .btn_img {
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.4s;
  left: 0;
}

.sec3_slide1 .slide1_txt,
.sec3_slide2 .sec3_slide2_tit,
.sec3_slide2 .sec3_slide2_tit2,
.sec3_slide2 .sec3_slide2_sub,
.sec3_slide3 .sec3_slide2_tit,
.sec3_slide3 .sec3_slide2_tit2,
.sec3_slide3 .sec3_slide2_sub {
  position: relative;
  top: 30px;
  opacity: 0;
  transition: opacity 0.8s 0.5s, top 1s 0.5s;
}

.main_sec3.active .sec3_slide1.swiper-slide-active .slide1_txt,
.main_sec3.active .sec3_slide2.swiper-slide-active .sec3_slide2_tit,
.main_sec3.active .sec3_slide2.swiper-slide-active .sec3_slide2_tit2,
.main_sec3.active .sec3_slide2.swiper-slide-active .sec3_slide2_sub,
.main_sec3.active .sec3_slide3.swiper-slide-active .sec3_slide2_tit,
.main_sec3.active .sec3_slide3.swiper-slide-active .sec3_slide2_tit2,
.main_sec3.active .sec3_slide3.swiper-slide-active .sec3_slide2_sub {
  top: 0;
  opacity: 1;
}

.sec3_slide2_tit {
}

.sec3_slide2_tit2 {
  transition-delay: 0.7s !important;
}

.sec3_slide2_sub {
  transition-delay: 0.9s !important;
}

.main_sec3 {
}

.main_sec3 {
}

.main_sec3 {
}

.main_sec4 {
  position: relative;
}

.main_sec4 .fp-tableCell {
  position: relative;
  overflow: visible;
}

.main_sec4 .half_bx {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  overflow: hidden;
}

.main_sec4 .sec4_left {
  transform: translateY(15%);
  opacity: 0;
  transition: opacity 1s, transform 1s 0.3s, width 0.6s 0.1s;
  z-index: 1;
  left: 0;
  background: url(/img/main/sec4_left.png) no-repeat left / cover;
}

.main_sec4 .sec4_right {
  transform: translateY(15%);
  opacity: 0;
  transition: opacity 1s, transform 1s 0.3s, width 0.6s 0.1s;
  z-index: 1;
  right: 0;
  background: url(/img/main/sec4_right.png) no-repeat right / cover;
}

.main_sec4 .gray_filter {
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 0 !important;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  backdrop-filter: grayscale(100%) brightness(0.7);
  -webkit-backdrop-filter: grayscale(100%) brightness(0.7);
  transition: 0.4s;
}

.main_sec4 .gray_filter:hover {
  backdrop-filter: grayscale(100%) brightness(0.8);
  -webkit-backdrop-filter: grayscale(100%) brightness(0.8);
}

.main_sec4 .profile_group {
  -webkit-transform: translate3d(0, 0, 0);
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
}

.main_sec4 .profile_group * {
  -webkit-transform: translate3d(0, 0, 0);
}

.main_sec4 .pro_job {
  font-size: 21px;
  font-family: "GmarketSans";
  font-weight: 200;
}

.main_sec4 .pro_line {
  height: 1px;
  width: 50px;
  background-color: #fff;
}

.main_sec4 .pro_name {
  font-size: 32px;
  font-weight: 600;
}

.main_sec4 .pro_kor {
  font-size: 18px;
}

.main_sec4 .pro_eng {
  font-size: 18px;
  margin-top: 20px;
}

.main_sec4 .loading_svg {
  width: 40px;
  height: 40px;
}

.main_sec4 .half_bx.on {
  width: 100%;
  z-index: 2;
}

.main_sec4 .half_bx.on .profile_group {
  display: none;
}

.main_sec4 .half_bx.on .gray_filter {
  backdrop-filter: grayscale(0%) brightness(1);
  -webkit-backdrop-filter: grayscale(0%) brightness(1);
}

.main_sec4 .on_x_btn {
  display: none;
}

.main_sec4 .on_profile {
  display: none;
}

.main_sec4.active .sec4_left {
  opacity: 1;
  transform: translateY(0px);
}

.main_sec4.active .sec4_right {
  opacity: 1;
  transition: opacity 1s 0.5s, transform 1s 0.6s, width 0.6s 0.1s;
  transform: translateY(0px);
}

.main_sec4 {
}

.main_sec4 {
}

.main_sec4 .half_bx.on .on_x_btn {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 150px;
  transition: 0.4s;
}

.main_sec4 .sec4_left.on .on_x_btn {
  right: 6.5%;
}

.main_sec4 .sec4_right.on .on_x_btn {
  left: 6.5%;
}

.main_sec4 .half_bx.on .on_x_btn:hover {
  transform: rotate(90deg);
}

.main_sec4 .half_bx.on .on_profile {
  align-items: flex-end;
  z-index: 2;
  display: block;
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.main_sec4 .sec4_left.on .on_profile {
  right: 15%;
}

.main_sec4 .sec4_right.on .on_profile {
  left: 15%;
}

.main_sec4 .half_bx.on .big_profile {
  display: flex;
  gap: 100px;
  color: #fff;
}

.main_sec4 .half_bx.on .on_left_profile {
  margin-top: 8px;
  align-items: flex-end;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main_sec4 .half_bx.on .pro_job2 {
  font-family: "GmarketSans";
  font-size: 22px;
  font-weight: 200;
}

.main_sec4 .half_bx.on .pro_line2 {
  width: 30px;
  height: 1px;
  background-color: #fff;
}

.main_sec4 .half_bx.on .pro_name2 {
  font-size: 34px;
  font-weight: 600;
}

.main_sec4 .half_bx.on .pro_kor2 {
  font-size: 19px;
  line-height: 27px;
}

.main_sec4 .half_bx.on .pro_eng2 {
  font-size: 19px;
  margin-top: 30px;
}

.main_sec4 .half_bx.on .on_right_profile {
  font-size: 18px;
  line-height: 26px;
}

.main_sec4 .half_bx.sec4_right.on .on_left_profile {
  text-align: left;
  align-items: flex-start;
}

.main_sec4 .half_bx.on {
}

.main_sec4 .half_bx.on {
}

.main_sec4 .half_bx.on {
}

.main_sec4 .half_bx.on {
}

.main_sec4 .half_bx.on {
}

.main_sec4 .half_bx.on {
}

.main_sec5 {
  position: relative;
}

.main_sec5 .sec5_cont {
  overflow: hidden;
  position: absolute;
  width: 80vw;
  height: calc(100vh - 200px);
  bottom: 10px;
  left: 10px;
}

.main_sec5 .sec5_tit {
  display: flex;
  margin-bottom: 30px;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
  font-weight: 200;
  font-family: "GmarketSans";
  color: #302d2c;
}

.main_sec5 .sec5_tit1 {
  font-size: 20px;
}

.main_sec5 .sec5_tit2 {
  font-size: 55px;
}

.main_sec5 .sec5_container {
  height: calc(100% - 85px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.main_sec5 .item {
  overflow: hidden;
  position: relative;
}

.main_sec5 .item:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 5;
}

.main_sec5 .item:nth-child(2) {
  grid-column: 1 / 2;
  grid-row: 5 / 9;
}

.main_sec5 .item:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 1 / 9;
}

.main_sec5 .item:nth-child(4) {
  grid-column: 3 / 4;
  grid-row: 1 / 4;
}

.main_sec5 .item:nth-child(5) {
  grid-column: 3 / 4;
  grid-row: 4 / 9;
}

.main_sec5 .item:nth-child(6) {
  grid-column: 4 / 5;
  grid-row: 1 / 6;
}

.main_sec5 .item:nth-child(7) {
  grid-column: 4 / 5;
  grid-row: 6 / 9;
}

.main_sec5 .item .item_bg {
  height: 100%;
  width: 100%;
}

.main_sec5 .item:nth-child(1) .item_bg {
  background: url(/img/main/h1.jpg) no-repeat center / cover;
}

.main_sec5 .item:nth-child(2) .item_bg {
  background: url(/img/main/h2.jpg) no-repeat center / cover;
}

.main_sec5 .item:nth-child(3) .item_bg {
  background: url(/img/main/h3.jpg) no-repeat center / cover;
}

.main_sec5 .item:nth-child(4) .item_bg {
  background: url(/img/main/h4.jpg) no-repeat center / cover;
}

.main_sec5 .item:nth-child(5) .item_bg {
  background: url(/img/main/h5.jpg) no-repeat center / cover;
}

.main_sec5 .item:nth-child(6) .item_bg {
  background: url(/img/main/h6.jpg) no-repeat center / cover;
}

.main_sec5 .item:nth-child(7) .item_bg {
  background: url(/img/main/h7.jpg) no-repeat center / cover;
}

.main_sec5 .item_bg {
  transform: scale(1);
  transition: 0.6s;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.main_sec5 .item:hover .item_bg {
  transform: scale(1.2);
}

.main_sec5 .item:hover .item_filter {
  opacity: 1;
}

.main_sec5 .item_filter {
  opacity: 0;
  transition: 0.6s;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #09535665;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.main_sec5 .filter_btn {
  font-family: "GmarketSans";
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.main_sec5 .filter_btn:hover .btn_arrow {
  right: -10px;
}

.main_sec5 .btn_arrow {
  width: 16px;
  height: 16px;
  right: 0;
  transition: 0.4s;
}

.main_sec5 .filter_tit {
  font-size: 20px;
}

.main_sec5 {
}

.main_sec5 .item {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s, transform 2s;
}

.main_sec5.active .item {
  opacity: 1;
  transform: translateY(0);
}

.main_sec5.active .item:nth-child(1) {
  transition-delay: 0.1s;
}

.main_sec5.active .item:nth-child(2) {
  transition-delay: 0.5s;
}

.main_sec5.active .item:nth-child(3) {
  transition-delay: 1.5s;
}

.main_sec5.active .item:nth-child(4) {
  transition-delay: 1.2s;
}

.main_sec5.active .item:nth-child(5) {
  transition-delay: 0.8s;
}

.main_sec5.active .item:nth-child(6) {
  transition-delay: 1s;
}

.main_sec5.active .item:nth-child(7) {
  transition-delay: 0.3s;
}

.main_sec6 {
  position: relative;
  overflow: hidden;
}

.main_sec6 .active_bg {
  background: url(/img/main/sec6_bg.png) no-repeat center / cover;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transform: scale(1.2);
  transition: 1s 0.5s;
}

.main_sec6.active .active_bg {
  transform: scale(1);
}

.main_sec6 .cont_main {
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.main_sec6 .sec6_tit {
  font-size: 50px;
  text-align: center;
}

.main_sec6 .sec6_cont_group {
  display: flex;
  gap: 60px;
}

.main_sec6 .sec6_cont_bx {
  transform: translateY(50px);
  opacity: 0;
  transition: opacity 1s, transform 1.5s;
}

.main_sec6.active .sec6_cont_bx {
  transform: translateY(0);
  opacity: 1;
}

.main_sec6.active .sec6_cont_bx:nth-child(1) {
}

.main_sec6.active .sec6_cont_bx:nth-child(2) {
  transition-delay: 0.4s;
}

.main_sec6.active .sec6_cont_bx:nth-child(3) {
  transition-delay: 0.8s;
}

.main_sec6 .sec6_cont_bx {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.main_sec6 .sec6_img_bx {
  cursor: pointer;
  padding: 10px;
  transition: 0.4s;
  border: 1px solid transparent;
}

.main_sec6 .sec6_img_bx:hover {
  border: 1px solid #fff;
}

.main_sec6 .sec6_img_bx .img_inbx {
  position: relative;
  display: block;
}

.main_sec6 .sec6_img_bx .img_inbx::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0000007e;
  opacity: 0;
  transition: opacity 0.6s;
}

.main_sec6 .sec6_img_bx:hover .img_inbx::after {
  opacity: 1;
}

.main_sec6 .name {
  margin-top: 20px;
  line-height: 32px;
}

.main_sec6 .sec6_txt {
  width: 230px;
  margin-top: 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.main_sec6 .log_in_plz {
  opacity: 0;
  transition: opacity 0.8s;
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  text-align: center;
  border: 1px solid #fff;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  width: 90%;
  padding: 10px 0;
  text-align: center;
}

.main_sec6 .sec6_img_bx:hover .log_in_plz {
  opacity: 1;
}

.main_sec6 {
}

.main_sec6 {
}

.main_sec7 {
  overflow: hidden;
}

.main_sec7 .fp-tableCell {
  display: flex;
}

.main_sec7 .sec7_left {
  overflow: hidden;
  width: 40%;
  position: relative;
  height: 100%;
}

.main_sec7 .sec7_bg {
  transform: scale(1.3);
  transition: 3s;
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: url(/img/main/sec7_bg.png) no-repeat center / cover;
}

.main_sec7 .sec7_tit_group {
  position: absolute;
  z-index: 1;
  right: 15%;
  top: 30%;
  color: #fff;
}

.main_sec7 .sec7_tit1 {
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 1s, transform 1.5s;
  font-size: 34px;
}

.main_sec7 .sec7_tit2 {
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 1s 0.2s, transform 1.5s 0.2s;
  font-size: 78px;
  line-height: 82px;
  font-weight: 800;
}

.main_sec7 .sec7_tit3 {
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 1s 0.4s, transform 1.5s 0.4s;
  margin-top: 57px;
  font-size: 23px;
  font-family: "Noto Serif KR", serif;
  font-weight: 600;
  line-height: 40px;
}

.main_sec7.active .sec7_tit1 {
  transform: translateY(0);
  opacity: 1;
}

.main_sec7.active .sec7_tit2 {
  transform: translateY(0);
  opacity: 1;
}

.main_sec7.active .sec7_tit3 {
  transform: translateY(0);
  opacity: 1;
}

.main_sec7 .sec7_right {
  width: 60%;
  position: relative;
}

.main_sec7 .sec7_cont_group {
  position: absolute;
  top: 20%;
  left: 8%;
  display: flex;
  gap: 50px;
  flex-direction: column;
}

.main_sec7 .sec7_list_group {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.main_sec7 .sec7_list {
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  font-size: 18px;
  color: #302d2c;
  gap: 50px;
  padding-bottom: 22px;
  padding-right: 10px;
  border-bottom: 1px solid #707070;
}

.main_sec7 .sec7_list:hover {
  font-weight: 900;
  color: #002b7f;
}

.main_sec7 .sec7_list_tit {
  width: 250px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-right: 100px;
}

.main_sec7 .sec7_blog_group {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: fit-content;
}

.main_sec7 .blog_tit_group {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 79%;
}

.main_sec7 .blog_tit_group.m {
  display: none;
}

.main_sec7 .blog_tit {
  font-size: 50px;
  font-weight: 900;
}

.blog_btn_main {
  transition: 0.4s;
  background-color: #f38200;
  width: 100px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 50px;
  cursor: pointer;
  color: #fff;
}

.blog_btn_main:hover {
  color: #f38200;
  background-color: #fff;
  box-shadow: 0 0 30px #00000033;
}

.main_sec7 .blog_list_group {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  overflow-y: auto;
  width: 100%;
}

.main_sec7 .blog_list_group.m {
  display: none;
}

.main_sec7 .blog_list {
  border: 1px solid #000;
  overflow: hidden;
  width: calc(100% / 3 - 100px);
  min-width: 200px;
  cursor: pointer;
}

.main_sec7 .blog_list img {
  transition: 0.4s;
}

.main_sec7 .blog_list img:hover {
  transform: scale(1.1);
}

.main_sec7 .sec7_list_date {
  width: 110px;
}

.main_sec7.active .sec7_bg {
  transform: scale(1);
}

/* .main_sec7 .bls_fbx{display: flex;justify-content: flex-end;} */

.main_sec7.active {
}

.main_sec7 {
}

.main_sec8 {
  background-color: #464646;
  color: #fff;
}

.main_sec8 .cont_main {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
}

.main_sec8 .sec8_tit_group {
  display: flex;
  padding-right: 10px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 2px solid #ffffff56;
}

.main_sec8 .sec8_tit1 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 30px;
  text-transform: uppercase;
}

.main_sec8 .sec8_tit2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 3px;
}

.main_sec8 .sec8_cont_group {
  display: flex;
}

.main_sec8 .sec8_left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.main_sec8 .sec8_left_tit {
  letter-spacing: -2px;
  font-size: 36px;
  font-weight: 900;
  padding-bottom: 25px;
  border-bottom: 2px solid #ffffff56;
}

.sec8_address1,
.sch1,
.sch_date1,
.sch_date2 {
  display: flex;
}

.address1_left,
.sch1_left {
  font-size: 22px;
  font-weight: 900;
}

.address1_right,
.sch1_right {
  font-size: 17px;
  font-weight: 200;
  font-family: "GmarketSans";
}

.main_sec8 .sec8_address1,
.sch1 {
  align-items: center;
  gap: 15px;
}

.address1_right,
.sch1_right {
  display: flex;
  align-items: center;
  padding-top: 5px;
}

.main_sec8 .sec8_address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sec8_sch {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main_sec8 .sec8_address2 {
  font-size: 22px;
  letter-spacing: -2px;
  line-height: 30px;
}

.main_sec8 .sch2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 22px;
}

.main_sec8 .sch_date1,
.sch_date2 {
  gap: 40px;
}

.main_sec8 .sch_date1_left,
.sch_date2_left {
  width: 60px;
}

.main_sec8 .sch_plus {
  font-size: 22px;
  line-height: 32px;
}

.main_sec8 .sec8_address,
.sec8_sch {
  padding-bottom: 25px;
  border-bottom: 1px solid #fff;
}

.main_sec8 .sec8_right {
  width: 50%;
}

.main_sec8 .sec8_right #map {
  width: 100%;
  height: calc(100% - 65px);
}

.main_sec8 {
}

.main_sec8 {
}

.maps {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: flex-end;
}

.maps .map2 {
  cursor: pointer;
  width: 220px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maps div:nth-child(1) .map2 {
  transition: 0.3s;
  border: 1px solid #f5dc00;
  color: #f5dc00;
}

.maps div:nth-child(2) .map2 {
  transition: 0.3s;
  border: 1px solid #2daf00;
  color: #2daf00;
}

.maps div:nth-child(1) .map2:hover {
  background: #f5dc00;
  color: #fff;
}

.maps div:nth-child(2) .map2:hover {
  background: #2daf00;
  color: #fff;
}

/* .sec3-2.mb{display: none;} */
/* 메인페이지 끝 */

.side_head.mb {
  display: none;
}

.mb {
  display: none;
}

/* 메인페이지 미디어 시작 */
@media screen and (max-width: 1310px) {
  .mb {
    display: block;
  }

  .pc {
    display: none;
  }

  .nav_bar_group {
    display: none;
  }

  .side_head.mb {
    right: auto;
    left: 10px;
    bottom: 10px;
  }

  .top_btn {
    width: 60px;
    height: 60px;
  }

  .phone_btn {
    width: 60px;
    height: 60px;
  }

  .side_head.mb img {
    width: 35px;
    height: auto;
  }

  .side_head.mb .plus_btn img {
    width: 25px;
  }

  .foot_group {
    display: none;
  }

  .main_sec1 .slide_tit {
    font-size: 40px;
    line-height: 55px;
  }

  .main_sec1 .slide_sub {
    font-size: 16px;
    margin-top: 20px;
    line-height: 22px;
  }

  .main_sec1 .swiper-slide .cont_main {
    gap: 40px;
    margin-top: 340px;
    width: 85%;
  }

  .main_sec1 .sec1_swi .slide1 .slide_img_bg {
    background-position: 30%;
  }

  .main_sec2 .remote {
    display: none;
  }

  .main_sec2 .sec2_group .sec2_group_bg.bg1 {
    background-position: 30%;
  }

  .main_sec2 .sec2_group .sec2_group_bg.bg2 {
  }

  .main_sec2 .sec2_group .sec2_group_bg.bg3 {
  }

  .main_sec2 .sec2_txt_btn {
    bottom: 15%;
  }

  .main_sec2 .sec2_tit2 {
    text-align: left;
    margin-bottom: 5px;
    font-size: 18px;
  }

  .main_sec2 .sec2_tit {
    font-size: 38px;
    line-height: 51px;
  }

  .main_sec2 .sec2_sub {
    font-size: 17px;
    margin-top: 0px;
    text-align: right;
    line-height: 22px;
    letter-spacing: -1px;
  }

  .main_sec2 .sec2_txt_btn {
    flex-direction: column;
  }

  .remote_mb {
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    z-index: 9;
    position: absolute;
    display: flex !important;
    gap: 50px;
    justify-content: center;
    width: 100%;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
  }

  .remote_list_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .remote_txt_group {
    text-align: center;
  }

  .main_sec2 .eng_tit {
    font-size: 12px;
    font-weight: 200;
    line-height: 15px;
  }

  .main_sec2 .kor_tit {
    font-size: 15px;
    line-height: 17px;
  }

  .main_sec2 .remote_list .remote_txt_group {
    justify-content: center;
    gap: 0px;
  }

  .main_sec2 .remote_list .remote_list_img {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main_sec2 .remote_list.list2 .remote_txt_group {
    gap: 10px;
  }

  .main_sec2 .remote_list {
    padding: 0;
  }

  .main_sec2 .remote_black_bx2 {
    position: absolute;
    top: 0px;
    width: 131px;
    height: 121px;
    top: 45%;
    transform: translate(-50%, -50%);
    transition: left 0.6s;
    background-color: #0626279a;
    left: calc(50% - 135px);
  }

  .main_sec2 .sec2_group2 .sec2_txt_btn {
    gap: 30px;
  }

  .sec2_txt_btn {
    min-width: 325px;
  }

  .sec2_txt_btn > div {
    width: 100%;
  }

  .main_sec2 .sec1_view_more {
    width: max-content;
  }

  .rolling-list ul li {
    font-size: 124px;
    line-height: 100px;
    padding: 12px 31px;
  }

  .sec3-3 .white_line {
    position: absolute;
    top: 50%;
    left: auto;
    right: 20px;
    transform: translateY(-50%);
  }

  .sec3-3 .line1 {
  }

  .sec3-3 .line2 {
    position: absolute;
    transform: rotate(-30deg);
    height: 1px;
    width: 20px;
    background-color: #fff;
    left: 0;
    top: -5px;
  }

  .sec3-2 {
    position: relative;
  }

  .sec3_slide2_bg {
    overflow: hidden;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .sec3_slide2_bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
    transition: transform 1.5s;
  }

  .sec3-2.active .sec3_slide2_bg img {
    transform: scale(1);
  }

  .sec3-2 .sec3_slide2_cont_group {
    display: flex;
    flex-direction: column;
    gap: 37px;
    padding: 50px 80px 50px 60px;
    color: #fff;
    position: absolute;
    z-index: 1;
  }

  .sec3-2 .sec3_slide2_tit {
    font-size: 49px;
    font-weight: 600;
    line-height: 78px;
    font-family: "Noto Serif KR", serif;
  }

  .sec3-2 .sec3_slide2_tit2 {
    font-size: 30px;
    font-weight: 500;
    line-height: 32px;
  }

  .sec3-2 .sec3_slide2_sub {
    font-size: 18px;
    line-height: 32px;
  }

  .sec3-2 .introduce_btn {
    width: max-content;
    transition: 0.4s;
    align-items: center;
    display: flex;
    gap: 18px;
    font-size: 22px;
    line-height: 32px;
    cursor: pointer;
  }

  .sec3-2 .introduce_btn:hover .btn_img .line1 {
    width: 50px;
  }

  .sec3-2 .btn_img {
    display: flex;
    align-items: center;
    position: relative;
    transition: 0.4s;
    right: 0;
  }

  .sec3-3 .white_line {
    position: absolute;
    top: 50%;
    left: auto;
    right: 20px;
    transform: translateY(-50%);
  }

  .sec3-3 .line1 {
  }

  .sec3-3 .line2 {
    position: absolute;
    transform: rotate(-30deg);
    height: 1px;
    width: 20px;
    background-color: #fff;
    left: 0;
    top: -5px;
  }

  .sec3-3 {
    position: relative;
  }

  .sec3_slide3_bg {
    overflow: hidden;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 50px;
    left: 0;
  }

  .sec3_slide3_bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
    transition: transform 1.5s;
  }

  .sec3-3.active .sec3_slide2_bg img {
    transform: scale(1);
  }

  .sec3-3 .sec3_slide2_cont_group {
    top: 40%;
    align-items: flex-end;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 37px;
    padding: 50px 80px 50px 60px;
    color: #fff;
    position: absolute;
    z-index: 1;
    left: 10%;
  }

  .sec3-3 .sec3_slide2_tit {
    font-size: 49px;
    font-weight: 600;
    line-height: 78px;
    font-family: "Noto Serif KR", serif;
  }

  .sec3-3 .sec3_slide2_tit2 {
    font-size: 30px;
    font-weight: 500;
    line-height: 32px;
  }

  .sec3-3 .sec3_slide2_sub {
    font-size: 18px;
    line-height: 32px;
  }

  .sec3-3 .introduce_btn {
    width: max-content;
    transition: 0.4s;
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    gap: 18px;
    font-size: 22px;
    line-height: 32px;
    cursor: pointer;
  }

  .sec3-3 .introduce_btn:hover .btn_img .line1 {
    width: 50px;
  }

  .sec3-3 .btn_img {
    display: flex;
    align-items: center;
    position: relative;
    transition: 0.4s;
    left: 0;
  }

  .slide1_txt,
  .sec3-2 .sec3_slide2_tit,
  .sec3-2 .sec3_slide2_tit2,
  .sec3-2 .sec3_slide2_sub,
  .sec3-3 .sec3_slide2_tit,
  .sec3-3 .sec3_slide2_tit2,
  .sec3-3 .sec3_slide2_sub {
    position: relative;
    top: 30px;
    opacity: 0;
    transition: opacity 0.8s 0.5s, top 1s 0.5s;
  }

  .main_sec3.active .slide1_txt,
  .sec3-2.active .sec3_slide2_tit,
  .sec3-2.active .sec3_slide2_tit2,
  .sec3-2.active .sec3_slide2_sub,
  .sec3-3.active .sec3_slide2_tit,
  .sec3-3.active .sec3_slide2_tit2,
  .sec3-3.active .sec3_slide2_sub {
    top: 0;
    opacity: 1;
  }

  .sec3_slide2_tit {
  }

  .sec3_slide2_tit2 {
    transition-delay: 0.7s !important;
  }

  .sec3_slide2_sub {
    transition-delay: 0.9s !important;
  }

  .main_sec3 .slide1_txt {
    font-size: 22px;
    line-height: 38px;
  }

  .main_sec3 .mouse_img {
    transform: rotate(180deg);
  }

  .sec3-2 .sec3_slide2_tit {
    font-size: 26px;
    line-height: 34px;
  }

  .sec3-2 .sec3_slide2_tit2 {
    font-size: 20px;
    line-height: 25px;
  }

  .sec3-2 .introduce_btn {
    font-size: 17px;
  }

  .slide_bgc_mb1 {
    -webkit-transform: translate3d(0, 0, 0);
    position: absolute;
    background-color: #f38200;
    mix-blend-mode: multiply;
    right: 0;
    top: 19%;
  }

  .sec3-2 .sec3_slide2_cont_group {
    -webkit-transform: translate3d(0, 0, 0);
    width: 50%;
    min-width: 300px;
    right: 0;
    top: 19%;
    padding-top: 45px;
    padding-left: 30px;
    padding-right: 25px;
    padding-bottom: 60px;
  }

  .sec3-2 .sec3_slide2_sub {
    font-size: 15px;
    line-height: 20px;
  }

  .sec3-3 .sec3_slide2_tit {
    font-size: 26px;
    line-height: 34px;
  }

  .sec3-3 .sec3_slide2_tit2 {
    font-size: 20px;
    line-height: 25px;
  }

  .sec3-3 .introduce_btn {
    font-size: 17px;
    gap: 10px;
  }

  .slide_bgc_mb2 {
    -webkit-transform: translate3d(0, 0, 0);
    position: absolute;
    background-color: #f38200;
    mix-blend-mode: darken;
    z-index: 0;
    left: 0;
    top: 30%;
  }

  .sec3-3 .sec3_slide2_cont_group {
    -webkit-transform: translate3d(0, 0, 0);
    width: 50%;
    min-width: 300px;
    left: 0;
    top: 30%;
    padding-top: 45px;
    padding-left: 0px;
    padding-right: 50px;
    padding-bottom: 60px;
  }

  .sec3-3 .sec3_slide2_sub {
    font-size: 15px;
    line-height: 20px;
  }

  .sec4_right {
    transition: top 0.6s, opacity 0.6s;
  }

  .main_sec4.active .sec4_right {
    transition: top 0.6s, opacity 0.6s;
  }

  .main_sec4.active .sec4_left {
  }

  .main_sec4 {
    position: relative;
    height: 100%;
  }

  .main_sec4 {
    overflow: hidden;
  }

  .main_sec4 .profile_group {
    left: auto;
    right: 7%;
    transform: translateX(0);
    gap: 10px;
    bottom: auto;
    top: 120px;
  }

  .main_sec4 .pro_job {
    font-size: 16px;
  }

  .main_sec4 .pro_line {
    width: 30px;
  }

  .main_sec4 .pro_name {
    font-size: 23px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .main_sec4 .pro_kor {
    font-size: 13px;
    line-height: 20px;
  }

  .main_sec4 .pro_eng {
    font-size: 13px;
  }

  .main_sec4 .half_bx {
    height: 100%;
    background-size: cover;
    width: 100%;
    transition: opacity 1s ease, height 0.6s ease;
  }

  .main_sec4 .sec4_left {
    transform: translateY(0);
    left: auto;
    top: 95px;
    background-image: url(/img/main/sec4_left_m.png);
    background-position: 50% 50%;
  }

  .main_sec4 .sec4_right {
    transform: translateY(0);
    right: auto;
    top: 55%;
    background-image: url(/img/main/sec4_right_m.png);
    background-position: 50% 0%;
  }

  .main_sec4 .half_bx.on {
    height: 100%;
    z-index: 0;
  }

  .main_sec4 .sec4_left.on + .sec4_right {
    top: 100%;
    transition: top 0.6s;
  }

  .main_sec4 .sec4_left + .sec4_right {
    transition: top 0.6s, opacity 0.6s;
  }

  .main_sec4 .sec4_right.on + .sec4_left {
    height: 0px;
    transition: top 0.6s;
  }

  .main_sec4 .half_bx.on .big_profile {
    flex-direction: column;
    gap: 40px;
    align-items: flex-end;
  }

  .main_sec4 .sec4_left.on {
    z-index: 0;
  }

  .main_sec4 .sec4_right.on {
    z-index: 1;
    height: 100%;
    top: 95px;
    transition: height 0.6s ease, top 0.4s ease;
  }

  .main_sec4 .sec4_right {
    z-index: 1;
    transition: height 0.6s ease, top 0.4s ease;
  }

  /* .main_sec4 .profile_group{left: auto;right: 7%;transform: translateX(0);gap: 10px;bottom: 60%;} */
  .main_sec4 .half_bx.on .pro_job2 {
    font-size: 16px;
  }

  .main_sec4 .half_bx.on .pro_line2 {
    width: 30px;
  }

  .main_sec4 .half_bx.on .pro_name2 {
    font-size: 23px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .main_sec4 .half_bx.on .pro_kor2 {
    font-size: 13px;
    line-height: 20px;
  }

  .main_sec4 .half_bx.on .pro_eng2 {
    font-size: 13px;
    margin-top: 20px;
  }

  .main_sec4 .half_bx.on .on_right_profile {
    font-size: 15px;
    line-height: 26px;
  }

  .main_sec4 .sec4_left.on .on_profile {
    right: 7%;
  }

  .main_sec4 .half_bx.on .on_left_profile {
    margin-top: 0;
    gap: 10px;
    width: max-content;
    text-align: center;
    align-items: center;
  }

  .main_sec4 .sec4_left.on .on_x_btn {
    top: 30px;
  }

  .main_sec4 .half_bx.on .on_profile {
    top: 120px;
    transform: translateY(0);
  }

  .main_sec4 .half_bx.sec4_right.on .on_left_profile {
    text-align: center;
    align-items: center;
  }

  .main_sec4 .half_bx.on .on_x_btn {
    top: 30px;
  }

  .main_sec4 .sec4_right.on .on_profile {
    left: auto;
    right: 7%;
    width: 80%;
  }

  .main_sec4 .sec4_right.on .big_profile {
    width: 100%;
  }

  .main_sec4 .sec4_right.on .on_right_profile {
    position: relative;
    left: -50px;
  }

  .main_sec4 .sec4_left.on .on_right_profile {
    position: relative;
    left: 20px;
  }

  .main_sec5 .sec5_tit {
    flex-direction: column;
    padding-top: 35px;
    padding-right: 10px;
    margin-bottom: 10px;
  }

  .main_sec5 .sec5_cont {
    left: 50%;
    transform: translateX(-50%);
    width: 97%;
    margin: 0 auto;
    height: calc(100% - 95px);
    top: 95px;
    bottom: auto;
  }

  .main_sec5 .item {
  }

  .main_sec5 .sec5_container {
    gap: 5px;
    height: calc(100% - 117px);
    grid-template-columns: 4fr 1fr 1fr 4fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .main_sec5 .item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 4;
  }

  .main_sec5 .item:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 4 / 8;
  }

  .main_sec5 .item:nth-child(3) {
    grid-column: 3 / 5;
    grid-row: 1 / 5;
  }

  .main_sec5 .item:nth-child(4) {
    grid-column: 3 / 5;
    grid-row: 5 / 8;
  }

  .main_sec5 .item:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 8 / 11;
  }

  .main_sec5 .item:nth-child(6) {
    grid-column: 1 / 2;
    grid-row: 11 / 14;
  }

  .main_sec5 .item:nth-child(7) {
    grid-column: 2 / 5;
    grid-row: 8 / 14;
  }

  .main_sec5 .sec5_tit1 {
    font-size: 14px;
    text-align: right;
  }

  .main_sec5 .sec5_tit2 {
    font-size: 40px;
  }

  .main_sec5 .filter_tit {
    font-size: 15px;
    padding-top: 5%;
  }

  .main_sec5 .filter_btn {
    font-size: 15px;
    white-space: nowrap;
    position: relative;
    left: auto;
    bottom: auto;
    transform: translateX(0);
  }

  .main_sec5 .item_filter {
    flex-direction: column;
    gap: 10%;
  }

  .main_sec6 .sec6_cont_group.pc {
    display: none;
  }

  .main_sec6 .sec6_tit {
    font-size: 25px;
  }

  .main_sec6 .sec6_tit .black {
    font-size: 35px;
    line-height: 57px;
  }

  .main_sec6 .cont_main {
    width: 100%;
  }

  .mb_review_swi {
    width: 100%;
  }

  .review_swi .swiper-slide {
    width: 210px;
    cursor: pointer;
  }

  .sec6_name_bx {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main_sec6 .name {
    margin-top: 0;
  }

  .swiper-slide.swiper-slide-active .sec6_name_bx {
    opacity: 1;
    transition: opacity 0.4s;
  }

  .swiper-slide.swiper-slide-active .sec6_txt {
    opacity: 1;
    transition: opacity 0.4s;
  }

  .swiper-slide .sec6_name_bx {
    opacity: 0;
    transition: opacity 0.4s;
  }

  .swiper-slide .sec6_txt {
    opacity: 0;
    transition: opacity 0.4s;
  }

  .main_sec6 .sec6_txt {
    width: 200px;
  }

  .main_sec6 .log_in_plz {
    font-size: 16px;
    line-height: 20px;
  }

  .main_sec6 .sec6_img_bx {
    padding: 0;
    transition: padding 0.4s;
  }

  .main_sec6 .sec6_img_bx:hover {
    padding: 10px;
  }

  .login_sub_btn {
  }

  .login_input_cont {
    width: 80%;
  }

  .main_sec7 .sec7_left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .main_sec7 .sec7_tit_group {
    right: auto;
    position: relative;
    padding-top: 18vh;
    top: auto;
    display: flex;
    align-items: flex-end;
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
  }

  .main_sec7 .sec7_tit3 {
    margin-top: 0;
    font-size: 16px;
    line-height: 23px;
  }

  .main_sec7.active .sec7_tit1 {
    font-size: 19px;
  }

  .main_sec7.active .sec7_tit1 .black {
    font-size: 43px;
    line-height: 45px;
  }

  .main_sec7 .sec7_tit1 {
    font-size: 19px;
  }

  .main_sec7 .sec7_tit1 .black {
    font-size: 43px;
    line-height: 45px;
  }

  .main_sec7 .sec7_list_group {
    position: relative;
    z-index: 1;
    width: 90%;
    margin: 0 auto;
    margin-top: 50px;
  }

  .main_sec7 .sec7_list {
    padding-bottom: 15px;
    font-size: 16px;
    color: #fff;
    gap: 22px;
    border-bottom: 1px solid #fff;
  }

  .main_sec7 .sec7_list_tit {
    margin-right: 10px;
  }

  .main_sec7 .sec7_list:hover {
    color: #fff;
  }

  .main_sec7 .sec7_blog_group {
    bottom: 10px;
    z-index: 1;
    margin: 0 auto;
    align-items: flex-end;
    margin-top: 35px;
    position: relative;
    width: 100vw;
  }

  .main_sec7 .sec7_blog_group .sec7_blog_group_fbx {
    display: flex;
    width: 68%;
    flex-direction: column;
    gap: 12px;
    position: relative;
    align-items: flex-end;
    margin-right: 5vw;
  }

  .main_sec7 .blog_list {
    min-width: auto;
    width: 100%;
    box-sizing: border-box;
  }

  .main_sec7 .blog_tit {
    font-size: 26px;
    color: #fff;
  }

  .main_sec7 .blog_list_group {
    gap: 20px;
    width: 100%;
  }

  .main_sec7 .blog_tit_group.m,
  .main_sec7 .blog_list_group.m {
    display: flex;
  }

  .main_sec7 .blog_tit_group {
    justify-content: flex-end;
    width: 100%;
  }

  /* sec3 */
  .bg_group {
    top: 0;
  }

  .main_sec8 .sec8_tit_group {
    width: 90%;
    margin: 0 auto;
    gap: 10px;
    align-items: flex-end;
    justify-content: center;
    padding-right: 0;
    padding-bottom: 0;
    flex-direction: column-reverse;
  }

  .tit2_img {
    width: 30px;
  }

  .main_sec8 .sec8_tit2 {
    display: flex;
    gap: 15px;
  }

  .main_sec8 .sec8_tit2 {
    font-size: 31px;
  }

  .main_sec8 .sec8_tit1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    font-size: 22px;
    letter-spacing: 0px;
    white-space: nowrap;
  }

  .pr10 {
    padding-right: 10px;
  }

  .main_sec8 .sec8_cont_group {
    flex-direction: column;
  }

  .main_sec8 .sec8_left {
    gap: 10px;
    width: 90%;
    margin: 0 auto;
  }

  .main_sec8 .sec8_left_tit {
    font-size: 22px;
    letter-spacing: 0px;
    padding-bottom: 10px;
  }

  .address1_left,
  .sch1_left {
    font-size: 15px;
  }

  .address1_right,
  .sch1_right {
    font-size: 10px;
  }

  .main_sec8 .sec8_address1,
  .sch1 {
    gap: 10px;
  }

  .main_sec8 .sec8_address2 {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 20px;
  }

  .main_sec8 .sch2 {
    font-size: 15px;
  }

  .main_sec8 .sch_date1,
  .sch_date2 {
    gap: 21px;
  }

  .main_sec8 .sec8_address,
  .sec8_sch {
    padding-bottom: 10px;
  }

  .main_sec8 .sch_date1_left,
  .sch_date2_left {
    width: 42px;
  }

  .sec8_sch {
    gap: 10px;
  }

  .main_sec8 .cont_main {
    gap: 10px;
    width: 100%;
    position: relative;
    top: 20px;
  }

  .main_sec8 .sch_plus {
    font-size: 15px;
    line-height: 19px;
  }

  .main_sec8 .sec8_right {
    width: 100%;
  }

  .main_sec8 .sec8_right #map {
    height: 200px;
    margin-top: 18px;
  }

  .maps .map2 {
    width: 130px;
    height: 40px;
    font-size: 15px;
  }

  .maps {
    width: 95%;
    margin: 0 auto;
    margin-top: 15px;
  }
}

@media screen and (min-width: 700px) and (max-width: 1310px) {
  .main_sec4 .sec4_left {
    background-size: contain;
    background-color: #707070;
  }

  .main_sec4 .sec4_right {
    background-size: contain;
    background-color: #707070;
  }

  .main_sec8 .sec8_right #map {
    height: 350px;
  }
}

@media screen and (max-width: 1320px) {
  .main_sec8 .sec8_right #map {
    height: 160px;
  }

  header {
    height: 60px;
  }

  .main_sec4 .sec4_left {
    top: 60px;
  }

  /*
     .remote_mb{top: 80px;}
    .top_btn{width: 40px;height: 40px;}
    .phone_btn{width: 40px;height: 40px;} 
    */
  .side_head img {
    width: 30px;
    height: 30px;
  }

  .main_sec5 .sec5_tit {
    padding-top: 0;
  }

  .ham_btn {
    top: 23px;
  }

  .header2.ham_mb .ham_mb_logo {
    padding-top: 30px;
    width: 70%;
    cursor: pointer;
  }

  .header2.ham_mb .ham_mb_head {
    height: 120px;
  }

  .header2.ham_mb .ham_mb_bottom_cont {
    height: calc(100% - 120px);
  }

  .main_sec4 .half_bx.on .on_profile {
    top: 95px;
    gap: 40px;
  }

  .main_sec4 .half_bx.on .big_profile {
    gap: 10px;
  }

  /* .main_sec7 .blog_list{width: 115px;} */
  header .logo_bx {
    height: 40px;
  }

  header .logo_bx > img {
    height: 100%;
  }
}

@media screen and (max-height: 700px) {
  .header2.ham_mb .mb_list_left_group {
    height: calc(100vh - 190px);
  }

  .header2.ham_mb .ham_mb_bottom_cont {
    height: calc(100% - 120px);
  }

  .main_sec8 .cont_main {
    transform: scale(0.85);
  }
}

@media screen and (max-width: 768px) {
  .main_sec6 .cont_main {
    gap: 44px;
  }

  .main_sec6 .sec6_tit {
    font-size: 19px;
  }

  .main_sec6 .sec6_tit .black {
    font-size: 28px;
    line-height: normal;
    padding-top: 4px;
    display: block;
  }

  .img_inbx img {
    height: 260px !important;
  }

  .swiper-slide .sec6_name_bx {
    padding-top: 16px;
  }

  .main_sec6 .name {
    line-height: 20px;
  }

  .main_sec6 .sec6_txt {
    margin-top: 16px;
  }
}

/* 메인페이지 미디어 끝 */
@media screen and (min-width: 1311px) {
  .side_head.mb {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .remote_mb {
    gap: 64px;
  }
}

@media screen and (max-width: 480px) {
  .remote_mb {
    gap: 48px;
  }
}

.seo_hidden {
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  white-space: nowrap;
}
