@charset "utf-8";

@import url("style.css");

.intro-section-wrapper {
    background: #3d76ff;
    padding-top: 80px;
}
.intro-section {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
}
.intro-section .content {
    margin-left: 50px;
}
.intro-section .content .title {
    font-weight: 700;
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
}
.intro-section .content .desc {
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
}

.intro-section .content .buttons {
}
.intro-section .content .buttons .button {
    margin-bottom: 10px;
}
.intro-section .content .buttons .button a {
    position: relative;
    display: block;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 10px 40px 10px 20px;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
}

.intro-section .content .buttons .button a:after {
    content: "";
    position: absolute;
    right: 20px;
    top: calc(50% - 9px);
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url("../images/main/ic_double_arrow_right.svg") no-repeat center
        center;
    background-size: contain;
}

.intro-section .content .buttons .button a em {
    color: #72fecc;
}

.intro-section .img {
    background: url("../images/main/intro_img.png") no-repeat center center;
    background-size: contain;
    background-position: center;
    width: clamp(280px, 40%, 500px);
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
}

.service-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}
.service-section .service-list .item {
    display: flex;
    flex-wrap: wrap;
    margin: 50px 0;
}
.service-section .service-list .item .img {
    background-color: #bbb;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    width: clamp(240px, 30%, 400px);
    height: auto;
    aspect-ratio: 4 / 3;
}
.service-section .service-list .item .content {
    position: relative;
    flex: 1;
    margin-left: 40px;
    padding-top: 90px;
}

.service-section .service-list .item .content:before {
    position: absolute;
    border-radius: 50%;
    top: 10px;
    left: 0;
    width: 50px;
    height: 50px;
    background: #3d76ff;
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-section .service-list .item .content .title {
    font-weight: 700;
    font-size: 26px;
    color: #000;
    margin-bottom: 20px;
    word-break: keep-all;
}

.service-section .service-list .item .content .desc {
    font-weight: 400;
    font-size: 18px;
    color: #606060;
    line-height: 1.5;
    word-break: keep-all;
}

.service-section .service-list .item.o2o .img {
    background-image: url("../images/main/service_o2o.jpg");
}
.service-section .service-list .item.o2o .content:before {
    content: "01";
}

.service-section .service-list .item.trust .img {
    background-image: url("../images/main/service_trust.jpg");
}
.service-section .service-list .item.trust .content:before {
    content: "02";
}

.service-section .service-list .item.loyalty .img {
    background-image: url("../images/main/service_loyalty.jpg");
}
.service-section .service-list .item.loyalty .content:before {
    content: "03";
}

.review-section-wrapper {
    position: relative;
    z-index: 1;
}

.review-section-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/main/review_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -1;
}

.review-section .review-swiper {
    margin-bottom: 25px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 82.5px -9px #00000040;
}

.review-section .review-swiper .swiper-slide .content-wrapper {
    padding: 50px;
}

.review-section
    .review-swiper
    .swiper-slide
    .content-wrapper
    .title-wrapper
    .index {
    display: inline-block;
    background-color: #3eccb6;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    padding: 10px 20px;
    margin-bottom: 15px;
}

.review-section .swiper-pagination {
    position: static;
}

.review-section .swiper-pagination .swiper-pagination-bullet {
    background-color: #ebebeb;
    opacity: 1;
    margin: 0;
    border-radius: 0;
    width: 70px;
    height: 6px;
}

.review-section .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #3d76ff;
}

.review-section .swiper-slide .content-wrapper .title-wrapper .title {
    display: block;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 15px;
}

.review-section .swiper-slide .content-wrapper .content {
    font-size: 18px;
    color: #606060;
    word-break: keep-all;
    line-height: 1.5;
}

.review-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.review-section .headline {
    font-weight: 700;
    font-size: 40px;
    color: #3d76ff;
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 1240px) {
    .review-section,
    .service-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/***************************************************************
 * @media (max-width: 800px)
 **************************************************************/
@media (max-width: 800px) {
    .intro-section {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
    }
    .intro-section .content {
        margin-left: 30px;
    }
    .intro-section .content .title {
        margin-top: 10px;
        letter-spacing: -2px;
        font-size: 40px;
    }
    .intro-section .content .desc {
        font-size: 18px;
        font-weight: 400;
        margin-top: 4px;
        margin-left: 5px;
        margin-bottom: 20px;
        letter-spacing: -0.8px;
    }
    .intro-section .content .buttons {
        margin-left: 5px;
        margin-right: 60px;
        margin-bottom: 10px;
    }
    .intro-section .content .buttons .button a {
        font-weight: 700;
        font-size: 18px;
        letter-spacing: -1px;
        border: 1px solid #9dbaff;
        border-radius: 10px;
        padding: 15px 40px 15px 20px;
    }

    .intro-section .img {
        background-position: center 20%;
        margin: 30px auto 0 auto;
    }

    /*내용*/
    .review-section,
    .service-section {
        padding-left: 30px;
        padding-right: 30px;
    }
    .service-section .service-list .item {
        flex-direction: column;
    }
    .service-section .service-list .item .content {
        padding-top: 60px;
        margin-left: 0;
    }
    .service-section .service-list .item .content:before {
        width: 40px;
        height: 38px;
        font-size: 18px;
        font-weight: 700;
        padding-top: 2px;
    }
    .service-section .service-list .item .content .title {
        line-height: 150%;
        font-weight: 700;
        font-size: 19px;
    }
    .service-section .service-list .item .content .desc {
        font-size: 16px;
    }

    .service-section .service-list .item .img {
        margin-bottom: 30px;
        width: 100%;
    }
    /*후기*/
    .review-section-wrapper:before {
    }
    .review-section .headline {
        font-size: 32px;
        font-weight: 700;
    }
    .review-section .swiper-slide .content-wrapper .title-wrapper .title {
        font-size: 18px;
        font-weight: 700;
    }
    .review-section .swiper-slide .content-wrapper .content {
        font-size: 16px;
    }
    .review-section .review-swiper .swiper-slide .content-wrapper {
        padding: 30px;
    }

    .review-section
        .review-swiper
        .swiper-slide
        .content-wrapper
        .title-wrapper
        .index {
        text-align: center;
        padding: 6px 12px;
        font-size: 14px;
        font-weight: 700;
    }
    .review-section .swiper-pagination .swiper-pagination-bullet {
        width: 50px;
        height: 3px;
    }
    .review-section .swiper-pagination .swiper-pagination-bullet {
        background-color: #d3d3d3;
    }
    .review-section .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #3d76ff;
    }
}
