@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap");

* {
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	border: none;
	text-decoration: none;
	text-transform: capitalize;
	-webkit-transition: .2s linear;
	transition: .2s linear;
}

:root {
	--primary-color: #F75435;
	--secondary-color: #130f40;
	--blur-color: #666;
}

body {
	position: relative;
}

html {
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
	scroll-padding-top: 8.5rem;
}

html::-webkit-scrollbar {
	width: 1rem;
}

html::-webkit-scrollbar-track {
	background: #fff;
}

html::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 5rem;
}

section {
	padding: 2rem 9%;
}

.heading {
	text-align: center;
	padding-bottom: 2rem;
}

.heading span {
	font-family: 'Satisfy', cursive;
	font-size: 3rem;
	color: var(--primary-color);
}

.heading h3 {
	font-size: 3rem;
	color: var(--secondary-color);
}

.btn {
	display: inline-block;
	margin-top: 1rem;
	padding: .7rem 1.8rem;
	font-size: 1.7rem;
	cursor: pointer;
	color: #fff;
	background: var(--primary-color);
	border-radius: .5rem;
}

.btn:hover {
	opacity: 0.9;
}

.header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: #fff;
	-webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
	box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
	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 9%;
}

.header .logo {
	font-size: 2.5rem;
	font-weight: bolder;
	color: var(--secondary-color);
}

.header .logo i {
	padding-right: .5rem;
	color: var(--primary-color);
}

.header .navbar a {
	font-size: 1.4rem;
	margin: 0 1rem;
	color: var(--blur-color);
	padding: .5rem;
	position: relative;
}

.header .navbar a::before,
.header .navbar .first-list::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	border-left: 3px solid var(--primary-color);
	border-top: 3px solid var(--primary-color);
	height: 5px;
	width: 5px;
	opacity: 0;
	transition: opacity 0.2s linear;
}

.header .navbar a::after,
.header .navbar .first-list::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	border-right: 3px solid var(--primary-color);
	border-bottom: 3px solid var(--primary-color);
	height: 5px;
	width: 5px;
	opacity: 0;
	transition: opacity 0.2s linear;
}

.header .navbar .first-list::after,
.header .navbar .first-list::before {
	opacity: 1;
}

.header .navbar .first-list {
	color: var(--primary-color);
}

.header .navbar a:hover::before,
.header .navbar a:hover::after {
	opacity: 1;
}

.header .navbar a:hover {
	color: var(--primary-color);
}

.header .icons div {
	height: 4.5rem;
	width: 4.5rem;
	line-height: 4.5rem;
	font-size: 2rem;
	background: #f7f7f7;
	color: var(--secondary-color);
	border-radius: .5rem;
	margin-left: .3rem;
	cursor: pointer;
	text-align: center;
	display: inline-block;
}

.header .icons div:hover {
	color: #fff;
	background: var(--primary-color);
}

.header .icons div a {
	color: var(--secondary-color);
}

.header .icons div a:hover {
	background: var(--primary-color);
}

.header .icons div:hover i {
	color: #fff;
}

#menu-btn {
	display: none;
}

@-webkit-keyframes fadeUp {
	0% {
		-webkit-transform: translateY(5rem);
		transform: translateY(5rem);
		opacity: 0;
	}
}

@keyframes fadeUp {
	0% {
		-webkit-transform: translateY(5rem);
		transform: translateY(5rem);
		opacity: 0;
	}
}

.login-form-container {
	position: fixed;
	top: 8.5rem;
	left: 0;
	right: 0;
	z-index: 250;
	height: calc(100vh - 8.5rem);
	background: #fff;
	padding: 0 2rem;
	display: none;
}

.login-form-container.active {
	display: block;
}

.login-form-container form {
	margin: 2rem auto;
	max-width: 40rem;
	-webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
	box-shadow: 0 3rem rem rgba(0, 0, 0, 0.05);
	border: 0.1rem solid rgba(0, 0, 0, 0.2);
	padding: 2rem;
	border-radius: .5rem;
	-webkit-animation: fadeUp .4s linear;
	animation: fadeUp .4s linear;
}

.login-form-container form h3 {
	padding-bottom: 1rem;
	font-size: 2.5rem;
	text-transform: uppercase;
	text-align: center;
	color: var(--primary-color);
}

.login-form-container form .box {
	margin: .7rem 0;
	border-radius: .5rem;
	background: #f7f7f7;
	padding: 1rem 1.2rem;
	font-size: 1.6rem;
	color: var(--secondary-color);
	text-transform: none;
	width: 100%;
}

.login-form-container form .remember {
	padding: 1rem 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: .5rem;
}

.login-form-container form .remember label {
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--blur-color);
}

.login-form-container form .btn {
	margin: 1rem 0;
	width: 100%;
	text-align: center;
}

.login-form-container form p {
	padding-top: 1rem;
	font-size: 1.5rem;
	color: var(--blur-color);
}

.login-form-container form p a {
	color: var(--primary-color);
}

.login-form-container form p a:hover {
	color: var(--secondary-color);
	text-decoration: underline;
}

.home {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	gap: 2rem;
	position: relative;
	overflow: hidden;
}

.home .content {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 41rem;
	flex: 1 1 41rem;
}

.home .content span {
	font-size: 2rem;
	color: var(--primary-color);
}

.home .content h3 {
	font-size: 4rem;
	color: var(--secondary-color);
	font-weight: 900;
	padding-top: 1rem;
}

.home .content p {
	font-size: 1.5rem;
	color: var(--blur-color);
	line-height: 2;
	padding: 1rem 0;
}

.home .image {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 41rem;
	flex: 1 1 41rem;
	margin: 2rem 0;
	pointer-events: none;
}

.home .image .home-img {
	width: 90%;
	margin-top: 5rem;
}

/* message from md starts */
.message {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow-y: hidden;
	opacity: 0;
	pointer-events: none;
	transform: scale(1.2);
	transition: opacity 0.2s 0s ease-in-out, transform 0.2s 0s ease-in-out;
}

.message.show {
	opacity: 1;
	pointer-events: auto;
	z-index: 1000;
	transform: scale(1);
}

.message .popup-box {
	background-color: #f7f7f7;
	border-radius: 10px;
	padding: 30px;
	max-width: 800px;
	width: 100%;
	position: relative;
}

.popup-box i {
	position: absolute;
	font-size: 20px;
	top: 16px;
	right: 16px;
	cursor: pointer;
	color: var(--secondary-color);
	border: 2px solid var(--primary-color);
	padding: 5px 10px;
	border-radius: 5px;
}

.popup-box i:hover {
	background-color: var(--primary-color);
	color: #f7f7f7;
}

.message .popup-outer {
	position: absolute;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	justify-content: center;
	align-items: center;
}



.message .popup-box img {
	height: 100px;
	width: 100px;
	object-fit: cover;
	border-radius: 50%;
	outline: 3px solid var(--primary-color);
	padding: .5px;
	border: 2px solid #f7f7f7;
}

.stockiship {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow-y: hidden;
	opacity: 0;
	pointer-events: none;
	transform: scale(1.2);
	transition: opacity 0.2s 0s ease-in-out, transform 0.2s 0s ease-in-out;
}

.stockiship.show {
	opacity: 1;
	pointer-events: auto;
	z-index: 1000;
	transform: scale(1);
}

.stockiship .popup-box {
	background-color: #f7f7f7;
	border-radius: 10px;
	padding: 30px;
	max-width: 800px;
	width: 100%;
	position: relative;
}

.popup-box i {
	position: absolute;
	font-size: 20px;
	top: 16px;
	right: 16px;
	cursor: pointer;
	color: var(--secondary-color);
	border: 2px solid var(--primary-color);
	padding: 5px 10px;
	border-radius: 5px;
}

.popup-box i:hover {
	background-color: var(--primary-color);
	color: #f7f7f7;
}

.stockiship .popup-outer {
	position: absolute;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	justify-content: center;
	align-items: center;
}


.profile-text {
	display: flex;
	flex-direction: column;
}

.profile-text .info {
	display: flex;
	align-items: center;
}

.profile-text .text {
	display: flex;
	flex-direction: column;
	margin-left: 15px;
}

.profile-text .text .name {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--secondary-color);
}

.profile-text .text .profession {
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--blur-color);
}

.message .popup-box .md-message {
	width: 100%;
	margin-top: 20px;
	font-size: 1.4rem;
	line-height: 2.5rem;
	color: var(--blur-color);
}


.message .popup-box .btn {
	margin-top: 20px;
}

.banner {
	position: relative;
}


.banner .row-banner {
	margin-bottom: 3rem;
	position: relative;
	border-radius: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.banner .v-content span {
	display: flex;
	justify-content: space-evenly;
}

.banner .v-content span iframe {
	width: 45%;
}

.banner .v-content span img {
	width: 45%;
}

.banner .divit-history {
	height: 30rem;
}


.banner .vijay-brief {
	height: 82rem;
}

.banner .row-banner .content p {
	font-size: 1.5rem;
	padding-bottom: 1rem;
	color: #000;
}

.banner .grid-banner {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	gap: 3rem;
}

.banner .grid-banner .grid {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	height: 45rem;
	background-color: #f7f7f7;
	box-shadow: 0 0 .1rem rgba(0, 0, 0, 0.2);
}

.banner .grid-banner .grid img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.banner .grid-banner .grid .content {
	position: absolute;
	top: 0rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 2rem;
	width: 100%;
	height: 100%;
}

.banner .grid-banner .grid .content.center {
	text-align: center;
	width: 100%;
}

.banner .grid-banner .grid .content.center span {
	color: var(--blur-color);
}

.banner .grid-banner .grid .content.center h3 {
	color: var(--secondary-color);
}

.banner .grid-banner .grid .content span {
	font-size: 1.5rem;
	color: var(--blur-color);
	text-align: center;
}

.banner .grid-banner .grid .content h3 {
	font-size: 3rem;
	color: var(--primary-color);
	padding-top: .5rem;
}

.banner .grid-banner .grid .content i {
	font-size: 5rem;
	color: var(--primary-color);
}

.banner .grid-banner .grid:hover {
	transform: scale(1.03);
	background-color: var(--primary-color);
	cursor: pointer;
}

.banner .grid-banner .grid:hover .fa-solid {
	color: #f7f7f7;
}

.banner .grid-banner .grid:hover .content h3 {
	color: #f7f7f7;
}

.banner .grid-banner .grid:hover .content span {
	color: #f7f7f7;
}

.banner .grid-banner .grid:hover .content .btn {
	background-color: #f7f7f7;
	color: var(--primary-color);
}

.product .box-container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
	gap: 1.5rem;
}

.product .box-container .box {
	border-radius: .5rem;
	position: relative;
	background: #f7f7f7;
	padding: 2rem;
	text-align: center;
}

.product .box-container .box:hover {
	transform: scale(1.05);
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	background-color: #F75435;
}

.product .box-container .box .fa-heart {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	font-size: 2.5rem;
	color: var(--blur-color);
	cursor: pointer;
}

.product .box-container .box .fa-heart:hover {
	color: var(--primary-color);
}

.product .box-container .box .image {
	margin: 1rem 0;
}

.product .box-container .box .image img {
	height: 18rem;
	width: 95%;
	border-radius: 4px;
}

.product .box-container .box .d-image img {
	height: 13rem;
	width: 100%;
}

.product .box-container .box .v-image img {
	height: 12rem;
	width: 40%;
}

.product .box-container .box .a-image img {
	height: 12rem;
	width: 75%;
}

.product .box-container .box .content h3 {
	font-size: 2.2rem;
	color: var(--secondary-color);
}

.product .box-container .box .content {
	color: var(--blur-color);
	font-size: 1.5rem;
}

.product .box-container .box .content .stars {
	padding: 1rem 0;
	font-size: 1.7rem;
}

.product .box-container .box .content .stars i {
	color: gold;
}

.product .box-container .box .content .stars span {
	color: var(--blur-color);
}

.product .box-container .box .content .price {
	font-size: 2rem;
	color: var(--secondary-color);
}

.product .box-container .box .content .price span {
	font-size: 1.5rem;
	color: var(--blur-color);
	text-decoration: line-through;
}

.product .box-container .box:hover .content h3,
.product .box-container .box:hover .content p {
	color: #f7f7f7;
}

.product .box-container .box:hover .content .btn {
	background-color: #f7f7f7;
	color: var(--primary-color);
}

.contact .icons-container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.contact .icons-container .icons {
	border-radius: .5rem;
	padding: 2rem;
	text-align: center;
	background: #f7f7f7;
}

.contact .icons-container .icons i {
	font-size: 3rem;
	color: var(--primary-color);
}

.contact .icons-container .icons h3 {
	font-size: 1.6rem;
	color: var(--secondary-color);
	margin-top: .5rem;
}

.contact form {
	background: #f7f7f7;
	padding: 2rem;
	border-radius: .5rem;
}

.contact form .flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.contact form .flex .inputBox {
	width: 49%;
	padding: .7rem 0;
}

.contact form .flex span {
	font-size: 1.7rem;
	color: var(--primary-color);
	font-weight: 600;
}

.contact form .flex input,
.contact form .flex textarea {
	width: 100%;
	margin-top: .5rem;
	padding: 1rem 1.2rem;
	width: 100%;
	border-radius: .5rem;
	font-size: 1.4rem;
	text-transform: none;
	color: var(--secondary-color);
}

form .flex textarea {
	height: 20rem;
	resize: none;
}

.contact form .flex .map {
	height: 100%;
	width: 100%;
	border-radius: .5rem;
	outline: 3px solid var(--primary-color);
}

.blogs .box-container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	gap: 1.5rem;
}

.blogs .box-container .box {
	border-radius: .5rem;
	overflow: hidden;
}

.blogs .box-container .box:hover .image h3 {
	left: 1.5rem;
}

.blogs .box-container .box:hover .image img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.blogs .box-container .box .image {
	position: relative;
	height: 25rem;
	overflow: hidden;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.blogs .box-container .box .image h3 {
	position: absolute;
	top: 1rem;
	left: -100%;
	border-radius: .5rem;
	padding: .5rem 1rem;
	background: #fff;
	color: var(--secondary-color);
	font-size: 1.5rem;
}

.blogs .box-container .box .image h3 i {
	padding-right: .5rem;
	color: var(--primary-color);
}

.blogs .box-container .box .image img {
	width: 80%;
}

.blogs .box-container .box .content {
	padding: 2rem 1.5rem;
	background: #f7f7f7;
	border-radius: .5rem;
}

.blogs .box-container .box .content .tags {
	padding-bottom: 1rem;
}

.blogs .box-container .box .content .tags a {
	font-size: 1.5rem;
	color: var(--blur-color);
	padding-right: .5rem;
}

.blogs .box-container .box .content .tags a:hover {
	color: var(--primary-color);
}

.blogs .box-container .box .content .tags a i {
	color: var(--primary-color);
	padding-right: .5rem;
}

.blogs .box-container .box .content h3 {
	font-size: 2rem;
	color: var(--secondary-color);
}

.blogs .box-container .box .content p {
	font-size: 1.4rem;
	color: var(--blur-color);
	padding: 1rem 0;
	line-height: 2;
}


.footer .bottom {
	padding-top: 1rem;
	text-align: center;
}

.footer .bottom .share {
	margin: 1.5rem 0;
}

.footer .bottom .share a {
	height: 4.5rem;
	width: 4.5rem;
	line-height: 4.5rem;
	font-size: 2rem;
	border-radius: .5rem;
	margin: 0 .3rem;
	color: #fff;
	background: var(--primary-color);
}

.footer .bottom .share a:hover {
	opacity: 0.9;
	transform: translateY(-10px);
}

.footer .bottom .credit {
	font-size: 2rem;
	color: var(--blur-color);
	padding: 1rem;
}

.footer .bottom .credit span {
	color: var(--primary-color);
}

@media (max-width: 991px) {
	html {
		font-size: 55%;
	}

	.header {
		padding: 2rem;
	}

	section {
		padding: 2rem;
	}
}

@media (max-width: 768px) {
	#menu-btn {
		display: inline-block;
	}

	.header .navbar {
		position: absolute;
		top: 99%;
		left: 0;
		right: 0;
		background: #fff;
		border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
		border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}

	.header .navbar.active {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	}

	.header .navbar a {
		font-size: 2rem;
		margin: 2rem;
		display: block;
	}

	.home .home-parallax-img {
		top: 0;
		right: 0;
		width: 130%;
	}

	.order form .flex .inputBox {
		width: 100%;
	}

	.banner .row-banner {
		overflow-y: scroll;
	}

	.banner .divit-history {
		overflow: hidden;
	}

	.banner .vijay-brief {
		overflow-y: scroll;
	}

}

@media (max-width: 450px) {
	html {
		font-size: 50%;
	}

	.shopping-cart-container .cart-total .box {
		text-align: center;
	}

	.shopping-cart-container .cart-total .box .btn {
		width: 100%;
	}

	.home .content h3 {
		font-size: 3rem;
	}

	.home .content p {
		font-size: 1.5rem;
	}
}

/*# sourceMappingURL=style.css.map */