#header {
    background: url("../image/header.jpg") no-repeat scroll left top #EAEAEA;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100px;
    position: relative;
    width: 100%;
    margin: 0px;
    font-size: 14px;
    color: #ffffff;
}

body {
	background-color: #f4f4f9;
	font-family: "Helvetica";
	color: #333;
}

@media screen and (max-width: 768px) {
    #header {
        height: 60px;
    }
}

 #footer
{
	height:auto;
	background-color:#111;
	font-size: 11px;
	text-align: right;
	color: #FFFFFF;
	line-height: 18px;
}

/*cards css*/

.row {
	margin-top: 10px;
	margin-bottom: 10px;
}

#cardsContent {
    margin-bottom: 20px; 
    margin-top: 20px;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);  */
    border: 1px solid #ccc; 
    border-radius: 3px; 
    padding: 20px;
    background-color: #f4f4f9;
}

#overallCards{
	border: 1px solid #ccc; 
	width: 100%; 
	border-radius: 8px; 
	margin: 10px 0px;
}

#filteredCards{
	border: 1px solid #ccc; 
	width: 100%; 
	border-radius: 8px; 
	margin: 10px 0px;
}

.card{
	min-width: 25rem;
	max-width: 30rem;
	min-height: 15rem;
	border-radius: 8px;
}

.card-body{
	padding: 15px; 
	color: #1f1f1f;
}

.card-title {
	font-size: 16px;
}

.card-text {
	
}

.control-dropdown {
	margin: 5px 0px;
	width: 100%;
}

/*sidebar css*/

ul.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.list li {
  display: flex;
  padding: 10px;
  flex-direction: column;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.10);
  margin-bottom: 10px;
  background-color: #fff;
  border-left: 4px solid #fff;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
}
ul.list li .title {
  font-weight: bold;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
ul.list li .subtitle {
  position: relative;
  z-index: 1;
  font-size: 12px;
  opacity: 0.7;
}

ul.list li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: width 0.3s ease;
}
ul.list li:hover {
  color: #000;
}
ul.list li:hover:after {
  width: 100%;
  transition: width 0.3s ease;
}
/* Personal */
ul.list li.personal:after {
  /*background: linear-gradient(102deg, #a4ceeb   0%, #ffffff 100%);*/
}
ul.list li.personal {
  border-left-color: #4682B4;
}

/* error page css*/
.page_404{ 
	padding:40px 0; 
	background:#fff; 
	font-family: 'Arvo', serif;
	text-align:center;
}

.page_404  img{ width:100%}

.error_img{
 background-image:url("../image/error.webp");
    height: 400px;
    background-position: center;
 }
		 
.error_link{			 
	color: #fff!important;
    padding: 10px 20px;
    background: #39ac31;
    margin: 20px 0;
    display: inline-block;
}
   
.contant_box{ 
	margin-top:-50px;
}
