
body {
	margin: 0;
	padding: 0;
	background-color: var(--white_bg);
}

:root {
	--white_bg: #fff;
	--border_radius: 7px;
	--border-top: 1px solid rgba(0, 0, 0, .05);
	--border-bottom: 1px solid rgba(0, 0, 0, .05);
	--border-left: 1px solid rgba(0, 0, 0, .05);
	--border-right: 1px solid rgba(0, 0, 0, .05);
	--border: 1px solid rgba(0, 0, 0, .05);
	--light_bg: #F9F9F9;
	--black_bg: #0D0D0D;
	--inactive_link: #aeaeae;
	--bg_success: #EEFCF3;
	--bg_danger: #FFEEEB;
	--bg_warning: #FFF5EB;
	--body_bg: #f7f8ff;
}

@font-face {
	font-family: 'CircularStd-Bold';
	src: url('font/circular/CircularStd-Bold.otf');
	font-weight: 800;
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'CircularStd-Black';
	src: url('font/circular/CircularStd-Black.otf');
	font-weight: 900;
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'CircularStd-Book';
	src: url('font/circular/CircularStd-Book.otf');
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'CircularStd-Light';
	src: url('font/circular/CircularStd-Light.otf');
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'CircularStd-Medium';
	src: url('font/circular/CircularStd-Medium.otf');
	font-display: swap;
	font-style: normal;
}

.alert {
	display: none;
	box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, .15);
}

l .alert p {
	margin-bottom: 0;
	font-family: 'CircularStd-Light';
	font-size: 15px;
	/*text-transform: capitalize;*/
}

.alert-container {
	position: fixed;
	top: 20%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 999999999999;
}

.whatsapp-btn {
   position: fixed;
   bottom: 2%;
   right: 5%;
   z-index: 100;
   width: 35px;
   height: 35px;
   background: #36f074;
   border-radius: 50%;
   box-shadow: 0px 0px 5px 0px rgba(0,0,0,.1);
   /* text-align: center; */
}

.whatsapp-btn a {
   text-decoration: none;
   color: #fff; 
   position: absolute;
   top: 52%;
   left: 52%;
   transform: translate(-50%, -50%);
}

.whatsapp-btn a:hover {
   text-decoration: none;
   color: #fff; 
}

.whatsapp-btn a i {
   font-size: 20px;
}

.loader {
	width: 20px;
	height: 20px;
	border: 4px solid #FFF;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.empty_state {
    font-family: 'CircularStd-Light';
    font-size: 1em;
    color: var(--black_bg);
    margin-left: 40px;
}
/**********SUccess page *********/
.success_page {
	width: 100%;
	height: 100vh;
	background: linear-gradient(to top, rgba(255, 255, 255, .7) 50%, rgba(255, 255, 255, .7) 50%), url(../img/bg_1.jpg);
	background-size: cover;
	background-repeat: repeat;
	background-position: center center;
	/*background: #f9f9f9;*/
	position: relative;
}

.success_page .success_box {
	padding: 20px 30px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 30px 40px 0 rgba(0, 0, 0, 0.1);
	/*margin-top: 50px;*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 20%);
	width: 100%;
}

.success_page .success_box .header-text h2 {
	margin-bottom: 30px;
	color: #00b35a;
	font-family: 'CircularStd-Bold';
	font-size: 2.5em;
	font-weight: 600;
}

.success_page .success_box .header-text i {
	color: #00b35a;
	font-size: 3.5em;
	margin-bottom: 30px;
}

.success_page .success_box .header-text p {
	font-family: 'CircularStd-Light';
	color: #888;
	font-size: 1.1;
	font-weight: 400;
}

.success_page .success_box .pay_info {
	margin-top: 50px;
}

.success_page .success_box .pay_info .text-box p {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	/* padding-bottom: 18px; */
	padding: 15px 0;
	margin-bottom: 0;
	font-family: 'CircularStd-Light';
	font-size: 1em;
}

.success_page .success_box .pay_info .text-box p:last-child {
	border-bottom: none;
}

.success_page .success_box .pay_info .text-box p.table_head {
	color: #888;
}

.success_page .success_box .pay_info .text-box p.amount {
	color: #000;
	font-size: 14px;
	font-weight: 600;
}

.success_page .success_box .home_btn a {
	text-decoration: none;
	color: #fff;
	font-family: 'CircularStd-Light';
	font-size: 13px;
	background: #00b35a;
}

@media screen and (max-width:950px) {

	/*********Success page***********/
	.success_page .success_box {
		padding: 30px 20px;
		background: #fff;
		border-radius: 5px;
		width: 90%;
		top: 30%;
		transform: translate(-50%, 20%);
		/*margin-top: 20px;*/
	}

	.success_page .success_box .header-text h2 {
		margin-bottom: 20px;
		font-size: 1.5em;
	}

	.success_page .success_box .header-text i {
		font-size: 3em;
		margin-bottom: 20px;
	}

	.success_page .success_box .header-text p {
		font-size: 14px;
		font-weight: 400;
	}

	.success_page .success_box .pay_info {
		margin-top: 30px;
	}

	.success_page .success_box .pay_info .text-box p {
		padding: 15px 0;
		font-size: 11px;
	}

	.success_page .success_box .home_btn {
		margin-top: 30px;
	}
}


.appBody.signinForm {
	margin-bottom: 0;
	padding: 0 15px;
	background: linear-gradient(to top, rgba(255, 255, 255, .7) 50%, rgba(255, 255, 255, .7) 50%), url(../img/bg_1.jpg);
	background-size: cover;
	background-repeat: repeat;
	background-position: bottom;
}

.appBody.signinForm .items {
	position: relative !important;
	width: 100%;
	height: 100vh;
}

.appBody .items .form-box {
	margin-bottom: 30px;
	background: #fff;
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.08);
}

.appBody .items .form-box.signin_form {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
}

.appBody .items .form-box .textBox h2 {
	font-family: 'CircularStd-Bold', sans-serif;
	font-size: 1.5em;
	color: var(--black_bg);
}

.appBody .tab_list .d-flex {
	width: 100%;
}

.appBody .items .form-box label {
	font-family: 'CircularStd-Light', sans-serif;
	font-size: 12px;
	color: var(--black_bg);
	margin-bottom: 5px;
}

.appBody .items .form-box input {
	font-family: 'CircularStd-Light', sans-serif;
	font-size: 15px;
	color: #333;
	/* border-radius: var(--border_radius); */
	border: var(--border);
}

.appBody .items .form-box button[type="submit"] {
	font-family: 'CircularStd-Medium', sans-serif;
	font-size: 15px;
	color: var(--white_bg);
	/* border-radius: var(--border_radius); */
	background: #08AC68;
	border: 1px solid #08AC68;
}

.appBody .tab_list .d-flex ul {
	width: 100%;
	border-bottom: var(--border-bottom);
	margin-bottom: 0;
	text-align: center;
}

.appBody .items .form-box .tab_list .d-flex ul li {
	width: 50%;
}

.appBody .tab_list .d-flex ul li a.active {
	color: #08AC68;
	font-family: 'CircularStd-Bold', sans-serif;
}

.appBody .tab_list .d-flex ul li a {
	text-decoration: none;
	color: var(--inactive_link);
	font-family: 'CircularStd-Light', sans-serif;
	font-size: .8em;
}

.navbar .dropdown .dropdown-menu {
	min-width: 8rem;
	border: var(--border);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	z-index: 9999999;
}

.navbar .dropdown .dropdown-menu .dropdown-item {
	font-family: 'CircularStd-Light', sans-serif;
	font-size: .7em;
	color: var(--black_bg);
	cursor: pointer;
}

.checkout_action {
	font-family: 'CircularStd-Medium', sans-serif;
	font-size: 15px;
	color: var(--white_bg);
	/* border-radius: var(--border_radius); */
	background: #08AC68;
	border: 1px solid #08AC68;
}

.checkout_action:hover {
	color: var(--white_bg);
}

/******Navigation*******/
.navbar {
	padding: 10px 30px;
	box-shadow: 0 4px 13px rgba(0, 0, 0, .05);
	background-color: var(--white_bg);
}

.navbar .navbar-brand {
	font-family: 'CircularStd-Black', serif;
	font-size: 1.5em;
	color: var(--black_bg);
}

.navbar .navbar-nav .nav-item .nav-link {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	color: var(--black_bg);
	margin-left: 40px;
}

.mobile {
	display: none;
}

.desktop {
	display: block;
}

@media screen and (max-width:950px) {
	.mobile {
		display: block;
	}

	.desktop {
		display: none;
	}

	ul.mobile.navbar-nav {
		padding: 0;
		margin: 0;

	}

	ul.mobile.navbar-nav li {
		display: inline-block;
		position: relative;
		top: 2px;

	}

	ul.mobile.navbar-nav li a {
		margin-left: 10px !important;
	}
}

.main_cart_btn {
	position: relative;
	width: 40px;
	height: 30px;
}

.main_cart_btn i {
	font-size: 25px;
}

.main_cart_btn .cart_counter {
	position: absolute;
	top: 0;
	right: 0;
	width: 15px;
	height: 15px;
	background-color: #08AC68;
	border-radius: 50%;
}

.main_cart_btn .cart_counter .counter {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white_bg);
	font-family: 'CircularStd-Light';
	font-size: .7em;
}


.heroTop {
	width: 100%;
	height: 50vh;
	margin-top: 60px;
	background: linear-gradient(to top, rgba(255, 255, 255, .7) 50%, rgba(255, 255, 255, .8) 50%), url(../img/bg_1.jpg);
	background-size: cover;
	background-repeat: repeat;
	background-position: center center;
	/*background: var(--white_bg);*/
	position: relative;
	/* background-color: #FFF8EB; */
}

.heroBottom {
	width: 100%;
	height: 50vh;
	background-color: #FFF8EB;
	background-image: linear-gradient(to left, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url('../img/3.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.heroTop .intro_text {
	margin-top: 150px;
}

.heroTop .intro_text_paragraph {
	margin-top: 150px;
}

.heroTop .intro_text h1 {
	font-family: 'CircularStd-Black';
	font-size: 5.5em;
	color: var(--black_bg);
	margin-bottom: 0;
}

.heroTop .intro_text h2 {
	font-family: 'CircularStd-Medium';
	font-size: 2em;
	color: var(--black_bg);
	margin-bottom: 0;
	margin-left: 10px;
}

.heroTop .intro_text_paragraph p {
	font-family: 'CircularStd-Light';
	font-size: 1.3em;
	color: var(--black_bg);
	margin-bottom: 20px;
	line-height: 40px;
}

.heroTop .intro_text_paragraph a {
	font-family: 'CircularStd-Medium';
	font-size: 1.1em;
	color: var(--white_bg);
	background-color: #08AC68;
	padding: 15px 50px;
	border-radius: 30px;
	text-decoration: none;
}

.about_feat {
	padding: 100px 15px;
}

.about_feat .heading h2 {
	font-family: 'CircularStd-Black';
	font-size: 3.5em;
	color: var(--black_bg);
}

.about_feat .item_box {
	margin-top: 50px;
}

.about_feat .items_box .item_box {
	padding: 40px;
	border-radius: 30px;
}

.about_feat .items_box .item_box h3 {
	font-family: 'CircularStd-Bold';
	font-size: 2em;
	margin-bottom: 30px;
}

.about_feat .items_box .item_box p {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	line-height: 30px;
}

.about_feat .items_box .item_box img {
	margin-bottom: 30px;
}

.about_feat .items_box .item_box.box_1 {
	background: #F0EDFC;
}

.about_feat .items_box .item_box.box_2 {
	background: #FFF8EB;
}

.about_feat .items_box .item_box.box_3 {
	/* background: #E6F6F0; */
	background: rgb(227, 246, 194);
}

.about_feat .items_box .item_box.box_1 h3 {
	color: #5F48DB;
}

.about_feat .items_box .item_box.box_2 h3 {
	color: #F8AC12;
}

.about_feat .items_box .item_box.box_3 h3 {
	color: #08AC68;
}

.about_feat .items_box .item_box .img_box {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	margin: 0 auto;
	position: relative;
	margin-bottom: 30px;
}

.about_feat .items_box .item_box .img_box img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.about_feat .items_box .item_box.box_1 .img_box {
	background-color: #5F48DB;
}

.about_feat .items_box .item_box.box_2 .img_box {
	background-color: #F8AC12;
}

.about_feat .items_box .item_box.box_3 .img_box {
	background-color: #08AC68;
}

.product_category {
	padding: 70px 15px;
	background-image: url('../img/pattern.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #08AC68;
}

.product_category .heading {
	padding-right: 70px;
}

.product_category .heading h2 {
	font-family: 'CircularStd-Black';
	font-size: 3em;
	color: var(--white_bg);
}

.product_category .heading p {
	font-family: 'CircularStd-Light';
	font-size: 1.1em;
	color: var(--white);
	line-height: 30px;
}

.product_category .items_body {
	margin-top: 10px;
}

.product_category .items_body .item_box {
	background-color: var(--white_bg);
	padding: 40px;
	border-radius: 20px;
}

.product_category .items_body .item_box .img_box {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	margin: 0 auto;
	position: relative;
	margin-bottom: 20px;
	background-color: #E6F6F0;
	/* border: 5px inset #26A653; */
}

.product_category .items_body .item_box .img_box img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.product_category .items_body .item_box h3 {
	font-family: 'CircularStd-Bold';
	font-size: 1.5em;
	margin-bottom: 0px;
	color: #08AC68;
}

.intersect {
	padding: 20px 15px;
	background: var(--body_bg);
}

.intersect .item_box p {
	font-family: 'CircularStd-Medium';
	font-size: 1.1em;
	color: var(--black_bg);
	margin-bottom: 0;
}

.intersect .item_box p i {
	color: #16883e;
}

.items_carousel {
	padding: 100px 15px;
}

.items_carousel .heading {
	padding: 0 60px;
}

.items_carousel .heading .text_box h2 {
	font-family: 'CircularStd-Bold';
	font-size: 3em;
	color: var(--black_bg);
}

.items_carousel .heading .text_box a {
	font-family: 'CircularStd-Light';
	font-size: 13px;
	font-weight: 600;
	color: var(--black_bg);
	text-decoration: none;
	border-bottom: 1px solid var(--black_bg);
	padding-bottom: 10px;
}

.items_carousel .swiper-container {
	padding-bottom: 50px;
	padding-top: 60px;
	position: relative;
	padding-left: 50px;
}

.items_carousel .swiper-slide {
	width: 350px;
	height: 400px;
}

.items_carousel .swiper-slide .slider_img_box {
	width: 350px;
	height: 350px;
	border: var(--border);
	overflow: hidden;
	padding: 10px;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .06);
	border-radius: 5px;
	transition: all .3s ease-in-out;
}

.items_carousel .swiper-slide .slider_img_box .slide_img {
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all .3s ease-in-out;
}

/* .items_carousel .swiper-slide .slider_img_box:hover .slide_img {
	 transform: translateX(-15px);
  } */

.items_carousel .swiper-slide .slide_text {
	margin-top: 20px;
}

.items_carousel .swiper-container a {
	text-decoration: none;
	color: black;
}

.items_carousel .swiper-slide .slide_text h2 {
	font-family: 'CircularStd-Medium';
	font-size: 17px;
	color: var(--black_bg);
}

.items_carousel .swiper-slide .slide_text p {
	font-family: 'CircularStd-Light';
	font-size: 13px;
	color: var(--black_bg);
}

.items_carousel .swiper-container .swiper-button-next {
	background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yMS44ODMgMTJsLTcuNTI3IDYuMjM1LjY0NC43NjUgOS03LjUyMS05LTcuNDc5LS42NDUuNzY0IDcuNTI5IDYuMjM2aC0yMS44ODR2MWgyMS44ODN6Ii8+PC9zdmc+') !important;
	background-size: 20px 35px;
	background-position: center;
	background-repeat: no-repeat !important;
	position: absolute;
	top: 8%;
	bottom: auto;
	/* width: 40px;
	height: 40px; */
	z-index: 10;
	cursor: pointer;
	left: auto;
	right: 60px;
}

.items_carousel .swiper-container .swiper-button-prev {
	background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjExNyAxMmw3LjUyNyA2LjIzNS0uNjQ0Ljc2NS05LTcuNTIxIDktNy40NzkuNjQ1Ljc2NC03LjUyOSA2LjIzNmgyMS44ODR2MWgtMjEuODgzeiIvPjwvc3ZnPg==') !important;
	background-size: 20px 35px;
	background-position: center;
	background-repeat: no-repeat !important;
	position: absolute;
	top: 8%;
	bottom: auto;
	/* width: 40px;
	height: 40px; */
	z-index: 10;
	cursor: pointer;
	left: 60px;
	right: auto;
}

/*******Article Body ******/
.article_body {
	padding: 100px 15px;
}

.article_body .share_socials p {
	font-family: 'CircularStd-Light', sans-serif;
	color: var(--black_bg);
	font-size: 11px;
	margin-bottom: 0px;
	font-weight: 600;
	text-transform: uppercase;
}

.article_body .share_socials {
	margin-top: 20px;
}

.article_body .share_socials .socials a {
	font-size: 20px;
	color: var(--black_bg);
	margin-right: 10px;
}

.article_body .item_box .header {
	margin-bottom: 40px;
	margin-top: 40px;
}

.article_body .item_box .header h1 {
	font-family: 'CircularStd-Bold', sans-serif;
	color: var(--black_bg);
	font-size: 2em;
}

.article_body .item_box .header span {
	font-family: 'CircularStd-Light', sans-serif;
	color: #444;
	font-size: 14px;
}

.article_body .img_box {
	width: 100%;
	height: 60vh;
	margin-bottom: 40px;
}

.article_body .img_box .img {
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 5px;
}

.article_body .text_box p {
	font-family: 'CircularStd-Light', sans-serif;
	color: #222;
	font-size: 17px;
	line-height: 35px;
}

.article_body .text_box ul li {
	font-family: 'CircularStd-Light', sans-serif;
	color: #222;
	font-size: 17px;
	line-height: 35px;
}

.article_body .text_box ol li {
	font-family: 'CircularStd-Light', sans-serif;
	color: #222;
	font-size: 17px;
	line-height: 35px;
}

.article_body .text_box h3 {
	font-family: 'CircularStd-Light', sans-serif;
	color: #000;
	font-size: 25px;
	font-weight: 800;
}

.article_body .text_box h4 {
	font-family: 'CircularStd-Light', sans-serif;
	color: #000;
	font-size: 20px;
	font-weight: 800;
}

.article_body .text_box h2 {
	font-family: 'CircularStd-Light', sans-serif;
	color: #000;
	font-size: 30px;
	font-weight: 800;
}

.article_body .text_box h1 {
	font-family: 'CircularStd-Light', sans-serif;
	color: #000;
	font-size: 35px;
	font-weight: 800;
}

.comment_btn {
	position: fixed;
	bottom: 50px;
	right: 50px;
	cursor: pointer;
	z-index: 1;
}

.comment_btn p {
	font-family: 'CircularStd-Light', sans-serif;
	font-weight: 600;
	color: var(--black_bg);
	font-size: 15px;
	background: #fff;
	padding: 10px 30px;
	border-radius: 30px;
	box-shadow: 0px 0px 10px -1px rgba(0, 0, 0, 0.09);
	cursor: pointer;
	border: 1px solid rgba(0, 0, 0, .1);
}

.fixed_bg {
	width: 100%;
	height: 100%;
	position: fixed;
	background: rgba(0, 0, 0, .4);
	z-index: 999;
	display: none;
}

.right_action_box {
	width: 35%;
	height: 100vh;
	overflow: auto;
	overflow-x: hidden;
	scrollbar-color: rgba(0, 0, 0, .1) #f2f2f2;
	scrollbar-width: thin;
	scroll-behavior: smooth;
	position: fixed;
	background: #fff;
	z-index: 9999;
	top: 0;
	right: -100%;
	transition: all .6s ease-in-out;
	box-shadow: 0 -10px 30px 5px rgba(0, 0, 0, .2);
}

.right_action_box::-webkit-scrollbar {
	width: 6px;
	background-color: #f2f2f2;
}

.right_action_box::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, .1);
	border-radius: 50px;
}

.right_action_box::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
	background-color: #f2f2f2;
	border-radius: 50px;
}

.right_action_box.active {
	right: 0 !important;
	transition: all .6s ease-in-out;
}

.right_action_box .close_btn {
	cursor: pointer;
}

.right_action_box .modal_header {
	padding: 15px 15px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.right_action_box .modal_footer {
	padding: 10px 15px;
	border-top: 1px solid rgba(0, 0, 0, .1);
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: #fff;
}

.right_action_box .modal_body {
	padding: 10px 15px;
	/* border-top: 1px solid rgba(0,0,0,.1); */
	position: absolute;
	left: 0;
	top: 70px;
	width: 100%;
	height: 80vh;
	overflow: auto;
	overflow-x: hidden;
	scrollbar-color: rgba(0, 0, 0, .1) #f2f2f2;
	scrollbar-width: thin;
	scroll-behavior: smooth;
	/* border: 1px solid #333; */
}

.right_action_box .modal_body::-webkit-scrollbar {
	width: 6px;
	background-color: #f2f2f2;
}

.right_action_box .modal_body::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, .1);
	border-radius: 50px;
}

.right_action_box .modal_body::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
	background-color: #f2f2f2;
	border-radius: 50px;
}

.right_action_box .modal_header h2 {
	font-weight: 600;
	font-family: 'CircularStd-Light', sans-serif;
	font-size: 1.2em;
	margin-bottom: 0;
}

.right_action_box .modal_header i {
	font-size: 1.5em;
}

.right_action_box .modal_footer .main_action_btn {
	font-family: 'CircularStd-Light', sans-serif;
	color: #fff;
	font-size: 12px;
	border: 2px solid #0AD35A;
	background: #0AD35A;
}


.right_action_box .form_box {
	/* padding-bottom: 20px; */
	/* border-bottom: 1px solid rgba(0,0,0,.1); */
}

.right_action_box .item_response label {
	font-family: 'CircularStd-Light', sans-serif;
	color: #555;
	font-size: 12px;
}

.right_action_box .item_response h2 {
	font-family: 'CircularStd-Light', sans-serif;
	color: #111;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0;
}

.right_action_box .item_response span {
	font-family: 'CircularStd-Light', sans-serif;
	color: #aeaeae;
	font-size: 12px;
}

.right_action_box .item_response .para {
	margin-top: 20px;
}

.right_action_box .item_response .para p {
	font-family: 'CircularStd-Light', sans-serif;
	color: #222;
	font-size: 13px;
	line-height: 20px
}

.right_action_box .item_response ul li {
	font-family: 'CircularStd-Light', sans-serif;
	color: #222;
	font-size: 13px;
	margin-bottom: 10px;
	/* line-height: 20px */
}

.right_action_box .item_response ol li {
	font-family: 'CircularStd-Light', sans-serif;
	color: #222;
	font-size: 13px;
	margin-bottom: 10px;
	/* line-height: 20px */
}

.right_action_box .item_response a {
	font-family: 'CircularStd-Light', sans-serif;
	color: #222;
	font-size: 13px;
	line-height: 20px
}

.right_action_box .item_response i {
	font-family: 'CircularStd-Light', sans-serif;
	color: #222;
	font-size: 13px;
	line-height: 20px
}

.right_action_box .item_response {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding: 10px 0px;
	margin-bottom: 30px;
	padding: 15px 0;
}

.right_action_box .reply_panel {
	border-left: 3px solid #c4c2c2;
	padding: 0px 20px;
	display: none;
	margin-left: 20px;
	margin-top: 10px;
	transition: all .5s ease-in-out;
}

.right_action_box .reply_panel input {
	font-family: 'CircularStd-Light', sans-serif;
	font-size: 12px;
	border-radius: 0;
}

.right_action_box .reply_panel input::placeholder {
	font-family: 'CircularStd-Light', sans-serif;
	font-size: 12px;
	color: #666;
}

.right_action_box .reply_panel.reply_panel_active {
	display: block;
	transition: all .5s ease-in-out;
}

.right_action_box .rep_btn {
	font-family: 'CircularStd-Light', sans-serif;
	color: #222;
	font-size: 14px;
	margin-bottom: 0;
	cursor: pointer;
	transition: all .5s ease-in-out;
}

.right_action_box .rep_btn:hover {
	text-decoration: underline;
}

.right_action_box .form_box label {
	font-family: 'CircularStd-Light';
	color: #555;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.right_action_box .form_box input {
	font-family: 'CircularStd-Light', sans-serif;
	font-size: 12px;
	border-radius: 5px;
}

.right_action_box .form_box input::placeholder {
	font-family: 'CircularStd-Light', sans-serif;
	font-size: 12px;
	color: #666;
}

.right_action_box .repond_active {
	font-family: 'CircularStd-Light', sans-serif;
	color: #fff;
	font-size: 14px;
	border: 2px solid var(--black_bg);
	background: var(--black_bg);
	border-radius: 5px !important;
}

.right_action_box .show_reply_toggle {
	display: none;
}

.right_action_box .show_reply_toggle.show_reply_toggle_active {
	display: block;
}

.right_action_box .reply_panel textarea {
	font-family: 'CircularStd-Light', sans-serif;
	font-size: 12px;
	border-radius: 0;
}

.right_action_box .no_comment {
	font-family: 'CircularStd-Light', sans-serif;
	font-size: 12px;
	font-weight: 600;
}

.right_action_box .no_reply {
	font-family: 'CircularStd-Light', sans-serif;
	font-size: 12px;
	font-weight: 600;
}

.reply_item_response {
	padding: 0px 20px;
	border-left: 3px solid #c4c2c2;
	margin-left: 20px;
	margin-bottom: 30px;
	margin-top: 10px;
}

.reply_item_response h3 {
	color: #222;
	font-size: 13px;
	font-family: 'CircularStd-Light', sans-serif;
	margin-bottom: 0;
}

.reply_item_response p {
	color: #444;
	font-size: 13px;
	font-family: 'CircularStd-Light', sans-serif;
	margin-top: 10px;
	margin-bottom: 0;
}

.right_action_box .alert p {
	font-size: 12px;
}

@media screen and (max-width:950px) {
	.right_action_box {
		width: 100% !important;
		height: 95vh !important;
		top: auto;
		right: 0;
		bottom: -100%;
		box-shadow: 0 -10px 30px 5px rgba(0, 0, 0, .2);
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
	}

	.right_action_box.active {
		bottom: 0 !important;
		transition: all .6s ease-in-out;
	}

	.right_action_box .modal_header h2 {
		font-size: 1em;
	}

	.right_action_box .item_response h2 {
		font-size: 14px;
	}

	.right_action_box .item_response .para p {
		font-size: 12px;
		line-height: 23px;
	}

	.reply_item_response {
		padding: 0px 10px;
		border-left: 2px solid #c4c2c2;
		margin-left: 5px;
		margin-bottom: 20px;
	}

	.reply_item_response p {
		font-size: 12px;
		margin-top: 5px;
	}

	.right_action_box .reply_panel {
		border-left: 2px solid #c4c2c2;
		padding: 0px 10px;
		margin-left: 5px;
		margin-top: 10px;
	}

	.right_action_box .item_response .para {
		margin-top: 10px;
	}

	.right_action_box .rep_btn {
		font-family: 'CircularStd-Light', sans-serif;
		color: #222;
		font-size: 13px;
		text-decoration: underline;
	}

	.article_body {
		padding: 20px 20px;
	}

	.article_body .share_socials {
		margin-top: 100px;
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid rgba(0, 0, 0, .1);
	}

	.article_body .text_box p {
		color: #000;
		font-size: 15px;
		line-height: 30px;
	}

	.article_body .item_box .header h1 {
		font-size: 1.5em;
	}

	.article_body .item_box .header {
		margin-bottom: 30px;
		margin-top: 10px;
	}

	.article_body .img_box {
		height: 50vh;
		margin-bottom: 30px;
	}

	.comment_btn {
		bottom: 20px;
		right: 20px;
	}

	.comment_btn p {
		font-size: 13px;
		padding: 6px 10px;
		border-radius: 20px;
	}

	.article_body .share_socials .socials a {
		font-size: 20px;
	}
}

.alert {
	display: none;
	box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, .15);
}

.alert p {
	margin-bottom: 0;
	font-family: 'CircularStd-Light', sans-serif;
	font-size: 13px;
	/*text-transform: capitalize;*/
}

/*.alert-container {*/
/*  position: absolute;*/
/*  top: 20%;*/
/*  left: 50%;*/
/*  transform: translate(-50%, -50%);*/
/*  z-index: 999999999999;*/
/*}*/


.vue_supply_chain {
	width: 100%;
	height: auto;
}

.vue_supply_chain .img_box {
	width: 100%;
	height: 90vh;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("../img/deliver.jpg");
	position: relative;
}

.vue_supply_chain .img_box .box {
	width: 50%;
	height: 90vh;
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url('../img/pattern.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #08AC68;
}

.vue_supply_chain .img_box .box .text_box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70%;
}

.vue_supply_chain .img_box .box .text_box h2 {
	font-family: 'CircularStd-Bold';
	font-size: 3.5em;
	color: var(--white_bg);
}

.vue_supply_chain .img_box .box .text_box p {
	font-family: 'CircularStd-Light';
	font-size: 1.3em;
	color: var(--white_bg);
	margin-bottom: 40px;
}

.vue_supply_chain .img_box .box .text_box a {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	color: #16883e;
	background-color: var(--white_bg);
	padding: 15px 50px;
	text-decoration: none;
	border-radius: 30px;
}

.vue_features {
	/* margin: 50px 0; */
}

.vue_features .left_block {
	width: 100%;
	height: 100vh;
	background: rgb(227, 246, 194);
	position: relative;
}

.vue_features .left_block .brand_img {
	position: absolute;
	top: 0;
	left: 0;
}

.vue_features .left_block .img_row {
	position: absolute;
	bottom: 20px;
	left: 0;
}

.vue_features .left_block .text_row {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -30%);
	width: 80%;
}

.vue_features .left_block .text_row .text_box h1 {
	font-family: 'CircularStd-Bold';
	font-size: 3.5em;
	margin-bottom: 0;
	line-height: 1;
}

.vue_features .left_block .text_row .text_box h1.yellow-text {
	color: #f6d221;
}

.vue_features .left_block .text_row .text_box h1.mid-green {
	color: #4fb104;
}

.vue_features .left_block .text_row .text_box h1.lemon-green {
	color: #7dc800;
}

.vue_features .left_block .text_row .text_box h1.dark-green {
	color: #1d5826;
}

.vue_features .left_block .text_row .text_box p {
	font-family: 'CircularStd-Light';
	font-size: 1.3em;
	color: var(--black_bg);
	line-height: 35px;
}

.vue_features .right_block {
	width: 100%;
	height: 100vh;
	background: var(--white_bg);
	position: relative;
}

.vue_features .right_block .text_row {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -30%);
	width: 60%;
}

.vue_features .right_block .text_row ul li {
	font-family: 'CircularStd-Light';
	font-size: 1.3em;
	color: var(--black_bg);
	border-bottom: 1px solid #f6d221;
	padding: 25px 0;
}

.vue_features .right_block .text_row ul {
	list-style: none;
	padding: 0;
	margin-top: 50px;
}

.vue_features .right_block .text_row h2 {
	font-family: 'CircularStd-Bold';
	font-size: 2em;
	margin-bottom: 0;
	line-height: 1.3;
	color: #4fb104;
}


.blog {
	padding: 100px 15px;
	margin: 50px 0;
}

.blog .heading h2 {
	font-family: 'CircularStd-Black';
	font-size: 2.5em;
	color: var(--black_bg);
}

.blog .heading {
	margin-bottom: 50px;
	padding: 0 100px;
}

.blog .items_box .item_box {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
	border-radius: 30px;
}

.blog .items_box .item_box .img_box {
	width: 100%;
	height: 280px;
}

.blog .items_box .item_box .img_box .img {
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
}

.blog .items_box .item_box .text_box {
	padding: 30px;
}

.blog .items_box {
	margin-bottom: 50px;
	margin-top: 50px;
}

.blog .items_box .item_box a {
	color: var(--black_bg);
	text-decoration: none;
}

.blog .items_box .item_box a .text_box h2 {
	font-family: 'CircularStd-Bold';
	font-size: 1.3em;
	color: #08AC68;
	margin-top: 15px;
	margin-bottom: 20px;
}

.blog .items_box .item_box a .text_box span {
	font-family: 'CircularStd-Light';
	font-size: .8em;
	color: var(--inactive_link);
}

.blog .items_box .item_box a .text_box p {
	font-family: 'CircularStd-Light';
	font-size: 1.1em;
	color: var(--black_bg);
	line-height: 30px;
	margin-bottom: 0;
}

.blog .action_btn a {
	font-family: 'CircularStd-Medium';
	font-size: 1.1em;
	color: var(--white_bg);
	background-color: #08AC68;
	padding: 15px 50px;
	border-radius: 30px;
	text-decoration: none;
}

.page_title {
	margin-top: 50px;
	padding: 70px 15px;
	border-bottom: var(--border-bottom);
	/* background-color: rgb(227, 246, 194); */
}

.page_title h1 {
	font-family: 'CircularStd-Black';
	font-size: 4.5em;
	color: var(--black_bg);
}

/*******Contact us *******/
.contact_body {
	padding: 60px 15px;
	margin-top: 120px;
}

.contact_body .box_content h1 {
	font-family: 'CircularStd-Black';
	font-size: 5em;
	font-weight: 700;
	color: var(--black_bg);
}

.contact_body .box_content h1 {
	font-family: 'CircularStd-Black';
	font-size: 4.5em;
	font-weight: 700;
	color: var(--black_bg);
	letter-spacing: -2px;
}

.contact_body .box_content .data_box .title {
	font-family: 'CircularStd-Light';
	font-size: 1.3rem;
	color: #776b62;
	margin-bottom: 5px;
}

.contact_body .box_content .data_box .active_units a {
	font-family: 'CircularStd-Medium';
	font-size: 1em;
	font-weight: 400;
	margin-bottom: 0;
	text-decoration: none;
	color: var(--black_bg);
}

.contact_body .box_content .data_box {
	margin-bottom: 40px;
}

.contact_body .box_content .divider_box {
	font-family: 'CircularStd-Medium';
	font-size: 1em;
	font-weight: 400;
}

.contact_body .box_content .form-box {
	padding: max(5rem, 20px);
	width: 100%;
	background: #f9f9fa;
	border-radius: max(3.2rem, 15px);
	margin-top: 50px;
}

.contact_body .box_content .form-box input {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	font-weight: 400;
	background-color: transparent;
	height: 50px;
	border-radius: 10px;
}

.contact_body .box_content .form-box input::placeholder,
.contact_body .box_content .form-box textarea::placeholder {
	font-size: .8em;
}

.contact_body .box_content .form-box textarea {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	font-weight: 400;
	background-color: transparent;
	border-radius: 10px;
}

.contact_body .box_content .form-box button {
	font-family: 'CircularStd-Medium';
	font-size: 1em;
	font-weight: 400;
	background-color: var(--black_bg);
	color: var(--white_bg);
	height: 50px;
	border-radius: 10px;
}

.contact_body .box_content .form-box label {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	font-weight: 400;
}

.contact_body .box_content .form-box .form-group {
	margin-bottom: 30px;
}


.store_loc {
	padding: 100px 15px;
}

.store_loc .heading h2 {
	font-family: 'CircularStd-Bold';
	font-size: 3.5em;
	color: var(--black_bg);
}

.store_loc .heading {
	margin-bottom: 50px;
}

.store_loc .logo_container .logo h3 {
	font-family: 'CircularStd-Bold';
	font-size: 1.5em;
	color: var(--inactive_link);
	line-height: 1;
}

.product_items {
	padding: 100px 15px;
}

.product_items .items_box .slider_img_box {
	width: 100%;
	height: 350px;
	border: var(--border);
	overflow: hidden;
	padding: 10px;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .06);
	border-radius: 5px;
	transition: all .3s ease-in-out;
	background-color: var(--white_bg);
}

.product_items .items_box .slider_img_box .slide_img {
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all .3s ease-in-out;
}

.product_items .items_box .slide_text {
	margin-top: 20px;
}

.product_items .items_box a {
	text-decoration: none;
	color: black;
}

.product_items .items_box .slide_text h2 {
	font-family: 'CircularStd-Medium';
	font-size: 17px;
	color: var(--black_bg);
}

.product_items .items_box .slide_text p {
	font-family: 'CircularStd-Light';
	font-size: 13px;
	color: var(--black_bg);
}

.preview {
	margin-top: 100px;
	padding: 100px 15px;
}

.prev_page {
	background-color: #fbfbfb;
}

.prev_page .heading h2 {
	font-family: 'CircularStd-Bold';
	font-size: 2.5em;
	color: var(--black_bg);
	margin-bottom: 40px;
}

.preview .item_img {
	width: 100%;
	height: 450px;
	box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
	border-radius: 5px;
	padding: 10px;
	background: #fff;
}

.preview .item_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.preview .item_text .title h1 {
	font-family: 'CircularStd-Bold';
	font-size: 2.5em;
	color: var(--black_bg);
	margin-bottom: 20px;
}

.preview .item_text .title p {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	color: var(--black_bg);
}

.preview .item_text .item_desc p {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	color: var(--black_bg);
}

.preview .item_text .item_desc ul {}

.preview .item_text .item_desc ul li {
	font-family: 'CircularStd-Light';
	font-size: .9em;
	color: var(--black_bg);
	padding: 10px 0;
}

.preview .item_text .item_price h3 {
	font-family: 'CircularStd-Bold';
	font-size: 1.5em;
	color: var(--black_bg);
	margin-bottom: 30px;
}

.preview .item_text .item_btn p {
	font-family: 'CircularStd-Light';
	font-size: .9em;
	color: var(--inactive_link);
	margin-bottom: 30px;
}

.preview .item_text .item_btn .cart_btn {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	color: var(--white);
	background-color: #08AC68;
	border-radius: 5px;
	border: 2px solid #08AC68;
}

.preview .item_text .item_btn .chat_btn {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	color: #08AC68;
	background-color: var(--white_bg);
	border-radius: 5px;
	border: 2px solid #08AC68;
}

.preview .item_text .item_btn .vue_cart_btn {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	color: var(--white_bg);
	background-color: #08AC68;
	border-radius: 5px;
	border: 2px solid #08AC68;
}

.vue_cart {
	margin-top: 50px;
	padding: 100px 15px;
}

.vue_cart .heading h1 {
	font-family: 'CircularStd-Black';
	font-size: 3.5em;
	color: var(--black_bg);
	margin-bottom: 60px;
	border-bottom: var(--border-bottom);
	padding-bottom: 30px;
}

.vue_cart .cart_items .item {
	border-bottom: var(--border-bottom);
	margin-bottom: 20px;
	padding: 10px 5px;
}

.vue_cart .cart_items .item_img {
	width: 100%;
	height: 250px;
}

.vue_cart .cart_items .item_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vue_cart .cart_items .item_data h2 {
	font-family: 'CircularStd-Medium';
	font-size: 1.5em;
	color: var(--black_bg);
	margin-bottom: 20px;
}

.modal .modal-header .modal-title {
	font-family: 'CircularStd-Medium';
	font-size: 1.5em;
	color: var(--black_bg);
}

.modal .modal-body p {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	color: var(--black_bg);
}

.modal .modal-footer .btn-primary {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	color: var(--white_bg);
	background-color: #08AC68;
	border-radius: 5px;
	border: 2px solid #08AC68;
}

.modal .modal-footer .btn-secondary {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	color: #08AC68;
	background-color: var(--white_bg);
	border-radius: 5px;
	border: 2px solid #08AC68;
}


.vue_cart .cart_items .item_data h3 {
	font-family: 'CircularStd-Medium';
	font-size: 1.2em;
	color: var(--black_bg);
	margin-bottom: 20px;
}

.vue_cart .cart_items .item_data h4 {
	font-family: 'CircularStd-Medium';
	font-size: 1em;
	color: var(--black_bg);
	margin-bottom: 20px;
}

.vue_cart .cart_items .item_data select {
	font-family: 'CircularStd-Light';
	border-radius: 0;
	background-color: var(--white_bg);
	width: 80px;
	padding: 6px 5px;
}

.vue_cart .order_summary {
	/* border: var(--border); */
	padding: 20px;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .06);
	border-radius: 10px;
}

.vue_cart .order_summary h2 {
	font-family: 'CircularStd-Bold';
	font-size: 1.5em;
	color: var(--black_bg);
	margin-bottom: 20px;
}

.vue_cart .order_summary .sum_item {
	border-bottom: var(--border-bottom);
	padding: 20px 0;
}

.vue_cart .order_summary .sum_item h4 {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	color: var(--black_bg);
	margin-bottom: 0px;
}

.vue_cart .order_summary .sum_item.total h4 {
	font-family: 'CircularStd-Medium';
	font-size: 1em;
	color: var(--black_bg);
	margin-bottom: 0px;
}

.vue_cart .checkout_btn {
	margin-top: 20px
}

.vue_cart .checkout_btn a {
	text-decoration: none;
	color: var(--white_bg);
	background-color: #08AC68;
	font-family: 'CircularStd-Medium';
	font-size: 1em;
}


.vue_cart .order_summary .cart_items .item_img {
	width: 100%;
	height: 100px;
}

.vue_cart .order_summary .cart_items .item_data h2 {
	font-family: 'CircularStd-Medium';
	font-size: 1em;
	color: var(--black_bg);
	margin-bottom: 7px;
}

.vue_cart .order_summary .cart_items .item_data h3 {
	font-family: 'CircularStd-Medium';
	font-size: .9em;
	color: var(--black_bg);
	margin-bottom: 7px;
}

.vue_cart .order_summary .cart_items .item_data h4 {
	font-family: 'CircularStd-Medium';
	font-size: .8em;
	color: var(--black_bg);
	margin-bottom: 7px;
}

.vue_cart .order_summary .cart_items .item_data select {
	font-family: 'CircularStd-Light';
	border-radius: 0;
	background-color: var(--white_bg);
	width: 60px;
	padding: 5px 5px;
}

.vue_cart .billing_form h2 {
	font-family: 'CircularStd-Bold';
	font-size: 1.5em;
	color: var(--black_bg);
	margin-bottom: 15px;
}

.vue_cart .billing_form {
	/* border: var(--border); */
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .06);
}

.vue_cart .billing_form input {
	font-family: 'CircularStd-Light';
	font-size: .9em;
	color: var(--black_bg);
	border-radius: 0;
}

.vue_cart .billing_form label {
	font-family: 'CircularStd-Medium';
	font-size: .9em;
	color: var(--black_bg);
	border-radius: 0;
}

.vue_cart .billing_form button {
	font-family: 'CircularStd-Medium';
	font-size: 1em;
	color: var(--white_bg);
	background-color: #08AC68;
}


.about {
	padding: 100px 15px;
	margin-top: 100px;
}

.about .box_content {
	margin-bottom: 30px;
}

.about .box_content h1 {
	font-family: 'CircularStd-Black';
	font-size: 3em;
	font-weight: 800;
	color: var(--black_bg);
	margin-bottom: 30px;
}

.about .box_content h2 {
	font-family: 'CircularStd-Medium';
	font-size: 2rem;
	color: var(--black_bg);
	margin-bottom: 10px;
}

.about .box_content ol li {
	font-family: 'CircularStd-Light';
	font-size: 1em;
	color: var(--black_bg);
	line-height: 1.7;
	padding: 15px 0;
}

.about .box_content h1 span {
	color: #038C3E;
}

.about .box_content .text-box p {
	font-family: 'CircularStd-Light';
	font-size: 1.1rem;
	color: var(--black_bg);
	font-weight: 400;
	line-height: 2;
}

.about .box_content .text-box a {
	font-family: 'CircularStd-Light';
	font-size: 14px;
	font-weight: 600;
	color: var(--white_bg);
	text-decoration: none;
	padding: 15px 45px;
	border-radius: 5px;
	background-color: #08AC68;
}

.about .photo_splash {
	width: 100%;
	height: 70vh;
	margin-top: 50px;
}

.about .photo_splash .carousel-item {
	width: 100%;
	height: 70vh;
}

.about .photo_splash .carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer {
	background-color: var(--black_bg);
	padding: 50px 15px;
}

.footer .top_row .items_box h1 {
	font-family: 'CircularStd-Bold';
	font-size: 2em;
	font-weight: 600;
	color: var(--white_bg);
	margin-bottom: 15px;
}

.footer .top_row .items_box h2 {
	font-family: 'CircularStd-Bold';
	font-size: 1.5em;
	font-weight: 600;
	color: var(--white_bg);
	margin-bottom: 15px;
}

.footer .top_row .items_box ul {
	margin-left: 10px;
	padding: 0;
	list-style: none;
}

.footer .top_row .items_box ul li {
	margin-bottom: 15px;
}

.footer .top_row .items_box ul li a {
	font-family: 'CircularStd-Light';
	font-size: 15px;
	font-weight: 400;
	color: var(--white_bg);
	text-decoration: none;
}

.footer .top_row .items_box p a {
	font-family: 'CircularStd-Light';
	font-size: 15px;
	font-weight: 400;
	color: var(--white_bg);
	text-decoration: none;
}

.footer .top_row .items_box .social_box a {
	font-size: 20px;
	color: var(--white_bg);
	text-decoration: none;
	margin-right: 20px;
}

.footer .bottom_row p {
	font-family: 'CircularStd-Light';
	font-size: 13px;
	font-weight: 400;
	color: var(--white_bg);
}

@media screen and (max-width:1550px) {
    .heroTop .intro_text {
  margin-top: 100px;
}
.heroTop .intro_text_paragraph {
  margin-top: 110px;
}
.heroTop .intro_text h1 {
  font-size: 4.5em;
}
.heroTop .intro_text_paragraph p {
  font-size: 1em;
  line-height: 30px;
}
.heroTop .intro_text_paragraph a {
  font-size: 1em;
  padding: 10px 30px;
  border-radius: 20px;
}
.about_feat .heading h2 {
  font-size: 3em;
}
.about_feat .items_box .item_box {
  padding: 20px;
  border-radius: 20px;
}
.about_feat .items_box .item_box .img_box {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}
.about_feat .items_box .item_box h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
}
.vue_features .left_block {
  height: 95vh;
}
.vue_features .right_block {
  height: 95vh;
}

.vue_features .right_block .text_row {
  width: 80%;
}

.vue_features .left_block .text_row .text_box h1 {
  font-size: 3em;
}

.vue_features .left_block .text_row .text_box p {
  font-size: 1em;
  line-height: 30px;
}
.vue_features .right_block .text_row ul li {
  font-size: 1em;
  padding: 20px 0;
}
.product_category .heading {
  padding-right: 40px;
}
.product_category .heading h2 {
  font-size: 2.5em;
}
.product_category .heading p {
  font-size: 1em;
}
.product_category .items_body .item_box .img_box {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}
.product_category .items_body .item_box h3 {
  font-size: 1em;
}
.blog {
  margin: 0px 0;
}
.blog .items_box .item_box .img_box {
  width: 100%;
  height: 240px;
}
.blog .items_box .item_box a .text_box h2 {
  font-size: 1em;
  margin-top: 10px;
  margin-bottom: 10px;
}
.blog .items_box .item_box a .text_box p {
  font-size: 1em;
}
.store_loc .heading h2 {
  font-size: 3em;
}
.vue_supply_chain .img_box .box {
  width: 50%;
  height: 80vh;
}
.vue_supply_chain .img_box {
  width: 100%;
  height: 80vh;
}
.contact_body .box_content .form-box {
  padding: max(3rem, 15px);
  border-radius: max(3rem, 10px);
}
.vue_cart .heading h1 {
  font-size: 3em;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.success_page .success_box {
	top: 10%;
	left: 50%;
	transform: translate(-50%, 10%);
}
}

@media screen and (max-width:950px) {
	.navbar {
		padding: 10px 10px;
	}

	.navbar ul {
		margin-top: 30px;
	}

	.navbar .navbar-nav .nav-item .nav-link {
		margin-left: 10px;
	}

	.main_cart_btn .cart_counter {
		right: 5px;
	}

	ul.dropdown-menu {
		margin-top: 0;
		margin-bottom: 20px;
	}

	.heroTop {
		height: 50vh;
		margin-top: 60px;
	}

	.heroBottom {
		height: 50vh;
	}

	.heroTop .text_box {
		position: absolute;
		top: 20%;
		left: 50%;
		transform: translate(-50%, 20%);
		width: 90%;
	}

	.heroTop .intro_text {
		margin-top: 0px;
		text-align: center;
	}

	.heroTop .intro_text h1 {
		font-size: 2.5em;
		margin-bottom: 10px;
	}

	.heroTop .intro_text h2 {
		font-size: 1.4em;
		margin-left: 0px;
	}

	.heroTop .intro_text_paragraph {
		margin-top: 20px;
		text-align: center;
	}

	.vue_features .left_block {
		height: 85vh;
	}

	.vue_features .right_block {
		height: 85vh;
	}

	.product_category .items_body .item_box .img_box {
		width: 70px;
		height: 70px;
	}

	.product_category .items_body .item_box .img_box img {
		width: 40px;
	}

	.items_carousel .heading {
		padding: 0 0px;
	}

	.items_carousel .heading .text_box h2 {
		font-size: 1.5rem;
	}

	.items_carousel .heading .text_box a {
		font-size: 10px;
		color: var(--black_bg);
		padding-bottom: 5px;
	}

	.vue_features .right_block .text_row h2 {
		font-size: 1.6em;
	}

	.items_carousel .swiper-container .swiper-button-prev {
		left: 5px;
		right: auto;
	}

	.items_carousel .swiper-container .swiper-button-next {
		right: 5px;
		left: auto;
	}

	.items_carousel .swiper-slide .slider_img_box {
		width: 300px;
		height: 300px;
	}

	.items_carousel .swiper-slide {
		width: 300px;
	}

	.items_carousel .swiper-slide .slide_text h2 {
		font-size: 14px;
		margin-bottom: 0;
	}

	.blog {
		padding: 0px 15px;
		margin: 0px 0;
		margin-bottom: 40px;
	}

	.blog .heading {
		margin-bottom: 0px;
		padding: 0 0px;
	}

	.blog .heading h2 {
		font-size: 1.6em;
	}

	.blog .items_box .item_box {
		box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
		border-radius: 10px;
		margin-bottom: 30px;
	}

	.blog .items_box .item_box .text_box {
		padding: 30px 20px;
	}

	.blog .items_box .item_box a .text_box p {
		font-size: .9em;
		color: var(--black_bg);
		line-height: 25px;
	}

	.blog .action_btn a {
		font-size: .9em;
		padding: 10px 30px;
		border-radius: 10px;
	}

	.blog .items_box .item_box .img_box .img {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
	}

	.blog .items_box {
		margin-bottom: 20px;
		margin-top: 30px;
	}

	.blog .items_box .item_box .img_box {
		width: 100%;
		height: 250px;
	}

	.blog .items_box .item_box a .text_box h2 {
		font-size: 1.1em;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.vue_supply_chain .img_box .box {
		width: 100%;
		height: 45vh;
		text-align: center;
	}

	.vue_supply_chain .img_box .box .text_box h2 {
		font-size: 2em;
	}

	.vue_supply_chain .img_box .box .text_box {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 90%;
	}

	.vue_supply_chain .img_box .box .text_box p {
		font-size: 1em;
		margin-bottom: 30px;
	}

	.vue_supply_chain .img_box {
		width: 100%;
		height: 45vh;
	}

	.store_loc {
		padding: 50px 15px;
	}

	.store_loc .heading h2 {
		font-size: 1.8em;
	}

	.store_loc .heading {
		margin-bottom: 30px;
	}

	.store_loc .logo_container .logo h3 {
		font-size: 1.2em;
		margin-bottom: 30px;
	}

	.items_carousel .swiper-container {
		padding-bottom: 0px;
		padding-left: 0px;
	}

	.page_title {
		margin-top: 50px;
		padding: 40px 15px;
	}

	.page_title h1 {
		font-size: 3em;
		margin-bottom: 0;
	}

	.product_items {
		padding: 30px 15px;
	}

	.product_items .items_box .slide_text {
		margin-top: 5px;
	}

	.product_items .items_box .slide_text h2 {
		font-family: 'CircularStd-Medium';
		font-size: 15px;
		color: var(--black_bg);
	}

	.product_items .item_box {
		margin-bottom: 30px;
	}

	.about_feat {
		padding: 30px 15px;

	}

	.about_feat .heading h2 {
		font-size: 1.6em;
	}

	.about_feat .items_box .item_box {
		padding: 20px;
		border-radius: 20px;
	}

	.about_feat .items_box .item_box .img_box {
		width: 70px;
		height: 70px;
		margin-bottom: 20px;
	}

	.about_feat .items_box .item_box .img_box img {
		width: 40px;
	}

	.about_feat .items_box .item_box h3 {
		font-size: 1.1em;
		margin-bottom: 10px;
	}


	.about_feat .items_box .item_box p {
		font-size: .9em;
		line-height: 25px;
		margin-bottom: 0;
	}

	.about_feat .item_box {
		margin-top: 30px;
	}

	.about {
		margin-top: 50px;
		padding: 50px 15px;
	}

	.about .box_content h1 {
		font-size: 2em;
		margin-bottom: 30px;
		font-weight: 600;
		/* font-family: 'CircularStd-Bold'; */
		line-height: 1.3;
	}

    .about .box_content .text-box p {
      font-size: .9rem;
      line-height: 2;
    }
    
        .about .box_content ol li {
        font-size: .9em;
        line-height: 2;
        padding: 13px 0;
        }

	.about .box_content h2 {
		font-size: 1.5rem;
		color: var(--black_bg);
		margin-bottom: 10px;
	}

	.about .box_content .text-box a {
		font-size: 13px;
		padding: 10px 25px;
	}

	.about .photo_splash {
		width: 100%;
		height: 50vh;
	}

	.about .photo_splash .carousel-item {
		width: 100%;
		height: 50vh;
	}

	.vue_features .left_block .text_row {
		position: absolute;
		top: 15%;
		left: 50%;
		transform: translate(-50%, -15%);
		width: 90%;
	}

	.vue_features .left_block .text_row .text_box h1 {
		font-size: 2.5em;
		line-height: 1.2;
	}

	.vue_features .left_block .text_row .text_box p {
		font-size: 1em;
		line-height: 30px;
		margin-top: 30px;
	}

	.vue_features .right_block .text_row {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 90%;
	}

	.items_carousel {
		padding: 50px 15px;
	}

	.vue_features .right_block .text_row ul li {
		font-size: 1.1em;
		padding: 20px 0;
	}

	.vue_features .right_block .text_row ul {
		margin-top: 30px;
	}

	.product_category {
		padding: 30px 15px;
	}

	.product_category .heading h2 {
		font-size: 1.6em;
	}

	.product_category .heading {
		padding-right: 0px;
	}

	.product_category .items_body .item_box {
		background-color: var(--white_bg);
		padding: 20px;
		border-radius: 15px;
		margin-bottom: 20px;
	}

	.product_category .items_body .item_box h3 {
		font-size: 1.1em;
	}

	.heroTop .intro_text_paragraph p {
		font-size: 1em;
		margin-bottom: 20px;
		line-height: 30px;
	}

	.heroTop .intro_text_paragraph a {
		font-size: .9em;
		color: var(--white_bg);
		padding: 10px 30px;
		border-radius: 20px;
	}

	.contact_body {
		padding: 50px 15px;
		margin-top: 50px;
	}

	.contact_body .box_content h1 {
		font-size: 3em;
	}

	.contact_body .box_content .data_box .title {
		font-size: 1.1rem;
		margin-bottom: 0px;
	}

	.contact_body .box_content .data_box .active_units a {
		font-size: .9em;
	}

	.contact_body .box_content .form-box {
		padding: max(1.5rem, 20px);
		border-radius: max(2rem, 15px);
		margin-top: 50px;
	}

	.vue_cart {
		margin-top: 50px;
		padding: 50px 15px;
	}

	.vue_cart .heading h1 {
		font-size: 1.6em;
		margin-bottom: 30px;
		padding-bottom: 10px;
	}

	.vue_cart .cart_items .item_img {
		width: 100%;
		height: 100px;
	}

	.vue_cart .cart_items .item_data h2 {
		font-size: 1.2em;
		margin-bottom: 5px;
	}

	.vue_cart .cart_items .item_data h3 {
		font-size: 1em;
		margin-bottom: 10px;
	}

	.vue_cart .cart_items .item_data h4 {
		font-size: .8em;
		margin-bottom: 10px;
	}

	.vue_cart .cart_items .item_data select {
		width: 50px;
		padding: 4px 5px;
	}

	.vue_cart .order_summary h2 {
		font-size: 1.2em;
		margin-bottom: 10px;
	}

	.vue_cart .billing_form {
		margin-bottom: 0px;
		padding: 20px;
		border-radius: 10px;
		margin-top: 10px;
	}

	.vue_cart .billing_form h2 {
		font-size: 1.2em;
		margin-bottom: 20px;
	}

	.preview {
		margin-top: 50px;
		padding: 50px 15px;
	}

	.preview .item_img {
		height: 350px;
		margin-bottom: 30px;
	}

	.preview .item_text .title h1 {
		font-size: 1.6em;
		margin-bottom: 20px;
	}

	.preview .item_text .item_desc ul li {
		font-size: .9em;
		color: var(--black_bg);
		padding: 6px 0;
	}

	.product_items .items_box .slide_text h2 {
		margin-bottom: 0px;
	}

	.preview .item_text .item_price h3 {
		font-size: 1.2em;
		margin-bottom: 15px;
	}

	.prev_page .heading h2 {
		font-size: 1.6em;
		margin-bottom: 30px;
	}

	.product_items .items_box .slider_img_box {
		height: 150px;
		padding: 7px;
	}

	.footer .top_row {
		margin-bottom: 30px;
	}

	.footer .top_row .reach_us {
		text-align: center;
		padding-top: 30px;
		border-top: 1px solid var(--inactive_link);
	}

	.footer .top_row .reach_us h2 {
		display: none;
	}

	.footer .top_row .items_box h1 {
		font-size: 1.5em;
	}

	.footer .top_row .reach_us p {
		margin-bottom: 5px;
	}

	.footer .top_row .items_box .social_box a {
		font-size: 20px;
		margin-right: 0px;
		margin: 0 10px;
	}

	.footer .top_row .items_box ul li {
		margin-bottom: 10px;
	}

	.footer .top_row .items_box ul li a {
		font-size: 13px;
	}

	.footer .top_row .items_box h2 {
		font-size: 1.2em;
	}

	.footer {
		background-color: var(--black_bg);
		padding: 0px 15px;
	}

	.footer .top_row {
		padding-top: 20px;
	}
	.store_loc .logo {
	    margin-bottom: 25px;
	}
		.store_loc .logo img{
	   width: 100px;
	   height: auto;
	}
}

