/* BASIC css start */
/* BASIC css start */


/* font setting */
@charset "UTF-8";
@import 'https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css';
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url("https://fastly.jsdelivr.net/gh/wanteddev/wanted-sans@v1.0.1/packages/wanted-sans/fonts/webfonts/variable/split/WantedSansVariable.min.css");

@font-face {
  font-family: SOYO-Maple;
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2310@1.0/SOYOMapleBoldTTF.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: SOYO-Maple;
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2310@1.0/SOYOMapleRegularTTF.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}


/* animation */
@keyframes float-20 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
    /* ÅØ½ºÆ®°¡ À§·Î ÀÌµ¿ */
  }

  100% {
    transform: translateY(0);
    /* ÅØ½ºÆ®°¡ ¿ø·¡ À§Ä¡·Î µ¹¾Æ¿È */
  }
}

@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* initialized font-size */
:root {
  --font-size: 6.25%;
}

html,
body {
  font-size: var(--font-size);
}


/* replace banner from embassador */
.epson-ambassador-inner {
  width: 1440rem;
  height: 100%;
  margin: 0 auto;
}

.epson-ambassador-parallax {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.epson-ambassador-kv {
  position: relative;
  overflow: hidden;
  height: 50vw;
  max-height: 800px;
  background: url(//epsonkorea.img4.kr/ambassador/assets/images/desktop/kv_bg_20241128.png) no-repeat 50% 50%;
  background-size: cover;
}

.epson-ambassador-kv-obj01 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15rem 0 0 345rem;
  transform: translate(-50%, -50%);
}

.epson-ambassador-kv-obj01 img {
  width: 670rem;
  animation: float-20 6s ease-in-out infinite;
}

.epson-ambassador-kv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -20rem 0 0 -400rem;
  transform: translate(-50%, -50%);
}

.epson-ambassador-kv-title h1 {
  margin: 0 0 50rem 0;
  font-size: 110rem;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.38rem;
  text-align: left;
  color: #fff;
  background: linear-gradient(138deg, #0dccff, #091ca9);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-flow 4s ease infinite;
  font-family: "Wanted Sans Variable";
}

.epson-ambassador-kv-title p {
  font-size: 30rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: -1.08rem;
  text-align: left;
  color: #e1e1e1;
}









/* content */
.ambassador {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 14px;
}

.ambassadorWrap {
  padding-top: 90px;
  position: relative;
}

.ambassadorList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.ambassadorList h3 {
  margin: 40px auto 0;
  font-size: 70px;
}

.ambassadorList.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: all ease .2s;
}

.ambassadorItem {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.ambassadorItem .left {
  width: calc(70% - 15px);
  height: 30vw;
  max-height: 450px;
  cursor: pointer;
}

.ambassadorItem .left .thumb {
  height: 100%;
}

.ambassadorItem .left .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: all ease .2s;
}

.ambassadorItem .left .desc {
  text-align: center;
}

.ambassadorItem .left .desc h3 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
}

.ambassadorItem .left .desc p {
  font-size: 14px;
  font-weight: 500;
  color: var(--3);
  line-height: 1.5;
}

.ambassadorItem .right {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ambassadorItem .right > div:not(:first-child) {
  margin-top: 10px;
}

.ambassadorItem .right .list a {
  border-radius: 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  transition: all ease .2s;
  text-align: center;
  overflow: hidden;
  display: block;
}

.ambassadorItem .right .list a img {
  max-width: 100%;
}

.ambassadorItem .right .list-desc {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ambassadorItem .right .list-desc a {
  font-size: 16px;
  letter-spacing: -.5px;
  display: inline-block;
  color: var(--3);
  margin: 0 2px;
  font-weight: 500;
  transition: all ease .1s;
}

.paging a {
  padding: 0 6px;
  margin: 0 6px;
}

.paging .now {
  border-bottom: 2px solid #000;
}

.boardTab {
  padding: 90px 0 50px;
}

.boardTab ul {
  display: flex;
  border-bottom: 1px solid #dddddd;
  justify-content: flex-start;
}

.boardTab ul li {
  padding-bottom: 15px;
  position: relative;
}

.boardTab ul li+li {
  margin-left: 50px;
}

.boardTab ul li a {
  color: var(--3);
  font-size: 18px;
  font-weight: 500;
}


.cateSwiper {
  border-bottom: 1px solid #dddddd;
}

.cateSwiper .swiper-slide {
  padding-bottom: 15px;
  width: auto;
}

.cateSwiper .swiper-slide::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--1);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: all ease .2s;
}

.cateSwiper .swiper-slide.on::after {
  width: 100%;
}

.cateSwiper .swiper-slide button {
  color: var(--3);
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  transition: all ease .2s;
}

.cateSwiper .swiper-slide.on button {
  color: var(--1);
}

.flex_img2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.flex_img2 li {
  width: 50%;
}

.flex_img2 li img {
  width: 100%;
}


/* ************************************************************************************************
 *                                                                                                *
 *     *        *       ******       *           *     *********     ******            *          *
 *     *        *     **      **      *         *      *             *     *           *          *
 *     *        *    *          *      *       *       *             *     *           *          *
 *     **********    *          *       *     *        *********     * ****        *   *   *      *
 *     *        *    *          *        *   *         *             * **           *  *  *       *
 *     *        *     **      **          * *          *             *   **          *****        *
 *     *        *       ******             *           *********     *     **          *          *     
 *                                                                                                *
 ************************************************************************************************ */

@media (hover: hover) and (pointer: fine) {
  
  .cateSwiper .swiper-slide:not(.on) button:hover {
    color: #000;
  }

  .ambassadorItem .left .thumb:hover img,
  .ambassadorItem .right .list:hover a {
    box-shadow: 0 10px 10px rgba(0, 0, 0, .3);
    transform: translateY(-5px);
  }

  .ambassadorItem .right .list-desc a:hover {
    color: #000;
  }

}


/* **********************************************************
 *                                                          *
 *     ******      *********    ********        *           *
 *     *     *     *            *               *           *
 *     *     *     *            *               *           *
 *     * ****      *********    ********    *   *   *       *
 *     * **        *                   *     *  *  *        *
 *     *   **      *                   *      *****         *
 *     *     **    *********    ********        *           *
 *                                                          *
 ********************************************************** */

@media only screen and (max-width: 1024px) {
  .loc-navi {
    display: none;
  }

  /* replace banner from embassador */
  .epson-ambassador-inner {
    width: 100%;
  }

  .epson-ambassador-kv {
    height: 800px;
    background: url(//epsonkorea.img4.kr/ambassador/assets/images/mobile/kv_bg_mob_20241128.png) no-repeat 50% 50%;
    background-size: cover;
  }

  .epson-ambassador-kv-obj01 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 220px 0 0 0;
    transform: translate(-50%, -50%);
  }

  .epson-ambassador-kv-obj01 img {
    width: 250px;
    animation: float-20 6s ease-in-out infinite;
  }

  .epson-ambassador-kv-title {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    margin: -140px 0 0 0;
    transform: translate(0, -50%);
    text-align: center;
  }

  .epson-ambassador-kv-title h1 {
    margin: 0 0 20px 0;
    font-size: 86px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.03;
    letter-spacing: normal;
    background: linear-gradient(138deg, #0dccff, #091ca9);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-flow 4s ease infinite;
    text-align: center;
  }

  .epson-ambassador-kv-title p {
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.45;
    letter-spacing: -0.4rem;
    text-align: center;
    color: #e1e1e1;
  }


  .cateSwiper .swiper-slide:not(.on) button:active {
    color: #000;
  }

  .ambassadorWrap {
    padding-top: 40px;
  }

  .ambassadorItem {
    width: 100%;
    margin-bottom: 50px;
  }

  .ambassadorItem .left .thumb:active img {
    box-shadow: none;
    transform: scale(.98);
  }

  .ambassadorItem .right .list:active a img {
    border: 1px solid var(--3);
  }
  
  .ambassadorItem .right .list-desc a {
    font-size: 1.6vw;
  }

}


/* *****************************************************************************************************
 *                                                                                                     *
 *     ***        ***       ******       *******      ***     *           *********         *          *
 *     *  *      *  *     **      **     *     **      *      *           *                 *          *
 *     *   *    *   *    *          *    *      *      *      *           *                 *          *
 *     *    *  *    *    *          *    *  ****       *      *           *********     *   *   *      *
 *     *     **     *    *          *    *      *      *      *           *              *  *  *       *
 *     *            *     **      **     *     **      *      *           *               *****        *
 *     *            *       ******       *******      ***     *********   *********         *          *     
 *                                                                                                     *
 ***************************************************************************************************** */

@media all and (max-width: 767px) {
  /* animation */
  @keyframes float-20 {
    0% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-2vw);
    }
  
    100% {
      transform: translateY(0);
    }
  }


  /* replace banner from embassador */
  .epson-ambassador-kv {
    background-position: top center;
    height: 190vw;
  }

  .epson-ambassador-kv-obj01 {
    margin: 0;
    transform: translate(-50%, calc(-50% - -30vw));
  }

  .epson-ambassador-kv-obj01 img {
    width: 250rem;
  }

  .epson-ambassador-kv-title {
    margin: -120rem 0 0 0;
  }

  .epson-ambassador-kv-title h1 {
    margin: 0 0 4vw 0;
    font-size: 12vw;
  }

  .epson-ambassador-kv-title p {
    font-size: 4vw;
  }


  /* content */
  .ambassadorList h3 {
    font-size: 10vw;
  }

  .ambassadorItem {
    width: 100%;
    margin-bottom: 12vw;
    display: flex;
    flex-direction: column;
  }

  .ambassadorItem .left {
    width: 100%;
    height: auto;
    max-height: fit-content;
  }

  .ambassadorItem .left .desc h3 {
    font-size: 24px;
    margin-top: 20px;
  }

  .ambassadorItem .left .desc p {
    line-height: 1.6;
  }

  .ambassadorItem .right {
    width: 100%;
    margin-top: 6vw;
  }

  .ambassadorItem .right .list a img {
    max-height: auto;
  }

  .ambassadorItem .right > div:not(:first-child) {
    margin-top: 3vw;
  }
  
  .ambassadorItem .right .list-desc a {
    font-size: 4vw;
  }

  .paging a {
    font-size: 15px;
    height: 32px;
    line-height: 36px;
  }

  .boardTab {
    padding: 60px 0 33px;
  }

  .flex_img2 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .flex_img2 li {
    width: 100%;
  }

  .flex_img2 li img {
    width: 100%;
  }

}

/* BASIC css end */
/* BASIC css end */

