/* Home Styles */

html {
  	scroll-behavior: smooth;
}

#hero {
  	position: relative;
  	width: 100%;
  	height: 100vh;
  	overflow: hidden;
	margin-top: -94px;
}

#hero .swiper-container {
  	width: 100%;
  	height: 100%;
}

#hero .swiper-wrapper {
  	display: flex;
  	transition-timing-function: ease;
}

#hero .swiper-slide {
  	position: relative;
  	width: 100%;
  	height: 100%;
  	background-size: cover;
  	background-position: center;
}

#hero .slider-container {
	display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 41, 32, 1) 100%);
}

#hero .slider-content {
  	position: absolute;
    color: #ffffff;
    z-index: 10;
    padding: 100px 440px 200px 40px;
    max-width: 1040px;
    margin: 0 auto;
	bottom: 0;
}

#hero .slider-content h1 {
  	margin-bottom: 25px;
}

#hero .description {
	margin-bottom: 30px;
}

#hero .description p {
  	font-size: 18px;
  	font-weight: 300;
	line-height: 1.4;
	letter-spacing: .25px;
}

#hero .buttons {
  	display: flex;
  	gap: 25px;
	margin-top: 45px;
}

#hero .buttons p {
	font-weight: 300;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#hero .btn {
  	padding: 14px 40px;
  	border: 1px solid #ffffff;
  	color: #fff;
  	border-radius: 8px;
  	transition: background-color 0.3s;
}

#hero .btn:hover {
  	background-color: #ffffff;
	color: #000000;
}

#hero .swiper-button-next, #hero .swiper-button-prev {
  	color: #ffffff;
  	border: 1px solid #ffffff;
  	border-radius: 50%;
  	padding: 10px;
  	transition: background-color 0.3s;
	height: 40px;
	width: 40px;
}

#hero .swiper-navigation-icon {
	height: 16px;
}

#hero .swiper-button-next:hover, #hero .swiper-button-prev:hover {
  	background-color: #ffffff;
	color: #000000;
}

#hero .swiper-button-next {
  	right: 40px;
}

#hero .swiper-button-prev {
  	left: 40px;
}

#hero .swiper-pagination {
    position: absolute;
    bottom: 50px; /* Adjust the bottom position of the dots */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

#hero .swiper-pagination-bullet {
    display: inline-block;
    width: 7px; /* Adjust the size of the dots */
    height: 7px; /* Adjust the size of the dots */
    margin: 0 5px; /* Space between the dots */
    background-color: transparent; /* Default dot color */
	border: 3px solid #ffffff;
    border-radius: 50%;
    transition: background-color 0.3s;
}

#hero .swiper-pagination-bullet-active {
    background-color: #ffffff; /* Active dot color */
	border: 3px solid #ffffff;
}

#hero .swiper-pagination-bullet:hover {
    background-color: rgba(255, 255, 255, 0.9); /* Hover effect */
}

#about {
  	padding: 180px 40px 90px;
	scroll-margin-top: 10px;
}

#about .about {
  	max-width: 1440px;
  	margin: 0 auto;
}

#about .about-content {
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: space-between;
  	flex-wrap: wrap; /* Make it responsive for smaller screens */
}

#about .about-item {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	width: 100%;
	gap: 75px;
}

#about .about-text-mobile {
	display: none;
}

#about .about-image {
  	flex: 1;
}

#about .about-image img {
  	width: 100%;
  	height: auto;
  	border-radius: 12px;
}

#about .about-text {
  	flex: 1;
}

#about .about-text h2 {
  	margin-bottom: 25px;
	color: #003E30;
}

#about .description {
	margin-bottom: 30px;
}

#about .description p {
  	font-size: 18px;
  	font-weight: 300;
	line-height: 1.4;	
	letter-spacing: .25px;
	color: #002920;
}

#about .buttons {
  	display: flex;
  	gap: 25px;
	margin-top: 45px;
}

#about .buttons p {
	font-weight: 300;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#about .btn {
  	padding: 14px 40px;
  	border: 1px solid #002920; /* Button color */
  	color: #002920;
  	border-radius: 8px;
  	transition: background-color 0.3s ease;
}

#about .btn:hover {
  	background-color: #002920; /* Darker shade on hover */
	color: #ffffff;
}

#product {
  	padding: 90px 40px 250px;
	scroll-margin-top: 90px;
}

#product .product-header {
    text-align: center;
	max-width: 1040px;
	margin: 0 auto;
}

#product .product-header h2 {
    margin-bottom: 25px;
	color: #003E30;
}

#product .product-header .description {
	margin-bottom: 75px;
}

#product .product-header .description p {
    font-size: 18px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: .25px;
	color: #002920;
}

#product .sub-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    column-gap: 40px;
    row-gap: 100px;
	max-width: 1440px;
    margin: 0 auto;
}

#product .product-card {
	display: flex;
    flex-direction: column;
	justify-content: space-between;
    border-radius: 12px;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #ededed;
    transition: transform 0.3s ease-in-out;
    position: relative;
    height: 100%;
}

#product .product-card-content {
    flex: 1 1 auto; /* grows as needed */
}

#product .product-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

#product .product-thumbnail img {
    width: 100%;
    height: 260px;
    border-radius: 12px;
	object-fit: cover;
}

#product .product-name {
	margin-bottom: 10px;
	color: #003E30;
}

#product .product-description p {
	font-weight: 300;
	letter-spacing: .25px;
	line-height: 1.4;
	color: #002920;
}

#product .product-details {
    display: flex;
    flex-wrap: wrap; /* Wrap items to the next line if needed */
    margin-top: 15px;
	margin-bottom: 5px;
}

#product .product-details ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

#product .product-details li {
    width: 100%; /* Two columns */
	border-top: 1px solid #ededed;
	padding: 15px 0;
}

#product .product-details li:last-child {
	border-bottom: 1px solid #ededed;
}

#product .product-details li p {
    display: flex;
    justify-content: space-between;
    width: 100%; /* Two columns */
}

#product .product-details li span {
    font-size: 16px;
	font-weight: 300;
	letter-spacing: .25px;
	color: #002920;
}

#product .product-buttons {
	position: static;
}

#product .product-buttons p {
	width: 100%;
	margin-top: 15px;
}

#product .product-buttons p:first-child {
	margin-top: 0;
}

#product .product-buttons a {
	display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #002920;
    border-radius: 8px;
    padding: 14px 40px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#product .product-buttons a:hover {
	background-color: rgba(0, 41, 32, 0.6);
}

#why_us {
	background-color: #007A5E;
	scroll-margin-top: 10px;
}

#why_us .container {
    display: flex;
    flex-wrap: wrap;
	align-items: flex-start;
    padding: 180px 40px 200px;
    gap: 75px;
	max-width: 1440px;
	margin: 0 auto;
}

#why_us .why-us-header {
    flex: 1 1 40%;
}

#why_us .why-us-header h2 {
    margin-bottom: 25px;
	color: #ffffff;
}

#why_us .why-us-header .description p {
    font-size: 18px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: .25px;
	color: #ffffff;
}

#why_us .why-us-header .buttons {
  	display: flex;
  	gap: 25px;
	margin-top: 45px;
}

#why_us .why-us-bottom {
    display: none;
}

#why_us .why-us-header .buttons p, #why_us .why-us-bottom .buttons-mobile p {
	font-weight: 300;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ffffff;
}

#why_us .why-us-header .btn, #why_us .why-us-bottom .btn {
  	padding: 14px 40px;
  	border: 1px solid #ffffff; /* Button color */
  	color: #ffffff;
  	border-radius: 8px;
  	transition: background-color 0.3s ease;
}

#why_us .why-us-header .btn:hover, #why_us .why-us-bottom .btn:hover {
  	background-color: #ffffff; /* Darker shade on hover */
	color: #00AB66;
}

#why_us .why-us-details {
    flex: 1 1 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

#why_us .detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

#why_us .detail-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

#why_us .detail-item p {
    letter-spacing: .25px;
    font-weight: 300;
	color: #ffffff;
}

#review {
    position: relative; 
    padding: 180px 40px 90px;
	scroll-margin-top: 10px;
}

#review .review-container {
    text-align: center;
	position: relative;
	max-width: 1440px;
	margin: 0 auto;
}

#review .review-header {
    max-width: 1040px;
	margin: 0 auto;
}

#review .review-heading {
    margin-bottom: 25px;
	color: #003E30;
}

#review .review-description {
    font-weight: 300;
	color: #002920;
	line-height: 1.4;
	letter-spacing: .25px;
    margin-bottom: 75px;
}

#review .review-description p {
	font-size: 18px;
}

#review .swiper-container {
    width: 100%;
    position: relative;
	overflow: hidden;
    max-width: 1160px;
    margin: 0 auto;
}

#review .swiper-wrapper {
    display: flex;
    justify-content: space-between;
}

#review .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #ededed;
	border-radius: 12px;
	padding: 30px;
	box-sizing: border-box;
	height: 100%;
}

#review .review-user {
	display: flex;
    align-items: center;
    justify-content: flex-start;
	gap: 20px;
}

#review .review-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

#review .review-name {
	color: #003E30;
}

#review .review-text {
	text-align: left;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: .25px;
	margin-top: 20px;
	color: #002920;
}

#review .swiper-container.no-swiper {
	max-width: 1440px;
}

#review .swiper-container.no-swiper .swiper-wrapper {
    display: flex;
    gap: 40px;
    transform: none !important;
}

#review .swiper-container.no-swiper .swiper-slide {
    width: calc((100% - 80px) / 3);
    flex-shrink: 0;
}

#faq {
    padding: 90px 40px 130px;
	scroll-margin-top: 100px;
}

#faq .faq-container {
    margin: 0 auto;
    max-width: 1040px;
}

#faq .faq-header {
	text-align: center;
}

#faq .faq-heading {
    margin-bottom: 25px;
	color: #003E30;
}

#faq .faq-description {
    font-weight: 300;
    color: #002920;
    line-height: 1.4;
    letter-spacing: .25px;
    margin-bottom: 75px;
}

#faq .faq-description p {
	font-size: 18px;
}

#faq .faq-item {
    margin-bottom: 20px;
	padding-bottom: 20px;
    overflow: hidden;
    cursor: pointer;
	border-bottom: 1px solid #ededed;
}

#faq .faq-item:last-child {
	border: none;
}

#faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin-bottom: 10px;
}

#faq .faq-question h4 {
	color: #003E30;
}

#faq .faq-answer {
	display: none;
    text-align: left;
}

#faq .faq-answer {
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: .25px;
	color: #002920;
}

#faq .faq-question .toggle-icon svg:hover {
	background-color: #002920;
	color: #ffffff;
}

#faq .faq-question .toggle-icon svg:hover path {
	fill: #ffffff;
}


#faq .faq-question .toggle-icon svg {
    height: 16px;
    width: 16px;
    padding: 20px;
    border: 1px solid #002920;
    border-radius: 50%;
	transition: background-color 0.3s ease, fill 0.3s ease;
}

#faq .faq-item.active .faq-answer {
    display: block; /* Display answer when item is active */
}

@media (max-width: 1024px) {
	#hero .slider-content {
		padding: 0 30px 125px;
		text-align: center;
	}
	
	#hero .description p {
		font-size: 16px;
		max-width: 555px;
	}
	
	#hero .buttons {
		margin-top: 25px;
		justify-content: center;
	}
	
	#hero .btn {
		display: inline-block;
	}
	
	#hero .buttons p {
		font-size: 12px;
	}
	
	#hero .swiper-pagination {
		bottom: 40px;
	}
	
	#about {
		padding: 125px 30px 75px;
	}
	
	#about .about-item {
		display: block;
	}
	
	#about .about-text-mobile {
		display: block;
		padding-bottom: 30px;
        text-align: center;
	}
	
	#about .about-image {
		padding-bottom: 30px;
		text-align: center;
	}
	
	#about .about-image img {
		max-width: 500px;
	}
	
	#about .about-text {
		text-align: center;
	}
	
	#about .about-text h2 {
		display: none;
	}
	
	#about .description {
		max-width: 555px;
		margin: auto;
	}
	
	#about .description p {
		font-size: 16px;
	}
	
	#about .buttons {
		margin-top: 25px;
		justify-content: center;
	}
	
	#about .buttons p {
		font-size: 12px;
	}

	#about .btn {
		display: inline-block;
	}
	
	#product {
		padding: 50px 30px 180px;
	}
	
	#product .product-header .description {
		margin: 0 auto 30px;
		max-width: 555px;
	}
	
	#product .product-header .description p {
		font-size: 16px;
	}
	
	#product .sub-products {
		grid-template-columns: repeat(2, 1fr);
    	column-gap: 30px;
        row-gap: 75px;
		max-width: calc(768px - 60px);
		margin: auto;
	}
	
	#product .sub-products > :last-child:nth-child(odd) {
	  	grid-column: 1 / -1;
		width: calc((100% - 30px) / 2);
	  	justify-self: center;
	}
	
	#product .product-card {
		padding: 20px;
	}
	
	#product .product-thumbnail img {
		height: 200px;
	}
	
	#product .product-details li span {
		font-size: 14px;
	}
	
	#product .product-buttons a {
		font-size: 12px;
	}
	
	#why_us .container {
		padding: 125px 30px;
		gap: 40px;
		flex-direction: column;
	}
	
	#why_us .why-us-header h2 {
		text-align: center;
	}
	
	#why_us .why-us-header {
		margin: auto; 
	}
	
	#why_us .why-us-header .description {
		max-width: 555px;
	}
	
	#why_us .why-us-header .description p {
		text-align: center;
		font-size: 16px;
	}
	
	#why_us .why-us-bottom {
		display: flex;
		flex: 1 1 100%;
		justify-content: center;
		margin: auto;
	}
	
	#why_us .why-us-header .buttons {
		display: none;
	}
	
	#why_us .why-us-bottom .buttons-mobile {
		display: flex;
  		gap: 25px;
		justify-content: center;
	}
	
	#why_us .why-us-bottom .btn {
		display: inline-block;
	}
	
	#why_us .why-us-details {
		grid-template-columns: repeat(2, 1fr);
    	column-gap: 75px;
        row-gap: 30px;
		margin: auto;
	}
	
	#why_us .detail-item p {
		margin-top: 10px;
	}
	
	#why_us .why-us-bottom .buttons-mobile p {
		font-size: 12px;
	}
	
	#review {
		padding: 125px 30px 85px;
	}
	
	#review .swiper-slide {
		padding: 20px;
	}
	
	#review .review-image {
		height: 60px;
		width: 60px;
	}
	
	#review .review-description p {
		font-size: 16px;
	}
	
	#review .review-description {
		margin: 0 auto 40px;
		max-width: 555px;
	}
	
	#review .swiper-button-next {
		top: 700px;
		right: 135px;
		--swiper-navigation-size: 35px;
	}
	
	#review .swiper-button-prev {
		top: 700px;
		left: 135px;
		--swiper-navigation-size: 35px;
	}
	
	#review .swiper-container.no-swiper {
		margin-bottom: -85px;
		max-width: calc(768px - 60px);
	}
	
	#review .swiper-container.no-swiper .swiper-wrapper {
	  	display: flex;
	  	flex-direction: row;
	  	flex-wrap: wrap;
	  	column-gap: 30px;
	  	row-gap: 30px;
	}

	#review .swiper-container.no-swiper .swiper-wrapper > * {
	  	flex: 0 0 calc((100% - 30px) / 2);
	  	max-width: calc((100% - 30px) / 2);
	}

	#review .swiper-container.no-swiper .swiper-wrapper > :last-child:nth-child(odd) {
	  	margin-left: auto;
	  	margin-right: auto;
	}

    #review .swiper-container.no-swiper .swiper-slide {
        width: 100%;
    }
	
	#faq {
		padding: 125px 30px 75px;
		scroll-margin-top: 10px;
	}
	
	#faq .faq-description {
		margin: 0 auto 40px;
		max-width: 555px;
	}
	
	#faq .faq-description p {
		font-size: 16px;
	}
	
	#faq .faq-container {
		max-width: 555px;
	}
	
	#faq .faq-question .toggle-icon svg {
		padding: 14.5px;
	}
}

@media (max-width: 767px) {
	#hero .slider-content {
		padding: 0 20px 125px;
	}
	
	#about {
		padding: 125px 20px 75px;
	}
	
	#product {
		padding: 50px 20px 180px;
	}
	
	#product .sub-products {
		grid-template-columns: repeat(1, 1fr);
    	gap: 75px;
	}
	
	#product .sub-products > :last-child:nth-child(odd) {
	  	grid-column: 1;
		width: auto;
	  	justify-self: unset;
	}
	
	#why_us .container {
		padding: 125px 20px;
	}
	
	#why_us .why-us-details {
		gap: 30px;
	}
	
	#why_us .detail-item {
		display: block;
		text-align: center;
	}
	
	#review {
		padding: 125px 20px 85px;
	}
	
	#review .swiper-container.no-swiper .swiper-wrapper {
        flex-direction: column;
        gap: 30px;
    }
	
	#review .swiper-container.no-swiper .swiper-wrapper > * {
	  	flex: auto;
	  	max-width: none;
	}
	
	#faq {
		padding: 125px 20px 75px;
	}
}