/* tablet vertical */
@media screen and (min-width: 961px) and (max-width: 1180px){
    .hide-on-pc {
        display: none;
    }
    .w-80-center{
        width: 90% !important;
    }

    .container {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .one-container .site-content {
        padding: 0 !important;
    }

    .font-14px {
    font-size: clamp(10px, 0.73vw, 14px);
    }

    .font-16px {
    font-size: clamp(12px, 0.83vw, 16px);
    }

    .font-18px {
    font-size: clamp(13px, 0.90vw, 18px);
    }

    .font-20px {
    font-size: clamp(15px, 1.04vw, 20px);
    }

    .font-24px {
    font-size: clamp(18px, 1.25vw, 24px);
    }

    .font-28px {
    font-size: clamp(20px, 1.46vw, 28px);
    }

    .font-32px {
    font-size: clamp(24px, 1.67vw, 32px);
    line-height: 1;
    }

    .font-33px {
    font-size: clamp(25px, 1.72vw, 33px);
    }

    .font-36px {
    font-size: clamp(27px, 1.88vw, 36px);
    }

    .font-44px {
    font-size: clamp(33px, 2.29vw, 44px);
    }
    .font-48px {
    font-size: clamp(29px, 2.29vw, 48px);
    }

    .font-52px {
    font-size: clamp(31px, 2.71vw, 52px);
    line-height: 1;
    }

    .font-64px {
    font-size: clamp(48px, 3.33vw, 64px);
    line-height: 1;
    }

    .font-72px {
    font-size: clamp(54px, 3.75vw, 72px);
    }

    .font-84px {
    font-size: clamp(63px, 4.38vw, 84px);
    }

    .font-100px {
    font-size: clamp(72px, 5.14vw, 100px);
    }

    .font-114px {
    font-size: clamp(86px, 5.94vw, 114px);
    }
    .font-120px {
    font-size: clamp(90px, 6.12vw, 120px);
    line-height: 1;
    }

    .font-140px {
    font-size: clamp(105px, 7.29vw, 140px);
    line-height: 1;
    }

    .font-200px {
        font-size: clamp(150px, 10.42vw, 200px);
    }

    /* !top-menu---------------------------------------------------------------------------------- */
    div#nav-header-menu {
        --gap-margin:1.5vw;

        background: #fff;
        border-bottom: 1px solid #E0E0E0;
        padding-bottom: 10px;
    }

    .nav_pc{
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: flex-end;
        padding: 2rem 0 0.5rem;
        gap: 1rem;
    }
    .menu-flex{
        display: flex;
        gap: var(--gap-margin);
        align-items: center;
    }

    .menu-flex ul{
        display: flex;
        gap: var(--gap-margin);
        justify-content: space-around;
        padding: 0;
        margin:  0 0 1rem 0;
        list-style: none;

        li a{
            font-size: clamp(14px, 1vw, 18px);
            font-weight: 400;
            color: var(--color-dark);
        }
        
    }
    .nav_social {
        margin: 0 0 1rem 0;
    }

    li.current_page_item a{
        font-weight: 500 !important;
        color: var(--pp-dark) !important;
    }
    /* FOUR */

    .all_link{
        display: flex;
        justify-content: flex-end;
        margin: 1rem 0;
        a{
            gap: 10px;
            align-items: center;
        }
    }

    .all_link a:hover .line:nth-child(1),
    .all_link a:hover .line:nth-child(3){
    width: 21px;
    }

    .all_link a:hover .line:nth-child(1){
    -webkit-transform: translateX(8px) rotate(45deg);
    -ms-transform: translateX(8px) rotate(45deg);
    -o-transform: translateX(8px) rotate(45deg);
    transform: translateX(8px) rotate(45deg);
    }

    .all_link a:hover .line:nth-child(3){
    -webkit-transform: translateX(8px) rotate(-45deg);
    -ms-transform: translateX(8px) rotate(-45deg);
    -o-transform: translateX(8px) rotate(-45deg);
    transform: translateX(8px) rotate(-45deg);
    }

    /* !top-menu---------------------------------------------------------------------------------- */


    /* !home ----------------------------------------------------------------------------------*/
    /* *start main_banner*/

    section.main_banner{
        --padding-banner: 100px;
        --max-h: 976px;
        --verticle: -16px;
        --horizon: -32px;

        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        padding: var(--padding-banner) 0;
        max-height: var(--max-h);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        .w-80-center{
            position: relative;
        }

        .title_box{
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 60%;
        }
        .slogan_text{
            --quote-width: 48px;
            --qoute-height: 40px;
            position: relative;

            &::before{
                content: '';
                position: absolute;
                top: var(--verticle);
                left: 0;
                z-index: 10;
                background-image: url(./assets/icons/quote_before.svg);
                background-position: center;
                background-repeat: no-repeat;
                width: var(--quote-width);
                height: var(--qoute-height);
            }

            p:nth-child(1){
                margin-left: 4rem;
            }

            span:nth-last-child(1){
                position: relative;
                padding-right: 4rem;

                &::after{
                    content: '';
                    position: absolute;
                    bottom: var(--verticle);
                    right: var(--horizon);
                    z-index: 10;
                    background-image: url(./assets/icons/quote_after.svg);
                    background-position: center;
                    background-repeat: no-repeat;
                    width: var(--quote-width);
                    height: var(--qoute-height);
                }
            }
        }

        .text-title{
            font-family: "Montserrat";
            font-size: clamp(65px, 6.9vw, 120px);
            font-weight: 600;
            background-image: linear-gradient(93.95deg, #5C5C5C 16.1%, #1A1A1A 93.72%);
            -webkit-background-clip: text;
            background-clip: text; 
            -webkit-text-fill-color: transparent; 
            color: transparent
        }
    }

    .windown_card{
        border-radius: 10px;
        padding: 1rem;
        background: #FFFFFFCC;
        box-shadow: 0px 4px 4px 0px #00000040;
        width: 90%;
    }
    .windown_header{
        border-bottom: 1px solid #DBDBDB;
        padding: 0 0 1rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;

        img{
            max-width: 128px;
        }
    }
    .windown_content{
        padding: 1rem;

        .windown_content_bt{
            margin-top: 1rem;
            display: flex;
            gap: 1.5rem;
            align-items: center;
            justify-content: center;
        }
    }

    .bt_link{
        padding: 0.5rem 0.8rem;
        display: inline-block;
        font-size: clamp(11px, 1vw, 18px);
        font-weight: 400;
        transition: all 0.5s ease-in-out;
        flex-grow: 1;
        max-width: 220px;
        text-align: center;
    }
    .purple-bt{
        color: #fff;
        background: var(--pp-dark);
        &:hover{
            color: #58FF00;
            transition: all 0.5s ease-in-out;
        }
    }

    .light-bt{
        color: #fff;
        background: #2b2b2b83;
        text-transform: uppercase;
        &:hover{
            color: #fff;
            transition: all 0.5s ease-in-out;
        }
    }
    .gray-bt{
        color: #fff;
        background: #5D5D5D;
        text-transform: uppercase;
        &:hover{
            color: #fff;
            transition: all 0.5s ease-in-out;
        }
    }

    .gray_green-bt{
        color: #58FF00;
        background: #5D5D5D;
        text-transform: uppercase;
        &:hover{
            color: #fff;
            transition: all 0.5s ease-in-out;
        }
    }

    .dark-bt{
        background:#2B2B2B;
        color: #58FF00;
        &:hover{
            color: #fff;
            transition: all 0.5s ease-in-out;
        }
    }
    .fb-bt{
        background:#0282FF;
        color: #fff;
        &:hover{
            color: #fff;
            transition: all 0.5s ease-in-out;
        }
    }

    /* *end main_banner*/

    /* *start service_icon*/

    section.service_icon{
        padding: 5rem 0 1rem;

        .service_icon_grid{
            display: grid;
            grid-template-columns: repeat( 7 , 1fr);
            gap: 1rem;
            align-items: center;

            .service_icon_item{
                padding: 0.8rem;
                border: 1px solid #D2D2D2;
                transition: all 0.5s ease-in-out;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;

                &:hover{
                    border: 1px solid #8E348F;
                    transition: all 0.5s ease-in-out;
                }
            }
        }
    }

    /* *end service_icon/

    /* *start about_home*/

    section.about_home{
        padding: 4rem 0 1rem;
    }

    .about_home_grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;

        .about_home_info{
            padding: 1rem 0.0rem 1rem 0.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;

            h2{
                background: linear-gradient(3deg, #8E348F 32.73%, #16091d 100%);
                -webkit-background-clip: text;
                background-clip: text; 
                -webkit-text-fill-color: transparent; 
                color: transparent;
                line-height: 1;
                margin-bottom: 0;
            }
        }
    }

    /* *end about_home*/

    /* *start standad*/

    section.standard{
        --standard-width:100%;
        --bar-height:240px;
        --margin-top:30px;
        padding: 4rem 0rem 5rem;
        position: relative;
    }
    .standard_grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        align-items: center;

        .standard_card.fixed{
            background: linear-gradient(45.71deg, #919191 -0.02%, #FEFEFE 101.25%);
            padding: 2.3rem 10%;
            /* ?margin-top: var(--margin-top); */
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            gap: 1rem;
            position: relative;
            width: var(--standard-width);
            height: var(--standard-width);
            border-radius: 10px;
            overflow: hidden;

            &::after{
                content: '';
                position: absolute;
                width: 30px;
                height: 240px;
                top: calc((var(--standard-width) - var( --bar-height))/2);
                right: -6px;
                background: #7D7D7D;
                box-shadow: 7px 4px 4px 0px #00000040 inset;
                border-radius: 10px;
            }
        }
    }

    .standard_swiper{
        max-width: 100% !important;

        /* ?.swiper-wrapper{
            padding-top: var(--margin-top);
        } */
    }
    .standard_swiper--one{
        width: var(--standard-width) !important;
    }

    .standard_swiper_card{
        aspect-ratio: 1 / 1;
        width: var(--standard-width);
        position: relative;
        /* ?transform: translateY(0px);
        transition: all 0.5s ease-in-out; */

        img{
            border-radius: 10px;
            width: 100%;
        }

        .standard_swiper_abs{
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 1.5rem ;
        }
        .standard_swiper_text{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
    }
    a.link-circle{
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #fff;
        
        .circle{
            border-radius: 50%;
            border: 1px solid white;
            width: var(--circle-width);
            height: var(--circle-width);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            background: transparent;
            transition: all 0.5s ease-in-out;

            svg{
                opacity: 0;
                transition: all 0.5s ease-in-out;
            }
        }

        .circle.pd{
            border-radius: 50%;
            border: 1px solid var(--pp-dark);
            width: var(--circle-width);
            height: var(--circle-width);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            background: transparent;
            transition: all 0.5s ease-in-out;

            svg{
                opacity: 0;
                transition: all 0.5s ease-in-out;
            }
        }

        span{
            position: relative;
            left: calc((var(--circle-width)/2) - var(--circle-width) - 10px);
            transition: all 0.5s ease-in-out;
        }

    }

    .standard_swiper_card:hover{
        /* ?transform: translateY(-30px);
        transition: all 0.5s ease-in-out; */

        a.link-circle{
            span{
                left: 0;
                transition: all 0.5s ease-in-out;
            }

            .circle {
                background: #fff;
                transition: all 0.5s ease-in-out;
                svg{
                    opacity: 1;
                    transition: all 0.5s ease-in-out;
                }
            }
        }

    }
    .circle_bt a{
        color: var(--pp-dark);
    }

    .circle_bt:hover{
        /* ?transform: translateY(-30px);
        transition: all 0.5s ease-in-out; */

        a.link-circle{
            span{
                left: 0;
                transition: all 0.5s ease-in-out;
            }

            .circle {
                background: var(--pp-dark);
                transition: all 0.5s ease-in-out;
                svg{
                    opacity: 1;
                    transition: all 0.5s ease-in-out;
                }
            }
        }

    }

    

    /* *end standad*/

    /* *start branch*/

    section.branch{
        --standard-width:23vw;
        --margin-top:30px;
        --branch-title-height: 56px;

        background: url(./assets/banner/bg--branch.png) no-repeat center / cover;
        padding: 5rem 0 3rem;
        position: relative;
    }

    .branch_flex{
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .branch_card{
        flex: 0 0 var(--standard-width);
        padding-top: var(--margin-top);
        display: flex;
        flex-direction: column;
        gap: 1rem;

        .branch_card_title{
            
            position: relative;
            z-index: 2;

            &::after{
                content: 'MR.KLEANE';
                position: absolute;
                bottom: calc(calc(var( --branch-title-height)/ 1) - var(--branch-title-height));
                left: 0;
                z-index: -1;
                background: linear-gradient(90deg, #58FF00 0%, rgba(53, 153, 0, 0) 100%);
                -webkit-background-clip: text;
                background-clip: text; 
                -webkit-text-fill-color: transparent; 
                color: transparent;
                font-family: 'Press Start 2P';
                font-size: 5.5vw;
                opacity: 0.2;

            }

            h2{
                line-height: 1.4;
            }
            p {
                line-height: 2;
            }
        }
    }

    .branch_swiper_conteinner{
        flex-grow: 1;
        position: relative;
        z-index: 3;
        max-width: 100%;
    }

    .branch_swiper{
        max-width: 100% !important;

        .swiper-wrapper{
            padding-top: var(--margin-top);
        }
    }
    .branch_swiper--one{
        width: var(--standard-width) !important;
    }
    .branch_swiper_card{
        width: var(--standard-width);
        border-radius: 10px;
        position: relative;
        transform: translateY(0px);
        transition: all 0.5s ease-in-out;
        background: linear-gradient(156.82deg, rgba(255, 255, 255, 0.2) 6.43%, rgba(106, 45, 107, 0.2) 98.59%),
            linear-gradient(180deg, rgba(255, 255, 255, 0) 32.21%, rgba(142, 52, 143, 0.2) 89.58%);
        border: 2px solid #686868;
        box-shadow: 4px 5px 4px 0px #00000040;
        backdrop-filter: blur(20px);
        padding: 2rem 1rem;
        display: flex;
        flex-direction: column;
        gap: 10px;
        height: 377px;
        justify-content: space-between;
        
        .branch_swiper_text{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .overlay_img{
            mix-blend-mode: plus-lighter;
        }
        .contact_bt_flex{
            display: flex;
            gap: 10px;

            a.link-tel{
                border-radius: 50%;
                border: 1px solid white;
                width: var(--circle-width) !important;
                height: var(--circle-width) !important;
                display: flex;
                justify-content: center;
                align-items: center;
                background: white;
            }
        }
    }

    .branch_swiper_card:hover{
        transform: translateY(-30px);
        transition: all 0.5s ease-in-out;

        a.link-circle{
            span{
                left: 0;
                transition: all 0.5s ease-in-out;
            }

            .circle {
                background: #fff;
                transition: all 0.5s ease-in-out;
                svg{
                    opacity: 1;
                    transition: all 0.5s ease-in-out;
                }
            }
        }

    }

    .navigation_bar{
        position: relative;
        display: flex;
        align-items: center;
        gap: 1rem;
        padding-top: calc(var(--circle-width)/2);

        .branch_next{
            position: relative;
            top: 0 !important;
            margin-top: 0 !important;
            opacity: 1 !important;

            &::after{
                content: '';
                background: url(./assets/icons/arrow-right.svg) no-repeat center / 100%;
                width: var(--circle-width);
                height: var(--circle-width);
            }
        }
        .branch_pagination{
            position: relative;
            width: fit-content !important;
            bottom: 0 !important;
            display: flex;
        }
        .branch_prev{
            top: 0 !important;
            position: relative;
            margin-top: 0 !important;
            opacity: 1 !important;

            &::after{
                content: '';
                background: url(./assets/icons/arrow-left.svg) no-repeat center / 100%;
                width: var(--circle-width);
                height: var(--circle-width);
            }
        }
    }

    .cover_black{
        background: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
        height: 100%;
        width: 10vw;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 99;
    }

    /* *end branch/

    /* *start service*/

    section.service{
        position: relative;
        background: url(./assets/banner/bg--service.png) no-repeat center right / cover;
        padding: 9rem 0;
    }

    .service_grid{
        display: flex;
        gap: 1.5rem;
        flex-direction: column-reverse;

    }

    .service_card_grid{
        display: grid;
        grid-template-columns: repeat(2 , 1fr);
        gap: 1rem;
    }

    .service_card_items{
        padding: 1.5rem;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        background: #fff;
        border-radius: 10px;
        border: 2px solid #D2D2D2;
        transition: all 0.5s ease-in-out;

        &:hover{
            border: 2px solid var(--pp-dark);
            transition: all 0.5s ease-in-out;
        }

        .service_card_text{
            display: flex;
            flex-direction: column;
        }
    }

    .service_title{
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 1rem;

        p:nth-child(2){
            line-height: 1.4;
        }
    }

    /* *end service*/

    /* *start human_intel*/

    section.human_intel{
        position: relative;
        padding-top: 1.5rem;
        padding-bottom: 5rem;
    }
    .human_intel_grid{
        display: grid;
        grid-template-columns: 40% 1fr;
        gap: 1rem;
    }
    .human_intel_text{
        display: flex;
        flex-direction: column;
        gap: 1rem;

        h2{
            line-height: 1.4;
        }

        p:nth-child(3){
            letter-spacing: 0rem;
        }
    }
    .key_feature{
        margin-top: 1rem;
        
        .key_feature_grid{
            margin-top: 1rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .key_feature_items{
            background: #fff;
            border-radius: 5px;
            border: 0.5px solid #D2D2D2;
            padding: 10px;
        }
    }

    /* *end human_intel*/

    /* *start mini_banner*/

    section.mini_banner{
        padding-bottom: 5rem;
        position: relative;
    }

    .mini_banner_grid{
        display: grid;
        grid-template-columns: repeat( 2 , 1fr);
        gap: 1.5rem;
    }

    .mini_banner_bg{
        position: relative;
        /* height: 388px; */
        padding: 1rem;
        aspect-ratio: 18 / 9;

        &.m1{
            background: url(./assets/banner/bg--mini_1.png) no-repeat center / cover;
        }
        &.m2{
            background: url(./assets/banner/bg--mini_2.png) no-repeat center / cover;
        }

        .mini_banner_text{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 50%;
            height: 100%;
            justify-content: space-between;

            img{
                max-width: 116px;
            }
            a.bt_link{
                flex-grow: 0;
            }
        }

    }

    /* *end mini_banner*/

    /* *start choose_us*/

    section.choose_us{
        position: relative;
        background: url(./assets/banner/bg--choose.png) no-repeat center / cover;
        padding: 7rem 0;

        center {
            h2{

                span:nth-child(1){
                    background: linear-gradient(93.95deg, #5C5C5C 16.1%, #1A1A1A 93.72%);
                    -webkit-background-clip: text;
                    background-clip: text; 
                    -webkit-text-fill-color: transparent; 
                    color: transparent;
                }
                span:nth-child(2){
                    background: linear-gradient(12.27deg, #8E348F 32.73%, #54266D 114.9%);
                    -webkit-background-clip: text;
                    background-clip: text; 
                    -webkit-text-fill-color: transparent; 
                    color: transparent;
                }
            }
        }
    }

    .choose_us_grid{
        display: grid;
        grid-template-columns: repeat(2 , 1fr);
        gap: 1rem;
        margin-top: 3rem;

        .choose_us_card{
            position: relative;
            /* max-width: 19vw; */
            

            img{
                width: 100%;
                object-fit: cover;
            }


            .text-ad{
                position: absolute;
                bottom: 1rem;
                left: 0;
                right: 0;
                height: 40%;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                align-items: center;
                gap: 1rem;
                padding: 1rem;
                text-align: center;
            }
        }
    }

    /* *end choose_us*/

    /* *review */

    section.review{
        --review-card-width: 30.5vw;
        --icon-review-width: 43px;
        --icon-next-prev-width:  61px;
        --icon-top-width:  clamp(100px , 7vw , 126px);

        background: url(./assets/banner/bg--review.png) no-repeat center / cover;
        position: relative;
        padding: 8rem 0;
    }
    .review_icon {
        position: absolute;
        top: calc((var(--icon-top-width)/2) - var(--icon-top-width));
        left: 20%;

        img {
            max-width: 126px;
            width: var(--icon-top-width);
        }
    }
    .review_grid{
        display: flex;
        gap: 2rem;
    }
    .review_grid_info{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 245px;
        padding-bottom: 2rem;

        div {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            
            p{
                line-height: 30px;
            }

            a{
                flex-grow: 1;
            }
        } 
        
    }
    .review_grid_swiper_pc{
        width: 70%;
        position: relative;
    }
    .review_card{
        width: var(--review-card-width);
        height: 425px;
    }
    .review_card_img{
        position: relative;
    }
    .float_icon{
        position: absolute;
        bottom: calc(var(--icon-review-width)/2 - var(--icon-review-width) );
        left: 20px;

        img{
            width: var(--icon-review-width);
            aspect-ratio: 1 / 1;
        }
    }

    .review_card{
        background: #fff;
        padding: 1rem;
    }
    .review_card_img img{
        object-fit: cover;
        min-width: 100%;
        min-height: 100%;
    }
    .review_card_detail{
        display: flex;
        flex-direction: column;
        margin: calc(var(--icon-review-width)/2) 0 0.5rem;
        justify-content: flex-start;
        padding: 1rem 0 0.5rem;
        border-bottom: 1px solid #000;
        min-height: 120px;

        div{
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 4; /* number of lines to show */
                    line-clamp: 4; 
            -webkit-box-orient: vertical;
        }
    }
    .review_card_author{
        > div{
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 1; /* number of lines to show */
                    line-clamp: 1; 
            -webkit-box-orient: vertical;
        }
        >p{
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2; /* number of lines to show */
                    line-clamp: 2; 
            -webkit-box-orient: vertical;
        }
    }
    .review_bt{
        display: flex;
        align-items: flex-center;
        justify-content: flex-start;
    }

    /* ?swiper_setting */

    .swiper-review-next {
        background-image: url(assets/icons/button_n.svg) !important;
        background-repeat: no-repeat;
        width: var(--icon-next-prev-width) !important;
        height: var(--icon-next-prev-width) !important;
        right: -30px !important;
        top: 20% !important;
        opacity: 1 !important;
    }
    .swiper-review-prev {
        background-image: url(assets/icons/button_p.svg) !important;
        background-repeat: no-repeat;
        width: var(--icon-next-prev-width)!important;
        height: var(--icon-next-prev-width)!important;
        left: -30px !important;
        top: 20% !important;
        opacity: 1 !important;
    }

    .swiper-review-pagination {
        position: relative;
        text-align: left !important;
        padding: 0!important;
        bottom: -30px !important;
    }
    .swiper-review-next:after, 
    .swiper-review-prev:after{
        content: '' !important;
    }

    /* *End---review */

    /* *start article*/

    section.article{
        padding: 8rem 0 0;
        position: relative;
    }

    .news_grid{
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 1rem;
        margin: 2rem 0;
    }

    .news_grid_items{
        padding: var(--padding_service);
        position: relative;
        border: 1px solid transparent;
        transition: all 0.5s ease-in-out;
        border: 1px solid #CECECE;
        height: 100%;

        a{
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }
    }


    .news_grid_items:hover{
        border: 1px solid #CECECE;
        transition: all 0.5s ease-in-out;

    }
    
    .news_grid_items_inner{
        position: relative;

        .top img{
            width: 100%;
            object-fit: cover;
            object-position: center;
            aspect-ratio: 4 / 3;
        }
        .bottom{
            border-radius: 0 0 15px 15px;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            margin-top: -2px;
            height: 100%;
            justify-content: space-between;
            

            p{
                overflow: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 2; /* number of lines to show */
                        line-clamp: 2; 
                -webkit-box-orient: vertical;
            }
        }
    }
    .all_link{
        display: flex;
        justify-content: flex-end;
        margin: 1rem 0;
        a{
            gap: 10px;
            align-items: center;
        }
    }

    .row .three{
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: transparent;
    color: #ecf0f1;
    text-align: center;
    }

    .hamburger .line{
    width: 27px;
    height: 3px;
    background-color: var(--pp-dark);
    display: block;
    margin: 4px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    }

    .hamburger:hover{
    cursor: pointer;
    }

    /* FOUR */

    #hamburger-4.is-active .line:nth-child(1),
    #hamburger-4.is-active .line:nth-child(3){
    width: 21px;
    }

    #hamburger-4.is-active .line:nth-child(1){
    -webkit-transform: translateX(8px) rotate(45deg);
    -ms-transform: translateX(8px) rotate(45deg);
    -o-transform: translateX(8px) rotate(45deg);
    transform: translateX(8px) rotate(45deg);
    }

    #hamburger-4.is-active .line:nth-child(3){
    -webkit-transform: translateX(8px) rotate(-45deg);
    -ms-transform: translateX(8px) rotate(-45deg);
    -o-transform: translateX(8px) rotate(-45deg);
    transform: translateX(8px) rotate(-45deg);
    }


    /* *end article*/

    /* *start banner*/

    section.banner{
        padding: 5rem 0 2rem;

        .banner_main img{
            height: 188px;
            object-fit: cover;
        }
    }

    .banner_main{
        position: relative;
    }
    .banner_text_bg{
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 1;
        display: flex;
        left: 27%;
        align-items: center;

        h2{
            background: linear-gradient(92.68deg, rgba(84, 38, 109, 0.8) 14.45%, rgba(26, 26, 26, 0.2) 74.64%);
            -webkit-background-clip: text;
            background-clip: text; 
            -webkit-text-fill-color: transparent; 
            color: transparent;
        }
    }
    .banner_text_info{
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 2;
        padding: 2rem 10%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: flex-end;

        a{
            flex-grow: 0;
            width: 220px;
        }
    }


    /* *end banner*/

    /* *start contact*/

    section.contact_page{
        background: url(./assets/banner/bg--contact.png) no-repeat center / cover;
        padding: 4rem 0;
    }

    .contact_container{
        display: grid;
        grid-template-columns: 38% 1fr;
        gap: 5rem;
        align-items: center;
    }

    .contact_content_bt{
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .contact_container_text{
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    section.contact{
        padding: 3rem 0 8rem;
        position: relative;
        background: url(./assets/banner/bg--contact.png) no-repeat center / cover;
    }

    .contact_grid{
        display: grid;
        grid-template-columns: 30% 1fr;
        border: 1px solid #DBDBDB;
        box-shadow: 6px 12px 37.2px 0px #00000024;

    }

    .contact_bg{
        background: url(./assets/banner/banner--contact-home.png) no-repeat center / cover;
    }

    .contact_form{
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 2rem;
        background: #fff;
    }
    
    .contact_form_field{
        margin-top: -1rem;
    }

    /* *end contact*/

    /* *start */


    /* *end */

    /* *start */


    /* *end */

    /* !END-home ----------------------------------------------------------------------------------*/

    /* !footer ----------------------------------------------------------------------------------*/
    section.footer_main{
        --logo-footer-width:240px;
        --address-width:300px;
        --grid-gap: 1rem;
        padding: 6rem 0 4rem;
        background: #121213;
        margin-top: -10px;
        position: relative;
        z-index: 10;
        

        .logo_footer{
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .logo_footer  img:nth-child(1) {
                width: 210px;
            }

        .logo_footer  img:nth-child(2) {
                width: 120px;
            }
    }
    .footer_main_grid{
        display: grid;
        grid-template-columns:  var(--logo-footer-width) 1fr 1fr 1fr 1fr;
        gap: var(--grid-gap);
        

        div.contact_form_grid{
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 10px;
        }

        ul{
            margin: 0;
            padding-left: 0;
            list-style: none;

            li a{
                color: #fff;
                font-weight: 300;
            }
        }
		.footer_main_items {
			display: flex;
			justify-content: center;
		}
        .footer_flex_ul{
            display: flex;
            gap: var(--grid-gap);
        }

        .footer_main_items > div > p {
            padding-bottom: 2rem;
        }
    }

    .copy_right{
        display: grid;
        grid-template-columns: 70% 1fr;
        gap: var(--grid-gap);
        padding: 1.5rem 0;
        border-bottom: 1px solid #fff;
    }

    /* !END-footer ----------------------------------------------------------------------------------*/

    /* !about_us ----------------------------------------------------------------------------------*/

    /* *start main_banner-about*/

    section.main_banner-about{
        --max-h-banner-about:684px;

        position: relative;
        max-height: var(--max-h-banner-about);
        height: var(--max-h-banner-about);
        padding: 5rem 0;
        background-position: center bottom;

        .w-80-center{
            display: flex;
            justify-content: end;
        }

        .title_box{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 50%;
        }
        .title_box.about {
            align-items: flex-end;

            .box{
                display: flex;
                flex-direction: column;
                width: 100%;
            }
        }

        .text-title{
            font-family: "Montserrat";
            font-size: clamp(90px, 6.12vw, 120px);
            line-height: 1;
            font-weight: 600;
            background-image: linear-gradient(93.95deg, #5C5C5C 16.1%, #1A1A1A 93.72%);
            -webkit-background-clip: text;
            background-clip: text; 
            -webkit-text-fill-color: transparent; 
            color: transparent
        }
    }


    /* *end main_banner-about*/
    
    /* *start dna*/

    section.dna{
        position: relative;
        overflow: hidden;
        background: url(./assets/banner/bg--dna-about.png) no-repeat top center / cover;
        padding: 6rem 0;

        center{
            position: relative;

            .banner_text_bg{
                top: 0;
                left: 0;
                right: 0;
                z-index: 1;
                display: flex;
                justify-content: center;
                z-index: 1;

                h2{
                    background: linear-gradient(90deg, #58FF00 -21.18%, rgba(255, 255, 255, 0.3) 46.19%, #58FF00 120.14%);
                    -webkit-background-clip: text;
                    background-clip: text;
                    opacity: 0.21;
                }
            }

            p.dna_title{
                position: relative;
                z-index: 5;
                background: linear-gradient(315.71deg, #919191 0%, #FEFEFE 101.27%);
                -webkit-background-clip: text;
                background-clip: text; 
                -webkit-text-fill-color: transparent; 
                color: transparent;
                bottom: -1rem !important;
                padding-bottom: 0rem;
            }
            
        }

        .windown_card{
            width: 52%;
        }
    }
    .card_window{
        background: url(./assets/banner/bg--dna-about-2.png) no-repeat center / contain;
        margin: 2rem 0;
    }
    .card-1{
        margin-bottom: 2rem;
    }
    .card-2{
        display: flex;
        justify-content: flex-end;
    }

    .insight{
        margin: 3rem 0 1rem;
        background: url(./assets/banner/bg--dna-about-3.png) no-repeat center / cover;
        overflow: hidden;
        border-radius: 10px;
        padding: 2rem;
    }
    .insight_card{
        display: grid;
        grid-template-columns: 60% 1fr;
        gap: 2rem;
        padding: 4rem 2rem;
        
        align-items: center;
    }
    .insight_text{
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 2rem;

        .branch_card_title{
            
            position: relative;
            z-index: 2;

            &::after{
                content: 'MR.KLEANE';
                position: absolute;
                bottom: calc(calc(var( --branch-title-height)/ 1) - var(--branch-title-height));
                left: 0;
                top: -4rem;
                z-index: -1;
                background: linear-gradient(90deg, #58FF00 0%, rgba(53, 153, 0, 0) 100%);
                -webkit-background-clip: text;
                background-clip: text; 
                -webkit-text-fill-color: transparent; 
                color: transparent;
                font-family: 'Press Start 2P';
                font-size: 5.5vw;
                opacity: 0.2;

            }

            h2{
                line-height: 1.4;
            }
            p {
                line-height: 2;
            }
        }
    }

    /* *end dna*/

    /* *start timeline*/

    section.timeline{
        --timeline-start: 30px;
        position: relative;
        padding: 2rem 0 4rem;

        center{
            position: relative;

            .banner_text_bg{
                top: 0;
                left: 0;
                right: 0;
                z-index: 1;
                display: flex;
                justify-content: center;
                z-index: 1;
                align-items: flex-start;

                h2{
                    background: linear-gradient(90deg, #8E348F -21.18%, rgba(255, 255, 255, 0.3) 46.19%, #6A2D6B 120.14%);
                    -webkit-background-clip: text;
                    background-clip: text;
                    opacity: 0.21;
                }
            }

            p.timeline_title{
                position: relative;
                z-index: 5;
                bottom: -1rem !important;
                padding-bottom: 0rem;
            }
            
        }
    }
    .timeline_main{
        padding: 2rem;
    }
    .time_grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .time_title{
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .time_title_histroty{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 3rem;
    }


    .time_s1{
        .time_title_histroty{
            position: relative;

            &::before{
                content: '';
                position: absolute;
                top: 69px;
                left: -1.5rem;
                height: 100%;
                border: 1px solid #8E348F;
            }
        }


        .time_box {
            --rounded : 16px;
            --dot_pos : -32px;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0px 4px 4px 0px #00000040;
            backdrop-filter: blur(4px);
            position: relative;
            border: 1px solid transparent;

            &::before{
                content: '';
                position: absolute;
                width: var(--rounded);
                height: var(--rounded);
                border: 1px solid var(--pp-dark);
                border-radius: 50%;
                top: 50%;
                left: var(--dot_pos);
                background: #fff;
                z-index: 20;
            }
            p.time_box_title{
                color: var(--color-dark);
            }


            &.main{
                border: 1px solid var(--pp-dark);

                &::before{
                    content: '';
                    position: absolute;
                    width: var(--rounded);
                    height: var(--rounded);
                    border: 1px solid var(--pp-dark);
                    border-radius: 50%;
                    top: 50%;
                    left: var(--dot_pos);
                    background: var(--pp-dark);
                    z-index: 20;
                }
                p.time_box_title{
                    color: var(--pp-dark);
                }
            }
        }
    }
    

    .time_s2{
        .time_title{
            position: relative;

            &::before{
                content: '';
                position: absolute;
                top: 69px;
                left: -1.5rem;
                height: 100%;
                border: 1px solid #8E348F;
            }
        }

        .time_box {
            --rounded : 16px;
            --dot_pos : -34px;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0px 4px 4px 0px #00000040;
            backdrop-filter: blur(4px);
            position: relative;
            border: 1px solid transparent;
            z-index: 25;

            &::after{
                content: '';
                position: absolute;
                width: var(--rounded);
                height: var(--rounded);
                border: 1px solid var(--pp-dark);
                border-radius: 50%;
                top: 50%;
                right: var(--dot_pos);
                background: #fff;
                z-index: 20;
            }
            p.time_box_title{
                color: var(--color-dark);
            }


            &.main{
                border: 1px solid var(--pp-dark);

                &::after{
                    content: '';
                    position: absolute;
                    width: var(--rounded);
                    height: var(--rounded);
                    border: 1px solid var(--pp-dark);
                    border-radius: 50%;
                    top: 50%;
                    right: var(--dot_pos);
                    background: var(--pp-dark);
                    z-index: 20;
                }
                p.time_box_title{
                    color: var(--pp-dark);
                }
            }
        }
    }

    .time_s2.end{
        .time_title {
            position: relative;

            &::before{
                content: '';
                position: absolute;
                top: 69px;
                left: -1.5rem;
                height: 73%;
                border: 1px solid #8E348F;
            }
        }
    }

    .time_s1.start .time_title center{
        position: relative;
        z-index: 2;

        &::before{
            content: '';
            position: absolute;
            left: -280%;
            top: -235px;
            background: url(./assets/mock/history/h1.png) no-repeat center / contain;
            width: 700px;
            height: 700px;
            z-index: -1;
        }
    }

    .time_s2.second .time_title center{
        position: relative;

        &::before{
            content: '';
            position: absolute;
            right: -178%;
            top: -179px;
            background: url(./assets/mock/history/h2.png) no-repeat center / contain;
            width: 700px;
            height: 800px;
        }
    }

    .time_s1.third .time_title center{
        position: relative;

        &::before{
            content: '';
            position: absolute;
            left: -140%;
            top: -335px;
            background: url(./assets/mock/history/h3.png) no-repeat center / contain;
            width: 700px;
            height: 800px;
        }
    }

    .time_s2.end .time_title center{
        position: relative;
        z-index: 2;

        &::before{
            content: '';
            position: absolute;
            right: -123%;
            top: -318px;
            background: url(./assets/mock/history/h4.png) no-repeat center / contain;
            width: 700px;
            height: 800px;
            z-index: -1;
        }
    }


    /* *end timeline*/

    /* *start history*/

    section.history{
        position: relative;
        padding: 8rem 0;

        .w-80-center{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
    }

    .history_grid{
        display: grid;
        grid-template-columns: repeat( 3 , 1fr);
        gap: 1rem;
        width: 100%;

        &.icon{
            padding: 2rem 0 1rem;
        }

        &.text .history_grid_items{
            padding: 2rem;
        }

        .history_grid_items{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
    }

    /* *end history*/

    /* *start partner*/

    section.partner{
        position: relative;
        padding: 4rem 0 8rem;

        .w-80-center{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
    }
    .partner_grid{
        display: grid;
        grid-template-columns: repeat( 4 , 1fr);
        gap: 2rem 10rem;
        width: 100%;
        padding: 2rem 0;
    }

    /* *end partner*/

    /* *start gallery*/

    section.gallery{
        --icon-next-prev-width:  61px;
        padding: 10rem 0;
    }
    .gallery_bg{
        background: url(./assets/banner/bg--gallery.png) no-repeat center / cover;
        padding: 5rem 0;
    }
    .gallery_swiper_containner{
        position: relative;
        max-height: 440px;
    }

    .gallery_grid_area{
        --gallery-max-height: 440px;
        display: grid;
        gap: 10px;
        max-height: 440px;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat( 2, calc(var(--gallery-max-height)/2));
        grid-template-areas: 
            "img1 img2 img3 img5 "
            "img1 img2 img4 img5 "
            ;
    }
    .grid-item img{
        width: 100%;
        object-fit: cover;
        object-position: center;
        height: 100% !important;
    }
    .grid-item:nth-child(1) { 
        grid-area: img1;
        position: relative;

        &::after{
            content: '';
            width: calc(var(--gallery-max-height)/2);
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
        }
    }
    .grid-item:nth-child(2) { grid-area: img2; }
    .grid-item:nth-child(3) { grid-area: img3; }
    .grid-item:nth-child(4) { grid-area: img4; }
    .grid-item:nth-child(5) { 
        grid-area: img5;
        position: relative;
        &::after{
            content: '';
            width: calc(var(--gallery-max-height)/2);
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(270deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
        }
    }

    .gallery_next {
        background-image: url(assets/icons/button_n.svg) !important;
        background-repeat: no-repeat;
        width: var(--icon-next-prev-width) !important;
        height: var(--icon-next-prev-width) !important;
        right: -30px !important;
        opacity: 1 !important;
    }
    .gallery_prev {
        background-image: url(assets/icons/button_p.svg) !important;
        background-repeat: no-repeat;
        width: var(--icon-next-prev-width)!important;
        height: var(--icon-next-prev-width)!important;
        left: -30px !important;
        opacity: 1 !important;
    }

    .gallery_next:after, 
    .gallery_prev:after{
        content: '' !important;
    }


    /* *end gallery*/

    /* *start */


    /* *end */

    /* *start */


    /* *end */

    /* !about_us----------------------------------------------------------------------------------*/

    /* !service----------------------------------------------------------------------------------*/

        .title_box.service{
            max-width: 50% !important;
        }
        .tag_banner{
            border-radius: 20px;
            padding: 0.2rem 1.3rem;
            background: linear-gradient(156.82deg, rgba(255, 255, 255, 0.2) 6.43%, rgba(106, 45, 107, 0.2) 98.59%);
            backdrop-filter: blur(10px);
            width: fit-content;
        }

        /* *start service_main*/

        section.service_main{
            padding: 4rem 0;
        }

        .service_main_items{
            display: grid;
            grid-template-columns: 30% 1fr;
            gap: 2rem;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #8A7794;
            margin: 2rem 0;

        }
        .service_main_img{

            a{
                height: 100%;

                img{
                    height: 100%;
                    object-fit: cover;
                }
            }
        }

        .service_main_detail{
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            .circle_bt{
                display: flex;
                justify-content: flex-end;
            }
        }

        
        /* *end service_main*/

    /* !service----------------------------------------------------------------------------------*/


    /* !work ----------------------------------------------------------------------------------*/


    /* *start work_title*/

    section.work_title{
        padding: 12rem 0 3rem;
        position: relative;
    }
    .work_title_flex{
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        z-index: 1;

        &::after{
            content: 'MR.KLEANE';
            font-size: clamp(105px, 7.29vw, 140px);
            font-family: "Press Start 2P";
            background: linear-gradient(90deg, #8E348F -21.18%, #FFFFFF 0.93%, #54266d30 120.14%);
            -webkit-background-clip: text;
            background-clip: text; 
            -webkit-text-fill-color: transparent; 
            color: transparent;
            position: absolute;
            z-index: -1;
            top: -65%;
            right: 0;
            bottom: 0;
            left: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }
    }


    /* *end work_title*/

    /* *start work*/
    .work_sec{
        padding: 2rem 0 5rem;
    }

    .work_sec_grid{
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 1rem;
        margin-bottom: 2rem;
        

        img{
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }
    }


    /* *end work*/

    /* *start our_work*/

    section.our_work{
        padding: 3rem 0;
    }

    .work_sec_grid{
        margin: 2rem 0;
    }
    .our_work_dettail .our_work_text{
        margin-top: 1rem;
        p{
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2; /* number of lines to show */
                    line-clamp: 2; 
            -webkit-box-orient: vertical;
        }

        div{
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2; /* number of lines to show */
                    line-clamp: 2; 
            -webkit-box-orient: vertical;
        }
    }


    /* *end our_work*/

    /* *start */


    /* *end */

    /* *start */


    /* *end */

    /* !work----------------------------------------------------------------------------------*/


    /* !article ----------------------------------------------------------------------------------*/

    /* *start banner_article*/

    section.banner_article{

        .banner_text_bg{
            position: absolute;
            top: 0;
            bottom: 0;
            z-index: 1;
            display: flex;
            left: 32%;
            align-items: center;

            h2{
                background: linear-gradient(92.68deg, rgba(84, 38, 109, 0.8) 14.45%, rgba(84, 38, 109, 0.5) 74.64%);
                -webkit-background-clip: text;
                background-clip: text; 
                -webkit-text-fill-color: transparent; 
                color: transparent;
            }
        }
    }


    /* *end banner_article*/

    /* *start */


    /* *end */

    /* *start */


    /* *end */

    /* *start */


    /* *end */

    /* *start */


    /* *end */

    
    /* !END-article ----------------------------------------------------------------------------------*/

    /* !contact ----------------------------------------------------------------------------------*/

    section.contact_title{
        padding: 8rem 0 3rem;
        position: relative;
    }
    .contact_title_flex{
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        z-index: 1;

        &::after{
            content: 'MR.KLEANE';
            font-size: clamp(105px, 7.29vw, 140px);
            font-family: "Press Start 2P";
            background: linear-gradient(90deg, #8E348F -123.18%, rgb(255 255 255 / 60%) 55.19%, #54266D 126.14%);
            -webkit-background-clip: text;
            background-clip: text; 
            -webkit-text-fill-color: transparent; 
            color: transparent;
            position: absolute;
            z-index: -1;
            top: -35%;
            right: 0;
            bottom: 0;
            left: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }
    }

    /* ?form */

        div.wpforms-container-full .wpforms-form textarea.wpforms-field-large {
            height: 100px !important;
        }
        label.wpforms-field-label {
            font-size: 1.1rem !important;
            font-weight: 400 !important;
            color: #393939 !important;
            display: flex !important;
            justify-content: space-between;
        }
        input#wpforms-553-field_0, 
        input#wpforms-553-field_3, 
        input#wpforms-553-field_1, 
        textarea#wpforms-553-field_2,
        input#wpforms-553-field_5 {
            background-color: #fff;
            border: 1px solid transparent;
            border-bottom: 1px solid #C8C8C8;
            
            &::placeholder{
                font-weight: 200 !important;
            }
        }
        button.form-bt {
            background: var(--pp-dark) !important;
            color: #fff !important;
            padding: 1rem 110px !important;
            font-weight: 300;
            font-size: clamp(18px, 1.25vw, 24px);
        }
        .wpforms-submit-container {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

    /* ?form */

    /* !END-contact ----------------------------------------------------------------------------------*/


    /* !single-service ----------------------------------------------------------------------------------*/
    
    .banner_service{
        position: relative;
        .banner_main{
            filter: brightness(0.3);
        }
        .banner_service_text{
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding: 0 20%;
        }
    }
    .service_content{
        padding: 4rem 0;
    }
    

    /* !single-service ----------------------------------------------------------------------------------*/


    /* !single-our-work----------------------------------------------------------------------------------*/

        .banner_single{
            position: relative;

            img{
                filter: brightness(0.2);
            }

            .title_abs{
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                
                >div{
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;
                    align-items: center;

                    p{
                        max-width: 70%;
                        text-align: center;
                    }
                }
            }
        }

        .work_content{
        --icon-next-prev-width:  61px;
        --position_bt:-33px;
        padding: 6rem 0 6rem;

        .work_content_grid{
            display: grid;
            grid-template-columns: 70% 1fr;
            gap: 3rem;
            align-items: start;
            max-width: 100%;

        }

        .work_content_main{
            display: flex;
            flex-direction: column;
            gap: 1rem;

            .work_grid{
                display: grid;
                grid-template-columns: 10% 1fr;
                gap: 5rem;
                max-width: 55vw;
            }

            .gallery_img.work_page{
                max-width: 55vw;
            }
        }
        .detail_work {
            ul {
                margin: 2rem 0;


            }
        }

        .our_work_grid.work_page{
            grid-template-columns: 1fr;

            .our_work_grid_small{
                grid-template-columns: 1fr;
                padding: 2rem 0;
            }
        }
    }

    /* .swiper-review_hightlight-slide img{
        height: 400px;
    } */

    .swiper-review_hightlight-thumbnail img{
        max-height: 160px;
        object-fit: cover;
        width: 100%;
		height: 160px;
    }

    .gallery_img{
        padding: 0rem 0 4rem;

        .product_img div {
            display: flex;
            justify-content: center;
            margin: 2rem 0;
        }
    }

    .product_hightlight_next,.product_swiper_next {
        background-image: url(assets/icons/button_n.svg) !important;
        background-repeat: no-repeat;
        width: var(--icon-next-prev-width) !important;
        height: var(--icon-next-prev-width) !important;
        right: var(--position_bt) !important;
        opacity: 1 !important;
        box-shadow: 0px 3.9px 3.9px 0px #00000040;
        border-radius: 50%;

    }
    .product_hightlight_prev,.product_swiper_prev {
        background-image: url(assets/icons/button_p.svg) !important;
        background-repeat: no-repeat;
        width: var(--icon-next-prev-width)!important;
        height: var(--icon-next-prev-width)!important;
        left: var(--position_bt) !important;
        opacity: 1 !important;
        box-shadow: 0px 3.9px 3.9px 0px #00000040;
        border-radius: 50%;

    }

    .product_hightlight_next:after, 
    .product_hightlight_prev:after,
    .product_swiper_next:after,
    .product_swiper_prev:after{
        content: '' !important;
    }
    .review_hightlight_pagination{
        position: relative !important; 
        bottom: -10px !important;
        display: flex;
        justify-content: center;
    }

    .swiper-product-slide img{
        aspect-ratio: 1 / 1  !important;
        object-fit: cover;
    }


    /* !END-single-our-work ----------------------------------------------------------------------------------*/

}