@import "https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap";
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

body {
	font-family: "Montserrat", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.7;
	color: #000;
	padding-top: 70px;
	animation: fadeInAnimation ease 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.h0 {
	font-size: 3.981rem;
	font-weight: 300;
	line-height: 1.3;
}

@media screen and (min-width: 48rem) {
	.h0 {
		font-size: calc(1.40208vw + 3.308rem);
	}
}

@media screen and (min-width: 192rem) {
	.h0 {
		font-size: 6rem;
	}
}

.hx {
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1.2;
}

/* @media screen and (min-width: 48rem) {
	.hx {
		font-size: calc(3.19444vw + 3.86667rem);
	}
} */

@keyframes unicorn-slide {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@-webkit-keyframes unicorn-slide {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@media screen and (min-width: 192rem) {
	.hx {
		font-size: 10rem;
	}
}

.h1 {
	font-size: 3.318rem;
	font-weight: 700;
	line-height: 1.5;
}

@media screen and (min-width: 48rem) {
	.h1 {
		font-size: calc(1.08681vw + 2.79633rem);
	}
}

@media screen and (min-width: 192rem) {
	.h1 {
		font-size: 4.883rem;
	}
}

.h2 {
	font-size: 2.765rem;
	font-weight: 700;
	line-height: 1.5;
}

@media screen and (min-width: 48rem) {
	.h2 {
		font-size: calc(0.79236vw + 2.38467rem);
	}
}

@media screen and (min-width: 192rem) {
	.h2 {
		font-size: 3.906rem;
	}
}

.h3 {
	font-size: 2.304rem;
	font-weight: 700;
	line-height: 1.5;
}

@media screen and (min-width: 48rem) {
	.h3 {
		font-size: calc(0.57014vw + 2.03033rem);
	}
}

@media screen and (min-width: 192rem) {
	.h3 {
		font-size: 3.125rem;
	}
}

.h4 {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
}

@media screen and (min-width: 48rem) {
	.h4 {
		font-size: calc(0.48611vw + 1.56667rem);
	}
}

@media screen and (min-width: 192rem) {
	.h4 {
		font-size: 2.5rem;
	}
}

.h5 {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: justify;
}

@media screen and (min-width: 48rem) {
	.h5 {
		font-size: calc(0.41667vw + 1.4rem);
	}
}

@media screen and (min-width: 192rem) {
	.h5 {
		font-size: 2.2rem;
	}
}

.para {
	font-size: 1.6rem !important;
}

p:not(:last-child) {
	margin-bottom: 3rem;
}

.meta {
	font-size: 1.2rem;
}

*,
::after,
::before {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

html {
	font-size: 62.5%;
}

@media screen and (max-width: 48em) {
	html {
		font-size: 56.25%;
	}
}

@media screen and (max-width: 22.5em) {
	html {
		font-size: 50%;
	}
}

body {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-x: hidden;
	margin: 3rem;
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 48em) {
	body {
		margin: 0;
		-webkit-box-shadow: unset;
		box-shadow: unset;
	}
}

@media screen and (max-width: 34.375em) {
	body {
		padding-top: 6rem;
	}
}

::-moz-selection {
	background-color: #000;
	color: #fff;
}

::selection {
	background-color: #000;
	color: #fff;
}

.bold {
	font-weight: 700 !important;
}

.regular {
	font-weight: 400 !important;
	/* background-color: orange;
	background-color: #85ffbd; */
	/* background-image: linear-gradient(45deg, #85ffbd 0%, #fffb7d 100%); */
	border-radius: 32px;
	padding: 10px;
}

.light {
	font-weight: 300 !important;
}

.block {
	display: block;
}

.mr-3 {
	margin-right: 3rem;
}

.mb-3 {
	margin-bottom: 3rem;
}

.mt-3 {
	margin-top: 3rem;
}

@-webkit-keyframes fadeDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	60% {
		-webkit-transform: translateY(50%);
		transform: translateY(50%);
	}

	100% {
		-webkit-transform: translateY(50%);
		transform: translateY(50%);
	}
}

@keyframes fadeDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	60% {
		-webkit-transform: translateY(50%);
		transform: translateY(50%);
	}

	100% {
		-webkit-transform: translateY(50%);
		transform: translateY(50%);
	}
}

@-webkit-keyframes dots {
	0%,
	20% {
		color: rgba(0, 0, 0, 0);
		text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
	}

	40% {
		color: #fff;
		text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
	}

	60% {
		text-shadow: 0.25em 0 0 white, 0.5em 0 0 rgba(0, 0, 0, 0);
	}

	80%,
	100% {
		text-shadow: 0.25em 0 0 white, 0.5em 0 0 #fff;
	}
}

@keyframes dots {
	0%,
	20% {
		color: rgba(0, 0, 0, 0);
		text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
	}

	40% {
		color: #fff;
		text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
	}

	60% {
		text-shadow: 0.25em 0 0 white, 0.5em 0 0 rgba(0, 0, 0, 0);
	}

	80%,
	100% {
		text-shadow: 0.25em 0 0 white, 0.5em 0 0 #fff;
	}
}

@-webkit-keyframes fade {
	from {
		opacity: 100%;
	}

	to {
		opacity: 0;
	}
}

@keyframes fade {
	from {
		opacity: 100%;
	}

	to {
		opacity: 0;
	}
}

.loading {
	position: relative;
	z-index: 2;
}

.loading::before {
	content: " .";
	-webkit-animation: dots 1s steps(5, end) infinite;
	animation: dots 1s steps(5, end) infinite;
}

.nav {
	position: fixed;
	top: 0;
	left: 50%;
	width: 100%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 99;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.nav::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 0.5rem;
	width: 100%;
	background-color: #fff;
	position: relative;
	z-index: 20;
}

.nav__wrapper {
	max-width: 100%;
	width: 100%;
	background-color: antiquewhite;
	-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1rem 3rem;
	border-bottom-left-radius: 2rem;
	border-bottom-right-radius: 2rem;
}

@media screen and (max-width: 34.375em) {
	.nav__wrapper {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.nav__logo {
	width: 15rem;
}

@media screen and (max-width: 27.1875em) {
	.nav__logo {
		width: 4rem;
		margin-bottom: 1rem;
	}
}

.nav__list {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.slideLogo {
	display: inline;
	/* padding-left: 250px; */
	width: 150px;
}
.logo-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 34.375em) {
	.nav__list {
		width: 100%;
		display: -ms-grid;
		display: grid;
		text-align: center;
		-ms-grid-columns: (1fr) [3];
		grid-template-columns: repeat(3, 1fr);
	}
}

.nav__item:not(:last-child) {
	margin-right: 2rem;
}

@media screen and (max-width: 34.375em) {
	.nav__item:not(:last-child) {
		margin-right: 0;
	}

	.nav__item {
		text-align: center;
	}
}

.nav__link {
	text-decoration: none;
	color: #000;
	font-weight: 900;
	font-size: 1.8rem;
}

@media screen and (max-width: 27.1875em) {
	.nav__link {
		font-size: 1.6rem;
	}
}

.nav__link:hover {
	color: #007499;
}

.nav__link--active {
	color: #007499;
	font-weight: 700;
}

.nav__search {
	color: #000;
	font-size: 1.8rem;
	background: none;
	border: none;
	cursor: pointer;
}

@media screen and (max-width: 27.1875em) {
	.nav__search {
		font-size: 1.6rem;
	}
}

.nav__search:hover {
	color: #005899;
}

.nav__search--active {
	color: #005666;
	font-weight: 700;
}

.nav__modal {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background-color: #007499;
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(#007499),
		to(#008996)
	);
	background-image: linear-gradient(to top, #007899, #005899);
	background-repeat: repeat;
	background-size: 20rem;
	z-index: 99;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	visibility: none;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.nav__modal--active {
	visibility: visible;
	opacity: 1;
	pointer-events: initial;
}

.nav__form {
	width: 100%;
	max-width: 40rem;
	position: relative;
	z-index: 3;
}

.nav__form .input {
	margin-bottom: 2rem;
}

.nav__form .btn {
	width: 100%;
}

.nav__backdrop {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.1;
}

.nav__close {
	font-size: 4rem;
	height: 10rem;
	width: 10rem;
	z-index: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	cursor: pointer;
	position: absolute;
	top: 5%;
	right: 5%;
	padding: 3rem;
	background-color: #005896;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.nav__close:hover {
	background-color: #005896;
}

.footer {
	/* margin-top: auto; */
	position: relative;
}

@media screen and (max-width: 37.5em) {
	.footer {
		z-index: 20;
	}
}

.aboutBottom{
	display:flex;
}

.footer--radient {
	background-color: #0d0d0d;
	margin-top: 15%;
	padding: 2rem 5vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: #fff;
}

@media screen and (max-width: 30em) {
	.footer--radient {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.footer__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 22.5em) {
	.footer__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.codeistic {
	padding: 2rem 5vw;
	background-color: #000;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	z-index: 3;
	overflow: hidden;
}

.codeistic::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: left;
	transform-origin: left;
	background-image: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#007499),
		to(#ff7400)
	);
	background-image: linear-gradient(to right, #007499, #ff7400);
	z-index: -1;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.codeistic:hover::after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.codeistic:hover .codeistic__text {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.codeistic:hover .codeistic__text .blue {
	fill: #fff;
}

.codeistic__logo {
	height: 1.2rem;
}

.codeistic__logo .blue {
	fill: #00c2ff;
}

.codeistic__text {
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.header {
	min-height: 50vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	color: #fff;
	padding: 3rem 5vw;
	background-size: cover;
	background-position: bottom;
	background-attachment: fixed;
}

.header__text {
	text-align: center;
	max-width: 120rem;
}

.header__sub-text {
	margin-top: 2rem;
}

.header--about {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.15)),
			color-stop(60%, #000)
		),
		url(../img/flower.jpeg);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), #000 60%),
		url(../img/flower.jpeg);
}

.header--csr {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.15)),
			color-stop(60%, #000)
		),
		url(../img/csr.jpg);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), #000 60%),
		url(../img/csr.jpg);
}

.header--homoeopathy {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.15)),
			color-stop(60%, #000)
		),
		url(../img/lavendar.jpg);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), #000 60%),
		url(../img/lavendar.jpg);
}

.header--contact {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.15)),
			color-stop(60%, #000)
		),
		url(../img/contact.webp);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), #000 60%),
		url(../img/contact.webp);
	background-position: center 55%;
}

.testimonials {
	padding: 5rem 5vw;
}

.testimonials__grid {
	margin-top: 3rem;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(32rem, 1fr)) [auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
	grid-gap: 3rem;
	list-style: none;
}

.testimonials__text {
	padding: 2rem;
	background-color: #fff;
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
	margin-bottom: 1rem !important;
}

.testimonials__author {
	padding-left: 2rem;
}

.link {
	color: #fff;
	display: inline-block;
	justify-self: flex-end;
	justify-content: end;
	-webkit-transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
	transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
	transition: box-shadow 0.3s, transform 0.3s;
	transition: box-shadow 0.3s, transform 0.3s, -webkit-box-shadow 0.3s,
		-webkit-transform 0.3s;
}

.link--preview {
	margin-left: 85%;
	display: inline-block;
	justify-self: flex-end;
	justify-content: end;
	padding: 0.5rem 2rem;
	background-color: #3344ff;
	border-radius: 8rem;
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	-webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s,
		-webkit-transform 0.3s;
	transition: background-color 0.3s, -webkit-box-shadow 0.3s,
		-webkit-transform 0.3s;
	transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
	transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s,
		-webkit-box-shadow 0.3s, -webkit-transform 0.3s;
}

.link--preview:hover {
	background-color: #7bbcfd;
}

.link:hover {
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	-webkit-transform: translateY(-3px) scale(1.05);
	transform: translateY(-3px) scale(1.05);
}

.social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 2rem;
}

.social__link {
	text-decoration: none;
	-webkit-filter: saturate(0%);
	filter: saturate(0%);
	-webkit-transition: -webkit-filter 0.3s;
	transition: -webkit-filter 0.3s;
	transition: filter 0.3s;
	transition: filter 0.3s, -webkit-filter 0.3s;
}

.social__link:hover {
	-webkit-filter: saturate(100%);
	filter: saturate(100%);
}

.social__icon {
	width: 40px;
}

.contactify {
	position: fixed;
	bottom: 3.5%;
	right: 1%;
	z-index: 10;
	height: 60px;
	width: 60px;
}

.contactify__link {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.contactify__link--base {
	z-index: 3;
	border: none;
	background: none;
	display: inline-block;
	cursor: pointer;
	outline: none;
}

.contactify__link--base:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.contactify__link--base--active {
	-webkit-filter: saturate(0%);
	filter: saturate(0%);
}

.contactify__link--base--active ~ .contactify__link--tel {
	-webkit-transform: translateY(-120%);
	transform: translateY(-120%);
}

.contactify__link--base--active ~ .contactify__link--whatsapp {
	-webkit-transform: translateY(-240%);
	transform: translateY(-240%);
}

.contactify__link--tel,
.contactify__link--whatsapp {
	z-index: -1;
}

.contactify__icon {
	height: 60px;
	width: 60px;
}

.btn {
	display: inline-block;
	padding: 1.5rem 3rem;
	font-family: inherit;
	font-size: 2rem;
	min-width: 30rem;
	border: none;
	font-weight: 700;
	background-color: #00c2ff;
	color: #fff;
	cursor: pointer;
	text-align: center;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
	border-radius: 13px 13px;
	box-shadow: 5px 5px black;
}

.btn--link {
	text-decoration: none;
}

.btn:hover {
	background-color: #214eff;
}

.input {
	margin-bottom: 5rem;
}

.input__label {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: max-content 1fr;
	grid-template-columns: -webkit-max-content 1fr;
	grid-template-columns: max-content 1fr;
	grid-gap: 1rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 700;
	font-size: 2rem;
}

.input__label::after {
	content: "";
	display: block;
	height: 2px;
	width: 100%;
	background-color: #f3f3f3;
}

.input__label--inverted {
	color: #fff;
}

.input__control {
	font-family: inherit;
	font-size: inherit;
	background-color: #e6e6e6;
	border: none;
	padding: 1rem 3rem;
	color: #000;
	border-bottom: 5px solid #cdcdcd;
	-webkit-transition: border-bottom-color 0.3s;
	transition: border-bottom-color 0.3s;
	width: 100%;
	border-radius: 13px;
	outline: none;
	box-shadow: 5px 5px;
}

.input__control--textarea {
	resize: none;
	height: 20rem;
}

.input__control--error {
	border-bottom-color: red;
}

.input__control:focus {
	border-bottom-color: #46d1ff;
}

.card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.card__image {
	width: 100%;
	height: 30rem;
	-o-object-fit: cover;
	object-fit: cover;
	border-top-left-radius: 3rem;
	border-top-right-radius: 3rem;
}

@media screen and (max-width: 40.625em) {
	.card__image {
		height: 20rem;
	}
}

.card__content {
	background-color: #fff;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 2rem;
	-webkit-transform: translateY(-7rem);
	transform: translateY(-7rem);
	border-bottom-left-radius: 3rem;
	border-bottom-right-radius: 3rem;
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
}

@media screen and (max-width: 50em) {
	.card__content {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: #000;
}

.product:hover .product__image {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.product:hover .product__content {
	-webkit-transform: translateY(-1rem);
	transform: translateY(-1rem);
	color: #1e00e1;
}

.product__image {
	width: auto;
	height: 25rem;
	-webkit-transition: color 0.3s, -webkit-transform 0.3s;
	transition: color 0.3s, -webkit-transform 0.3s;
	transition: transform 0.3s, color 0.3s;
	transition: transform 0.3s, color 0.3s, -webkit-transform 0.3s;
}

.product__content {
	margin-top: 3rem;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.product__name {
	margin-bottom: 0 !important;
}

.title-text {
	display: flex;
	justify-content: center;
	align-items: center;
}

.title-text img {
	width: 260px;
}

.hero {
	width: 100%;
	/* background-color: #742628; */
	position: relative;
	overflow: hidden;
	/* padding-bottom: 4rem; */
	background: linear-gradient(253deg, #0cc898, #1797d2, #864fe1);
	background-size: 300% 300%;
	-webkit-animation: Background 25s ease infinite;
	-moz-animation: Background 25s ease infinite;
	animation: Background 25s ease infinite;
	/* display: ; */
	/* justify-content: center; */
	/* align-items: center; */
	margin-top: 20px;
}

@-webkit-keyframes Background {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@-moz-keyframes Background {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes Background {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@media screen and (max-width: 34.375em) {
	.hero {
		margin-top: 16rem;
	}
}

.hero__video {
	height: auto;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 2;
}

.intro {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.9)),
			to(rgba(0, 0, 0, 0.8))
		),
		url(../img/intro-bg.jpg);
	background-image: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.9),
			rgba(0, 0, 0, 0.8)
		),
		url(../img/intro-bg.jpg);
	background-attachment: fixed;
	padding: 8rem 0;
}

.intro__content {
	margin: 0 5vw 5rem;
	max-width: 90rem;
	color: #fff;
}

.intro__cards {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [3];
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 4rem;
	padding: 0 3rem;
}

@media screen and (max-width: 64em) {
	.intro__cards {
		grid-gap: 1rem;
	}
}

@media screen and (max-width: 50em) {
	.intro__cards {
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 2rem;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media screen and (max-width: 40.625em) {
	.intro__cards {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}

.intro__card p {
	margin-bottom: 0 !important;
}

@media screen and (max-width: 50em) {
	.intro__card--results {
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-column: 1/3;
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		grid-row: 2/3;
	}
}

@media screen and (max-width: 40.625em) {
	.intro__card--results {
		grid-column: unset;
		grid-row: unset;
	}
}

.products {
	padding: 8rem 5vw;
}

.products__content {
	text-align: center;
	margin-bottom: 6rem;
}

.products__cards {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [4];
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 3rem;
	grid-row-gap: 10rem;
}

@media screen and (max-width: 50em) {
	.products__cards {
		-ms-grid-columns: (1fr) [3];
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 35.625em) {
	.title-text {
		margin-top: 100px;
	}
	.hero {
		margin-top: 10px;
	}
	.products__cards {
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 21.875em) {
	.products__cards {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}

.products__empty {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.category {
	padding: 8rem 5vw;
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(32, 210, 255, 0.8)),
			to(rgba(236, 188, 188, 0.8))
		),
		url(../img/category.jpg);
	background-image: linear-gradient(
			to bottom,
			rgba(44, 255, 248, 0.8),
			rgba(0, 0, 0, 0.8)
		),
		url(../img/category.jpg);
	background-position: center;
	background-size: cover;
	color: #fff;
	border-radius: 16px;
	background-image: linear-gradient(
		-10deg,
		#f10d5e 0%,
		#ffb43e 25%,
		#43e03c 50%,
		#6528ff 100%
	);
	animation: unicorn-slide 10s ease infinite;
	-webkit-animation: unicorn-slide 10s ease infinite;
	background-size: 200% 200%;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.category__heading {
	display: -ms-grid;
	justify-content: center;
	display: flex;
	-ms-grid-columns: max-content 1fr;
	grid-template-columns: -webkit-max-content 1fr;
	grid-template-columns: max-content 1fr;
	grid-gap: 3rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-transform: uppercase;
}

/* .category__heading::after {
	content: "";
	display: block;
	height: 3px;
	width: 100%;
	background-color: #1c315e;
} */

.category__grid {
	margin-top: 5rem;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [4];
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 3rem;
}

@media screen and (max-width: 74.0625em) {
	.category__grid {
		grid-gap: 1rem;
	}
}

@media screen and (max-width: 55em) {
	.category__grid {
		-ms-grid-columns: (1fr) [3];
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 37.5em) {
	.category__grid {
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 26.875em) {
	.category__grid {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}

.category__card {
	width: 100%;
	height: 25rem;
	text-decoration: none;
	color: #fff;
	border-radius: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding: 3rem;
	position: relative;
	background-position: center;
	background-size: cover;
	-webkit-transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
	transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
	transition: transform 0.3s, filter 0.3s;
	transition: transform 0.3s, filter 0.3s, -webkit-transform 0.3s,
		-webkit-filter 0.3s;
}

.category__card:hover {
	-webkit-transform: translateY(-3rem) scale(1.1);
	transform: translateY(-3rem) scale(1.1);
	z-index: 3;
	-webkit-filter: contrast(120%);
	filter: contrast(120%);
}

.category__card--syrups {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(208, 173, 174, 0.3)),
			to(#000)
		),
		url(../img/Syrupbottle.webp);
	background-image: linear-gradient(to bottom, rgba(198, 198, 198, 0.3), #000),
		url(../img/Syrupbottle.webp);
}

.category__card--drops {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(116, 38, 40, 0.3)),
			to(#640608)
		),
		url(../img/yogbot.jpg);
	background-image: linear-gradient(to bottom, rgba(198, 198, 198, 0.3), #000),
		url(../img/yogbot.jpg);
}

.category__card--yog {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(116, 38, 40, 0.3)),
			to(#640608)
		),
		url(../img/yogImg.jpg);
	background-image: linear-gradient(to bottom, rgba(198, 198, 198, 0.3), #000),
		url(../img/yogImg.jpg);
}

.category__card--medicated-oils {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(116, 38, 40, 0.3)),
			to(#640608)
		),
		url(../img/medioil.jpg);
	background-image: linear-gradient(to bottom, rgba(198, 198, 198, 0.3), #000),
		url(../img/medioil.jpg);
}

.category__card--medicated-powders {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(122, 81, 83, 0.3)),
			to(#000)
		),
		url(../img/medicated-powders-min.jpg);
	background-image: linear-gradient(to bottom, rgba(198, 198, 198, 0.3), #000),
		url(../img/medicated-powders-min.jpg);
}

.category__card--ear-drops {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(23, 243, 255, 0.3)),
			to(#077857)
		),
		url(../img/ear-drops-min.jpg);
	background-image: linear-gradient(to bottom, rgba(198, 198, 198, 0.3), #000),
		url(../img/ear-drops-min.jpg);
}

.category__card--hair-oils {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(39, 151, 171, 0.3)),
			to(#000563)
		),
		url(../img/hair.jpeg);
	background-image: linear-gradient(to bottom, rgba(198, 198, 198, 0.3), #000),
		url(../img/hair.jpeg);
}

.category__card--special {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(39, 151, 171, 0.3)),
			to(#000563)
		),
		url(../img/special-min.jpg);
	background-image: linear-gradient(to bottom, rgba(198, 198, 198, 0.3), #000),
		url(../img/special-min.jpg);
}

.category__card--sugar-globule {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(39, 151, 171, 0.3)),
			to(#000563)
		),
		url(../img/sugar-globule.jpg);
	background-image: linear-gradient(to bottom, rgba(198, 198, 198, 0.3), #000),
		url(../img/sugar-globule.jpg);
	background-position: center bottom;
}

.news {
	padding: 8rem 5vw;
}

.news__wrapper:not(:last-child) {
	margin-bottom: 8rem;
}

.news__header {
	margin-bottom: 2rem;
	color: #742628;
}

.news__header--new {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: max-content 1fr;
	grid-template-columns: -webkit-max-content 1fr;
	grid-template-columns: max-content 1fr;
	grid-gap: 3rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.news__header--new::after {
	content: "";
	display: block;
	height: 6px;
	width: 100%;
	background-color: #742628;
}

.news__content {
	max-width: 120rem;
}

.categorize {
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.categorize__header {
	min-height: 30vh;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	background-size: cover;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-attachment: fixed;
	padding: 3rem 1rem;
	color: #fff;
}

.categorize__header--syrups {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(39, 151, 171, 0.3)),
			to(#000563)
		),
		url(../img/Syrupbottle.webp);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #000),
		url(../img/Syrupbottle.webp);
}

.categorize__header--drops {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.6)),
			to(#000)
		),
		url(../img/yogbot.jpg);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #000),
		url(../img/yogbot.jpg);
}

.categorize__header--medicated-oils {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.6)),
			to(#000)
		),
		url(../img/medioil.jpg);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #000),
		url(../img/medioil.jpg);
	background-position: center bottom;
}

.categorize__header--medicated-powders {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.6)),
			to(#000)
		),
		url(../img/medicated-powder.jpg);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #000),
		url(../img/medicated-powder.jpg);
}

.categorize__header--ointments {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.6)),
			to(#000)
		),
		url(../img/ointment.jpg);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #000),
		url(../img/ointment.jpg);
	background-position: bottom;
}

.categorize__header--ear-drops {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.6)),
			to(#000)
		),
		url(../img/ear-drop.jpg);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #000),
		url(../img/ear-drop.jpg);
	background-position: center bottom;
}

.categorize__header--hair-oils {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.6)),
			to(#000)
		),
		url(../img/hairoil.webp);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #000),
		url(../img/hairoil.webp);
	background-position: center 80%;
}

.categorize__header--special {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.6)),
			to(#000)
		),
		url(../img/special.jpg);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #000),
		url(../img/special.jpg);
	background-position: center bottom;
}

.categorize__header--sugar-free {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.6)),
			to(#000)
		),
		url(../img/sugar-free.jpg);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #000),
		url(../img/sugar-free.jpg);
	background-position: center bottom;
}

.categorize__header--sugar-globule {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.6)),
			to(#000)
		),
		url(../img/sugar-globule.jpg);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #000),
		url(../img/sugar-globule.jpg);
	background-position: center bottom;
}

.categorize__header--search {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0.6)),
			to(#000)
		),
		url(../img/search.jpg);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #000),
		url(../img/search.jpg);
	background-position: center bottom;
}

.categorize__container {
	padding: 10rem 5vw;
}

.preview {
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@keyframes fade {
	to {
		opacity: 1;
	}
}

.preview__grid {
	padding: 10rem 5vw 5rem;
	background-color: wheat;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: max-content 1fr;
	grid-template-columns: -webkit-max-content 1fr;
	grid-template-columns: max-content 1fr;
	grid-gap: 8rem;
}

@media screen and (max-width: 58.125em) {
	.preview__grid {
		grid-gap: 3rem;
	}
}

@media screen and (max-width: 45.625em) {
	.preview__grid {
		-ms-grid-columns: 20rem 1fr;
		grid-template-columns: 20rem 1fr;
	}
}

@media screen and (max-width: 37.5em) {
	.preview__grid {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}

.preview__link--1 {
	display: none;
}

@media screen and (max-width: 37.5em) {
	.preview__link--1 {
		display: inline-block;
		justify-self: flex-end;
		margin-left: -10px;
	}

	.preview__link--2 {
		display: none;
	}
}

.preview__product {
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: max-content max-content;
	grid-template-rows: -webkit-max-content -webkit-max-content;
	grid-template-rows: max-content max-content;
}

@media screen and (max-width: 37.5em) {
	.preview__product {
		margin-top: 5rem;
		-ms-grid-rows: max-content 1fr max-content;
		grid-template-rows: -webkit-max-content 1fr -webkit-max-content;
		grid-template-rows: max-content 1fr max-content;
	}
}

.preview__image {
	width: 100%;
	max-width: 30rem;
}

@media screen and (max-width: 37.5em) {
	.preview__image {
		margin-top: 2rem;
		max-width: 20rem;
	}
}

.preview__info {
	max-width: 120rem;
}

.preview__intro {
	margin-bottom: 3rem;

	border-bottom: 5px solid #3927ff;
}

.preview__wrapper {
	margin-bottom: 3rem;
	max-width: 80rem;
}

.preview__wrapper--btn {
	margin-top: 5rem;
	padding-top: 3rem;
	border-top: 4px solid #a382ff;
}

.company {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 30rem 1fr;
	grid-template-columns: 30rem 1fr;
	padding: 10rem 10vw;
	grid-gap: 5rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-image: linear-gradient(#d7850a, #ffe11b);
	color: #fff;
}

@media screen and (max-width: 68.75em) {
	.company {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 35em) {
	.company {
		padding: 5rem 5vw;
	}
	.nav__logo {
		width: 13rem;
	}
}

.company__logo {
	width: 100%;
}

@media screen and (max-width: 68.75em) {
	.company__logo {
		max-width: 30rem;
	}
}

.company__heading {
	margin-bottom: 3rem;
	border-bottom: 2px solid #fff;
}

.founder {
	padding: 5rem 10vw;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: max-content 1fr;
	grid-template-columns: -webkit-max-content 1fr;
	grid-template-columns: max-content 1fr;
	grid-gap: 5rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 53.75em) {
	.founder {
		padding: 5rem 5vw;
	}
}

@media screen and (max-width: 41.25em) {
	.founder {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.founder__image-wrapper {
	text-align: center;
}

.founder__wrapper {
	padding: 10rem 0 10rem 5rem;
	border-left: 5px solid #205295;
}

@media screen and (max-width: 41.25em) {
	.founder__wrapper {
		border-left: unset;
		padding: 0 5vw;
	}
}

.mission {
	padding: 10rem 0;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 2px;
}

.mission__container {
	min-height: 50rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	position: relative;
	overflow: hidden;
	background-color: #00c2ff;
	color: #fff;
}

.mission__container--vision {
	text-align: right;
	padding: 5rem 5rem 5rem 5vw;
}

.mission__container--mission {
	padding: 5rem 5vw 5rem 5rem;
}

.mission__backdrop {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 25vw;
	opacity: 0.15;
	color: #000;
	font-weight: 700;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.quality {
	padding: 10rem 10vw;
	text-align: left;
}

.quality__heading {
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	border-bottom: 5px solid #85ffbd;
}

.quality__stamps {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 8rem;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.quality__stamp {
	height: 10rem;
	margin: 0 2rem;
}

.belief {
	display: -ms-grid;
	display: grid;
}

.belief--values {
	-ms-grid-columns: 4fr 2fr;
	grid-template-columns: 4fr 2fr;
	grid-gap: 5rem;
}

@media screen and (max-width: 53.75em) {
	.belief--values {
		grid-gap: 3rem;
	}
}

@media screen and (max-width: 50em) {
	.belief--values {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}

.belief--commitment {
	-ms-grid-columns: 2fr 4fr;
	grid-template-columns: 2fr 4fr;
	margin-top: 10rem;
}

@media screen and (max-width: 50em) {
	.belief--commitment {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		margin-top: 0;
	}
}

@media screen and (max-width: 95.625em) {
	.belief--commitment .belief__image {
		-o-object-position: 70% center;
		object-position: 70% center;
	}
}

@media screen and (max-width: 50em) {
	.belief--commitment .belief__image {
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		grid-row: 2/3;
	}
}

.belief--commitment .belief__list {
	padding: 5rem 0;
}

@media screen and (max-width: 50em) {
	.belief--commitment .belief__list {
		padding: 0 0 5rem;
	}
}

.belief--commitment .belief__sub-title {
	padding: 1rem 10vw 1rem 4rem;
}

.belief--commitment .belief__text {
	padding: 1rem 10vw 1rem 4rem;
}

@media screen and (max-width: 56.25em) {
	.belief--commitment .belief__text {
		padding: 1rem 5vw;
	}
}

.belief__content {
	padding: 5rem 5rem 5rem 10vw;
	border-bottom: 20px solid #f3f3f3;
	background-image: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#f8f8f8),
		to(#fff)
	);
	background-image: linear-gradient(to right, #f8f8f8, #fff);
}

.belief__title {
	padding: 3rem 10vw;
}

.belief__list {
	list-style: none;
}

.belief__item {
	margin-bottom: 3rem;
}

.belief__sub-title {
	display: inline-block;
	padding: 1rem 4rem 1rem 10vw;
	background-color: #a382ff;
	color: #fff;
	-webkit-box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.15);
	box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.15);
}

.belief__image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.belief__text {
	padding: 1rem 4rem 1rem 10vw;
}

@media screen and (max-width: 56.25em) {
	.belief__text {
		padding: 1rem 5vw;
	}
}

.certifications {
	padding: 0 5vh;
	text-align: center;
	background-color: #fff;
	-webkit-box-shadow: -20px 0 20px rgba(0, 0, 0, 0.15);
	box-shadow: -20px 0 20px rgba(0, 0, 0, 0.15);
}

.certifications__list {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 5rem;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

/* .certifications__single {
	margin: 3rem;
} */

.certifications__image {
	width: 50rem;
	margin-bottom: 3rem;
}

.csr {
	-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.csr__container {
	max-width: 120rem;
	padding: 10rem 1rem;
	margin: 0 auto;
}

@media screen and (max-width: 81.25em) {
	.csr__container {
		padding: 10rem 5vw;
	}
}

.csr__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 5rem;
	border-bottom: 3px solid #005666;
	background-image: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#f3f3f3),
		to(#fff)
	);
	background-image: linear-gradient(to right, #f3f3f3, #fff);
}

@media screen and (max-width: 33.75em) {
	.csr__header {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		background-image: unset;
	}
}

.csr__image {
	height: 30rem;
	margin-right: 5rem;
}

@media screen and (max-width: 33.75em) {
	.csr__image {
		margin-right: unset;
		margin-top: 2rem;
	}
}

.csr__highlight {
	padding: 5rem;
	background-image: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#000),
		to(#000)
	);
	background-image: linear-gradient(to right, #000, #000);
	color: #fff;
	margin: 5rem 0;
}

.homoeopathy__container {
	max-width: 130rem;
	margin: 0 auto;
	padding: 5rem 1rem;
}

@media screen and (max-width: 64em) {
	.homoeopathy__container {
		padding: 2.4rem 1rem;
	}
}

.homoeopathy__title {
	margin-left: 5rem;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: max-content 1fr;
	grid-template-columns: -webkit-max-content 1fr;
	grid-template-columns: max-content 1fr;
	grid-gap: 3rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 64em) {
	.homoeopathy__title {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		margin: 0 5vw;
	}
}

.homoeopathy__title::after {
	content: "";
	display: block;
	height: 3px;
	width: 100%;
	background-color: #742628;
}

.homoeopathy__wrapper {
	padding: 5rem;
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.homoeopathy__usp {
	background-image: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#742628),
		to(#640608)
	);
	background-image: linear-gradient(to right, #31ffcf, #0ad02f);
	margin: 8rem 0;
}

.homoeopathy__usp-wrapper {
	max-width: 130rem;
	margin: 0 auto;
	padding: 5rem 5vw;
	background-color: #fff;
	font-size: 2rem;
}

.contact__container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1.3fr 1fr;
	grid-template-columns: 1.3fr 1fr;
	background-color: #e74c3c;
	animation: bg-color 10s infinite;
}
@keyframes bg-color {
	0% {
		background-color: #e74c3c;
	}
	20% {
		background-color: #f1c40f;
	}
	40% {
		background-color: #1abc9c;
	}
	60% {
		background-color: #3498db;
	}
	80% {
		background-color: #9b59b6;
	}
	100% {
		background-color: #e74c3c;
	}
}
@media screen and (max-width: 58.75em) {
	.contact__container {
		-ms-grid-columns: 1fr 1.5fr;
		grid-template-columns: 1fr 1.5fr;
	}
}

@media screen and (max-width: 31.25em) {
	.contact__container {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}

.contact__image {
	pointer-events: none;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	-webkit-box-shadow: 10px 0 15px rgba(0, 0, 0, 0.15);
	box-shadow: 10px 0 15px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 31.25em) {
	.contact__image {
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		grid-row: 2/3;
	}
	/* .contact__btn-wrapper{
		padding-left: 10rem;
	} */
}

.contact__form {
	padding: 10rem 5vw;
}

.contact__btn-wrapper {
	display: -ms-grid;
	display: flex;
	/* -ms-grid-columns: max-content 1fr; */
	grid-template-columns: -webkit-max-content 1fr;
	grid-template-columns: max-content 1fr;
	grid-gap: 2rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
	/* padding-left: 23rem; */
}

.contact__map {
	width: 100%;
}

.policy {
	padding: 5rem 5vw;
	max-width: 160rem;
	margin: 0 auto;
}

.policy .h2 {
	margin-bottom: 2rem;
	border-bottom: 2px solid #000;
}

.policy li {
	margin-bottom: 2rem;
}

.policy ul {
	margin-left: 3rem;
	margin-bottom: 3rem;
}

.terms {
	padding-top: 8rem;
}

.partner__img-wrapper {
	width: 100%;
	background-color: #000;
	min-height: 40rem;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding: 5rem 5vw;
	color: #fff;
}

.partner__img-wrapper--1 {
	background-image: -webkit-gradient(
			linear,
			left bottom,
			left top,
			from(#000),
			to(rgba(0, 0, 0, 0))
		),
		url(../img/partner.jpg);
	background-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0)),
		url(../img/partner.jpg);
}

.partner__img-wrapper--2 {
	background-image: -webkit-gradient(
			linear,
			left bottom,
			left top,
			from(#000),
			to(rgba(0, 0, 0, 0))
		),
		url(../img/shankehand.jpg);
	background-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0)),
		url(../img/shankehand.jpg);
}

.partner__wrapper {
	padding: 10rem 5vw;
}

.partner__form {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 5rem;
	grid-row-gap: 2rem;
}

@media screen and (max-width: 53.125em) {
	.partner__form {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}

.partner__form .input {
	margin-bottom: 0;
}

.partner__form .btn {
	margin-top: 2rem;
}

.notText {
	display: flex;
	justify-content: center;
}

.hidden {
	opacity: 0;
	transition: all 1s;
}

.show {
	opacity: 1;
}
