
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

.contents{
    width: 100%;
    height: auto;
   

}

.contents h4{
    font-size: 25px;
}




/*---------------------JOS----------------------------------*/

.contents .judges-categ{
    width: 85%;
    height: auto;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    flex-wrap: wrap;
}


.contents .card{
    width: 250px;
    margin-top: 40px;
    padding: 5px;
    padding-bottom: 15px;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
    border-radius: 5px;
    position: relative;
    z-index: 1;
    background: inherit;
    overflow: hidden;
}




.contents .card:before {
    content: "";
    position: absolute;
    background: inherit;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
    filter: blur(10px);
    margin: -20px;
  }

.contents .card .detail p{
    text-align: center;
    margin-bottom: 0;
}

/*---------------------Cause List----------------------------------*/

.contents .search-section .cause-list-s{
    width: 40%;
    padding: 10px;
    margin: 0 auto;
}

.contents .search-section .cause-list-s select,input{
    width: 100%;
    height: 40px;
}



/*---------------------Download----------------------------------*/

.download-section .download-body{
    width: 80%;
    height: auto;
    border: 3px solid darkgray;
    margin: 10px auto;
    border-top-right-radius: 10px;
}

.download-section .download-body p{
   margin-bottom: 0;
   padding: 5px;
}

.download-section .download-body .download-footer{
    width: 100%;
    height: 20px;
    background-color: darkgray;
    position: relative;
}

.download-section .download-body .download-footer label{
    font-size: 14px;
}

.download-section .download-body .download-footer a{
    right: 3px;
    position: absolute;
    text-decoration: none;
    color: blue;
    transition: 0.5s;
}

.download-section .download-body .download-footer i{
    padding-right: 5px;
}

.download-section .download-body .download-footer a:hover{
    color: rgb(240, 245, 241);
}


/*---------------------Library----------------------------------*/

.library-section{
    width: 80%;
    margin: 0 auto;
}

.library-section table tbody td, th{
    border-bottom: 1px solid rgb(134, 133, 194);;
}

.library-section table thead{
    background-color: rgb(134, 133, 194);;
}

.library-section table tbody tr:hover{
    background-color: rgb(134, 133, 194);
}

/*---------------------Library----------------------------------*/

.tender-section{
    width: 100%;

}

.tender-section .warning-msg{
    width: 400px;
    height: auto;
    margin: 30px auto;
    background-color: rgb(209, 121, 121);
    padding: 15px;
}

.tender-section .warning-msg p{
    text-align: center;
    margin-bottom: 0;
    font-size: 20px;
    font-style: italic;
}

.tender-section .warning-msg img{
    width: 30px;
}


/*---------------------news and events details----------------------------------*/

.detail-section{
    width: 80%;
    margin: 0 auto;
}

.detail-section .detail-img{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.detail-section .detail-img .event-imgs{
    width: 500px;
    height: 400px;
    border: 2px solid cadetblue;
    margin-top: 10px;
}





@media (max-width: 992px) {
    
    .contents .judges-categ{
    width: 100%;
    }
    
    .detail-section .detail-img .event-imgs{
        width: 90%;
        height: auto;
        justify-content: center;

    }
    
    .library-section .table{
        font-size: 15px;
    }
    
    .library-section{
        width: 98%;
 
    }
    
    
    
    .contents .search-section .cause-list-s{
        width: 80%;

    }
}