/* 서비스 리스트 */

.service-container {
    box-sizing: border-box;
    margin-top: 58px;
    padding: 120px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    background: #FFF;
}

.service-list-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.service-list-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #EEE;
}

.service-list-wrapper:first-child {
    padding-top: 0;
}

.service-list-wrapper:last-child {
    padding-bottom: 0;
    border: none;
}

.service-list-wrap {
    width: 100%;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}

.service-list-wrap:hover {
    box-shadow: 6px 12px 32px 0px rgba(0, 0, 0, 0.06);
}

.more-detail {
    width: fit-content;
    border-radius: 100px;
    background: #06038D;
    display: none;
    box-sizing: border-box;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #FFF;
    font-size: 16px;
    line-height: 150%; /* 24px */
    letter-spacing: -0.4px;
    transition: 0.3s !important;
}

.more-detail:hover {
    background: #171855;
}

.list-img {
    width: 38%;
    border-radius: 8px;
}

.list-content-wrap {
    box-sizing: border-box;
    padding: 40px;
}

.list-inner-div {
    transform: translateY(30%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-list-wrap:hover .list-inner-div {
    transform: translateY(0);
}

.service-list-wrap:hover .more-detail {
    display: flex;
}

.list-content-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-top-div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.list-top-div>.p18 {
    line-height: 150%;
    word-break: keep-all;
}

.keyword {
    background: #FFF;
    border: 1px solid #F8E08E;
}

.service-container-b {
    box-sizing: border-box;
    padding: 120px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    border-top: 10px solid #F5F5F5;
}


/* 서비스 상세 */

.service-top-container {
    padding: 100px 120px;
    margin-top: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background-size: cover !important;
    background-position: center center !important;
}

.basic-top {
    background: url('../img/service/basic-top.png');
}

.premium-top {
    background: url('../img/service/premium-top.png');
}

.remodeling-top {
    background: url('../img/service/remodeling-top.png');
}

.branding-top {
    background: url('../img/service/branding-top.png');
}

.marketing-top {
    background: url('../img/service/marketing-top.png');
}

.service-top-container>.p24 {
    color: #BBB;
    line-height: 26px;
}

.service-detail-container {
    display: flex;
    box-sizing: border-box;
    padding: 120px;
    flex-direction: column;
    gap: 80px;
    background: #FFF;
    overflow: hidden;
}

.service-detail-container>p {
    word-break: keep-all;
}

.service-detail-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-box {
    height: 160px;
    display: flex;
    box-sizing: border-box;
    padding: 40px;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.09);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggleBtn {
    position: absolute;
    right: 22px;
    bottom: 18px;
    cursor: pointer;
}

.service-box-top {
    width: 100%;
    display: flex;
    gap: 16px;
}

.svg-div {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    background: #F8E08E;
    flex-shrink: 0;
}

.p-svg {
    background: #FFAA9F !important;
}

.r-svg {
    background: #D6D2C4 !important;
}

.service-box-div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-box-div>b {
    color: #333;
    line-height: 150%;
}

.service-box-div>p {
    color: #505050;
    font-size: 16px;
    line-height: 150%; /* 24px */
    letter-spacing: -0.4px;
    word-break: keep-all;
    display: -webkit-box;          
    overflow: hidden;              
    text-overflow: ellipsis;       
    -webkit-line-clamp: 1;        
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
}

.service-detail-wrapper .keyword-div {
    gap: 10px;
    row-gap: 8px;
}

.b-keyword {
    padding: 6px 8px;
    color: #716E65 !important;
}

.p-keyword {
    padding: 6px 8px;
    border: 1px solid #FFAA9F;
    color: #776A6A !important;
}

.keyword-div, .keyword-wrap {
    width: 100%;
    display: none;
    gap: 8px;
}

.keyword-wrap {
    flex-direction: column;
}

.keyword-wrap>p {
    line-height: 180%;
}

.flex-box {
    width: 100%;
    display: flex;
    gap: 12px;
}

.flex-box .service-box {
    width: 50%;
}

.service-box.active{
    height: auto;
}

.service-box.active .service-box-div > p {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
}

.service-box.active .keyword-div, .service-box.active .keyword-wrap {
    display: flex !important;
}

.service-box.active .toggleBtn {
    transform: rotate(180deg);
}

.service-detail-container2 {
    box-sizing: border-box;
    padding: 120px;
    background: #F7FAFF;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.s-pg-tit {
    padding-bottom: 20px;
    border-bottom: 1px solid #EAEEFF;
}

.s-pg-tit>span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.process-container {
    max-width: 910px;
    width: 100%;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    row-gap: 50px;
}

.line {
    position: absolute;
    top: 22%;
    left: 9%;
    width: 90%;
    height: 56%;
    border: 2px dashed rgba(153, 154, 246, 0.50);
    border-left: none;
    margin: 20px 0;
    z-index: 1;
}

.step-circle-wrap {
    width: 160px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    z-index: 10;
}

.step-circle-wrap>p {
    color: #1B1C80;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px; /* 175% */
    letter-spacing: -0.4px;
}

.step-circle-svg {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 200px;
    border: 1px solid rgba(153, 154, 246, 0.05);
    background: #FFF;
    aspect-ratio: 1 / 1;
}

.step-circle-svg>p {
    color: #333;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px; /* 125% */
    letter-spacing: -0.4px;
}

.step-arrow-div {
    width: 40px;
    padding-top: 40px;
}

.process-content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.process-detail {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    padding: 25px 30px;
    align-items: center;
    gap: 20px;
    background: #FFF;
}

.process-detail:nth-child(2n) {
    background: #F4F6FD;
}

.process-left-wrap {
    width: 220px;
    border-right: 0.5px solid rgba(0, 0, 0, 0.10);
    display: flex;
    gap: 12px;
    align-items: start;
}

.process-left-wrap>svg {
    display: none;
}

.process-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.process-left .p20 {
    color: #222;
}

.process-detail>.p18 {
    width: calc(100% - 220px);
    word-break: keep-all;
    box-sizing: border-box;
    padding-left: 20px;
}

.plus-div {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding-left: 10px;
}

.plus-div p {
    color: rgba(27, 28, 128, 0.70);
    font-size: 16px;
    font-weight: 300;
    line-height: 170%; /* 27.2px */
    letter-spacing: -0.4px;
    word-break: keep-all;
}

.service-detail-container3 {
    display: flex;
    box-sizing: border-box;
    padding: 120px;
    flex-direction: column;
    gap: 60px;
    background: #FFF;
}

.example-container {
    display: flex;
    box-sizing: border-box;
    padding: 120px 0 120px 120px;
    flex-direction: column;
    gap: 60px;
    background: #FFF;
}

.example-container .s-pg-tit {
    margin-right: 120px;
    border-bottom: 1px solid #EEE;
}

.example-container .common-nav {
    padding: 0;
}

.example-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    padding-right: 120px;
}

.service-detail-container3 .s-pg-tit {
    border-bottom: 1px solid #EEE;
}

.why-txt {
    font-family: Montserrat;
    font-size: 36px;
    font-weight: 500;
    line-height: 130%; /* 46.8px */
    letter-spacing: -0.9px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.why-tab-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.why-tab {
    width: calc(33.3% - 4px);
    background: rgba(27, 28, 128, 0.10); 
    display: flex;
    padding: 16px 0px;
    justify-content: center;
    align-items: center;
    color: #1B1C80;
    font-size: 20px;
    font-weight: 500;
    line-height: 130%; /* 26px */
    letter-spacing: -0.5px;
    cursor: pointer;
    gap: 5px;
    border-radius: 4px;
}

.why-tab:hover {
    background: rgba(27, 28, 128, 0.20);
    font-weight: 600;
}

.why-tab.this {
    background: #1B1C80;
    color: #FFF;
    font-weight: 600;
}

.tab-content-container {
    display: none !important;
    display: flex;
    gap: 40px;
    align-items: start;
}

.contain-active {
    display: flex !important;
}

.why-img {
    width: 35%;
    border-radius: 8px;
}

.why-div {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-tit {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    padding: 10px 12px;
    align-items: center;
    color: #111;
    font-size: 28px;
    font-weight: 600;
    line-height: 130%; /* 36.4px */
    letter-spacing: -0.7px;
    border-radius: 4px;
    background: rgba(248, 224, 142, 0.25);
    word-break: keep-all;
}

.p-why {
    background: rgba(255, 170, 159, 0.25) !important;
}

.r-why {
    background: rgba(214, 210, 196, 0.35) !important;
}

.why-content {
    color: #505050;
    font-size: 18px;
    line-height: 150%; /* 27px */
    letter-spacing: -0.45px;
    word-break: keep-all;
}

.why-more-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.more-process-div {
    display: flex;
    gap: 16px;
    align-items: start;
}

.more-process-div:last-child {
    gap: 8px;
}

.step {
    color: #1B1C80;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%; /* 27px */
    letter-spacing: -0.45px;
    display: flex;
    box-sizing: border-box;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.step-txt {
    color: #999;
    font-size: 16px;
    line-height: 170%;
    font-weight: 300;
    letter-spacing: -0.4px;
    word-break: keep-all;
}

.step-txt>p {
    color: #505050;
    font-size: 20px;
    font-weight: 600;
    line-height: 170%; /* 34px */
    letter-spacing: -0.5px;
}

.step-txt>p>span {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: -0.4px;
}


/* 브랜딩 */
.service-top-container2 {
    padding: 100px 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-size: cover !important;
    background-position: center center !important;
    margin-top: 58px;
}

.service-top-container2>.p20 {
    word-break: keep-all;
}

.service-top-div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-top-container2>p {
    line-height: 150%;
}

.branding-detail-container {
    box-sizing: border-box;
    padding: 120px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    background: #FFF;
}

.branding-detail-container .s-pg-tit {
    border-bottom: 1px solid #DDD;
}

.bg-yes {
    background: url('../img/service/branding/branding-bg.png');
    background-size: cover !important;
    background-position: center center !important;
}

.branding-detail-container .s-pg-tit {
    display: flex;
    align-items: center;
    gap: 5px;
}

.effect-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.effect-box {
    width: calc(33.3% - 20px);
    border-radius: 20px;
    border: 1px solid #CCCCDB;
    background: #FFF;
    box-shadow: 0px 2px 12px 0px rgba(27, 28, 128, 0.06);
    display: flex;
    box-sizing: border-box;
    padding: 40px 10px 20px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.effect-box p {
    word-break: keep-all;
}

.effect-box .p16 {
    margin-top: 6px;
}

.effect-box:hover {
    transform: translateY(-10px);
}

.illu {
    width: 60%;
}


.branding-detail-container2 {
    box-sizing: border-box;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
    background: #FCFCFC;
}

.branding-detail-container2 .s-pg-tit {
    box-sizing: border-box;
    padding: 0 120px;
    padding-bottom: 24px;
}

.banner {
    width: 100%;
}

.package-container {
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    row-gap: 32px;
    flex-wrap: wrap;
}

.package-box {
    width: calc(50% - 10px);
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(27, 28, 128, 0.20);
    overflow: hidden;
}

.package-box img {
    width: 100%;
}

.package-box-content {
    box-sizing: border-box;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.package-div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.p22 {
    font-size: 22px;
    line-height: 130%; /* 28.6px */
    letter-spacing: -0.55px;   
}

.package-div>.p14 {
    color: #AAA;
}

.popup-open {
    border-radius: 999px;
    border: 0.5px solid #1B1C80;
    background: #FFF;
    display: none;
    box-sizing: border-box;
    padding: 6px 14px;
    justify-content: center;
    align-items: flex-start;
    color: #1B1C80;
    text-align: center;
    font-size: 12px;
    line-height: 130%; /* 15.6px */
    letter-spacing: -0.3px;
    cursor: pointer;
}

.customer-container {
    width: 100%;
    display: flex;
    gap: 20px;
    row-gap: 60px;
    flex-wrap: wrap;
    align-items: start;
}

.customer-wrap {
    width: calc(33.3% - 15px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.customer-wrap>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #EEE;
}

.customer-wrap>p {
    box-sizing: border-box;
    padding: 0px 4px;
    word-break: keep-all;

}

.customer-wrap.hidden {
    display: none;
}

#customer-more-btn {
    width: fit-content;
    margin: 0 auto;
    border-radius: 4px;
    display: flex;
    box-sizing: border-box;
    padding: 4px 12px;
    align-items: center;
    gap: 2px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px; /* 120% */
    letter-spacing: -0.5px;
    cursor: pointer;
}

#customer-more-btn:hover {
    background: #F4D159;
}

.package-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 700px;
    box-sizing: border-box;
    padding: 20px 20px 50px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 6px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.80);
    z-index: 1000;
}

.close-package {
    cursor: pointer;
}

.package-popup.active {
    display: flex;
}

.package-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.package-content-div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.package-content>.p16 {
    color: #AAA;
}

.package-content>.p18 {
    word-break: keep-all;
}

.example-swiper-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}
  
.example-swiper-container .swiper-slide {
    width: 400px;
}

.example-swiper-container img {
    width: 100%;
    border-radius: 8px;
}
  
.example-swiper-pagination .swiper-pagination-bullet {
    height: 2px;
    background: rgba(27, 28, 128, 0.10) !important;
    opacity: 1 !important;
    border-radius: 0;
    margin: 0 !important;
}
  
.example-swiper-pagination .swiper-pagination-bullet-active {
    background: #1B1C80 !important;
}

.banner-div {
    display: flex;
    flex-direction: column;
}

.banner-swiper-container {
    width: 100%;
    overflow: hidden;
}

.banner-swiper-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-flip {
    position: relative;
    cursor: pointer;
}
  
.card-flip-faces {
    height: 100%;
    transition: all ease 0.5s;
    transform-style: preserve-3d;
    transform: perspective(600px) rotateY(0deg);
}
  
.card-flip:hover .card-flip-faces {
    transform: perspective(600px) rotateY(180deg);
}
  
.card-flip-back {
    border-radius: 20px;
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: all ease 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  
.card-flip-front {
    gap: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
}
  
.card-flip-front, .card-flip-back {
    background: #FFF;
}
  
.card-flip .card-flip-back {
    position: absolute;
    top: 0;
    transform: perspective(600px) rotateY(180deg);
    backface-visibility: hidden;
}

.card-back-text {
    color: #505050;
    text-align: center;
    font-size: 16px;
    line-height: 150%; /* 24px */
    letter-spacing: -0.4px;
}

/* 마케팅 */
.m-container .s-pg-tit {
    display: flex !important;
    gap: 5px;
    align-items: center !important;
    border-radius: 4px;
    background: #E3EBFF;
    display: flex;
    box-sizing: border-box;
    padding: 8px 16px;
    align-items: flex-start;
    align-self: stretch;
    border: none;
}

.strength-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.strength-wrap {
    width: 100%;
    box-sizing: border-box;
    padding: 40px 60px 0;
    display: flex;
    gap: 40px;
    align-items: center;
    border-top: 1px solid #EEE;
    justify-content: space-between;
}

.strength-wrap:first-child {
    border: none;
    padding: 0 60px;
}

.strength-div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 40px 0;
}

.strength-div p, .strength-div div {
    word-break: keep-all;
}

.strength-div div {
    box-sizing: border-box;
    padding-left: 8px;
}

.strength-wrap>img {
    width: 20%;
}

.border-e {
    border-bottom: 1px solid #EEE;
}

.marketing-process-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.m-process-step {
    border-radius: 999px;
    display: flex;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    align-items: center;
    gap: 20px;
}

.border-b1 {
    border: 1px solid #7C9BFF;
}

.border-b2 {
    border: 1px solid #4D6EDC;
}

.border-b3 {
    border: 1px solid #3041AD;
}

.border-b4 {
    border: 1px solid #1B1C80;
}

.border-b5 {
    border: 1px solid #0A0B53;
}

.step-tit {
    border-radius: 999px;
    background: #7C9BFF;
    display: flex;
    box-sizing: border-box;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%; /* 27px */
    letter-spacing: -0.45px;
}

.why-cona {
    width: 450px;
}

.refer-btn {
    width: fit-content;
    display: none;
    box-sizing: border-box;
    padding: 8px 12px 8px 19.5px;
    justify-content: center;
    align-items: center;
    gap: 2px;
    border-radius: 4px;
    background: #1B1C80;
    color: #FFF !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: -0.4px;
    margin-top: 20px;
    cursor: pointer;
}

.service-box.active .refer-btn {
    display: flex;
}

.refer-btn:hover {
    background: #171855;
}

.step-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 600px;
    box-sizing: border-box;
    padding: 20px 20px 50px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.80);
    z-index: 1000;
}

.step-popup.active {
    display: flex;
}

.step-popup-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-popup-content .p16 {
    font-size: 16px !important;
    letter-spacing: -0.4px !important;
}

.step-popup-content .p20 {
    font-size: 20px !important;
    line-height: 165% !important; /* 33px */
    letter-spacing: -0.5px !important;
    padding: 8px 0;
}

.step-popup-content .p16:last-child {
    padding: 8px 0;
}

.padding-b-0 {
    padding-bottom: 0 !important;
}

.bg {
    background: 129.359% 103.103% no-repeat, #F7FAFF;
}

.example-container>.montserrat {
    margin-right: 120px;
}

.bg-y {
    background: rgba(248, 224, 142, 0.50);
    color: #111;
}

.bg-y:hover {
    background: #F8E08E;
}

.bg-p {
    background: rgba(255, 170, 159, 0.50);
    color: #111;
}

.bg-p:hover {
    background: #FFAA9F;
}

.bg-b {
    background: rgba(214, 210, 196, 0.50);
    color: #111;
}

.bg-b:hover {
    background: #D6D2C4;
}

.detail-img, video {
    width: 100%;
    border-radius: 8px;
}

/* 1550px */
.huge-br {
    display: none;
}

/* 1450px */
.big-br {
    display: none;
}

/* 1210px */
.big-br2 {
    display: none;
}

/* 900px */
.mi-br {
    display: none;
}

.ta-br2 {
    display: none;
}

/* 750px */
.ta-br {
    display: none;
}

/* 600px */
.mo-br {
    display: none;
}

/* 480px */
.xs-br, .xs-br2 {
    display: none;
}

/* 400px */
.xxs-br {
    display: none;
}

/* 370px */
.xs-br2 {
    display: none;
}

/* 370px */
.xxxs-br {
    display: none;
}

iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

.nameplate {
    width: 100%;
}

.banner {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

.montserrat>span {
    font-family: 'Pretendard';
}


/* 상담신청 팝업 */
.contact-popup {
    width: 700px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    justify-content: center;
    box-sizing: border-box;
    padding: 50px 40px 60px;
    z-index: 10001;
    background: #FFF;
    border-radius: 12px;
    overflow-y: scroll;
}

.contact-close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.contact-popup-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.contact-div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.contact-div>p {
    width: 100%;
    word-break: keep-all;
}

.popup-logo {
    width: 200px;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


@media(min-width: 1700px) {
    .process-container {
        max-width: 1200px;
    }
    .step-circle-wrap {
        width: 220px;
    }
    .step-circle-svg svg {
        width: 70px;
        height: 70px;
    }
    .step-circle-wrap>p, .step-circle-svg>p {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
}

@media(max-width: 1550px) {
    .huge-br {
        display: block;
    }
}

@media(max-width: 1450px) {
    .big-no-br {
        display: none;
    }
    .big-br {
        display: block;
    }
}

@media(max-width: 1350px) {
    .service-container, .service-container-b, .service-detail-container, .branding-detail-container, .service-detail-container3, .service-detail-container2 {
        padding: 120px 60px;
    }
    .service-top-container2 {
        padding: 100px 60px;
    }
    .example-container {
        padding: 120px 0 120px 60px;
    }
    .example-wrap {
        padding-right: 60px;
    }
    .example-container .montserrat {
        margin-right: 60px;
    }
    .branding-detail-container2 .s-pg-tit {
        padding: 0 60px 24px;
    }
    .list-content-wrap {
        padding: 20px 40px;
    }
    .list-img {
        width: 40%;
    }
}

@media(max-width: 1210px) {
    .big-no-br2 {
        display: none;
    }
    .big-br2 {
        display: block;
    }
}

@media(max-width: 1200px) {
    .strength-wrap>img {
        width: 30%;
    }
}

@media(max-width: 1100px) {
    .effect-box {
        width: calc(50% - 10px);
    }
    .service-box {
        padding: 20px;
    } 
    .list-img {
        width: 43%;
    }
}

@media(max-width: 1024px) {
    .service-container, .service-container-b, .service-detail-container {
        padding: 80px 60px 120px;
    }
    .service-top-container2, .m-container+.service-detail-container, .service-detail-container3, .service-detail-container2 {
        padding: 80px 60px;
    }
    .list-content-wrap {
        padding: 20px;
    }
    .strength-wrap {
        padding: 40px 40px 0;
    }
    .strength-wrap:first-child {
        padding: 0 40px;
    } 
    .example-container {
        padding: 80px 0 80px 60px;
    }
    .branding-detail-container {
        padding: 80px 60px;
    }
    .branding-detail-container2 {
        padding: 80px 0;
    }
    .flex-box {
        flex-direction: column;
    }
    .flex-box .service-box {
        width: 100%;
    }
    .why-div {
        gap: 20px;
    }
    .why-tit {
        font-size: 32px;
        letter-spacing: -0.8px;
    }
    .why-content, .step-txt>p {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    .step {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .p32 {
        font-size: 28px;
        letter-spacing: -0.7px;
    }
    .step-open {
        display: flex;
    }
    .huge-br {
        display: none;
    }
    .service-box .big-br2 {
        display: none;
    }
    .list-top-div>.p18 {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .more-detail {
        font-size: 14px;
        letter-spacing: -0.35px;
        padding: 8px 16px;
    }
    .step-arrow-div {
        width: 35px;
    }
    .step-arrow-div>svg {
        width: 23px;
        height: 23px;
    }
    .step-circle-wrap {
        width: 140px;
    }
    .step-circle-svg>p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.35px;
    }
}

@media(max-width: 1000px) {
    .step-arrow-div {
        width: 30px;
    }
}

@media(max-width: 900px) {
    .mi-no-br {
        display: none;
    }
    .service-top-div {
        gap: 6px;
    }
    .p24 {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    .p20 {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .p32, .s-pg-tit {
        font-size: 24px;
        letter-spacing: -0.6px;
    }
    .s-pg-tit svg {
        width: 170px;
    }
    .p18, .step-tit {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .step-tit {
        padding: 6px 18px;
    }
    .strength-wrap>img {
        width: 35%;
    }
    .m-container {
        gap: 40px;
    }
    .strength-container {
        gap: 20px;
    }
    .strength-wrap {
        padding: 20px 20px 0;
        gap: 20px;
    }
    .strength-wrap:first-child {
        padding: 0 20px;
        gap: 20px;
    } 
    .marketing-process-container {
        gap: 1px;
    }
    .marketing-process-container>svg {
        width: 30px;
        height: 30px;
    }
    .m-process-step {
        padding: 12px;
    }
    .customer-container {
        row-gap: 40px;
    }
    .customer-wrap {
        width: calc(50% - 10px);
    }
    .p36 {
        font-size: 28px;
        letter-spacing: -0.7px;
    }
    .service-box-top>p {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    .why-cona {
        width: 380px;
    }
    .why-tab {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    .tab-content-container {
        flex-direction: column;
        gap: 20px;
    }
    .why-img, .why-div {
        width: 100%;
    }
    .why-tit {
        font-size: 24px;
        letter-spacing: -0.6px;
    }
    .p32 {
        font-size: 24px;
        letter-spacing: -0.6px;
    }
    .mi-br {
        display: block;
    }
    .p28 {
        font-size: 24px;
        letter-spacing: -0.6px;
    }
    .line {
        left: 11%;
        width: 85%;
    }
    .process-left>.p18 {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    .process-left>.p20 {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    .process-detail {
        align-items: start;
        flex-direction: column;
        gap: 12px;
    }
    .process-left-wrap {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    }
    .process-left{
        padding-bottom: 10px;
    }
    .process-detail>.p18 {
        width: 100%;
        padding: 0;
    }
    .card-flip:hover .card-flip-faces {
        transform: none;
    }
    .popup-open {
        display: flex;
    }
    .banner-div>.p36 {
         gap: 0;
    }
    .service-list-wrap {
        flex-direction: column;
    }
    .list-img, .list-content-wrap {
        width: 100%;
    }
    .list-content-wrap {
        padding: 20px 10px;
        gap: 20px;
    }
    .more-detail {
        display: none !important;
    }
    .process-container {
        display: none;
    }
    .process-left-wrap>svg {
        display: block;
    }
}

@media(max-width: 800px) {
    .line {
        width: 88%;
    }
}

@media(max-width: 768px) {
    .service-container, .service-container-b, .service-detail-container {
        padding: 60px 40px 100px;
    }
    .service-top-container2 {
        padding: 60px 40px;
    }
    .m-container+.service-detail-container, .service-detail-container3, .service-detail-container2 {
        padding: 80px 40px;
    }
    .strength-container {
        gap: 60px;
    }
    .strength-wrap {
        padding: 0 !important;
        gap: 0 !important;
        flex-direction: column-reverse;
        align-items: start;
    } 
    .strength-wrap:nth-child(2) {
        flex-direction: column;
        align-items: start;
    }
    .strength-wrap>img {
        width: 80%;
        margin: 0 auto;
    }
    .strength-div {
        padding: 0;
    }
    .m-container {
        border-bottom: 8px solid #F5F5F5;
    }
    .strength-div div {
        padding-left: 0;
    }
    .m-process-step {
        flex-direction: column;
        gap: 8px;
    }
    .example-wrap {
        padding-right: 40px;
    }
    .example-container .s-pg-tit {
        margin-right: 40px;
    }
    .example-container {
        padding: 80px 0 80px 40px;
    }
    .branding-detail-container {
        padding: 80px 40px;
        gap: 40px;
    }
    .branding-detail-container2 .montserrat {
        padding: 0 40px 24px;
    }
    .ta-br2 {
        display: block;
    }
}

@media(max-width: 750px) {
    .package-container {
        gap: 32px;
    }
    .effect-box, .package-box {
        width: 100%;
    }
    .package-popup {
        width: 550px;
    }
    .ta-br {
        display: block;
    }
    .process-detail {
        padding: 20px;
    }
    .contact-popup {
        width: 90%;
        border-radius: 8px;
        padding: 30px 20px 40px;
    }
    .popup-logo {
        width: 165px;
    }
}

@media(max-width: 600px) {
    .service-container, .service-container-b, .service-detail-container {
        padding: 40px 20px 80px;
        gap: 40px;
    }
    .service-container-b {
        border-top: 8px solid #F5F5F5;
    }
    .list-content-wrap {
        padding: 20px 4px;
    }
    .service-top-container2 {
        padding: 40px 20px;
        gap: 20px;
    }
    .p24 {
        font-size: 16px;
        line-height: 24px; 
        letter-spacing: -0.4px;
    }
    .p20, .step-tit {
        font-size: 14px;
        letter-spacing: -0.35px;
    }
    .s-pg-tit>span {
        gap: 2px;
    }
    .m-container>.p32 {
        font-size: 20px !important;
        letter-spacing: -0.5px !important;
        padding: 0 !important;
    }
    .m-container>.p32 {
        flex-direction: column;
        background: #FFF;
        align-items: start !important;
        gap: 4px;
    }
    .m-container>.p32>span {
        border-radius: 4px;
        background: #E3EBFF;
        box-sizing: border-box;
        padding: 4px 8px;
    }
    .s-pg-tit svg {
        width: 125px;
    }
    .s-pg-tit {
        font-size: 20px;
        letter-spacing: -0.5px;
        padding-bottom: 12px;
    }
    .m-container+.service-detail-container {
        padding: 80px 20px;
        gap: 40px;
        border-bottom: 10px solid #F5F5F5;
    }
    .marketing-process-container {
        gap: 0.837px;
    }
    .marketing-process-container>svg {
        width: 20px;
        height: 20px;
    }
    .m-process-step {
        padding: 8.375px;
        border-radius: 418.331px;
    }
    .example-container {
        padding: 80px 0 80px 20px;
        gap: 40px;
    }
    .example-wrap {
        padding-right: 20px;
    }
    .example-container .montserrat {
        margin-right: 20px;
    }
    .branding-detail-container, .service-detail-container3, .service-detail-container2 {
        padding: 80px 20px;
        gap: 40px;
    }
    .branding-detail-container2 .s-pg-tit {
        padding: 0 20px 12px;
    }
    .package-popup {
        width: 450px;
    }
    .mo-br {
        display: block;
    }
    .customer-container {
        gap: 12px;
        row-gap: 32px;
    }
    .customer-wrap {
        width: calc(50% - 6px);
        gap: 8px;
    }
    .customer-wrap>.p18, #customer-more-btn {
        font-size: 14px;
        letter-spacing: -0.35px;
    }
    .s-container {
        padding-top: 80px;
    }
    .service-top-container {
        padding: 40px 20px;
        align-items: start;
        gap: 6px;
    }
    .p36 {
        font-size: 24px;
        letter-spacing: -0.6px;
    }
    .service-box-top>p {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .service-detail-container3 .s-pg-tit {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    .why-cona {
        width: 250px;
    }
    .why-tab {
        padding: 16px 0;
        font-size: 14px;
        letter-spacing: -0.35px;
    }
    .step, .step-txt>p {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .step-txt>p>span, .step-txt {
        font-size: 14px;
        letter-spacing: -0.35px;
    }
    .why-tit {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    .why-content {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .p32 {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    .plus-div p, .refer-btn {
        font-size: 14px;
        letter-spacing: -0.35px;
    }
    .step-popup {
        width: 450px;
    }
    .p16 {
        font-size: 14px;
        letter-spacing: -0.35px;
    }
    .service-box .keyword {
        font-size: 12px;
        letter-spacing: -0.3px;
        padding: 6px 10px !important;
    }
    .strength-wrap .p32 {
        font-size: 24px;
        letter-spacing: -0.6px;
    }
    .p28 {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    .service-box {
        gap: 24px;
    }
    .service-box-div>p {
        font-size: 14px;
        letter-spacing: -0.35px;
    }
    .banner-div {
        gap: 20px;
    }
}

@media(max-width: 480px) {
    .xs-br {
        display: block;
    }
    .xs-br2 {
        display: block;
    }
    .strength-wrap>img {
        width: 90%;
    }
    .step-tit {
        font-size: 12px;
        letter-spacing: -0.3px;
        padding: 3.35px 10.05px;
    }
    .m-process-step {
        border-radius: 35px;
    }
    .m-process-step .p20 {
        text-align: center;
    }
    .branding-detail-container .s-pg-tit {
        display: flex;
        flex-direction: column;
        align-items: start !important;
    }
    .package-popup, .step-popup {
        width: 390px;
    }
    .example-swiper-container .swiper-slide {
        width: 260px;
    }
    .why-tab {
        flex-direction: column !important;
        gap: 0;
        height: 70px;
    }
    .xs-no-br {
        display: none;
    }
    .example-container .contact-btn {
        max-width: 480px;
        width: auto;
        margin: 0;
        margin-right: 20px !important;
    }
    .p32 {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    .list-top-div>.p18 {
        font-size: 14px;
        letter-spacing: -0.35px;
    }
    .service-box {
        height: 130px;
    }
    .service-box-div>p {
        -webkit-line-clamp: 2;
    }
}

@media(max-width: 400px) {
    .package-popup, .step-popup {
        width: 340px;
    }
    .xxs-br {
        display: block !important;
    }
    .xxs-no-br {
        display: none;
    }
}

@media(max-width: 370px) {
    .xs-br2 {
        display: none;
    }
    .xxxs-br {
        display: block;
    }
    .xxxs-no-br {
        display: none;
    }
    .service-box {
        padding: 40px 10px;
    }
}

