/* main css */
body {
	background-color: #fff;
}

a {
	text-decoration: none;
}

.bg-overlay {
	position: relative;
}
.bg-overlay:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 0.8
}
.bg-overlay.theme-overlay:before {
	background-color: #efcda5;
}
.bg-overlay.white-overlay:before {
	background-color: #fff;
}
.bg-overlay.black-overlay:before {
	background-color: #000;
}
.bg-overlay .container {
	position: relative;
	z-index: 1;
}
.line {
	display: inline-block;
	width: 100px;
	height: 3px;
	background-color: #efcda5;
}
.text-justify { text-align: justify; }

/* header */

.topbar { background-color: #efcda5; }
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 15px;
}
.topbar .item i {
    background: #111;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
	font-size: 14px;
}
.topbar .item span {
	display: block;
}
.topbar .item a {
	font-size: 14px;
	font-weight: bold;
	color: #111;
	text-decoration: none;
}
.social li {
	display: inline-block;
	margin: 0 5px;
}
.social li img {
	width: 20px;
}
.navbar {
    background: rgb(120,55,250);
}
.navbar-brand img { height: 70px; }
.nav-item {
	position: relative;
	padding: 0 15px;
}
/*
.nav-item:before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 1px;
	content: '';
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}
.nav-item:last-child:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 1px;
	content: '';
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}*/
.nav-link {
	color: #efcda5;
	font-size: 18px;
}
/*********************/
/* slider */
.carousel-item {
	position: relative;
}
.carousel-item .main {
	width: 100%;
	height: 520px;
}
.carousel-item p {
	font-size: 10em;
	font-weight: bold;
	position: absolute;
	top: -50px;
	right: 10px;
	left:10px;
	text-align:center;
	line-height: initial;
	margin: 0;
	color: #fff;
	opacity: 0.5;
}
.carousel-item h1 img {
    height:60px;
    filter: brightness(0%);
}
.carousel-item h1 {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 50px;
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/*********************/
.pagetitle {
    background-color:#eee;
}
.sidebar {
    background-color:#f7f7f7;
    border:1px solid #eee;
}
.sidebar .links a {
    display:block;
    border-top:1px solid #ddd;
    padding:15px 10px;
    color:#111;
}
/* banner */
.banner {
	position: relative;
}
.banner img {
	width: 100%;
	height: calc(100% -140px);
}
.banner .grid_view {
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.banner .item {
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner .item span {
	background-color: #fff;
	padding: 10px;
	outline-offset: 5px;
	outline-width: 2px;
	outline-color: #fff;
	outline-style: solid;
	color: rgb(120,55,250);
	font-size: 24px;
	font-weight: bold;
	transition: 0.5s;
}
.banner .item:hover span {
	background-color: rgb(120,55,250);
	outline-color: rgb(120,55,250);
	color: #fff;
}
/*********************/
/* marquee */
.news {
	display: flex;
	align-items: center;
}
.news > span {
	background-color: #f00;
	color: #fff;
	padding: 10px;
	font-weight: bold;
}
.news p {
	margin: 0;
}
/*********************/
/* home products */
.home_products {}

.welcome .btn {
	background-color: #efcda5;
	border-color: #666;
	font-weight: 500
}
.welcome .btn:hover {
	background-color: #111;
	border-color: #111;
	color: #fff;
}

/*********************/
/* category */
.category .item {
	display: block;
}
.category .item figure {
	border-radius: 50%;
	border:5px solid #eee;
	overflow: hidden;
}
.category .item img {
	width: 100%;
}
.category .item span {
	display: inline-block;
	background-color: rgb(120,55,250);
	padding: 5px 10px;
	color: #fff;
	border-radius: 5px;
}
.owl-carousel .owl-dots {
	display: flex;
	justify-content: center;
	gap:10px;
	margin-top: 30px;
}
.owl-carousel .owl-dots > div {
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background-color: #111;
}
.owl-carousel .owl-dots > div.active {
	background-color: #efcda5;
}
/*********************/
/* counter */
.counter_wrap {
	background-size: cover;
	background-attachment: fixed;
}
.counter_wrap h1 {
	font-size: 60px;
	font-weight: 700;
	color: #efcda5;
}
/*********************/
/* testimonials */
.testimonials {}
.testimonials .item {
	background-color: rgba(255,255,255,0.8);
	padding: 30px;
	border-radius: 15px;
}
.testimonials .item img {
	width: 70px;
	height: 70px;
	border-radius: 70px;
	border:4px solid #fff;
	margin: 0 auto;
	margin-bottom: 15px;
}
/*********************/
/* gallery */
.gallery {}
.gallery .item {
	display: block;
	position: relative;
	outline: 2px solid #fff;
	outline-offset: -10px;
}
.gallery .item:after {
	font-family:'FontAwesome';
	font-size: 30px;
	color: #fff;
	position: absolute;
	text-align: center;
	content: '\f055';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(0);
	transition: 1s;
}
.gallery .item:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	transform: scale(0);
	transition: 0.5s;
}
.gallery .item:hover:after {
	transform: scale(1);
}
.gallery .item:hover:before {
	transform: scale(1);
}
/*********************/
/* form */
.enquiry {
	background-color: #eee;
}
.form1 {
	
}

/*********************/

/* footer */
footer {
    background: #111;
    color:#efcda5;
}
footer .links {
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}
footer .links li {
	display: block;
}
footer .links li a {
	display: block;
	color: #efcda5;
}
footer h4,
footer p {
    color:#efcda5;
}
.footer-bottom {
	background-color: rgba(0,0,0,0.2);
	color:#efcda5;
}
/************************/
.whatsappfix {
  position: fixed;
  left: 50px;
  bottom: 90px;
  z-index: 2
}
.whatsappfix .video-btn > span {
  background-color: rgba(37, 211, 102,1);
}

.video-btn {
  text-align: initial;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  position: relative;
  font-size: 28px;
  font-style: italic;
  padding: 6px 0 6px 4.125rem;
  font-weight: 600;
}
.video-btn > span {
  position: absolute;
  left: 0;
  text-align: center;
  height: 3.6875rem;
  width: 3.6875rem;
  line-height: 3.6875rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255,255,255,.1);
  top: 0;
}
.video-btn:hover, 
.video-btn:focus {color: #fff;}

/*=== Pulse Animation ===*/
.spinner:before,
.spinner:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4.0625rem;
  margin-left: -4.0625rem;
  background-color: inherit;
  -webkit-animation: pluse 2s linear infinite;
  -ms-animation: pluse 2s linear infinite;
  -o-animation: pluse 2s linear infinite;
  animation: pluse 2s linear infinite;
  width: 8.125rem;
  height: 8.125rem;
  -webkit-border-radius: inherit;
  border-radius: inherit;
  opacity: 0;
  z-index: -2;
}
.spinner:after {
  -webkit-animation: pluse 2s linear 2.3s infinite;
  -ms-animation: pluse 2s linear 2.3s infinite;
  -o-animation: pluse 2s linear 2.3s infinite;
  animation: pluse 2s linear 2.3s infinite;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-ms-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-o-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
	.carousel-item .main { height: 300px; }
	.carousel-item p { font-size: 5em; top: -25px; }
	.carousel-item h1 { font-size: 24px; }
	.counter_wrap h1 { font-size: 48px; text-align: center; }
}