@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
:root{
    --primary-black: #000000;
}

* { 
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family:  'Pretendard', sans-serif ;
    font-size: 16px;
    font-weight: normal;
    color: var(--primary-black);
}
/* Some Of common CSS */

.hidden{
    display: none!important;
}

.modal{
    background: #00000080;
}

.modal-content{
    position: relative;
    border-radius: 30px;
    border-color: transparent;
    padding: 20px 30px;
    
}
.modalclsBtn.btn-close {
    position: absolute;
    right: 0;
    padding: 25px;
    top: 0;
    z-index: 99;
}
.form-select ,
.form-control {
    border-radius: 50px;
    padding: 0.6rem 0.75rem;
    background-color: #f4f6f8;
}
.btn-primary{
    padding: 0.75rem 3rem;
    font-size: 18px;
    background: #000000;
    color: #fff;
}
.btn-black{
    background: #000000;
    color: #fff;
    border-color: #000000;
}
.btn-white{
    background: #fff;
    color: #232323;
    border-color: #fff;
}

.btn-white:hover{
    background: #fff;
    color: #232323;
    border-color: #fff;
}

.btn-black:hover{
    background: #000000;
    color: #fff;
    border-color: #000000;
}

.btn-round{
    border-radius: 50px;
}
.has-shadow{
    box-shadow: 0 0 15px #ddd;
}

.form_below {
    display: flex;
    justify-content: space-between;
}
.form_below .forgot-password{
    color: #000;
    text-decoration: none;
    text-align: right;
}

.modal-body{
    padding: 3rem;
}

.card-shadow{
    box-shadow: 0 0 15px #ddd;
}


/* Sign in Page Design started */
#banner {
    padding: 7rem 0rem;
}
#banner .banner_content {
    padding: 1.5rem 0rem;
}
#banner .banner_content h1{
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 15px;
}
#banner .banner_btn a{
    margin-right: 10px;
}

#counter{
    padding: 3rem 0;
}

#counter .counter_item{
    width: 95%;
    background: #fff;
    margin: 0 auto;
    box-shadow: 0 0 15px #a9a9a9;
}

#counter .counter_item {
    width: 95%;
    background: #fff;
    margin: 0 auto;
    box-shadow: 0 0 15px #a9a9a9;
    min-height: 140px;
    padding: 1.5rem 1.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#counter .counter_item h5{
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

#counter .counter_item h4 {
    margin: 0;
    font-size: 26px;
    margin-top: 5px;
    font-weight: bold;
}

#counter .counter_item h4 small{
    font-size: 14px;
}

#premium {
    padding: 6rem 0;
    background: #000;
}

.sec_title{
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

.feature_wrap {
    display: grid;
    grid-template-columns: repeat(5, minmax(200px ,1fr));
    overflow: auto;
    overflow-y: hidden;
    gap: 15px;
    padding: 25px 0;
}

.feature_wrap > div {
    background: #fff;
    padding: 5px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 1s;
}
.feature_wrap > div:hover{
    transform: translateY(-25px);
}
.premi_item {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    text-align: center;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.premi_item .item_icon {
    font-size: 75px;
    color: #162a48;
}

.premi_item .item_cont h5 {
    font-size: 18px;
    font-weight: bold;
}

.item_cont p {
    font-size: 14px;
}

#howItWorks{
    padding: 7rem 0;
}

#howItWorks .how_step {
    display: flex;
    width: 300px;
    height: 300px;
    background: #000;
    color: #fff;
    border-radius: 350px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: 0.5s;
}

#howItWorks .how_step:hover{
    background: #7D92FF;
}

#howItWorks .how_step .step_num {
    background: #fff;
    color: #000;
    padding: 5px 30px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
}

#howItWorks .how_step .step_cont p {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.testimonials_wraper {
    background: #fff;
    border: 2px solid #000;
    padding: 30px;
    border-radius: 20px;
    width: 95%;
    margin: 0 auto;
    min-height: 250px;
    transition: 0.4s;
}

.testimonials_wraper:hover{
    background: #000;
    color: #fff!important;
}

.testi_icon img {
    width: 35px;
    margin-bottom: 20px;
}

.testimonials_wraper:hover .testi_icon img{
    filter: invert(1);
}

.testi_cont p {
    font-size: 16px;
}

#normal_sec {
    padding: 7rem 0;
}

.normal_cont h4{
    font-size: 28px;
    font-weight: bold;
    color: #232323;
}

.bg-dark{
    background: #000!important;
}
b.font-biger {
    font-size: 20px;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: .875em;
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 25px;
    color: #fff;
}

.input-group-btn button {
    height: 100%;
    background: #000;
    color: #fff!important;
    border-radius: 0 50px 50px 0;
}

#service{
    margin: 6rem 0;
}

td.categoryName {
    background: black;
    text-align: center;
    color: #fff;
    font-size: 18px;
}
.btn-des{
    padding: 10px 15px;
}
.custom_nav {
    background: #ffffffeb!important;
    height: 75px;
    box-shadow: 0 0 10px #ddd;
}
.navbar-expand-lg .navbar-nav .nav-link{
    font-size: 18px;
    font-weight: bold;
}
.auth_main{
    padding-top:7rem;
    min-height: 700px;
}
.color_blue{
    color: #0058FF;
}

.page_title{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}
.auth-card {
    margin-bottom: 2rem;
    border-radius: 25px;
}
.auth-card .card-body {
    padding: 1.5rem;
}
.form-group{
    margin-bottom: 1.25rem;
}

.serv_desc {
    background: #f4f6f8;
    padding: 2rem 1.75rem;
    border-radius: 32px;
}
.cat_filter .cat_filter_item p{
    margin: 0;
    margin-top: 8px;
    color: #000;
}
.cat_filter .cat_filter_item {
    display: flex;
    gap: 20px;
    text-align: center;
    margin: 1rem 0;
}

.item_cat_filter {
    padding: 1rem;
    border-radius: 10px;
    width: 120px;
    border: 2px solid #ddd;
    text-decoration: none;
}

.item_cat_filter > div,
.item_cat_filter > p{
    pointer-events: none!important;
}
.item_cat_filter.activeItem{
    border-color: var(--primary-black);
}
.no_round,
textarea.form-control{
    border-radius: 5px;
}

.ticket-message-block.ticket-message-right .ticket_msg {
    background: #e1dada;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.ticket-message-block.ticket-message-left .ticket_msg {
    background: #65f7a9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.nav.nav-pills li{
    margin-bottom: 5px;
    margin-right: 5px;
}

.nav.nav-pills li a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    border: 2px solid #000;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 16px;
}

.nav.nav-pills li.active a,
.nav.nav-pills li a:hover{
    background-color: #000;
    color: #fff;
}


.step {
    text-align: center;
    margin-bottom: 25px;
}

.step .num {
    font-size: 22px;
    display: inline-block;
    background: #000;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-weight: bold;
    color: #fff;
    line-height: 50px;
    margin-bottom: 10px;
}

.text-fund {
    font-size: 18px;
    font-weight: bold;
}

.btn_wrap a{
    background: #ffe600;
    border-color: #ffe600;
    font-size: 18px;
    color: #000;
    padding: 1rem .5rem;
}

.btn_wrap a:hover{
    background: #e5ce05;
    border-color: #ffe600;
    color: #000;
}

.img-mob{
    display: none;
}

.menu_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e9e9e9;
    z-index: 9999;
}
.modal{
    z-index: 999999;
}
.menu_box{
    transform: translateX(-100%);
}
.menu_box.active_menu{
    position: fixed;
    transition: 0.5s;
    transform: translateX(0px);
}
.btn_cls {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    font-size: 22px;
    background: transparent;
    border: none;
    color: #232323;
    cursor: pointer;
}
.menu_box ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu_box ul li a{
    text-align: center;
    padding: 15px 5px;
    background: #d9d9d9;
    margin-bottom: 10px;
    border-radius: 12px;
    font-weight: bold;
}

.menu_box {
    padding: 7rem 1rem;
}

.menu_box .site_logo {
    text-align: center;
    margin-bottom: 20px;
}

/* Responsive area */
@media only screen and (max-width: 991px){
    
}
@media only screen and (max-width: 768px){
    .modal-body{
        padding: 1rem;
    }
    
    .table_responsive {
        width: 100%!important;
        overflow: auto;
    }

    .table_responsive table{
        width: 1100px;
        overflow: auto;
    }

    #howItWorks .how_step{
        width: 230px;
        height: 230px;
    }
    #banner .banner_content h1{
        font-size: 25px;
    }
}
@media only screen and (max-width: 550px){
    .modal-body{
        padding: 0rem;
    }
    .img-desktop{
        display: none;
    }
    .img-mob{
        display: block;
    }
    #banner .banner_content h1{
        font-size: 18px;
        text-align: center;
    }
    .img-mob{
        width: 150px;
        margin: 0 auto;
    }
    .banner_btn {
        padding: 2rem 0px;
    }
    .banner_btn a{
        width: 100%;
        margin-bottom: 10px;
        padding: 9px 0;
        font-size: 14px;
    }
    #counter .counter_item{
        display: flex!important;
        flex-direction: row !important;
        justify-content: space-between!important;
        min-height: 80px;
        align-items: center;
    }
    #counter .counter_item h5{
        font-size: 14px;
    }
    #counter .counter_item h4{
        font-size: 20px;
    }
    .normal_cont h4{
        font-size: 18px;
        text-align: center;
    }
    .normal_cont p{
        font-size: 14px;
        text-align: center;
    }
    #normal_sec .normal_sec_img{
        text-align: center;
    }
    #normal_sec .normal_sec_img img{
        width: 60%;
        margin: 0 auto;
    }
    .footer_content p {
        text-align: center;
        font-size: 14px;
    }
    #testmonials {
        overflow: hidden;
    }
    #howItWorks .how_step{
        width: 280px;
        height: 280px;
    }
    #howItWorks .how_step .step_cont p{
        font-size: 16px;
    }
    .cat_filter .cat_filter_item{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .auth-card .card-body{
        padding: 15px;
    }
}
