@charset "utf-8";
/* CSS Document */

*,
body {
	font-family: "Poppins", sans-serif !important;
	font-style: normal !important;
	margin: 0;
	padding: 0;
}

.DancingFont {
	font-family: "Dancing Script", cursive !important;
	font-optical-sizing: auto;
	font-style: normal;
}

.PayfairFont {
	font-family: "Playfair Display", serif !important;
	font-optical-sizing: auto;
	font-style: normal;
}

.Header {
	width: 100%;
	background-color: rgb(217 72 91 / 100%);
	position: sticky;
	top: 0;
	transition: all .2s ease-in-out;
	z-index: 999;
}

.Header.Sticky {
	background-color: rgb(217 72 91 / 85%);
	box-shadow: 0 10px 20px 6px rgb(24 10 12 / 22%);
	backdrop-filter: blur(6px);
	position: fixed;
}

.HeadRow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin: 0 -20px;
}

.HeadLogo {
	display: inline-block;
	padding: 15px 20px;
}

.HeadLogo img {
	max-width: 130px;
	width: 100%;
	height: auto;
	transition: all .2s ease-in-out;
}

.Header.Sticky .HeadLogo img {
	max-width: 110px;
}

.HeadMenu {
	width: auto;
}

.HeadMenu ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

.HeadMenu ul li {
	list-style: none;
}

.HeadMenu ul li a {
	font-size: 18px;
	font-weight: 500;
	color: #fff !important;
	text-transform: uppercase;
	padding: 36px 20px;
	text-decoration: none !important;
	display: flex;
	align-items: center;
	transition: all .3s ease-in-out;
}

.Header.Sticky .HeadMenu ul li a {
	padding: 30px 20px;
}

.HeadMenu ul li a:hover {
	color: #343434 !important;
}

.HeadMenu ul li a svg {
	width: 22px;
	height: 22px;
	margin-left: 12px;
}

.DropdownMenu {
	position: absolute;
	background-color: #f6f6f6;
	max-width: 300px;
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
	border-radius: 3px;
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, 20px, 0);
	transition: all 200ms linear;
}

.HeadMenu ul li:hover .DropdownMenu,
.DropdownMenu:hover {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0px, 0);
}

.HeadMenu .DropdownMenu:before {
	content: '';
	width: 15px;
	height: 15px;
	position: absolute;
	background: #f6f6f6;
	left: 40px;
	top: -7px;
	transform: rotate(45deg);
	z-index: -1;
}

.DropdownMenu ul {
	margin: 0;
	padding: 6px 0;
	display: flex;
	flex-wrap: wrap;
}

.DropdownMenu ul li {
	list-style: none;
	width: 100%;
}

.DropdownMenu ul li a {
	font-size: 17px;
	font-weight: 500;
	color: #343434 !important;
	text-transform: capitalize;
	padding: 11px 22px !important;
	text-decoration: none;
	display: flex;
	align-items: center;
	transition: all .3s ease-in-out;
}

.DropdownMenu ul li a:hover {
	color: #D2042D !important;
}

.HoMeBannerSec {
	width: 100%;
	height: 850px;
	position: relative;
	display: flex;
	align-items: center;
}

.BannerImg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
}

.BannerConSec {
	width: 100%;
	max-width: 600px;
	position: relative;
	padding-left: 150px;
}

.BannerSmallText {
	font-size: 72px;
	color: #0b0b0b;
	text-transform: lowercase;
	margin: 0 0 -15px 0;
	line-height: normal;
}

.BannerLargeText {
	font-size: 90px;
	color: #b23150;
	text-transform: uppercase;
	margin: 0 0 0 0;
	line-height: normal;
}

.BannerBu {
	font-size: 18px;
	background-color: #0b0b0b;
	border: none;
	color: #fff;
	text-transform: uppercase;
	padding: 15px 25px;
	letter-spacing: 2px;
	margin: 40px 0 0 0;
	transition: all .2s ease-in-out;
}

.BannerBu:hover {
	background-color: #d9485b;
}

.FeatureSec {
	width: 100%;
	padding: 60px 0;
	background-color: #f9f9f9;
}

.FeatureCard {
	width: 33.33%;
	padding: 15px;
}

.FeatureCardUnder {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.FeatureIconSec {
	border-radius: 50%;
	width: 150px;
	height: 150px;
	position: relative;
	background-color: #f3edee;
}

.FeatureCard .FeatureIcon {
	width: 90px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-height: 90px;
}

.FeatureTitle {
	width: 100%;
	text-align: center;
	font-size: 18px;
	margin: 20px 0 0 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	color: #0b0b0b;
}

.ProductSec {
	width: 100%;
	padding: 80px 0;
	position: relative;
}

.ProductSec::before {
	content: '';
	position: absolute;
	background-image: url(../img/websiteGraphicImg1.png);
	width: 600px;
	height: 1000px;
	left: -120px;
	bottom: -500px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: .3;
}

.ProductSecTitle {
	width: 100%;
	text-align: center;
	font-size: 48px;
	color: #0b0b0b;
	position: relative;
	padding: 0 0 35px 0;
	margin: 0 0 60px 0;
	text-transform: capitalize;
}

.ProductSlider {
	width: 100%;
	position: relative;
}

.ProductSlider .owl-stage-outer {
	padding: 15px 0;
}

.ProductSlider .owl-stage-outer .owl-item .item {
	width: calc(100% - 30px);
    height: calc(100% - 30px);
    margin: auto;
}

.TitleUnderlineImg {
	width: 180px;
	height: auto;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

.ProductCard {
	width: 100%;
	position: relative;
	background-color: #f9f9f9;
	border-radius: 6px;
	overflow: hidden;	
	transition: all .3s ease-in-out;
}

.ProductCard:hover {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.ProductTag {
	width: auto !important;
	height: auto !important;
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 0;
	text-transform: uppercase;
	color: #fff;
	background: #d9485b;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1px;
	z-index: 3;
	clip-path: polygon(100% 0, 94% 50%, 100% 100%, 0 100%, 0 0);
	padding: 5px 20px 5px 10px;
	border-radius: 3px 0 0 3px;
	line-height: 16px;
}

.ProductImage {
	width: 100%;
	height: 450px;
	overflow: hidden;
}

.ProductImage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all .3s ease-in-out;
	transform: scale(1);
}

.ProductCard:hover .ProductImage img {
	transform: scale(1.1);
}

.ProductConSec {
	width: 100%;
	padding: 10px 20px;
}

.ProductTitle {
	font-size: 16px;
	color: #0b0b0b;
	font-weight: 400;
	margin: 0 0 0 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ProductBU {
	width: 100%;
	border: 1px solid #d9485b;
	background-color: #fff;
	color: #0b0b0b;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 8px;
	margin: 20px 0 5px 0;
	border-radius: 4px;
	transition: all .2s ease-in-out;
}

.ProductBU:hover {
	background-color: #d9485b;
	color: #fff;
}

.ProductSlider .owl-nav {
	position: absolute;
	top: 40%;
	transform: translate(0, -50%);
	width: 100%;
	margin: 0 !important;
	display: flex;
	justify-content: space-between;
}

.ProductSlider .owl-nav button.owl-prev {
	background-color: #d9485b !important;
	width: 60px;
	height: 50px;
	margin: 0 0 0 -15px;
	position: relative;
	transition: all .2s ease-in-out;
}

.ProductSlider .owl-nav button.owl-next {
	background-color: #d9485b !important;
	width: 60px;
	height: 50px;
	margin: 0 -15px 0 0;
	position: relative;
	transition: all .2s ease-in-out;
}

.ProductSlider .owl-nav button.owl-prev:hover,
.ProductSlider .owl-nav button.owl-next:hover {
	background-color: #0b0b0b !important;
}

.ProductSlider .owl-nav button.owl-prev:after {
	content: '';
	position: absolute;
	background-image: url(../img/arrow-left.svg);
	width: 33px;
	height: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.ProductSlider .owl-nav button.owl-next:after {
	content: '';
	position: absolute;
	background-image: url(../img/arrow-right.svg);
	width: 33px;
	height: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.ProductSlider .owl-nav .owl-prev span,
.ProductSlider .owl-nav .owl-next span {
	display: none;
}

.ProductBUSec {
	display: flex;
	justify-content: center;
	padding-top: 80px;
}

.ProductViewallBU {
	font-size: 18px;
	background-color: #0b0b0b;
	color: #fff;
	border: none;
	padding: 15px 25px;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all .2s ease-in-out;
}

.ProductViewallBU:hover {
	background-color: #d9485b;
}

.CategorySec {
	width: 100%;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.CategorySec::before {
	content: '';
	position: absolute;
	background-image: url(../img/websiteGraphicImg2.png);
	width: 1000px;
	height: 1000px;
	right: -250px;
	bottom: -110px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: .2;
	transform: rotate(270deg);
}

.CategoryRow {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
	position: relative;
}

.CategoryCard {
	width: 25%;
	padding: 15px;
}

.CategoryCardUnder {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.CategoryCard img {
	width: auto;
	height: 350px;
	object-fit: contain;
	object-position: center;
}

.CategoryTitle {
	font-size: 42px;
	font-weight: 600;
	color: #0b0b0b;
	width: 100%;
	text-align: center;
	text-transform: capitalize;
}

.NewsletterSec {
	width: 100%;
	height: 600px;
	background-color: #d9485b;
	position: relative;
	overflow: hidden;
}

.NewsletterGraphic {
	width: 100%;
	height: 600px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-47%, -50%);
	opacity: .2;
}

.NewsletterRow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	width: 100%;
	max-width: 1200px;
	padding: 15px;
	position: relative;
	margin: auto;
	height: 100%;
}

.NewsletterTitle {
	font-size: 62px;
	color: #ffffff;
	font-weight: 600;
	text-transform: capitalize;
	width: 100%;
	text-align: center;
}

.NewsletterText {
	font-size: 22px;
	color: #e7e7e7;
	font-weight: 300;
	width: 100%;
	max-width: 900px;
	text-align: center;
}

.NewsletterFormSec {
	width: 100%;
	max-width: 800px;
	height: 70px;
	padding: 0 5px 0 25px;
	margin: 40px 0 0 0;
	display: flex;
	align-items: center;
	background-color: #c1384a;
}

.NewsletterFormSec>div,
.NewsletterFormSec>div form p span {
	width: 100%;
}

.NewsletterFormSec>div form p {
	display: flex;
    margin: 0;
    align-items: center;
    width: 100%;
    position: relative;
}

.NewsletterFormSec>div form p span.wpcf7-spinner {
	width: 24px;
	position: absolute;
    right: 0;
    margin: 0 20px;
    background: #c1384a;
}

.NewsletterFormSec>div form .wpcf7-response-output {
	display: none;
}

.NewsletterFormSec>div form p span span.wpcf7-not-valid-tip {
	position: absolute;
    bottom: -50px;
    color: #363636;
}

.NewsletterFormSec input {
	font-size: 20px;
	background: transparent;
	border: none;
	color: #fff;
	width: 100%;
}

::placeholder {
	color: #e7e7e7;
	opacity: 1;
	/* Firefox */
}

::-ms-input-placeholder {
	/* Edge 12-18 */
	color: #e7e7e7;
}

.NewsletterFormSec input:hover,
.NewsletterFormSec input:focus,
.NewsletterFormSec input:active {
	border: none;
	outline: none;
	box-shadow: none;
}

.NewsletterBU {
	min-width: 60px;
	height: 50px;
	background-color: #c1384a;
	border: none;
	color: #fff;
}

.NewsletterBU:hover {
	color: #0b0b0b;
}

.NewsletterBU svg {
	width: 24px;
	height: 24px;
	stroke-width: 1.5px;
	transform: translate(0px, 0px);
	transition: all .2s ease-in-out;
}

.NewsletterBU:hover svg {
	transform: translate(10px, 0px);
}

.FooterSec {
	width: 100%;
	padding: 80px 0 10px 0;
	background-color: #fff;
}

.FootRow {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 -15px;
}

.FootSecBig {
	width: 40%;
	padding: 15px 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	align-content: flex-start;
}

.FootLogo {
	min-width: 100px;
	max-width: 180px;
	object-position: center;
	height: auto;
	object-fit: contain;
}

.FootContent {
	font-size: 16px;
	line-height: 30px;
	color: #7b7b7b;
	text-align: left;
	margin: 30px 0 0 0;
	width: 85%;
}

.FootSecSmall {
	width: 30%;
	padding: 15px 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	align-content: flex-start;
}

.FooterSecTitle {
	font-size: 20px;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: .6px;
	font-weight: 400;
	padding: 0;
	line-height: normal;
	text-align: left;
	color: #0b0b0b;
	width: 100%;
}

.FootQuickLinks {
	width: 100%;
	margin: 0;
	padding: 0;
}

.FootQuickLinks li {
	width: 100%;
	list-style: none;
}

.FootQuickLinks li a {
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	color: #7b7b7b;
	text-decoration: none;
	padding: 7px 0;
	display: block;
	transition: all .2s ease-in-out;
}

.FootQuickLinks li a:hover {
	color: #d9485b;
}

.FootContactUL {
	width: 100%;
	margin: 0;
	padding: 0;
}

.FootContactUL li {
	width: 100%;
	list-style: none;
}

.FootContactUL li a {
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	color: #7b7b7b;
	text-decoration: none;
	padding: 10px 0;
	display: flex;
	align-items: center;
	transition: all .2s ease-in-out;
}

.FootContactUL li a:hover {
	color: #d9485b;
}

.FootContactUL li a span {
	color: #0b0b0b;
	font-weight: 500;
	margin-right: 8px;
}

.FootContactUL li a svg {
	min-: 20px;
	height: 20px;
	color: #d9485b;
	margin-right: 10px;
}

.FootOpenHours {
	font-size: 15px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	color: #0b0b0b;
	text-decoration: none;
	padding: 10px 0;
}

.FootSocialMediaSec {
	width: 100%;
	display: flex;
	justify-content: left;
	align-items: center;
	margin: 0 0 0 -16px;
}

.FootSocialMediaSec a {
	position: relative;
	z-index: 1;
	background: none;
	align-items: center;
	justify-content: center;
	display: flex;
	width: 50px;
	height: 50px;
}

.FootSocialMediaSec a img {
	width: 20px;
	height: 20px;
	transition: transform .25s ease;
}

.FootSocialMediaSec a:hover img {
	filter: brightness(0) invert(1);
}

.FootSocialMediaSec a:after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	background-color: #0b0b0b;
	transform: scale(0);
	transition: transform .25s ease;
}

.FootSocialMediaSec a:hover:after {
	transform: scale(1);
}

.FooterCopyRightText {
	width: 100%;
	text-align: center;
	font-size: 15px;
	font-weight: 300;
	line-height: normal;
	color: #0b0b0b;
	text-decoration: none;
	padding: 30px 0 10px 0;
	margin: 0;
}

.ContactModal .modal-content {
	border-radius: 16px;
	overflow: hidden;
}

.ContactModal .modal-body {
	padding: 0;
}

.ContactModalRow {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.ContactModalImgSec {
	width: 40%;
	position: relative;
}

.ContactModalImgSec img.BgGra {
	width: 280px;
	height: auto;
	object-fit: cover;
	object-position: center;
	position: absolute;
	bottom: 0;
	left: 10px;
}

.ContactModalImgSec img.BgGra2 {
	width: 280px;
	height: auto;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 100px;
	left: 20px;
}

.ContactModalFormSec {
	width: 60%;
	padding: 40px 40px;
	background: #f6f6f6;
	position: relative;
}

.ContactModalCloseBU {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 5px;
	right: 5px;
	color: #d9485b;
	background: no-repeat;
	border: none;
	transition: all .2s ease-in-out;
}

.ContactModalCloseBU:hover {
	color: #0b0b0b;
}

.ContactModalCloseBU svg {
	width: 35px;
	height: 35px;
	stroke-width: 1.5px;
}

.ContactModalTitle {
	font-size: 36px;
	font-weight: 600;
	text-transform: capitalize;
	color: #0b0b0b;
	padding: 0 0 15px 0;
	margin: 0 0 25px 0;
	position: relative;
}

.ContactModalTitle:after {
	content: '';
	position: absolute;
	width: 80px;
	height: 5px;
	background-color: #d9485b;
	bottom: 0;
	left: 5px;
}

.FormGroup {
	width: 100%;
	padding: 10px 0;
}

.FormGroup input {
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	color: #0b0b0b;
	padding: 10px;
	border: 1px solid #0b0b0b;
}

.FormGroup textarea {
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	color: #0b0b0b;
	padding: 10px;
	border: 1px solid #0b0b0b;
	height: 150px;
	resize: none;
}

.FormGroup input::placeholder,
.FormGroup textarea::placeholder {
	color: #686868;
	opacity: 1;
	/* Firefox */
}

.FormGroup input::-ms-input-placeholder,
.FormGroup textarea::placeholder {
	/* Edge 12-18 */
	color: #686868;
}

.ContactModalFormSecBU {
	font-size: 18px;
	background-color: #0b0b0b;
	color: #fff;
	border: none;
	padding: 15px 25px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 10px 0 0 0;
	transition: all .2s ease-in-out;
}

.ContactModalFormSecBU:hover {
	background-color: #d9485b;
}

.ThankYouSec {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.ThankYouSec::before {
	content: '';
	position: absolute;
	background-image: url(../img/websiteGraphicImg1.png);
	width: 500px;
	height: 800px;
	left: -100px;
	top: 240px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: .3;
	transform: rotate(0deg);
}

.ThankYouSec::after {
	content: '';
	position: absolute;
	background-image: url(../img/websiteGraphicImg2.png);
	width: 600px;
	height: 500px;
	right: -50px;
	top: -90px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: .2;
	transform: rotate(-180deg);
}

.ThankYouRow {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.ThankyouImg {
	width: auto;
	height: 200px;
	margin-bottom: 25px;
}

.ThankyouTitle {
	width: 100%;
	text-align: center;
	font-size: 52px;
	font-weight: 600;
	color: #d9485b;
}

.ThankyouShortTT {
	width: 100%;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	color: #7a7a7a;
}

.ThankyouBu {
	font-size: 18px;
	background-color: #0b0b0b;
	border: none;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	padding: 15px 25px;
	letter-spacing: 2px;
	margin: 30px 0 60px 0;
	transition: all .2s ease-in-out;
}

.ThankyouBu:hover {
	background-color: #d9485b;
}

.ThankYouFollow {
	font-size: 20px;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: .6px;
	font-weight: 400;
	padding: 0;
	line-height: normal;
	text-align: center;
	color: #0b0b0b;
	width: 100%;
}

.ThankYouSocialMediaSec {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
}

.ThankYouSocialMediaSec a {
	position: relative;
	z-index: 1;
	background: none;
	align-items: center;
	justify-content: center;
	display: flex;
	width: 50px;
	height: 50px;
}

.ThankYouSocialMediaSec a img {
	width: 20px;
	height: 20px;
	transition: transform .25s ease;
}

.ThankYouSocialMediaSec a:hover img {
	filter: brightness(0) invert(1);
}

.ThankYouSocialMediaSec a:after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	background-color: #0b0b0b;
	transform: scale(0);
	transition: transform .25s ease;
}

.ThankYouSocialMediaSec a:hover:after {
	transform: scale(1);
}

.WhatsappBU {
	width: 100%;
    background: #d9485b;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    padding: 12px 10px;
    border-radius: 35px;
    margin-top: 30px;
    text-decoration: none !important;
    transition: all .2s ease-in-out;
}

.WhatsappBU:hover {
	background: #333;
}

.WhatsappBU img {
	width: 32px;
    margin: 0 12px 0 0;
}

@media (min-width: 360px) {
	.FootSecBig {
		width: 100%;
		justify-content: center;
	}
	.FootSecSmall {
		width: 100%;
		justify-content: center;
		padding: 25px 15px;
	}
	.FootContent {
	    text-align: center;
	    margin: 30px 0 0 0;
	    width: 85%;
	}
	.FooterSecTitle {
	    margin-bottom: 12px;
	    text-align: center;
	    width: 100%;
	}
	.FootQuickLinks li a {
	    text-align: center;
	    padding: 7px 0;
	}
	.FootContactUL li a {
		justify-content: center;
	}
	.FootOpenHours {
		text-align: center;
	}
	.FootSocialMediaSec {
	    justify-content: center;
	    margin: 0 0 0 0;
	}
	.FootContactUL {
	    margin: 0 0 25px 0;
	}
	.CategoryCard {
	    width: 33.33%;
	}
}

@media (min-width: 480px) {}

@media (min-width: 576px) {}

@media (min-width: 768px) {
	.CategoryTitle {
		font-size: 34px;
	}
	.CategoryCard img {
		height: 280px;
	}
	.ProductSec::before {
		width: 400px;
		height: 800px;
		left: -120px;
		bottom: -500px;
	}
	.CategorySec::before {
		width: 500px;
        height: 500px;
        right: -150px;
        bottom: -70px;
	}
	.FeatureIconSec {
		width: 120px;
		height: 120px;
	}
	.FeatureCard .FeatureIcon {
		width: 70px;
		max-height: 60px;
	}
	.NewsletterTitle {
		font-size: 48px;
	}
	.NewsletterText {
		font-size: 18px;
	}
	.NewsletterGraphic {
		height: 600px;
		left: -120px;
	}
}

@media (min-width: 992px) {
	.NewsletterGraphic {
		height: 600px;
		left: 0;
	}
	.NewsletterTitle {
		font-size: 62px;
	}
	.NewsletterText {
		font-size: 22px;
	}
	.CategoryCard {
	    width:25%;
	}
	.FeatureIconSec {
		width: 150px;
		height: 150px;
	}
	.FeatureCard .FeatureIcon {
		width: 90px;
		max-height: 80px;
	}
	.ProductSec::before {
		width: 400px;
		height: 1000px;
		left: -120px;
		bottom: -500px;
	}
	.CategorySec::before {
		width: 500px;
        height: 500px;
        right: -150px;
        bottom: -70px;
	}
}

@media (min-width: 1200px) {
	.FootContactUL {
	    margin: 0 0 0 0;
	}
	.FootSocialMediaSec {
	    justify-content: left;
	    margin: 0 0 0 -16px;
	}
	.FootOpenHours {
		text-align: left;
	}
	.FootContactUL li a {
		justify-content: flex-start;
	}
	.FootQuickLinks li a {
	    text-align: left;
	    padding: 7px 0;
	}
	.FooterSecTitle {
	    margin-bottom: 12px;
	    text-align: left;
	    width: 100%;
	}
	.FootContent {
	    text-align: left;
	    margin: 30px 0 0 0;
	    width: 85%;
	}
	.FootSecBig {
		width: 40%;
		justify-content: left;
	}
	.FootSecSmall {
		width: 30%;
		justify-content: left;
		padding: 15px 15px;
	}
	.ProductImage {
		height: 500px;
	}
	.CategoryTitle {
		font-size: 36px;
	}
	.CategoryCard img {
		height: 300px;
	}
	.ProductSec::before {
		width: 450px;
		height: 1000px;
		left: -120px;
		bottom: -500px;
	}
	.CategorySec::before {
		width: 650px;
		height: 650px;
		right: -250px;
		bottom: -110px;
	}
}

@media (min-width: 1400px) {
	.ProductImage {
		height: 450px;
	}
	.CategoryTitle {
		font-size: 42px;
	}
	.CategoryCard img {
		height: 350px;
	}
	.ProductSec::before {
		width: 500px;
	}
	.CategorySec::before {
		width: 700px;
		height: 700px;
	}
}

@media (min-width: 1600px) {
	.ProductSec::before {
		width: 600px;
	}
	.CategorySec::before {
		width: 1000px;
		height: 1000px;
	}
}

/*@media (max-width: 767px) {
	.HeadMenu {
	    width: 300px;
	    position: fixed;
	    height: 100vh;
	    background: #fff;
	    top: 99px;
	    right: 0;
	    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	}
	.HeadMenu ul {
		flex-wrap: wrap;
	}
	.HeadMenu ul li {
		width: 100%;
	}
	.HeadMenu ul li a {
	    font-size: 18px;
	    font-weight: 500;
	    color: #0b0b0b !important;
	    text-transform: uppercase;
	    padding: 16px 20px;
	    text-decoration: none !important;
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	    transition: all .3s ease-in-out;
	}
	.Header.Sticky .HeadMenu ul li a {
		padding: 16px 20px;
	}
	.HeadMenu ul li a:hover {
		color: #d9485b !important;
	}
	.DropdownMenu {
	    position: relative;
	}
	.DropdownMenu ul li a {
	    font-size: 16px;
	    font-weight: 400;
	    color: #343434 !important;
	    text-transform: capitalize;
	    padding: 10px 22px !important;
	    text-decoration: none;
	    display: flex;
	    align-items: center;
	    transition: all .3s ease-in-out;
	}
	.DropdownMenu ul li a:hover {
		color: #d9485b !important;
	}
}*/