@charset "utf-8";

body.sub {
    color: #818181;
    font-size: var(--font-size_18);

    /* 섹션 공통 */
    .inner {
        width: 1400px;
        margin: 0 auto;
    }

    @media (max-width:1400px) {

        .inner {
            width: auto;
            margin: 0 5%
        }
    }



    .section-title {
        text-align: center;
    }

    .section-title p {
        font-family: var(--main-font);
        font-size: var(--font-size_22);
        margin-bottom: 20px;
        color: var(--main-color);
    }

    .section-title h2 {
        font-family: var(--main-font);
        font-size: var(--font-size_34);
        font-weight: 500;
        margin-bottom: 50px;
        color: #222222;

        >span {
            color: var(--main-color);
        }
    }

    .section-title .tit-line {
        display: block;
        width: 100%;
        height: 1px;
        background-color: #c1c1c1;
        margin: 50px 0 80px;
    }

    @media (max-width:1024px) {
        .section-title p {
            margin-bottom: 10px;
        }

        .section-title h2 {
            margin-bottom: 30px;
        }

        .section-title .tit-line {
            margin: 30px 0 50px;
        }
    }

    @media (max-width:768px) {

        .section-title p {
            margin-bottom: 10px;
        }

        .section-title h2 {
            margin-bottom: 10px;
        }

        .section-title .tit-line {
            margin: 20px 0 40px;
        }
    }


    /* 메인비주얼 */
    .main_visual {
        width: 100%;
        position: relative;

        >img {
            width: 100%;
        }
    }

    .main_visual .txt {
        position: absolute;
        font-family: var(--main-font);
        top: 50%;
        left: 20%;
        color: #fff;
    }

    .main_visual .txt h1 {
        font-size: var(--font-size_48);
        margin: 20px 0;
        font-weight: 500;
        letter-spacing: -3px;
    }

    .main_visual .txt p {
        font-family: var(--main-font);
        font-size: var(--font-size_26);
        font-weight: 200;
        letter-spacing: 2px;
    }

    @media (max-width:1024px) {
        .main_visual .txt h1 {
            margin: 10px 0;
        }

        .main_visual .txt {
            top: 35%;
            left: 10%
        }
    }

    @media (max-width:768px) {
        .main_visual {
            height: 100vw;

            >img {
                width: auto;
                transform: translateX(-30%);
                height: 100vw;
            }
        }

        .main_visual .txt {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 100%;
        }
    }



    /* specialty */
    .specialty {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
        text-align: center;
    }

    .specialty-container {
        display: flex;
        justify-content: space-between;
    }

    .specialty-item {
        margin-top: 3%;
        width: 32%;
    }

    .specialty-item h3 {
        padding: 10px 0;
        font-size: var(--font-size_22);
        font-weight: 500;
        color: var(--main-color);
        border-top: 1px solid var(--main-color);
        border-bottom: 1px solid var(--main-color);
        margin: 0 10%;
    }

    .specialty-item p {
        background: #fdf8f3;
        border-radius: 150px;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    @media (max-width: 1024px) {
        .specialty-item h3 {
            padding: 8px 0;
        }

        .specialty-item p {
            border-radius: 70px;
            height: 150px;
        }
    }

    @media (max-width: 768px) {

        .specialty-container {
            display: block;
        }

        .specialty-item {
            margin-top: 20px;
            width: 100%;
        }

        .specialty-item h3 {
            padding: 8px 0;
        }

        .specialty-item p {
            background: #fdf8f3;
            border-radius: 70px;
            height: 150px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
    }




    /* 시그니처 */
    .signature {
        background: url(../img/sub/signature/signature_bg.jpg) no-repeat center/cover;
        padding: 150px 0;
        margin-bottom: var(--section-padding);
    }

    .signature .container {
        text-align: center;

        >.img {
            margin: 80px 0;

            img {
                width: 100%;
            }
        }
    }


    @media (max-width: 1024px) {
        .signature {
            background: url(../img/sub/signature/signature_bg.jpg) no-repeat center/cover;
            padding: 100px 0;
        }

        .signature .container {
            text-align: center;

            >.img {
                margin: 60px 0;

                img {
                    width: 100%;
                }

            }
        }
    }

    @media (max-width: 768px) {
        .signature {
            background: url(../img/sub/signature/signature_bg.jpg) no-repeat center/cover;
            padding: 70px 0;
        }

        .signature .container {
            text-align: center;

            >.img {
                margin: 40px 0;

                img {
                    width: 100%;
                }

            }
        }
    }



    /* 장비 */
    .equipment {
        padding-bottom: var(--section-padding);
    }

    .equipment .container:nth-of-type(odd) {
        display: flex;
        gap: 70px;
        margin-bottom: 50px;
    }

    .equipment .container:nth-of-type(even) {
        display: flex;
        gap: 70px;
        margin-bottom: 50px;
        justify-content: right;

        .img {
            order: 2;
        }

        .txt {
            order: 1;
            text-align: right;

            >.tit-line {
                margin: 30px 0 30px auto;
            }

            >.effect {
                display: flex;
                gap: 10px;
                justify-content: right;
            }
        }
    }

    .equipment .container .img {
        width: 50%;
    }

    .equipment .container .img img {
        width: 100%;
    }

    .equipment .container .txt {
        display: flex;
        flex-direction: column;
        justify-content: center;

        >h3 {
            color: var(--main-color);
            font-size: 34px;
            font-family: var(--main-font);
            font-weight: 500;
        }

        >.tit-line {
            display: block;
            width: 50%;
            height: 1px;
            background-color: var(--main-color);
            margin: 30px 0;
        }

        >p {
            margin-bottom: 50px;
        }

        >.effect {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;

            p {
                padding: 10px 40px;
                color: #fff;
                font-size: 20px;
                font-weight: 500;
                background: var(--main-color);
            }
        }
    }

    @media (max-width: 1024px) {
        .equipment .container:nth-of-type(odd) {
            display: flex;
            gap: 70px;
            margin-bottom: 50px;
        }

        .equipment .container:nth-of-type(even) {
            display: flex;
            gap: 70px;
            margin-bottom: 50px;
            justify-content: right;

            .img {
                order: 2;
            }

            .txt {
                order: 1;
                text-align: right;

                >.tit-line {
                    margin: 30px 0 30px auto;
                }

                >.effect {
                    display: flex;
                    gap: 10px;
                    justify-content: right;
                }
            }
        }

        .equipment .container .img {
            width: 50%;
        }

        .equipment .container .img img {
            width: 100%;
        }

        .equipment .container .txt {
            >h3 {
                font-size: var(--font-size_26);
            }

            >.tit-line {
                display: block;
                width: 50%;
                height: 1px;
                background-color: var(--main-color);
                margin: 30px 0;
            }

            >p {
                margin-bottom: 50px;
            }

            >.effect {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;

                p {
                    padding: 5px 20px;
                    color: #fff;
                    font-size: 1.6rem;
                    font-weight: 500;
                    background: var(--main-color);
                }
            }
        }
    }

    @media (max-width: 768px) {
        .equipment .container:nth-of-type(odd) {
            display: block;
            margin-bottom: 50px;
        }

        .equipment .container:nth-of-type(even) {
            display: block;
            gap: 70px;
            margin-bottom: 50px;
            justify-content: right;

            .img {
                order: 1;
            }

            .txt {
                order: 2;
                text-align: left;

                >.tit-line {
                    margin: 30px 0 30px auto;
                }

                >.effect {
                    display: flex;
                    gap: 10px;
                    justify-content: left;
                }
            }
        }

        .equipment .container .img {
            width: 100%;
        }

        .equipment .container .img img {
            width: 100%;
        }

        .equipment .container .txt {
            display: flex;
            flex-direction: column;
            justify-content: center;

            >h3 {
                color: var(--main-color);
                font-size: 2rem;
                font-family: var(--main-font);
                font-weight: 500;
                padding-top: 15px;
            }

            >.tit-line {
                display: block;
                width: 100%;
                height: 1px;
                background-color: var(--main-color);
                margin: 20px 0;
            }

            >p {
                margin-bottom: 20px;
            }

            >.effect {
                display: flex;
                gap: 5px;
                flex-wrap: wrap;

                p {
                    padding: 5px 20px;
                    color: #fff;
                    font-size: 1.4rem;
                    font-weight: 500;
                    background: var(--main-color);
                }
            }
        }
    }



    /* 마크뷰 */
    .markvu {
        padding-bottom: var(--section-padding);
    }

    .markvu .container_1 {
        display: flex;
        gap: 70px;
        margin-bottom: 100px;

        .img {
            img {
                width: 100%;
            }
        }

        .section-title {
            display: flex;
            justify-content: center;
            flex-direction: column;
            text-align: left;
        }
    }

    .markvu .container_2 {
        display: flex;
        gap: 20px;
        text-align: center;

        >div {
            width: calc((100% - 60px)/4);

            >p {
                font-size: var(--font-size_22);
                padding: 10px;
                border-top: 1px solid var(--main-color);
                border-bottom: 1px solid var(--main-color);
                color: var(--main-color);
                margin-bottom: 20px;
                font-weight: 500;
            }

            .img {
                img {
                    width: 100%;
                }
            }

            .effect {
                margin-top: 20px;
                padding: 30px 10px;
                background: #f6f2ee;
                line-height: 2;
            }
        }
    }

    @media (max-width: 1024px) {
        .markvu .container_1 {
            display: flex;
            gap: 5%;
            margin-bottom: 70px;

            .img {
                width: 50%;

                img {
                    width: 100%;
                }
            }

            .section-title {
                display: flex;
                justify-content: center;
                flex-direction: column;
                text-align: left;
                width: 45%;
            }
        }


        .markvu .container_2 {
            display: flex;
            gap: 20px;
            text-align: center;

            >div {
                width: calc((100% - 60px)/4);

                >p {
                    padding: 5px;
                    border-top: 1px solid var(--main-color);
                    border-bottom: 1px solid var(--main-color);
                    color: var(--main-color);
                    margin-bottom: 10px;
                    font-weight: 500;
                }

                .img {
                    img {
                        width: 100%;
                    }
                }

                .effect {
                    margin-top: 10px;
                    padding: 20px 10px;
                    background: #f6f2ee;
                    line-height: 2;
                }
            }
        }
    }

    @media (max-width: 768px) {
        .markvu .container_1 {
            display: block;
            margin-bottom: 50px;

            .img {
                width: 100%;

                img {
                    width: 100%;
                }
            }

            .section-title {
                display: flex;
                justify-content: center;
                flex-direction: column;
                text-align: left;
                width: 100%;
                padding-top: 15px;
            }
        }


        .markvu .container_2 {
            display: flex;
            gap: 20px;
            text-align: center;
            flex-wrap: wrap;

            >div {
                width: calc((100% - 20px)/2);

                >p {
                    padding: 5px;
                    border-top: 1px solid var(--main-color);
                    border-bottom: 1px solid var(--main-color);
                    color: var(--main-color);
                    margin-bottom: 10px;
                    font-weight: 500;
                }

                .img {
                    img {
                        width: 100%;
                    }
                }

                .effect {
                    margin-top: 0px;
                    padding: 20px 10px;
                    background: #f6f2ee;
                    line-height: 2;
                }
            }
        }
    }




    /* 프로세스*/
    .process {
        margin: 0 auto;
        padding-bottom: var(--section-padding);
        text-align: center;
    }

    .process-container {
        display: flex;
        justify-content: center;
        gap: 70px;
    }

    .process-step {
        background: #fdf8f3;
        padding: 30px 30px 50px 30px;
        width: calc((100% - 140px)/3);
    }

    .process-step img {
        width: 100%;
        margin: 20px 0 10px 0;
    }

    .process-step h3 {
        font-size: 3rem;
        font-weight: 500;
        margin: 3rem auto;
        color: var(--main-color);
        margin-bottom: 1.5rem;
        text-decoration: underline;
        text-underline-offset: 18px;
        font-family: var(--main-font);
    }

    .process-step .line {
        display: block;
        width: 95%;
        height: 1px;
        background-color: var(--main-color);
        margin: 25px auto;
    }

    .process-step h4 {
        font-family: var(--main-font);
        font-size: 2.8rem;
        font-weight: 600;
        margin: 30px 0;
        color: var(--main-color);
    }

    @media (max-width: 1024px) {

        .process-container {
            display: flex;
            justify-content: center;
            gap: 2%;
        }

        .process-step {
            background: #fdf8f3;
            padding: 15px 15px 30px;
            width: 32%;
        }

        .process-step img {
            width: 100%;
            margin: 40px 0 10px 0;
        }

        .process-step h3 {
            font-size: 2.2rem;
            font-weight: 500;
            margin: 3rem auto;
            color: var(--main-color);
            margin-bottom: 1.5rem;
            text-decoration: underline;
            text-underline-offset: 10px;
            font-family: var(--main-font);
        }

        .process-step .line {
            display: block;
            width: 95%;
            height: 1px;
            background-color: var(--main-color);
            margin: 25px auto;
        }

        .process-step h4 {
            font-family: var(--main-font);
            font-size: 2.2rem;
            font-weight: 600;
            margin: 20px 0;
            color: var(--main-color);
        }
    }

    @media (max-width: 768px) {
        .process-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .process-step {
            background: #fdf8f3;
            padding: 15px 15px 30px;
            width: 100%;
        }

        .process-step img {
            width: 80%;
            margin: 20px auto;
        }

        .process-step h3 {
            font-size: 2.2rem;
            font-weight: 500;
            margin: 0;
            color: var(--main-color);
            margin-bottom: 1.5rem;
            text-decoration: underline;
            text-underline-offset: 10px;
            font-family: var(--main-font);
        }

        .process-step .line {
            display: block;
            width: 95%;
            height: 1px;
            background-color: var(--main-color);
            margin: 10px auto;
        }

        .process-step h4 {
            font-family: var(--main-font);
            font-size: 2.2rem;
            font-weight: 600;
            margin: 20px 0;
            color: var(--main-color);
        }
    }



    /* 주의사항 */
    .notice {
        position: relative;
        padding-bottom: var(--section-padding);
        margin: 0 auto;
    }

    .notice::before {
        clear: both;
        content: "";
        display: block;
        position: absolute;
        bottom: 5%;
        right: -5%;
        width: 500px;
        height: 500px;
        background: url(/img/simbol.png) no-repeat 100% / 100%;
        opacity: 0.6;
    }

    .notice-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 0 5%;
    }

    .notice-item {
        display: flex;
        align-items: center;
        background: #faf7f3;
        width: 100%;
        padding: 15px 45px;
        font-size: var(--font-size_18);
        line-height: 2;
    }

    .notice-num {
        font-family: var(--main-font);
        flex-shrink: 0;
        width: 40px;
        font-weight: 600;
        color: var(--main-color);
        font-size: var(--font-size_26);
    }

    .notice-text {
        flex: 1;
        text-align: center;
        line-height: 1.5;
    }

    .notice-footer {
        font-size: 13px;
        text-align: right;
        margin-top: 20px;
        color: #777;
    }

    @media (max-width: 1024px) {
        .notice {
            position: relative;
            padding-bottom: var(--section-padding);
            margin: 0 auto;
        }

        .notice::before {
            clear: both;
            content: "";
            display: block;
            position: absolute;
            bottom: 5%;
            right: -5%;
            width: 500px;
            height: 500px;
            background: url(/img/simbol.png) no-repeat 100% / 100%;
            opacity: 0.6;
        }

        .notice-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            padding: 0 5%;
        }

        .notice-item {
            display: flex;
            align-items: center;
            background: #faf7f3;
            width: 100%;
            padding: 15px 45px;
            font-size: var(--font-size_18);
            line-height: 2;
        }

        .notice-num {
            font-family: var(--main-font);
            flex-shrink: 0;
            width: 40px;
            font-weight: 600;
            color: var(--main-color);
            font-size: var(--font-size_26);
        }

        .notice-text {
            flex: 1;
            text-align: center;
        }

        .notice-footer {
            font-size: 13px;
            text-align: right;
            margin-top: 20px;
            color: #777;
        }
    }

    @media (max-width: 768px) {
        .notice {
            position: relative;
            padding-bottom: var(--section-padding);
            margin: 0 auto;
        }

        .notice::before {
            clear: both;
            content: "";
            display: block;
            position: absolute;
            bottom: 5%;
            right: -5%;
            width: 500px;
            height: 500px;
            background: url(/img/simbol.png) no-repeat 100% / 100%;
            opacity: 0.6;
        }

        .notice-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 100%;
            padding: 0 5%;
        }

        .notice-item {
            display: flex;
            align-items: center;
            background: #faf7f3;
            width: 100%;
            padding: 12px 25px;
            font-size: var(--font-size_18);
            line-height: 2;
        }

        .notice-num {
            font-family: var(--main-font);
            flex-shrink: 0;
            width: 40px;
            font-weight: 600;
            color: var(--main-color);
            font-size: var(--font-size_26);
            margin-bottom: 5px;
        }

        .notice-text {
            flex: 1;
            text-align: left;
        }

        .notice-footer {
            font-size: 13px;
            text-align: right;
            margin-top: 20px;
            color: #777;
        }
    }




    /* 비급여항목 */
    #price {
        position: relative;
        margin: 5rem auto 0;
    }

    #price .title h2 {
        font-size: 50px;
        font-weight: 800;
        letter-spacing: 1.5px;
        color: #4b280b;
        text-align: center;
        margin-bottom: 1rem;
    }

    .price {
        width: 1200px;
        margin: 0 auto;
    }


    .price p {
        width: 95%;
        font-size: 14px;
        line-height: 1;
        text-align: right;
        margin: 80px auto 0 auto;
    }

    .tg {
        width: 90%;
        border-collapse: collapse;
        border-spacing: 0;
        color: #444;
        margin: 4rem auto;
    }

    .tg td {
        padding: 1rem 0.5rem;
        border: 1px solid #111;
        overflow: hidden;
        word-break: normal;
        vertical-align: middle;
    }

    .tg th {
        font-size: var(--font-size_18);
        font-weight: 500;
        text-align: center;
        padding: 2rem 0;
        border: 1px solid #111;
        overflow: hidden;
        word-break: normal;
        background-color: #f6f2ee;
        vertical-align: top;
    }

    .td_tit {
        font-size: var(--font-size_18);
        font-weight: 500;
        text-align: center;
        background-color: #f6f2ee;
    }

    .td_pri {
        text-align: center;
    }


    @media all and (max-width: 830px) {
        #price {
            margin-top: 65px;
        }

        .price {
            width: 100%;
        }

        .price p {
            font-size: 12px;
            margin: 1rem 0;
        }

        .tg {
            margin: 1rem auto 2rem;
        }

        .tg th {
            padding: 1rem 0;
            border: 0.5px solid #111;
            vertical-align: middle;
        }

        .tg td {
            padding: 0.5rem 3px;
            border: 0.5px solid #111;
        }

    }
}


@media (max-width:1024px) {

    body.sub {
        font-size: 1.6rem;
    }

}



.about-mt {
    position: absolute;
    font-family: var(--main-font);
    top: 60%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);

    >h1 {
        font-size: var(--font-size_48);
        margin: 20px 0;
        font-weight: 500;
        letter-spacing: -3px;
        color: #876445;
    }

    >p {
        font-family: var(--main-font);
        font-size: var(--font-size_26);
        font-weight: 200;
        letter-spacing: 2px;
        color: #876445;
    }
}

.about-sec01 {
    margin: 10% auto;
}

.about-container {
    margin: 0 auto;
    text-align: center;
}

.about-sec02 {
    margin: 0 auto 10%;
}

.staff {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 10% auto;
}

.staff-txt {
    width: 50%;
    padding: 5rem;

    >h2 {
        font-family: "Noto Serif KR", serif;
        font-size: var(--font-size_34);
        font-weight: 500;
        margin-bottom: 2rem;
        color: #222222;

        >span {
            color: #876445;
        }
    }

    >p {
        margin: 2rem 0;
    }
}

.R {
    text-align: right;
}

.R::before {
    clear: both;
    content: "";
    display: block;
    position: absolute;
    bottom: 1%;
    left: -30%;
    width: 500px;
    height: 500px;
    background: url(../img/sub/signature/about_bg_logo.png) no-repeat 100% / 100%;
    z-index: -1;
}

.L::before {
    clear: both;
    content: "";
    display: block;
    position: absolute;
    bottom: 1%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: url(../img/sub/signature/about_bg_logo.png) no-repeat 100% / 100%;
    z-index: -1;
}

.staff-img {
    width: 50%;
    padding: 10rem;

    >img {
        width: 100%;
    }
}

.yeo::before {
    clear: both;
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    /* display: block; */
    width: 80%;
    height: 100%;
    background-color: #faf7f3;
    z-index: -1;
}

.kim::before {
    clear: both;
    content: "";
    position: absolute;
    top: 0;
    left: 70%;
    /* display: block; */
    width: 80%;
    height: 100%;
    background-color: #faf7f3;
    z-index: -1;
}

.con-line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #876445;
    margin: 50px 0;
}

@media (max-width: 768px) {
    .about-mt {
        top: 50%;
    }

    .staff {
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .kim {
        order: 1;
    }

    .R {
        order: 2;
    }

    .staff-img {
        width: 100%;
        padding: 2rem;
    }

    .staff-txt {
        width: 100%;
        padding: 0;

        >h2 {
            margin-bottom: 1rem;
        }

        >p {
            margin: 1rem 0;
        }
    }

    .R::before {
        bottom: 1%;
        left: -30%;
        width: 300px;
        height: 300px;
    }

    .L::before {
        bottom: -3%;
        right: -30%;
        width: 300px;
        height: 300px;
    }

    .yeo::before {
        top: 0;
        left: -10%;
        width: 100%;
        height: 50%;
    }

    .kim::before {
        top: 0;
        left: -10%;
        width: 100%;
        height: 50%;
    }

}


/*  sub bfaf 전후사진 서브  */
.bfaf-wrap {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.bfaf-img {
    display: block;
    max-width: 1400px;
    margin: 0 auto 10%;
}

.bfaf-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3칸 */
    gap: 10px;
    width: 100%;
    max-width: 1400px;
    margin: 130px auto 130px;
    text-align: center;
}

.bfaf-tabs a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    border: 1px solid #e5e5e5;
    font-size: var(--font-size_20);
    color: #876445;
}

.bfaf-tabs a:last-child {
    margin-right: 0;
}

.bfaf-tabs a.active {
    background: #876445;
    color: #fff;
    border-color: #876445;
}

.bfaf-full-img {
    width: 100%;
    display: block;
}

.title {
    display: block;
    width: 400px;
    text-align: center;
    padding: 12px 30px;
    background: #876445;
    color: #fff;
    border-radius: 40px;
    font-size: var(--font-size_28);
    margin: 0 auto 100px;
}

.bfaf_notice {
    max-width: 1400px;
    text-align: center;
    font-size: var(--font-size_18);
    color: #818181;
    margin: 0 auto 10%;
    padding: 60px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.after-tabs a.active {
    background: #876445;
    color: #fff;
    border-color: #876445;
}


@media (max-width: 1200px) {
    .bfaf-img {
        width: 90%;
    }

    .bfaf-tabs {
        max-width: none;
        width: 90%;
    }

    .bfaf_notice {
        max-width: none;
        width: 90%;
    }

}


@media (max-width: 768px) {}