/* 생활 서비스 :: 상품권 */

.serviceSection {
    width: 100%;
}

.certificateCont01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-bottom: 160px;
}

.certificateCont01 .item {
    width: 100%;
    height: 364px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 20px;
    padding: 36px;
}

.certificateCont01 .item .img {
    width: 100%;
    height: auto;
}

.certificateCont01 .item .img img {
    width: 100%;
    height: auto;
}

.certificateCont01 .item .txt {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.certificateCont01 .item .txt p {
    font-family: Paperlogy;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
}

.certificateCont01 .item .txt span {
    font-family: Paperlogy;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
}


@media (max-width: 744px) {
    .certificateCont01 {
        flex-direction: column;
        padding-bottom: 120px;
    }

    .certificateCont01 .item {
        height: auto;
        padding: 20px 14px
    }

    .certificateCont01 .item .txt p {
        font-size: 18px;
    }

    .certificateCont01 .item .txt span {
        font-size: 14px;
        letter-spacing: -0.02em;
    }
}









