@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lobster&family=Noto+Kufi+Arabic:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* step */
.step {
    min-height: 100vh;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #000000a1, #000000d4);
}

.step_title {
    color: #ffe0a5;
    padding-top: 20px;
    padding-bottom: 50px;
}

.step_btm_text p {
    margin-top: .8rem;
    color: #ffe0a5;
}


/* step_lest_item */
.prt {
    text-decoration: none;
    color: #fff;
}

.step_lest_item {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

    .step_lest_item li {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

.step-no {
    width: 40px;
    height: 40px;
    background-color: #b0e97e;
    border-radius: 50%;
    color: #3b3434;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .2rem;
}

.step_img {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    
}


.step_img_1 {
    width: 260px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    border: 2px solid #b0e97e;
    padding: 50px;
}

    .step_img img {
        width: 60%;
    }

.underline_i {
    position: relative;
    margin-top: 74px;
}
    .underline_i img {
        filter: invert(1);
    }

.color_text {
    font-weight: 600;
    font-size: 3rem;
    color: #ffe0a5;
}

.start_btn {
    width: 170px;
    --bs-btn-padding-y: .8rem;
    background-color: #7fa506;
    color: #fff;
    border: 1px solid #7fa506;
    box-shadow: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
}

    .start_btn:focus,
    .start_btn:active,
    .start_btn:hover {
        background-color: #7fa506 !important;
        color: #fff !important;
        border: 1px solid #7fa506 !important;
        box-shadow: none;
        outline: none;
    }



/* user_level */
.user_level {
    min-height: 100vh;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#000000a1, #000000d4);
}

.user_expr {
    min-height: 300px;
    padding: 1.5rem 1rem;
    border-radius: .2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.expr_title {
    color: #ffe0a5;
    font-weight:400;
    margin-bottom:2rem;
}

.make_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.expr_lvl_btn_grp {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

    .expr_lvl_btn_grp .btn {
        width: 100%;
        height: 90px;
        border: 2px solid #3c3c3c;
        outline: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .expr_lvl_btn_grp .btn .step_img {
            width: 40px;
            height: 40px;
            background-color: none;
        }

            .expr_lvl_btn_grp .btn .step_img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }


        /*.expr_lvl_btn_grp .btn:focus,
.expr_lvl_btn_grp .btn:hover{
    border: 2px solid #0D6EFD;
    outline: 2px solid #0D6EFD;
}
.expr_lvl_btn_grp .btn.active{
    border: 2px solid #0D6EFD !important;
    outline: 2px solid #0D6EFD;
}*/
        .expr_lvl_btn_grp .btn.student_btn {
            border: 2px solid #b0e97e;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

            .expr_lvl_btn_grp .btn.student_btn:hover {
                border-color: #89ef2f; /* Add a blue border on hover */
                outline: 3px solid #89ef2f;
            }

            .expr_lvl_btn_grp .btn.student_btn.selected {
                border-color: #28a745; /* Green border for the selected item */
                outline: 3px solid #89ef2f;
            }



        .expr_lvl_btn_grp .btn span {
            font-weight: 400;
            color: #f9f9f9;
            padding-top:.8rem;
        }

.frwd_btn_grp {
    display: flex;
    justify-content: space-between;
    padding-top: .8rem;
    margin-top:1rem;
}

    .frwd_btn_grp .continue_btn {
        width: 150px;
        background-color: #7fa506;
        color: #fff;
        border: none;
        outline: none;
    }

        .frwd_btn_grp .continue_btn:focus,
        .frwd_btn_grp .continue_btn:active,
        .frwd_btn_grp .continue_btn:hover {
            background-color: #89ef2f !important;
            color: #fff !important;
            border: none;
            outline: none;
        }

    .frwd_btn_grp .skip_btn:hover {
        text-decoration: underline;
    }


.service_lvl .btn {
    height: 140px;
}



/* s_template */
.s_template {
    background-color: #213358;
    margin-top: 3.5rem;
}

.s_temp_title {
    font-size: 2.1rem;
    color: #c7daef;
    font-weight: 400;
    padding-top: 50px;
    text-align: center;
}

.s_template_img {
    list-style: none;
    width: 100%;
    min-height: 50vh;
    background-color: #0e335b;
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 2rem;
    flex-wrap: wrap;
}

    .s_template_img li {
        position: relative;
        width: calc(20% - 10px);
        min-height: 300px;
    }

        .s_template_img li a:hover,
        .s_template_img li a:focus {
            outline: 5px solid #0D6EFD !important;
        }

        .s_template_img li a img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

.more_btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0974a1;
    width: 200px;
    color: #fff;
    border: 2px solid #0974a1;
    outline: none !important;
}

    .more_btn:focus,
    .more_btn:hover,
    .more_btn:active {
        background-color: #6974a1 !important;
        color: #fff !important;
        border: 2px solid #6974a1 !important;
        outline: none !important;
    }

.s_bbtn {
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: 30px;
    display: none;
}

.s_template_img li:hover .s_bbtn {
    display: block;
}

.s_bbtn .btn {
    position: relative;
    background-color: #0D6EFD;
    color: #fff;
    border: 2px solid #0D6EFD;
    outline: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .s_bbtn .btn:focus,
    .s_bbtn .btn:hover,
    .s_bbtn .btn:active {
        background-color: #0D6EFD !important;
        color: #fff !important;
        border: 2px solid #0D6EFD !important;
        outline: none !important;
    }

/* skip */
.st_continue_btn,
.st_skip_btn {
    width: 250px;
}

.st_continue_btn {
    background-color: #0D6EFD;
    color: #fff;
    border: 2px solid #0D6EFD !important;
    outline: none !important;
}

    .st_continue_btn:focus,
    .st_continue_btn:hover,
    .st_continue_btn:active {
        background-color: #0D6EFD !important;
        color: #fff !important;
        border: 2px solid #0D6EFD !important;
        outline: none !important;
    }

.st_skip_btn {
    outline: none;
    border: 2px solid transparent;
}

    .st_skip_btn:focus,
    .st_skip_btn:hover,
    .st_skip_btn:active {
        background-color: #0D6EFD !important;
        color: #fff !important;
        border: 2px solid #0D6EFD !important;
        outline: none !important;
    }

/*for Premium & Free badge*/
.template-item {
    position: relative;
    list-style: none;
}

.template-link {
    display: block;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

    .template-link:hover {
        border-color: #ffcc00; /* Customize the border color */
        position: relative;
    }

.badge-wrapper {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: transparent;
    padding: 0;
    /*  display: none; */
    transition: all 0.3s ease;
}

.badge {
    position: relative;
    margin-top: 5px;
    display: inline-block;
    padding: 8px 10px;
    background-color: #d58205;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    border-radius: 5px;
}

.badge-free {
    position: relative;
    margin-top: 5px;
    display: inline-block;
    padding: 6px 10px;
    background-color: #20b415;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/*for Premium & Free badge end*/


/* responsive */
@media (max-width: 600px) {
    .step {
        margin-top: 3.5rem;
    }

    .step_lest_item {
        flex-direction: column;
        align-items: center;
    }

    .underline_i {
        margin-top: 0;
        transform: rotate(90deg);
    }

    /* user exp */
    .user_level {
        padding: 0;
        padding-top: 6.5rem;
        padding-bottom: 2rem;
    }

    .user_expr {
        width: 100%;
    }

    .expr_lvl_btn_grp {
        flex-direction: column;
    }

    .frwd_btn_grp {
        margin-top: 1.5rem;
        flex-direction: column-reverse;
    }

        .frwd_btn_grp .btn {
            width: 100%;
        }

    .service_lvl .btn {
        height: 90px;
    }

        .service_lvl .btn span {
            height: auto;
        }



    /* s_template */
    .s_template_img {
        gap: 20px;
        padding: .5rem;
        padding-top: 1rem;
    }

        .s_template_img li {
            position: relative;
            width: calc(47% - 10px);
            min-height: fit-content;
        }

            .s_template_img li a img {
                width: 100%;
                height: 100%;
                object-fit: fill;
            }

    .s_bbtn .btn {
        font-size: .8rem;
    }
}
