@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");

body {
    position: relative;
    position: relative;
    width: 100%;
    margin-inline: auto;
    height: 100vh;
}

    body * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: "Roboto", sans-serif;
        font-style: normal;
    }

    body h1,
    body h2,
    body h3,
    body h4 {
        margin-bottom: unset;
    }

.home-wrapper {
    --padding-inline: 86px;
}

    .home-wrapper .top-bar {
        position: sticky;
        top: 0;
        background-color: #fff;
        z-index: 4;
        border-bottom: 1px solid #d9d9d9;
    }

        .home-wrapper .top-bar .top-bar-wrapper {
            padding-inline: var(--padding-inline);
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1440px;
            margin-inline: auto;
        }

            .home-wrapper .top-bar .top-bar-wrapper .left-content {
                display: flex;
                align-items: center;
                gap: 64.29px;
            }

                .home-wrapper .top-bar .top-bar-wrapper .left-content .logo {
                    cursor: pointer;
                }

                .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper {
                    display: flex;
                    align-items: center;
                    gap: 40px;
                }

                    .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .item {
                        font-size: 16px;
                        font-weight: 400;
                        line-height: 24px;
                        color: #323c55;
                        cursor: pointer;
                        display: flex;
                        gap: 8px;
                    }

                        .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .item:hover {
                            font-weight: 500;
                            color: #35a1da;
                        }

                            .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .item:hover > img {
                                content: url(../../assets/images/icon/arrow-aqua.svg);
                            }

                    .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown {
                        position: relative;
                    }

                        .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown:has(input[type=checkbox]:checked) + .dropdown-wrapper {
                            display: grid;
                        }

                        .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown:has(input[type=checkbox]:checked) {
                            color: #34499d;
                            font-weight: 500;
                        }

                            .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown:has(input[type=checkbox]:checked) img {
                                content: url(../../assets/images/icon/arrow-blue.svg);
                            }

                        .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown input[type=checkbox] {
                            display: none;
                        }

                    .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper {
                        position: absolute;
                        top: 60px;
                        left: 50%;
                        transform: translateX(-50%);
                        width: calc(100dvw - var(--padding-inline) * 2);
                        max-width: calc(1440px - var(--padding-inline) * 2);
                        background-color: white;
                        z-index: 2;
                        border: 0.5px solid rgba(217, 217, 217, 0.9);
                        padding: 30px 10px;
                        display: none;
                        grid-template-columns: repeat(3, 1fr);
                        column-gap: 40px;
                        row-gap: 20px;
                    }

                        .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item {
                            display: flex;
                            align-items: flex-start;
                            gap: 10px;
                            padding: 10px;
                            border-radius: 4px;
                        }

                            .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item:hover {
                                background-color: #e0f8fa;
                                text-decoration: unset;
                            }

                                .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item:hover .content .title {
                                    color: #34499d;
                                }

                                .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item:hover .content .description {
                                    color: #35a1da;
                                }

                            .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item .image {
                                width: 24px;
                                height: 24px;
                            }

                                .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item .image img {
                                    object-fit: contain;
                                    width: 100%;
                                    height: 100%;
                                }

                            .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item .content .title {
                                color: #323c55;
                                font-size: 16px;
                                font-weight: 500;
                                line-height: 24px;
                            }

                            .home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item .content .description {
                                color: rgba(50, 60, 85, 0.7);
                                font-size: 14px;
                                font-weight: 400;
                                line-height: 24px;
                            }

            .home-wrapper .top-bar .top-bar-wrapper .right-content {
                display: flex;
                align-items: center;
                gap: 25px;
            }

                .home-wrapper .top-bar .top-bar-wrapper .right-content .item {
                    color: #302f2f;
                    font-size: 16px;
                    font-weight: 500;
                    cursor: pointer;
                }

                    .home-wrapper .top-bar .top-bar-wrapper .right-content .item:hover {
                        text-decoration: underline;
                    }

                .home-wrapper .top-bar .top-bar-wrapper .right-content .toggle-menu {
                    cursor: pointer;
                    display: none;
                }

                    .home-wrapper .top-bar .top-bar-wrapper .right-content .toggle-menu input[id=toggle-mobile-menu] {
                        display: none;
                    }

        .home-wrapper .top-bar .dropdown-mobile {
            display: none;
        }

    .home-wrapper .content-type-section-multi-picture-banner-03 {
        position: relative;
        overflow: hidden;
        height: 950px;
    }

        .home-wrapper .content-type-section-multi-picture-banner-03::after {
            content: "";
            background: var(--linear);
            height: inherit;
            width: 100dvw;
            display: block;
            position: absolute;
            top: 0;
        }

        .home-wrapper .content-type-section-multi-picture-banner-03::before {
            content: "";
            width: 300dvw;
            height: 300dvw;
            border-radius: 300vw;
            background: white;
            display: block;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 80%;
            z-index: 1;
        }

        .home-wrapper .content-type-section-multi-picture-banner-03 .content-type-section-multi-picture-banner-03-wrapper {
            width: 100%;
            max-width: 1440px;
            margin-inline: auto;
            padding-inline: var(--padding-inline);
            position: relative;
            z-index: 1;
            margin-top: 68px;
        }

            .home-wrapper .content-type-section-multi-picture-banner-03 .content-type-section-multi-picture-banner-03-wrapper .title-1 {
                color: #34499d;
                margin-inline: auto;
                font-size: 48px;
                font-weight: 800;
                line-height: 58px;
                letter-spacing: -0.48px;
                max-width: 737px;
                line-height: 58px;
                text-align: center;
            }

            .home-wrapper .content-type-section-multi-picture-banner-03 .content-type-section-multi-picture-banner-03-wrapper .button-orange-wrapper {
                width: 268px;
                height: 56px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding-left: 28px;
                padding-right: 15px;
                border-radius: 32px;
                border: 1px solid #fff;
                background-color: #fa541c;
                box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
                margin-top: 32px;
                cursor: pointer;
                margin-inline: auto;
                margin-bottom: 64px;
            }

                .home-wrapper .content-type-section-multi-picture-banner-03 .content-type-section-multi-picture-banner-03-wrapper .button-orange-wrapper .text {
                    color: #fff;
                    font-size: 16px;
                    font-weight: 600;
                    letter-spacing: 0.16px;
                }

            .home-wrapper .content-type-section-multi-picture-banner-03 .content-type-section-multi-picture-banner-03-wrapper .macbook-wrapper {
                margin-inline: auto;
                max-width: 977px;
                position: relative;
            }

                .home-wrapper .content-type-section-multi-picture-banner-03 .content-type-section-multi-picture-banner-03-wrapper .macbook-wrapper .macbook-frame {
                    position: absolute;
                    z-index: 1;
                    left: 50%;
                    transform: translateX(-50%);
                }

                .home-wrapper .content-type-section-multi-picture-banner-03 .content-type-section-multi-picture-banner-03-wrapper .macbook-wrapper .inner-picture-wrapper {
                    z-index: 2;
                    width: 977px;
                    height: 578px;
                    left: 50%;
                    transform: translateX(-50%);
                    position: absolute;
                }

                    .home-wrapper .content-type-section-multi-picture-banner-03 .content-type-section-multi-picture-banner-03-wrapper .macbook-wrapper .inner-picture-wrapper .inner-picture {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }

    .home-wrapper .content-type-section-multi-picture-banner-04 {
        position: relative;
        overflow: hidden;
    }

        .home-wrapper .content-type-section-multi-picture-banner-04::after {
            content: "";
            width: 100dvw;
            height: 100%;
            background-color: #b5f5ec;
            position: absolute;
            display: block;
            top: 0;
            z-index: -1;
        }

        .home-wrapper .content-type-section-multi-picture-banner-04 .content-type-section-multi-picture-banner-04-wrapper {
            width: 100%;
            max-width: 1440px;
            margin-inline: auto;
            padding-inline: var(--padding-inline);
            padding-top: 68px;
        }

            .home-wrapper .content-type-section-multi-picture-banner-04 .content-type-section-multi-picture-banner-04-wrapper .title-1 {
                color: #34499d;
                margin-inline: auto;
                font-size: 48px;
                font-weight: 800;
                line-height: 58px;
                letter-spacing: -0.48px;
                max-width: 737px;
                line-height: 58px;
                text-align: center;
            }

            .home-wrapper .content-type-section-multi-picture-banner-04 .content-type-section-multi-picture-banner-04-wrapper .description {
                color: rgba(31, 31, 57, 0.5);
                font-size: 28px;
                font-weight: 400;
                line-height: 45px;
                margin-inline: auto;
                text-align: center;
                margin-top: 10px;
            }

            .home-wrapper .content-type-section-multi-picture-banner-04 .content-type-section-multi-picture-banner-04-wrapper .image-wrapper {
                margin-top: 41px;
                max-width: 1024px;
                margin-inline: auto;
            }

                .home-wrapper .content-type-section-multi-picture-banner-04 .content-type-section-multi-picture-banner-04-wrapper .image-wrapper img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

    .home-wrapper .content-type-section-multi-picture-banner-05 {
        position: relative;
        overflow: hidden;
    }

        .home-wrapper .content-type-section-multi-picture-banner-05::after {
            content: "";
            width: 100dvw;
            height: 90%;
            background-color: #b5f5ec;
            position: absolute;
            display: block;
            top: 0;
            z-index: -1;
        }

        .home-wrapper .content-type-section-multi-picture-banner-05 .content-type-section-multi-picture-banner-05-wrapper {
            width: 100%;
            max-width: 1440px;
            margin-inline: auto;
            padding-inline: var(--padding-inline);
            padding-top: 68px;
        }

            .home-wrapper .content-type-section-multi-picture-banner-05 .content-type-section-multi-picture-banner-05-wrapper .title-1 {
                color: #34499d;
                margin-inline: auto;
                font-size: 48px;
                font-weight: 800;
                line-height: 58px;
                letter-spacing: -0.48px;
                max-width: 737px;
                line-height: 58px;
                text-align: center;
            }

            .home-wrapper .content-type-section-multi-picture-banner-05 .content-type-section-multi-picture-banner-05-wrapper .description {
                color: rgba(31, 31, 57, 0.5);
                font-size: 28px;
                font-weight: 400;
                line-height: 45px;
                margin-inline: auto;
                text-align: center;
                margin-top: 10px;
            }

            .home-wrapper .content-type-section-multi-picture-banner-05 .content-type-section-multi-picture-banner-05-wrapper .image-wrapper {
                margin-top: 41px;
                max-width: 1024px;
                margin-inline: auto;
            }

                .home-wrapper .content-type-section-multi-picture-banner-05 .content-type-section-multi-picture-banner-05-wrapper .image-wrapper img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

    .home-wrapper .content-type-section-multi-picture-banner-06 {
        background: linear-gradient(180deg, #e2f6fc 14.25%, rgba(255, 255, 255, 0) 100%);
    }

        .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper {
            width: 100%;
            max-width: 1440px;
            margin-inline: auto;
            padding-inline: var(--padding-inline);
            padding-top: 58px;
            padding-bottom: 68px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            --height: 717px;
            height: var(--height);
        }

            .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .left-content {
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

                .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .left-content .title-1 {
                    color: #333;
                    font-size: 48px;
                    font-weight: 700;
                    line-height: 60px;
                    max-width: 533px;
                }

                .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .left-content .description {
                    margin-top: 16px;
                    color: #333;
                    font-size: 20px;
                    font-weight: 400;
                    line-height: 27px;
                    letter-spacing: 0.323px;
                    max-width: 533px;
                }

                .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .left-content .icon-wrapper {
                    display: flex;
                    gap: 24px;
                    height: 40px;
                    margin-top: 32px;
                }

                    .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .left-content .icon-wrapper img {
                        cursor: pointer;
                    }

            .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .right-content {
                display: flex;
                align-items: center;
            }

                .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .right-content .frame-image-wrapper {
                    position: relative;
                    width: 532px;
                    height: 532px;
                }

                    .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .right-content .frame-image-wrapper .bg-shared {
                        position: absolute;
                        inset: 0;
                        margin: auto;
                        width: 100%;
                    }

                    .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .right-content .frame-image-wrapper .bg-user {
                        position: absolute;
                        bottom: 0;
                        left: 50%;
                        transform: translateX(-50%);
                        border-radius: 100vw;
                    }

                    .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .right-content .frame-image-wrapper .bus {
                        position: absolute;
                        width: 44px;
                        height: 44px;
                        background-color: #fff;
                        box-shadow: 0px 8px 16px 0px rgba(96, 97, 112, 0.16), 0px 2px 4px 0px rgba(40, 41, 61, 0.04);
                        border-radius: 100vw;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        top: 50.17px;
                        left: 57.31px;
                    }

                    .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .right-content .frame-image-wrapper .flight {
                        position: absolute;
                        border-radius: 100vw;
                        background-color: #fff;
                        box-shadow: 0px 8px 16px 0px rgba(96, 97, 112, 0.16), 0px 2px 4px 0px rgba(40, 41, 61, 0.04);
                        height: 40px;
                        width: 166px;
                        color: #636363;
                        font-size: 14px;
                        font-weight: 400;
                        letter-spacing: 0.175px;
                        padding-inline: 28px;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        right: 10px;
                        top: 100px;
                    }

                    .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .right-content .frame-image-wrapper .card-1 {
                        position: absolute;
                        bottom: 0;
                        left: -44px;
                        width: 215px;
                        height: 200px;
                        padding: 5.89px;
                        border-radius: 16px;
                    }

                        .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .right-content .frame-image-wrapper .card-1 img {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                        }

                    .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .right-content .frame-image-wrapper .card-2 {
                        position: absolute;
                        border-radius: 8px;
                        width: 127px;
                        height: 117px;
                        bottom: 144.87px;
                        right: -16.3px;
                        padding: 3.48px;
                    }

                        .home-wrapper .content-type-section-multi-picture-banner-06 .content-type-section-multi-picture-banner-06-wrapper .right-content .frame-image-wrapper .card-2 img {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                        }

    .home-wrapper .brand-menu-type-1 {
        padding-block: 40px;
    }

        .home-wrapper .brand-menu-type-1 .brand-menu-type-1-wrapper {
            max-width: 100%;
            width: 1440px;
            margin-inline: auto;
            padding-inline: var(--padding-inline);
            display: flex;
            justify-content: center;
            align-items: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
        }

            .home-wrapper .brand-menu-type-1 .brand-menu-type-1-wrapper .title-1 {
                color: #000c2c;
                text-align: center;
                font-size: 32px;
                font-weight: 500;
                line-height: 54px;
            }

                .home-wrapper .brand-menu-type-1 .brand-menu-type-1-wrapper .title-1 span {
                    color: #34499d;
                    font-size: 36px;
                    font-weight: 700;
                }

            .home-wrapper .brand-menu-type-1 .brand-menu-type-1-wrapper .list-logo-wrapper {
                display: flex;
                gap: 40px;
                justify-content: center;
                align-items: center;
            }

                .home-wrapper .brand-menu-type-1 .brand-menu-type-1-wrapper .list-logo-wrapper img {
                    cursor: pointer;
                    object-fit: none;
                }

            .home-wrapper .brand-menu-type-1 .brand-menu-type-1-wrapper .mySwiper-brand-menu {
                display: none;
                margin-inline: auto;
                width: 100%;
            }

                .home-wrapper .brand-menu-type-1 .brand-menu-type-1-wrapper .mySwiper-brand-menu .swiper-slide {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: max-content;
                }

                    .home-wrapper .brand-menu-type-1 .brand-menu-type-1-wrapper .mySwiper-brand-menu .swiper-slide .item img {
                        cursor: pointer;
                    }

    .home-wrapper .content-type-section-multi-picture-banner-07 {
        position: relative;
        overflow: hidden;
        height: 1000px;
    }

        .home-wrapper .content-type-section-multi-picture-banner-07::after {
            content: "";
            background: var(--linear);
            height: inherit;
            width: 100dvw;
            display: block;
            position: absolute;
            top: 0;
        }

        .home-wrapper .content-type-section-multi-picture-banner-07::before {
            content: "";
            width: 300dvw;
            height: 300dvw;
            border-radius: 300vw;
            background: white;
            display: block;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 60%;
            z-index: 1;
        }

        .home-wrapper .content-type-section-multi-picture-banner-07 .content-type-section-multi-picture-banner-07-wrapper {
            width: 100%;
            max-width: 1440px;
            margin-inline: auto;
            padding-inline: var(--padding-inline);
            position: relative;
            z-index: 1;
            margin-top: 68px;
        }

            .home-wrapper .content-type-section-multi-picture-banner-07 .content-type-section-multi-picture-banner-07-wrapper .title-1 {
                color: #34499d;
                margin-inline: auto;
                font-size: 48px;
                font-weight: 800;
                line-height: 58px;
                letter-spacing: -0.48px;
                max-width: 737px;
                line-height: 58px;
                text-align: center;
            }

            .home-wrapper .content-type-section-multi-picture-banner-07 .content-type-section-multi-picture-banner-07-wrapper .button-orange-wrapper {
                width: 268px;
                height: 56px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding-left: 28px;
                padding-right: 15px;
                border-radius: 32px;
                border: 1px solid #fff;
                background-color: #fa541c;
                box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
                margin-top: 32px;
                cursor: pointer;
                margin-inline: auto;
            }

                .home-wrapper .content-type-section-multi-picture-banner-07 .content-type-section-multi-picture-banner-07-wrapper .button-orange-wrapper .text {
                    color: #fff;
                    font-size: 16px;
                    font-weight: 600;
                    letter-spacing: 0.16px;
                }

            .home-wrapper .content-type-section-multi-picture-banner-07 .content-type-section-multi-picture-banner-07-wrapper .mySwiper-brand-menu-type5 {
                --max-width: 977px;
                width: var(--max-width);
                margin-top: 30px;
                margin-inline: auto;
            }

                .home-wrapper .content-type-section-multi-picture-banner-07 .content-type-section-multi-picture-banner-07-wrapper .mySwiper-brand-menu-type5 .swiper-slide {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: max-content;
                    height: unset;
                }

                    .home-wrapper .content-type-section-multi-picture-banner-07 .content-type-section-multi-picture-banner-07-wrapper .mySwiper-brand-menu-type5 .swiper-slide .item {
                        display: flex;
                        flex-direction: column;
                        overflow: hidden;
                        height: 100%;
                        padding-bottom: 22px;
                    }

                        .home-wrapper .content-type-section-multi-picture-banner-07 .content-type-section-multi-picture-banner-07-wrapper .mySwiper-brand-menu-type5 .swiper-slide .item .macbook-wrapper {
                            margin-inline: auto;
                            max-width: var(--max-width);
                        }

                            .home-wrapper .content-type-section-multi-picture-banner-07 .content-type-section-multi-picture-banner-07-wrapper .mySwiper-brand-menu-type5 .swiper-slide .item .macbook-wrapper .macbook-frame {
                                width: 100%;
                                height: 100%;
                                object-fit: contain;
                            }

                .home-wrapper .content-type-section-multi-picture-banner-07 .content-type-section-multi-picture-banner-07-wrapper .mySwiper-brand-menu-type5 .swiper-pagination {
                    display: flex;
                    justify-content: center;
                    gap: 9px;
                    position: unset;
                }

                    .home-wrapper .content-type-section-multi-picture-banner-07 .content-type-section-multi-picture-banner-07-wrapper .mySwiper-brand-menu-type5 .swiper-pagination .swiper-pagination-bullet {
                        width: 27px !important;
                        height: 9px !important;
                        background: #dadada !important;
                        border-radius: 100vw !important;
                        opacity: unset;
                    }

                    .home-wrapper .content-type-section-multi-picture-banner-07 .content-type-section-multi-picture-banner-07-wrapper .mySwiper-brand-menu-type5 .swiper-pagination .swiper-pagination-bullet-active {
                        width: 60px !important;
                        background: #34499d !important;
                    }

    .home-wrapper .content-type-form-01 {
        background-color: #34499d;
    }

        .home-wrapper .content-type-form-01 .content-type-form-01-wrapper {
            max-width: 100%;
            width: 1440px;
            margin-inline: auto;
            padding-inline: var(--padding-inline);
            height: 178px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .home-wrapper .content-type-form-01 .content-type-form-01-wrapper .description-wrapper {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

                .home-wrapper .content-type-form-01 .content-type-form-01-wrapper .description-wrapper .title-1 {
                    color: #fff;
                    font-size: 40px;
                    font-weight: 500;
                    line-height: 48px;
                    letter-spacing: -0.4px;
                    margin-bottom: unset;
                }

                .home-wrapper .content-type-form-01 .content-type-form-01-wrapper .description-wrapper .description {
                    color: #fff;
                    font-size: 20px;
                    font-weight: 400;
                    line-height: 31px;
                    letter-spacing: 0.2px;
                    margin-bottom: unset;
                }

            .home-wrapper .content-type-form-01 .content-type-form-01-wrapper .search-box-wrapper {
                border-radius: 100vw;
                border: 1px solid rgba(148, 148, 148, 0.5);
                background-color: #fff;
                width: 568px;
                height: 52px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 5px 5.5px 5px 24px;
                gap: 10px;
            }

                .home-wrapper .content-type-form-01 .content-type-form-01-wrapper .search-box-wrapper input[type=search] {
                    border: none;
                    width: 100%;
                    color: gray;
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 22px;
                    letter-spacing: -0.408px;
                }

                    .home-wrapper .content-type-form-01 .content-type-form-01-wrapper .search-box-wrapper input[type=search]::placeholder {
                        color: #a3a3a3;
                    }

                    .home-wrapper .content-type-form-01 .content-type-form-01-wrapper .search-box-wrapper input[type=search]:focus {
                        outline: none;
                    }

                .home-wrapper .content-type-form-01 .content-type-form-01-wrapper .search-box-wrapper .start-button {
                    border-radius: 100vw;
                    cursor: pointer;
                    background-color: #34499d;
                    color: #fff;
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 22px;
                    letter-spacing: -0.408px;
                    padding-inline: 24px;
                    height: 42px;
                    max-width: 162px;
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                    .home-wrapper .content-type-form-01 .content-type-form-01-wrapper .search-box-wrapper .start-button:hover {
                        opacity: 0.8;
                    }

    .home-wrapper .content-type-grid-image-icon-center .content-type-grid-image-icon-center-wrapper {
        max-width: 100%;
        width: 1440px;
        margin-inline: auto;
        padding-inline: var(--padding-inline);
        padding-block: 68px;
    }

        .home-wrapper .content-type-grid-image-icon-center .content-type-grid-image-icon-center-wrapper .title {
            margin-bottom: unset;
            color: #000;
            font-size: 40px;
            font-weight: 500;
            line-height: 50px;
            text-transform: capitalize;
            text-align: center;
        }

        .home-wrapper .content-type-grid-image-icon-center .content-type-grid-image-icon-center-wrapper .description {
            margin-bottom: unset;
            color: #3d3a41;
            font-size: 20px;
            font-weight: 400;
            line-height: 31px;
            letter-spacing: 0.2px;
            margin-top: 10px;
            text-align: center;
        }

        .home-wrapper .content-type-grid-image-icon-center .content-type-grid-image-icon-center-wrapper .list-item-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            justify-content: space-between;
            column-gap: 10px;
            row-gap: 68px;
            margin-top: 64px;
        }

            .home-wrapper .content-type-grid-image-icon-center .content-type-grid-image-icon-center-wrapper .list-item-wrapper .item {
                max-width: 400px;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 17px;
                margin-inline: auto;
            }

                .home-wrapper .content-type-grid-image-icon-center .content-type-grid-image-icon-center-wrapper .list-item-wrapper .item .image-wrapper {
                    width: 90px;
                    height: 90px;
                    border-radius: 16.364px;
                    box-shadow: 0px 2.04545px 4.09091px -2.04545px rgba(0, 0, 0, 0.1), 0px 2.04545px 6.13636px 0px rgba(0, 0, 0, 0.1);
                }

                    .home-wrapper .content-type-grid-image-icon-center .content-type-grid-image-icon-center-wrapper .list-item-wrapper .item .image-wrapper img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                .home-wrapper .content-type-grid-image-icon-center .content-type-grid-image-icon-center-wrapper .list-item-wrapper .item .title-2 {
                    color: #323b4b;
                    text-align: center;
                    font-size: 24px;
                    font-weight: 700;
                    line-height: 28px;
                    margin-bottom: unset;
                }

                .home-wrapper .content-type-grid-image-icon-center .content-type-grid-image-icon-center-wrapper .list-item-wrapper .item .description-2 {
                    margin-bottom: unset;
                    color: #323b4b;
                    text-align: center;
                    font-size: 20px;
                    font-weight: 400;
                    line-height: 23px;
                    margin-top: auto;
                }

    .home-wrapper .content-type-grid-text-step .content-type-grid-text-step-wrapper {
        max-width: 100%;
        width: 1440px;
        margin-inline: auto;
        padding-inline: var(--padding-inline);
        padding-block: 68px;
    }

        .home-wrapper .content-type-grid-text-step .content-type-grid-text-step-wrapper .title {
            margin-bottom: unset;
            color: #211f25;
            text-align: center;
            font-size: 40px;
            font-weight: 500;
            line-height: 48px;
            letter-spacing: -0.4px;
        }

        .home-wrapper .content-type-grid-text-step .content-type-grid-text-step-wrapper .description {
            margin-bottom: unset;
            margin-top: 10px;
            color: #3d3a41;
            font-size: 20px;
            font-weight: 400;
            line-height: 31px; /* 31px */
            letter-spacing: 0.2px;
            text-align: center;
        }

        .home-wrapper .content-type-grid-text-step .content-type-grid-text-step-wrapper .list-item-wrapper {
            margin-top: 50px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            position: relative;
            grid-gap: 68px;
        }

            .home-wrapper .content-type-grid-text-step .content-type-grid-text-step-wrapper .list-item-wrapper::after {
                content: "";
                background-image: url(../../assets/images/menu-icon/Line\ 20.svg);
                background-position: center;
                background-repeat: no-repeat;
                background-size: auto;
                position: absolute;
                width: 268px;
                height: 5px;
                top: 30px;
                left: calc(33% - 134px);
            }

            .home-wrapper .content-type-grid-text-step .content-type-grid-text-step-wrapper .list-item-wrapper::before {
                content: "";
                background-image: url(../../assets/images/menu-icon/Line\ 20.svg);
                background-position: center;
                background-repeat: no-repeat;
                background-size: auto;
                position: absolute;
                width: 268px;
                height: 5px;
                top: 30px;
                right: calc(33% - 134px);
            }

            .home-wrapper .content-type-grid-text-step .content-type-grid-text-step-wrapper .list-item-wrapper .item {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

                .home-wrapper .content-type-grid-text-step .content-type-grid-text-step-wrapper .list-item-wrapper .item .step {
                    border-radius: 100vw;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background-color: #34499d;
                    width: 68px;
                    height: 68px;
                    color: #fff;
                    font-size: 32px;
                    font-weight: 700;
                }

                .home-wrapper .content-type-grid-text-step .content-type-grid-text-step-wrapper .list-item-wrapper .item .title-1 {
                    margin-top: 20px;
                    margin-bottom: 15px;
                    color: #424242;
                    text-align: center;
                    font-size: 24px;
                    font-weight: 500;
                    line-height: 28px;
                }

                .home-wrapper .content-type-grid-text-step .content-type-grid-text-step-wrapper .list-item-wrapper .item .description-1 {
                    margin-bottom: unset;
                    color: #3d3a41;
                    text-align: center;
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 25px;
                    letter-spacing: 0.32px;
                }

    .home-wrapper .content-type-grid-image-focus .content-type-grid-image-focus-wrapper {
        max-width: 100%;
        width: 1440px;
        margin-inline: auto;
        padding-inline: var(--padding-inline);
        padding-block: 68px;
    }

        .home-wrapper .content-type-grid-image-focus .content-type-grid-image-focus-wrapper .title {
            margin-bottom: unset;
            color: #211f25;
            text-align: center;
            font-size: 40px;
            font-weight: 500;
            line-height: 48px;
            letter-spacing: -0.4px;
        }

        .home-wrapper .content-type-grid-image-focus .content-type-grid-image-focus-wrapper .description {
            margin-bottom: unset;
            margin-top: 10px;
            color: #3d3a41;
            font-size: 20px;
            font-weight: 400;
            line-height: 31px; /* 31px */
            letter-spacing: 0.2px;
            text-align: center;
        }

        .home-wrapper .content-type-grid-image-focus .content-type-grid-image-focus-wrapper .list-item-wrapper {
            margin-top: 68px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

            .home-wrapper .content-type-grid-image-focus .content-type-grid-image-focus-wrapper .list-item-wrapper .item {
                max-width: 405px;
                width: 100%;
                padding: 24px;
                border-radius: 8px;
                height: 591px;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

                .home-wrapper .content-type-grid-image-focus .content-type-grid-image-focus-wrapper .list-item-wrapper .item:has(input[type=radio]:checked) {
                    background-color: rgba(230, 244, 255, 0.6);
                }

                    .home-wrapper .content-type-grid-image-focus .content-type-grid-image-focus-wrapper .list-item-wrapper .item:has(input[type=radio]:checked) .content-wrapper .button-view-more {
                        color: #ff007a;
                    }

                .home-wrapper .content-type-grid-image-focus .content-type-grid-image-focus-wrapper .list-item-wrapper .item input[type=radio] {
                    display: none;
                }

                .home-wrapper .content-type-grid-image-focus .content-type-grid-image-focus-wrapper .list-item-wrapper .item .image-wrapper {
                    height: 300px;
                }

                    .home-wrapper .content-type-grid-image-focus .content-type-grid-image-focus-wrapper .list-item-wrapper .item .image-wrapper img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                .home-wrapper .content-type-grid-image-focus .content-type-grid-image-focus-wrapper .list-item-wrapper .item .content-wrapper {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    flex: 1;
                }

                    .home-wrapper .content-type-grid-image-focus .content-type-grid-image-focus-wrapper .list-item-wrapper .item .content-wrapper .title-1 {
                        margin-bottom: unset;
                        color: #211f25;
                        font-size: 24px;
                        font-weight: 600;
                        line-height: 29px;
                        letter-spacing: -0.24px;
                        margin-top: 33px;
                    }

                    .home-wrapper .content-type-grid-image-focus .content-type-grid-image-focus-wrapper .list-item-wrapper .item .content-wrapper .description-1 {
                        margin-top: 16px;
                        margin-bottom: unset;
                        color: #3d3a41;
                        text-align: center;
                        font-size: 16px;
                        font-weight: 400;
                        line-height: 25px;
                        letter-spacing: 0.32px;
                    }

                    .home-wrapper .content-type-grid-image-focus .content-type-grid-image-focus-wrapper .list-item-wrapper .item .content-wrapper .button-view-more {
                        color: #211f25;
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 25px;
                        letter-spacing: 0.32px;
                        margin-top: auto;
                        cursor: pointer;
                    }

    .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper {
        max-width: 100%;
        width: 1440px;
        margin-inline: auto;
        padding-inline: var(--padding-inline);
        padding-block: 68px;
    }

        .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .title {
            margin-bottom: unset;
            color: #211f25;
            text-align: center;
            font-size: 40px;
            font-weight: 500;
            line-height: 48px;
            letter-spacing: -0.4px;
            text-transform: capitalize;
        }

        .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .description {
            margin-bottom: unset;
            margin-top: 10px;
            color: #3d3a41;
            font-size: 20px;
            font-weight: 400;
            line-height: 31px; /* 31px */
            letter-spacing: 0.2px;
            text-align: center;
        }

        .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            place-content: center;
            margin-top: 25px;
            gap: 10px;
        }

            .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper {
                display: flex;
                flex-direction: column;
            }

                .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item-mobile-display {
                    display: none;
                    max-width: 440px;
                    width: 100%;
                    margin-inline: auto;
                }

                    .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item-mobile-display img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }

                .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item {
                    display: flex;
                    gap: 20px;
                    max-width: 416px;
                    width: 100%;
                    min-height: 150px;
                    padding-top: 30px;
                    border-radius: 8px;
                    padding-inline: 20px;
                    cursor: pointer;
                    border: 0.5px solid transparent;
                }

                    .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item input[type=radio] {
                        display: none;
                    }

                    .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item.active {
                        border: 0.5px solid #ccc;
                        background-color: rgba(230, 244, 255, 0.4);
                    }

                    .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .image-wrapper {
                        position: relative;
                        min-width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }

                        .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .image-wrapper:after {
                            content: "";
                            width: 50px;
                            height: 50px;
                            border-radius: 100vw;
                            opacity: 0.2;
                            position: absolute;
                        }

                        .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .image-wrapper.color-1::after {
                            background-color: #f23936;
                        }

                        .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .image-wrapper.color-2::after {
                            background-color: #45c646;
                        }

                        .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .image-wrapper.color-3::after {
                            background-color: #008eff;
                        }

                    .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .title-wrapper {
                        display: flex;
                        flex-direction: column;
                        gap: 6px;
                    }

                        .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .title-wrapper .title-1 {
                            color: #000;
                            font-size: 24px;
                            font-weight: 500;
                            line-height: 30px;
                            text-transform: capitalize;
                        }

                        .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .title-wrapper .description-1 {
                            color: #000;
                            font-size: 17px;
                            font-weight: 400;
                            line-height: 27px;
                        }

            .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper input[type=radio] {
                display: none;
            }

                .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper input[type=radio]:checked + .right-content {
                    display: flex;
                }

            .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .right-content {
                display: none;
                align-items: center;
                gap: 10px;
            }

                .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .right-content .image-wrapper {
                    max-width: 684px;
                    height: 357px;
                }

                    .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .right-content .image-wrapper img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                        content: var(--img1);
                    }

                .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .right-content .description-1 {
                    display: none;
                    text-align: center;
                    color: #000;
                    text-align: center;
                    font-size: 17px;
                    font-weight: 400;
                    line-height: 27px;
                }

                    .home-wrapper .content-type-tab-image-left-tabicon .content-type-tab-image-left-tabicon-wrapper .list-item-wrapper .right-content .description-1::before {
                        content: var(--content1);
                    }

    .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper {
        max-width: 100%;
        width: 1440px;
        margin-inline: auto;
        padding-inline: var(--padding-inline);
        padding-block: 68px;
    }

        .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .title {
            margin-bottom: unset;
            color: #211f25;
            text-align: center;
            font-size: 40px;
            font-weight: 500;
            line-height: 48px;
            letter-spacing: -0.4px;
            text-transform: capitalize;
        }

        .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .description {
            margin-bottom: unset;
            margin-top: 10px;
            color: #3d3a41;
            font-size: 20px;
            font-weight: 400;
            line-height: 31px; /* 31px */
            letter-spacing: 0.2px;
            text-align: center;
        }

        .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            place-content: center;
            margin-top: 25px;
            gap: 10px;
        }

            .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper.change-order .left-content {
                order: 2;
            }

                .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper.change-order .left-content .left-content-wrapper {
                    align-items: flex-end;
                }

            .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper {
                display: flex;
                flex-direction: column;
            }

                .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item-mobile-display {
                    display: none;
                    max-width: 440px;
                    width: 100%;
                    margin-inline: auto;
                }

                    .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item-mobile-display img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }

                .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item {
                    display: flex;
                    gap: 20px;
                    max-width: 416px;
                    width: 100%;
                    min-height: 150px;
                    padding-top: 30px;
                    border-radius: 8px;
                    padding-inline: 20px;
                    cursor: pointer;
                    border: 0.5px solid transparent;
                }

                    .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item input[type=radio] {
                        display: none;
                    }

                    .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item.active {
                        border: 0.5px solid #ccc;
                        background-color: rgba(230, 244, 255, 0.4);
                    }

                    .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .image-wrapper {
                        position: relative;
                        min-width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }

                        .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .image-wrapper:after {
                            content: "";
                            width: 50px;
                            height: 50px;
                            border-radius: 100vw;
                            opacity: 0.2;
                            position: absolute;
                        }

                        .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .image-wrapper.color-1::after {
                            background-color: #f23936;
                        }

                        .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .image-wrapper.color-2::after {
                            background-color: #45c646;
                        }

                        .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .image-wrapper.color-3::after {
                            background-color: #008eff;
                        }

                    .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .title-wrapper {
                        display: flex;
                        flex-direction: column;
                        gap: 6px;
                    }

                        .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .title-wrapper .title-1 {
                            color: #000;
                            font-size: 24px;
                            font-weight: 500;
                            line-height: 30px;
                            text-transform: capitalize;
                        }

                        .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .left-content .left-content-wrapper .item .title-wrapper .description-1 {
                            color: #000;
                            font-size: 17px;
                            font-weight: 400;
                            line-height: 27px;
                        }

            .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper input[type=radio] {
                display: none;
            }

                .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper input[type=radio]:checked + .right-content {
                    display: flex;
                }

            .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .right-content {
                display: none;
                align-items: center;
                gap: 10px;
            }

                .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .right-content .image-wrapper {
                    max-width: 684px;
                    height: 357px;
                }

                    .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .right-content .image-wrapper img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                        content: var(--img1);
                    }

                .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .right-content .description-1 {
                    display: none;
                    text-align: center;
                    color: #000;
                    text-align: center;
                    font-size: 17px;
                    font-weight: 400;
                    line-height: 27px;
                }

                    .home-wrapper .content-type-tab-image-right-tabicon .content-type-tab-image-right-tabicon-wrapper .list-item-wrapper .right-content .description-1::before {
                        content: var(--content1);
                    }

    .home-wrapper .content-type-grid-image-icon-left .content-type-grid-image-icon-left-wrapper {
        max-width: 100%;
        width: 1440px;
        margin-inline: auto;
        padding-inline: var(--padding-inline);
        padding-block: 68px;
    }

        .home-wrapper .content-type-grid-image-icon-left .content-type-grid-image-icon-left-wrapper .title {
            margin-bottom: unset;
            color: #211f25;
            text-align: center;
            font-size: 40px;
            font-weight: 500;
            line-height: 48px;
            letter-spacing: -0.4px;
            text-transform: capitalize;
        }

        .home-wrapper .content-type-grid-image-icon-left .content-type-grid-image-icon-left-wrapper .description {
            margin-bottom: unset;
            margin-top: 10px;
            color: #3d3a41;
            font-size: 20px;
            font-weight: 400;
            line-height: 31px; /* 31px */
            letter-spacing: 0.2px;
            text-align: center;
        }

        .home-wrapper .content-type-grid-image-icon-left .content-type-grid-image-icon-left-wrapper .list-item-wrapper {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            column-gap: 30px;
            row-gap: 40px;
            padding-block: 30px;
        }

            .home-wrapper .content-type-grid-image-icon-left .content-type-grid-image-icon-left-wrapper .list-item-wrapper .item {
                display: flex;
                gap: 25px;
                padding: 25px;
                border-radius: 8px;
                border: 0.5px solid #ccc;
                background-color: #fff;
                box-shadow: 0px 10px 16px 0px rgba(205, 205, 205, 0.1);
            }

                .home-wrapper .content-type-grid-image-icon-left .content-type-grid-image-icon-left-wrapper .list-item-wrapper .item .image-wrapper {
                    min-width: 50px;
                    max-width: 50px;
                    height: 50px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    overflow: hidden;
                    position: relative;
                }

                    .home-wrapper .content-type-grid-image-icon-left .content-type-grid-image-icon-left-wrapper .list-item-wrapper .item .image-wrapper:after {
                        content: "";
                        position: absolute;
                        inset: 0;
                        opacity: 0.2;
                        background-color: #f27a36;
                        border-radius: 100vw;
                    }

                .home-wrapper .content-type-grid-image-icon-left .content-type-grid-image-icon-left-wrapper .list-item-wrapper .item .content-wrapper .title-1 {
                    color: #000;
                    font-size: 24px;
                    font-weight: 500;
                    line-height: 30px;
                    text-transform: capitalize;
                    margin-bottom: unset;
                }

                .home-wrapper .content-type-grid-image-icon-left .content-type-grid-image-icon-left-wrapper .list-item-wrapper .item .content-wrapper .description-1 {
                    color: #000;
                    font-size: 17px;
                    font-weight: 400;
                    line-height: 27px;
                    margin-top: 6px;
                    margin-bottom: unset;
                }

    .home-wrapper .content-type-grid-image-feedback .content-type-grid-image-feedback-wrapper {
        max-width: 100%;
        width: 1440px;
        margin-inline: auto;
        padding-inline: var(--padding-inline);
        padding-block: 68px;
    }

        .home-wrapper .content-type-grid-image-feedback .content-type-grid-image-feedback-wrapper .title {
            margin-bottom: unset;
            color: #211f25;
            text-align: center;
            font-size: 40px;
            font-weight: 500;
            line-height: 48px;
            letter-spacing: -0.4px;
        }

        .home-wrapper .content-type-grid-image-feedback .content-type-grid-image-feedback-wrapper .description {
            margin-bottom: unset;
            margin-top: 10px;
            color: #3d3a41;
            font-size: 20px;
            font-weight: 400;
            line-height: 31px; /* 31px */
            letter-spacing: 0.2px;
            text-align: center;
        }

        .home-wrapper .content-type-grid-image-feedback .content-type-grid-image-feedback-wrapper .mySwiper-content-type-grid-image-feedback {
            --max-width: 1268px;
            max-width: var(--max-width);
            width: 100%;
            margin-top: 30px;
            margin-inline: auto;
        }

            .home-wrapper .content-type-grid-image-feedback .content-type-grid-image-feedback-wrapper .mySwiper-content-type-grid-image-feedback .swiper-slide {
                display: flex;
                align-items: center;
                justify-content: center;
                width: max-content;
                height: unset;
            }

                .home-wrapper .content-type-grid-image-feedback .content-type-grid-image-feedback-wrapper .mySwiper-content-type-grid-image-feedback .swiper-slide .item {
                    display: flex;
                    flex-direction: column;
                    overflow: hidden;
                    height: 100%;
                    padding-bottom: 40px;
                }

                    .home-wrapper .content-type-grid-image-feedback .content-type-grid-image-feedback-wrapper .mySwiper-content-type-grid-image-feedback .swiper-slide .item .customer-feedback-wrapper {
                        padding: 40px;
                        width: 406px;
                        display: flex;
                        gap: 25px;
                        align-items: center;
                        flex-direction: column;
                    }

                        .home-wrapper .content-type-grid-image-feedback .content-type-grid-image-feedback-wrapper .mySwiper-content-type-grid-image-feedback .swiper-slide .item .customer-feedback-wrapper .avatar-wrapper {
                            width: 168px;
                            height: 168px;
                            border-radius: 100vw;
                        }

                        .home-wrapper .content-type-grid-image-feedback .content-type-grid-image-feedback-wrapper .mySwiper-content-type-grid-image-feedback .swiper-slide .item .customer-feedback-wrapper .title-1 {
                            color: #1f1f39;
                            text-align: center;
                            font-size: 24px;
                            font-weight: 500;
                            line-height: 28px;
                        }

                        .home-wrapper .content-type-grid-image-feedback .content-type-grid-image-feedback-wrapper .mySwiper-content-type-grid-image-feedback .swiper-slide .item .customer-feedback-wrapper .description-1 {
                            color: rgba(31, 31, 57, 0.5);
                            text-align: center;
                            font-size: 20px;
                            font-weight: 400;
                            line-height: 34px;
                        }

            .home-wrapper .content-type-grid-image-feedback .content-type-grid-image-feedback-wrapper .mySwiper-content-type-grid-image-feedback .swiper-pagination-1 {
                display: flex;
                justify-content: center;
                gap: 9px;
                position: unset;
            }

                .home-wrapper .content-type-grid-image-feedback .content-type-grid-image-feedback-wrapper .mySwiper-content-type-grid-image-feedback .swiper-pagination-1 .swiper-pagination-bullet {
                    width: 27px !important;
                    height: 9px !important;
                    background: #dadada !important;
                    border-radius: 100vw !important;
                    opacity: unset;
                }

                .home-wrapper .content-type-grid-image-feedback .content-type-grid-image-feedback-wrapper .mySwiper-content-type-grid-image-feedback .swiper-pagination-1 .swiper-pagination-bullet-active {
                    width: 60px !important;
                    background: #34499d !important;
                }

    .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper {
        max-width: 100%;
        width: 1440px;
        margin-inline: auto;
        padding-inline: var(--padding-inline);
        padding-block: 68px;
    }

        .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .title {
            margin-bottom: unset;
            color: #211f25;
            text-align: center;
            font-size: 40px;
            font-weight: 500;
            line-height: 48px;
            letter-spacing: -0.4px;
        }

        .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .description {
            margin-bottom: unset;
            margin-top: 10px;
            color: #3d3a41;
            font-size: 20px;
            font-weight: 400;
            line-height: 31px; /* 31px */
            letter-spacing: 0.2px;
            text-align: center;
        }

        .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box {
            --max-width: 1268px;
            max-width: var(--max-width);
            width: 100%;
            margin-inline: auto;
            padding-block: 60px;
            padding-inline: 58px;
        }

            .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-slide {
                display: flex;
                align-items: center;
                justify-content: center;
                width: max-content;
                height: unset;
            }

                .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-slide .item {
                    display: flex;
                    flex-direction: column;
                    overflow: hidden;
                    height: 100%;
                    border-radius: 14px;
                    background-color: #fff;
                    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
                }

                    .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-slide .item .customer-feedback-wrapper {
                        padding: 24px;
                        width: 328px;
                        display: flex;
                        align-items: center;
                        flex-direction: column;
                    }

                        .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-slide .item .customer-feedback-wrapper .avatar-wrapper {
                            width: 90px;
                            height: 90px;
                            border-radius: 100vw;
                        }

                        .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-slide .item .customer-feedback-wrapper .title-1 {
                            color: #111827;
                            text-align: center;
                            font-size: 24px;
                            font-weight: 500;
                            line-height: 36px;
                            text-transform: capitalize;
                            margin-top: 16px;
                            margin-bottom: 8px;
                        }

                        .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-slide .item .customer-feedback-wrapper .star {
                            background-image: url(../../assets/images/icon/star.svg);
                            background-repeat: space;
                            height: 48px;
                            width: 237.9px;
                            zoom: 0.7;
                        }

                        .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-slide .item .customer-feedback-wrapper .description-1 {
                            color: #6b7280;
                            font-family: Roboto;
                            font-size: 18px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 150%;
                            margin-bottom: unset;
                            text-align: justify;
                            margin-top: 24px;
                        }

                        .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-slide .item .customer-feedback-wrapper .time {
                            margin-top: 16px;
                            color: #9ca3af;
                            text-align: center;
                            font-size: 16px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 24px;
                        }

            .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-slide-active .item {
                box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
            }

            .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-button-next,
            .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-button-prev {
                width: 40px;
                height: 40px;
                border-radius: 100vw;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #34499d;
                background-repeat: no-repeat;
                background-size: auto;
                background-position: center;
            }

                .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-button-next::after,
                .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-button-prev::after {
                    display: none;
                }

            .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-button-next {
                background-image: url(../../assets/images/menu-icon/Icon-0.svg);
            }

            .home-wrapper .content-type-grid-image-feedback-box .content-type-grid-image-feedback-box-wrapper .mySwiper-content-type-grid-image-feedback-box .swiper-button-prev {
                background-image: url(../../assets/images/menu-icon/Icon.svg);
            }

    .home-wrapper .content-type-grid-image-percent .content-type-grid-image-percent-wrapper {
        max-width: 100%;
        width: 1440px;
        margin-inline: auto;
        padding-inline: var(--padding-inline);
        padding-block: 68px;
    }

        .home-wrapper .content-type-grid-image-percent .content-type-grid-image-percent-wrapper .title {
            margin-bottom: unset;
            color: #211f25;
            text-align: center;
            font-size: 40px;
            font-weight: 500;
            line-height: 48px;
            letter-spacing: -0.4px;
        }

            .home-wrapper .content-type-grid-image-percent .content-type-grid-image-percent-wrapper .title span {
                color: #34499d;
            }

        .home-wrapper .content-type-grid-image-percent .content-type-grid-image-percent-wrapper .description {
            margin-bottom: unset;
            margin-top: 10px;
            color: #3d3a41;
            font-size: 20px;
            font-weight: 400;
            line-height: 31px; /* 31px */
            letter-spacing: 0.2px;
            text-align: center;
        }

        .home-wrapper .content-type-grid-image-percent .content-type-grid-image-percent-wrapper .list-item-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 68px;
        }

            .home-wrapper .content-type-grid-image-percent .content-type-grid-image-percent-wrapper .list-item-wrapper .item {
                display: flex;
                gap: 20px;
            }

                .home-wrapper .content-type-grid-image-percent .content-type-grid-image-percent-wrapper .list-item-wrapper .item .image-wrapper {
                    --size: 101px;
                    position: relative;
                    width: var(--size);
                    height: var(--size);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                    .home-wrapper .content-type-grid-image-percent .content-type-grid-image-percent-wrapper .list-item-wrapper .item .image-wrapper div[role=progressbar] {
                        --fg: #34499d;
                        --bg: #e5e7eb;
                        --pgPercentage: var(--value);
                        animation: growProgressBar 3s 1 forwards;
                        width: var(--size);
                        height: var(--size);
                        border-radius: 50%;
                        display: grid;
                        place-items: center;
                        background: radial-gradient(closest-side, white 85%, transparent 0 99.9%, white 0), conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
                        font-family: Helvetica, Arial, sans-serif;
                        font-size: calc(var(--size) / 5);
                        color: var(--fg);
                        transform: rotateY(180deg);
                    }

                    .home-wrapper .content-type-grid-image-percent .content-type-grid-image-percent-wrapper .list-item-wrapper .item .image-wrapper .center-image-place {
                        position: absolute;
                        inset: 0;
                        margin: auto;
                    }

                .home-wrapper .content-type-grid-image-percent .content-type-grid-image-percent-wrapper .list-item-wrapper .item .content-wrapper .title-1 {
                    color: #111827;
                    font-size: 24px;
                    font-weight: 500;
                    line-height: 36px;
                    text-transform: capitalize;
                    margin-bottom: unset;
                }

                .home-wrapper .content-type-grid-image-percent .content-type-grid-image-percent-wrapper .list-item-wrapper .item .content-wrapper .description-1 {
                    color: #6b7280;
                    font-size: 18px;
                    font-weight: 400;
                    line-height: 27px;
                    margin-top: 8px;
                }

    .home-wrapper .content-type-grid-image-icon-box .content-type-grid-image-icon-box-wrapper {
        max-width: 100%;
        width: 1440px;
        margin-inline: auto;
        padding-inline: var(--padding-inline);
        padding-block: 68px;
    }

        .home-wrapper .content-type-grid-image-icon-box .content-type-grid-image-icon-box-wrapper .title {
            margin-bottom: unset;
            color: #211f25;
            text-align: center;
            font-size: 40px;
            font-weight: 500;
            line-height: 48px;
            letter-spacing: -0.4px;
        }

        .home-wrapper .content-type-grid-image-icon-box .content-type-grid-image-icon-box-wrapper .description {
            margin-bottom: unset;
            margin-top: 10px;
            color: #3d3a41;
            font-size: 20px;
            font-weight: 400;
            line-height: 31px;
            letter-spacing: 0.2px;
            text-align: center;
        }

        .home-wrapper .content-type-grid-image-icon-box .content-type-grid-image-icon-box-wrapper .list-item-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
            margin-inline: auto;
            gap: 20px;
            margin-top: 40px;
        }

            .home-wrapper .content-type-grid-image-icon-box .content-type-grid-image-icon-box-wrapper .list-item-wrapper .item {
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 24px;
                min-height: 368px;
                width: 100%;
                border-radius: 12px;
                border: 1px solid #c6cfd7;
                box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.08);
                gap: 24px;
            }

                .home-wrapper .content-type-grid-image-icon-box .content-type-grid-image-icon-box-wrapper .list-item-wrapper .item .image-wrapper {
                    width: 80px;
                    height: 80px;
                }

                    .home-wrapper .content-type-grid-image-icon-box .content-type-grid-image-icon-box-wrapper .list-item-wrapper .item .image-wrapper img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }

                .home-wrapper .content-type-grid-image-icon-box .content-type-grid-image-icon-box-wrapper .list-item-wrapper .item .content-wrapper {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }

                    .home-wrapper .content-type-grid-image-icon-box .content-type-grid-image-icon-box-wrapper .list-item-wrapper .item .content-wrapper .title-1 {
                        margin-bottom: unset;
                        color: #1d242a;
                        text-align: center;
                        font-size: 24px;
                        font-weight: 500;
                        line-height: 28px;
                    }

                    .home-wrapper .content-type-grid-image-icon-box .content-type-grid-image-icon-box-wrapper .list-item-wrapper .item .content-wrapper .description-1 {
                        margin-top: 15px;
                        margin-bottom: unset;
                        color: #5c7184;
                        text-align: center;
                        font-size: 18px;
                        font-weight: 400;
                        line-height: 25px;
                        letter-spacing: -0.408px;
                    }

    .home-wrapper .content-type-grid-image-icon-flow {
        background-color: #ffffff;
    }

        .home-wrapper .content-type-grid-image-icon-flow .content-type-grid-image-icon-flow-wrapper {
            max-width: 100%;
            width: 1440px;
            margin-inline: auto;
            padding-inline: var(--padding-inline);
            padding-block: 68px;
        }

            .home-wrapper .content-type-grid-image-icon-flow .content-type-grid-image-icon-flow-wrapper .title {
                font-weight: 600;
                font-size: 40px;
                line-height: 47px;
                text-align: center;
                color: #424242;
                margin-bottom: unset;
            }

            .home-wrapper .content-type-grid-image-icon-flow .content-type-grid-image-icon-flow-wrapper .title-2 {
                font-weight: 400;
                font-size: 18px;
                line-height: 25px;
                text-align: center;
                letter-spacing: -0.408px;
                color: rgba(34, 51, 84, 0.5);
                max-width: 720px;
                margin-top: 15px;
                margin-inline: auto;
                margin-bottom: unset;
            }

            .home-wrapper .content-type-grid-image-icon-flow .content-type-grid-image-icon-flow-wrapper .list-item {
                display: grid;
                grid-template-columns: repeat(3, 280px);
                gap: 140px;
                justify-content: center;
                position: relative;
                margin-top: 131.13px;
            }

                .home-wrapper .content-type-grid-image-icon-flow .content-type-grid-image-icon-flow-wrapper .list-item::after {
                    content: "";
                    background-image: url(../../assets/images/icon/line-1.svg);
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                    width: 918px;
                    height: 180.95px;
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    z-index: 0;
                    top: -15px;
                }

                .home-wrapper .content-type-grid-image-icon-flow .content-type-grid-image-icon-flow-wrapper .list-item .item {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                }

                    .home-wrapper .content-type-grid-image-icon-flow .content-type-grid-image-icon-flow-wrapper .list-item .item img {
                        height: 158px;
                        object-fit: contain;
                        position: relative;
                        z-index: 1;
                    }

                    .home-wrapper .content-type-grid-image-icon-flow .content-type-grid-image-icon-flow-wrapper .list-item .item .content-wrapper {
                        display: flex;
                        flex-direction: column;
                    }

                        .home-wrapper .content-type-grid-image-icon-flow .content-type-grid-image-icon-flow-wrapper .list-item .item .content-wrapper .main-title {
                            font-weight: 500;
                            font-size: 24px;
                            line-height: 28px;
                            color: #34499d;
                            margin-top: 24px;
                            margin-inline: auto;
                        }

                        .home-wrapper .content-type-grid-image-icon-flow .content-type-grid-image-icon-flow-wrapper .list-item .item .content-wrapper .sub-title {
                            font-weight: 400;
                            font-size: 18px;
                            line-height: 25px;
                            text-align: center;
                            letter-spacing: -0.408px;
                            color: #585757;
                            max-width: 280px;
                            margin-top: 16px;
                        }

    .home-wrapper .content-type-grid-image-logo .content-type-grid-image-logo-wrapper {
        max-width: 100%;
        width: 1440px;
        margin-inline: auto;
        padding-inline: var(--padding-inline);
        padding-block: 68px;
    }

        .home-wrapper .content-type-grid-image-logo .content-type-grid-image-logo-wrapper .title {
            margin-bottom: unset;
            color: #000;
            font-size: 40px;
            font-weight: 500;
            line-height: 50px;
            text-transform: capitalize;
            text-align: center;
        }

        .home-wrapper .content-type-grid-image-logo .content-type-grid-image-logo-wrapper .list-item-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

            .home-wrapper .content-type-grid-image-logo .content-type-grid-image-logo-wrapper .list-item-wrapper .item {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 25px;
                height: 89px;
                border-radius: 8px;
                border: 0.5px solid #ccc;
                box-shadow: 0px 44.20383px 52.0045px 0px rgba(205, 205, 205, 0.16);
            }

                .home-wrapper .content-type-grid-image-logo .content-type-grid-image-logo-wrapper .list-item-wrapper .item img {
                    max-width: 168px;
                    max-height: 39px;
                }

    .home-wrapper .content-type-form-02 .content-type-form-02-wrapper {
        max-width: 100%;
        width: 1440px;
        margin-inline: auto;
        padding-inline: var(--padding-inline);
        position: relative;
        min-height: 519px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .home-wrapper .content-type-form-02 .content-type-form-02-wrapper .frame-top {
            position: absolute;
            top: 0;
            left: 0;
        }

        .home-wrapper .content-type-form-02 .content-type-form-02-wrapper .frame-bottom {
            position: absolute;
            bottom: 0;
            right: 0;
        }

        .home-wrapper .content-type-form-02 .content-type-form-02-wrapper .title-wrapper {
            display: flex;
            flex-direction: column;
            margin-inline: auto;
            gap: 26px;
            margin-bottom: 68px;
        }

            .home-wrapper .content-type-form-02 .content-type-form-02-wrapper .title-wrapper .title {
                color: #34499d;
                text-align: center;
                font-size: 40px;
                font-weight: 500;
                line-height: 48px;
                letter-spacing: -0.4px;
                text-transform: capitalize;
            }

            .home-wrapper .content-type-form-02 .content-type-form-02-wrapper .title-wrapper .description {
                color: #424242;
                text-align: center;
                font-size: 20px;
                font-weight: 400;
                line-height: 31px;
                letter-spacing: 0.2px;
                text-transform: capitalize;
            }

        .home-wrapper .content-type-form-02 .content-type-form-02-wrapper .search-box-wrapper {
            border-radius: 100vw;
            border: 1px solid rgba(148, 148, 148, 0.5);
            background-color: #fff;
            width: 568px;
            height: 52px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 5.5px 5px 24px;
            gap: 10px;
            margin-inline: auto;
        }

            .home-wrapper .content-type-form-02 .content-type-form-02-wrapper .search-box-wrapper input[type=search] {
                border: none;
                width: 100%;
                color: gray;
                font-size: 16px;
                font-weight: 400;
                line-height: 22px;
                letter-spacing: -0.408px;
            }

                .home-wrapper .content-type-form-02 .content-type-form-02-wrapper .search-box-wrapper input[type=search]::placeholder {
                    color: #a3a3a3;
                }

                .home-wrapper .content-type-form-02 .content-type-form-02-wrapper .search-box-wrapper input[type=search]:focus {
                    outline: none;
                }

            .home-wrapper .content-type-form-02 .content-type-form-02-wrapper .search-box-wrapper .start-button {
                border-radius: 100vw;
                cursor: pointer;
                background-color: #34499d;
                color: #fff;
                font-size: 16px;
                font-weight: 400;
                line-height: 22px;
                letter-spacing: -0.408px;
                padding-inline: 24px;
                height: 42px;
                max-width: 162px;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .home-wrapper .content-type-form-02 .content-type-form-02-wrapper .search-box-wrapper .start-button:hover {
                    opacity: 0.8;
                }

.button {
    padding-inline: 30px;
    background-color: #ff007a;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 4px;
    height: 39px;
    display: flex;
    align-items: center;
    width: max-content;
}

    .button:hover {
        background-color: rgba(255, 82, 82, 0.7803921569);
    }

@keyframes growProgressBar {
    0%, 33% {
        --pgPercentage: 0;
    }

    100% {
        --pgPercentage: var(--value);
    }
}

@property --pgPercentage {
    syntax: "<number>";
    inherits: false;
    initial-value: 0;
}

.hiddenAnimation11 {
    transition: all 0.9s;
    transform: translateY(10%);
    opacity: 0.5;
}

.showWithAnimation11 {
    opacity: 1;
    transform: translateY(0);
}

.hiddenAnimation12 {
    transition-delay: 1s;
    transition: all 10s;
    transform: scale(0) translate(0, -50%);
    opacity: 0;
}

.showWithAnimation12 {
    opacity: 1;
    transform: scale(1) translate(0, 0);
}

.hiddenAnimation13 {
    transition-delay: 1s;
    transition: all 1s;
    transform: scale(0) translate(300px, -50%);
    opacity: 0;
}

.showWithAnimation13 {
    opacity: 1;
    transform: scale(1) translate(0, 0);
}

.hiddenAnimation14 {
    transition-delay: 2s;
    transition: all 2s;
    transform: translate(0, 400%);
    opacity: 0;
}

.showWithAnimation14 {
    opacity: 1;
    transform: translate(0, 0);
}

/*# sourceMappingURL=menu.css.map */
