@charset "utf-8";

/*공통*/
.red {color: #ff0000 !important;}
.blue {color: #2156d8 !important;}
img {max-width: 100%;}
.slick-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slick-dots li {margin-right: 10px;}
.slick-dots li:last-child {margin-right: 0;}
.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #aaa;
    font-size: 0;
    border: none;
}
.slick-dots li.slick-active button {background: #2156d8;}
.slick-controls {
    width: 120px;
    display: flex;
}
.slick-controls > button {
    width: 60px;
    height: 60px;
    border: none;
    background: transparent;
}
.slick-controls .slick-prev {border-right: 1px solid #ddd;}
.admin-btn {margin-top: 30px;}
.admin-btn a {
    font-size: 20px;
    color: #e84c4c;
}

@media all and (max-width: 767px) {
    .slick-dots {bottom: 15px;}
    .slick-dots li {margin-right: 5px;}
    .slick-dots li button {
        width: 8px;
        height: 8px;
    }
    .slick-controls {width: 80px;}
    .slick-controls > button {
        width: 40px;
        height: 40px;
    }
}


/*메인*/
.main-wrap > section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    word-break: keep-all;
}
.main-wrap .title {
    margin-bottom: 60px;
    text-align: center;
}
.main-wrap .title h2 {
    font-size: 50px;
    font-weight: bold;
    word-break: keep-all;
}
.main-wrap .title h2 span {color: #2156d8;}
@keyframes bounceUp {
    0%, 40% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.main-wrap .title h2 span b {
    background: linear-gradient(125deg, #ff6464, #f31d1d);
    color: #fff;
    display: inline-block;
    border-radius: 10px;
    margin-right: 5px;
    padding: 0 10px;
    animation: bounceUp 2s ease-in-out infinite;
}
.main-wrap .title h2 span b:nth-child(1) {animation-delay: 0s;}
.main-wrap .title h2 span b:nth-child(2) {animation-delay: 0.3s;}
.main-wrap .title h2 span b:nth-child(3) {animation-delay: 0.6s;}
.main-wrap .title h2 span b:nth-child(4) {animation-delay: 0.9s;}
.main-wrap .title h2 span img {
    margin-top: -8px;
    width: 55px;
}
.main-wrap .title h3 {
    font-size: 24px;
    font-weight: bold;
    word-break: keep-all;
}
.main-wrap .title p {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    word-break: keep-all;
}
.main-wrap .banner {
    position: relative;
    overflow: hidden;
    padding: 0;
}
.main-wrap .banner .m-banner {display: none;}
.main-wrap .banner .banner-slider .slick-slide {
    height: 800px;
    margin: 0 20px;
}
.main-wrap .banner .banner-slider .slick-slide a {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 800px;
    display: block;
    border-radius: 30px;
    overflow: hidden;
}
.main-wrap .banner .slick-arrow {
    background: none;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.main-wrap .banner .slick-prev {left: 150px;}
.main-wrap .banner .slick-next {right: 150px;}
.main-wrap .banner .admin-btn {
    position: absolute;
    left: 30px;
    bottom: 30px;
}
.main-wrap .status {padding: 80px 0;}
.main-wrap .status ul {
    background: #f5f6fa;
    border-radius: 30px;
    padding: 30px 0;
    display: flex;
}
.main-wrap .status ul li {
    width: 33.33%;
    padding: 0 30px;
    border-right: 1px solid #ddd;
    text-align: center;
}
.main-wrap .status ul li:last-child {border-right: none;}
.main-wrap .status ul li p {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.main-wrap .status ul li .number {
    font-size: 20px;
    font-weight: bold;
    color: #777;
}
.main-wrap .status ul li .number span {
    font-size: 50px;
    font-weight: bold;
    color: #2156d8;
    padding-right: 5px;
}
.main-wrap .status ul li .number span.unit {
    font-size: 20px;
    color: #777;
}
.main-wrap .youtube {padding-top: 0;}
.main-wrap .youtube .youtube-link {
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    background: url(/img/custom/main_youtube_bg.jpg?v=aw) center / cover no-repeat;
}
.main-wrap .youtube .youtube-link b {
    font-size: 24px;
    margin-left: 20px;
    margin-right: 30px;
    color: #fff;
}
.main-wrap .youtube .youtube-link .more-btn {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    width: 100%;
    height: 45px;
    line-height: 45px;
    background: #ff0033;
    transition: all .3s;
    border: none;
    border-radius: 10px;
    display: block;
    max-width: 200px;
}
.main-wrap .youtube .inner {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 56.25%;
}
.main-wrap .youtube .inner iframe {
    z-index: 1;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}
.main-wrap .youtube .youtube-wrap {
    display: flex;
    flex-wrap: wrap;
}
.main-wrap .youtube .youtube-wrap > div {width: calc((100% - 40px)/2);}
.main-wrap .youtube .youtube-wrap .img {
    border-radius: 10px;
    overflow: hidden;
}
.main-wrap .youtube .youtube-wrap .left .txt {
    font-size: 24px;
    font-weight: bold;
    margin-top: 15px;
}
.main-wrap .youtube .youtube-wrap .right {margin-left: 40px;}
.main-wrap .youtube .youtube-wrap .right > div {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.main-wrap .youtube .youtube-wrap .right .img {width: 200px;}
.main-wrap .youtube .youtube-wrap .right .txt {
    width: calc(100% - 200px);
    padding-left: 20px;
    font-size: 18px;
    font-weight: 500;
}
.main-wrap .youtube .youtube-wrap .right .txt .name {
    font-size: 15px;
    color: #777;
    margin-top: 10px;
}
.main-wrap .deal {background: #f5f6fa;}
@keyframes move {
    0% {transform: translateY(-10px);}
    100% {transform: translateY(0);}
}
.main-wrap .deal .title h2 .bubble {
    color: #fff;
    background: #802df1;
    padding: 5px 10px;
    border-radius: 10px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    line-height: 1;
    animation: move 0.6s ease-in-out 0s infinite alternate;
}
.main-wrap .deal .title h2 .bubble::after {
    content: "";
    background: url(/img/custom/bubble_purple.svg) center / cover no-repeat;
    display: block;
    width: 20px;
    height: 17px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -17px;
}
@keyframes blink2 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.main-wrap .deal .title h2 .bubble span {
    display: inline-block;
    animation: blink2 1s infinite;
    color: #fff;
}
.main-wrap .deal .title h2 .bubble span:nth-child(1) {animation-delay: 0s;}
.main-wrap .deal .title h2 .bubble span:nth-child(2) {animation-delay: 0.2s;}
.main-wrap .deal .title h2 .bubble span:nth-child(3) {animation-delay: 0.4s;}
.main-wrap .deal .title h2 .bubble span:nth-child(4) {animation-delay: 0.6s;}
.main-wrap .deal .title h2 .bubble span:nth-child(5) {animation-delay: 0.8s;}
.main-wrap .deal .title p {
    font-size: 25px;
    color: #802df1;
    margin: 15px 0 0;
    font-weight: bold;
    margin-left: 113px;
}
/*@keyframes move {
    0%{transform:translate(0,-4px);}
    100%{transform:translate(0,4px);}
}*/
.main-wrap .deal .title .condition {
    text-align: center;
    display: inline-block;
    margin-top: 50px;
}
.main-wrap .deal .title .condition .inner {
    background: #fff;
    border-radius: 50px;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    overflow: hidden;
}
.main-wrap .deal .title .condition .inner b {
    background: #802df1;
    color: #fff;
    width: 120px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-wrap .deal .title .condition .inner p {
    width: calc(100% - 120px);
    padding: 12px 50px;
    font-size: 20px;
    margin: 0;
}
.main-wrap .deal .title .condition .inner p span {
    font-weight: bold;
    font-size: 26px;
}
.main-wrap .deal .title .condition .inner p .blue {color: #2156d8;}
.main-wrap .deal .title .condition .inner p .purple {color: #802df1;}
.main-wrap .deal .deal-slider > div {
    position: relative;
    margin-bottom: 100px;
}
.main-wrap .deal .deal-slider > div:last-child {margin-bottom: 0;}
.main-wrap .deal .deal-slider h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #555;
}
.main-wrap .deal .deal-slider h3 span {
    color: #2156d8;
    font-style: italic;
    text-decoration: underline;
}
.main-wrap .deal .slick-controls > button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}
.main-wrap .deal .slick-controls .slick-prev {left: -30px;}
.main-wrap .deal .slick-controls .slick-next {right: -30px;}
.main-wrap .deal .deal-list {margin-right: -15px;}
.main-wrap .deal .deal-list li {margin-right: 15px;}
.main-wrap .deal .deal-list li > a {
    display: block;
    background: #fff;
    border-radius: 10px;
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    height: 100%;
    border: 1px solid transparent;
    transition: all .3s;
}
.main-wrap .deal .deal-list li .label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #802df1;
    border-radius: 0 0 5px 0;
    font-weight: bold;
    padding: 3px 8px 1px;
    color: #fff;
    font-size: 14px;
}
.main-wrap .deal .deal-list li .img {
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-wrap .deal .deal-list li .img img {
    max-width: 100%;
    max-height: 100%;
}
.main-wrap .deal .deal-list li .txt {padding: 30px 20px 0;}
.main-wrap .deal .deal-list li .txt .subject {
    font-size: 24px;
    display: block;
    margin-bottom: 3px;
    transition: all .3s;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
}
.main-wrap .deal .deal-list li .txt .desc {
    font-size: 14px;
    color: #666;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
}
.main-wrap .deal .deal-list li .txt .price {
    border-top: 1px solid #ddd;
    margin-top: 15px;
    padding-top: 15px;
    transition: all .3s;
}
.main-wrap .deal .deal-list li .txt .price > div {
    font-size: 14px;
    font-weight: 500;
    text-align: right;
}
.main-wrap .deal .deal-list li .txt .price > div > span:first-child {
    font-size: 16px;
    display: block;
    text-align: left;
}
.main-wrap .deal .deal-list li .txt .price > div > span:last-child {
    color: #666;
    text-align: right;
    font-size: 18px;
}
.main-wrap .deal .deal-list li .txt .price > div > span s {display: block;}
.main-wrap .deal .deal-list li .txt .price > div > span b {
    font-size: 30px;
    color: #2156d8;
    margin-right: 3px;
}
.main-wrap .deal .deal-list li .txt .price > div > span .purple {color: #802df1;}
.main-wrap .deal .deal-list li .txt .price > div > span .red {color: #ff0000;}
.main-wrap .deal .deal-list li .txt .price > div > span .large {font-size: 22px;}
.main-wrap .deal .more-btn {
    width: 100%;
    height: 50px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    transition: all .3s;
    cursor: pointer;
    color: #2156d8;
    text-align: center;
    margin-top: 15px;
    background: linear-gradient(90deg, #2156d8, #00c6ff);
    padding: 4px;
}
.main-wrap .deal .more-btn span {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    display: block;
    line-height: 41px;
}


/*.main-wrap .popular {padding-top: 50px;}*/
.main-wrap .popular .tab-menu {
    display: flex;
    justify-content: center;
}
.main-wrap .popular .tab-menu li {
    background: #d6dbe7;
    width: 150px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 24px;
    color: #717887;
    border-radius: 60px;
    margin-right: 10px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
}
.main-wrap .popular .tab-menu li:last-child {margin-right: 0;}
.main-wrap .popular .tab-menu li::after {
    content: "";
    background: transparent;
    display: block;
    width: 20px;
    height: 17px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -17px;
    cursor: pointer;
}
.main-wrap .popular .tab-menu li.active {
    background: #2156d8;
    color: #fff;
}
.main-wrap .popular .tab-menu li.active::after {background: url(/img/custom/bubble_blue.svg) center / cover no-repeat;}
.main-wrap .popular .tab-content > div {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.main-wrap .popular .tab-content > div.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.main-wrap .popular .logo-box {
    border: 2px solid #d6dbe7;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 25px 25px 15px;
    margin: 60px 0 40px;
}
.main-wrap .popular .logo-box li {margin: 0 25px 10px;}
.main-wrap .popular .list-wrap {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: -50px;
}
.main-wrap .popular .list-wrap li {
    width: calc((100% - 60px)/5);
    margin-right: 15px;
    margin-bottom: 50px;
}
.main-wrap .popular .list-wrap li:nth-child(5n) {margin-right: 0;}
.main-wrap .popular .list-wrap li a {display: block;}
.main-wrap .popular .list-wrap .img {
    height: 210px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all .3s;
    margin-bottom: 20px;
    padding: 10px 0;
}
.main-wrap .popular .list-wrap .img img {
    max-width: 100%;
    max-height: 100%;
    mix-blend-mode: multiply;
    margin: 0 -20px;
}
.main-wrap .popular .list-wrap .txt .subject {
    font-size: 24px;
    margin-bottom: 20px;
    transition: all .3s;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
    display: block;
}
.main-wrap .popular .list-wrap .txt .price > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
    font-size: 18px;
}
.main-wrap .popular .list-wrap .txt .price > div > span:first-child {font-weight: bold;}
.main-wrap .popular .list-wrap .txt .price > div > span:last-child {color: #666;}
.main-wrap .popular .list-wrap .txt .price > div > span b {
    font-size: 24px;
    color: #2156d8;
    margin-right: 3px;
}
.main-wrap .popular .more-btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #2156d8;
    border-radius: 3px;
    transition: all .3s;
    cursor: pointer;
    text-align: center;
    margin-top: 25px;
    background: #2156d8;
    color: #fff;
}
.main-wrap .popular .list-wrap .txt .more-btn:hover {background: #0e42be;}
.main-wrap .popular .list-wrap li a:hover .img {border: 1px solid #2156d8;}
.main-wrap .popular .bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 680px;
    background: url(/img/custom/main_popular_bg.jpg) no-repeat center;
    background-size: cover;
}
.main-wrap .popular .note {
    font-size: 16px;
    margin-top: 50px;
    font-weight: 500;
}

.main-wrap .feature {background: url(/img/custom/main_feature_bg.jpg) center / cover no-repeat;}
.main-wrap .feature .title h2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.main-wrap .feature .title h2 img {margin-right: 10px;}
.main-wrap .feature ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -30px;
}
.main-wrap .feature ul li {
    width: calc((100% - 90px)/4);
    margin-right: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-radius: 10px;
    background: #fff;
    padding: 35px 30px 30px;
    min-height: 250px;
    position: relative;
}
.main-wrap .feature ul li:nth-child(4n) {margin-right: 0;}
.main-wrap .feature ul li h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
}
.main-wrap .feature ul li p {
    font-size: 16px;
    color: #666;
}
.main-wrap .feature ul li img {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.main-wrap .partner .partner-list {
    display: flex;
    flex-wrap: wrap;
}
.main-wrap .partner .partner-list li > div {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}
.main-wrap .partner .partner-list li img {
    max-width: 100%;
    max-height: 100%;
}
.main-wrap .partner .partner-list-02 {
    direction: rtl;
    margin-top: 50px;
}
.main-wrap .partner .partner-slider .slick-dots {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 20px;
}

.main-wrap .review {
    padding-top: 100px;
    text-align: center;
}
.main-wrap .review .title {
    display: inline-block;
    position: relative;
}
.main-wrap .review .title .star {
    width: 250px;
    margin-bottom: 15px;
}
.main-wrap .review .title h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}
.main-wrap .review .title h2 .logo {margin-right: 10px;}
.main-wrap .review .title h2 i {color: #2156d8}
.main-wrap .review .title h2 .emoji {margin-left: 10px;}
@keyframes blink {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}
.main-wrap .review .object > img {
    position: absolute;
    animation: blink 1.5s infinite ease-in-out;
}
.main-wrap .review .object .obj-01 {
    left: -140px;
    top: -60px;
    width: 120px;
    animation-delay: 0s;
}
.main-wrap .review .object .obj-02 {
    top: -90px;
    left: -10px;
    width: 80px;
    animation-delay: 0.5s;
}
.main-wrap .review .object .obj-03 {
    bottom: 0;
    right: -110px;
    width: 80px;
    animation-delay: 1s;
}

.main-wrap .review .slick-controls > button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.7);
    width: 60px;
    height: 60px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}
.main-wrap .review .slick-controls .slick-prev {left: 3%;}
.main-wrap .review .slick-controls .slick-next {right: 3%;}
.main-wrap .review .content {
    position: relative;
    text-align: left;
}
.main-wrap .review .content .list-wrap .slick-list {padding: 20px 0 40px;}
.main-wrap .review .content .list-wrap li {
    margin-right: 30px;
    padding-bottom: 30px;
}
.main-wrap .review .content .list-wrap li a {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    display: block;
    overflow: hidden;
}
.main-wrap .review .content .list-wrap li .img {
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.main-wrap .review .content .list-wrap li .txt {padding: 30px;}
.main-wrap .review .content .list-wrap li .txt .subject {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
}
.main-wrap .review .content .list-wrap li .txt .desc {
    font-size: 15px;
    color: #666;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 라인수 */
    -webkit-box-orient: vertical;
    word-wrap:break-word;
    line-height: 1.4em;
    height: 4.2em;
    overflow: hidden;
}
.main-wrap .review .content .list-wrap li .txt .info {
    margin-top: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-wrap .review .content .list-wrap li .txt .left {display: flex;}
.main-wrap .review .content .list-wrap li .txt .left .name::after {
    content: "";
    background: #ddd;
    width: 1px;
    height: 10px;
    margin: 0 8px;
    display: inline-block;
}
.main-wrap .review .more-btn {
    background: #2156d8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 80px;
    border-radius: 80px;
    padding: 0 15px;
    font-size: 20px;
    transition: all .3s;
    font-weight: bold;
    margin: 30px auto 0;
}
.main-wrap .review .more-btn span {
    margin-right: 8px;
    transition: all .3s;
}
.main-wrap .review .more-btn:hover span {margin-right: 20px;}
@media all and (max-width: 1600px) {
    .main-wrap .banner .banner-slider .slick-slide,
    .main-wrap .banner .banner-slider .slick-slide a {height: 600px;}
}
@media all and (max-width: 1300px) {
    .main-wrap .banner .banner-slider .slick-slide,
    .main-wrap .banner .banner-slider .slick-slide a {height: 500px;}
    .main-wrap .popular .list-wrap li {width: calc((100% - 45px)/4);}
    .main-wrap .popular .list-wrap li:nth-child(5n) {margin-right: 15px;}
    .main-wrap .popular .list-wrap li:nth-child(4n) {margin-right: 0;}
}
@media all and (max-width: 1024px) {
    .main-wrap .banner .slick-prev {left: 100px;}
    .main-wrap .banner .slick-next {right: 100px;}
    .main-wrap .feature ul {margin-bottom: -15px;}
    .main-wrap .feature ul li {
        width: calc((100% - 45px)/4);
        margin-right: 15px;
        margin-bottom: 15px;
        min-height: 260px;
    }
    .main-wrap .review .slick-controls .slick-prev {left: 30px;}
    .main-wrap .review .slick-controls .slick-next {right: 30px;}
    .main-wrap .deal .slick-controls .slick-prev {left: 15px;}
    .main-wrap .deal .slick-controls .slick-next {right: 15px;}
}
@media all and (max-width: 991px) {
    .main-wrap .banner .banner-slider .slick-slide,
    .main-wrap .banner .banner-slider .slick-slide a {height: 400px;}
    .main-wrap .youtube .youtube-wrap > div {width: 100%;}
    .main-wrap .youtube .youtube-wrap .right {margin: 50px 0 0;}
    .main-wrap .popular .list-wrap li {width: calc((100% - 15px)/2);}
    .main-wrap .popular .list-wrap li:nth-child(4n) {margin-right: 15px;}
    .main-wrap .popular .list-wrap li:nth-child(2n) {margin-right: 0;}
    .main-wrap .popular .list-wrap .img {height: 300px;}
}
@media all and (max-width: 767px) {
    .main-wrap > section {
        padding: 50px 0;
    }

    .main-wrap .title {
        margin-bottom: 20px;
    }

    .main-wrap .title h2 {
        font-size: 24px;
    }

    .main-wrap .title h2 b {
        font-size: 24px;
    }

    .main-wrap .title h2 span b {
        padding: 0 5px;
        border-radius: 5px;
    }

    .main-wrap .title h2 span img {
        width: 28px;
        margin-top: -6px;
    }

    .main-wrap .title h3 {
        font-size: 20px;
    }

    .main-wrap .title p {
        font-size: 16px;
    }

    .main-wrap .banner {
        padding-top: 10px;
    }

    .main-wrap .banner .pc-banner {
        display: none;
    }

    .main-wrap .banner .m-banner {
        display: block;
    }

    .main-wrap .banner .banner-slider .slick-slide {
        margin: 0 5px;
    }

    .main-wrap .banner .banner-slider .slick-slide,
    .main-wrap .banner .banner-slider .slick-slide a {
        height: auto;
    }

    .main-wrap .banner .banner-slider .slick-slide a {
        border-radius: 20px;
    }

    .main-wrap .banner .slick-arrow img {
        width: 18px;
    }

    .main-wrap .banner .slick-prev {
        left: 35px;
    }

    .main-wrap .banner .slick-next {
        right: 35px;
    }

    .main-wrap .youtube .youtube-wrap .left .txt {
        font-size: 16px;
        margin-top: 10px;
    }
    .main-wrap .status {padding: 30px 0;}
    .main-wrap .status ul {
        border-radius: 10px;
        padding: 15px 0;
    }
    .main-wrap .status ul li {padding: 0 15px;}
    .main-wrap .status ul li p {
        font-size: 15px;
        margin-bottom: 0;
    }
    .main-wrap .status ul li .number {font-size: 14px;}
    .main-wrap .status ul li .number span {font-size: 24px;}
    .main-wrap .youtube .youtube-link {
        padding: 20px;
        margin-bottom: 20px;
        background-position: center right;
    }
    .main-wrap .youtube .youtube-link img {width: 70px;}
    .main-wrap .youtube .youtube-link b {
        font-size: 16px;
        display: block;
        margin: 0;
        margin-left: 8px;
    }
    .main-wrap .youtube .youtube-link .more-btn {
        font-size: 15px;
        height: 42px;
        line-height: 42px;
        border-radius: 5px;
        max-width: 150px;
        margin-top: 15px;
    }
    .main-wrap .youtube .youtube-wrap .right {
        margin-top: 30px;
    }

    .main-wrap .youtube .youtube-wrap .right .img {
        width: 150px;
    }

    .main-wrap .youtube .youtube-wrap .right .txt {
        width: calc(100% - 150px);
        padding-left: 12px;
        font-size: 15px;
    }

    .main-wrap .youtube .youtube-wrap .right .txt .subject {
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* 라인수 */
        -webkit-box-orient: vertical;
        word-wrap: break-word;
        line-height: 1.5em;
        height: 4.5em;
        overflow: hidden;
    }

    .main-wrap .youtube .youtube-wrap .right .txt .name {
        display: none;
    }

    .main-wrap .deal .deal-slider > div {margin-bottom: 40px;}
    .main-wrap .deal .title h2 .bubble {
        font-size: 24px;
        border-radius: 5px;
    }

    .main-wrap .deal .title h2 .bubble::after {
        width: 13px;
        height: 11px;
        bottom: -11px;
    }
    .main-wrap .deal .slick-controls > button {
        width: 40px;
        height: 40px;
    }
    .main-wrap .deal .slick-controls .slick-prev {left: 0;}
    .main-wrap .deal .slick-controls .slick-next {right: 0;}
    .main-wrap .deal .title p {
        font-size: 18px;
        margin: 10px 0 0;
    }

    .main-wrap .deal .deal-slider h3 {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center;
    }
    .main-wrap .deal .title .condition {margin-top: 30px;}
    .main-wrap .deal .title .condition .inner {font-size: 15px;}
    .main-wrap .deal .title .condition .inner b {
        padding: 8px;
        width: 80px;
    }
    .main-wrap .deal .title .condition .inner p {
        width: calc(100% - 80px);
        font-size: 15px;
        padding: 8px 15px;
    }
    .main-wrap .deal .title .condition .inner p span {font-size: 18px;}
    .main-wrap .deal .deal-list {margin: 0 -15px;}
    .main-wrap .deal .deal-list li > a {padding: 15px 0;}
    .main-wrap .deal .deal-list li .img {height: 120px;}
    .main-wrap .deal .deal-list li .label {
        font-size: 12px;
        padding: 2px 5px;
        border-radius: 0 0 3px 0;
    }
    .main-wrap .deal .deal-list li .txt {padding-top: 10px;}
    .main-wrap .deal .deal-list li .txt .subject {font-size: 20px;}
    .main-wrap .deal .deal-list li .txt .price {
        margin-top: 10px;
        padding-top: 10px;
    }
    .main-wrap .deal .deal-list li .txt .price > div > span:first-child {font-size: 16px;}
    .main-wrap .deal .deal-list li .txt .price > div > span:last-child {font-size: 16px;}
    .main-wrap .deal .deal-list li .txt .price > div > span .large {font-size: 22px;}
    .main-wrap .deal .more-btn {font-size: 18px;}

    /*.main-wrap .popular {padding-bottom: 30px;}*/
    .main-wrap .popular .tab-menu li {
        width: 100px;
        height: 45px;
        line-height: 45px;
        font-size: 18px;
    }
    .main-wrap .popular .tab-menu li::after {
        width: 13px;
        height: 11px;
        bottom: -11px;
    }
    .main-wrap .popular .logo-box {
        padding: 10px 10px 0;
        margin: 30px 0 20px;
    }
    .main-wrap .popular .logo-box li {margin: 0 10px 15px;}
    .main-wrap .popular .logo-box li img {
        max-width: 24px;
        max-height: 24px;
    }
    .main-wrap .popular .list-wrap {margin-bottom: -10px;}
    .main-wrap .popular .list-wrap li {
        width: calc((100% - 10px)/2);
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .main-wrap .popular .list-wrap li:nth-child(5n) {margin-right: 10px;}
    .main-wrap .popular .list-wrap li:nth-child(2n) {margin-right: 0;}
    .main-wrap .popular .list-wrap .img {height: 150px;}
    .main-wrap .popular .list-wrap .txt .subject {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .main-wrap .popular .list-wrap .txt .price > div {font-size: 14px;}
    .main-wrap .popular .list-wrap .txt .price > div > span b {font-size: 20px;}
    .main-wrap .popular .list-wrap .txt .tag {margin-top: 10px;}
    .main-wrap .popular .list-wrap .txt .tag > span {font-size: 12px;}
    .main-wrap .popular .more-btn {
        font-size: 15px;
        margin-top: 8px;
        border-radius: 5px;
    }

    .main-wrap .feature .title h2 img {
        width: 100px;
        margin-right: 5px;
    }
    .main-wrap .feature ul li {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 10px;
        padding: 20px;
        min-height: auto;
    }
    .main-wrap .feature ul li h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .main-wrap .feature ul li p {font-size: 15px;}
    .main-wrap .feature ul li img {
        position: static;
        margin-top: 0;
        display: block;
        margin-left: auto;
    }
    .main-wrap .partner .partner-list li > div {
        height: 70px;
        padding: 15px;
    }
    .main-wrap .partner .partner-slider .slick-dots {margin-top: 10px;}

    .main-wrap .review .title h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .main-wrap .review .title h2 .logo {
        height: 30px;
        margin-right: 3px;
        margin-top: -5px;
    }
    .main-wrap .review .object .obj-01 {
        width: 80px;
        left: -78px;
        top: -56px;
    }
    .main-wrap .review .object .obj-02 {
        width: 50px;
        top: -60px;
        left: 15px;
    }
    .main-wrap .review .object .obj-03 {
        bottom: 17px;
        right: -73px;
        width: 60px;
    }
    .main-wrap .review .slick-controls > button {
        width: 40px;
        height: 40px;
    }
    .main-wrap .review .slick-controls .slick-prev {left: 15px;}
    .main-wrap .review .slick-controls .slick-next {right: 15px;}
    .main-wrap .review .content .list-wrap {margin-bottom: 0;}
    .main-wrap .review .content .list-wrap li {margin: 0 10px;}
    .main-wrap .review .content .list-wrap li .img {height: 200px;}
    .main-wrap .review .content .list-wrap li .txt {padding: 20px;}
    .main-wrap .review .content .list-wrap li .txt .subject {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .main-wrap .review .content .list-wrap li .txt .info {
        font-size: 13px;
        margin-top: 20px;
        display: block;
    }
    .main-wrap .review .content .list-wrap li .txt .left {margin-bottom: 10px;}
    .main-wrap .review .more-btn {
        margin-top: 0;
        width: 250px;
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }
}

/*회사소개*/
.intro-wrap {text-align: center;}
.intro-wrap .container {
    position: relative;
    z-index: 1;
}
.intro-wrap h2 {
    font-size: 50px;
    font-weight: bold;
    margin: 50px 0 40px;
    line-height: 1.3;
}
.intro-wrap h2 span {color: #2156d8;}
.intro-wrap p {
    font-size: 20px;
    line-height: 1.7;
}
.intro-wrap ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
}
.intro-wrap ul li {
    width: calc((100% - 60px)/3);
    margin-right: 30px;
    border-radius: 50px;
    background: #f8f8f8;
    padding: 50px;
}
.intro-wrap ul li:last-child {margin-right: 0;}
.intro-wrap ul li .ico {
    width: 120px;
    height: 120px;
    border-radius: 120px;
    line-height: 120px;
    background: #fff;
    margin: 0 auto;
}
.intro-wrap ul li h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 25px 0 20px;
    word-break: keep-all;
}
.intro-wrap ul li p {
    font-size: 16px;
    word-break: keep-all;
}
.intro-wrap strong {
    color: #fff;
    display: block;
    margin-top: 120px;
    font-size: 30px;
}
.intro-wrap strong span {color: #5a98ff;}
.intro-wrap .bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 450px;
    background: url(/img/custom/intro_bottom_bg.jpg) no-repeat center;
    background-size: cover;
}
@media all and (max-width: 1024px) {
    .intro-wrap ul li {
        width: calc((100% - 30px)/3);
        margin-right: 15px;
        padding: 40px 25px;
    }
}
@media all and (max-width: 767px) {
    .intro-wrap .container > img {width: 80px;}
    .intro-wrap h2 {
        font-size: 24px;
        margin: 30px 0 20px;
    }
    .intro-wrap p {
        font-size: 15px;
        line-height: 1.4;
    }
    .intro-wrap ul {margin-top: 50px;}
    .intro-wrap ul li {
        width: 100%;
        margin: 0 0 15px;
        padding: 30px;
        border-radius: 20px;
    }
    .intro-wrap ul li:last-child {margin-bottom: 0;}
    .intro-wrap ul li .ico {
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
    .intro-wrap ul li .ico img {
        max-width: 60px;
        max-height: 55px;
    }
    .intro-wrap ul li h3 {
        font-size: 18px;
        margin: 15px 0 10px;
    }
    .intro-wrap ul li p {font-size: 15px;}
    .intro-wrap .bg {height: 350px;}
    .intro-wrap strong {
        margin-top: 70px;
        font-size: 24px;
    }
}

/*팝업모달*/
#popupModal {overflow: hidden}
#popupModal .modal-content {
    width: 400px;
    overflow: visible;
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
}
#popupModal .popup-slider {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 500px;
    position: relative;
}
#popupModal .popup-slider .slick-slide a {
    display: block;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 500px;
}
#popupModal .popup-slider .slick-prev,
#popupModal .popup-slider .slick-next {
    background: none;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
#popupModal .popup-slider .slick-prev {left: 0;}
#popupModal .popup-slider .slick-next {right: 0;}
#popupModal .popup-slider .slick-dots {bottom: 15px;}
#popupModal .popup-slider .slick-dots li button {background: #eee;}
#popupModal .popup-slider .slick-dots li.slick-active button{background: #4e84ff;}
#popupModal .btn-wrap {
    margin-top: 15px;
    text-align: center;
    font-size: 0;
}
#popupModal .btn-wrap button {
    font-size: 14px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    background: none;
    border: none;
}
#popupModal .btn-wrap button::after {
    content: "";
    background: #fff;
    width: 1px;
    height: 14px;
    display: inline-block;
    float: right;
    margin-top: 4px;
}
#popupModal .btn-wrap button:last-child::after {content: none;}

@media all and (max-width: 480px) {
    #popupModal .modal-content {width: 320px;}
    #popupModal .popup-slider,
    #popupModal .popup-slider .slick-slide a {height: 400px;}
    #popupModal .popup-slider .slick-prev, #popupModal .popup-slider .slick-next {width: 36px;}
    #popupModal .btn-wrap {margin-top: 10px;}
    #popupModal .btn-wrap button {font-size: 13px;}
}
@media all and (max-width: 320px) {
    #popupModal .modal-content {width: 260px;}
    #popupModal .popup-slider,
    #popupModal .popup-slider .swiper-slide a {height: 325px;}
}

/*견적문의*/
.estimate-wrap {
    background: #f8f8f8;
    padding: 50px 0;
}
.estimate-wrap h1 {
    text-align: center;
    margin-bottom: 30px;
}
.estimate-wrap .inner {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #fff;
    border-radius: 20px;
    padding: 50px 100px;
}
.estimate-wrap .form-group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.estimate-wrap .half-group {
    width: calc((100% - 30px)/2);
    margin-right: 30px;
}
.estimate-wrap .half-group:last-child {margin-right: 0;}
.estimate-wrap .form-label {
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.estimate-wrap .form-input {
    border: 1px solid #ddd;
    border-radius: 3px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    font-size: 16px;
}
.estimate-wrap .form-input::placeholder {color: rgba(0,0,0,0.5);}
.estimate-wrap select.form-input {
    background-image: url("/img/custom/arrow_select.svg");
    background-repeat: no-repeat;
    background-position: center right 12px;
    background-size: 10px 6px;
    -webkit-appearance:none; /* for chrome */
    -moz-appearance:none; /*for firefox*/
    appearance:none;
}
.estimate-wrap textarea {
    border: 1px solid #ddd;
    border-radius: 3px;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    box-shadow: none;
}
.estimate-wrap .radio-group {display: flex;}
.estimate-wrap .radio-group input {
    overflow: hidden;
    display: none;
    width: 0px;
    height: 0px;
    border: 0 none;
    font-size: 0;
    line-height: 0;
    clip: rect(0 0 0 0);
    opacity: 0;
}
.estimate-wrap .radio-group input + label {
    margin-right: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    display: block;
    cursor: pointer;
    font-weight: 500;
}
.estimate-wrap .radio-group input + label:last-child {margin-right: 0;}
.estimate-wrap .radio-group input:checked + label {
    border: 1px solid #2156d8;
    color: #2156d8;
}

.estimate-wrap .agree-group {
    margin: 30px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
}
.estimate-wrap .agree-group input[type=checkbox] {
    width: 16px;
    height: 16px;
    margin-top: -2px;
}
.estimate-wrap .agree-group label {
    margin-left: 8px;
    margin-right: 5px;
}
.estimate-wrap .agree-group .modal-btn {cursor: pointer;}
.estimate-wrap button {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    width: 250px;
    height: 60px;
    line-height: 60px;
    border-radius: 3px;
    background: #2156d8;
    text-align: center;
    display: block;
    transition: all .3s;
    margin: 0 auto;
    border: none;
}
.estimate-wrap button:hover {background: #0e42be;}
.estimate-wrap .copyright {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 50px;
}
@media all and (max-width: 1015px) {
    .estimate-wrap {padding: 50px 15px;}
}
@media all and (max-width: 767px) {
    .estimate-wrap {padding: 15px;}
    .estimate-wrap h1 {margin-bottom: 20px;}
    .estimate-wrap h1 img {width: 80px;}
    .estimate-wrap .inner {padding: 20px;}
    .estimate-wrap .form-group {margin-bottom: 12px;}
    .estimate-wrap .half-group {
        width: 100%;
        margin: 0 0 12px;
    }
    .estimate-wrap .half-group:last-child {margin-bottom: 0;}
    .estimate-wrap .form-label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .estimate-wrap .form-input {
        height: 42px;
        line-height: 42px;
        font-size: 15px;
    }
    .estimate-wrap textarea {height: 200px !important;}
    .estimate-wrap .radio-group input + label {
        height: 42px;
        line-height: 42px;
        font-size: 15px;
    }
    .estimate-wrap .agree-group {
        margin: 20px 0;
        font-size: 14px;
    }
    .estimate-wrap button {
        font-size: 16px;
        width: 200px;
        height: 50px;
        line-height: 50px;
    }
    .estimate-wrap .copyright {margin-top: 20px;}
}