body{
	margin: 0;
	font-family: "poppins",sans-serif; 

}
*{
	box-sizing: border-box;
}

/* utilities */
h1,h4,h5,p{
	margin: 0;
}

.bg__dark{
	background-color: #212121;
}
.text__light{
	color: #fff;

}

.btn__dark,
.btn__light{
	display: inline-block;
	color: blanchedalmond;
	text-decoration: none;
	padding: 10px 35px;
	border-radius: 100px;
	font-size: 14px;
	letter-spacing: 2px;
	transition: all 0.4s;

}

.btn__dark{
	background-color: black;
}

.btn__light{
	background-color: #f4511e;

}

.btn__dark:hover{
	background-color: white;
	color: red;
}

.margin__top{
	margin-top: 15px;
}

.image__responsive{
	width: 100%;
	max-width: 100%;
	height: 100%;
}

/* NAVBAR */

.navbar ul{
	display:flex;
	justify-content:center;
	align-items:center;
	padding:0;
	margin:0;
	list-style:none;
	background:#bb3f40;
	flex-wrap:wrap;
}

.navbar ul li{
	margin:0 20px;
}

.navbar ul li a{
	display:block;
	color:#fff;
	text-decoration:none;
	text-transform:uppercase;
	padding:18px 25px;
	font-size:16px;
	letter-spacing:2px;
}

/* hover */

.navbar ul li:hover{
	background:#55aa24;
	transition:0.4s;
}

.navbar ul li a:hover{
	background:#bfe709;
	transition:0.4s;
}

/* logo */

.navbar img{
	max-width:100%;
	height:auto;
}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width:768px){

.navbar ul{
	flex-direction:column;
}

.navbar ul li{
	width:100%;
	text-align:center;
	margin:0;
}

.navbar ul li a{
	padding:14px;
	border-top:1px solid rgba(255,255,255,0.2);
}

}
/* Hero section */
.item img{
	width: 100%;
	height: 85vh;
}

.carousel-caption h2{
	display: flex;
	position: absolute;
	margin-top: -450px;
	margin-left: 220px;
	font-size: 100px;
	font-family: 'Allerta Stencil', sans-serif;
	font-weight: bold;
	
}
.carousel-caption h2 span{
	margin:2px;
	color: yellow;

	
}

.carousel-caption p{
	display: flex;
	margin: 2px;
	position: absolute;
	margin-top: -335px;
	margin-left: 170px;
	font-size: 30px;
	letter-spacing: 3px;
	color: rgb(73, 10, 247);
	
}
.multicolortext {
	background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	color: transparent;
  }



/* Recipe Section */
.Recipes__Section{
	padding: 70px 0px;

}
 
.image__wrapper{
	position: relative;
	width: 100%;
	height: 100%;
	background-color: red;
	overflow: hidden;
	border-radius: 2px;

}

.image__wrapper img{
	width: 100%;
	max-width: 100%;
	height: auto;
	transition: all 0.4s;
}

.image__wrapper:hover img {
	transform: scale(1.2, 1.2);
	cursor: pointer;

}

.image__wrapper-text{
	padding: 0px 15px;
	max-height: 150px;
	position: absolute;
	bottom: 0px;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.7);
	color: blanchedalmond;
	width: 100%;
}

.image__wrapper-text h5{
	color: yellow;
	font-size: 20px;
	font-weight: 500;
}

.sub-menu-1{
	display: none;
}

/* .menu-bar ul li a:hover .sub-menu-1{
	display: block;
	position: absolute;
	background:rgb(0, 100,0);
	margin-top: 15px;
	margin-left: -15px;
} */


.dropdown-menu li {
    display: none;
}


/* About Section */
.About__Section{
	padding: 50px 0px;
	background-color: darkblue;
	color: white;

}

.About__Section h4{
	font-size: 28px;
	font-weight: 500;
	
}

.About__Section p{
	line-height: 36px;
	font-weight: 100;
	font-style: italic;
	letter-spacing: 1px;
}

.image__background{
	position: relative;
	z-index: 1;

}

.image__background::before{
	position: absolute;
	top: -30px;
	left: -30px;
	content: "";
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: black;

}

.image__background img{
	box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.4);
}

/* extra section */
.Extra__Section{
	padding: 60px 0px;
}

.Extra__Section h4{
	color: yellow;
	line-height: unset;
	font-size: 20px;
	font-weight: 500;

    
}

.Extra__Section p{
	line-height: 25px;
	font-weight: 100;
	
	
}

/* subscribe section */
.subscribe__section{
	padding: 30px 0px;
	background-color: #212121;
	color: white;
}

.subscribe__section form{
	display: flex;
}

.subscribe__section button{
	background-color: #f4511e;
	color: #fff;
	border: none;
	padding: 10px 20px;
}

/* category section */
.catagory__section{
	padding: 70px 0px;
}

.image__wrapper_down img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    transition: all 0.4s;
}

.image__wrapper_down{
	position: relative;
	width: 100%;
	height: 100%;
	background-color: red;
	overflow: hidden;
	border-radius: 2px;
}
.image__wrapper_down:hover img {
	transform: scale(1.2, 1.2);
	cursor: pointer;

}
.footer{
	height: auto;
	min-height: 450px;
	margin: auto;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	overflow: hidden;
}	


.footer-social-icons{
	width:100%;
	height: auto;
	margin: auto;
	
}
.footer-social-icons ul{
	margin: 20px;
	padding: 0px;
	text-align: center;
	margin-top: 180px;
	padding: 20px;
}
.footer-social-icons ul li{
	display: inline-block;
	margin-right: 2px;
	width: 36px;
	height: 36px;
	text-align: center;
}
.footer-social-icons ul li a{
	color: #fff;
	display: block;
	font-size: 22px;
	text-shadow: 0px 0px 5px rgba(0,0,0,0.75);
}
.footer-social-icons ul li a i{
	line-height: 36px;
}
.footer-social-icons ul li:nth-child(1){
	background: blue;
}
.footer-social-icons ul li:nth-child(2){
	background: CornflowerBlue;
}
.footer-social-icons ul li:nth-child(3){
	background: greenyellow;
}
.footer-social-icons ul li:nth-child(4){
	background: red;
}
.footer-social-icons ul li:nth-child(5){
	background: Chocolate;
}
.detail h3{
	position: absolute;
}
.number1{
	display: flex;
}
.number1 h4{
	position: absolute;
}
/* .navbar {
    position: relative !important;
    min-height: 50px !important;
	margin-bottom: 0px !important;
	border:none !important;
} */

.navbar-inverse .navbar-nav>li>a {
    color: #ffffff !important;
}

.navbar{
	margin-bottom: 0px !important;
}

@media (min-width: 768px){
	.navbar {
		border-radius: 0px !important;
	}

	.navbar-nav {
		float: none !important;
		margin: 0;
	}
}

/* blog__section */
body{
	margin: 0;
	font-family: "poppins", sans-serif;
}

*{
	box-sizing: border-box;
}

#wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	/* width: 100vw;
	height: 100vh; */
	margin: 40px;
	
}

@media only screen and (max-width:600px){
    
   #wrapper{
		display: flex;
	justify-content: center;
	align-items: center;
	margin: 17px!important;
	
}
 
}

.card-group{
	display: flex;
	width: 100%;
	/* height: 75%; */
	
}
  
/*.card{*/
/*	position: relative;*/
/*	border-radius: 2px;*/
/*	width: 100%;*/
/*	height: auto;*/
/*	background-color: #212121;*/
/*	box-shadow: 0px 0px 15px 1px rgba(141, 140, 140, 0.966);*/
	
/*}*/


.card {
    position: relative;
    border-radius: 2px;
    width: 100%;
    height: auto;
    background-color: #212121;
    box-shadow: 0px 0px 15px 1px rgba(141, 140, 140, 0.966);
    padding: 39px;
}


@media only screen and (max-width:600px){
    .card {
    position: relative;
    border-radius: 2px;
    width: 100%;
    height: auto;
    background-color: #212121;
    box-shadow: 0px 0px 15px 1px rgba(141, 140, 140, 0.966);
    padding: -5px;
    /* margin: -9px; */
    padding-top: 20px;
}

    .card_content {
        padding: 25px 3px 1px 2px;
        text-align: justify;
        width: 150%;
        margin-left: -7rem;
        margin-top: 35px;
    }
    
    
  
}

.card::before {
	content: "sss";
	position: absolute;
	top: 10px;
	left: 50%;
	transform:translateX(-50%) ;
	width: 90%;
	height: 100%;
	background-color: #212121;
	z-index: -1;
	box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1);
}
.card::after {
	content: "sss";
	position: absolute;
	top: 20px;
	left: 50%;
	transform:translateX(-50%) ;
	width: 80%;
	height: 100%;
	background-color: #212121;
	z-index: -1;
	box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1);
}




.card_image{
	width: 100%;
	
}

.card_image img{
	border-radius: 3px;
	max-width: 100%;
	height: auto;
}
.card_image:hover img {
	transform: scale(1.2, 1.2);
	cursor: pointer;

}

.card_content{
	padding: 0 30px;

}

.card_content h4{
	color: red;
	font-weight: 500;
}
.card_content h5{
	color: royalblue;
}

.card_content p{
	color: rgba(255, 255, 255, 0.9);
	font-weight: 300;
	line-height: 20px;
}

.card_buttons{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
	color: orangered;

}

.card_buttons a{
	text-decoration: none;
	color: white;
	background-color: orangered;
	padding: 8px 15px;
	border-radius: 50px;
	font-size: 12px;
}

/* spring roll  */
.article h4{
	color: black;
	font-weight: 700;
	font-style: normal;
	text-align: center;
	font-size: 36px;
}

.star-rating{
	margin-left: 250px;
}




