main {
    padding-bottom: var(--sec-gap);
}

section {
    background: white;
}

/* ===========분양상담========== */
.main_sec .btn_wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    justify-content: center;
}
.call-btn {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 999px;
    transition: all .3s ease;    
}

.call-btn:hover {
    background-color: var(--hover);
    transform: translateY(-1px);
    box-shadow: var(--btn-shadow);
}

.call-btn .icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.call-btn .btn-text {
    font-size: var(--ft18);
}

.form_list {
    display: flex;
    align-items: start;
    gap: var(--con-gap);
    flex-direction: column;
}

.form_item {
    width: 100%;
}

.form_title {
    font-size: var(--ft22);
    color: var(--ft-main);
    font-family: var(--ft-serif);
    margin-bottom: 30px;
    display: block;
}

.radio_group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.radio_btn {
    border: 1px solid var(--gray-300);
    width: 100%;
    height: var(--input-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio_btn.col {
    flex-direction: column;
    padding: 20px;
    height: auto;
    gap: 20px;
    aspect-ratio: 1.5 / 1;
}

.radio_name {
    font-size: var(--ft18);
    color: var(--ft-main);
}

.radio_btn:has(input[type="radio"]:checked) {
    background: var(--primary-100);
    border-color: var(--primary);
}

.radio_btn:has(input[type="radio"]:checked) .radio_name {
    color: var(--primary);
}

.radio_btn:hover {
    background: var(--primary-100);
    transition: background .3s ease;
}

.radio_btn .icon {
    width: var(--input-height);
    height: var(--input-height);
}

.input_box {
    border: 1px solid var(--gray-300);
    width: 100%;
    height: var(--input-height);
    padding: 20px;
}

.input_box input,
.input_box textarea {
    height: 100%;
    font-size: var(--ft18);
}

.input_box:has(textarea) {
    height: fit-content;
}

.input_box textarea {
    height: 200px;
    resize: none;
}

.input_box:has(input:focus),
.input_box:has(textarea:focus) {
    border-color: var(--primary);
}

.form_bot {
    margin-top: var(--con-gap);
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: var(--con-gap);
}

.form_agree {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.form_agree .input_name {
    font-size: var(--ft18);
}

.agree_link {
    text-decoration: underline;
    color: var(--primary-500);
    font-size: var(--16);
    width: fit-content;
    height: fit-content;
    font-size: var(--ft16);
}

.form_agree .checkbox {
    flex-shrink: 0;
    cursor: pointer;
}

.btn-submit {
    width: 220px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    font-size: var(--ft18);
    margin-left: auto;
    transition: background .3s ease;
}

.btn-submit:hover {
    background: var(--hover);
}


/*========= 공지사항 ========= */
.board-control {
    margin-bottom: 60px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.board-total {
    color: var(--gray-400);
    font-size: var(--ft18);
}

.board-total span {
    color: var(--primary);
    font-weight: var(--semi-bold);
}

.notice_board {
    width: 100%;
    border-top: 1px solid var(--primary-400);
}

.notice-item {
    cursor: pointer;
}

.notice-item.pinned {
    order: -1;
    background: var(--primary-100);
    font-weight: 600;
    position: relative;
}

.notice-header {
    display: flex;
    align-items: center;
    padding: 30px 20px;
    gap: 40px;
    border-bottom: 1px solid var(--primary-300);
    position: relative;
}

.notice-num {
    width: 60px;
    flex-shrink: 0;
    text-align: center;
    color: var(--primary-500);
    font-size: var(--ft16);
}

.notice-title {
    font-size: var(--ft18);
    color: var(--ft-main);
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    position: relative;
    padding-right: 30px;
}

.notice-title .tag {
    display: inline-block;
    font-size: var(--ft14);
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    letter-spacing: -0.3px;
}

/* 공지 */
.tag_n {
    background: #F8F5F2;
    color: #5C4033;
    border: 1px solid #D8C9B8;
}

/* 이벤트 */
.tag_e {
    background: #C98A52;
    color: #fff;
    border: 1px solid #dba271;
}

/* 소식 */
.tag_s {
    background: #eaf0ed;
    color: #2E4A3F;
    border: 1px solid #8e9e98;
}

/* 안내 */
.tag_i {
    background: #EFE8E1;
    color: #5C4033;
    border: 1px solid #D7C7B6;
}

.notice-item.new_notice .notice-title::before {
    content: '';
    display: block;
    position: absolute;
    left: -10px;
    top: 0;
    width: 6px;
    height: 6px;
    transform: translateX(-100%);
    border-radius: 50%;
    background: var(--warning);
}

.notice-title .icon {
    width: 22px;
    height: auto;
    aspect-ratio: 1;
    display: inline-block;
    opacity: .5;
}

.notice-name {
    font-size: var(--ft18);
    color: var(--ft-sub);
    flex-shrink: 0;
}

.notice-date {
    width: 100px;
    font-size: var(--ft16);
    flex-shrink: 0;
    color: var(--gray-400);
}

.notice-date .d {
    font-size: var(--ft24);
    color: var(--ft-main);
    font-weight: var(--semi-bold);
}

.notice-icon {
    top: 20px;
    right: 10px;
    position: absolute;
    transition: all .3s ease;
}

.notice-header:hover {
    border-color: var(--primary);
    transition: border-color .3s ease;
}

.notice-header:hover .notice-icon {
    top: 10px;
    right: 0;
}

/* 공지사항디테일 */
.detail_page main {
    padding-bottom: calc(var(--sec-gap) / 2);
}
.editor-area {
    min-height: 300px;
}
/* .editor-area img {
    width: 100%;
    height: auto;
    background: var(--img);
} */

.post_nav .btn-link {
    margin: 0 auto;
}

/* ============= 장례절차 =========== */
/* overview_sec */
.overview_sec .inner {
    padding: var(--sec-gap) 0;
}

.overview_sec .sec-bg {
    width: 100%;
    height: 100%;
    filter: brightness(0.4);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.overview_sec .bg_img {
    width: 100%;
    height: 100%;
}

.overview_sec .bg_img img {
    scale: 1.1;
}

.overview_sec .sec-header {
    margin-bottom: calc(var(--con-gap) * 2);
    position: relative;
}

.overview_sec .sec-title {
    color: white;
    font-size: var(--ft32);
    text-align: center;
}

.overview_sec .sec-title .split {
    display: flex;
    gap: 10px;
    transition: all 1s ease;
    justify-content: center;
    opacity: 0;
}

.overview_sec .sec-title .split span {
    min-width: .5ch;
}

.overview_sec .sec-title.active .split {
    gap: 0;
    opacity: 1;
}

.overview_sec .con-wrap {
    display: flex;
    align-items: start;
    width: 100%;
}

.overview_sec .con {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 50px;
    flex: 1 0 0;
    border-right: 1px solid #ffffff50;
    text-align: center;
}

.overview_sec .con:last-child {
    border: 0;
}

.overview_sec .con-title {
    font-size: var(--ft22);
    color: white;
    margin-bottom: 20px;
}

.overview_sec .con-desc {
    color: var(--primary-100);
    text-align: center;
}

/* consultation_sec */
.consultation_sec {
    padding-top: var(--sec-gap);
    overflow: hidden;
    padding-bottom:  var(--sec-gap);
}

.consultation_sec .sec-header {
    margin-bottom: var(--con-gap);
}
.consultation_sec .con-wrap {
    --gap: 40px;
    display: flex;
    align-items: start;
    gap: var(--gap);
}
.consultation_sec .cp-con {
    width: 33%;
    position: relative;
}
.consultation_sec .cp-list.last {
    margin-top: var(--con-gap);
}
.consultation_sec .cp-list.last .cp-con {
    width: 100%;
}
.consultation_sec .cp-con:last-child {
    
    padding-right: 0;
}

.consultation_sec .con-icon {
    width: 80px;
    height: 80px;
    aspect-ratio: 1;
    margin: 0 auto 50px;
}
.consultation_sec .last .con-icon {
    width: 100px;
    height: 100px;
}

.consultation_sec .con-num {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.consultation_sec .con-num .num {
    width: 44px;
    aspect-ratio: 1;
    border: 1px solid var(--primary-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--ft18);
    background: white;
    position: relative;
    z-index: 1;
    transition: all .8s ease;
    transition-delay: calc(var(--i) * 0.5s);
}

.consultation_sec .con-num .line {
    height: 1px;
    width: 100%;
    background: var(--primary-300);
    position: absolute;
    transform: translateX(var(--gap));
    transition: all .5s ease;
    transition-delay: calc(var(--i) * 0.5s);
}
.consultation_sec .last .con-box {
    display: grid;
    gap: var(--gap);
    grid-template-columns: 1fr 2fr;
}
.consultation_sec .con-visual {
    min-height: 450px;
    height: 100%;
}
.consultation_sec .last .con-desc_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--primary-100);
    padding: 30px;
    border-radius: var(--border-radius);
}
.consultation_sec .con-title {
    font-size: var(--ft22);
    margin-bottom: 20px;
    font-weight: var(--medium);
}

.consultation_sec .con-desc {
    color: var(--ft-sub);
}
.consultation_sec .last_desc {
    display: flex;
    align-items: start;
}
.consultation_sec .con.active .con-icon {
    animation: jump 0.8s calc(var(--i) * 0.5s) cubic-bezier(0.28, 0.84, 0.42, 1.1) forwards;
}
@keyframes jump {
    0%, 100% {transform: translateY(0) scale(1);}
    60% {transform: translateY(-12px) scale(1.05);}
}
.consultation_sec .last .con.active .con-num .num {
    background: var(--gray-600);
    color: white;
}



/* general_sec */
.general_sec {
    padding-top: var(--sec-gap);
}

.general_sec .i_r,
.general_sec .i_l {
    display: grid;
    grid-template-columns: 1fr 1fr 24.28%;
    gap: 80px;
}

.general_sec .i_l {
    gap: var(--con-gap);
    position: sticky;
    top: 20%;
    height: fit-content;
    width: 100%;
}

.general_sec .sec-header {
    width: 100%;
}

.general_sec .sec-title {
    margin-bottom: 40px;
}

.general_sec .sec-sub_title {
    margin-bottom: calc(var(--con-gap) * 2);
}

.general_sec .date-wrap {
    display: flex;
    gap: 40px;
    font-size: var(--ft32);
}

.general_sec .date-wrap .date {
    color: var(--primary);
    opacity: 0.3;
    font-weight: var(--semi-bold);
}

.general_sec .date-wrap .date.active {
    opacity: 1;
    transition: opacity .3s ease;
}

.general_sec .visual-wrap {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    min-width: 0;
    position: relative;
}

.general_sec .visual-con {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: inset(100% 0 0 0);
    transition: clip-path .3s ease;
    /* opacity: 0; */
}

.general_sec .visual-con.active {
    clip-path: inset(0 0 0 0);
    /* opacity: 1; */

}

.general_sec .visual-con .img {
    width: 100%;
    height: 100%;
}

.general_sec .text_list {
    grid-column: 3;
}

.general_sec .text_box {
    display: flex;
    flex-direction: column;
    gap: 40px;

}

.procedures_box {
    margin-bottom: calc(var(--con-gap) * 2);
}

.procedures_box:last-child {
    margin-bottom: 0;
}

.procedures_box .visual-con {
    position: relative;
    opacity: 1;
    clip-path: inset(0 0 0 0);
    display: none;
}

.procedures_box .date {
    display: none;
    color: var(--primary);
    font-size: var(--ft32);
    font-weight: var(--semi-bold);
    margin-bottom: 40px;    
    gap: 10px;
    align-items: center;
}

.procedures_box .date::before {
    content: '';
    display: block;
    width: 6px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary);
}

.general_sec .con-title {
    font-size: var(--ft22);
    margin-bottom: 20px;
    font-weight: var(--medium);
}

.general_sec .con-desc {
    color: var(--ft-sub);
}


/* religion_sec */
.religion_sec {
    padding: var(--sec-gap) 0;
}

.religion_sec .sec-header {
    margin-bottom: var(--con-gap);
    display: flex;
    align-items: center;
    flex-direction: column;  
}

.religion_sec .sec-title {
    text-align: center;
    margin-bottom: var(--con-gap);
}

.religion_sec .tab_menu {
    display: flex;
    gap: 40px;
}

.religion_sec .tab_menu li {
    padding: 10px;
    font-size: var(--ft18);
    font-weight: var(--medium);
    color: var(--ft-main);
    opacity: 0.5;
    cursor: pointer;
}

.religion_sec .tab_menu li.active {
    opacity: 1;
    border-bottom: 2px solid var(--gray-600);
}

.religion_sec .con-header {
    width: 100%;
    aspect-ratio: 3 / 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 300px;
}

.religion_sec .con-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* filter: brightness(0.4); */
}

.religion_sec .con-bg figure {
    width: 100%;
    height: 100%;
}

.religion_sec .con-header_wrap {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px var(--con-gap);
    flex-wrap: wrap;
}

.religion_sec .con-title {
    color: white;
    flex-shrink: 0;
    font-size: var(--ft32);
}

.religion_sec .con-sub_title {
    width: 500px;
    font-size: var(--ft18);
    color: var(--primary-100);
}

.religion_sec .con-body {
    padding-top: calc(var(--con-gap) * 2);
}

.procedure-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.procedure-cards .card {
    padding: 50px;
    border-right: 1px solid var(--primary-200);
    border-bottom: 1px solid var(--primary-200);
}

.procedure-cards .card:nth-child(n+4) {
    border-bottom-width: 0;
}

.procedure-cards .card:nth-child(3n) {
    border-right-width: 0;
}

.procedure-cards .card .card-num {
    font-size: var(--ft46);
    color: var(--primary-400);
    font-weight: 200;
    margin-bottom: 30px;
}

.procedure-cards .card .card-title {
    font-size: var(--ft22);
    margin-bottom: 20px;
    color: var(--ft-main);
}

.procedure-cards .card .card-desc {
    font-size: var(--ft16);
    color: var(--ft-sub);
}

.religion_sec .con {
    display: none;
}

.religion_sec .con.active {
    display: block;
}



/* notice_sec */
.service_sec {
    background: transparent;
}

.service_sec .sec-bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/* .service_sec::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--sec-gap);
    background: linear-gradient(to bottom, white, transparent);
} */

.service_sec .bg_img {
    width: 100%;
    height: 100%;
    filter: brightness(0.4);
    border-radius: 0;
}

.service_sec .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: row-reverse;
    gap: var(--con-gap);
}

.service_sec .sec-header {
    padding-top: var(--sec-gap);
    height: fit-content;
    position: sticky;
    top: 0;
    order: 2;
    padding-bottom: var(--sec-gap);
}

.service_sec .btn-link {
    margin: 0 auto;
    color: white;
}

.service_sec .sec-title {
    text-align: center;
    color: white;
    margin-bottom: var(--con-gap);
    font-size: var(--ft42);
}

.service_sec .con-wrap {
    padding: var(--sec-gap) 0;
    display: flex;
    flex-direction: column;
    gap: var(--con-gap);
}

.service-con {
    width: 100%;
    padding: var(--con-gap);
    gap: calc(var(--con-gap) * 2);
    background: white;
    box-shadow: 0 20px 40px #00000040;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-con .con-title {
    font-size: var(--ft28);
}

.service-con .con-item {
    width: 100%;
    border-top: 1px solid var(--primary-200);
    display: flex;
    align-items: start;
    gap: 20px var(--con-gap);
    padding: 40px 0;
}

.service-con .item-title {
    flex: 0 0 140px;
    font-size: var(--ft22);
}

.service-con .item-list li {
    list-style: disc;
    color: var(--ft-sub);
    font-size: var(--ft16);
}

.service-con:last-child {
    background: var(--gray-500);
}

.service-con:last-child .con-title,
.service-con:last-child .item-title {
    color: white;
}

.service-con:last-child .item-list li {
    color: var(--primary-100);
}

@media screen and (max-width: 1200px) {
    .consultation_sec .con-wrap {
        --gap: 30px;
    }

    .general_sec .con-title {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 960px) {

    /* 분양상담 */
    .radio_group {
        gap: 10px;
    }

    .form_title {
        margin-bottom: 14px;
    }

    /* 장례절차 */
    /* overview_sec */
    .overview_sec .con-title {
        margin-bottom: 14px;
    }

    .overview_sec .sec-header {
        padding: 0 30px;
        margin-bottom: var(--con-gap);
    }

    .overview_sec .sec-title .split {
        display: flex;
        flex-wrap: wrap;
        opacity: 1;
        gap: 0;
        opacity: 1;
        transition: unset;
    }

    /* consultation_sec */
    .consultation_sec .con-wrap {
        --gap: 20px;
    }
    .consultation_sec .last .con-icon {
        width: 90px;
        height: 90px;
    }
    .consultation_sec .last .con-box {
        grid-template-columns: 1fr 1fr;
    }

    /* general_sec */
    .general_sec .inner {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: var(--con-gap) 40px;
    }

    .general_sec .i_r,
    .general_sec .i_l {
        display: flex;
        flex-direction: column;
        gap: var(--con-gap);
    }

    .general_sec .i_l {
        top: 100px;
        gap: 40px;
    }

    .general_sec .visual-wrap {
        grid-row: 2;
    }

    .general_sec .text_list {
        grid-column: 2;
        margin-top: 50vh;
    }

    .general_sec .sec-title {
        margin-bottom: 30px;
    }

    .general_sec .sec-sub_title {
        margin-bottom: var(--con-gap);
    }

    /* religion_sec */
    .religion_sec .con-header_wrap {
        padding: 0 40px;
    }   
    .religion_sec .con-title {
        font-size: var(--ft24);
    }
    .procedure-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .procedure-cards .card {
        padding: 40px;
    }

    .procedure-cards .card:nth-child(3n) {
        border-width: 1px;
    }

    .procedure-cards .card:nth-child(n+4) {
        border-bottom-width: 1px;
    }

    .procedure-cards .card:nth-child(n+5) {
        border-bottom-width: 0;
    }

    .procedure-cards .card:nth-child(3n) {
        border-right-width: 1px;
    }

    .procedure-cards .card:nth-child(2n) {
        border-right-width: 0;
    }

    /* service_sec */
    .service_sec {
        padding: var(--sec-gap) 0;
    }
    .service_sec .inner {
        display: flex;
        flex-direction: column-reverse;
    }
    .service_sec .sec-header {
        padding: 0;
        position: static;
    }
    .service_sec .con-wrap {
        padding: 0;
        position: relative;
        z-index: 1;
    }
    .service-con .item-title {
        flex: 0 0 100px;
    }
}

@media screen and (max-width: 600px) {

    /* 분양상담 */
    .radio_group {
        gap: 10px;
    }

    .form_bot {
        flex-direction: column;
        margin-top: 40px;
    }

    .btn-submit {
        width: 100%;
    }

    /* 장례절차 */
    /* overview_sec */
    .overview_sec .sec-title {
        font-size: var(--ft28);
    }

    .overview_sec .con-wrap {
        flex-direction: column;
        align-items: center;
        padding: 0 40px;
    }

    .overview_sec .con {
        width: 100%;
        padding: 30px 0;
        border-bottom: 1px solid #ffffff50;
        border-right: 0;
    }

    /* consultation_sec */
    .consultation_sec .con-wrap {
        --gap: 10px;
    }

    .consultation_sec .con-icon {
        margin-bottom: 30px;
    }

    .consultation_sec .con-num {
        margin-bottom: 20px;
    }

    .consultation_sec .con-title {
        margin-bottom: 10px;
    }

    .consultation_sec .con-num .num {
        width: 32px;
    }
    
    .consultation_sec .last .con-box {
        grid-template-columns: 1fr;
    }
    .consultation_sec .con-visual {
        min-height: unset;
        aspect-ratio: 16 / 9;
    }

    /* general_sec */
    .general_sec .inner {
        grid-template-columns: 1fr;
    }

    .general_sec .i_l {
        position: static;
    }

    .general_sec .sec-sub_title {
        margin-bottom: 0;
    }

    .general_sec .date-wrap {
        display: none;
    }

    .general_sec .visual-wrap {
        display: none;
    }

    .general_sec .text_list {
        margin-top: 0;
    }

    .general_sec .text_box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
        padding: 0 10px;
    }

    .general_sec .con-title {
        font-size: var(--ft20);
        font-weight: var(--semi-bold);
    }

    /* religion_sec */
    .religion_sec .con-body {
        padding-top: var(--con-gap);
    }
    .procedures_box .visual-con {
        display: block;
        margin-bottom: var(--con-gap);
        aspect-ratio: 1.2 / 1;
    }
    .procedures_box .date {
        display: flex;
    }
    .procedure-cards {
        grid-template-columns: 1fr;
    }
    .procedure-cards .card {
        border-right-width: 0;
        padding: 20px 10px;
    }
    .procedure-cards .card:nth-child(3n) {
        border-right-width: 0;
    }
    .procedure-cards .card:nth-child(n+5) {
        border-bottom-width: 1px;
    }
    .procedure-cards .card:last-child {
        border-bottom-width:0;
    }
    .procedure-cards .card .card-num {
        margin-bottom: 20px;
        font-size: var(--ft32);
    }
    .procedure-cards .card .card-title {
        font-size: var(--ft20);
        font-weight: var(--semi-bold);
        margin-bottom: 10px;
    }
    /* service_sec */
    .service-con {
        padding: 40px;
    }
   
    .service_sec .sec-bg {
        height: 100dvh;
    }

    /* 공지사항 */
    .control_form {
        width: 100%;
    }

    .search-input_box {
        width: 100%;
    }

    .board-control {
        margin-bottom: 20px;
        flex-direction: column-reverse;
        align-items: start;
    }

    .notice-header {
        padding: 16px;
        gap: 10px;
    }

    .notice-date {
        width: clamp(50px, 8%, 100px);
    }

    i.icon.notice-icon {
        display: none;
    }

    .notice-date .ym {
        font-size: var(--ft14);
    }

    .notice-date .d {
        font-size: var(--ft18);
    }

    .notice-title {
        padding-right: 10px;
    }

    .notice-item.new_notice .notice-title::before {
        left: -3px;
    }
  
  
}
@media screen and (max-width: 400px) {
    .service-con {
        gap: var(--con-gap);
        padding: 30px;
    }
    .service-con .con-item {
        flex-direction: column;
        padding: 30px 0;
    }
    .service-con .item-title {
        flex:0 ;
    }
    .service-con .item-list {
        padding-left: 16px;
    }
    
}