@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}
.container {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* nav bar open  */
#nav-bar {
	height: auto;
	width: 100%;
	position: fixed;
	z-index: 100;
	background-color: #FFA500;
}
.nav-bar {
	background-color: #FFA500;
	left: 0;
	top: 0;
	padding: 1rem 5rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-bar .brand a {
    font-family: 'Righteous', cursive;
	font-size: 3rem;
    text-decoration: none;
	color: white;
}
.nav-bar .nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav-bar .nav-list .hamburger {
	border: 2px solid white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
	width: 70px;
	transition: .3s ease transform;
	cursor: pointer;
}
.nav-bar .nav-list .hamburger.active {
	transform: rotate(360deg);
}
.nav-bar .nav-list .hamburger.active .bar:before {
	top: 0;
	transform: rotate(45deg);
}
.nav-bar .nav-list .hamburger.active .bar:after {
	top: 0;
	transform: rotate(-45deg);
}
.nav-bar .nav-list .hamburger.active .bar {
	background-color: transparent;
}
.nav-bar .nav-list .hamburger .bar {
	height: 2px;
	width: 30px;
	background-color: white;
	position: relative;
	display: flex;
}
.nav-bar .nav-list .hamburger .bar::before,
.nav-bar .nav-list .hamburger .bar::after {
	content: '';
	position: absolute;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: white;
	transition: .3s ease all;
}
.nav-bar .nav-list .hamburger .bar::before {
	top: 8px;
}
.nav-bar .nav-list .hamburger .bar::after {
	bottom: 8px;
}
.nav-bar .nav-list ul {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #FFA500;
	padding: 5rem 0;
	transform: translateY(-100%);
	transition: .3s ease transform;
	text-align: center;
	z-index: -1;
}
.nav-bar .nav-list ul li {
	list-style: none;
	display: block;
	position: relative;
}
.nav-bar .nav-list ul li:hover:after {
	transform: translateX(-50%) scale(1);
}
.nav-bar .nav-list ul li:after {
	content: '';
	position: absolute;
	width: 5rem;
	height: .2rem;
	background-color: white;
	left: 50%;
	transform: translateX(-50%) scale(0);
	bottom: 0;
	transition: .3s ease transform;
}
.nav-bar .nav-list ul li a {
	font-size: 1.8rem;
	text-decoration: none;
	text-transform: uppercase;
	color: white;
	display: block;
	letter-spacing: .15rem;
	padding: 2rem 3rem;
}
.nav-bar .nav-list.open ul {
	transform: translateY(90px);
}
/* nav bar close */

/* hero section open */
.hero {
	min-height: 80vh;
	width: 100%;
	padding-top: 50px;
	justify-content: center;
	background-color: #FFA500;
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
}
.hero .hero-info {
	width: 100%;
    margin-left: 5rem;
    margin-right: 5rem;
	text-align: center;
}
.hero .hero-info .hero-info-heading {
	font-size: 5rem;
	font-weight: 500; 
	color: white;
}
.hero .hero-info .hero-info-subheading {
	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: .5rem;
	color: white;
}
.hero .hero-info .hero-info-button {
	margin-top: 30px;
	padding: 2rem 5rem;
	display: inline-block;
	font-size: 1.6rem;
	text-transform: uppercase;
	color: white;
	text-decoration: none;
	letter-spacing: .6rem;
	background-color: #B2E079;
}
.hero .hero-img {
	height: auto;
	width: 100%;
	margin-bottom: 3rem;
}
.hero .hero-img img {
	height: 100%;
	width: 100%;
}
/* hero section close */

/* products section open  */
.blends {
	flex-direction: column;
	min-height: 70vh;
    margin-top: 3rem;
    overflow: hidden;
}
.blends .blends-header {
	width: 80%;
	text-align: left;
}
.blends .blends-header .blends-header-heading {
	font-size: 4rem;
	text-transform: uppercase;
	letter-spacing: 2px;
    color: rgb(35, 35, 35);
}
.blends .blends-header .blends-header-desc {
	font-size: 1.3rem;
    text-align: left;
	line-height: 2rem;
	margin-top: 10px;
}
.blends .blends-info {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
    padding-bottom: 1rem;
	flex-direction: column;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
}
.blends .blends-info  .blends-info-slider {
    display: flex;
    scroll-snap-type: x mandatory;
    width: 100%;
    margin-left: 1rem;
}
.blends .blends-info  .blends-info-slider .blend {
    position: relative;
    width: calc(50% - 50px);
	min-height: 400px;
	transition: .3s ease transform;
    flex: 0 0 auto;
    scroll-snap-align: center;
}
.blends .blends-info  .blends-info-slider .blend .blend-card {
	position: absolute;
	width: 100%;
    top: -3rem;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	transform-style: preserve-3d;
	transition: .3s ease transform;
}
.blends .blends-info  .blends-info-slider .blend .blend-card.scaled {
    transform: scale(1.1);
    z-index: 1;
  }
.blends .blends-info .blends-info-slider .blend .blend-card:not(blend-card-active) {
    transform: scale(0.87); 
  }
.blends .blends-info .blends-info-slider .blend .blend-card:hover {
    transform: scale(1.1);
  }
.blends .blends-info .blends-info-slider .blend .blend-card .blend-front {
	position: absolute;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 100%;
    max-width: 200px;
    max-height: 250px;
    margin-top: 35px;
	display: flex;
	flex-direction: column;
	align-items: left;
	justify-content: center;
    object-fit: cover;
    object-position: center center;
}
.blends .blends-info .blends-info-slider .blend .blend-card .blend-front-info {
    margin: .5rem;
}
.blends .blends-info .blends-info-slider .blend .blend-card .blend-front-info .blend-front-heading {
    position: relative;
    font-size: 2.5rem;
	text-transform: capitalize;
    text-align: left;
	color: rgb(35, 35, 35);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.blends .blends-info .blends-info-slider .blend .blend-card .blend-front-info .blend-front-desc {
    position: relative;
    font-size: 1.3rem;
    line-height: 2rem;
    text-align: left;
    color: rgb(35, 35, 35);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.blends .blends-info .blends-info-slider .blend:nth-child(1) .blend-card .blend-front {
	background-image: url(./images/product-img-1.png);
	background-size: cover;
	position: relative;
	color: white;
}
.blends .blends-info .blends-info-slider .blend:nth-child(2) .blend-card .blend-front {
	background-image: url(./images/product-img-4.jpg);
	background-size: cover;
	position: relative;
	color: white;
}
.blends .blends-info .blends-info-slider .blend:nth-child(3) .blend-card .blend-front {
	background-image: url(./images/product-img-3.png);
	background-size: cover;
	position: relative;
	color: white;
}
.blends .blends-info .blends-info-slider .blend:nth-child(4) .blend-card .blend-front {
	background-image: url(./images/product-img-2.png);
	background-size: cover;
	position: relative;
	color: white;
}
.blends .blends-info .blends-info-slider .blend:nth-child(5) .blend-card .blend-front {
	background-image: url(./images/product-img-1.png);
	background-size: cover;
	position: relative;
	color: white;
}
.blends .blends-info .blends-info-slider .blend:nth-child(6) .blend-card .blend-front {
	background-image: url(./images/product-img-4.jpg);
	background-size: cover;
	position: relative;
	color: white;
}
.blends .blends-info .blends-info-slider .blend:nth-child(2) .blend-card .blend-front i {
	color: white;
}
/* products section close  */

/* about open  */
.about {
	width: 100%;
	min-height: 50vh;
	padding: 5rem 5rem;
	flex-direction: column;
}
.about .about-info {
	text-align: left;
}
.about .about-info .about-info-heading {
	font-size: 4rem;
	text-transform: uppercase;
	letter-spacing: .3rem;
    color: rgb(35, 35, 35);
}
.about .about-info .about-info-desc {
	font-size: 1.3rem;
	line-height: 2rem;
	margin-top: 10px;
}
.about .about-info .about-info-button {
	padding: 1.6rem 2.6rem;
	display: inline-block;
	background-color: #B2E079;
	color: white;
	text-decoration: none;
	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: .2rem;
	margin-top: 20px;
	margin-bottom: 20px;
}
.about .about-img {
	display: block;
}
.about .about-img .about-img-wrapper {
	margin-top: 5rem;
	height: auto;
	max-width: 300px;
	position: relative;
	display: inline-block;
}
.about .about-img .about-img-wrapper img {
	height: 100%;
	width: 100%;
}
.about .about-img .about-img-wrapper::after {
	position: absolute;
	content: '';
	right: -6rem;
	top: 50%;
	transform: translateY(-50%);
	width: 70%;
	height: 120%;
	background-color: rgba(34, 33, 33, 0.158);
	z-index: -1;
}
/* about close  */

/* footer open  */
.footer {
	min-height: 20vh;
	width: 100%;
    text-align: left;
	background-color: #B2E079;
	color: white;
	flex-direction: column;
	padding: 5rem;
}
.footer .footer-contact {
	padding: 20px;
}
.footer .footer-contact .footer-contact-heading {
	font-size: 2.5rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 10px;
}
.footer .footer-contact .footer-contact-info {
	font-size: 1.7rem;
	padding-top: 10px;
    text-align: left;
	letter-spacing: .2rem;
    color: white;
}

/* footer close  */

/* media query desktop and tab open  */
@media only screen and (min-width: 768px) {
	.nav-bar .nav-list .hamburger {
		display: none;
	}
	.nav-bar {
		width: 80%;
	}
	.nav-bar .nav-list ul {
		transform: translateX(0);
		position: initial;
		padding: 0;
		z-index: initial;
		background-color: transparent;
	}
	.nav-bar .nav-list ul li {
		display: inline-block;
	}
	.hero {
		height: 100vh;
		flex-direction: row;
		padding-left: 10%;
		justify-content: center;
		align-items: center;
	}
	.hero .hero-info {
		max-width: 30%;
		text-align: left;
	}
	.hero .hero-info .hero-info-subheading {
		font-size: 1.3rem;
		letter-spacing: .5rem;
	}
	.hero .hero-img {
		min-width: 400px;
		max-width: 1000px;
	}
	.about {
		width: 80%;
		margin: 0 auto;
		flex-direction: row;
        padding-bottom: 10rem;
	}
	.about .about-info {
		width: 50%;
		text-align: left;
		padding-right: 17rem;
	}

	.blends .blends-header {
		align-items: left;
        max-width: 35%;
        padding-top: 10px;
		margin-right: 70%; 
        margin-left: 33%;
	}
	.blends .blends-info .blends-info-slider {
        display: grid;
		width: 100%;
        grid-template-columns: repeat(4, 1fr); /* Update to 4 columns */
        grid-gap: .1rem; /* Update grid gap as needed */
	}
	.blends .blends-info .blends-info-slider .blend {
		margin: 0;
        width: 90%;
        min-width: 200px;
	}
}
/* media query desktop and tab close  */

/* media query desktop only open  */
@media only screen and (min-width: 1200px) {
	.hero .hero-info .hero-info-heading {
		font-size: 6rem;
	}
	.hero .hero-info .hero-info-subheading {
		letter-spacing: .8rem;
	}
    .blends .blends-info .blends-info-slider {
        display: grid;
		width: 100%;
        grid-template-columns: repeat(6, 1fr); /* Update to 4 columns */
        grid-gap: .1rem; /* Update grid gap as needed */
	}
}
/* media query desktop only close  */