@media screen and (min-width: 300px){
    .heading{
        width: 100%;
        height: 300px;
        margin-top: 150px;
        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: 20px;
        }
    }

    .investment-plans {
        width: 100%;
        height: fit-content;
        padding: 50px 10px 50px 10px;
        background-color: var(--thm-primary);
        text-align: center;
    
    
        .top p {
            font-size: 12px;
            font-weight: 700;
            color: rgb(255, 195, 0);
        }
    
        .top h2 {
            width: 100%;
            font-size: 25px;
            font-weight: 700;
            color: var(--thm-white);
            margin: 20px auto;
            line-height: 30px;
            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: 50px;
    
    
            .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;
            }
        }
    
    }
}

@media screen and (min-width: 350px){
    .heading{
        width: 100%;
        height: 300px;
        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: 20px;
        }
    }

    .investment-plans {
        width: 100%;
        height: fit-content;
        padding: 50px 15px 50px 15px;
        background-color: var(--thm-primary);
        text-align: center;
    
    
        .top p {
            font-size: 12px;
            font-weight: 700;
            color: rgb(255, 195, 0);
        }
    
        .top h2 {
            width: 100%;
            font-size: 25px;
            font-weight: 700;
            color: var(--thm-white);
            margin: 20px auto;
            line-height: 30px;
            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: 50px;
    
    
            .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;
            }
        }
    
    }
}

@media screen and (min-width: 750px){
    .heading{
        width: 100%;
        height: 300px;
        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: 20px;
        }
    }

    .investment-plans {
        width: 100%;
        height: fit-content;
        padding: 50px 15px 50px 15px;
        background-color: var(--thm-primary);
        text-align: center;
    
        .top p {
            font-size: 15px;
            font-weight: 700;
            color: rgb(255, 195, 0);
        }
    
        .top h2 {
            width: 100%;
            font-size: 30px;
            font-weight: 700;
            color: var(--thm-white);
            margin: 20px auto;
            line-height: 30px;
            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: 50px;
    
    
            .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;
            }
        }
    
    }
}

@media screen and (min-width: 800px){
    .heading{
        width: 100%;
        height: 300px;
        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: 20px;
        }
    }

    .investment-plans {
        width: 100%;
        height: fit-content;
        padding: 50px 30px 50px 30px;
        background-color: var(--thm-primary);
        text-align: center;
    
    
        .top p {
            font-size: 18px;
            font-weight: 700;
            color: rgb(255, 195, 0);
        }
    
        .top h2 {
            width: 100%;
            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: 50px;
    
    
            .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;
            }
        }
    
    }
}

@media screen and (min-width: 1100px){
    .heading{
        width: 100%;
        height: 300px;
        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: 20px;
        }
    }

    .investment-plans {
        width: 100%;
        height: fit-content;
        padding: 50px 50px 50px 50px;
        background-color: var(--thm-primary);
        text-align: center;
    
       
        .top p {
            font-size: 18px;
            font-weight: 700;
            color: rgb(255, 195, 0);
        }
    
        .top h2 {
            width: 100%;
            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: 50px;
    
    
            .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;
            }
        }
    
    }
}

@media screen and (min-width: 1200px){
    .heading{
        width: 100%;
        height: 300px;
        margin-top: 200px;
        background: url("../image/background-top.jpg");
    
        .its-cover{
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            background-color: rgba(53, 83, 94, 0.803);
            align-items: center;
            color: #ffffff;
            padding-top: 100px;
            font-size: 25px;
        }
    }

    .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;
            }
        }
    
    }
}
