*{
	font-family: serif;
    box-sizing: border-box;
}

body{
	background: linear-gradient(310deg,  #EFE7DA, #B29079, #82614A);
    overflow-x: hidden;
    width: auto;
    height: auto;
    
}

.anav1 {
	background-color: #EFE7DA;
  padding: 6px;
} 
#demo{
	font-size: 120%;
}
.dropdown{
	font-size: 140%;

}
.dropdown-menu{
  background-color: #EFE7DA;
}

.search-form {
    display: flex;
  }
  
  .search-input {
    padding: 5px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
  }
  
  .search-button {
    background-color: #82614A;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 5px 10px;
    cursor: pointer;
  }
 .title{
  margin-top: 3%;
  background-color: #EFE7DA;
  border-radius: 20px;
  font-size: medium;
 }
  .mcard {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 5%;
}
.mcontent {
    flex: 25%;
    padding: 20px;
    height: 380px;
    padding: 2rem 1rem;
    position: relative;
    display: flex;
    align-items: flex-end;
    box-shadow: 0px 7px 10px rgba(0,0,0,0,0.5);
    transition: 0.5s ease-in-out;
}
.mcontent:hover{
    transform: translateY(20px);
}
.mcontent:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(88,49,35,0.7), rgba(88,49,35,1));
    z-index: 2;
    transition: 0.5s all;
    opacity: 0; 
}
.mcontent:hover:before{
    opacity: 1;
}
.mcontent img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.mcontent .memo{
    position: relative;
    z-index: 3;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s all;
}
.mcontent:hover .memo{
    opacity: 1;
    transform: translateY(0px);
}
.mcontent .memo h1{
    margin: 0;
}
.mcontent .memo p{
    letter-spacing: 1px;
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 20px;
}
.mcontent .memo .mc{
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}
.hfooter{
  margin-top: 5cqmax;
    width: 100%;
    padding: 100px 15%;
    background: #EFE7DA;
    color: #000;
    display: flex;
  }
  .hfooter div{
    text-align: center;
  }
  .hcol-2{
    flex-grow: 2;
  }
  .hfooter div h3{
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }
  .hcol-1 a{
    display: block;
    text-decoration: none;
    color: #000;
    margin-bottom: 10px;
  }
  .hinput{
    width: 400px;
    height: 45px;
    border-radius: 4px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    outline: none;
    border: none;
  }
  .hbutton{
    background: transparent;
    border: 2px solid #000;
    color: #000;
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 15px;
    cursor: pointer;
  }
  .hsocial-icons{
    margin-top: 30px;
  }
  .hsocial-icons i{
    font-size: 25px;
    margin: 10px;
    cursor: pointer;
  }
  /* footer responsive start */
    @media only screen and (max-width: 768px){
        .hcol-1, .hcol-2, .hcol-3{
            width: 50%;
        }
        .hinput {
            width: 85%;
        }
        .hfooter div h3{
        	font-size: 15px;
        }
        .hinput{
        	font-size: 10px;
        }
      }
      /* end */
/* Books responsive start */
@media screen and (max-width: 992px) {
  .mcontent {
    flex: 50%;
    margin-bottom: 8%;
  }
}


@media screen and (max-width: 600px) {
  .mcard {
    flex-direction: column;
  }
}
      /* end */