@charset "utf-8";

.intro {
    .w1440 {
        display: flex;
        padding: 130px 0 80px;
        gap: 54px;
        position: relative;

        @media(max-width:900px) {
            padding-top: 55px;
            padding-bottom: 0;
            flex-direction: column;
            gap: 33px;
            align-items: center;
        }

        .col-text {
            max-width: 624px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;

            .main {
                font-family: var(--fmain);
                font-weight: 600;
                font-size: clamp(1.25rem, 1.068rem + 0.78vw, 2rem);
                text-align: left;
                color: #1e4d3e;
            }

            .desc {
                p {
                    font-family: var(--fmain);
                    font-weight: 500;
                    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
                    line-height: calc(30/16);
                    text-align: left;
                    color: #000;
                }
            }
        }

        .col-img {
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            gap: 92px;
            right: 0;
            top: 130px;
            position: absolute;

            @media(max-width:1240px) {
                position: relative;
                top: 24px;
                gap: 30px;
            }

            .img {
                position: relative;
                z-index: 5;
                width: 70%;
            }

            .img:first-child {
                max-width: 359px;
                margin-top: -50px;

                @media(max-width:900px) {
                    margin-top: 0;
                }
            }

            .img:last-child {
                max-width: 272px;
                margin-top: 150px;

                @media(max-width:900px) {
                    margin-top: 80px;
                }
            }

            .img::before {
                content: "";
                width: 100%;
                height: 100%;
                background-color: var(--cmain);
                border-radius: 10px;
                position: absolute;
                top: 20px;
                right: 16px;
                z-index: -1;

                @media(max-width:900px) {
                    top: 9px;
                    right: 7px;
                }
            }

        }
    }
}

.section-div {
    max-width: 100%;
    height: 528px;
    width: 100%;

    @media(max-width:767px) {
        height: 107px;
    }

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


.message {
    text-align: center;

    .w1536 {
        padding-top: 80px;

        .top {
            margin-bottom: 100px;
        }

        .column {
            display: flex;
            gap: 90px;
            align-items: center;

            @media(max-width:900px) {
                flex-direction: column;
            }

            .col-img {
                max-width: 846px;
                width: 100%;
                position: relative;
            }

            .col-img::before {
                content: "";
                width: 100%;
                height: 100%;
                background-color: var(--cmain);
                border-radius: 10px;
                position: absolute;
                top: 20px;
                right: 16px;
                z-index: -1;

                @media(max-width:900px) {
                    top: 8px;
                    right: 7px;
                }
            }

            .col-text {
                display: flex;
                flex-direction: column;
                align-items: flex-start;


                .name {
                    display: flex;
                    gap: 28px;
                    flex-direction: column;
                    align-items: flex-start;
                    margin-bottom: 80px;

                    p {
                        font-family: "M PLUS 1";
                        font-weight: 500;
                        font-size: 21px;
                        line-height: 27px;
                        text-align: left;
                        color: #000;
                    }
                }


            }

            .desc {
                text-align: left;
                padding-bottom: 32px;
                border-bottom: 1px solid var(--cmain);

                .ttl {
                    display: inline-block;
                    padding-top: 16px;
                    border-top: 1px solid var(--cmain);
                    font-family: "M PLUS 1";
                    font-weight: 500;
                    font-size: clamp(1rem, 0.97rem + 0.13vw, 1.125rem);
                    line-height: 23px;
                    text-align: left;
                    color: #1e4d3e;
                    margin-bottom: 20px;
                }

                .text {
                    font-family: "M PLUS 1";
                    font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
                    font-weight: 500;
                    line-height: 30px;
                    text-align: left;
                    color: #000;
                }
            }
        }
    }
}

.feature {
    text-align: center;

    .w1536 {
        padding: 120px 0 150px;

        @media(max-width:767px) {
            max-width: 100%;
            width: 94%;
        }

        .p-title {
            margin-bottom: 40px;
        }
    }

    .gridcolumn {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;

        @media(max-width:1024px) {
            gap: 18px;
            grid-template-columns: repeat(1, 1fr);
        }

        @media(max-width:767px) {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .item {
            max-width: 464px;
            width: 100%;
            display: flex;
            align-items: center;
            flex-direction: column;

            @media(max-width:1024px) {
                display: grid;
                grid-template-columns: 40% auto;
                max-width: 94%;
                gap: 0 40px;
                margin: 0 auto;
            }

            @media(max-width:767px) {
                max-width: 99%;
                display: flex;
                align-items: center;
                flex-direction: column;
            }



            .title {
                width: 100%;
                height: 110px;
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
                z-index: 5;
                margin-bottom: 32px;

                @media(max-width:1024px) {
                    grid-area: 1 / 1 / 2 / 2;
                    max-width: 415px;
                    width: 100%;
                    margin-bottom: 0;
                }

                img {
                    position: absolute;
                    z-index: -1;
                }

                .text {
                    font-family: "M PLUS 1";
                    font-weight: bold;
                    font-size: clamp(1.25rem, 1.068rem + 0.78vw, 2rem);
                    color: #1e4d3e;
                }
            }

            .col-img {
                position: relative;
                margin-bottom: 38px;

                @media(max-width:1024px) {
                    max-width: 415px;
                    width: 100%;
                    grid-area: 2 / 1 / 3 / 2;

                }

                @media(max-width:767px) {
                    width: 85%;
                }

            }

            .col-img::before {
                content: "";
                width: 100%;
                height: 100%;
                background-color: var(--cmain);
                border-radius: 10px;
                position: absolute;
                top: 20px;
                right: 16px;
                z-index: -1;

                @media(max-width:900px) {
                    top: 13px;
                    right: 10px;
                }
            }

            .desc {
                margin-right: auto;

                @media(max-width:1024px) {
                    grid-area: 1 / 2 / 3 / 3;

                }

                p {
                    text-align: left;
                    font-family: "M PLUS 1";
                    font-weight: 500;
                    font-size: clamp(0.75rem, 0.583rem + 0.35vw, 1rem);
                    line-height: calc(30/14);
                    color: #000;

                    @media(max-width:767px) {
                        font-size: 12px;
                    }
                }
            }
        }
    }
}

.service {
    background-color: var(--cmain);

    .w1536 {
        padding-top: 40px;
    }

    .title {
        font-family: "M PLUS 1";
        font-weight: 600;
        font-size: 32px;
        text-align: center;
        color: #fff;
        margin-bottom: 40px;
    }

    .menulist {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 17px;
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: 1px solid #FFF;

        @media(max-width:1180px) {
            justify-content: center;
        }


        .menuitem {
            max-width: 360px;
            width: 24%;
            border-radius: 10px;
            position: relative;
            display: flex;
            align-items: flex-start;
            gap: 17px;
            justify-content: center;
            box-shadow: 5px 5px 0px #188d67;
            background: #FFF;
            padding: 12px 15px 14px 16px;
            transition: all .4s ease;

            @media(max-width:1180px) {
                width: 47%;
            }

            @media(max-width:767px) {
                width: 100%;
            }

            .mainimg {
                max-width: 152px;
                width: 100%;
                box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
            }

            .maintit {
                font-family: var(--fmain);
                font-weight: 400;
                font-size: 28px;
                color: #1e4d3e;
                margin-top: 12px;
                flex: 1;
            }

            .link {
                position: absolute;
                right: -5px;
                bottom: -5px;
                border-radius: 10px 0px 0px 0px;
                background: #fff;
                border: 3px solid #1e4d3e;
                font-family: "M PLUS 1";
                font-weight: 500;
                font-size: 14px;
                text-align: center;
                color: #1e4d3e;
                padding: 8px 21px;

                @media(max-width:900px) {
                    bottom: -9px;
                    right: -9px;
                }
            }
        }

        .menuitem:hover {
            opacity: unset;
            box-shadow: unset;
            transform: translateX(5px) translateY(5px);
        }

        .text {
            width: 100%;
            text-align: center;
            font-family: "M PLUS 1";
            font-weight: 600;
            font-size: 22px;
            color: #fff;

            @media(max-width:900px) {
               font-size: 18px;
            }
        }
    }

    .column {
        display: flex;
        gap: 56px;
        align-items: center;
        justify-content: center;

        @media(max-width:1180px) {
            flex-direction: column;
            gap: 19px;
        }

        .col-text {
            display: flex;
            flex-direction: column;
            align-items: center;

            .text {
                font-family: var(--fmain);
                color: #FFF;
                font-weight: 500;
                font-size: clamp(1.125rem, 0.913rem + 0.91vw, 2rem);
            }



            .cta-tel {
                margin-bottom: 23px;
                flex-wrap: wrap;
                max-width: 541px;
                width: 100%;

                .f-37 {
                    grid-area: 1 / 1 / 2 / 2;
                    font-size: clamp(1rem, 0.681rem + 1.36vw, 2.313rem);
                }

                .f-60 {
                    grid-area: 1 / 2 / 2 / 3;
                    font-size: clamp(2.438rem, 2.119rem + 1.36vw, 3.75rem);
                }



                .f-18 {
                    grid-area: 2 / 1 / 3 / 3;
                    font-size: clamp(0.875rem, 0.814rem + 0.26vw, 1.125rem);
                    text-align: right;
                }

                @media(max-width:1180px) {
                    margin-bottom: 19px;
                }
            }

            .cta-contact {
                max-width: 543px;
                width: 100%;

                @media(max-width:1180px) {
                    font-size: 32px;
                }
            }
        }

        .col-img {
            max-width: 552px;
            width: 100%;
            margin-top: auto;
        }
    }
}

.works {
    .w1536 {
        text-align: center;
        padding: 80px 0 120px;

        .webgene-blog {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 96px;
            margin-bottom: 64px;

            @media(max-width:1180px) {
                display: flex;
                flex-direction: column;
                gap: 60px;
            }

            .newsLink {
                position: relative;
                border-radius: 5px;
                background: #fff;
                border: 2px solid #1e4d3e;
                box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
                padding: 24px 32px 81px;
                display: block;
                transition: .4s ease;

                .newsItemText {
                    display: flex;
                    gap: 24px;
                    align-items: center;
                    margin-bottom: 8px;

                    .newsItemTime {
                        font-family: var(--fmain);
                        font-weight: 500;
                        font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
                        color: #000;
                    }

                    .newsItemCate {
                        border-radius: 3px;
                        background: var(--cmain);
                        color: #FFF;
                        font-family: var(--fmain);
                        font-weight: 500;
                        font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
                        color: #fff;
                        padding: 8px 10px;
                    }
                }

                .newsDetailTit {
                    font-family: var(--fmain);
                    font-weight: 500;
                    font-size: clamp(1rem, 0.97rem + 0.13vw, 1.125rem);
                    text-align: left;
                    color: #1e4d3e;
                    margin-bottom: 20px;
                }

                .newsDetailImg {
                    width: 100%;
                    height: 226px;
                    margin-bottom: 20px;
                    overflow: hidden;

                    .webgene-item-main-image {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: .8s ease;
                    }
                }

                .newsDetailTxt {
                    font-family: var(--fmain);
                    font-weight: normal;
                    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
                    text-align: left;
                    color: #000;
                }
            }

            .newsLink::before {
                content: "";
                position: absolute;
                bottom: 0;
                right: 0;
                width: 160px;
                height: 40px;
                background: url(/system_panel/uploads/images/20251203164207123170.png);
                background-repeat: no-repeat;
                background-size: cover;
            }

            .newsLink:hover .newsDetailImg .webgene-item-main-image {
                transform: scale(1.2);

            }

        }

        .morebtn {
            max-width: 389px;
            width: 100%;
            margin: 0 auto;
            padding: 8px 40px;
            justify-content: flex-start;

            p {
                font-family: var(--fmain);
                font-weight: var(--bold);
                font-size: 25px;

                color: #fff;
            }
        }
    }
}