/* section - ohsquare font class */
.sq {
    font-family: 'Ohsquare';
}

.sq-bold {
    font-family: 'Ohsquare-bold';
}

.cursive {
    font-family: 'Playwrite NZ Basic';
}

/* SEO h1 hidden 처리 index */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* section common */
.secWrap .subTitle {
    width: 100%;
    margin-bottom: 8px;
    text-align: center;
    font-size: 3.8rem;
    color: var(--gray-500);
}

.secWrap .title {
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
    font-size: 7.2rem;
    font-family: 'Ohsquare-bold';
}


/* main video */
#mainVidWrap {
    position:relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--dark);
    opacity: 0;
    transition: opacity 1s ease;
}

#mainVidWrap.show {
    opacity: 1;
}

#mainVidWrap #mainVid{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 */
    min-height: 100vh;
    min-width: 177.78vh; /* 16:9 */
    transform: translate(-50%, -50%);    
}

#mainVidWrap .vidText {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 5.8rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px #000;
}

#mainVidWrap .scrollDown {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    position: relative;
    width: 36px;
    height: 56px;
    margin: 0 auto 12px;
    border: 2px solid #fff;
    border-radius: 36px;
}

@-webkit-keyframes wheel {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

@keyframes wheel {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

.mouse::before {
    content: "";
    width: 3px;
    height: 10px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 5px;
    opacity: 1;
    -webkit-animation: wheel 1s linear infinite;
            animation: wheel 1s linear infinite;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* main sec1 */
.text-accent {
    position: relative;
    display: inline-block;
    width: fit-content;
}

.text-accent::after {
    content: '';
    position: absolute;
    top: -5px;
    left: calc(50% - 10px);
    display: block;
    width: 20px;
    height: 5px;
    border-radius: 5px;
    background: var(--primary);
}

.text-bg {
    position: relative;
    display: inline-block;
    width: fit-content;
    z-index: 1;
}

.text-bg::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: calc(50% - 2px);
    background: var(--primary);
    opacity: 0.5;
    z-index: -1;
}

.sec1 {
    position: relative;
    background-image: 
        url("/public/assets/images/main/bgGrid.png"),
        linear-gradient(0deg, var(--bg-gr-primary));
    background-repeat: no-repeat, no-repeat;
    background-position: bottom, center;
    background-size: 1920px, cover;
}

.sec1 .textBox {
    width: 100%;
    margin-bottom: 260px;
    z-index: 3;
}

.sec1 .text1 .txtTop {
    font-size: 8.0rem;
}

.sec1 .text1 .txtTop .cursive {
    font-size: 4.0rem;
}

.sec1 .text1 .txtBottom {
    font-size: 8.4rem;
    margin-top: -14px;
}

.sec1 .text2 {
    font-size: 2.6rem;
    line-height: 1.4;
}

.sec1 .btn {
    font-size: 2.2rem;
}

.sec1 .imgBox {
    position: absolute;
    right: 20px;
    bottom: -50px;
    max-width: 486px;
    width: calc(100% - 40px);
}


/* sec2 */
.sec2 .cardWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sec2 .cardWrap .card {
    position: relative;
    display: block;
    width: calc((100% - 40px) / 3);
    aspect-ratio: 1/1;
    padding: 30px 20px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    background-image: url(/public/assets/images/main/card-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.sec2 .card .cardCont {
    width: 100%;
    height: 100%;
}

.sec2 .card .cardTitle {
    font-size: 2.8rem;
    font-weight: 700;
}

.sec2 .card .cardImg {
    position: absolute;
    width: 100%;
    bottom: -10px;
    right: 0;
    transition: bottom 0.3s ease;
}

.sec2 .card .cardImg img {
    display: block;
}

.sec2 .card .cardInfo {
    position: absolute;
    top: 0;
    left: 0;
    display: none; /* flex */
    flex-direction: column;
    align-items: end;
    justify-content: end;
    width: 100%;
    height: 100%;
    padding: 20px 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    font-size: 16px;
    text-shadow: 0 0 3px rgba(0,0,0,0.8);
    text-align: right;
}

.sec2 .card:hover .cardInfo {
    display: flex;
}

.sec2 .card:hover .cardImg {
    bottom: 0px;
}

/* sec3 */
.sec3 .compareBox {
    display: flex;
    align-items: center;
    line-height: 1;
}

.sec3 .compareBox > div {
    height: fit-content;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    overflow: hidden;
}

.sec3 .compareBox > div:nth-child(1) {
    width: calc(50% + 20px);
    background: #f0f3f4;
    color: var(--gray-700);
}

.sec3 .compareBox > div:nth-child(2) {
    width: calc(50% + 20px);
    background: #fff;
    margin-left: -20px;
    box-shadow: 0 4px 20px rgba(122,131,138,0.2);
}

.sec3 .compareBox > div:nth-child(2) .cardTop {
    padding: 50px 30px;
}

.sec3 .cardTop {
    padding: 35px 30px;
    font-size: 3.2rem;
    text-align: center;
    font-weight: 600;
}

.sec3 .cardCont li {
    padding: 30px;
    font-size: 2.4rem;
    border-top: 1px solid var(--gray-light);
}

.sec3 .compareBox > div:nth-child(2) li:nth-child(odd) {
    background: #FDF6FA;
}

/* secWrap info box common style - sec3, sec5 */
.lrBox .infoBox {
    width: calc(32% - 15px);
}

.lrBox .imgBox {
    width: calc(68% - 15px);
}

.lrBox .infoBox .infoSubtitle {
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--gray-300);
    text-transform: capitalize;
}


.lrBox .infoBox .infoTitle {
    font-weight: 900;
    font-size: 3.8rem;
    margin-bottom: 26px;
    line-height: 1.2;
}

.lrBox .infoBox .infoTitle .logo {
    font-size: 5.2rem;
}

.lrBox .infoBox .infoTitle span {
    line-height: 1;
}

.lrBox .infoBox .infoConts {
    font-size: 2.0rem;
}

.lrBox .imgBox {
    border-radius: 12px;
    overflow: hidden;
}

.lrBox .imgBox .aboutImg {
    width: 50%;
    aspect-ratio: 1.2/1;
    background-size: cover;
    background-position: center center;
}
/* ============================ */

.sec3 .netWorkSlider {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 1) 10%,
        rgba(0, 0, 0, 1) 90%,
        rgba(0, 0, 0, 0)
    );    
}

.sec3 .netWorkSlider .sliderTrack {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    width: max-content;
    will-change: transform;
}

@-webkit-keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@-webkit-keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.sec3 .netWorkSlider .slide {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    min-width: 180px;
    max-width: max-content;
    padding: 2px 20px 2px 10px;
    background: var(--light);
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
}

.sec3 .netWorkSlider .slide img {
    display: block;
    width: 60px;
}

/* sec4 */
.sec4 .videoWrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--dark);
}

.sec4 .videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.sec4 .videoSwiper {
    width: 100%;
    padding: 10px 0;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 1) 10%,
        rgba(0, 0, 0, 1) 90%,
        rgba(0, 0, 0, 0)
    );     
}

.sec4 .videoSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.sec4 .vidItem {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease, font-weight 0.3s ease;
}

.sec4 .vidItem.active {
    opacity: 1;
    font-weight: 700;
}

.sec4 .imgBox img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.sec4 .vidTitle {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    color: var(--gray-700);
    text-align: center;
}

.banner {
    width: 100%;
    background: var(--primary-light);
}

.banner img {
    width: 100%;
    max-width: 1024px;
    margin: auto;
}

.sec6 {
    background: linear-gradient(180deg, var(--bg-gr-primary));
}

.sec6 .planWrap {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 20px;
}

.sec6 .planBox {
    width: calc((100% - 10px) / 3);
    padding: 30px 30px 14px;
    background: #fff;
    border-radius: 12px;
    border: 1px inset var(--dark);
}

.sec6 .planBox:nth-child(odd) {
    margin-top: 80px;
}

.sec6 .planBox .planNm {
    width: fit-content;
    padding: 8px 20px;
    margin-bottom: 40px;
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
}

.sec6 .planBox .priceDiscount {
    font-size: 2.0rem;
    color: var(--gray-500);
}

.sec6 .planBox .price {
    margin-bottom: 5px;
    font-size: 3.8rem;
    font-weight: 700;
}

.sec6 .planBox .price small {
    font-size: 2.4rem;
}

.sec6 .planBox .priceVat {
    font-size: 14px;
    color: var(--gray-300);
    margin-bottom: 30px;
}

.sec6 .planBox .btn3D {
    display: block;
    width: 100%;
    background-color: var(--dark);
    color: #fff;
    transition: all 0.3s;
}

.sec6 .planBox .btn3D-success {
    box-shadow: 4px 5px 0 #BDEBFF;
}

.sec6 .planBox .btn3D-primary {
    box-shadow: 4px 5px 0 #FFD5EF;
}

.sec6 .planBox .btn3D-secondary {
    box-shadow: 4px 5px 0 #B3F0E4;
}

.sec6 .planBox .btn3D:hover{
    transform: translate(-2px, -2px);
}

.sec6 .planBox .btn3D:hover.btn3D-success {
   box-shadow: 6px 7px 0 #BDEBFF; 
}

.sec6 .planBox .btn3D:hover.btn3D-primary {
   box-shadow: 6px 7px 0 #FFD5EF; 
}

.sec6 .planBox .btn3D:hover.btn3D-secondary {
   box-shadow: 6px 7px 0 #B3F0E4; 
}

.sec6 .planBox .planCont {
    margin-top: 20px;
}

.sec6 .planBox .planCont li {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: start;
    gap: 10px;
    padding: 16px 0;
    line-height: 1.4;
}

.sec6 .planBox .planCont li p {
    margin-top: -2.5px;
}

#naverBlogList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blogCard {
    width: calc((100% - 40px) / 3);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    background: #fff;
}

.blogThumb {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.blogCont {
    padding: 14px;
    border-top: 1px solid var(--gray-light);
    background: #fff;
    transition: background 0.3s ease;
}

.blogTitle {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogDate {
    font-size: 12px;
    color: var(--gray-500);
}

.blogCard:hover .blogThumb {
    transform: scale(1.03);
}

.blogCard:hover .blogCont {
    background: var(--light);
}
/* ==main== */

/* == subpage common == */
#subContsWrap {
    font-size: 1.8rem;
}

#subContsWrap .topTextBoxBg {
    padding: 80px 0;
    background: var(--secondary-light);
}

#subContsWrap .topTextBox {
    border-left: 5px solid var(--secondary);
    border-right: 5px solid var(--secondary);
    line-height: 1.4;
}

#subContsWrap .topTextBox > div {
    margin-bottom: 20px;
    font-size: 3.2rem;
    font-family: "Ohsquare-bold";
}

#subContsWrap .topTextBox > p {
    font-size: 2.0rem;
    line-height: 1.4;
    color: var(--gray-700);
}

#subContsWrap .subSecTitle {
    font-size: 3.0rem;
    font-weight: 700;
    margin-bottom: 30px;
}

#subContsWrap .subSecTitle::before {
    content: '';
    display: block;
    width: 25px;
    height: 5px;
    border-radius: 5px;
    background: var(--primary);
    margin-bottom: 8px;
}

#subContsWrap .orgName {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 3.0rem;
    font-weight: 700;
    margin-bottom: 20px;
}

#subContsWrap .orgName .line {
    display: inline-block;
    width: 5px;
    height: 3.0rem;
    border-radius: 5px;
    background: var(--primary);
}

#subContsWrap .secInnerTitle {
    margin-bottom: 20px;
    font-size: 2.4rem;
    font-weight: 700;
}

#subContsWrap .numList .item {
    margin-bottom: 10px;
    font-size: 2.0rem;
    font-weight: 600;
}

#subContsWrap .numList .info {
    line-height: 1.4;
    color: var(--gray-700);
}

.stepCardWrap,
.badgeCardWrap {
    gap: 30px var(--gap-20);
    margin-top: 40px;
}

.miniCardWrap {
    gap: var(--gap-20);
}

.miniCard {
    position: relative;
    padding: 30px 20px;
    min-height: 170px;
    border: 1px solid var(--light);
    border-radius: 8px;
    background: #fff;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    line-height: 1.4;
}

.stepCardWrap .stepItem,
.badgeCardWrap .miniCard{
    position: relative;
    overflow: visible !important;
}

.badgeCardWrap .miniCard {
    padding: 58px 20px 30px;
}

.miniCard2 {
    width: calc((100% - 20px) / 2);
}

.miniCard3 {
    width: calc((100% - 40px) / 3);
}

.miniCard4 {
    width: calc((100% - 60px) / 4);
}

.miniCard > * {
    z-index: 1;
}

.miniCard > i {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12rem;
    color: var(--light);
    z-index: 0;
}

.miniCard .cardBadge {
    position: absolute;
    top: -40px;
    left: calc(50% - 40px);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: #fff;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border: 1px solid var(--light);
    border-radius: 100%;
    font-size: 32px;
}

.miniCard .cardTitle {
    min-height: 36px;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;    
}

.miniCard .cardInfo {
    font-size: 16px;
}

.miniCard .cardInfoList {
    padding: 0 20px;
}

.miniCard .cardInfoList li {
    list-style: disc;
    font-size: 16px;
    word-break: break-all;
}

.miniCard .cardEtc {
    position: absolute;
    top: -15px;
    right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 30px;
    padding: 3px 20px;
    background: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px 8px 0 8px;
}

.badgeCardWrap.gy-50 {
    row-gap: 50px !important;
}

.stepCardWrap .stepItem .stepCount {
    position: absolute;
    top: -15px;
    left: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 30px;
    padding: 0 20px;
    background: var(--navy);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px 8px 8px 0;
}

.stepCardWrap .stepItem i {
    font-size: 3.2rem;
    color: var(--primary);
}

.tabContainer .tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--light);
}

.tabContainer .tabs li {
    width: 25%;
    min-width: 130px;
    padding: 14px 10px;
    border-bottom: 2px solid #fff;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.tabContainer .tabs li.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.tabContainer .tabs li a {
    display: inline-block;
    width: 100%;
}

.tabContainer .content {
    display: none;
}

.tabContainer .content.show {
    display: block;
}

/* == // subpage common == */

/* calculator */
.calcuWrap .contsWrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(100% - 320px);
    padding: 30px 20px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.calcuWrap .invoiceWrap {
    width: 300px;
}

.calcuWrap .invoiceWrap .card {
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.calcuWrap .card {
    width: 100%;
    border: 1px solid var(--light);
    border-radius: 8px;
}

.calcuWrap .cardHeader {
    width: 100%;
    padding: 12px 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--light);
}

.calcuWrap .cardBody {
    padding: 16px 20px;
}

.calcuWrap .itemWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.calcuWrap .itemWrap .item {
    padding: 6px 12px;
    border: 1px solid var(--light);
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.calcuWrap .itemWrap .item.disable {
    pointer-events: none;
    background-color: var(--light);
}

.calcuWrap .itemWrap .item.active {
    background: var(--secondary);
    color: #fff;
}

.calcuWrap .invoiceWrap .invoItemWrap {
    width: 100%;
}

.calcuWrap .invoiceWrap .invoCate {
    font-size: 16px;
    font-weight: 700;
}

.calcuWrap .invoiceWrap .invoItem {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.calcuWrap .invoiceWrap .invoItem .price {
    text-align: right;
}

.calcuWrap .totalWrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-top: 2px dashed var(--gray-light);
    font-weight: 700;
}

.calcuWrap .totalWrap > div:nth-child(2) {
    text-align: right;
    color: var(--secondary);
}

/* == // caculator == */

/* == big title == */
#subContsWrap .bigTitle {
    font-size: 12rem;
    font-family: 'Ohsquare-bold';
    opacity: 0.15;
}

#subContsWrap .visionItems {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc(100% / 3);
}

#subContsWrap .visionItems .bgCircle{
    max-width: 90%;
    aspect-ratio: 1/1;
    border-radius: 100%;
    text-align: center;
}

#subContsWrap .visionItems .bgCircle.success{ background-color: #EAF9FF; }
#subContsWrap .visionItems .bgCircle.primary{ background-color: #FDF6FA; }
#subContsWrap .visionItems .bgCircle.secondary{ background-color: #EBF6F3; }

#subContsWrap .visionItems .bgCircle .vsTitle{
    margin-top: -20px;
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 35px;
}

#subContsWrap .visionItems img {
    margin-top: -200px;
}

#subContsWrap .galBox .galTitle {
    margin-bottom: -40px;
}

#subContsWrap .galBox .galTitle.success {
    color: #6FD3F3;
}

#subContsWrap .galBox .galTitle.secondary {
    color: #40CEB8;
}

#subContsWrap .bgText.left {
    left: 0;
}

#subContsWrap .bgText.right {
    right: 0;
    text-align: right;
}

#subContsWrap .galBox .galGrid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    grid-template-areas:
        "a b"
        "a c"
        "d f"
        "e f";
}

#subContsWrap .galBox .galGrid > div:nth-child(1){grid-area:a;}
#subContsWrap .galBox .galGrid > div:nth-child(2){grid-area:b;}
#subContsWrap .galBox .galGrid > div:nth-child(3){grid-area:c;}
#subContsWrap .galBox .galGrid > div:nth-child(4){grid-area:d;}
#subContsWrap .galBox .galGrid > div:nth-child(5){grid-area:e;}
#subContsWrap .galBox .galGrid > div:nth-child(6){grid-area:f;}

#subContsWrap .galBox .galGrid > div img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#subContsWrap .galBox .galFlex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

#subContsWrap .galBox .galFlex > div img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#subContsWrap .mapTitle {
    font-size: 4.0rem;
    font-weight: 600;
    letter-spacing: 30%;
    color: #fff;
    text-align: center;
}

#subContsWrap .mapWrap .mapImg {
    display: none;
}

#subContsWrap .mapWrap > .mapImg.active {
    display: block;
}

#subContsWrap .mapInfoWrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    z-index: 1;
}

#subContsWrap .mapInfoWrap .infoCard {
    display: none;
    float: right;
    width: 100%;
    max-width: 350px;
}

#subContsWrap .mapInfoWrap .infoCard.active {
    display: block;
    animation: scale 0.3s ease;
}

@keyframes scale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

#subContsWrap .mapInfoWrap .infoCard .title {
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
    background: var(--navy);
    font-family: 'Ohsquare';
    font-weight: 700;
    font-size: 2.4rem;
    color: #fff;
    text-align: center;
}

#subContsWrap .mapInfoWrap .infoCard .conts {
    border-radius: 0 0 8px 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    min-height: 350px;
}

#subContsWrap .mapInfoWrap .infoCard .conts .logo {
    width: 230px;
}

.valAlphabet {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.valAlphabet p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 60px) / 7);
    aspect-ratio: 1/1;
    border-radius: 100%;
    font-family: 'Ohsquare-bold';
    font-size: 8.0rem;
    color: #fff;
}

.valAlphabet p:nth-child(1) {background: var(--success);}
.valAlphabet p:nth-child(2) {background: #FF5458;}
.valAlphabet p:nth-child(3) {background: #FDCF64;}
.valAlphabet p:nth-child(4) {background: var(--primary);}
.valAlphabet p:nth-child(5) {background: var(--secondary);}
.valAlphabet p:nth-child(6) {background: #A684E9;}
.valAlphabet p:nth-child(7) {background: #5C8ED6;}

.valPill {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.valPill p {
    width: calc((100% - 30px) / 4);
    min-width: 206px;
    text-align: center;
    padding: 12px 20px;
    border: 1px solid var(--dark);
    border-radius: 50px;
    font-size: 2.4rem;
    font-weight: 600;
}

.valPill p:nth-child(1) span {color: var(--success);}
.valPill p:nth-child(2) span {color: #FF5458;}
.valPill p:nth-child(3) span {color: #FDCF64;}
.valPill p:nth-child(4) span {color: var(--primary);}
.valPill p:nth-child(5) span {color: var(--secondary);}
.valPill p:nth-child(6) span {color: #A684E9;}
.valPill p:nth-child(7) span {color: #5C8ED6;}

.stick {
    width: 2px;
    height: 170px;
    margin: auto;
    background: var(--gray-light);
}


@media (max-width: 950px) {
    .sec1 > * {
        font-size: 50%;
    }

    .sec1 .imgBox {
        width: 45%;
    }

    .sec3 .cardTop {
        padding: 30px 40px !important;
        font-size: 2.8rem;
    }

    .sec3 .cardTop img {
        max-width: 180px;
        width: 100%;
    }

    .sec3 .cardCont li {
        font-size: 2.0rem;
        line-height: 1.4;
        padding: 18px 22px;
    }

    .lrBox .infoBox .infoSubtitle {
        font-size: 1.4rem;
    }

    .lrBox .infoBox .infoConts {
        font-size: 16px;
    }

    .sec6 .planWrap {
        align-items: stretch;
    }

    .sec6 .planBox:nth-child(odd) {
        margin-top: 0;
    }

    .sec6 .planBox .planNm {
        margin-bottom: 30px;
    }

    .sec6 .planBox .priceDiscount {
        font-size: 1.6rem;
    }

    .sec6 .planBox .price {
        font-size: 28px;
    }

    .sec6 .planBox .priceVat {
        font-size: 12px;
    }

    .stepCardWrap .stepItem {
        flex-direction: column;
    }

    #subContsWrap .mobileFlexWrap {
        gap: 20px;
    }

    #subContsWrap .visionItems img {
        margin-top: -114px;
    }    
}

@media (max-width: 768px) {
    #mainVidWrap .vidText {
        font-size: 5.0rem;
    }

    .secWrap .subTitle {
        font-size: 2.6rem;
    }

    .secWrap .title {
        font-size: 6.0rem;
    }

    .sec1 .text1 .txtTop {
        justify-content: center;
        font-size: 7.0rem;
    }
    
    .sec1 .text1 .txtTop .cursive {
        font-size: 3.6rem;
    }

    .sec1 .text1 .txtBottom {
        text-align: center;
        font-size: 7.8rem;
    }

    .sec1 .text2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .sec1 .btn {
        margin: 50px auto 10px !important;
    }

    .sec1 .imgBox {
        position: unset;
        margin: auto;
        width: calc(100% - 40px);
        max-width: 330px;
    }

    .sec2 .cardWrap .card {
        width: calc((100% - 20px) / 2);
    }

    .lrBox .infoBox {
        order: 1;
        width: 100%;
        text-align: center;
    }
    
    .lrBox .infoBox .infoTitle {
        margin-bottom: 15px;
    }

    .lrBox .imgBox {
        order: 2;
        width: 100%;
    }

    .sec6 .planWrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sec6 .planBox {
        max-width: 400px;
        width: 100%;
    }

    .blogCard {
        width: calc((100% - 20px) / 2);
    }

    /* == main end == */

    /* == sub == */
    #subContsWrap .topTextBoxBg {
        padding: 50px 0;
    }

    #subContsWrap .topTextBox {
        padding: 0 20px !important;
    }

    #subContsWrap .subSecTitle {
        margin-bottom: 20px;
    }

    #subContsWrap .secInnerTitle {
        margin-bottom: 10px;
    }
    
    #subContsWrap .orgName {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 8px;
    }

    #subContsWrap .orgName .line {
        width: 25px;
        height: 5px;
    }

    #subContsWrap .mobileFlexWrap {
        flex-wrap: wrap !important;
    }

    #subContsWrap .w50,
    #subContsWrap .w37,
    #subContsWrap .w63 {
        width: 100% !important;
    }

    #subContsWrap .w50.logoBox {
        margin-bottom: 50px;
    }

    .miniCardWrap {
        gap: 20px;
    }

    .stepCardWrap {
        gap: 30px;
    }

    .miniCard2,
    .miniCard3 {
        width: 100%;
    }
    
    .miniCard4 {
        width: calc((100% - 20px) / 2);
    }

    .stepItem {
        gap: 20px;
    }

    .miniCard .cardTitle {
        min-height: unset;
        margin-bottom: 20px;
    }

    .tabContainer .tabs li {
        width: 50%;
    }

    .calcuWrap {
        flex-direction: column;
        gap: 20px !important;
    }

    .calcuWrap > * {
        width: 100% !important;
    }

    .inputWrap3.flexBox {
        flex-direction: column;
    }

    /* about */
    #subContsWrap .bigTitle {
        font-size: 10rem;
    }

    #subContsWrap .visionWrap {
        flex-wrap: wrap !important;
        gap: 50px;
    }

    #subContsWrap .visionItems {
        width: 100%;
    }

    #subContsWrap .visionItems .bgCircle{
        max-width: 296px;
    }

    #subContsWrap .visionItems .bgCircle .vsTitle{
        margin-bottom: 35px;
    }

    #subContsWrap .visionItems img {
        max-width: 342px;
        width: 100%;
        margin-top: -200px;
    }

    #subContsWrap .visionItems:nth-child(1) img { margin-top: -230px; }
    #subContsWrap .visionItems:nth-child(2) img { margin-top: -250px; }

    #subContsWrap .galBox .galTitle {
        margin-bottom: -28px;
    }

    #subContsWrap .mapTitle {
        font-size: 24px;
    }

    #subContsWrap .mapBtnWrap {
        margin-bottom: 30px !important;
    }
    
    #subContsWrap .mapBtnWrap .btn {
        width: 100%;
        padding: 10px 10px;
    }

    #subContsWrap .mapInfoWrap {
        position: static;
        width: 100%;
        margin-bottom: 30px;
    }

    #subContsWrap .mapInfoWrap .infoCard {
        width: 100%;
        max-width: unset;
        float: unset;
    }

    #subContsWrap .mapInfoWrap .infoCard .conts {
        min-height: unset;
    }

    #subContsWrap .mapInfoWrap .infoCard .conts .logo {
        width: 200px;
    }
    
    .valAlphabet p {
        font-size: 5.2rem;
    }

    /* == sub end == */
}

@media (max-width: 520px) {
    #mainVidWrap .vidText {
        font-size: 32px;
    }

    .sec1 .text1 .txtTop {
        font-size: 5.4rem;
    }

    .sec1 .text1 .txtTop .cursive {
        font-size: 3.0rem;
    }

    .sec1 .text1 .txtBottom {
        font-size: 6.2rem;
    }

    .sec1 .text2 {
        font-size: 17px;
    }

    .sec1 .btn {
        font-size: 18px;
    }

    .secWrap .title {
        font-size: 5.2rem;
    }

    .sec2 .cardWrap .card {
        width: 100%;
        aspect-ratio: 4/3;
        background-position: center bottom;
    }

    .sec2 .card .cardImg {
        width: 75%;    
    }

    .sec3 .compareBox {
        flex-direction: column;
    }

    .sec3 .compareBox > div:nth-child(1) {
        order: 2;
        width: 90%;
        margin-top: -20px;
        z-index: 0;
    }
    
    .sec3 .compareBox > div:nth-child(2) {
        order: 1;
        width: 100%;
        margin-left: unset;
        z-index: 1;
    }

    .sec4 .vidTitle {
        font-size: 12px;
    }

    .blogCard {
        width: 100%;
    }

    .blogThumb {
        aspect-ratio: 16/9;
        object-position: center bottom;
    }

    /* == main end == */

    /* == sub == */

    #subContsWrap .topTextBox > div {
        font-size: 2.6rem;
    }

    #subContsWrap .topTextBox > p {
        font-size: 1.8rem;
    }

    #subContsWrap .bigTitle {
        font-size: 8rem;
    }

    #subContsWrap .galBox .galTitle {
        margin-bottom: -12px;
    }
    
    #subContsWrap .galBox .galGrid{
        grid-template-columns:repeat(1,1fr);
        grid-template-areas:
            "a"
            "b"
            "c"
            "d"
            "e"
            "f";
        gap: 8px;
    }

    #subContsWrap .galBox .galGrid > div:nth-child(1){grid-area:a;}
    #subContsWrap .galBox .galGrid > div:nth-child(2){grid-area:b;}
    #subContsWrap .galBox .galGrid > div:nth-child(3){grid-area:c;}
    #subContsWrap .galBox .galGrid > div:nth-child(4){grid-area:e;}
    #subContsWrap .galBox .galGrid > div:nth-child(5){grid-area:f;}
    #subContsWrap .galBox .galGrid > div:nth-child(6){grid-area:d;}

    #subContsWrap .galBox .galFlex {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }    

    .valAlphabet {
        gap: 6px;
        margin: 30px auto !important;
    }
    
    .valAlphabet p {
        width: calc((100% - 36px) / 7);
        font-size: 28px;
    }

    .valPill p {
        min-width: 160px;
        font-size: 16px;
    }
    
    .miniCard .cardTitle {
        margin-bottom: 12px;
    }
    /* == sub end == */
}
