@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --thm-font: "Inter", sans-serif;
    --thm-font-2: "reeyregular";
    --thm-base: rgb(0, 48, 73);
    --thm-primary: rgb(3, 40, 54);
    --thm-primary-rgb: 24, 41, 120;
    --thm-gray: #515151;
    --thm-gray-rgb: 81, 81, 81;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
    --thm-black: #202020;
    --thm-black-rgb: 32, 32, 32;
    --thm-gray-bg: #f5f5f5;
    --thm-main-bg: #202020;
}

:root {
    --swiper-theme-color: #007aff;
}


* {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: var(--thm-font);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

html {
    scroll-behavior: smooth;
}

/* HEADING */

.heading{
    width: 100%;
    height: 300px;
    /* background-color: #515151; */
    margin-top: 200px;
    background: url("../image/background-top.jpg");

    .its-cover{
        width: 100%;
        height: 100%;
        display: flex;
        background-color: rgba(53, 83, 94, 0.803);
        justify-content: center;
        align-items: center;
        color: #ffffff;
        padding-top: 100px;
        font-size: 25px;
    }
}

/* INVESTMENT PLAN */

.investment-plans {
    width: 100%;
    height: fit-content;
    padding: 80px 70px 80px 70px;
    background-color: var(--thm-primary);
    text-align: center;


    .top p {
        font-size: 18px;
        font-weight: 700;
        color: rgb(255, 195, 0);
    }

    .top h2 {
        width: 60%;
        font-size: 45px;
        font-weight: 700;
        color: var(--thm-white);
        margin: 20px auto;
        line-height: 50px;
        background: linear-gradient(to right, rgb(108, 152, 235), rgb(125, 70, 108), rgb(237, 85, 116));
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
    }

    .down {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        grid-gap: 20px;
        margin-top: 100px;


        .plan {
            border: 1px solid rgb(231, 54, 103);
            height: 550px;
            border-radius: 10px;
            background-color: rgb(16, 51, 64);

            .top-plan {
                padding: 40px 25px 5px 25px;


                img {
                    width: 50px;
                    height: 50px;
                }

                h3 {
                    font-size: 25px;
                    font-weight: 700;
                    color: var(--thm-white);
                    margin-top: 20px;
                    text-align: left;
                }

                p {
                    font-size: 13px;
                    font-weight: 500;
                    color: rgb(208, 167, 28);
                    text-align: left;
                }
            }

            .middle-plan {
                padding: 20px 25px 20px 25px;

                .mid-info {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    color: var(--thm-white);
                    font-weight: 600;
                    font-size: 14px;
                    margin-bottom: 20px;


                    .amount p {
                        background-color: rgb(31, 114, 112);
                        padding: 5px 10px;
                        border-radius: 5px;
                    }

                    .notice {
                        color: rgb(208, 167, 28);
                        font-size: 11px;
                    }
                }
            }

            .down-plan {
                padding: 10px 20px 20px 20px;
            }

            .down-plan a {
                text-decoration: none;
                color: var(--thm-white);
                font-size: 13px;
                font-weight: 600;
                cursor: pointer;
                background: linear-gradient(to right, rgb(231, 54, 103), rgb(241, 88, 70), rgb(252, 126, 25));
                transition: background-color 0.5s;
                padding: 17px 80px;
                border-radius: 100px;

                &:hover {
                    background: linear-gradient(to right, rgb(231, 54, 103), rgb(231, 54, 103));
                }
            }

        }

        .plan:hover {
            box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
            transform: scale(1.02);
            transition: all 0.3s;
        }
    }

}