*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    overflow-x: hidden !important;
}

a{
    text-decoration: none;
}

.logo{
    max-width: 250px;
}

.w-fit{
    width: fit-content;
}

.bg-green{
    background-color: #088312;
}

.txt-green{
    color: #088312;
}

.fs13{
    font-size: 13px;
}

.search-input{
    border: 2px solid #088312;
}
.search-input::placeholder{
    text-align: center;
}

.search-input-icon{
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.dashed-border{
    border-top: 2px dashed black;
    border-bottom: 2px dashed black;
}

.hover-black:hover{
    color: black !important;
}
.hover-green:hover{
    color: #088312 !important;
}

.text-grey{
    color: rgb(56, 56, 56);
}
.card{
    border: 2px solid black;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.144);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 22%;
}


.qualification-btn{
    background-color: #11661836;
    border: 1px dashed #088312;
}

 .active .page-link{
    background-color: #088312 !important;
    color: white !important;
}

.page-item .page-link{
    color: #088312;
}


@media (max-width:1200px){
    .card{
        width: 28%;
    }
}

@media (max-width:992px){
    .card{
        width: 48%;
    }
}
@media (max-width:600px){
    .card{
        width: 98%;
        margin: auto;
    }

    .fs-5{
        font-size: 13px !important;
    }
}