@charset "UTF-8";

.info-section .top-info-wrap {
    padding-top: 120px;
}

.info-section .top-info-wrap .nav-list {
    margin-bottom: 100px;
}

.info-section .top-info-wrap .info-list {
    position: relative;
    margin-bottom: 80px;
}

.info-section .top-info-wrap .info-list .info {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.8s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.info-section .top-info-wrap .info-list .info.on {
    opacity: 1;
    pointer-events: all;
}

.info-section .top-info-wrap .info-list .info1 {
    position: relative;
}

.info-section .top-info-wrap .info-list .txt-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 720px;
    padding-top: 70px;
}

.info-section .top-info-wrap .info-list .txt-wrap h5 {
    color: #6E0000;
    font-size: 30px;
    font-weight: 600;
    line-height: 130%;
    /* 46.8px */
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.info-section .top-info-wrap .info-list .txt-wrap h3 {
    color: #141414;
    font-size: 46px;
    font-weight: 600;
    line-height: 140%;
    /* 64.4px */
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.info-section .top-info-wrap .info-list .txt-wrap p {
    color: #2C2C2C;
    font-size: 20px;
    font-weight: 300;
    line-height: 150%;
    /* 30px */
    letter-spacing: -0.025em;
    margin-bottom: 40px;
}


.info-section .top-info-wrap .info-list .txt-wrap .icon {
    fill: transparent;
    width: 24px;
    height: 24px;
    transition: all 0.4s ease-in-out;
}

.info-section .top-info-wrap .info-list .txt-wrap .icon use {
    stroke: #ffffff;
    transition: all 0.4s ease-in-out;
}

.info-section .top-info-wrap .info-list .txt-wrap a:hover {
    background-color: #fff;
    color: #6E0000;
    border-color: #6E0000;
}

.info-section .top-info-wrap .info-list .txt-wrap a:hover .icon {
    transform: translateX(4px) rotate(45deg);
}

.info-section .top-info-wrap .info-list .txt-wrap a:hover .icon use {
    stroke: #6E0000;
}

.info-section .top-info-wrap .nav-list {
    display: flex;
}

.info-section .top-info-wrap .nav-list li {
    flex: 1;
    text-align: center;
    cursor: pointer;
    color: #ADADAD;
    transition: all 0.6s ease-in-out;
}

.info-section .top-info-wrap .nav-list li h5 {
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
    /* 36px */
    letter-spacing: -0.03em;
}

.info-section .top-info-wrap .nav-list li .line {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(173, 173, 173, 0.20);
    margin: 12px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}

.info-section .top-info-wrap .nav-list li .line::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #6E0000 0%, #3B0000 100%), #1B3146;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transition: all 0.4s ease-in-out;
}

.info-section .top-info-wrap .nav-list li h6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    /* 30px */
}

.info-section .top-info-wrap .nav-list li.on .line::after {
    transform: scaleX(1);
}

.info-section .top-info-wrap .nav-list li.on {
    color: #6E0000;
}

.info-section .top-info-wrap .nav-list li:hover {
    color: #6E0000;
}

.info-section .top-info-wrap .nav-list li:hover .line {
    background-color: rgba(173, 173, 173, 0.60);
}

.product-list-wrap {
    padding-bottom: 120px;
}


.product-list-wrap .product-list-item {
    display: none;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 100px;
}

.product-list-wrap .product-list-item.on {
    display: flex
}

.product-list-wrap .product-list-item .product-item {
    width: calc(33.333% - 16px);
}

.product-list-wrap .product-list-item .product-item .img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    border-radius: 24px;
    border: 1px solid #EDEDED;
    background: #FAFAFA;
}


.product-list-wrap .product-list-item .product-item .img img {
    display: block;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.product-list-wrap .product-list-item .product-item .img:hover img {
    transform: scale(1.05);
}

.product-list-wrap .product-list-item .product-item .txt-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.product-list-wrap .product-list-item .product-item .txt-wrap h5 {
    color: #2C2C2C;
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
    /* 36px */
    letter-spacing: -0.6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: clac(100% - 30px);
}

.product-list-wrap .product-list-item .product-item .txt-wrap a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(180deg, #6E0000 0%, #3B0000 100%), #1B3146;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-list-wrap .product-list-item .product-item .txt-wrap a .icon {
    fill: transparent;
    width: 30px;
    height: 30px;
}

.product-list-wrap .product-list-item .product-item .txt-wrap a .icon use {
    stroke: #ffffff;
}

.product-list-wrap .btn-wrap {
    display: flex;
    justify-content: center;

}

.product-list-wrap .btn-wrap a {
    border-radius: 100px;
    border: 1px solid #6E0000;
    background: rgba(17, 17, 17, 0.01);
    box-shadow: -3px -3px 4px 0 rgba(255, 255, 255, 0.20) inset, 2px 2px 6px 0 rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(2px);
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: #6E0000;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    /* 25.2px */
    letter-spacing: -0.02em;
    transition: all 0.6s ease-in-out;
}



.product-list-wrap .btn-wrap .icon {
    width: 24px;
    height: 24px;
    fill: transparent;
    transition: all 0.4s ease-in-out;
}

.product-list-wrap .btn-wrap .icon use {
    stroke: #6E0000;
    transition: all 0.4s ease-in-out;
}

.product-list-wrap .btn-wrap a:hover {
    background-color: #6E0000;
    color: #fff;
}

.product-list-wrap .btn-wrap a:hover .icon {
    transform: translateX(4px) rotate(45deg);
}

.product-list-wrap .btn-wrap a:hover .icon use {
    stroke: #fff;
}

.solution-detail-section .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.solution-detail-section {
    padding: 160px 0;
}


.solution-detail-section h6 {
    color: #898989;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.035em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.solution-detail-section h6 .square {
    width: 12px;
    height: 12px;
    background-color: #6E0000;
}

.solution-detail-section .txt-content {
    max-width: 690px;
    padding-right: 30px;
}

.solution-detail-section .img-content {
    max-width: 709px;
    width: 50%;
}

.solution-detail-section .sub-tit-wrap h3 {
    color: #141414;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.solution-detail-section .sub-tit-wrap p {
    color: #2C2C2C;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    line-height: 150%;
    letter-spacing: -0.025em;
}

.solution-detail-section .sub-tit-wrap {
    margin-bottom: 50px;
}

.solution-detail-section .img-list {
    display: flex;
    gap: 12px;
}

.solution-detail-section .img-list li {
    width: calc(20% - 9px);
    border-radius: 10px;
    border: 1px solid #9C9C9C;
    cursor: pointer;
    overflow: hidden;
}

.solution-detail-section .img-list li.on {
    border: 2px solid #6E0000;
}

.solution-detail-section .img-list li img {
    display: block;
    width: 100%;
}

.solution-detail-section .img-content .img-box {
    border-radius: 30px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #EDEDED;
    background: #FAFAFA;
}

@media all and (max-width: 768px) {
    .info-section {
        padding: 60px 0;
    }

    .sinfo-section .top-info-wrap .info-list {
        margin-bottom: 40px;
    }

    .info-section .top-info-wrap .info-list .info {
        flex-direction: column-reverse;
    }

    .info-section .top-info-wrap {
        padding-top: 0;
    }

    .solution-detail-section .img-content {
        width: 100%;
    }

    .info-section .top-info-wrap .info-list .txt-wrap {
        text-align: center;
        padding-top: 40px;
        align-items: center;
    }

    .info-section .top-info-wrap .info-list .txt-wrap h3 {
        width: 100%;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .info-section .top-info-wrap .info-list .txt-wrap p {
        font-size: 16px;
        margin-bottom: 32px;
        min-height: 11em;
    }

    .info-section .top-info-wrap .info-list .txt-wrap p br {
        display: none;
    }

    .info-section .top-info-wrap .info-list .txt-wrap h5 {
        font-size: 20px;
        text-align: center;
    }

    .info-section .top-info-wrap .info-list .txt-wrap a {
        margin: 0 auto;
    }

    .info-section .top-info-wrap .bg-txt {
        width: 120vw;
    }

    .info-section .top-info-wrap .nav-list li {
        padding: 24px 0;
    }

    .info-section .top-info-wrap .nav-list li h5 {
        font-size: 16px;
    }

    .info-section .top-info-wrap .nav-list li h6 {
        font-size: 10px;
    }

    .info-section .top-info-wrap .nav-list li .line {
        margin: 12px 0;
        height: 2px;
    }

    .product-list-wrap .product-list-item .product-item {
        width: 100%;
    }

    .product-list-wrap .product-list-item .product-item .txt-wrap {
        padding-bottom: 20px;
    }

    .solution-detail-section h6 {
        font-size: 15px;
        justify-content: center;
    }

    .solution-detail-section .txt-content {
        margin-bottom: 30px;
        padding-right: 0;
    }

    .solution-detail-section {
        padding: 80px 0;
    }

    .solution-detail-section .sub-tit-wrap {
        margin-bottom: 20px;
    }

    .solution-detail-section .sub-tit-wrap h3 {
        font-size: 28px;
    }

    .solution-detail-section .sub-tit-wrap p {
        font-size: 16px;
    }

    .solution-detail-section .inner {
        flex-direction: column;
    }

    .solution-detail-section .img-list {
        gap: 5px;
        justify-content: center;
    }

    .solution-detail-section .img-list li.on {
        border-width: 1.5px;
    }

    .solution-detail-section .img-list li {
        width: calc(20% - 4px);
    }

    .product-list-wrap .product-list-item .product-item .txt-wrap h5 {
        font-size: 20px;
    }
}

/* 
.info-section .product-list-wrap {
    display: none;
} */