@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

html {
    scroll-behavior: smooth;
}

.menu {
    padding: 10px 5rem;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
    font-family: "Kanit";
    width: 100%;
    position: fixed;
    z-index: 1000;

    .menu-content {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;

        .logo {
            max-width: 150px;
            cursor: pointer;

            img {
                width: 100%;
            }
        }

        .menu-list {
            display: flex;

            .menu-title {
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                gap: 20px;
                margin-right: 20px;
            }

            .menu-title a {
                color: #816cff;
                position: relative;
            }

            .menu-title a::after {
                content: '';
                position: absolute;
                border-radius: 20px;
                height: 2px;
                left: 0;
                bottom: 0;
                width: 0;
                background: #816CFF;
                transition: width .35s;

            }

            .menu-title a:hover:after {
                width: 100%;
            }

            .action {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;

                .btn-demo {
                    border: none;
                    border-radius: 5px;
                    cursor: pointer;
                    width: 150px;
                    font-weight: 300;
                    padding-top: 9px;
                    padding-bottom: 9px;
                }

                .btn-gradient {
                    background: linear-gradient(115deg, #816cff 34.2%, #A9BDFE 136.43%);
                }

                .btn-demo:hover {
                    opacity: 0.9;
                    color: white;
                }

                .sign {
                    font-weight: 300;
                    cursor: pointer;
                    color: #816CFF;
                    border: 1px solid #816CFF;
                    background-color: white;
                    width: 150px;
                    border-radius: 5px;
                    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
                }

                .sign:hover {
                    font-weight: 300;
                    color: white;
                    background: linear-gradient(115deg, #816cff 34.2%, #A9BDFE 136.43%);
                }

            }

            .dropdown {
                padding-bottom: 3px;
                margin-left: 20px;
                border-left: 1px solid #816CFF;
                padding-left: 20px;

                display: flex;
                justify-content: center;
                align-items: center;

                .dd-lang img {
                    cursor: pointer;
                    width: 30px;
                    height: 30px;
                    border-radius: 100px;
                }

                .dropdown-toggle {
                    cursor: pointer;
                }

                .dropdown-menu {
                    width: 100px;
                }

            }

        }

        .menu-mobile {
            display: flex;
            align-items: center;
            justify-content: center;

            .btn-group {
                .custom-menu {
                    font-size: 38px;
                    cursor: pointer;
                    color: #816CFF;
                }

                .dd-custom {
                    width: 250px;
                    padding: 20px;
                    background-color: #ffffff;
                    border-radius: 10px;
                }

                .custom-flex {
                    display: flex;
                    flex-direction: column;
                }

                .dd-custom a {
                    padding: 10px 15px;
                    margin-bottom: 5px;
                }

                .dd-custom a:hover {
                    background-color: #f8f8f8;
                    border-radius: 5px;
                }
            }

            .dropdown {
                padding-bottom: 3px;
                padding-left: 15px;
                cursor: pointer;
                display: flex;
                justify-content: center;
                align-items: center;

                .dd-lang img {
                    width: 25px;
                    height: 25px;
                    border-radius: 100px;
                }

                .dropdown-menu {
                    width: 100px;
                }
            }
        }
    }
}


.menu.scrolled {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 3px 5px rgb(0, 0, 0, 0.05);
}

.banner {
    font-family: "Kanit";
    padding-top: 2%;
    display: flex;
    justify-content: center;
    gap: 50px;

    .banner-content {
        padding-top: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;

        .banner-content1 {
            color: #816cff;

            .banner-label {
                font-weight: 600;
                font-size: 72px;
                max-width: 600px;
            }

            .banner-sublabel2 {
                max-width: 350px;
                font-size: 20px;
                font-weight: 300;
            }

            .demo-label {
                color: white;
                background: linear-gradient(115deg, #816cff 34.2%, #A9BDFE 136.43%);
                border: none;
                padding: 11px;
                border-radius: 5px;
                cursor: pointer;
                font-weight: 300;
                padding-left: 60px;
                padding-right: 60px;
            }

            .demo-label:hover {
                opacity: 0.9;
                color: white;
            }

        }
    }

    .image-content1 {
        padding-top: 100px;
    }

}

.demo {
    background: linear-gradient(115deg, #816cff 34.2%, #A9BDFE 136.43%);
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
}

.demo:hover {
    opacity: 0.9;
    color: white;
}

.burgundy-bg {
    margin-top: 100px;

    background: linear-gradient(to top right, #5C4BC6 34.2%, #A9BDFE 136.43%);
    height: fit-content;
    position: relative;

    .clip-path-background {
        background-color: #ffffff;
        border: 1px solid #ffffff;
        clip-path: polygon(0 0, 130% 0, 50% 100%, 0 38%);
        top: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        text-align: center;

        .partner-section {
            font-family: "Kanit";

            .partner {
                text-align: center;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                margin-bottom: 25vh;

            }

            .partner h2 {
                font-size: 20px;
                font-weight: 300;
                padding-bottom: 20px;
                color: #343434;
            }
        }

    }

    .burgundy {
        padding-top: 100px;
        font-family: "Kanit";
        color: #ffffff;
        display: flex;
        flex-direction: column;
        padding-bottom: 200px;

        .burgundy-title {
            width: 100%;
            display: flex;
            justify-content: center;
            font-weight: 500;
            font-size: 38px;
            padding-bottom: 50px;
        }

        .burgundy-content {
            display: flex;
            justify-content: space-between;
            padding-bottom: 100px;

            .burgundy-content1 {
                max-width: 450px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 70px;

                .burgundy-title1 h3 {
                    font-size: 36px;
                    font-weight: 500;
                }

                .burgundy-title1 span {
                    font-weight: 300;
                    font-size: 20px;
                }

                .burgundy-title2 h3 {
                    font-size: 36px;
                    font-weight: 500;
                }

                .burgundy-title2 span {
                    font-weight: 300;
                    font-size: 20px;
                }

                .burgundy-title3 h3 {
                    font-size: 36px;
                    font-weight: 500;
                }

                .burgundy-title3 span {
                    font-weight: 300;
                    font-size: 20px;
                }
            }

            .burgundy-content2 img {
                max-width: 480px;
                height: 500;
                border-radius: 37px;
            }
        }

        .manage-expenses {

            .me-content1 {
                display: flex;
                align-items: center;
                padding-bottom: 100px;
                width: 100%;
                justify-content: space-between;

                .me-img {
                    max-width: 580px;
                }

                .me-img img {
                    width: 100%;
                }

                .descrition-me {
                    display: flex;
                    flex-direction: column;
                    align-items: start;
                    gap: 20px;
                    max-width: 500px;

                    .title-me {
                        font-size: 36px;
                        font-weight: 500;
                    }

                    .subtitle-me {
                        font-size: 20px;
                        font-weight: 300;
                    }
                }
            }

            .me-content2 {
                display: flex;
                align-items: center;
                width: 100%;
                justify-content: space-between;

                .me-img {
                    max-width: 550px;
                }

                .me-img img {
                    width: 100%;
                }

                .descrition-me {
                    display: flex;
                    flex-direction: column;
                    align-items: start;
                    gap: 20px;
                    max-width: 500px;

                    .title-me {
                        font-size: 36px;
                        font-weight: 500;
                    }

                    .subtitle-me {
                        font-size: 20px;
                        font-weight: 300;
                    }
                }
            }
        }
    }

    .promote-burgundy {
        font-family: "Kanit";
        background-color: #ffffff;
        position: absolute;
        padding: 50px 80px 50px 80px;
        color: #343434;
        bottom: -65px;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1;
        border-radius: 20px;
        display: flex;
        justify-content: center;
        align-items: center;

        .promote-burgundy-title {
            font-size: 26px;
            font-weight: 400;
        }
    }

}

.burgundy-feature {
    font-family: "Kanit";
    padding-top: 150px;
    background-color: rgba(207, 207, 207, 0.25);

    .burg-fea1 {
        display: flex;
        gap: 50px;
        padding-bottom: 100px;

        .card-fea1 {
            background-color: #ffffff;
            border-radius: 21px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: max-content;
            gap: 20px;

            .title-fea1 {
                font-size: 36px;
            }

            .subtitle-fea1 {
                font-size: 20px;
                font-weight: 300;
            }
        }
    }

    .bur-fea1 {
        max-width: 320px;

    }

    .bur-fea1 img {
        width: 100%;
        border-radius: 21px;
    }

    .burg-fea2 {
        display: flex;
        gap: 50px;

        .card-fea2 {
            background-color: #ffffff;
            border-radius: 21px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;

            .title-fea2 {
                font-size: 36px;
            }

            .subtitle-fea2 {
                font-size: 20px;
                font-weight: 300;
            }
        }

        .bur-fea2 {
            max-width: 320px;

            img {
                border-radius: 21px;
            }
        }
    }



    .burg-fea3 {
        display: flex;
        gap: 50px;
        position: relative;
        top: 100px;
        z-index: 2;
        justify-content: center;

        .card-fea3 {
            background-color: #ffffff;
            border-radius: 21px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;

            .title-fea3 {
                font-size: 36px;
            }

            .subtitle-fea3 {
                font-size: 20px;
                font-weight: 300;
            }
        }
    }

    .bur-fea3 {
        max-width: 320px;

    }

    .bur-fea3 img {
        width: 100%;
        border-radius: 21px;
    }

}

.promote-account {
    font-family: "Kanit";
    position: relative;
    background: linear-gradient(to top right, #3a3174 34.2%, #5C4BC5 136.43%);
    width: 100%;
    height: fit-content;
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 0;

    .promote-content {
        padding-top: 100px;
        gap: 30px;

        .pm-title {
            padding-bottom: 10px;
            font-size: 36px;
            font-weight: 500;
        }

        .pm-img {
            max-width: 900px;
        }

        .pm-img img {
            max-width: 100%;
        }

        .pm-subtitle {
            max-width: 680px;

            .pm-subtitle1 {
                font-size: 26px;
            }

            .pm-subtitle2-2 {
                display: flex;
                align-items: center;
                padding-bottom: 15px;

                .custom-pm {
                    font-size: 28px;
                    font-weight: bold;
                    padding-right: 10px;
                }

                .pm-subtitle2 {
                    font-size: 18px;

                }
            }
        }
    }
}

.attribute-sec {
    padding-top: 100px;
    padding-bottom: 100px;
    font-family: "Kanit";

    .attribute-content0 {
        padding-bottom: 150px;
        display: flex;
        justify-content: center;
        position: relative;

        /* .attribute-description {
            background-color: rgb(189, 137, 137);
            position: absolute;
            top: 0;
            left: 0;
            margin-left: 150px;
            z-index: 1;
            padding: 10px;
        } */

        .attribute-img {
            position: relative;
            z-index: 0;
        }

    }

    .attribute-content {
        display: flex;
        justify-content: space-between;

        .attribute-img {
            max-width: 600px;

            img {
                width: 100%;
            }
        }


        .attribute {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 60px;

            .attribute-title {
                font-size: 36px;
                font-weight: 500;
                padding-bottom: 40px;
            }

            .attribute-subtitle {

                .attribute-subtitle-1 {
                    display: flex;
                    align-items: center;
                    padding-bottom: 10px;

                    .custom-icon {
                        font-size: 28px;
                        color: green;
                        font-weight: bold;
                        padding-right: 10px;
                    }

                    .atb-subtitle-1 {
                        display: flex;
                        align-items: center;
                        font-size: 20px;
                        font-weight: 500;
                    }

                }
            }
        }
    }
}


.tutorial-burg {
    background: linear-gradient(to top right, #3a3174 34.2%, #5C4BC5 136.43%);
    width: 100%;

    .tutorial-content {
        padding-top: 100px;
        padding-bottom: 100px;
        width: 100%;
        display: flex;
        justify-content: space-around;
        gap: 50px;

        .frame-vdo {
            .vdo {
                background-color: #ffffff;
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                height: 325px;
                border-radius: 20px;

                .play-vdo {
                    background-color: rgba(129, 108, 255, 0.6);
                    width: 90px;
                    height: 90px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 50px;
                    padding-left: 7px;
                }

                &:hover .play-vdo {
                    width: 95px;
                    height: 95px;
                }
            }
        }

        .about-vdo {
            color: white;
            font-family: "Kanit";
            max-width: 440px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 15px;

            .title-vdo {
                font-size: 36px;
                font-weight: 600;
            }

            .subtitle-vdo {
                font-weight: 300;
            }

            .btn-vdo {
                background: linear-gradient(115deg, #816cff 34.2%, #A9BDFE 136.43%);
                color: white;
                border: none;
                padding: 10px;
                border-radius: 5px;
                cursor: pointer;
                max-width: 160px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .btn-vdo:hover {
                opacity: 0.9;
                color: white;
                text-decoration: none;
            }
        }
    }
}

footer {
    font-family: "Kanit";

    .company-footer {
        display: flex;
        justify-content: space-between;
    }

    .btn-news {
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
    }

    .btn-gradient {
        background: linear-gradient(115deg, #816cff 34.2%, #A9BDFE 136.43%);
    }

    .btn-news:hover {
        opacity: 0.9;
        color: white;
    }

    .logo-com {
        background-color: white;
        width: 130px;
        cursor: pointer;
        padding: 5px;
        border-radius: 10px;
        margin-bottom: 15px;
        padding-left: 10px;
        padding-right: 15px;

        img {
            width: 100%;
        }
    }

    .other-contact {
        display: flex;
        flex-direction: column;

        .icon {
            gap: 10px;

            .icon-contact {
                width: 35px;
                gap: 10px;
                padding-bottom: 10px;

                img {
                    gap: 10px;
                    width: 100%;
                }
            }
        }
    }
}

@media screen and (max-width: 1140px) {

    .banner {
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        .image-content1 {
            display: flex;
            padding-top: 0px;
            max-width: 660px;
        }

        .image-content1 img {
            width: 100%;
        }
    }

}
@media screen and (max-width: 1305px) {
    .burgundy-feature {
        .burg-fea2 {
            .bur-fea2 {
                max-width: 320px;

                img {
                    width: 320px;
                    border-radius: 21px;
                }
            }
        }
    }
}
@media screen and (min-width: 990px) {
    .menu {
        .menu-content {
            .menu-mobile {
                display: none;
            }
        }
    }

}

@media screen and (max-width: 768px) {
    .menu {
        padding: 5px;

        .menu-content {
            display: flex;
            width: 100%;
            justify-content: space-between;

            .menu-list {
                display: none;
            }

            .menu-mobile {
                display: flex;
            }
        }
    }

    .burgundy-bg {
        .promote-burgundy {
            .promote-burgundy-title {
                font-size: 18px;
                font-weight: 400;
            }
        }

        .clip-path-background {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            .partner-section {
                width: 100%;
                .partner {
                    margin-bottom: 5vh;
                    .carousel-inner {
                        height: 70px;
                    }
                }
            }
        }
    }

    .banner {
        font-family: "Kanit";
        padding-top: 2%;
        display: flex;
        justify-content: center;
        gap: 50px;

        .banner-content {
            padding-top: 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 50px;
            z-index: 5;

            .banner-content1 {
                color: #816cff;

                .banner-label {
                    font-weight: 600;
                    font-size: 48px;
                    max-width: 600px;
                }

                .banner-sublabel2 {
                    max-width: 350px;
                    font-size: 20px;
                    font-weight: 300;
                }

                .demo-label {
                    color: white;
                    background: linear-gradient(115deg, #816cff 34.2%, #A9BDFE 136.43%);
                    border: none;
                    padding: 11px;
                    border-radius: 5px;
                    cursor: pointer;
                    font-weight: 300;
                    padding-left: 60px;
                    padding-right: 60px;
                }

                .demo-label:hover {
                    opacity: 0.9;
                    color: white;
                }

            }
        }

    }

}

@media screen and (max-width: 430px) {
    .menu {
        .menu-content {
            align-items: center;
        }
    }

    .banner {
        .banner-content {
            .banner-content1 {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;

                .banner-label {
                    padding-left: 20px;
                }
            }
        }

        .image-content1 img {
            padding: 10px;
        }
    }

    .burgundy-bg {
        .burgundy {
            .manage-expenses {
                .me-content1 {
                    padding-bottom: 50px;

                    .descrition-me {
                        margin-top: 20px;
                        gap: 5px;
                    }
                }

                .me-content2 {
                    .descrition-me {
                        margin-top: 20px;
                        gap: 5px;
                    }
                }
            }
        }

        .clip-path-background {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);

            .partner-section {
                width: 100%;
                .partner {
                    .carousel-inner {
                        height: 70px;
                    }
                }
            }
        }
    }

    .attribute-sec {
        margin: 10px;
        padding-top: 60px;
        padding-bottom: 60px;

        .attribute-content {
            .attribute {
                padding-left: 0px;

                .attribute-title {
                    padding-top: 30px;
                    padding-bottom: 5px;
                }
            }
        }
    }

    footer {
        .company-footer {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .other-contact {
            .icon {
                padding-top: 15px;
                display: flex;
                justify-content: center;
            }
        }
    }
}

.logo-carousel {
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    white-space: nowrap;
}

.logo-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    animation: scroll 60s linear infinite;

}
.logo-wrapper .image{
    max-height: 80px;
}
.logo-wrapper img {
    margin-right: 80px;
    max-height: 110px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.logo-wrapper img:hover {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.modal-dialog{
    width: 100%;
    max-width: 700px !important;
    
}
.youtube-iframe{
    height: 400px !important;
}