@charset "UTF-8";
#wrap {
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 1280px) {
  #wrap {
    padding: 0 20px;
  }
}

/*header*/
header #wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}

@media (max-width: 640px) {
  header .logo img {
    width: 140px !important;
    margin-left: 10px;
  }
}

header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}

header .menu .login {
  color: #fff;
  margin-right: 20px;
}

header .menu a.point {
  color: #fff;
  background-color: #033989;
  padding: 6px 14px 6px 6px;
  border-radius: 20px;
  line-height: 26px;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 1000px) {
  header .menu a.point {
    display: none;
  }
}

header .menu a.point span {
  width: 31px;
  height: 31px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 15px;
  display: inline-block;
  text-align: center;
}

/* .visual 영역 */
.visual {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.visual .logo {
  z-index: 100;
}

.visual .gallery {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
}

.visual .gallery li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  /* 기본적으로 보이지 않도록 설정 */
}

@-webkit-keyframes ani {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

@keyframes ani {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

.visual .gallery img {
  -webkit-animation: ani 10s ease-out infinite;
          animation: ani 10s ease-out infinite;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -10;
  width: 100%;
}

@media (max-width: 1700px) {
  .visual .gallery img {
    width: auto;
  }
}

.visual .slogan {
  z-index: 10;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.visual .slogan .dock {
  margin-bottom: 30px;
}

.visual .slogan .mbutton {
  display: inline-block;
  width: 116px;
  height: 2px;
  margin: 5px 16px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}

.visual .slogan .mbutton::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.visual .slogan .mbutton.on::after {
  content: "";
  width: 100%;
  -webkit-transition: all 3s ease-in-out;
  transition: all 3s ease-in-out;
}

.visual .slogan .num {
  color: #fff;
  font-weight: 600;
}

.visual .slogan .max {
  color: #fff;
  opacity: 0.5;
  font-weight: 600;
}

.visual .slogan .ps i {
  margin-left: 10px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
}

.visual .slogan .up {
  position: relative;
  color: #fff;
  top: 30px;
  opacity: 0;
}

.visual .slogan .up span {
  font-size: 24px;
  line-height: 36px;
  display: block;
  font-weight: 300;
}

@media (max-width: 400px) {
  .visual .slogan .up span {
    font-size: 20px;
  }
}

.visual .slogan .up strong {
  font-size: 50px;
  line-height: 75px;
  display: block;
}

@media (max-width: 640px) {
  .visual .slogan .up strong {
    font-size: 35px;
    line-height: 70px;
  }
}

@media (max-width: 400px) {
  .visual .slogan .up strong {
    font-size: 30px;
    line-height: 60px;
  }
}

/*bottom*/
.bottom {
  position: absolute;
  bottom: 0px;
  z-index: 10;
}

.bottom ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  width: 1280px;
}

@media (max-width: 1280px) {
  .bottom ul {
    width: 100vw;
    margin-left: -20px;
  }
}

.bottom ul li {
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 140px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.bottom ul li a {
  display: block;
  font-size: 20px;
  color: #fff;
  padding: 60px 0;
  position: relative;
}

@media (max-width: 640px) {
  .bottom ul li a {
    font-size: 16px;
  }
}

.bottom ul li a i {
  position: absolute;
  right: 10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 27px;
}

@media (max-width: 640px) {
  .bottom ul li a i {
    display: none;
  }
}

.bottom ul li:hover {
  background-color: #FF7700;
}

.scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 5%;
  right: 5%;
}

@media (max-width: 640px) {
  .scroll {
    display: none;
  }
}

.scroll p {
  color: #fff;
  margin-bottom: 5px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 14px;
}

.scroll i {
  color: #fff;
  font-size: 20px;
  -webkit-animation: downAni 1s infinite alternate;
          animation: downAni 1s infinite alternate;
}

@-webkit-keyframes downAni {
  from {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes downAni {
  from {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.main_con {
  padding: 100px 0;
}

@media (max-width: 640px) {
  .main_con {
    padding: 50px 0;
  }
}

.main_con .title strong {
  font-size: 40px;
  line-height: 60px;
  margin-bottom: 10px;
  display: inline-block;
}

@media (max-width: 1000px) {
  .main_con .title strong {
    font-size: 30px;
    line-height: 50px;
  }
}

@media (max-width: 640px) {
  .main_con .title strong {
    font-size: 25px;
    line-height: 40px;
  }
}

.main_con .title strong .point {
  color: #ff773d;
}

.main_con .title p {
  line-height: 30px;
  font-weight: 500;
}

/*content1*/
.con1 {
  padding: 50px 0;
}

.con1 .title {
  padding: 30px 0;
  text-align: center;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.con1 .title strong {
  display: block;
  font-size: 40px;
  line-height: 65px;
}

@media (max-width: 1000px) {
  .con1 .title {
    padding: 20px 0;
    font-size: 20px;
  }
  .con1 .title strong {
    font-size: 30px;
    line-height: 45px;
  }
}

@media (max-width: 400px) {
  .con1 {
    padding: 30px 0;
  }
  .con1 .title {
    padding: 0;
    font-size: 16px;
  }
  .con1 .title strong {
    font-size: 26px;
    line-height: 37px;
  }
}

.con1 .content {
  padding: 40px 0 70px 0;
}

@media (max-width: 640px) {
  .con1 .content {
    padding: 20px 0 30px 0;
  }
}

/*아코디언*/
.con1 .arcodian_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

@media (max-width: 800px) {
  .con1 .arcodian_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.con1 .arcodian_item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.con1 .arcodian_item.is_active {
  -webkit-box-flex: 656px;
      -ms-flex: 656px 0;
          flex: 656px 0;
}

@media (max-width: 800px) {
  .con1 .arcodian_item.is_active {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
  }
}

.con1 .arcodian_item.is_active .arcodian_btn {
  padding: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.con1 .arcodian_item.is_active .arcodian_btn:before {
  opacity: 0;
}

.con1 .arcodian_item.is_active span {
  margin-top: 12px;
  display: block;
}

.con1 .arcodian_item.is_active strong {
  font-weight: 600;
  font-size: 30px;
}

.con1 .arcodian_item .arcodian_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 333px;
  padding: 40px 10px;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 800px) {
  .con1 .arcodian_item .arcodian_btn {
    height: 200px;
  }
}

@media (max-width: 400px) {
  .con1 .arcodian_item .arcodian_btn {
    height: 150px;
  }
}

.con1 .arcodian_item .arcodian_btn:before {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  content: "";
  z-index: 1;
}

.con1 .arcodian_item .arcodian_btn:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.125);
          transform: translate(-50%, -50%) scale(1.125);
}

.con1 .arcodian_item .arcodian_btn img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.con1 .arcodian_list span {
  display: none;
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}

.con1 .arcodian_list strong {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 45px;
  font-weight: 300;
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.con2 {
  background-image: url(../img/bg.png?ver=4);
  background-color: #142462;
  background-size: auto 100%;
  background-repeat: no-repeat;
  color: #fff;
  padding: 70px 0;
  position: relative;
}

.con2 #wrap .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.con2 #wrap .title strong {
  font-size: 40px;
  line-height: 60px;
}

.con2 #wrap .title p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.con2 #wrap .title button {
  display: block;
  cursor: pointer;
  margin-top: 30px;
  width: 190px;
  height: 50px;
  background-color: #0080f6;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.con2 #wrap .title button:hover {
  background-color: #033989;
}

.con2 #wrap .content {
  margin: 100px 0 70px 0;
}

.con2 #wrap .content ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.con2 #wrap .content ul li {
  text-align: center;
  cursor: pointer;
  position: relative;
  /* ::before를 기준으로 위치 설정 */
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.con2 #wrap .content ul li strong {
  display: block;
  font-weight: 500;
  margin-top: 30px;
}

.con2 #wrap .content ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  /* 초기 크기 0 */
  width: 150px;
  /* 원의 크기 */
  height: 150px;
  background: #ffffff;
  /* 흰색 배경 */
  opacity: .2;
  border-radius: 50%;
  /* 원형 */
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* 그림자 추가 */
  z-index: -1;
  /* 원을 li 뒤로 보이게 */
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  /* 부드러운 스케일 변화 */
}

.con2 #wrap .content ul li:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  /* 원 확대 */
}

.con2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
  /* 클릭 이벤트가 오버레이를 통과하도록 설정 */
}

/* 자식 요소들이 오버레이 위에 표시되도록 설정 */
.con2 > * {
  position: relative;
  z-index: 2;
}

/*con3*/
.con3 {
  background: linear-gradient(137deg, #f1bef1 0%, #aedaee 50%, #e5edee 100%);
  padding: 0;
}

.con3 #wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  height: 700px;
}

.con3 .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 700px;
  color: #fff;
}

@media (max-width: 1000px) {
  .con3 .title strong {
    font-size: 30px;
    line-height: 50px;
  }
}

@media (max-width: 640px) {
  .con3 .title strong {
    font-size: 25px;
    line-height: 40px;
  }
}

.con3 .title strong .point {
  color: #FF7700;
}

.con3 .title p {
  font-weight: 300;
}

.con3 .content {
  position: relative;
  /* 애니메이션 초기 상태 */
  /* 애니메이션 활성화 상태 */
}

.con3 .content img {
  position: absolute;
}

.con3 .content .phone {
  bottom: 0;
  left: 200px;
}

.con3 .content .bubble1 {
  top: 250px;
  right: 0;
}

.con3 .content .bubble2 {
  left: 61px;
  bottom: 160px;
}

.con3 .content .bubble3 {
  bottom: 50px;
  right: -135px;
}

.con3 .content .icon1 {
  top: 200px;
  left: -30px;
  -webkit-animation: float 5s ease-in-out infinite;
          animation: float 5s ease-in-out infinite;
}

.con3 .content .icon2 {
  top: 335px;
  left: 80px;
  -webkit-animation: float 4s ease-in-out infinite;
          animation: float 4s ease-in-out infinite;
}

.con3 .content .icon3 {
  bottom: 22px;
  left: 240px;
  -webkit-animation: float 5s ease-in-out infinite;
          animation: float 5s ease-in-out infinite;
}

.con3 .content .icon4 {
  top: 414px;
  right: 50px;
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}

.con3 .content .icon5 {
  top: 360px;
  right: -63px;
  -webkit-animation: float 4s ease-in-out infinite;
          animation: float 4s ease-in-out infinite;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    /* 위로 20px 이동 */
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    /* 다시 원래 위치로 */
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    /* 위로 20px 이동 */
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    /* 다시 원래 위치로 */
  }
}

.con3 .content .animate-left {
  opacity: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-out, -webkit-transform 1s ease-out;
}

.con3 .content .animate-right {
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-out, -webkit-transform 1s ease-out;
}

.con3 .content .animate-left.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.con3 .content .animate-right.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.bottom_banner {
  width: 100%;
  height: 104px;
  background: linear-gradient(137deg, #4557ff, #e089ff);
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 640px) {
  .bottom_banner {
    padding: 10px;
    font-size: 15px;
    line-height: 25px;
  }
}

.bottom_banner button {
  background-color: #f02424;
  border-radius: 30px;
  width: 174px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: 500;
  margin-left: 40px;
}

/*modal*/
.modal-bg {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.modal-wrap {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  z-index: 1000;
}

.modal-wrap .close-btn {
  position: absolute;
  cursor: pointer;
  right: 25px;
  top: 25px;
}

.modal-wrap .close-btn i {
  font-size: 35px;
}

.modal-wrap img {
  width: 500px;
}
/*# sourceMappingURL=main.css.map */