/** @format */
* {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

.home_container {
	min-height: 100vh;
	background-image: linear-gradient(rgb(196, 196, 196),
			rgb(179, 179, 179),
			rgb(236, 236, 236));
	background-attachment: fixed;
	background-size: cover;
	padding-bottom: 10px;
}

.overlay {
	min-height: 100vh;
	width: 100%;
	/* background-color: rgba(0, 0, 0, 0.884); */
}

.navbar {
	transition: box-shadow 1s ease-in-out;

}

.navbar.shadow {
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.651), transparent);
}



nav {
	margin: auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 70px;
	/* background-color: rgb(255, 255, 255); */
	color: rgb(255, 255, 255);
	height: 50px;
	z-index: 1100;
	width: 70vw;
	margin-top: 20px;
	transition: 0.5s;
}

.mobile_navbar {
	display: none;

}


.navbar.sticky {
	position: sticky;
	top: 0;
	/* left: 50%; */
	transform: translateX(-50%);
	margin-left: 50%;
}

.navbar .nav_links {
	display: flex;
	text-align: center;
	justify-content: left;
	line-height: 50px;
	height: 50px;
	/* background-color: aliceblue; */
}

.navbar .nav_links li {
	list-style: none;
}

.navbar .nav_links a {
	text-decoration: none;
	color: rgb(255, 255, 255);
	font-family: Arial, Helvetica, sans-serif;
	padding: 0 20px;
	display: flex;
	align-items: center;
	transition: 0.5s;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.404);
	font-weight: lighter;
}

.navbar .nav_links a span {
	margin-right: 2px;
}

.navbar .nav_links a:hover {
	background-color: rgba(87, 87, 87, 0.363);
}

/* drop down -================================ */
.navbar .nav_links li.active {
	background-color: rgba(0, 0, 0, 0.671);
}


.gallery_drop {
	transform-origin: top center;
	background-color: rgba(0, 0, 0, 0.795);
	transform: scaleY(0);
	opacity: 0;
	transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery_item.active .gallery_drop {
	transform: scaleY(1);
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.671);
}

.gallery_drop a {
	border-bottom: rgba(255, 255, 255, 0.164) solid 0.5px;
	display: flex;
	align-items: center;
}

.gallery_item a {
	cursor: pointer;
}

.gallery_item.active .gallery_drop:hover {
	opacity: 1;
}

/* drop down -================================== */

.logo {
	position: absolute;
	display: flex;
	justify-content: left;
	width: 100%;
	/* background-color: black; */
	margin: auto;
	padding-top: 20px;
	color: rgb(255, 255, 255);
	font-family: Arial, Helvetica, sans-serif;
	text-shadow: 1px 1px 2px black;
	font-weight: normal;
	/* background-color: aqua; */
	background-image: linear-gradient(to bottom, black, transparent);

	height: 150px;
}

.contacts-top {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 50px;
	/* color: rgb(224, 224, 224); */
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bolder;
}

.logo img {
	height: 50px;
}

.socials {
	position: fixed;
	bottom: 10px;
	right: 10vw;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 300px;
}

.socials img {
	margin: 20px;
	height: 50px;
	border-radius: 50%;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.445);
}

.wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 0;
	flex-wrap: wrap;
	text-align: center;
	/* width: 1000px; */
	margin: auto;
}

.products,
.families,
.potraids,
.children {
	position: relative;
}

.wrapper div div {
	width: 100vw;

	overflow: hidden;
	margin: 0px;
}

.wrapper div img {
	width: 100%;
	object-fit: cover;
	object-position: top;
}

.wrapper div {
	color: rgb(228, 228, 228);
	font-family: Arial, Helvetica, sans-serif;
	font-size: larger;
	font-weight: bolder;
}

.catergory {
	position: absolute;
	top: -10px;
	bottom: -10px;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.705);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
	opacity: 0;
	transition: 1s;
}

.catergory:hover {
	opacity: 1;
}

/* Phones ============================================================================================================================================ */
@media only screen and (max-width: 1025px) {
	.wrapper div div {
		width: 98vw;
	}

	.wrapper div {
		color: rgb(241, 241, 241);
		font-size: small;
		text-shadow: 1px 1px 5px black;
	}

	.catergory {
		opacity: 1;
		background-color: rgba(0, 0, 0, 0.555);
	}

	.logo {
		width: 100vw;
		height: 100px;
		padding-top: 0;
		text-align: center;
		font-weight: lighter;
	}

	.logo img {
		margin-top: 10px;
		height: 40px;
	}

	.contacts-top {
		top: 60px;
		font-size: small;
		width: 100%;
	}

	.navbar {
		position: fixed;
		width: 100vw;
		margin: 0;
		margin-top: 30px;
		height: 60px;
		top: auto;
		left: 0;
		transform: translateX(0);
		background-color: aliceblue;
		bottom: 0;
		z-index: 110;

	}

	/* .navbar {
		display: none;

	} */





	.navbar .nav_links {
		display: flex;
		text-align: center;

		line-height: 0px;
		height: 50px;
		justify-content: space-between;
	}

	.navbar .nav_links li {
		line-height: 0px;
	}

	.navbar .nav_links a {
		font-size: x-small;
		font-family: Arial, Helvetica, sans-serif;
		display: block;
		height: 50px;
		padding-top: 15px;
		padding: 10px;
		color: #292929;
		/* background-color: aqua; */
		text-shadow: none;
		font-weight: lighter;
		text-decoration: none;
	}

	.navbar .nav_links a span {
		font-size: medium;
	}

	.navbar .nav_links p {
		margin: 0;
		padding: 10px;
	}

	.gallery_drop {
		position: absolute;
		bottom: 0;
		left: 0;
		margin-top: 300px;
		width: 100vw;
		transform-origin: bottom center;
		padding-bottom: 50px;
		background-color: aliceblue;
		z-index: -1;
		text-align: left;
	}

	.gallery_drop a {
		height: 70px;
		line-height: 70px;
		/* background-color: aliceblue; */
		color: #292929;
		/* text-indent: 10px; */
		padding-left: 10px;
	}

	.gallery_item.active .gallery_drop {
		transform: scaleY(1);
		opacity: 1;
		background-color: aliceblue;
	}

	.socials {
		position: absolute;
		top: 5px;
		right: 1vw;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 150px;
	}

	.socials img {
		margin: 10px 15px;
		height: 30px;
	}
}