*,*:before,*:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

:root{
    --heading-color: #ff1d4d;
    --fontawesome: "Font Awesome 5 Pro";
    --white: #ffffff;
    --black: #000;
    --para: #000
}

 body {
	font-family: 'Yantramanav', sans-serif;
	font-weight:400;
	font-size: 14px;
	line-height:1.78;
	color: #555555;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	padding: 0;
	margin: 0;
}

a, a:hover, a:focus{
	color: #555555;
	text-decoration: none;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
h1, h2, h3, h4, h5, h6{
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	margin:0;
	padding:0;
	text-transform:capitalize;
}

ul{
	padding:0;
	margin:0;
	list-style-type: none;
}

a{
    text-decoration: none;
}

 /* =================== banner here ==================== */
  
 .banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.349),#131112ee), url(../image/wall_decor/banner.webp) ;
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: grid;
    place-items: center;
    position: relative;
  }

.banner h1{
    font-size: clamp(40px, 3vw, 120px);
    color: white;
    font-weight: 700;
  }
  
 .banner p{
    color: var(--white);
  }
 .banner a{
    color: var(--white);
    text-decoration: underline;
  }

  /* =================== Category ==================== */

  .wall-caterorie .data{
    box-shadow: 0px 10px 30px -5px rgb(109 117 143 / 33%);
	border-radius: 6px;
	background-color: white;
    padding: 0px 0px 10px 0px;
    transition: all 0.5s linear;
  }

  .wall-caterorie .data:hover {
    transform: translateY(-10px);
    cursor: pointer;
}

  .wall-caterorie .data .image{
    width:100%;
    height: 400px;
    
}
.wall-caterorie .image img{
    width:100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
}

.wall-caterorie .data .data1 h1{
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: 2px;
    text-wrap: nowrap;
}

.wall-caterorie .data .data1 h6{
    font-size: 18px;
  padding-top: 10px;
  font-weight: 700;
}
