/* Гугл Шрифты*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,700;1,600&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-padding-top: 2rem;
	list-style: none;
	text-decoration: none;
	scroll-behavior: smooth;
	font-family: 'Poppins', sans-serif;
}
:root{
	--main-color: #16b978;
	--second-color: #081b54;
}
section{
	padding: 50px 10%;
}
img{
	width: 100%;
}
*::selection{
	color: fff;
	background: var(--main-color);
}
header{
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;	
	justify-content: space-between;
	padding: 15px 10%;
	transition: 0.2s;
}
header.active{
	background: var(--second-color);
	box-shadow: 0 0 4px rgb(14 55 54 / 15%);
}
header.active .logo{
	color: #fff;
} 
header.active .navbar a{
	color: #fff;
} 

.flag{
	position: relative;
	top: 5px;
	width: 7%;
	height: 7%;
	border-radius: 5px;
}

.logo{
	display: flex;
	align-items: center;
	font-size: 1.1rem;
	font-weight: 600;
	color: #000000;
}
.logo img{
	width: 35px;
	margin-right: 10px;
}
.navbar{
	display: flex;
}
.navbar a{
	font-size: 1rem;
	padding: 10px 20px;
	color: #000000;
	font-weight: 500;
}
.navbar a:hover{
	color: #fff;
	background: var(--main-color);
	border-radius: 4px;
}
#menu-icon{
	font-size: 24px;
	cursor: pointer;
	z-index: 10001;
	display: none;
}
.home{
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: url(img/Background.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	gap: 1rem;
}
.home-text{
	flex: 1 1 17rem;
}
.home-img{
	flex: 1 1 17rem;
}
.home-text span{
	font-size: 1rem;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--main-color);
}
.home-text h1{
	font-size: 4rem;
	color: var(--second-color);
}
.home-text p{
	margin: 0.5rem 0 1.4rem;
}
.btn{
	padding: 10px 20px;
	border: 2px solid var(--main-color);
	border-radius: 40px;
	color: var(--main-color);
	font-weight: 500;
}
.btn:hover{
	letter-spacing: 2px;
	color: #fff;
	background: var(--main-color);
}
.about{
	display: flex;
	align-items: center;
	flex-direction: column;
	background: url(img/about-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.about h1{
	font-size: 2.5rem;
	color: #fff;
	margin-bottom: 2rem;
	text-transform: uppercase;
}
.about-container{
	background: #fff;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-radius: 10px;
	border-top:6px solid var(--main-color);
	padding: 20px;
	gap: 2rem;	
}
.box-img{
	width: 200px;
	height: 200px;
}
.box-img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.about-box{
	flex: 1 1 8rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.about-box h3{
	font-size: 1rem;
	font-weight: 500;
	color: var(--second-color);
	margin: 0 0 0.5rem;
}
.about-box h2{
	font-size: 1.2rem;
	color: var(--main-color);
	letter-spacing: 1px;
}
.heading{
	text-align: center;
}
.heading h2{
	font-size: 2rem;
	color: var(--second-color);
	margin-bottom: 0.5rem;
}
.shop-container,
.customer-container{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}
.shop-box{
	position: relative;
	flex: 1 1 17rem;
	box-shadow: 0 4px 4px rgb(14 55 54 / 15%);
	border-radius: 0.5rem;
	height: auto;
}
.shop-img{
	width: 100%;
	height: 300px;
	border-radius: 0.5rem;
	overflow: hidden;
}
.shop-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: 0.5s;
}
.shop-img img:hover{
	transform: scale(1.1);
	transition: 0.5s;
}
.shop-box h3{
	font-size: 1rem;
	font-weight: 500;
	color: var(--second-color);
	padding: 10px;
}
.shop-box h2{
	font-size: 1.2rem;
	color: var(--main-color);
	letter-spacing: 1px;
	padding: 10px;
}
.shop-box .bxs-heart{
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 20px;
	padding: 10px;
	color: #fff;
	background: var(--main-color);
	border-radius: 4px 0 4px 0;
	transition: 0.1s;
}
.shop-box .bxs-heart:hover{
	background: var(--second-color);
}
.customer-container .box{
	flex: 1 1 16rem;
	text-align: center;
	box-shadow: 0px 4px 4px rgb(14 55 54 / 15%);
	padding: 20px;
	border-radius: 0.5rem;
}
.box img{
	width: 175px;
	height: 175px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--second-color);
}
.box .bx{
	color: var(--main-color);
	margin-top: 0.5rem;
}
.box p{
	margin: 0.5rem 0 1rem;
}
.box h2{
	font-size: 1.2rem;
	color: var(--main-color);
	letter-spacing: 1px;
}
.contact-container{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}
.contact-info{
	flex: 1 1 20rem;
}
.contact-form{
	flex: 1 1 20rem;
	display: flex;
	justify-content: center;
}
.contact-info h2{
	font-size: 1.7rem;
	color: var(--second-color);
}
.contact-info p{
	margin: 0.5rem 0 1rem;
}
.adress{
	display: flex;
	flex-direction: column;
}
.adress i{
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
	font-size: 20px;
}
.adress span{
	font-size: 1rem;
	margin-left: 1rem;
}
.social{
	margin-top: 1rem;
}
.social a{
	font-size: 24px;
	color: var(--main-color);
	margin-left: 1rem;
}
.social a:hover{
	color: var(--second-color);
}
.contact-form form{
	width: 100%;
	display: flex;
	flex-direction: column;
}
form input,
textarea {
	width: 100%;
	padding: 17px;
	border-radius: 0.5rem;
	outline: none;
	margin-bottom: 1rem;
	border: 2px solid var(--main-color);
	box-shadow: 0 4px 4px 2px rgb(14 55 54 / 15%);
}
form input::placeholder,
textarea::placeholder{
	color: var(--main-color);
}
form textarea{
	resize: none;
	height: 150px;
}
form .btn{
	font-size: 10px;
	max-width: 100px;
	background: var(--main-color);
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	border: none;
	transition: 0.2s;
}
form .btn:hover{
	background: var(--main-color);
}
.copyright{
	padding: 20px;
	text-align: center;
}

.big_text{
	position: relative;
	top: 50px;
	font-size: 4rem;
}

.block-top{
	display: flex;
	flex-direction: row;
}

.recipe img{
	width: 40%;
	height: 450px;
	border: 5px solid var(--main-color);
	border-radius: 10px;
	object-fit: cover;
	object-position: center;
}

.recipe span{
	font-size: 2rem;
	position: relative;
	left: 120px;
}

.recipe ul{
	margin: -40px 0px;
	font-size: 1.5rem;
}

.amount{
	font-size: 5px;
	margin-left: 30px;
	color: var(--second-color);
}

.block-bottom{
	position: relative;
	left: -100px;
	width: 97%;
}

/*Поиск*/
#search-icon{
	font-size: 24px;
	cursor: pointer;
	color: var(--main-color)
}
.search-box{
	position: absolute;
	top: 110%;
	right: 0;
	left: 0;
	background:var(--main-color);
	box-shadow: 4px 4px 20px rgb(15 54 55 / 10%);
	border: 1px solid var(--second-color);
	border-radius: 0.5rem;
	clip-path: circle(0% at 100% 0%);
}
.search-box.active{
	clip-path: circle(144% at 100% 0%);
	transition: 0.4s;
}
.search-box input{
	width: 100%;
	padding: 20px;
	border: none;
	outline: none;
	background: transparent;
	font-size: 1rem;
}
@media (max-width: 1100px){
	.home-text h1 {
		font-size: 3rem;
	}
}
@media (max-width:991px){
	header{
		padding: 11px 4px;
	}
	#menu-icon{
		display: initial;
	}
	header.active #menu-icon{
		color: #fff;
	}
	header .navbar{
		position: absolute;
		top: -500px;
		left: 0;
		right: 0;
		display: flex;
		flex-direction: column;
		background: var(--second-color);
		box-shadow: 0 4px 4px rgb(14 55 54 / 15%);
		transition: 0.2s ease;
		text-align: right;
	}
	.navbar.active{
		top: 100%;
	}
	.navbar a{
		padding: 1.5rem;
		display: block;
		color: #fff;
	}
	.home-text h1{
		font-size: 2.4rem;
	}
	.about h1{
		font-size: 2rem;
	}
	.heading h2{
		font-size: 1.6rem;
	}
	.contact-info h2{
		font-size: 1.6rem;
	}
}
@media (max-width: 360px){
	.home-text span{
		font-size: 0.8rem;
	}
	.home-text h1{
		font-size: 2rem;
	}
	.home-text p{
		font-size: 0.9rem;
	}
}

#search-icon{
    font-size: 24px;
    cursor: pointer;
    color: var(--main-color)
}
.search-box{
    position: absolute;
    top: 110%;
    right: 0;
    left: 0;
    background:var(--main-color);
    box-shadow: 4px 4px 20px rgb(15 54 55 / 10%);
    border: 1px solid var(--second-color);
    border-radius: 0.5rem;
    clip-path: circle(0% at 100% 0%);
}
.search-box.active{
    clip-path: circle(144% at 100% 0%);
    transition: 0.4s;
}
.search-box input{
    width: 100%;
    padding: 20px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
}