@charset "utf-8";
/* CSS Document */

html,
body {
	width: 100%;
	font-family: 'Roboto Condensed', sans-serif !important;
	font-size: 14px;
}

p {
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
}

nav {
	height: 80px;

}

#navbar.container-fluid {
	background-color: black !important;
}


main {
	margin-top: 80px;
}

header {}

.mt-120 {
	margin-top: 120px !important;
}

.btn {

	width: 180px !important;
	border-radius: 0 !important;
}

a {
	text-decoration: inherit !important;
}

.text-shadow {
	text-shadow: 1px 1px 2px var(--secondary-grey);
}

.contact-info a {
	color: white !important;
}

#productcategory-homepage {
	text-align: center;
}

#productcategory-homepage div {
	margin: auto;
	display: inline-block;
}

#productcategory-homepage a {
	color: black;
}

#productcategory-homepage a:hover {
	color: #0d6efd;
}

.text-link-yellow-hover:hover {

	background-color: var(--primary-yellow) !important;

}

.text-hover-yellow:hover {

	color: var(--primary-yellow) !important;

}

.productCategories:hover {
	color: var(--primary-yellow) !important;
}

.text-link-black-hover:hover {

	background-color: var(--secondary-grey) !important;
	color: white !important;
}

.feature-title {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 550;
}

div#searchPBox {
	width: 18rem;
	display: none;
	float: right;
	position: absolute;
	top: 50px;
	right: 10px;
	overflow-y: auto;
	max-height: 500px;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, .125);
	border-radius: 0.25rem;
}

/*--------------------------------------------------------------
	Shop Single Product
--------------------------------------------------------------*/
.product-gallery {
	list-style: none;
	padding: 0;
	width: 100%;
	margin: 10px 0 0;
}

.product-gallery li {
	display: inline-block;
	width: 15%;
	margin: 0 5px;
}

.product-gallery li:first-child {
	margin-left: 0;
}

.product-title {
	margin: 0 0 20px;
	color: #111;
}

.star,
.star-off {
	margin-bottom: 5px;
	color: #f1c40f;
}

.star-off {
	color: #e5e5e5;
}

.amount {
	font-size: 32px;
	color: #111;
}

.reviews {
	margin: 0;
}

a.gallery {
	position: relative;
	display: block;
}

a.gallery img {
	display: block;
	overflow: hidden;
	width: 100%;
}

.tab-content {
	border: #dee2e6 solid 3px;
	padding: 5px;
}

/*--------------------------------------------------------------
	Shop Items
--------------------------------------------------------------*/
.shop-item {
	text-align: center;
	margin: 0 0 40px;
}

.shop-item-image {
	position: relative;
	overflow: hidden;
}

.shop-item-image img {
	width: 100%;
}

.shop-item-detail,
.shop-item-image:after {
	transition: all 0.4s ease-in-out 0s;
}

.shop-item-image:after {
	position: absolute;
	display: block;
	content: "";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

.shop-item-detail {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 100%;
	padding: 20px;
	opacity: 0;
	z-index: 2;
	text-align: center;
	font-size: 12px;
	color: #aaa;
}

.shop-item-title {
	font-weight: 400;
	font-size: 14px;
	color: #111;
	margin: 15px 0 5px;
}

/* Shop item hover */
.shop-item:hover .shop-item-image:after {
	background: rgba(255, 255, 255, 0.7);
}

.shop-item:hover .shop-item-detail {
	opacity: 1;
	bottom: 50%;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%);
}

/*HOMEPAGE - Carousel*/
#introCarousel .carousel-inner .carousel-item {
	height: 600px;
	width: 100%;
	overflow: hidden;

}

#introCarousel .carousel-inner .carousel-item .carousel-img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

#introCarousel .carousel-inner .carousel-item .carousel-text {
	height: 600px;
}


/*--------------------------------------------------------------
	Gallery
--------------------------------------------------------------*/
.gallery-item {
	position: relative;
	text-align: center;
	margin: 0 0 20px;
}

.gallery-image {
	position: relative;
	overflow: hidden;
}

.gallery-image a.gallery {
	position: relative;
	display: block;
}

.gallery-image img {
	display: block;
	overflow: hidden;
	width: 100%;
}

.gallery-image:after {
	position: absolute;
	background: transparent;
	content: " ";
	display: block;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

.gallery-caption {
	position: absolute;
	width: 100%;
	opacity: 0;
	bottom: 100%;
	left: 0;
	z-index: 2;
	text-align: center;
	font-size: 28px;
	color: #fff;
	padding: 20px;
}

.gallery-icon {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	height: 50px;
	width: 50px;
	font-size: 24px;
	margin: 0 auto;
}

.gallery-icon i,
.gallery-icon span {
	line-height: 50px;
}

/* Gallery hover */
.gallery-item:hover .gallery-image:after {
	background: rgba(0, 0, 0, 0.6);
}

.gallery-item:hover .gallery-caption {
	opacity: 1;
	bottom: 50%;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%);
}

/* Hamburger menu in Navbar */
.animated-icon {
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

.animated-icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.animated-icon span {
	background: #e3f2fd;
}

.animated-icon span:nth-child(1) {
	top: 0px;
}

.animated-icon span:nth-child(2),
.animated-icon span:nth-child(3) {
	top: 10px;
}

.animated-icon span:nth-child(4) {
	top: 20px;
}

.animated-icon.open span:nth-child(1) {
	top: 11px;
	width: 0%;
	left: 50%;
}

.animated-icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.animated-icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.animated-icon.open span:nth-child(4) {
	top: 11px;
	width: 0%;
	left: 50%;
}

.navbar-toggler {
	border: none !important;
}

/* Color setup */
:root {
	--primary-yellow: #fcbe5e;
	--secondary-grey: #616161;
	--tertiary-lightgrey: #EBEBEB;
}


.primaryText-yellow {
	color: var(--primary-yellow);
}

.primaryBg-yellow {
	background-color: var(--primary-yellow) !important;
}

.secondaryBg-grey {
	background-color: var(--secondary-grey) !important;
}

.tertiaryBg-lightgrey {
	background-color: var(--tertiary-lightgrey) !important;
}

.tertiaryText-lightgrey {
	color: var(--tertiary-lightgrey) !important;
}

.secondaryText-grey {
	color: var(--primary-grey) !important;
}

.btn-yellow {
	background-color: var(--primary-yellow) !important;
	color: black !important;
}

.btn-yellow:hover {
	background-color: black !important;
	color: var(--primary-yellow) !important;
}

.btn-white {
	background-color: white !important;
	color: black !important;
}

.btn-white:hover {
	background-color: black !important;
	color: white !important;
}


.btn-none {

	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;

}

.btn-none.btn-search:hover {

	filter: grayscale(100%);
}

.btn-trans {
	transition: all .5s ease;
	color: white !important;
	border: 3px solid white !important;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.0) !important;
	outline: none;
	font-weight: bold !important;

}

.btn-trans:hover {
	border: 3px solid var(--primary-yellow) !important;
	color: white !important;
	background-color: rgba(0, 0, 0, 0.4) !important;
}

.form-line {
	border: 1px solid white;
	background-color: black !important;
	color: white !important;
	float: left;
	margin: 0;
	padding-left: 0 !important;
	border-radius: 0 !important;
	border-top: 0px !important;
	border-left: 0px !important;
	border-right: 0px !important;
}

.navbar-toggler-icon {
	color: white !important;
}

#navbarSupportedContent .nav-link {
	color: white !important;
	padding: 0 15px !important;
	position: relative;
	font-size: 16px;
}

#navbarSupportedContent .nav-link ul.dropdown-menu li {
	font-size: 16px;
}

#navbarSupportedContent .nav-link:hover {
	color: var(--primary-yellow) !important;
}

.container-fluid h3 {
	font-size: 14px;
}

.container-fluid h3.card-title {
	font-size: 20px;
}

.container-fluid h3.card-title:hover {
	font-size: 20px;
	color: #f1c40f;
}

.footer-link {

	text-decoration: none;
	list-style-type: none;
	color: white;

}

.footer-links {
	padding-left: 0 !important;
	margin-left: 0 !important;
}


.social-footer {
	padding: 1rem;

}

.social-footer-icons ul {

	list-style-type: none;
}

.social-footer .social-footer-icons li:last-of-type {
	margin-right: 0;
}

.social-footer .social-footer-icons .fa {
	font-size: 1.3rem;
	color: #fefefe;
}

.social-footer .social-footer-icons .fa:hover {
	color: var(--primary-yellow);
	transition: color 0.3s ease-in;
}

.footer-link {
	margin-bottom: 9px;
}

.footer-link:hover,
.social-footer-icons a:hover {
	color: var(--primary-yellow);
}



.space-between-parts-large {

	margin-top: 6rem;
	margin-bottom: 6rem;

}

.space-between-parts-small {

	margin-top: 4rem;
	margin-bottom: 4rem;

}


.bigfont {
	font-size: 1.7rem;
	color: grey;
}




.bg-lightgrey {
	background-color: #EBEBEB;
}



#about-us-jumbotron {}

#charity-group {
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}


.counter {
	margin-top: 6rem !important;
}

.counter-item {

	font-stretch: normal;
	font-style: normal;
	line-height: 0.86;
	letter-spacing: normal;
	text-align: center;
	margin-bottom: 5rem;
}


.counter-item h2 {
	font-size: 4rem !important;
	font-family: 'Bebas Neue', cursive;
}

.counter-item p {
	font-size: 1.3rem !important;
}

.center {
	padding: 0 7rem;
}

.card {
	height: 100% !important;
	padding: 15px;
	margin: 10px;
	border: 1px solid #ddd;
	text-align: center;
}

.card img {
	margin-left: auto;
	margin-right: auto;
}

/* .product-card {
	height: 100%!important;
 	padding: 2px;
 	margin: 5px;
	width:
    border:1px solid #ddd;
    text-align: center;
	color: black!important;

 }
 
 .product-card:hover {
	 border: 1px solid var(--primary-yellow)!important;
	 color: black;
 } */

.shadow {
	box-shadow: 0 5px 15px 2px rgba(0, 0, 0, 0.3);
}


.line-decor-15 {
	height: 4px !important;
	background-color: var(--primary-yellow);
	max-width: 150px;
	opacity: 100% !important;
}


.p-after-hero {

	text-align: center;
	margin: auto;
	padding-top: 2rem;
	padding-bottom: 2rem;
	font-family: 'Roboto Condensed', sans-serif !important;
}

.our-story-hero-desktop {
	display: none !important;

}


#carouselControlsAbout .carousel-item img {

	height: 100%;
	width: 100%;
	object-fit: cover;

}

#carouselControlsAbout .carousel-item {
	height: 43rem;
	width: 100%;
	overflow: hidden;

}

.blog-hero-pics img {
	height: 400px;
	width: 100%;
	object-fit: cover;
}

.blog-thumbnails-img img {
	object-fit: cover;
	width: 100%;
	height: 230px;
}


/* contact us */

.fill {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden
}

.fill img {
	flex-shrink: 0;
	min-width: 100%;
	min-height: 100%
}

.btn-send {
	text-transform: uppercase;
	letter-spacing: 0.2em;
	width: 100%;
	margin: 10px 0;
}

.help-block.with-errors {
	color: #ff5050;
	margin-top: 5px
}

#contact-form label {
	margin-bottom: 8px;
}

#contact-form .form-group {
	text-align: left;
	margin: 10px 0;
}

#contactus-card {
	height: auto !important;
}


/*HOMEPAGE*/

/*old hero using Pic*/


#hero-homepage,
.hero {
	width: 100%;
	position: relative;
}

#hero-img img,
.hero-img img {
	width: 100vw;

}

#hero-content,
.hero-content {
	position: absolute;
	bottom: 30px;
	left: 20px;
	width: 600px;
	background-color: rgba(235, 235, 235, 0.9);
	padding: 20px;

}

/*---end---*/

header.home-hero {
	position: relative;
	height: 89vh;
	min-height: 90vh;
	width: 100%;
	overflow: hidden;
}

header.home-hero #home-hero-content {
	position: relative;
	z-index: 10;
	height: 100%;

}

#home-text-container {
	position: absolute;
	width: 900px;
	height: 140px;
	background-color: rgba(235, 235, 235, 0.9);
	padding: 20px;
	left: 0;
	right: 0;
	bottom: 20px;
	margin: auto;
	text-align: center;




}

header.home-hero video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);

}

#hero-content-products {
	position: absolute;
	top: 30px;
	right: 20px;
	width: 400px;
	height: 400px;
	border-right: 1px solid #fff;
	padding: 20px;
	text-align: right;
}



.img-hover-zoom {

	overflow: hidden;

}

.img-hover-zoom img,
#homepage-featureproduct img {

	transition: transform 1s, filter 0.75s ease-in-out;
	transform-origin: center center;
	filter: brightness(100%);
	cursor: pointer;
}

.img-hover-zoom img:hover,
#homepage-featureproduct img:hover {

	filter: brightness(105%);
	transform: scale(1.3);

}



/* All Product Page */

#carouselProducts .carousel-item {
	height: 30rem;
}


.hero-category-product {

	height: 30rem;
	background-size: cover;
	background-position-x: center;
	background-position-y: top;
	background-repeat: no-repeat;


}

.product-box {
	width: 16rem;
	height: 3.5rem;
	color: black;
	transition: all .5s ease;
	border: 3px solid black;
	text-align: center;

}

.pagee .card {
	color: black !important;
}

.card-body,
.card-title {
	color: black !important;
}

.pagee {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.pagee .card {
	height: 100% !important;
	padding: 2px;
	margin: 5px;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #fff;
	text-align: center;
	display: table-cell;
	color: black !important;
}

.pagee .card:hover {
	border: 1px solid var(--primary-yellow) !important;
	color: black;
}

.pager.btn-primary {
	background-color: var(--primary-yellow) !important;
	color: black !important;
	border: none !important;
}

.pager.btn:focus {
	box-shadow: 0 0 0 0.25rem rgb(233 233 233 / 25%) !important;
}

#accordionPanelsStayOpenExample .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.product-filter-btns button,
.product-filter-btns .accordion-body {}

.ds-table th {
	border-bottom-width: 0px !important;
}

.accordion-button:not(.collapsed) {
	color: black !important;
	background-color: rgba(232, 232, 232, 1.00) !important;
}

.accordion-button:focus {
	border-color: var(--primary-yellow) !important;
	box-shadow: 0 0 0 0.25rem rgb(233 233 233 / 25%) !important;
}

.form-check-input:checked {
	background-color: var(--primary-yellow) !important;
	border-color: var(--primary-yellow) !important;
	color: black !important;
}

.form-check-input:focus {
	box-shadow: 0 0 0 0.25rem rgb(233 233 233 / 25%) !important;
}



/* Individual Product */

#ind-products-features {
	height: 200px;
}

#product-gallery-container {
	text-align: center;

}

.carousel-control-prev-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}


#product-gallery .carousel-inner>.item>img,
.carousel-inner>.item>a>img {
	margin: auto;
}

#product-gallery {
	max-width: 650px;
	margin: 0 auto;
}

#thumbCarousel {
	max-width: 650px;
	margin: 0 auto;
	overflow: hidden;
	padding: 10px 0;
}

#thumbCarousel .thumb {
	float: left;
	margin-right: 10px;
	border: 1px solid #ccc;
}

#thumbCarousel .thumb:last-child {
	margin-right: 0;
}

.thumb:hover {
	cursor: pointer;
}

.thumb img {
	opacity: 0.5;
}

.thumb img:hover {
	opacity: 1;
}

.thumb.active img {
	opacity: 1;
	border: 1px solid #fcbe5e;
}


/* Cookie Banner */
.cookie-container {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background: #2f3640;
	color: #f5f6fa;
	padding: 16px 32px;
	box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
	transition: 400ms;
	z-index: 99;
}

.cookie-container.active {
	bottom: 0;
}

.cookie-container {
	color: #f5f6fa;
}





/*Small devices (tablets, 576px and down)*/


@media (max-width: 576px) {

	#productcategory-homepage img,
	#homepage-featureproduct img {

		filter: brightness(100%);
	}

	h3.display-4 {
		font-size: 1.6rem;
		text-align: center;
		font-weight: bold;
	}

	h3.display-3 {
		font-size: 1.7rem;
		font-weight: bold;
	}

	.counter {
		margin-top: 3rem !important;
	}

	/*old hero using pic*/
	#hero-content {
		position: absolute;
		bottom: 30px;
		left: 20px;
		width: 350px;
		background-color: rgba(235, 235, 235, 0.9);
		padding: 30px;
		text-align: left !important;

	}

	/*--end--*/


	#home-text-container {

		width: 400px;
		height: 240px;
	}

	#home-hero-content {
		position: absolute;
		padding: 30px;
	}

	.hero-category-product {

		height: 20rem;

	}
	
	div#searchPBox {
		top: 430px;
		left: 60px;
		overflow-y: auto;
		max-height: 500px;
	}
}

@media (max-width: 767px) {



	#hero-homepage {
		text-align: center;

	}

	.card {

		padding: 0 !important;

	}

	.card-body {
		padding-left: 0 !important;
		padding-right: 0 !important;

	}

	#charity-group {
		width: 100%;

	}

	.product-box {
		width: 10rem;

	}

	#product-filter-desktop {
		display: none;
	}

	#ind-products-features {
		display: none;
	}

	#product-filter-products {
		margin-top: 2rem;
	}
	
	div#searchPBox {
		top: 430px;
		left: 60px;
		overflow-y: auto;
		max-height: 500px;
	}
}

@media (max-width: 992px) {




	#introCarousel .carousel-inner .carousel-item {
		height: 100%;
	}

	#introCarousel .carousel-inner .carousel-item .carousel-img {
		height: 100%;
	}

	#introCarousel .carousel-inner .carousel-item .carousel-text {
		height: 100%;
		padding: 2rem 0;
	}

	.product-box {
		width: 9rem !important;

	}

	.nav-link {
		margin-bottom: 20px;
	}

}

@media (max-width: 1200px) {

	.nav-link {
		margin-bottom: 20px;
	}

	.navbar-nav {

		margin-top: 20px;
	}

	.search-form-nav {
		margin: 40px 20px;
	}

	.product-box {
		width: 13rem;

	}

}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
	.card {
		height: 350px;
	}

	.w-80-responsive {
		width: 100% !important;
		margin-left: auto;
		margin-right: auto;
	}

	.w-80-responsive p {
		padding: 0 80px;
	}

	#product-filter-mobile {
		display: none;
	}

	#CTA-homepage {
		padding-bottom: 2rem;
	}


}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
	.card {
		height: 500px;
	}

	.counter-item h2 {
		font-size: 6rem !important;
	}

	.w-80-responsive {
		width: 80% !important;
		margin-left: auto;
		margin-right: auto;
	}


}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
	.card {
		height: 400px;
	}

}