/* 생활 서비스 :: 전기바이크 스테이션 */

.serviceSection {
    width: 100%;
}

.motorCycleCont01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 160px;
}

.motorCycleCont01 .item {
    width: calc((100% / 2) - 18px);
    height: auto;
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 20px;
    padding: 36px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.motorCycleCont01 .item .img {
    width: 100%;
    height: auto;
    background: #FFF7E5;
}

.motorCycleCont01 .item .img img {
    width: 100%;
    display: inline-block;
}

.motorCycleCont01 .item .txt {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.motorCycleCont01 .item .txt p {
    font-family: Paperlogy;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
}

.motorCycleCont01 .item .txt span {
    font-family: Paperlogy;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
}

@media (max-width: 945px) {
    .motorCycleCont01 .item .txt .only_pc {
        display: none !important;
    }
}

@media (max-width: 744px) {
    .motorCycleCont01 {
        flex-direction: column;
        padding-bottom: 120px;
    }

    .motorCycleCont01 .item {
        width: 100%;
        padding: 20px 14px;
    }

    .motorCycleCont01 .item .txt p {
        font-size: 18px;
    }

    .motorCycleCont01 .item .txt span {
        font-size: 14px;
        letter-spacing: -0.02em;
    }
}









