@charset "UTF-8";
{
	padding: 0;
	margin: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
}
a:link {
      text-decoration: none;
}

a:visited {
      text-decoration: none;
}

a:hover {
      text-decoration: none;
}

a:active {
      text-decoration: none;
}
body{
	background-color: #242424;
	font-family: "Roboto";
}

nav{
	background: #111111;
	height: 50px;
	box-shadow: 2px 2px 20px 15px #090909;
}
label.logo{
	color: white;
	font-size: 30px;
	padding: 0 175px;
	font-weight: bold;
	transform: translateY(-5px);
	font-family: "Roboto";
}

nav ul{
	float: left;
}

nav ul li{
	display: inline-block;
	margin: 0 15px;
	margin-top: 5px;
}

nav ul li a{
	color: white;
	font-size: 15px;
	padding: 7px 13px;
	text-transform: uppercase;
}
.header-title{
	color: white;
	align-content: center;
	margin-top: 70px;
	font-size: 30px;
	font-weight: bold;
	margin-left: 170px;
	display: block;
}
.header-title p{
	font-size: 13px;
	font-weight: normal;
}
.header-title button{
	font-size: 18px;
	background-color: red;
	font-weight: bold;
	color: white;
	border: none;
	float: right;
	margin-right: 140px;
}
.Header-products{
	width: 90%;
	height: 0%;
	transform: translateY(10%);
	flex-wrap: wrap;
	display: flex;
	justify-content: space-evenly;
}
.Header-products .card{
	width: 250px;
	height: 400px;
	border-radius: .25px;
	margin-bottom: 70px;
	background-color: #0f0f0f;
	overflow: hidden;
	align-items: center;
}
.Header-products .card .prod-image{
	width: 220px;
}
.Header-products .card .prod-info h4{
	font-size: 22px;
	align-items: center;
	transform: translateY(15px);
	color: white;
}
.Header-products .card .prod-image img{
	width: 100%;
}
.Header-products .card .prod-image img:hover{
	transform: scale(1.07);
}

@media (max-width: 1011px){
	nav ul li{
		visibility: hidden;
	}
	label.logo{
		font-size: 28px;
	}
	.header-title{
		font-size: 18px;
		margin-top: 120px;
	}
	.header-title button{
		font-size: 18px;
	}

}
.prod-body{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.carousel-bar{
	font-weight: bold;
	color: white;
	background-color: #0f0f0f;
	height: 180px;
	drop-shadow: black;
}
.carousel-bar h5{
	font-weight: bold;
	color: white;
	margin-left: 170px;
	drop-shadow: black;
	padding-top: 100px;
	font-size: 30px;
	transform: translateY(-50px);
}
.carousel-bar H6{
	margin-left: 170px;
	transform: translateY(-50px);
	font-size: 14px;
}
.xx-sectionbar1{
	background-color: #0f0f0f;
	height: 180px;
}
.carousel{
	width: 100%;
	height: 50vh;
	position: relative;
	margin-top: 100px;
}
.carousel ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
.slide{
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: 200ms opacity ease-in-out;
    transition-delay: 200ms;
}
.slide[data-active] {
	opacity: 1;
	z-index: 1;
	transition-delay: 0ms;
}

.slide img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 2;
}
.slide img:hover {
	color: rgba(0, 0, 0, 0);
}
.carousel-button {
  position: absolute;
  z-index: 2;
  background: none;
  border: none;
  font-size: 4rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
  border-radius: .25rem;
  padding: 0 .5rem;
  background-color: rgba(0, 0, 0, .1);
}
.carousel-button.prev{
	left: 1rem;
}
.carousel-button.next{
	right: 1rem;
}
.carousel-button:hover,
.carousel-button:focus {
  color: white;
  background-color: rgba(0, 0, 0, .2);
}

.carousel-button:focus {
  outline: 1px solid black;
}