@charset "utf-8";

/*
 * File       : style.css
 * Author     : YONG
 *
 * 최종수정일 : 25/00/00
 *
 * SUMMARY:
 * 메인페이지.CSS
 */

/* 
■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■ PC ■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■
*/

.main {
    width: 100%;
    height: auto;
}

/*  */
.visual {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.visual > .inner {
    width: 100%;
    height: auto;
    display: flex;
    gap: 2rem;
}

/*  */
.swiper {
    width: 65%;
    height: auto;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.swiper-slide {
    width: 100%;
    height: auto;
}

.swiper-slide > a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.swiper-slide .sub__logo {
    margin-bottom: 2rem;
}

.swiper-slide .sub__logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.swiper-slide > a > h3 {
    font-size: 1.2rem;
}

.swiper-slide > a > h4 {
    font-size: 1.6rem;
    color: #00c2d8;
    margin-bottom: 2rem;
}

.swiper-slide > a > em {
    font-size: 1.2rem;
    font-weight: 600;
    color: #595959;
    margin-bottom: 1rem;
}

.swiper-slide > a > p {
    font-size: 1.1rem;
    font-weight: 500;
}

.swiper-slide .img {
    display: flex;
    justify-content: flex-end;
}

.swiper-slide .img img {
    width: 100px;
    height: 80px;
    object-fit: contain;
}

.swiper-container-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-custom, 
.swiper-pagination-fraction {
    bottom: 1rem;
}

.swiper-pagination-bullet-active {
    background: #00c2d8;
}

/*  */
.cs {
    width: 35%;
    height: auto;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 2rem;
}

.cs .title {
    padding-bottom: 1rem;
}

.cs .title p {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: normal;
}

.cs__inputs {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cs__input {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
}

.cs__input.box {
    gap: 1rem;
}

.cs__input.box > input {
    width: 60%;
}

.cs__input>input {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    padding-left: 10px;
}

.cs__radio {
    width: 40%;
    height: 100%;
    display: flex;
}

.cs__radio input[type=radio] {
    display: none;
}

.cs__radio input[type=radio]+label {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.cs__radio input[type=radio]:checked+label {
    color: #000;
    border: none;
    border: 2px solid #00c2d8;
}

/* select */
#csSelect {
    width: 100%;
    height: 50px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    background-color: #fff;
    appearance: none;
    background-image: url(../img/sort-down-solid.svg);
    background-size: 14px;
    background-position: bottom 18px right 18px;
    background-repeat: no-repeat;
    padding: 0 18px;
}

#csSelect option {
    font-size: 1rem;
    padding: 1rem;
}

.cs__apply {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cs__info {
    display: flex;
    gap: 5px;
    margin: 0 0 1rem;
}

.cs__info label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs__info input {
    width: 17px;
    height: 17px;
}

.cs__info span {
    font-size: 0.9rem;
}

.cs__info>span {
    color: cornflowerblue;
    text-decoration: underline;
    cursor: pointer;
}

.cs__btn {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.submit {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #00c2d8;
    border-radius: 0.5rem;
    cursor: pointer;
}

/*  */
.banner {
    width: 100%;
    height: auto;
    padding: 2rem 0;
}

.banner > p {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}

.banner > p > b {
    color: #3a4ca8;
    font-weight: inherit;
}

/*  */
.content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #f8f8f8;
    padding: 4rem 0;
}

.content > .inner {
    width: 100%;
    height: auto;
    display: flex;
    gap: 1rem;
}

.content .col {
    width: 33.33%;
    background-color: #00c2d8;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.content .col > a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

.content .col > a > h3 {
    font-size: 1.1rem;
    color: #fff;
}

.content .col .img {
    display: flex;
    justify-content: flex-end;
}

.content .col .img img {
    width: 110px;
    height: 90px;
    object-fit: contain;
}

.content .row {
    width: 66.66%;
    height: auto;
}

.content .row > ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.content .row > ul > li {
    width: calc(50% - 8px);
    height: auto;
    background-color: #f5fcff;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.content .row > ul > li:nth-last-of-type(1){
    background-color: #000;
}

.content .row > ul > li:nth-last-of-type(1) > a > h3 {
    color: #fff;
}

.content .row > ul > li > a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
}

.content .row > ul > li > a > h3 {
    font-size: 1rem;
}

.content .row .img {
    display: flex;
    justify-content: flex-end;
}

.content .row .img img {
    width: 70px;
    height: 50px;
    object-fit: contain;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {

    /* 
    ■■■■■■■■■■■■■■■■■■■■■
    ■■■■■■■■ 태블릿 ■■■■■■■■
    ■■■■■■■■■■■■■■■■■■■■■
    */

    .visual {
        padding: 2rem 1rem 0;
    }

    .visual > .inner {
        flex-wrap: wrap;
        gap: 1rem;
    }

    /*  */
    .swiper {
        width: 100%;
    }

    /*  */
    .cs {
        width: 100%;
    }

    /*  */
    .content {
        padding: 2rem;
    }

    .content .col > a {
        padding: 1.5rem;
    }

    .content .col > a > h3 {
        font-size: 1rem;
    }

    .content .col .img img {
        width: 90px;
        height: 70px;
    }

    .content .row > ul > li > a {
        padding: 1.5rem;
    }

    .content .row > ul > li > a > h3 {
        font-size: 0.9rem;
    }

    .content .row .img img {
        width: 50px;
        height: 45px;
    }

}






@media screen and (max-width: 767px) {

    /* 
    ■■■■■■■■■■■■■■■■■■■■■
    ■■■■■■■■ 모바일 ■■■■■■■■
    ■■■■■■■■■■■■■■■■■■■■■
    */

    .visual {
        padding: 0;
    }

    .visual > .inner {
        flex-wrap: wrap;
        gap: 0;
    }

    /*  */
    .swiper {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #ccc;
    }

    .swiper-slide > a {
        justify-content: flex-start;
        padding: 1.5rem 1.5rem 2rem 1.5rem;
    }

    .swiper-slide .sub__logo img {
        width: 100px;
    }

    .swiper-slide > a > h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .swiper-slide > a > h4 {
        font-size: 1.2rem;
        word-break: keep-all;
        margin-bottom: 1rem;
    }

    .swiper-slide > a > em {
        font-size: 0.95rem;
    }

    .swiper-slide > a > p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .swiper-slide .img img {
        width: 80px;
        height: 60px;
    }

    /*  */
    .cs {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #ccc;
    }

    /*  */
    .banner {
        padding: 2rem 1rem;
    }

    .banner > p {
        font-size: 1.1rem;
        word-break: keep-all;
    }

    /*  */
    .content {
        padding: 2rem 1rem;
    }

    .content > .inner {
        flex-wrap: wrap;
    }

    .content .col {
        width: 100%;
    }

    .content .col > a {
        gap: 1rem;
    }

    .content .col > a > h3 {
        font-size: 1rem;
    }

    .content .col .img img {
        width: 60px;
        height: auto;
    }

    /*  */
    .content .row {
        width: 100%;
    }

    .content .row > ul > li > a {
        padding: 1.5rem;
    }

    .content .row > ul > li > a > h3 {
        font-size: 0.9rem;
    }

    .content .row .img img {
        width: 50px;
        height: 40px;
    }

}