@charset "utf-8";

/* ----------------------------------------------------------------------------------------
버전 : 1.0
날짜 : 2024-02-29
작성자 : 박고은
프로그램명 : 공통 / 사용자 페이지 전체 css
---------------------------------------------------------------------------------------- */


/* 전체 inner 레이아웃 */
.wrap-inner {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/* 콘텐츠 inner 레이아웃 */
.width-inner {
    width: calc(100% - 25%) !important;
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 0 12.5% !important;
    box-sizing: content-box !important;
    position: relative;
}

/* tablet, mobile kv 영역 */
.kv-mo {
    display: none;
}
/* detail - side list 버튼 */
#service-btn {
    display: none;
}

/* 각 섹션 타이틀 박스 */
.t-box {
    text-transform: uppercase;
    position: relative;
}
/* sub title 서브제목 */
.sub {
    font-size: 30px;
    font-weight: 700;
    color: #9a9a9a;
    line-height: 1em;
    margin-bottom: 36px;
}
/* main title 메인제목 */
.title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    font-size: 6.25vw;
    font-weight: 700;
    line-height: 0.8333em;
    flex-wrap: nowrap;
    gap: 15px;
}

/* 콘텐츠 - 텍스트 줄 높이 */
.contact .title{
  line-height: 1em;
}
/* 배경색 - 화이트 */
.bg-white {
    background-color: #fff;
}
/* 배경색 - 블랙 */
.bg-black {
    background-color: #000;
}

/* LEARN MORE 버튼 css */
.more-box {
    display: flex;
}
/* MORE 버튼 */
.more-btn {
    flex: 0 0 255px;
    line-height: 1.5555em;
    padding: 9px 43px;
    box-sizing: border-box;
    background-color: #000;
    letter-spacing: -0.05em;
    color: #fff;
    border: 1px solid #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.more-btn::after {
    content: "";
    display: block;
    width: 18px;
    height: 17px;
    background: url(../images/more_arrow_white.png) center center/contain no-repeat;
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
}


/* 공통 button */
.btn {
    width: 80px;
    height: 80px;
    border: 1px solid #707070;
    border-radius: 50%;
    text-indent: -9999px;
    position: fixed;
    right: 30px;
    z-index: 998;
    display: none;
}
/* TOP 버튼 */
#top-btn {
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 190px;
}
#top-btn::after {
    content: "";
    display: block;
    width: 24px;
    height: 33px;
    background: url(../images/top_arrow.png) center center/contain no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* get in touch 버튼 */
#touch-btn {
    background-color: rgba(0, 0, 0, 0.7);
    bottom: 100px;
}
#touch-btn::after {
    content: "";
    display: block;
    width: 42px;
    height: 40px;
    background: url(../images/send_icon.png) center center/contain no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* 넘치는 텍스트 말줄임 처리  */
.list-title {
  text-overflow: ellipsis;
  display: -webkit-box; 
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical; 
  overflow: hidden; 
}

.list-txt {
    text-overflow: ellipsis;
    display: -webkit-box; 
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical; 
    overflow: hidden; 
}

@media (min-width: 481px) and (max-width: 1480px) {
    .sub {
        font-size: 17px;
        margin-bottom: 14px;
    }
    .more-btn {
        flex: 0 0 220px;
        font-size: 16px;
    }

    .btn { /* TOP 버튼 */
        width: 55px;
        height: 55px;
    }
    #top-btn {
        bottom: 164px;
    }
    #top-btn::after {
        width: 22px;
        height: 26px;
    }

    #touch-btn::after {
        width: 29px;
        height: 28px;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .title {
        font-size: 6.5104vw;
    }
}
@media all and (max-width: 480px) {
    .t-box {
        position: initial;
    }
    .sub {
        font-size: 12px;
        margin-bottom: 14px;
    }
    .title {
        font-size: 32px;
        line-height: 30px;
        display: block;
    }
    .more-box {
        display: block;
    }
    .more-btn {
        width: 200px;
        padding: 9px 33px;
        font-size: 18px;
    }
    .more-btn::after {
        width: 12px;
        height: 11px;
        right: 10%;
    }
    .btn { /* TOP 버튼 */
        width: 50px;
        height: 50px;
    }
    #top-btn {
        bottom: 156px;
    }
    #top-btn::after {
        width: 20px;
        height: 22px;
    }
    #touch-btn::after {
        width: 27px;
        height: 25px;
    }
}

/************************************************ header ************************************************/
header {
    position: fixed;
    width: 100%;
    height: 90px;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.20);
    z-index: 99;
    transition: all 0.3s ease-out;
}

header .width-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo a {
    width: 215px;
}
header .logo a img {
    width: 100%;
}
/* GNB 햄버거 버튼 디자인 */
header .menu-trigger,
header .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
}

header .menu-trigger {
    position: relative;
    display: block;
    width: 25px;
    height: 14px;
    transition: 0.5s ease-out all;
    z-index: 9999;
}

header .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
}

header .menu-trigger span:nth-of-type(1) {
    top: 0;
}

header .menu-trigger span:nth-of-type(2) {
    bottom: 0;
}

header .menu-trigger.on span {
    background-color: #000;
}

header .menu-trigger.on span:nth-of-type(1) {
    -webkit-transform: translateY 5px rotate -45deg;
    transform: translateY(5px) rotate(-45deg);
}

header .menu-trigger.on span:nth-of-type(2) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
}


@media all and (max-width: 769px) {
    header {
        height: 77px;
    }
    header .logo a {
        width: 165px;
        height: 17px;
    }
    header .logo a img {
        width: 100%;
    }
    header .menu-trigger {
        width: 20px;
        height: 14px;
        /* outline: 2px solid; */
    }
    header .menu-trigger span {
        height: 3px;
    }
    header .menu-trigger.on span:nth-of-type(1) {
        -webkit-transform: translateY 4px rotate -45deg;
        transform: translateY(4px) rotate(-45deg);
    }

    header .menu-trigger.on span:nth-of-type(2) {
        -webkit-transform: translateY(-7px) rotate(45deg);
        transform: translateY(-7px) rotate(45deg);
    }
    /* 프라이버시 페이지 header 닫기 버튼 */
    header .menu-trigger img {
        width: 18px;
        height: 18px;
    }
}
@media all and (max-width: 480px) {
    header {
        height: 57px;
    }
}


/************ index ************/
main {
    width: 100%;
}

/* index = .key-visual 동영상 */
section.key-visual {
    width: 100%;
    position: relative;
}
.key-visual .wrap-inner {
    position: relative;
}
.key-visual video, #videoPlayer {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
    display: block;
    /* background: url(/assets/images/videoframe_220.png) center center / cover no-repeat; */
}

@media all and (min-width: 1921px) {
    .key-visual .wrap-inner {
        max-width: 100%;
        height: 100vh;
        position: relative;
    }
    .key-visual video, #videoPlayer {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        display: block;
    }
}
.key-visual .width-inner {
    position: absolute;
    left: 50%;
    /* top: 184px; */
    top: 17.037%;
    transform: translateX(-50%);
}
.key-visual .width-inner p {
    text-align: right;
    font-size: 30px;
    /* font-size: 1.5625vw; */
    font-weight: 300;
    line-height: 1.3333em;
    /* text-transform: uppercase; */
}
.key-visual .width-inner p {
    position: relative;
}
.key-visual .width-inner p span {
    font-weight: 700;
    position: absolute;
    left: calc(100% + 6px);
    top: 0;
}
.key-visual .width-inner p b {
    font-weight: 700;
}

/* index - .about 영역 */
section.about {
    width: 100%;
    background: url(../images/about_bg.jpg) center top/cover no-repeat;
    background-attachment: fixed;
}
section.about > div {
    padding: 150px 0;
    /* background-color: rgba(255,255,255,0.95); */
}
.sub.black {
    color: #000;
}
.title.black {
    color: #000;
}
/* .about 본문 내용 여백 */
.about .txt {
    padding: 75px 0 0;
}
.about .txt p {
    font-size: 1.4583vw;
    font-weight: 300;
    line-height: 1.2857em;
    letter-spacing: -0.05em;
    color: #000;
}

/* index - .work */
section.work {
    width: 100%;
    padding: 150px 0;
    position: relative;
}
/* .work 슬라이드 영역 */
.work .swiper {
    width: 100%;
    overflow: visible;
}
.work .swiper .swiper-wrapper {
    width: 100%;
    display: flex;
}
/* .work 슬라이드 영역 - 각 슬라이드 */
.work .swiper .swiper-wrapper .swiper-slide {
    width: 42.6389%;
    margin-right: 2.7778%;
    aspect-ratio: initial;
    object-fit: initial;
}
.work .swiper .swiper-wrapper .swiper-slide:last-of-type {
    margin-right: 0;
}
.work .swiper .swiper-wrapper .swiper-slide.last {
    /* width: calc( 615px / 2 ); */
}
.work .swiper .swiper-wrapper .swiper-slide a {
    color: #fff;
}

/* .work 슬라이드 이미지 박스 */
.work .swiper .swiper-wrapper .swiper-slide .img-box {
    width: 100%;
    margin: 35px 0 30px;
}
.work .swiper .swiper-wrapper .swiper-slide .img-box img {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
}
/* .work 슬라이드 텍스트 박스 */
.work .swiper .swiper-wrapper .swiper-slide .info-box {
    letter-spacing: -0.02em;
}
.work .swiper .swiper-wrapper .swiper-slide .info-box h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5em;
    padding: 0.5em 1.15em;
    color: #9A9A9A;
    letter-spacing: -0.02em;
    border: 1px solid #9a9a9a;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
}
.work .swiper .swiper-wrapper .swiper-slide .info-box h2 {
    margin: 0.5333em 0 0.2em;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.533em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.work .swiper .swiper-wrapper .swiper-slide .info-box p {
    font-size: 20px;
}
.work .swiper .swiper-wrapper .swiper-slide .info-box p.list-title {
    margin-bottom: 1em;
    font-weight: 500;
    letter-spacing: -0.02em;
}
.work .swiper .swiper-wrapper .swiper-slide .info-box p.list-txt {
    color: #9E9E9E;
    font-weight: 400;
    line-height: 1.35em;
    letter-spacing: -0.02em;
}

/* .service */
section.service {
    width: 100%;
    padding: 150px 0;
    color: #000;
}
.service .width-inner {
    position: relative; /* 서비스 .more-btn의 기준! */
}
/* .service 상단 이미지, 텍스트 영역 */
.service .width-inner .service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* .service 상단 이미지 영역 */
.service .width-inner .service-top .acco-img{
    max-width: 462px;
    width: 32%;
}
.service .width-inner .service-top .acco-img img {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
    display: none;
}
.service .width-inner .service-top .acco-img img.on {
    display: block;
}

/* .service 카테고리 리스트 영역  */
.service .acco-list .acco-item {
    border-bottom: 2px solid #E6E6E6;
    position: relative;
}
.service .acco-list .acco-item a.acco-link {
    position: relative; /* a.acco-link::before의 기준! */
}

/* .service 카데고리 리스트 영역 - 제목 */
.service .acco-list .acco-item a.acco-link .acco-name {
    font-size: 30px;
    font-weight: 700;
}
.service .acco-list .acco-item button {
    display: block;
    width: 47px;
    height: 50px;
    background: url(../images/ico_down.png) right top/48px auto no-repeat;
    position: absolute;
    right: 0;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}
.service .acco-list .acco-item.on button{
    background: url(../images/ico_up.png) right top/48px auto no-repeat;
}
.service .acco-list .acco-item > a {
  padding: 25px 0;
}
/* .service 카데고리 리스트 영역 - 내용 */
.service .acco-list .acco-item a.acco-link .acco-desc {
    font-size: 20px;
    font-weight: 500;
    color: #6b6b6b;
    letter-spacing: -0.02em;
    padding-top: 12px;
    line-height: 1.35em;
    display: none;
    padding-right: 55px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: none;
}
.service .acco-list .acco-item.on a.acco-link .acco-desc {
    /* display: block; */
}
.service .width-inner .more-btn {
    width: 255px;
    float: right;
    margin-top: 40px;
}

/* index - .client */
section.client {
    width: 100%;
    padding: 150px 0;
}
.client .t-box {
    margin-bottom: 47px;
}

/* .client 슬라이드 영역 */
.client .swiper {
    width: 100%;
    padding-bottom: 50px;
    overflow: visible;
}
.client .swiper .swiper-wrapper {
    width: 100%;
    display: flex;
}
.client .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    aspect-ratio: 227/140;
    object-fit: cover;
    border: 1px solid #D8D8D8;
    box-sizing: border-box;
}

/* .client 슬라이드 페이지네이션 */
.client .swiper-pagination {
    width: 100% !important;
}
.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255, 255, 255, 1) !important;
}
.swiper-pagination-bullet-active {
    width: 79px !important;
    height: 10px !important;
    border-radius: 5px !important;
    background-color: #fff !important;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px !important;
}

section.about .more-btn, section.work .more-btn, section.service .more-btn {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}
section.about .more-btn::after, section.work .more-btn::after, section.service .more-btn::after {
    background: url(../images/more_arrow_black.png) center center/contain no-repeat;
}
section.about .more-btn:hover, section.work .more-btn:hover, section.work .more-btn:hover, section.service .more-btn:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
}
section.about .more-btn:hover::after, section.work .more-btn:hover::after, section.service .more-btn:hover::after {
    background: url(../images/more_arrow_white.png) center center/contain no-repeat;
}

.cookie {
  width: 370px;
  /* height: 208px; */
  color: #000;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
  box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.4);
  display: none;
}

.cookie-wrap {
  margin: 30px;
}

.cookie h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1em;
  white-space: nowrap;
}

.cookie h3 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.125em;
  color: #6B6B6B;
  padding: 16px 0 20px;
}

.cookie .cookie-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9px;
  position: relative;
}

.cookie .cookie-btn .gline{
  display: block;
  width: 1px;
  flex: 0 0 1px;
  height: 20px;
  border-right: 1px solid #6b6b6b;
}

.cookie .cookie-btn .accept {
  flex: 0 0 140px;
  height: 38px;
  font-size: 15px;
  padding: 8px 41px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0em;
  box-sizing: border-box;
  text-align: center;
  background-color: #000;
  color: #fff;
  display: flex;
  /* 텍스트 중앙 정렬을 위한 flex 사용 */
  justify-content: center;
  align-items: center;
}

.cookie .cookie-btn .policy {
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  /* text-decoration: underline; */
}

/* 공지사항 팝업 및 dimm */
#black {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.35);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    display: none;
}
/* 공지사항 팝업창 */
.notie {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: #000;
}
/* 공지사항 팝업 - 텍스트 버전 */
.notie .width-inner .text-popup {
    position: fixed;
    height: 52.8703vh;
    min-height: 447px;
    aspect-ratio: 748 / 571;
    object-fit: fill;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 998;
    background-color: #fff;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    padding: 50px 60px;
    display: none;
}
/* 공지사항 팝업 - 닫기 버튼 */
.notie .width-inner .text-popup .pop-btn {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 20px;
}
.notie .width-inner .text-popup .pop-btn img {
    width: 100%;
}
/* 공지사항 팝업 텍스트 버전 - 제목 */
.notie .width-inner .text-popup .pop-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 0 0 auto;
}
/* 공지사항 팝업 텍스트 버전 - 본문 내용 */
.notie .width-inner .text-popup .scroll_box .pop-txt {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.75em;
    color: #6B6B6B;
}

/* 공지사항 팝업 - 이미지 버전 */
.notie .width-inner .img-popup {
    position: fixed;
    height: 73.3333vh;
    min-height: 447px;
    aspect-ratio: 748 / 792;
    object-fit: fill;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 998;
    background-color: #fff;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    padding: 80px 60px 50px;
    display: none;
}
.notie .width-inner .img-popup .pop-btn {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 20px;
}
.notie .width-inner .img-popup .pop-btn img {
    width: 100%;
}
.notie .width-inner .img-popup .pop-ibox img {
    width: 100%;
    aspect-ratio: 628/320;
    object-fit: cover;
}
/* 공지사항 팝업 이미지 버전 - 제목 */
.notie .width-inner .img-popup .pop-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1em;
    margin: 27px 0 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 0 0 auto;
}
/* 공지사항 팝업 이미지 버전 - 본문 내용 */
.notie .width-inner .img-popup .scroll_box .pop-txt {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.75em;
    color: #6B6B6B;
}
/* 스크롤바 이미지 박스 */
.notie .width-inner .img-popup .scroll_box {
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
    padding-right: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    margin-bottom: 30px;
    background: url(../images/img_bg.png) right bottom/contain no-repeat;
}

/* 스크롤바 텍스트 박스 */
.notie .width-inner .text-popup .scroll_box {
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
    padding-right: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    margin-bottom: 30px;
    background: url(../images/txt_bg.png) right bottom/contain no-repeat;
}

/* 스크롤바 설정*/
.scroll::-webkit-scrollbar{
    width: 4px;
}
/* 스크롤바 막대 설정*/
.scroll::-webkit-scrollbar-thumb{
    background-color: #000;
}
/* 스크롤바 뒷 배경 설정*/
.scroll::-webkit-scrollbar-track{
    background-color: #cbcbcb;
}

/* 체크박스 */
.notie label {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    flex: 0 0 auto;
}
.notie label input[type="checkbox"] {
    display: none;
}
.notie label input[type="checkbox"]:checked + .showCheckbox {
    width: 30px;
    height: 29px;
    background: url(../images/checkbox_on.png) center center/30px 30px no-repeat;
}
.notie label .showCheckbox {
    width: 30px;
    height: 29px;
    background: url(../images/checkbox.png) center center/30px 30px no-repeat;
}
.notie label span {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.9em;
}

@media all and (min-width: 769px) and (max-width: 1480px) {
    /* .about */
    .about .txt p {
        font-size: 1.8918vw;
    }
    section.about > div {
        padding: 10.1351vw 0;
    }
    section.service, section.client {
        padding: 10.1351vw 0;
    }
    section.work {
        padding: 10.1351vw 0;
    }
    /* .work */
    .work .swiper .swiper-wrapper .swiper-slide .img-box {
        margin: 2.027vw 0;
    }
    .work .swiper .swiper-wrapper .swiper-slide .info-box h3 {
        font-size: 1.3513vw;
    }
    .work .swiper .swiper-wrapper .swiper-slide .info-box h2 {
        font-size: 2.027vw;
    }
    .work .swiper .swiper-wrapper .swiper-slide .info-box p {
        font-size: 1.3513vw;
    }
    /* .service */
    /* .service .acco-list .acco-item a.acco-link .acco-name {
        font-size: 2.027vw;
    }
    .service .acco-list .acco-item a.acco-link .acco-desc {
        font-size: 1.3513vw;
    }
    .service .acco-list .acco-item a.acco-link::before {
        width: 36px;
        height: 36px;
    } */
    .service .width-inner .more-btn {
        width: 220px;
    }
}

/* @media all and (max-width: 1440px) {
    .work .swiper {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
} */

@media all and (min-width: 769px) and (max-width: 1120px) {
    /* .work */
    .work .swiper .swiper-wrapper .swiper-slide .info-box h3 {
        font-size: 16px;
    }
    .work .swiper .swiper-wrapper .swiper-slide .info-box h2 {
        font-size: 22px;
    }
    .work .swiper .swiper-wrapper .swiper-slide .info-box p {
        font-size: 16px;
    }
    /* .service */
    .service .width-inner .service-top {
        gap: 3.5714vw;
    }
    .service .width-inner .more-btn {
        width: 220px;
    }
    /* .cookie .width-inner h2 {
        font-size: 2.6785vw;
    }
    .cookie .width-inner h3 {
        font-size: 1.7857vw;
    } */
}

@media all and (max-width: 900px) {
     /* 팝업 텍스트 버전 */
    .notie .width-inner .text-popup {
        width: calc(100% - 100px);
        padding: 40px 50px;
    }
    .notie .width-inner .img-popup {
        width: calc(100% - 100px);
        padding: 70px 50px 40px;
    }
}


/* 테블릿 481 ~ 768 */
@media all and (min-width: 481px) and (max-width: 768px) {
    .service .acco-list .acco-item a.acco-link .acco-name {
      font-size: 22px;
    }
    .service .acco-list .acco-item a.acco-link .acco-desc {
      font-size: 14px;
    }
    .service .acco-list .acco-item button {
      width: 36px;
      height: 38px;
      background: url(../images/ico_down.png) right top/36px auto no-repeat;
    }
    .service .acco-list .acco-item.on button{
        background: url(../images/ico_up.png) right top/36px auto no-repeat;
    }
    section.service, section.client {
        padding: 13.0208vw 0;
    }
    section.work {
        padding: 13.0208vw 0;
    }
    section.about > div {
        padding: 13.0208vw 0;
    }

    .key-visual video, #videoPlayer {
        display: none;
    }
    .key-visual .kv-mo {
        display: block;
    }
    .key-visual .kv-mo img {
        width: 100%;
        aspect-ratio: 768/1023;
        object-fit: cover;
    }
    .key-visual .width-inner {
      top: 20.2346%;
    }
    .key-visual .width-inner p {
        font-size: 3.90625vw;
    }

    .about .txt p {
        font-size: 15px;
    }

    .work .swiper .swiper-wrapper {
        /* gap: 30px; */
    }
    .work .swiper .swiper-wrapper .swiper-slide {
        width: 74.8503%;
    }

    .work .swiper .swiper-wrapper .swiper-slide .img-box {
        margin: 3.9062vw 0;
    }
    .work .swiper .swiper-wrapper .swiper-slide .img-box img  {
        width: 100%;
        object-fit: cover;
    }
    .work .swiper .swiper-wrapper .swiper-slide .info-box h3 {
        font-size: 14px;
    }
    .work .swiper .swiper-wrapper .swiper-slide .info-box h2 {
        font-size: 22px;
    }
    .work .swiper .swiper-wrapper .swiper-slide .info-box p {
        font-size: 15px;
    }

    .service .width-inner .service-top {
        gap: 5.2083vw;
    }
    .service .width-inner .more-btn {
        width: 220px;
    }
    .swiper-pagination-bullet {
        width: 6px !important;
        height: 6px !important;
        background: rgba(255, 255, 255, 0.9) !important;
    }
    .swiper-pagination-bullet-active {
        width: 47px !important;
        height: 6px !important;
        border-radius: 5px !important;
        background-color: #fff !important;
    }

    .cookie {
        width: 322px;
        /* height: 198px; */
    }
    .cookie-wrap {
        margin: 30px 30px 30px;
    }
    .cookie h2 {
        font-size: 22px;
    }
    .cookie h3 {
        font-size: 14px;
        padding: 13px 0 15px;
    }
    .cookie .cookie-btn {
        /* gap: 26px; */
    }               
    .cookie .cookie-btn .accept {
        font-size: 15px;
    }
    .cookie .cookie-btn .policy {
        font-size: 14px;
    }

    .notie .width-inner .text-popup .pop-btn {
        width: 18px;
        height: 18px;
    }
    .notie .width-inner .text-popup .pop-title {
        font-size: 28px;
    }
    .notie .width-inner .text-popup .scroll_box .pop-txt {
        font-size: 14px;
    }
    .notie label input[type="checkbox"]:checked + .showCheckbox {
      width: 20px;
      height: 20px;
      background: url(../images/checkbox_on.png) center center/20px 20px no-repeat;
    }
    .notie label .showCheckbox {
        width: 20px;
        height: 20px;
        background: url(../images/checkbox.png) center center/20px 20px no-repeat;
    }
    .notie label span {
        font-size: 14px;
    }

    .notie .width-inner .img-popup .pop-btn {
        width: 18px;
        height: 18px;
    }
    .notie .width-inner .img-popup .pop-title {
        font-size: 22px;
    }
    .notie .width-inner .img-popup .scroll_box .pop-txt {
        font-size: 14px;
    }
}

/* 모바일 */
@media all and (max-width: 480px) {
    section.service, section.client {
        padding: 55px 0;
    }
    section.work {
        padding: 55px 0;
        min-height: 653px;
    }
    section.work > .width-inner{
        min-height: 543px;
    }
    .key-visual video, #videoPlayer {
        display: none;
    }
    .key-visual .kv-mo {
        display: block;
    }
    .key-visual .kv-mo img {
        width: 100%;
        aspect-ratio: 768 / 1023;
        object-fit: cover;
    }
    .key-visual .width-inner {
      top: 20.2346%;
    }
    .key-visual .width-inner p {
        font-size: 14px;
    }
    section.about > div {
        padding: 55px 0;
    }
    .about .width-inner {
        padding-bottom: 70px !important;
    }
    .about .txt {
        padding: 30px 0 0 0;
    }
    .about .txt p {
        font-size: 15px;
    }
    .about .more-btn {
        position: absolute;
        bottom: 0;
    }
    .work .width-inner {
        position: initial;
    }
    .work .more-btn {
        position: absolute;
        bottom: 55px;
    }
    .work .swiper {
        /* padding-bottom: 80px; */
    }
    .work .swiper .swiper-wrapper {
        /* gap: 14px; */
    }
    .work .swiper .swiper-wrapper .swiper-slide {
        width: 95.625%;
    }
    .work .swiper .swiper-wrapper .swiper-slide .img-box {
        margin: 22px 0 30px;
    }
    .work .swiper .swiper-wrapper .swiper-slide .img-box img {
        width: 100%;
    }
    .work .swiper .swiper-wrapper .swiper-slide .info-box h3 {
        font-size: 11px;
        margin-bottom: 13px;
    }
    .work .swiper .swiper-wrapper .swiper-slide .info-box h2 {
        font-size: 18px;
        margin: 13px 0 13px;
    }
    .work .swiper .swiper-wrapper .swiper-slide .info-box p {
        font-size: 12px;
    }
    .work .swiper .swiper-wrapper .swiper-slide .info-box p.list-txt {
        font-size: 14px;
    }
    .service .width-inner .service-top {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 30px;
    }
    .service .width-inner .service-top .acco-img {
        width: 100%;
    }
    .service .width-inner .more-btn {
        width: 41.6666vw;
        padding: 1.875vw 8.9583vw;
        font-size: 3.75vw;
        float: left;
    }
    .more-btn::after {
        width: 12px;
        height: 11px;
        right: 10%;
    }
    .client .swiper {
        padding-bottom: 0;
    }
    .client .swiper-pagination {
        display: none;
    }
    .client .t-box {
        margin-bottom: 18px;
    }
    .cookie {
        width: 100%;
        /* height: 193px; */
    }
    .cookie-wrap {
        margin: 30px 20px 30px;
    }
    .cookie h2 {
        font-size: 23px;
        white-space: initial;
    }
    .cookie h3 {
        font-size: 14px;
        font-weight: 300;
        padding: 13px 0 15px;
    }
    .cookie .cookie-btn {
        justify-content: start;
        gap: 20px;
        flex-wrap: wrap;
    }
    .cookie .cookie-btn .accept {
        flex: 0 0 44%;
        padding: 10px 53px;
        font-size: 14px;
        height: 41px;
    }
    .cookie .cookie-btn .policy {
        font-size: 13px;
        flex: 0 0 auto;
    }
    .notie .width-inner .text-popup {
        width: 100%;
        padding: 50px 20px 20px;
        top: initial;
        bottom: 0;
        transform: translateX(-50%);
    }
    .notie .width-inner .text-popup .pop-btn {
        width: 18px;
        height: 18px;
    }
    .notie .width-inner .text-popup .pop-title {
        font-size: 18px;
    }
    .notie .width-inner .text-popup .scroll_box .pop-txt {
        font-size: 14px;
        font-weight: 300;
        margin: 20px 0 9px;
        line-height: 1.42em;
    }
    .notie .width-inner .text-popup .scroll_box {
        padding-right: 10px;
        margin-bottom: 20px;
    }
    .notie .width-inner .img-popup .scroll_box {
        padding-right: 10px;
        margin-bottom: 20px;
    }
    .notie label input[type="checkbox"]:checked + .showCheckbox {
      width: 20px;
      height: 20px;
      background: url(../images/checkbox_on.png) center center/20px 20px no-repeat;
    }
    .notie label .showCheckbox {
        width: 20px;
        height: 20px;
        background: url(../images/checkbox.png) center center/20px 20px no-repeat;
    }
    .notie label span {
        font-size: 14px;
    }
    .notie .width-inner .img-popup {
        width: 100%;
        padding: 50px 20px 20px;
        top: initial;
        bottom: 0;
        transform: translateX(-50%);
    }
    .notie .width-inner .img-popup .pop-btn {
        width: 18px;
        height: 18px;
    }
    .notie .width-inner .img-popup .pop-title {
        font-size: 18px;
        margin: 20px 0 9px;
    }
    .notie .width-inner .img-popup .scroll_box .pop-txt {
        font-size: 14px;
        font-weight: 300;
        line-height: 1.42em;
    }
}

/************************************************ who_we_are ************************************************/
/* 각 섹션 별 배경 및 글자색 */
section article:nth-child(odd) {
    background-color: #000;
    color: #fff;
}
section article:nth-child(even) {
    background-color: #fff;
    color: #000;
}
/* 각 섹션 상하단 여백값 */
section article {
    padding: 150px 0 180px;
}

/****** who we are - .wwa-kv ******/
section.wwa-kv {
    width: 100%;
}
.wwa-kv .wrap-inner {
    position: relative; /* .gradient의 기준! */
}
.wwa-kv .kv-img {
    width: 100%;
}
/* who we are - kv 영역 img */
.wwa-kv .kv-img img {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
}
.wwa-kv .gradient {
    width: 100%;
    height: 422px;
    background: linear-gradient(to bottom, transparent, black);
    position: absolute;
    left: 0;
    bottom: 0;
}
/* who we are kv 영역 - 텍스트 */
.wwa-kv .txt-box {
    text-transform: uppercase;
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 7.4074%;
    transform: translateX(-50%);
}
.wwa-kv .txt-box .width-inner h2 {
    font-size: 80px;
    font-weight: 700;
    line-height: 0.9375em;
}

/****** who we are - article title-box 공통 디자인 ******/
.wwa-tbox {
    margin-bottom: 100px;
}
.wwa-tbox h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.567em;
}
.wwa-tbox h2 {
    font-size: 70px;
    font-weight: 600;
    line-height: 1.07em;
    margin-bottom: 40px;
}
.wwa-tbox p {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.25em;
}
.wwa-tbox .t { /* span 태그 줄간격 */
    margin: 20px 0;
    display: block;
}
/* .wwa-imgbox - 콘텐츠 이미지 */
.wwa-imgbox {
    width: 100%;
}
.wwa-imgbox img {
    width: 100%;
    aspect-ratio: 1440/810;
    object-fit: cover;
}

/****** .our-services list ******/
.our-services ul {
    width: 100%;
}
.our-services ul li {
    width: 100%;
}
.our-services ul li a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 37px 0;
    border-bottom: 1px solid rgba(230, 230, 230, 0.27);
    gap: 12px 0;
}
.our-services ul li:last-child a {
    border: 0;
}
/* .our-services list - 제목 */
.our-services ul li a h2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1em;
    flex-basis: 475px;
    flex-shrink: 0;
}
/* .our-services list - 내용  */ 
.our-services ul li a .list-txt {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2083em;
    letter-spacing: -0.02em;
    color: #6B6B6B;
    width: 100%;
    flex: 0 1 auto;
    -webkit-line-clamp: 2;
}
@media all and (min-width: 769px) and (max-width: 1480px) {
  .our-services ul li a {
    flex-wrap: wrap;
  }
}

.our-services ul li:hover {
    background-color: #fff;
}
.our-services ul li:hover a h2 {
    color: #000;
}
.our-services ul li:hover a h3.list-txt {
    color: #000;
}
.vision {
    margin-bottom: 200px;
}

@media all and (min-width: 769px) and (max-width: 1480px) {
    section article {
        padding: 6.7567vw 0;
    }
    .wwa-kv .txt-box .width-inner h2 {
        font-size: 5.4054vw;
    }
}

/* 테블릿 */
@media all and (min-width: 481px) and (max-width: 768px) {
    section article {
        padding: 8.4635vw 0;
    }
    .wwa-kv .kv-img img {
        width: 100%;
        aspect-ratio: 768/1023;
        object-fit: cover;
    }
    .wwa-kv .gradient {
        height: 35.6445vw;
    }
    .wwa-kv .txt-box {
        bottom: 0;
    }
    .wwa-kv .txt-box .width-inner h2 {
        font-size: 6.5104vw;
    }

    /****** article title-box 공통 디자인 ******/
    .wwa-tbox {
        margin-bottom: 7.8125vw;
    }
    .wwa-tbox h3 {
        font-size: 17px;
    }
    .wwa-tbox h2 {
        font-size: 5.2083vw;
        margin-bottom: 20px;
    }
    .wwa-tbox p {
        font-size: 16px;
    }

    /****** .our-services list  ******/
    .our-services ul li a {
        flex-wrap: wrap;
        padding: 30px 0;
    }
    .our-services ul li a h2 {
        font-size: 26px;
        margin-bottom: 14px;
    }
    .our-services ul li a .list-txt {
        flex-basis: 100%;
        font-size: 20px;
    }
    .vision {
        margin-bottom: 100px;
    }
}

/* 모바일 */
@media all and (max-width: 480px) {
    section article {
        padding: 42px 0;
    }
    .wwa-kv .kv-img img {
        width: 100%;
        aspect-ratio: 360 / 640;
        object-fit: cover;
    }
    .wwa-kv .gradient {
        height: 62%;
    }
    .wwa-kv .txt-box {
        bottom: 0;
    }
    .wwa-kv .txt-box .width-inner h2 {
        font-size: 35px;
    }

    /****** article title-box 공통 디자인 ******/
    .wwa-tbox {
        margin-bottom: 37.5px;
    }
    .wwa-tbox h3 {
        font-size: 14px;
    }
    .wwa-tbox h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .wwa-tbox p {
        font-size: 15px;
    }
    .our-services ul li a {
        flex-wrap: wrap;
        padding: 20px 0;
    }
    .our-services ul li a h2 {
        font-size: 18px;
        margin-bottom: 14px;
    }
    .our-services ul li a .list-txt {
        flex-basis: 100%;
        font-size: 14px;
    }
    .vision {
        margin-bottom: 60px;
    }
}


/************************************************ what_we_do_list ************************************************/
/* 메인 MORE 버튼 */
.wwd-list .more-btn {
    margin-top: 2.5625vw;
}

/****** .subwrap ******/
.subwrap {
    color: #fff;
}
/****** what_we_do_list - .wwd-kv 영역 ******/
section.wwd-kv {
    width: 100%;
}
.wwd-kv .wrap-inner {
    position: relative;
}
.wwd-kv .kv-img {
    width: 100%;
}
/* .wwd-kv 이미지 사이즈 */
.wwd-kv .kv-img img {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
}
.wwd-kv .gradient {
    width: 100%;
    height: 422px;
    background: linear-gradient(to bottom, transparent, black);
    position: absolute;
    left: 0;
    bottom: 0;
}
/* what_we_do_list kv 텍스트 박스 */
.wwd-kv .txt-box {
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 7.4074%;
    transform: translateX(-50%);
}
.wwd-kv .txt-box .width-inner h3 {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-weight: 700;
}
.wwd-kv .txt-box .width-inner h2 {
    font-size: 80px;
    line-height: 0.9375em;
    font-weight: 700;
}

/****** what_we_do_list - .wwd-list 콘텐츠 영역 ******/
section.wwd-list {
    width: 100%;
    margin-bottom: 200px;
}
.wwd-list ul li .width-inner {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: center;
    padding-top: 105px !important;
    padding-bottom: 105px !important;
    border-bottom: 1px solid rgba(230, 230, 230, 0.27);
}

/* .wwd-list 콘텐츠 영역 - 이미지 박스 */
.wwd-list ul li .width-inner .img-box {
    width: 500px;
}
.wwd-list ul li .width-inner .img-box img {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
}
/* .wwd-list 콘텐츠 영역 - 텍스트 박스 */
.wwd-list ul li .width-inner .list-info {
    width: 900px;
}
.wwd-list ul li .width-inner .list-info .list-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 2em;
}
.wwd-list ul li .width-inner .list-info .list-txt {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.1em;
    letter-spacing: -0.04em;
    color: #6B6B6B;
    margin-bottom: 1.9em;
}

/* .wwd-list 마우스 오버 시 hover 효과 */
.wwd-list ul li:hover {
    background-color: #fff;
}
.wwd-list ul li:hover .width-inner .list-info .list-title {
    color: #000;
}
.wwd-list ul li:hover .width-inner .list-info .list-txt {
    color: #000;
}


@media all and (min-width: 769px) and (max-width: 1480px) {
    .wwd-kv .txt-box .width-inner h3 {
        font-size: 2.027vw;
    }
    .wwd-kv .txt-box .width-inner h2 {
        font-size: 5.4054vw;
    }
    .case-kv .gradient {
        height: 35.6445vw;
    }

    section.wwd-list {
        margin-bottom: 13.5135vw;
    }
    .wwd-list ul li .width-inner {
        gap: 5.4054vw;
        padding-top: 7.0945vw !important;
        padding-bottom: 7.0945vw !important;
    }
    .wwd-list ul li .width-inner .img-box {
        width: 33.783vw;
    }
    .wwd-list ul li .width-inner .list-info {
        width: 60.8108vw;
    }
    .wwd-list ul li .width-inner .list-info .list-title {
        font-size: 3.2432vw;
    }
    .wwd-list ul li .width-inner .list-info .list-txt {
        font-size: 2.0270vw;
    }
}

/* 테블릿 */
@media all and (min-width: 481px) and (max-width: 768px) {
    .wwd-kv .kv-img img {
        width: 100%;
        aspect-ratio: 768/1023;
        object-fit: cover;
    }
    .case-kv .gradient {
      height: 35.6445vw;;
    }
    .wwd-kv .txt-box .width-inner h3 {
        font-size: 2.8645vw;
        margin-bottom: 1.8229vw;
    }
    .wwd-kv .txt-box .width-inner h2 {
        font-size: 5.2083vw;
    }

    /****** .wwd-list ******/
    section.wwd-list {
        margin-bottom: 13.5135vw;
    }
    .wwd-list ul li .width-inner {
        gap: 5.4054vw;
        padding-top: 7.0945vw !important;
        padding-bottom: 7.0945vw !important;
    }
    .wwd-list ul li .width-inner .img-box {
        width: 33.783vw;
    }
    .wwd-list ul li .width-inner .list-info {
        width: 60.8108vw;
    }
    .wwd-list ul li .width-inner .list-info .list-title {
        font-size: 3.2432vw;
        line-height: 1.4em;
    }
    .wwd-list ul li .width-inner .list-info .list-txt {
        font-size: 16px;
        margin: 0.46em 0 1em;
        line-height: 1em;
    }

}

/* 모바일 */
@media all and (max-width: 480px) {
    .wwd-kv .kv-img img {
        width: 100%;
        aspect-ratio: 360 / 640;
        object-fit: cover;
    }
    .case-kv .gradient {
      height: 62%;
    }
    .wwd-kv .txt-box .width-inner h3 {
        font-size: 14px;
        margin-bottom: 14px;
    }
    .wwd-kv .txt-box .width-inner h2 {
        font-size: 35px;
    }
    .wwd-list ul li .width-inner {
        flex-direction: column;
    }

    /****** .wwd-list ******/
    section.wwd-list {
        margin-bottom: 65px;
    }
    .wwd-list ul li .width-inner {
        gap: 0;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    .wwd-list ul li .width-inner .img-box {
        width: 100%;
    }
    .wwd-list ul li .width-inner .list-info {
        width: 100%;
    }
    .wwd-list ul li .width-inner .list-info .list-title {
        font-size: 26px;
        line-height: 28px;
        margin: 20px 0 6px; 
    }
    .wwd-list ul li .width-inner .list-info .list-txt {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 30px;
    }

}

/************************************************ what_we_do_detail ************************************************/
/****** section.bs-detail-kv 영역 ******/
section.bs-detail-kv {
    width: 100%;
}
.bs-detail-kv .wrap-inner {
    position: relative;
}
.bs-detail-kv .kv-img {
    width: 100%;
}
/****** .bs-detail-kv 이미지 사이즈 ******/
.bs-detail-kv .kv-img img {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
}
.bs-detail-kv .gradient {
    width: 100%;
    height: 395px;
    background: linear-gradient(to bottom, transparent, black);
    position: absolute;
    left: 0;
    bottom: 0;
}
/****** .bs-detail-kv 텍스트 ******/
.bs-detail-kv .txt-box {
    width: 100%;
    position: absolute;
    bottom: 7.4074%;
    left: 50%;
    transform: translateX(-50%);
}
.bs-detail-kv .txt-box .width-inner h2 {
    font-size: 135px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: -0.02em;
}
.bs-detail-kv .txt-box .width-inner h3 {
    font-size: 34px;
    font-weight: 400;
    line-height: 1.0882em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 30px;
}

/****** section.bs-content 콘텐츠 영역 ******/
section.bs-content {
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 148px;
}
.bs-content::before {
    content: "";
    display: block;
    width: 100%;
    height: 143px;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.bs-content ul {
    width: 100%;
    color: #000;
}
.bs-content ul li {
    padding-bottom: 10.4166%; /* 150px */
}

/****** section.bs-content 콘텐츠 이미지 박스 ******/
.bs-content ul li .detail-imgbox {
    width: 100%;
}
.bs-content ul li .detail-imgbox img {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
}

/****** section.bs-content list 버튼 ******/
.bs-content ul li .list-btn {
    width: 350px;
    border: 2px solid #000;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 158px;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto;
}
.bs-content ul li .list-btn:hover {
    background-color: #000;
    color: #fff;
}

/****** detail_page 하단 - .navigation ******/
.navigation {
    width: 100%;
    margin-bottom: 200px;
}
.navigation .wrap-inner {
    display: flex;
}
.navigation .wrap-inner a {
    flex-basis: 960px;
    color: #fff;
    position: relative; /* div, .nav-arrow의 기준 */
}
/* .navigation 이미지 사이즈 */
.navigation .wrap-inner a img {
    width: 100%;
    height: 100%;
    aspect-ratio: 960/250;
    object-fit: cover;
}
/* .navigation 텍스트 박스 */
.navigation .wrap-inner a .nav-txt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.6;
}

/* .navigation 이전 요소 */
.navigation .wrap-inner a.prev .nav-txt {
    text-align: right;
    right: 100px;
    left: 100px;
}
/* .navigation 다음 요소 */
.navigation .wrap-inner a.next .nav-txt {
    text-align: left;
    left: 100px;
    right: 100px;
}
.navigation .wrap-inner a .nav-txt p:first-child {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.0285em;
    letter-spacing: -0.02em;
}
.navigation .wrap-inner a .nav-txt p:last-child {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6666em;
}
/* .navigation 이전/다음 화살표 아이콘 */
.navigation .wrap-inner a .nav-arrow {
    width: 97px;
    height: 69px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0.6;
}
.navigation .wrap-inner a .nav-prev {
    left: 240px;
}
.navigation .wrap-inner a .nav-next {
    right: 240px;
}
/* .navigation 텍스트 불투명도 */
.nav-txtdimm {
    opacity: 0.6;
}
/* .navigation 배경 dimm */
.nav-bgdimm {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.navigation .wrap-inner a:not([href="#"]):hover .nav-txt, .navigation .wrap-inner a:not([href="#"]):hover .nav-prev{
  opacity: 1;
}
.navigation .wrap-inner a:not([href="#"]):hover .nav-bgdimm{
  display: block;
}
.navigation p{
  white-space: nowrap; /* 텍스트 한줄로 모아주기 */
  overflow: hidden; /* 너비 넘어가면 숨기기 */
  text-overflow: ellipsis; /* 말줌임 css (...) */
}




@media all and (min-width: 769px) and (max-width: 1480px) {
    /****** .bs-detail-kv ******/
    .bs-detail-kv .txt-box .width-inner h2 {
        font-size: 9.1216vw;
    }
    .bs-detail-kv .txt-box .width-inner h3 {
        font-size: 2.2972vw;
    }
    .bs-detail-kv .gradient {
        height: 35.6445vw;
    }
    /****** .bs-content ******/
    section.bs-content {
        margin-top: 0.1vw;
    }
    /****** .navigation ******/
    .navigation {
        margin-bottom: 100px;
    }
    .navigation .wrap-inner a.next .nav-txt {
        left: 50px;
        right: 50px;
    }
    .navigation .wrap-inner a.prev .nav-txt {
        right: 50px;
        left: 50px;
    }
    .navigation .wrap-inner a .nav-txt p:first-child {
        font-size: 70px;
    }
    .navigation .wrap-inner a .nav-txt p:last-child {
        font-size: 16px;
    }
    .navigation .wrap-inner a .nav-arrow {
        width: 60px;
        height: 42px;
    }
    .navigation .wrap-inner a .nav-prev {
        left: 6.5104vw;
    }
    .navigation .wrap-inner a .nav-next {
        right: 6.5104vw;
    }

}

/* 테블릿 */
@media all and (min-width: 481px) and (max-width: 768px) {
    .bs-detail-kv .kv-img img {
        width: 100%;
        aspect-ratio: 768/1023;
        object-fit: cover;
    }
    .bs-detail-kv .gradient {
        height: 35.6445vw;
    }
    .bs-detail-kv .txt-box {
        bottom: 5.1111%;
    }
    .bs-detail-kv .txt-box .width-inner h2 {
        font-size: 7.8125vw;
    }
    .bs-detail-kv .txt-box .width-inner h3 {
        font-size: 18px;
    }
    section.bs-content {
        margin-top: 1.0416vw;
    }
    .bs-content ul li {
        padding-bottom: 13.0208vw;
    }
    .bs-content ul li .list-btn {
        width: 220px;
        padding: 10px 96px;
        font-size: 14px;
    }

    /****** .navigation ******/
    .navigation {
        margin-bottom: 100px;
    }
    .navigation .wrap-inner a {
        flex-basis: 384px;
    }
    .navigation .wrap-inner a img {
        width: 100%;
        aspect-ratio: 384/120;
        object-fit: cover;
    }
    .navigation .wrap-inner a.next .nav-txt {
        left: 50px;
        right: 50px;
    }
    .navigation .wrap-inner a.prev .nav-txt {
        right: 50px;
        left: 50px;
    }
    .navigation .wrap-inner a .nav-txt p:first-child {
        font-size: 36px;
    }
    .navigation .wrap-inner a .nav-txt p:last-child {
        font-size: 9px;
    }
    .navigation .wrap-inner a .nav-arrow {
        width: 60px;
        height: 42px;
    }
    .navigation .wrap-inner a .nav-prev {
        left: 6.5104vw;
    }
    .navigation .wrap-inner a .nav-next {
        right: 6.5104vw;
    }

}

@media all and (max-width: 550px) {
    .navigation .wrap-inner a .nav-arrow {
        width: 35px;
        height: 25px;
    }
}

/* 모바일 */
@media all and (max-width: 480px) {
    .bs-detail-kv .kv-img img {
        width: 100%;
        aspect-ratio: 360 / 640;
        object-fit: cover;
    }
    .bs-detail-kv .gradient {
      height: 62%;
    }
    .bs-detail-kv .txt-box {
        bottom: 15px;
    }
    .bs-detail-kv .txt-box .width-inner h2 {
        font-size: 35px;
        margin: 30px 0 20px;
    }
    .bs-detail-kv .txt-box .width-inner h3 {
        font-size: 16px;
        color: #fff;
        font-weight: 300;
    }
    section.bs-content {
        margin-top: 24px;
    }
    .bs-content::before {
        height: 64px;
    }
    .bs-content ul li {
        padding-bottom: 65px;
    }
    .bs-content ul li .list-btn {
        width: 41.6666vw;
        padding: 2.9166vw 17.916vw;
        font-size: 2.9166vw;
    }
    /****** .navigation ******/
    .navigation {
        margin-bottom: 60px;
    }
    .navigation .wrap-inner a img {
        width: 100%;
        aspect-ratio: 180/90;
        object-fit: cover;
    }
    .navigation .wrap-inner a.next .nav-txt {
        left: 4.1666vw;
        right: 4.1666vw;
    }
    .navigation .wrap-inner a.prev .nav-txt {
        right: 4.1666vw;
        left: 4.1666vw;
    }
    .navigation .wrap-inner a .nav-txt p:first-child {
        font-size: 24px;
    }
    .navigation .wrap-inner a .nav-txt p:last-child {
        font-size: 6px;
    }
    .navigation .wrap-inner a .nav-arrow {
        width: 36px;
        height: 25px;
    }
    .navigation .wrap-inner a .nav-prev {
        left: 6.5104vw;
    }
    .navigation .wrap-inner a .nav-next {
        right: 6.5104vw;
    }



}

/************************************************ case_studies_list ************************************************/
/* 메인 MORE 버튼 */
.case-list .more-btn {
    margin-top: 2.5625vw;
}

/****** case_studies_list - .case-kv ******/
section.case-kv {
    width: 100%;
}
.case-kv .wrap-inner {
    position: relative; /* .gradient의 기준! */
}
/* .case-kv 이미지 */
.case-kv .kv-img {
    width: 100%;
}
.case-kv .kv-img img {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
}
.case-kv .gradient {
    width: 100%;
    height: 395px;
    background: linear-gradient(to bottom, transparent, black);
    position: absolute;
    left: 0;
    bottom: 0;
}
/* .case-kv 텍스트 박스 */
.case-kv .txt-box {
    text-transform: uppercase;
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 7.4074%;
    transform: translateX(-50%);
}
.case-kv .txt-box .width-inner h3 {
    font-size: 30px;
    font-weight: 700;
    color: #9F9F9F;
    margin-bottom: 25px;
}
.case-kv .txt-box .width-inner h2 {
    font-size: 80px;
    font-weight: 700;
    line-height: 0.9375em;
}

/****** case_studies_list - .case-list ******/
section.case-list {
    width: 100%;
    margin: 100px 0 200px;
}
/* case_studies_list - 상단 tab list */
.case-list .tabs {
    display: flex;
    width: 100%;
    margin-bottom: 49px !important;
}
.case-list .tabs li {
    font-size: 32px;
    font-weight: 700;
    color: #606060;
    line-height: 1em;
    padding-top: 7px;
    /* cursor: pointer; */
    border-top: 6px solid transparent;
    white-space: nowrap;
    flex: 0;
}
.case-list .tabs li a{
  /* display: initial; */
  text-decoration: initial;
  color: inherit;
}
.case-list .tabs li.on, .case-list .tabs li:hover {
    color: #fff;
    border-color: #fff;
}
/* case_studies_list - tab content list */
.case-list .tab-content {
    /* display: none; */
}
.case-list .tab-content.on {
    display: block;
}
.case-list .tab-content li {
    width: 100%;
}
.case-list .tab-content li .width-inner {
    display: flex;
    justify-content: space-between;
    gap: 5.5555%;
    align-items: flex-start;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    border-bottom: 1px solid rgba(230, 230, 230, 0.27);
}
/* .tab-content 이미지 박스 */
.case-list .tab-content li .width-inner .img-box {
    /* width: 720px; */
    flex: 0 0 50%;
}
.case-list .tab-content li .width-inner .img-box img {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
}
/* .tab-content 텍스트 박스 */
.case-list .tab-content li .width-inner .list-info {
    width: 44.4444%;
    flex: 0 0 44.4444%
}
/* .tab-content 텍스트 박스 - 제목 */
.case-list .tab-content li .width-inner .list-info h2.list-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1em;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
    overflow: hidden;
}
/* .tab-content 텍스트 박스 - 해시태그 */
.case-list .tab-content li .width-inner .list-info h3.list-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25em;
    color: rgba(255, 255, 255, 0.6);
    margin: 35px 0 42px;
    display: block;
    text-overflow: initial;
    display: -webkit-box;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
    overflow: initial;
}
/* .tab-content 텍스트 박스 - 본문 내용 */
.case-list .tab-content li .width-inner .list-info h3.list-txt {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1.25em;
    margin-bottom: 1.25em;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* .tab-content list 마우스 오버 시 hover 효과 */
.case-list .tab-content li:hover {
    background-color: #fff;
}
.case-list .tab-content li:hover .width-inner .list-info h2.list-title {
    color: #000;
}
.case-list .tab-content li:hover .width-inner .list-info h3.list-title {
    color: rgba(0,0,0,0.6);
}
.case-list .tab-content li:hover .width-inner .list-info h3.list-txt {
    color: #000;
}
@media all and (max-width: 1480px) {
    .case-list .swiper-container.width-inner{
        padding:0 0px !important;
    }
}

/* 로딩 이미지 */
.loading {
    width: 100%;
}
.loading img {
    width: 57px;
    height: 57px;
    margin: 50px auto 250px;
    display: none;
}
.list-box .loading img {
    margin: 50px auto 100px;
}

@media all and (min-width: 769px) and (max-width: 1480px) {
    .case-kv .txt-box .width-inner h3 {
        font-size: 2.027vw;
    }
    .case-kv .txt-box .width-inner h2 {
        font-size: 5.4054vw;
    }
    /****** .case-list ******/
    section.case-list {
        margin: 6.7567vw 0 13.513vw;
    }
    .case-list .tabs {
        /* gap: 3.3783vw; */
    }
    .case-list .tabs li {
        font-size: 2.1621vw;
        border-width: 5px;
    }
    .case-list .tab-content li .width-inner {
        gap: 5.4054vw;
        padding-top: 6.7567vw !important;
        padding-bottom: 6.7567vw !important;
    }
    .case-list .tab-content li .width-inner .img-box {
        /* width: 48.648vw; */
    }
    .case-list .tab-content li .width-inner .list-info {
        /* width: 45.945vw; */
    }
    .case-list .tab-content li .width-inner .list-info h2.list-title {
        font-size: 3.2432vw;
    }
    .case-list .tab-content li .width-inner .list-info h3.list-title {
        font-size: 1.6216vw;
    }
    .case-list .tab-content li .width-inner .list-info h3.list-txt {
        font-size: 1.6216vw;
    }
}

/* 테블릿 */
@media all and (min-width: 481px) and (max-width: 768px) {
    .case-kv .kv-img img {
        width: 100%;
        aspect-ratio: 768/1023;
        object-fit: cover;
    }
    .case-kv .gradient {
        height: 35.6445vw;
    }
    .case-kv .txt-box .width-inner h3 {
        font-size: 2.8645vw;
    }
    .case-kv .txt-box .width-inner h2 {
        font-size: 5.2083vw;
    }

    /****** .case-list ******/
    section.case-list {
        margin: 3.9062vw 0 13.513vw;
    }
    .case-list .tabs {
        /* gap: 50px; */
    }
    .case-list .tabs li {
        font-size: 18px;
        border-width: 3px;
    }
    .case-list .tab-content li .width-inner {
        gap: 5.4054vw;
        padding-top: 6.7567vw !important;
        padding-bottom: 6.7567vw !important;
        align-items: start;
    }
    .case-list .tab-content li .width-inner .img-box {
        /* width: 48.648vw; */
    }
    .case-list .tab-content li .width-inner .list-info {
        /* width: 45.945vw; */
    }
    .case-list .tab-content li .width-inner .list-info h2.list-title {
        font-size: 3.9062vw;
    }
    .case-list .tab-content li .width-inner .list-info h3.list-title {
        font-size: 16px;
        margin: 10px 0;
    }
    .case-list .tab-content li .width-inner .list-info h3.list-txt {
        font-size: 16px;
    }
}

/* 모바일 */
@media all and (max-width: 480px) {
    .case-kv .kv-img img {
        width: 100%;
        aspect-ratio: 360 / 640;
        object-fit: cover;
    }
    .case-kv .gradient {
      height: 62%;
    }
    .case-kv .txt-box .width-inner h3 {
        font-size: 14px;
        margin-bottom: 25px;
    }
    .case-kv .txt-box .width-inner h2 {
        font-size: 35px;
    }

    /****** .case-list ******/
    section.case-list {
        margin: 3.9062vw 0 13.513vw;
    }
    .case-list .tabs {
        /* gap: 20px; */
    }
    .case-list .tabs li {
        font-size: 15px;
        border-width: 2px;
    }
    .case-list .tab-content li .width-inner {
        flex-direction: column;
        gap: 20px;
        padding-top: 12.5vw !important;
        padding-bottom: 12.5vw !important;
    }
    .case-list .tab-content li .width-inner .img-box {
        width: 100%;
    }
    .case-list .tab-content li .width-inner .list-info {
        width: 100%;
    }
    .case-list .tab-content li .width-inner .list-info h2.list-title {
        font-size: 18px;
    }
    .case-list .tab-content li .width-inner .list-info h3.list-title {
        font-size: 14px;
        margin: 10px 0;
    }
    .case-list .tab-content li .width-inner .list-info h3.list-txt {
        font-size: 14px;
    }
    .case-list .more-btn {
        margin-top: 4.5625vw;
    }
}

/************************************************ case_studies_detail ************************************************/
/* 각 섹션 별 공통 여백 */
section article {
    width: 100%;
    padding: 180px 0 200px;
}
/* 각 섹션 별 배경 및 글자색 */
section article:nth-child(odd) {
    background-color: #000;
    color: #fff;
}
section article:nth-child(even) {
    background-color: #fff;
    color: #000;
}


/****** what we do / case studies detail 컨텐츠 start ******/
.bs-content ul li .detail-txtbox h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2em;
  margin: 0.8em 0 0.6em; /* 40px 0 30px */
}

.bs-content ul li .detail-txtbox h3 {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3636em;
}
section.promotion-wrap>article.atc .title-box>h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2em;
}

section.promotion-wrap>article.atc .title-box>h3 {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3636em;
  padding: 0.9091em 0 4.0909em;
}
@media all and (min-width: 1184px) and (max-width: 1480px) {
    .bs-content ul li .detail-txtbox h2 {
      font-size: 3.3784vw;
    }
    .bs-content ul li .detail-txtbox h3 {
      font-size: 1.4865vw;
    }
    section.promotion-wrap>article.atc .title-box>h2 {
      font-size: 3.3784vw;
    }
    section.promotion-wrap>article.atc .title-box>h3 {
      font-size: 1.4865vw;
    }
}
@media all and (min-width: 769px) and (max-width: 1183px) {
    .bs-content ul li .detail-txtbox h2 {
      font-size: 40px;
    }
    .bs-content ul li .detail-txtbox h3 {
      font-size: 16px;
    }
    section.promotion-wrap>article.atc .title-box>h2 {
      font-size: 40px;
    }
    section.promotion-wrap>article.atc .title-box>h3 {
      font-size: 16px;
    }
}
@media all and (min-width: 481px) and (max-width: 768px) {
    .bs-content ul li .detail-txtbox h2 {
      font-size: 5.2083vw;
    }
    .bs-content ul li .detail-txtbox h3 {
      font-size: 16px;
    }
    section.promotion-wrap>article.atc .title-box>h2 {
      font-size: 5.2083vw;
    }
    section.promotion-wrap>article.atc .title-box>h3 {
      font-size: 16px;
    }
}
@media all and (max-width: 480px) {
    .bs-content ul li .detail-txtbox h2, section.promotion-wrap>article.atc .title-box>h2 {
      font-size: 26px;
    }
        .bs-content ul li .detail-txtbox h3, section.promotion-wrap>article.atc .title-box>h3 {
      font-size: 15px;
    }
}

/****** what we do / case studies detail 컨텐츠 end ******/

/* 영상 play 버튼 디자인 */
.play {
    width: 100%;
    height: 100%;
    position: relative; /* .play::after의 기준! */
    cursor: pointer;
}
.play::after {
    content: "";
    display: block;
    width: 126px;
    height: 126px;
    background: url(../images/bt_play.png) center center/cover no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* 스와이퍼 공통 디자인 - 슬라이드를 담은 inner */
.swiper .swiper-wrapper {
    width: 100%;
    display: flex;
    user-select: none;
    position: relative;
}
/* 스와이퍼 공통 디자인 - 각 슬라이드 */
.swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    /* max-width: 1440px; */
    aspect-ratio: 1920/1080;
    object-fit: cover;
}
.swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
}
.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}
/* 스와이퍼 공통 디자인 - 이전/다음 버튼 */
.swiper-button-next, .swiper-button-prev {
    width: 74px !important;
    height: 74px !important;
    transform: translateY(-50%) !important;
    top: 50% !important;
    margin-top: 0 !important;
    pointer-events: initial !important;
}
.swiper-button-next {
    right: 70px !important;
    background: url(../images/mov_next.png) center center/cover no-repeat;
}
.swiper-button-prev {
    left: 70px !important;
    background: url(../images/mov_prev.png) center center/cover no-repeat;
}

@media all and (min-width: 481px) and (max-width: 768px) {
  .swiper-button-next, .swiper-button-prev {
    width: 55px !important;
    height: 55px !important;
  }
  .swiper-button-next {
      right: 50px !important;
  }
  .swiper-button-prev {
      left: 50px !important;
  }
}

@media all and (max-width: 480px) {
  .swiper-button-next, .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
  }
  .swiper-button-next {
      right: 30px !important;
  }
  .swiper-button-prev {
      left: 30px !important;
  }
}

/* 영상 inner */
.mov-wrap {
    position: relative; /* .mov-img의 기준! */
}
/* 영상 박스 */
.mov-box {
    width: 100%;
    /* max-width: 1440px; */
    aspect-ratio: 1440/810;
    object-fit: cover;
}
/* 영상 썸네일 박스 */
.mov-img {
    width: 100%;
    /* max-width: 1440px; */
    position: absolute;
    left: 0;
    top: 0;
}
/* 영상 썸네일 사이즈 */
.mov-img img {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
}

/* 이미지 공통 디자인 */
article .imgbox {
    width: 100%;
}
/* 이미지 공통 디자인 사이즈 */
article .imgbox img, section .imgbox img {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
}

/****************** section.case-detail-kv ************************/
section.case-detail-kv {
    width: 100%;
}
.case-detail-kv .wrap-inner {
    position: relative; /* .gradient의 기준! */
}
/* .case-detail-kv 이미지 */
.case-detail-kv .kv-img {
    width: 100%;
}
.case-detail-kv .kv-img img {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
}
.case-detail-kv .gradient {
    width: 100%;
    height: 395px;
    background: linear-gradient(to bottom, transparent, black);
    position: absolute;
    left: 0;
    bottom: 0;
}
/* .case-detail-kv 텍스트 */
.case-detail-kv .txt-box {
    width: 100%;
    position: absolute;
    left: 50%;
   /*  bottom: 1.5625vw; */ /* 30px */
    bottom: 2.7%;
    transform: translateX(-50%);
}
.case-detail-kv .txt-box .width-inner h2 {
    font-size: 135px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1em;
    margin-bottom: 38px;
    text-transform: uppercase;
}
/* .case-detail-kv 리스트 구분 내용 */
.case-detail-kv .txt-box .width-inner .info {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 75px;
}
.case-detail-kv .txt-box .width-inner .info div {
    font-size: 20px;
    line-height: 1.5em;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 25px 30px;
}
.case-detail-kv .txt-box .width-inner .info div h3 {
    font-weight: 600;
}
.case-detail-kv .txt-box .width-inner .info div p {
    font-weight: 300;
    overflow-wrap: break-word;
    word-break: break-word;
}
.case-detail-kv .txt-box .width-inner .info div:first-of-type{
    flex: 0 1 29.3%;
    /* flex: 1; */
}
.case-detail-kv .txt-box .width-inner .info div:first-of-type p {
    /* white-space: nowrap; */
}
.case-detail-kv .txt-box .width-inner .info div:last-of-type {
    /* flex: 1; */
}

/****** .promition-info 소개 영역 ******/
.promotion-wrap .promition-info {
    width: 100%;
}
.promotion-wrap .promition-info .width-inner h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1666em;
    text-transform: uppercase;
    margin-bottom: 134px;
}
.promotion-wrap .promition-info .width-inner div {
    /* padding-left: 26.406vw; */
}
.promotion-wrap .promition-info .width-inner div p {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1.4285em;
}
.promotion-wrap .promition-info .width-inner div p ~ p {
    margin-top: 50px;
}
.promotion-wrap .promition-info .width-inner div ul {
    margin-top: 108px;
}
.promotion-wrap .promition-info .width-inner div ul li {
    font-size: 28px;
    font-weight: 700;
    color: #8D8A8A;
    padding-left: 27px;
    line-height: 1.4285em;
    text-transform: uppercase;
    position: relative; /* li::before의 기준! */
}
.promotion-wrap .promition-info .width-inner div ul li::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: #8D8A8A;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.promotion-wrap .pro-text .title-box h3 {
    margin-bottom: 0;
}


/****** 하단 .navigation ******/
.navigation {
    width: 100%;
    margin-bottom: 200px;
}
.navigation .wrap-inner {
    display: flex;
}
.navigation .wrap-inner a {
    flex-basis: 960px;
    color: #fff;
    position: relative;
}
/* .navigation 이미지 */
.navigation .wrap-inner a img {
    width: 100%;
    height: 100%;
    aspect-ratio: 960/250;
    object-fit: cover;
}
/* .navigation 텍스트 */
.navigation .wrap-inner a .nav-txt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
/* .navigation 이전 */
.navigation .wrap-inner a.prev .nav-txt {
    text-align: right;
    right: 100px;
    left: 100px;
}
/* .navigation 다음 */
.navigation .wrap-inner a.next .nav-txt {
    text-align: left;
    left: 100px;
    right: 100px;
}
.navigation .wrap-inner a .nav-txt p:first-child {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.0285em;
    letter-spacing: -0.02em;
}
.navigation .wrap-inner a .nav-txt p:last-child {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6666em;
}
/* .navigation 이전/다음 화살표 아이콘 */
.navigation .wrap-inner a .nav-arrow {
    width: 97px;
    height: 69px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.navigation .wrap-inner a .nav-prev {
    left: 240px;
}
.navigation .wrap-inner a .nav-next {
    right: 240px;
}
/* .navigation 텍스트 불투명도 */
.nav-txtdimm {
    opacity: 0.6;
}
/* .navigation 배경 dim */
.nav-bgdimm {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    top: 0;
}

@media all and (max-width: 1480px) {
    .play::after {
        width: 8.5135vw;
        height: 8.5135vw;
    }
}


@media all and (min-width: 769px) and (max-width: 1480px) {
    section article {
        padding: 10.4166% 0;
    }
    /****** .case-detail-kv ******/
    .case-detail-kv .txt-box .width-inner h2 {
        font-size: 9.1216vw;
        margin-bottom: 2.5675vw;
    }
    .case-detail-kv .txt-box .width-inner .info div {
        gap: 8px 8px;
    }

    /****** .promition-info ******/

    .promotion-wrap .promition-info .width-inner h2 {
        font-size: 4.0540vw;
        margin-bottom: 9.054vw;
    }
    .case-detail-kv .txt-box .width-inner .info {
        flex-direction: column;
        gap: 8px 0;
    }
    .promotion-wrap .promition-info .width-inner div p {
        font-size: 1.8918vw;
        grid-template-columns: 150px auto;
        gap: 8px 0;
    }
    .promotion-wrap .promition-info .width-inner div ul {
        margin-top: 7.2972vw;
    }
    .promotion-wrap .promition-info .width-inner div ul li {
        font-size: 1.8918vw;
    }

    /****** .navigation ******/
    .navigation {
        margin-bottom: 100px;
    }
    .navigation .wrap-inner a.next .nav-txt {
        left: 50px;
        right: 50px;
    }
    .navigation .wrap-inner a.prev .nav-txt {
        right: 50px;
        left: 50px;
    }
    .navigation .wrap-inner a .nav-txt p:first-child {
        font-size: 4.7297vw;
    }
    .navigation .wrap-inner a .nav-txt p:last-child {
        font-size: 16px;
    }
    .navigation .wrap-inner a .nav-arrow {
        width: 60px;
        height: 42px;
    }
    .navigation .wrap-inner a .nav-prev {
        left: 6.5104vw;
    }
    .navigation .wrap-inner a .nav-next {
        right: 6.5104vw;
    }

}


/* 테블릿 */
@media all and (min-width: 481px) and (max-width: 768px) {
    section article {
        padding: 13.0208vw 0;

    }
    /* 영상 play 버튼 디자인 */
    .play::after {
        width: 67px;
        height: 67px;
    }
    .case-detail-kv .kv-img img {
        width: 100%;
        aspect-ratio: 768/1023;
        object-fit: cover;
    }
    .case-detail-kv .gradient {
        height: 35.6445vw;
    }
    .case-detail-kv .txt-box .width-inner h2 {
        font-size: 7.8125vw;
        margin-bottom: 1.3020vw;
    }
    .case-detail-kv .txt-box .width-inner .info {
        flex-direction: column;
        gap: 8px 0;
    }
    .case-detail-kv .txt-box .width-inner .info div {
        font-size: 18px;
        grid-template-columns: 150px auto;
        gap: 8px 0;
    }

    /****** .promition-info ******/
    .promotion-wrap .promition-info .width-inner div {
        padding-left: 0;
    }
    .promotion-wrap .promition-info .width-inner h2 {
        font-size: 5.2083vw;
        margin-bottom: 6.5104vw;
    }
    .promotion-wrap .promition-info .width-inner div p {
        font-size: 16px;
    }
    .promotion-wrap .promition-info .width-inner div p ~ p {
        margin-top: 25px;
    }
    .promotion-wrap .promition-info .width-inner div ul li {
        font-size: 16px;
    }
    .promotion-wrap .promition-info .width-inner div ul {
        margin-top: 40px;
    }

    /****** .navigation ******/
    .navigation {
        margin-bottom: 100px;
    }
    .navigation .wrap-inner a {
        flex-basis: 384px;
    }
    .navigation .wrap-inner a img {
        width: 100%;
        aspect-ratio: 384/120;
        object-fit: cover;
    }
    .navigation .wrap-inner a.next .nav-txt {
        left: 50px;
        right: 50px;
    }
    .navigation .wrap-inner a.prev .nav-txt {
        right: 50px;
        left: 50px;
    }
    .navigation .wrap-inner a .nav-txt p:first-child {
        font-size: 36px;
    }
    .navigation .wrap-inner a .nav-txt p:last-child {
        font-size: 9px;
    }
    .navigation .wrap-inner a .nav-arrow {
        width: 60px;
        height: 42px;
    }
    .navigation .wrap-inner a .nav-prev {
        left: 6.5104vw;
    }
    .navigation .wrap-inner a .nav-next {
        right: 6.5104vw;
    }
}

@media all and (max-width: 550px) {
    .navigation .wrap-inner a .nav-arrow {
        width: 35px;
        height: 25px;
    }
}

/* 모바일 */
@media all and (max-width: 480px) {
    .play::after {
      width: 41px;
      height: 41px;
    }
    section article {
        padding: 65px 0;
    }

    .case-detail-kv .kv-img img {
        width: 100%;
        aspect-ratio: 360 / 640;
        object-fit: cover;
    }
    .case-detail-kv .gradient {
      height: 62%;
    }
    .case-detail-kv .txt-box .width-inner h2 {
        font-size: 35px;
        margin-bottom: 30px;
    }
    .case-detail-kv .txt-box .width-inner .info {
        flex-direction: column;
        gap: 8px 0;
    }
    .case-detail-kv .txt-box .width-inner .info div {
        font-size: 11px;
        grid-template-columns: 95px auto;
        gap: 8px 0;

    }

    /****** .promition-info ******/
    .promotion-wrap .promition-info .width-inner div {
        padding-left: 0;
    }
    .promotion-wrap .promition-info .width-inner h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .promotion-wrap .promition-info .width-inner div p {
        font-size: 15px;
    }
    .promotion-wrap .promition-info .width-inner div p ~ p {
        margin-top: 25px;
    }
    .promotion-wrap .promition-info .width-inner div ul li {
        font-size: 12px;
    }
    .promotion-wrap .promition-info .width-inner div ul {
        margin-top: 40px;
    }

    /****** .navigation ******/
    .navigation {
        margin-bottom: 60px;
    }
    .navigation .wrap-inner a img {
        width: 100%;
        aspect-ratio: 180/90;
        object-fit: cover;
    }
    .navigation .wrap-inner a.next .nav-txt {
        left: 4.1666vw;
        right: 4.1666vw;
    }
    .navigation .wrap-inner a.prev .nav-txt {
        right: 4.1666vw;
        left: 4.1666vw;
    }
    .navigation .wrap-inner a .nav-txt p:first-child {
        font-size: 24px;
    }
    .navigation .wrap-inner a .nav-txt p:last-child {
        font-size: 6px;
    }
    .navigation .wrap-inner a .nav-arrow {
        width: 36px;
        height: 25px;
    }
    .navigation .wrap-inner a .nav-prev {
        left: 6.5104vw;
    }
    .navigation .wrap-inner a .nav-next {
        right: 6.5104vw;
    }
}

/************************************************ get_in_touch ************************************************/
/* 메인 MORE 버튼 */
.msg .more-btn {
    margin-top: 35px;
}
.msg .more-btn:hover {
    /* background: #fff url(../images/more_arrow_black.png) 78.3529% center no-repeat;
    color: #000;
    border: 1px solid #000; */
}

/****** get_in_touch - .get-kv ******/
section.get-kv {
    width: 100%;
}
.get-kv .wrap-inner {
    position: relative; /* .gradient의 기준! */
}
/* .get-kv 이미지 */
.get-kv .kv-img {
    width: 100%;
}
.get-kv .kv-img img {
    width: 100%;
    aspect-ratio: 1920/1080;
    object-fit: cover;
}
.get-kv .gradient {
    width: 100%;
    height: 422px;
    background: linear-gradient(to bottom, transparent, black);
    position: absolute;
    left: 0;
    bottom: 0;
}
/* .get-kv 텍스트 */
.get-kv .txt-box {
    text-transform: uppercase;
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 7.4074%;
    transform: translateX(-50%);
}
.get-kv .txt-box .width-inner h3 {
    font-size: 30px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}
.get-kv .txt-box .width-inner h2 {
    font-size: 80px;
    line-height: 1em;
    font-weight: 700;
}

/****** .cont-wrap 콘텐츠 영역 ******/
section.cont-wrap {
    width: 100%;
    color: #000;
    padding: 162px 0 150px;
    margin-bottom: 100px;
}
.cont-wrap .width-inner {
    display: grid;
    grid-template-columns: 49.34% auto;
    gap: 150px 98px;
}
/****** .cont-wrap 텍스트 ******/
.cont-wrap .width-inner .cont-txt h2 {
    font-size: 6.29vw;
    font-weight: 700;
    line-height: 0.7692em;
    text-transform: uppercase;
    margin-bottom: 86px;
}
.cont-wrap .width-inner .cont-txt h3 {
    font-size: 30px;
    font-weight: 300;
    letter-spacing: -0.05em;
    line-height: 1.2666em;
}
/****** .cont-wrap form ******/
.cont-wrap .width-inner .frm-box {
    /* width: 620px; */
    /* flex: 0 1 auto; */
}
.cont-wrap .width-inner .frm-box form {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

/* .select - 카테고리 영역 */
.select {
    width: 100%;
    border: 1px solid #4B4B4B;
    color: #898989;
    font-weight: 300;
    font-size: 20px;
    color: #898989;
    position: relative;
}
.select .selected {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 12px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
.select .selected .selected-value {
    font-weight: 300;
    font-size: 20px;
    color: #898989;
}
/* .select - 카테고리 화살표 아이콘 */
.select .selected .arrow-ico {
    width: 17px;
    height: 9px;
    background: url(../images/select_down.png) no-repeat;
    position: absolute;
    left: calc(100% - 30px);
    top: 50%;
    transform: translateY(-50%);
}
.select .selected .arrow-ico.on {
    background: url(../images/select_up.png) no-repeat;
}
/* .select - 카테고리 리스트 */
.select ul {
    width: 100%;
    background: #fff;
    cursor: pointer;
    display: none;
    position: absolute;
}
.select.active ul {
    display: initial;
    position: absolute;
    z-index: 50;
    border: 1px solid #4B4B4B;
    box-sizing: border-box;
    left: -1px;
    width: calc(100% + 2px);
}
.select ul li {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
}
.select ul li:hover {
    background: rgba(238, 238, 238, 0.6)
}

/* .name-box - 이름 입력란 */
.cont-wrap .width-inner .name-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.cont-wrap .width-inner .name-box input {
    width: 50%;
    display: block;
    flex-grow: 1;
    padding: 12px;
    border: 1px solid #4B4B4B;
    box-sizing: border-box;
    font-size: 20px;
    color: #898989;
}

input::placeholder {
    color: #898989;
    font-weight: 300;
}
textarea::placeholder {
    color: #898989;
    font-weight: 300;
}

/* .email-box - 이메일 입력란 */
.cont-wrap .width-inner .email-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid #4B4B4B;
    box-sizing: border-box;
    font-size: 20px;
    color: #898989;
}
/* .msg & .check &submit - 메시지 및 SEND 버튼 */
.cont-wrap .width-inner .msg {
    width: 100%;
}
.cont-wrap .width-inner .msg h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
/* .msg 박스 */
.cont-wrap .width-inner .msg textarea {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #4B4B4B;
    font-size: 20px;
    overflow-y: hidden;
    resize: none;
    color: #898989;
}
/* .msg 박스 체크박스 */
.cont-wrap .width-inner .msg .check {
    width: 100%;
    margin: 12px 0 35px;
}
.cont-wrap .width-inner .msg .check label {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: -0.05em;
    line-height: 2.5333em;
    color: #505050;
}
.check input[type="checkbox"] {
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    width: 16px;
    height: 16px;
    cursor: pointer;
    border: 1px solid #505050;
    margin-right: 12px;
}
.check input[type="checkbox"]::before {
    content: "\2714";
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;
    transform: scale(0) translate(-50%, -50%);
    line-height: 1;
    color: #fff;
}
.check input[type="checkbox"]:checked {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}
.check input[type="checkbox"]:checked::before {
    border-radius: 4px;
    transform: scale(1) translate(-50%, -50%)
}

/*********  .cont-wrap - 지도 및 주소안내 *********/
/* .cont-wrap 지도 이미지 */
.cont-wrap .width-inner .map img{
    /* flex: 1; */
    max-width: 100%;
    width: 100%;
    border: 1px solid #bababa;
}
/* .cont-wrap 주소 텍스트 */
.cont-wrap .width-inner .address {
    /* width: 620px;
    flex: 0 1 auto; */
}
.cont-wrap .width-inner .address h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
}
.cont-wrap .width-inner .address h3 {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: -0.05em;
    line-height: 1.25em;
    margin: 1.4em 0 6.25vw;
}
.cont-wrap .width-inner .address ul li {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.5em;
}
.cont-wrap .width-inner .address ul li a{
    display: inline-block;
}

@media all and (min-width: 769px) and (max-width: 1480px) {
    .get-kv .gradient {
        height: 28.5135vw;
    }
    .get-kv .txt-box .width-inner h3 {
        font-size: 2.0270vw;
    }
    .get-kv .txt-box .width-inner h2 {
        font-size: 5.4054vw;
    }
    section.cont-wrap {
        padding: 10.9459vw 0 10.1351vw;
    }
    .cont-wrap .width-inner .cont-txt h2 {
        font-size: 6.29vw;
    }
    .cont-wrap .width-inner .cont-txt h3 {
        font-size: 2.0270vw;
    }
    .cont-wrap .width-inner .frm-box {
        /* width: 41.8918vw; */
    }
    .cont-wrap .width-inner .frm-box form {
        gap: 3.7162vw;
    }
    .cont-wrap .width-inner {
        gap: 8vw 3vw;
    }

}

/* 테블릿 */
@media all and (min-width: 481px) and (max-width: 768px) {
    section.cont-wrap {
        padding: 13.0208vw 0;
        margin-bottom: 60px;
    }
    .get-kv .kv-img img {
        width: 100%;
        aspect-ratio: 768/1023;
        object-fit: cover;
    }
    .get-kv .gradient {
        height: 28.5135vw;
    }
    .get-kv .txt-box .width-inner h3 {
        font-size: 2.8645vw;
    }
    .get-kv .txt-box .width-inner h2 {
        font-size: 5.2083vw;
    }
    .cont-wrap .width-inner {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        /* flex-direction: column;
        gap: 40px; */
    }
    .cont-wrap .width-inner .cont-txt h2 {
        font-size: 6.29vw;
        margin-bottom: 3.9062vw;
    }
    .cont-wrap .width-inner .cont-txt h2 br{
        display: none;
    }
    .cont-wrap .width-inner .cont-txt h3 {
        font-size: 20px;
    }
    .cont-wrap .width-inner .frm-box {
        width: 100%;
    }
    .cont-wrap .width-inner .frm-box form {
        gap: 30px;
    }
    .select {
        font-size: 18px;
    }
    .select .selected .selected-value {
        font-size: 18px;
    }
    .cont-wrap .width-inner .name-box input {
        font-size: 18px;
    }
    .cont-wrap .width-inner .email-box input {
        font-size: 18px;
    }
    .cont-wrap .width-inner .msg h2 {
        font-size: 3.9062vw;
    }
    .cont-wrap .width-inner .msg textarea {
        font-size: 18px;
    }

    .cont-wrap .width-inner .address h2 {
        font-size: 3.9062vw;
    }
    .cont-wrap .width-inner .address h3 {
        font-size: 20px;
        margin: 28px 0 40px;
    }
    .cont-wrap .width-inner .address ul li {
        font-size: 20px;
    }
    .cont-wrap .width-inner .map{
        padding-top: 60px;
    }
}
/* 모바일 */
@media all and (max-width: 480px) {
    section.cont-wrap {
        padding: 64px 0;
        margin-bottom: 60px;
    }
    .get-kv .kv-img img {
        width: 100%;
        aspect-ratio: 360 / 640;
        object-fit: cover;
    }
    .get-kv .gradient {
      height: 62%;
    }
    .get-kv .txt-box .width-inner h3 {
        font-size: 14px;
    }
    .get-kv .txt-box .width-inner h2 {
        font-size: 35px;
    }
    .cont-wrap .width-inner {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .cont-wrap .width-inner .cont-txt h2 {
        font-size: 35px;
        margin-bottom: 20px;
    }
    .cont-wrap .width-inner .cont-txt h3 {
        font-size: 15px;
    }
    .cont-wrap .width-inner .frm-box {
        width: 100%;
    }
    .cont-wrap .width-inner .frm-box form {
        gap: 20px;
    }
    .select {
        font-size: 16px;
    }
    .select .selected .selected-value {
        font-size: 16px;
    }
    .cont-wrap .width-inner .name-box {
        flex-direction: column;
    }
    .cont-wrap .width-inner .name-box input {
        width: 100%;
        font-size: 16px;
    }
    .cont-wrap .width-inner .email-box input {
        font-size: 16px;
    }
    .cont-wrap .width-inner .msg h2 {
        font-size: 24px;
    }
    .cont-wrap .width-inner .msg textarea {
        font-size: 16px;
    }

    /*********  .cont-wrap  *********/
    .cont-wrap .width-inner .address h2 {
        font-size: 24px;
    }
    .cont-wrap .width-inner .address h3 {
        font-size: 16px;
        margin: 10px 0 30px;
    }
    .cont-wrap .width-inner .address ul li {
        font-size: 16px;
    }
    .cont-wrap .width-inner .map {
      padding-top: 35px;
    }
}

/************************************************ site_map 사이트맵 ************************************************/
#site-map {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    background-color: #F1F1F1;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    overflow-y: auto;
    display: none;
}
#site-map .width-inner{
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#site-map .width-inner header {
    background-color: rgba(255, 255, 255, 0.05);
    position: initial;
}
#site-map .width-inner header .header-top {
    width: 100%;
    height: 100%;
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#site-map .width-inner header .logo a img {
    content: url(../images/easter_logo_black.png);
}
#site-map .width-inner header .hamberger span {
    background-color: black;
}
/* #site-map - list */
#site-map .width-inner .menu {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#site-map .width-inner .menu li {
    text-align: center;
}
#site-map .width-inner .menu li a {
    font-size: 100px;
    line-height: 1.51em;
    font-weight: 700;
    color: #B4B4B4;
    text-transform: uppercase;
    /* padding-left: 20px; */
    display: inline-block;
    position: relative; /* li:hover a::before의 기준! */
}

#site-map .width-inner .menu li:hover a {
    color: #000;
}
#site-map .width-inner .menu li:hover a::before {
    content: "";
    display: block;
    width: 12px;
    height: 67px;
    background: url(../images/point.png) left center/contain no-repeat;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}
/* #site-map - languages (Daft)  */
#site-map .width-inner .site-sns-wrap .site-lang {
    display: block;
    text-align: center;
    padding: 25px 0;
}

#site-map .width-inner .site-sns-wrap .site-lang li {
    vertical-align: top;
    display: inline-block;
    position: relative;
}

#site-map .width-inner .site-sns-wrap .site-lang li+li:before {
    content: "";
    display: block;
    position: absolute;
    height: 16px;
    left: -2px;
    top: 50%;
    transform: translateY(-45%);
    width: 2px;
    background: #b4b4b4
}

#site-map .width-inner .site-sns-wrap .site-lang li a {
    font-size: 16px;
    letter-spacing: 0.2em;
    line-height: 1.5em;
    font-weight: 400;
    display: inline-block;
    vertical-align: top;
    padding: 0 12px;
    color: #B4B4B4
}

#site-map .width-inner .site-sns-wrap .site-lang li a:disabled,
#site-map .width-inner .site-sns-wrap .site-lang li a[disabled],
#site-map .width-inner .site-sns-wrap .site-lang li a:hover {
    font-weight: 700;
    color: #000
}
/* #site-map - sns menu  */
#site-map .width-inner .site-sns-wrap .site-sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 15px 0;/* Daft Edit */
}
#site-map .width-inner .site-sns-wrap .site-sns li a {
    font-size: 28px;
    letter-spacing: -0.02em;
    line-height: 1.5357em;
    font-weight: 400;
}
#site-map .width-inner .site-sns-wrap p {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.05em;
    line-height: 1.5em;
    color: #000;
    text-align: center;
    padding-bottom: 87px;
}

/* 테블릿 */
@media all and (min-width: 769px) and (max-width: 1024px) {
    #site-map .width-inner .menu li a {
      font-size: 10vw;
    }
}
@media all and (min-width: 481px) and (max-width: 768px) {
    #site-map .width-inner header {
      height: 77px;
    }
    #site-map .width-inner .menu {
        gap: 20px;
        margin-top: 0;
    }
    #site-map .width-inner .menu li a {
        font-size: 50px;
    }
    #site-map .width-inner .site-sns-wrap .site-sns  {
        gap: 40px;
    }
    #site-map .width-inner .site-sns-wrap .site-sns li a {
        font-size: 22px;
    }
    #site-map .width-inner .site-sns-wrap p {
        font-size: 14px;
    }
    #site-map .width-inner .menu li:hover a::before {
        width: 6px;
        height: 35px;
    }
    #site-map .width-inner .site-sns-wrap p {
        padding-bottom: 100px;
    }
}

/* 모바일 */
@media all and (max-width: 480px) {
    #site-map .width-inner header {
      height: 57px;
    }
    #site-map .width-inner .menu {
        gap: 14px;
    }
    #site-map .width-inner .menu li a {
        font-size: 35px;
    }
    #site-map .width-inner .site-sns-wrap .site-sns {
        gap: 20px;
    }
    #site-map .width-inner .site-sns-wrap .site-sns li a {
        font-size: 14px;
    }
    #site-map .width-inner .menu li:hover a::before {
        width: 4px;
        height: 24px;
        left: -10px;
    }

    #site-map .width-inner .site-sns-wrap p {
        padding-bottom: 100px;
        font-size: 10px;
    }
}


/************************************************ side_list ************************************************/
/* 배경 dimm 디자인 */
.dimm {
    background-color: #000;
    opacity: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
}
.dimm.on {
    z-index: 100;
    opacity: 0.85;
}
/* .sidewrap 전체 영역 */
.sidewrap {
    z-index: 999;
    position: fixed;
    right: 0;
    top: 90px;
}

/* .sidebox 탭 영역 */
.sidewrap .sidebox {
    display: flex;
    justify-content: start;
    position: relative;
    align-items: center;
    height: calc(100vh - 90px);
}
/* .sidebox 탭 - Floating 버튼 */
.sidewrap .sidebox .btntab {
    width: 60px;
    height: 200px;
    box-shadow: -10px 13px 20px rgba(0,0,0,0.16);
    border-radius: 10px 0 0 10px;
    margin-top: -90px
}
/* .sidewrap .sidebox > div::before {
  display: block;
  content: '';
  width: 100%;
  height: calc(50vh - 180px);
} */

/* .sidebox 탭 메뉴 영역 */
.sidewrap .sidebox .sidemenu {
    display: none;
}
.sidewrap .sidebox .sidemenu .list-box {
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #fff;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: scroll;
    height: calc(100vh - 90px);
    /* padding-bottom: 100px; */
}
/* .sidebox 탭 콘텐츠 */
.sidewrap .sidebox .sidemenu .list-box .abox {
    width: 100%;
    margin-bottom: 20px;
}
.sidewrap .sidebox .sidemenu .list-box a {
    width: 100%;
    height: 100%;
    position: relative; /* h2의 기준 */
}
.sidewrap .sidebox .sidemenu .list-box a img {
    width: 500px;
    aspect-ratio: 1920 / 1080;
    object-fit: cover;
    transition: all 0.6s;
}
/* .sidebox 탭 콘텐츠 제목 */
.sidewrap .sidebox .sidemenu .list-box a h2 {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    line-height: 1em;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    overflow: hidden; /* 말줄임 적용 시 넘치는 영역 히든처리 */
    display: none;
}

.sidewrap .sidebox .sidemenu .list-box a {
    overflow: hidden;
}
.sidewrap .sidebox .sidemenu .list-box a:hover img{
    transform: scale(1.2);
}
.sidewrap .sidebox .sidemenu .list-box a:hover h2 {
    display: block;
}
.sidewrap .sidebox .sidemenu .list-box a:hover::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.54);
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .sidewrap .sidebox .sidemenu .list-box a, .sidewrap .sidebox .sidemenu .list-box a h2 {
      display: block;
      font-size: 5.2083vw;
      font-weight: 600;
    }

  .sidewrap .sidebox .sidemenu .list-box a::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.54);
  }
}
@media all and (max-width: 480px) {
  .sidewrap .sidebox .sidemenu .list-box a, .sidewrap .sidebox .sidemenu .list-box a h2 {
    display: block;
    font-size: 25px;
    font-weight: 600;
  }
  .sidewrap .sidebox .sidemenu .list-box a::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.54);
  }
}

/* .sidebox 닫기 버튼 */
.sidewrap .sidebox > div .closebtn {
    width: 38px;
    height: 38px;
    background: url(../images/icon_close.png) center center/cover no-repeat;
    position: absolute;
    right: 20px;
    top: -66px;
    display: none;
}

/* #service-btn 버튼 아이콘  */
#service-btn {
    width: 52px;
    height: 52px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: -10px 13px 20px rgba(0,0,0,0.16);
    bottom: 212px;
    display: none;
}

/* 테블릿 */
/* @media all and (min-width: 481px) and (max-width: 768px) {

    .sidewrap .sidebox .sidemenu .list-box {
        width: 478px;
        gap: 18px;
        padding: 18px;
    }
    .sidewrap .sidebox .sidemenu .list-box a img {
        width: 100%;
        aspect-ratio: 440/246;
        object-fit: cover;
    }
    .sidewrap .sidebox .sidemenu .list-box a h2 {
        font-size: 5.2083vw;
    }
    .sidewrap .sidebox .sidemenu .closebtn {
        width: 36px;
        height: 36px;
    }
} */

/* 모바일 */
@media all and (max-width: 768px) {
      .sidewrap .sidebox .sidemenu .list-box a img {
          width: 100%;
      }

      .sidewrap {
        width: 100%;
        background-color: #fff;
        top: 0;
      }
      .sidewrap .sidebox {
        flex-direction: column;
        align-items: initial;
        height: auto;
      }
      .sidewrap .sidebox .btntab {
        width: auto;
        height: 80px;
        box-shadow: none;
        display: flex;
        align-items: end;
        padding-left: 20px;
        box-sizing: border-box;
        margin-top: 0;
      }
    /* .sidewrap .sidebox > div::before {
      display: none;
      content: '';
      width: 100%;
      height: calc(50vh - 180px);
    }
     */
    .sidewrap .sidebox .btntab img {
        content: url(../images/mo_service_tab.png);
    }
    .sidewrap .sidebox .btntab.case img {
        content: url(../images/mo_works_tab.png);
    }
    .sidewrap .sidebox .sidemenu .list-box {
        width: 100%;
        height: calc(100vh - 80px);
    }
    .sidewrap .sidebox > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        display: none;
    }
  

    .sidewrap .sidebox > div .closebtn {
        width: 4.1666vw;
        height: 4.1666vw;
        background: url(../images/mo-tab-close.png) center center/cover no-repeat;
        top: 30px;
    }
}

/************************************************ Privacy Policy ************************************************/
.privacy {
  width: 100%;
  background-color: #F1F1F1;
  left: 0;
  top: 0;
  z-index: 999;
  color: #6B6B6B;
}

.privacy header {
  background-color: rgba(241, 241, 241, 0.95) !important;
  /* position: initial; */
}

.privacy header .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.privacy header .header-top .logo a img {
  content: url(../images/easter_logo_black.png);
}

.privacy header .header-top .hamberger .menu-trigger span {
  background-color: #000;
}

/* Privacy Policy - .pri-content 전체 콘텐츠 */
.privacy .pri-content {
  padding-top: 150px !important;
  padding-bottom: 115px !important;
}

/* .pri-content 각 타이틀 */
.privacy .pri-content h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 30px;
}

/* .pri-content 본문 폰트 */
.privacy .pri-content p,
.privacy .pri-content h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.4em;
}

/* .pri-content 폰트 검정색 */
.font-black {
  color: #000;
}

/* .pri-content 폰트 파랑색 */
.font-blue {
  color: blue;
}

/* .pri-content 본문 제목 - 폰트 굵기 */
.txt-title {
  font-weight: 600;
}

/* .pri-content 본문 내용 - 폰트 굵기 */
.txt-bold {
  font-weight: 600;
}

/* .pri-content - 표 양식 */
table {
  margin-top: 10px;
}

table tr th, td {
  font-size: 20px;
  color: #6B6B6B;
  padding: 10px;
  font-weight: 400;
}
/* .pri-content 본문 내용 - 텍스트 가운데 정렬 */
.cell-center {
  text-align: center;
}
/* .appendix */
.appendix {
  margin-top: 60px;
}
.privacy-policy>div {
  margin-bottom: 40px;
}
.privacy-policy>div ul {
  margin: 10px 0 0 20px;
}
.privacy-policy ul li,
.appendix ul li {
  font-size: 20px;
  color: #6B6B6B;
  display: flex;
  gap: 8px;
}

/* .pri-content 본문 내용 - 글 사이 간격 조정 */
p span {
  display: block;
  margin-bottom: 10px;
}
.appendix>div table ul {
  margin: 10px 10px 10px 20px;
}

@media all and (min-width: 769px) and (max-width: 1480px) {
  .privacy .pri-content h2 {
    font-size: 50px;
  }
}

/* 테블릿 481 ~ 768 */
@media all and (min-width: 481px) and (max-width: 768px) {
  .privacy .pri-content {
    padding-top: 117px !important;
    padding-bottom: 80px !important;
  }

  .privacy .pri-content h2 {
    font-size: 40px;
  }

  .privacy .pri-content p,
  .privacy .pri-content h3 {
    font-size: 14px;
  }

  table tr th,
  td {
    font-size: 14px;
  }

  .appendix {
    margin-top: 40px;
  }

  .privacy-policy>div {
    margin-bottom: 20px;
  }

  .privacy-policy>div ul {
    margin: 10px 0 0 10px;
  }

  .privacy-policy ul li,
  .appendix ul li {
    font-size: 14px;
  }

  .appendix>div table ul {
    margin: 10px;
  }
}

@media all and (max-width: 480px) {
  .privacy .pri-content {
    padding-top: 77px !important;
    padding-bottom: 60px !important;
  }

  .privacy .pri-content h2 {
    font-size: 32px;
  }

  .privacy .pri-content p,
  .privacy .pri-content h3 {
    font-size: 15px;
    font-weight: 300;
  }

  table tr th,
  td {
    font-size: 15px;
    font-weight: 300;
  }

  .appendix {
    margin-top: 20px;
  }

  .privacy-policy>div {
    margin-bottom: 20px;
  }

  .privacy-policy>div ul {
    margin: 10px;
  }

  .privacy-policy ul li,
  .appendix ul li {
    font-size: 15px;
    font-weight: 300;
  }

  .appendix>div table ul {
    margin: 10px;
  }
}
/************************************************ footer ************************************************/
/* .contact */
section.contact {
    width: 100%;
    padding-bottom: 9.1666vw;
}
/* .contact 제목 사이 간격 */
.contact .t-box .title span {
    padding-left: 142px;
}
/* .contact - get in touch 버튼 */
section.contact .more-btn {
    background-color: #fff;
    color: #000;
}
section.contact .more-btn::after {
    background: url(../images/more_arrow_black.png) center center/contain no-repeat;
}
/* .contact - get in touch 버튼 마우스 오버 시 효과 */
section.contact .more-btn:hover {
    background-color: #000;
    color: #fff;
}
section.contact .more-btn:hover::after {
    background: url(../images/more_arrow_white.png) center center/contain no-repeat;
}

/****** footer ******/
footer {
    width: 100%;
    padding-bottom: 70px;
    letter-spacing: -0.02em;
}
footer a {
    color: #888;
}
footer > .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* footer - gnb 메뉴 */
footer .f-info .f-menu {
    display: flex;
    justify-content: start;
    gap: 30px;
}
footer .f-info .f-menu li a {
    font-size: 24px;
    font-weight: 500;
    color: #888;
    letter-spacing: -0.03em;
}
/* footer - privacy policy */
footer .f-info .f-links {
    display: flex;
    justify-content: start;
    gap: 20px;
    margin: 30px 0 10px;
}
footer .f-info .f-links li {
    position: relative; /* li::after의 기준! */
}
footer .f-info .f-links li::after {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background-color: #888;
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
}
footer .f-info .f-links li:last-child::after {
    display: none;
}
footer .f-info .f-links li a {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.02em;
}
/* footer - COPYRIGHT */
footer .f-info .copy {
    font-size: 16px;
    font-weight: 300;
    color: #888;
    letter-spacing: -0.02em;
}
/* footer - SNS links */
footer .f-sns a {
    font-size: 22px;
    font-weight: 300;
    text-align: right;
    line-height: 1.8181em;
}

@media all and (min-width: 769px) and (max-width: 1480px) {
  footer .f-info .f-menu li a {
    font-size: 1.62162vw;
  }
  footer .f-info .f-links li a {
    font-size: 1.081vw;
  }
  footer .f-info .copy {
    font-size: 1.081vw;
  }
  footer .f-sns a {
    font-size: 1.4864vw;
  }
}

@media all and (max-width: 1120px) {
    .contact .t-box .title span {
        padding-left: 12.6785vw;
    }
}
@media all and (min-width: 481px) and (max-width: 870px) {
  footer .f-info .f-menu{
    gap: 20px;
  }
  footer .f-info .f-menu li a {
    font-size: 14px;
  }
  footer .f-info .f-links li a {
    font-size: 13px;
  }
  footer .f-info .copy {
    font-size: 11px;
  }
  footer .f-sns a {
    font-size: 13px;
  }
  footer .f-info .f-links {
    margin: 11px 0 3px;
  }
}


@media all and (min-width: 481px) and (max-width: 768px) {
    section.contact {
        padding-bottom: 70px;
    }
    .contact .t-box .title span {
        padding-left: 9.375vw;
    }
    
}

@media all and (min-width: 481px) and (max-width: 610px) {
    .contact .more-btn {
        flex: 0 0 36.065vw;
        font-size: 2.6229vw;
        padding: 1.4754vw 7.0491vw;
    }
}

@media all and (max-width: 548px) {
    section.contact {
        padding-bottom: 12.773vw;
    }
    .contact .t-box .title span {
        padding-left: 50px;
    }
    /* .contact .more-btn {
        bottom: -6.25vw;
    } */
}
@media all and (max-width: 480px) {
    .contact .title div {
        padding-bottom: 4.1666vw;
    }
    footer > .footer {
      display: block;
    }
  
    footer .f-info .f-menu{
      justify-content: space-between;
      gap: 0;
    }
    footer .f-sns {
      display: flex;
      gap: 10px;
      margin-top: 12px;
    }
    footer .f-info .f-menu li a {
      font-size: 12px;
    }
    footer .f-info .f-links li a {
      font-size: 9px;
    }
    footer .f-info .copy {
      font-size: 9px;
    }
    footer .f-sns a {
      font-size: 10px;
    }
    footer .f-info .f-links {
      margin: 11px 0 3px;
  }
}



.cookie.show, .notie {
    display: block;
}
 .width-inner .text-popup.show, .notie .width-inner .img-popup.show{
    display: flex;
 }
.cookie.hide, .notie .width-inner .text-popup.hide, .notie .width-inner .img-popup.hide {
    display: none;
}

/* 글자 밑줄 표시 */
.underline{
  display: inline-block !important;
  color: inherit !important;
  display: inline-block !important;;
  border-bottom: 1px solid #6B6B6B !important;;
  white-space: nowrap !important;;
  line-height: 1em !important;
  vertical-align: baseline;
}
.nowrap{
  display: inline-block !important;
  color: inherit !important;
  white-space: nowrap !important;;
}

/* LEARN MORE 공동 버튼 css */
.btnmore{
  width: 255px;
  height: 50px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1;
  text-transform: uppercase;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 15px 9px;
  position: relative;
  gap: 20px;
  /* background: right 43px center/16.5px auto no-repeat; */
  /* padding: 13px 43px 9px 43px;
  background: right 43px center/16.5px auto no-repeat; */
}

/* we_do_detail - .list 버튼 */
.btnmore.list{
  margin: 0 auto;
  letter-spacing: 0em;
}
.btnmore::after{
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  background: center center/16.5px auto no-repeat;
}

/* main - .more 버튼 */
.btnmore.main, .btnmore.main3{
  flex: 0 0 255px;
  /* margin-bottom: 0.5em; */
}
/* main2 - .see more 버튼  */
.btnmore.main2{
  float: right;
  margin-top: 40px
}

/* .more 버튼 - 화이트 버전 */
.btnmore.white{
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  /* background-image: url(../images/more_arrow_black.png); */
}
.btnmore.white::after{
  background-image: url(../images/more_arrow_black.png);
}
.btnmore.white:hover{
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
}
.btnmore.white:hover::after{
  background-image: url(../images/more_arrow_white.png);
}

/* .more 버튼 - 블랙 버전 */
.btnmore.black{
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
}
.btnmore.black::after{
  background-image: url(../images/more_arrow_white.png);
}
.btnmore.black:hover{
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
}
.btnmore.black:hover::after{
  background-image: url(../images/more_arrow_black.png);
}

/* what_we_do_list - .more 버튼 블랙 버전 */
.wwd-list ul li:hover .btnmore.black{
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
}
.wwd-list ul li:hover .btnmore.black::after{
  background-image: url(../images/more_arrow_black.png);
}

.wwd-list ul li:hover .btnmore.black:hover{
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
}
.wwd-list ul li:hover .btnmore.black:hover::after{
  background-image: url(../images/more_arrow_white.png);
}

.btnmore.list::after{
  display: none;
}

.promotion-wrap article .list {
  margin-top: 10.4166%;
}
.work .btnmore.main3 {
  display: none;
  margin-top: 30px;
}
@media all and (min-width: 769px) and (max-width: 1080px) {
  .btnmore{
    width: 220px;
    height: 40px;
    font-size: 14px;
    letter-spacing: 0em;
    padding: 10px 15px 9px;
  }
  .btnmore.main, .btnmore.main3 {
    flex: 0 0 220px;
    /* margin-bottom: 0.5em; */
  }
  .btnmore::after{
    background: center center/15px auto no-repeat;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .promotion-wrap article .list {
      margin-top: 10.4166%;
  }
  .btnmore{
    width: 220px;
    height: 40px;
    font-size: 14px;
    letter-spacing: 0em;
    padding: 10px 15px 9px;
  }
  .btnmore.main,
  .btnmore.main3 {
    flex: 0 0 220px;
    /* margin-bottom: 0.5em; */
  }
  .btnmore::after{
    background: center center/15px auto no-repeat;
  }
  #service-btn {
    display: block;
    box-shadow: none;
    width: 55px;
    height: 55px;
    bottom: 228px;
  }
}
@media all and (max-width: 768px) {
  .sidewrap .sidebox .sidemenu .list-box > div:nth-last-of-type(2) {
    padding-bottom: 20px;
  }

  .t-box {
    position: initial;
  }
  /* .about .width-inner {
    padding-bottom: 100px !important;
  } */
  .about .txt {
    padding: 30px 0 0 0;
  }
  .title {
    display: block;
  }
  .about .btnmore.main{
    position: absolute;
    left: 50px;
    bottom: 0;
    margin-bottom: 0;
  }
  .about .width-inner {
    padding-bottom: 70px !important;
  }
  .contact .title div {
    padding-bottom: 4.1666vw;
  }
  .work .swiper {
    min-height: 400px;
    /* padding-bottom: 80px; */
  }
  .work .btnmore.main{
    /* position: absolute;
    left: 50px;
    bottom: 13.0208vw; */
    display: none;
  }
  .work .btnmore.main3 {
    position: sticky;
    display: flex;
  }
  .work .swiper .swiper-wrapper .swiper-slide .info-box {
    min-height: 174px;
  }
  .work .width-inner {
    position: initial;
  }
  footer .f-info .f-menu {
    justify-content: space-between;
    gap: 20px;
  }
  footer .f-sns {
    display: flex;
    gap: 10px;
    margin-top: 12px;
  }
  footer>.footer {
    display: block;
  }
}
@media all and (max-width: 480px) {
  .promotion-wrap article .list {
      margin-top: 65px;
  }
  .btnmore{
    width: 200px;
    height: 50px;
    font-size: 14px;
    letter-spacing: 0em;
    padding: 15px 15px 14px 15px;
  }
  .msg .btnmore{
    width: 100%;
  }
  .btnmore::after{
    background: center center/13px auto no-repeat;
  }
  .btnmore.main2{
    float: left;
    margin-top: 20px
  }
  .service .acco-list .acco-item a.acco-link .acco-name {
    font-size: 18px;
  }
  .service .acco-list .acco-item a.acco-link .acco-desc {
    font-size: 14px;
  }
  .about .btnmore.main {
    position: absolute;
    left: 20px;
    bottom: 0;
    margin-bottom: 0;
  }

  .work .btnmore.main {
    position: absolute;
    left: 20px;
    bottom: 55px;
  }
  .service .acco-list .acco-item button {
    width: 32px;
    height: 34px;
    background: url(../images/ico_down.png) right top/32px auto no-repeat;
  }

  .service .acco-list .acco-item.on button{
      background: url(../images/ico_up.png) right top/32px auto no-repeat;
  }

  /* #service-btn 버튼  */
  #service-btn {
    /* display: block; */
    width: 52px;
    height: 52px;
    box-shadow: none;
    display: none;
  }

}

@media all and (min-width: 1921px) {
    section.kv >.wrap-inner {
        max-width: 100%;
        height: 100vh;
    }

    section.kv >.wrap-inner > .kv-img > img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        display: block;
    }
}

@media all and (min-width: 769px) and (max-width: 1180px) {
  .width-inner {
    width: calc(100% - 13.021%) !important;
    padding: 0 6.5105% !important;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .width-inner {
    width: calc(100% - 100px) !important;
    padding: 0 50px !important;
  }
}
@media all and (max-width: 480px) {
  .width-inner {
    width: calc(100% - 40px) !important;
    padding: 0 20px !important;
  }
  footer .f-info .f-menu {
    justify-content: space-between;
    gap: 10px;
  }
}

a.prev[href="#"], a.next[href="#"]{
  cursor: default;
}

@media (min-width: 1921px) {
  .title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    font-size: 120px;
    font-weight: 700;
    line-height: 0.8333em;
    flex-wrap: nowrap;
    gap: 15px;
  }

  .about .txt p {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.2857em;
    letter-spacing: -0.05em;
    color: #000;
  }

  .cont-wrap .width-inner .cont-txt h2 {
    font-size: 120px;
    font-weight: 700;
    line-height: 0.7692em;
    text-transform: uppercase;
    margin-bottom: 86px;
  }
}

.mySwiper.workswiper .swiper-slide{
  cursor: pointer;
}
