/* main css */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Heebo:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --body: #ededed;
  --color1: #ff6600;
  --color2: #24c9ca;
  --color3: #ffdb4d;
  --color4: #595959;
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 25px 0px #0000000f;
}

html, body {
	overflow-x: hidden;
}
body {
	background-color: var(--body);
  	font-family: "DM Sans", serif;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  	font-family: "Jost", serif;
	color: var(--color1);
}

.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: var(--color5);
}
.bg-overlay.white-overlay:before {
	background-color: #fff;
}
.bg-overlay.black-overlay:before {
	background-color: #000;
}
.bg-overlay .container {
	position: relative;
	z-index: 1;
}

.text-justify { text-align: justify; }

.bg-1 { background-color: var(--color1); }
.bg-2 { background-color: var(--color2); }
.bg-3 { background-color: var(--color3); }
.bg-4 { background-color: var(--color4); }
.bg-5 { background-color: var(--color5); }
.bg-grey { background-color: var(--grey); }

.container { max-width: 980px;}
@media (max-width: 1024px) {
	.container { max-width: 100%; padding: 0;}
}

/* header */
header > .container {
	position: relative; 
}
.topbar {
	position: relative;
}
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 10px;
}
.topbar .item i {
    color: var(--white);
}
.topbar .item span {
	display: block;
}
.topbar .item a {
	font-size: 15px;
    color: var(--white);
	text-decoration: none;
}
.social li {
	display: inline-block;
	margin: 0 5px;
}
.social li img {
	width: 20px;
	filter: brightness(0) invert(1);
}
.logo {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 15px;
}
.logo img {
	height: 100px;
}
.logo h1 {
	font-size: 30px;
	font-weight: 800;
	color: var(--black);
}
.logo span {
	font-size: 18px;
	color: var(--black);
}

.navbar {
	position: relative;
	/*backdrop-filter: blur(5px);*/
	z-index: 10;
	/* background-color: var(--color1); */
	/* box-shadow: 0 10px 10px rgba(0,0,0,0.2); */
	/* padding: 0 15px; */
}
.navbar-brand {
	font-size: 36px;
	font-weight: 900;
	color: var(--black);
}
.navbar-brand img { height: 60px; }
.nav-item {
	position: relative;
	padding: 0 5px;
}
/*
.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: var(--black);
	font-size: 15px;
	font-weight: 500;
	/* text-transform: uppercase; */
}
.navbar-expand-sm .navbar-nav .nav-link {
	padding: 10px 15px;
}
.nav-item:hover .nav-link {
	color: var(--color3);
}
.navbar-toggler { border:none;}
.navbar-toggler:focus { box-shadow:none;}
.navbar-toggler-icon { filter: brightness(0) invert(1);}
.nav-item.dropdown li:not(:last-child) {
	border-bottom: 1px solid #e3e3e3;
}
.dropdown-item {
	font-size: 14px;
	background-color: var(--color3);
	padding: 10px 20px;
	transition: var(--transition);
}
.dropdown-item:hover {
	color: var(--color1);
	background-color: var(--white);
	padding-left: 25px;
}
.dropdown-toggle::after {
	content: '\f107';
	font-family:"FontAwesome";
	border: none;
	vertical-align: bottom;
}
.nav-item.dropdown .dropdown-menu {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 99;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 300px;
	border: 1px solid #eaecf0;
	border-radius: 0;
	box-shadow: var(--shadow);
	background-color: var(--white);
	transition: var(--transition);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
}
.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.nav-item.dropdown:hover .dropdown-menu li a {
	position: relative;
}
/*********************/
/* slider */
.owl-slide {
	border: 5px solid var(--color4);
}
.owl-slide .item {
	position: relative;
}
.owl-slide .item img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}
.owl-slide .item .desc {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: start;
	max-width: 650px;
	padding: 30px;
}
.owl-slide .item .desc h1 {
	color: var(--white);
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
	margin-bottom: 0;
}
.owl-slide .owl-item.active h1,
.owl-slide .owl-item.active .btn1 {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInUp;
	animation-delay: 0.5s;
}
.owl-slide .owl-nav > div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--white);
	color: var(--color2);
	outline: 1px solid var(--color2);
	outline-offset: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: var(--transition);
}
.owl-slide .owl-nav > div.owl-prev { left: 25px;}
.owl-slide .owl-nav > div.owl-next { right: 25px;}
.owl-slide .owl-nav > div:hover {
	outline-offset: 0;
	background-color: var(--color2);
	color: var(--white);
}
.owl-slide .owl-dots {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	justify-content: center;
	gap:10px;
}
.owl-slide.owl-carousel .owl-dots > div {
	background-color: var(--color2);
}
/*********************/
.owl-carousel .owl-dots {
	display: flex;
	justify-content: center;
	gap:10px;
	margin-top: 30px;
}
.owl-carousel .owl-dots > div {
	width: 7px;
	height: 7px;
	border-radius: 7px;
	background-color: #111;
}
.owl-carousel .owl-dots > div.active {
	background-color: var(--color1);
	outline: 1px solid var(--color1);
	outline-offset: 4px;
}
/*********************/
.btn1 {
	position: relative;
	display: inline-block;
	background-color: var(--color1);
	color: var(--white);
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	overflow: hidden;
	transition: var(--transition);
}
.btn1::before {
	position: absolute;
	inset: 0;
	background-color: var(--color1);
	content: '';
	transform: translateX(-100%);
	transition: var(--transition);
}
.btn1 span {
	position: relative;
	z-index: 1;
}
.btn1:hover::before {
	transform: translateX(0);
}
/*********************/
.heading {
	display: flex;
	flex-direction: column;
	gap:5px;
	margin-bottom: 15px;
}
.heading span {
	font-size: 24px;
	font-weight: 600;
	color: var(--color2);
}
.heading h2 {
	font-size: 40px;
	font-weight: 600;
	color: var(--color1);
}
.heading .line {
	position: relative;
	display: inline-flex;
	gap:10px;
}
.heading .line:before {
	content: '';
	width: 40px;
	height: 3px;
	border-radius: 4px;
	background-color: var(--color2);
}
.heading .line:after {
	content: '';
	width: 20px;
	height: 3px;
	border-radius: 4px;
	background-color: var(--color2);
}
/*********************/
.navbar-bottom .btn1 {
	background-color: red;
}
.news {
	display: flex;
	align-items: center;
}
.news.text1 {
	color: blue;
}
.news.text2 {
	color: red;
}
.blink {
  animation: blinker 1s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.news > span {
	background-color: var(--color1);
	color: var(--white);
	padding: 10px;
	white-space: nowrap;
}
.news marquee {
	display: flex;
	gap:30px;
}
.news p {
	margin: 0;
}
.news2 {
	position: relative;
	padding: 5px;
}
.news2:before {
	position: absolute;
	inset: 0;
	content: '';
	background-image: url('../upload/logo.png');
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.1;
}
.news2 > h4 {
	background-color: var(--color1);
	color: var(--white);
	text-align: center;
	padding: 5px;
	margin: 0;
}
.news2 marquee {
	display: block;
	height: 350px;
	padding: 0 10px;
}
/*********************/
.welcome {
	position: relative;
}
.welcome figure {
	position: relative;
	margin: 0;
	border-radius: 15px;
	overflow: hidden;
}
.welcome figure .img1 {
	height: 250px;
}
.welcome figure .img2 {
	height: 200px;
}
.welcome figure img {
	object-fit: cover;
	transition: var(--transition);
}
.welcome figure:hover img {
	transform: scale(1.1);
}
.about-img {
	width: 100%;
	border-radius: 15px;
	border: 4px ridge var(--color1);
}
/* home products */
.home_products {
	background-size: cover;
}
.home_products .item {
	position: relative;
}
.home_products .item figure {
	position: relative;
}
.home_products .item figure:before {
	position: absolute;
	inset: 0;
	content: '';
	outline: 2px dashed var(--color2);
	outline-offset: 5px;
	border-radius: 50%;
}
.home_products .item figure span {
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,0,0.5);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(0);
	transition: var(--transition);
}
.home_products .item figure span i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: var(--color3);
	color: var(--white);
	border-radius: 50%;
}
.home_products .item figure img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 50%;
}
.home_products .item .btn1 {
	border-radius: 30px;
}
.home_products .item:hover figure:before {
	-webkit-animation: rotating 10s linear infinite;
	-moz-animation: rotating 10s linear infinite;
	-ms-animation: rotating 10s linear infinite;
	-o-animation: rotating 10s linear infinite;
	animation: rotating 10s linear infinite;
}
.home_products .item:hover figure span {
	transform: scale(1);
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
	from {
	  -webkit-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	to {
	  -webkit-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
}
@keyframes rotating {
	from {
	  -ms-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	to {
	  -ms-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -webkit-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
}
/*********************/
/* 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;
}
/*********************/
/* counter */
.counter_wrap {
	background-size: cover;
	background-attachment: fixed;
}
.counter_wrap h1 {
	font-size: 60px;
	font-weight: 700;
	color: #efcda5;
}
/*********************/
/* testimonials */
.testimonials .item {
	background-color: var(--white);
	padding: 30px;
	border-radius: 5px;
	border: 1px solid var(--color2);
}
.testimonials .item .thumb {
	display: flex;
	align-items: center;
	gap: 10px;
}
.testimonials .item .thumb img {
	width: 70px;
	height: 70px;
	border-radius: 70px;
	border:1px solid var(--grey);
}
.testimonials .item .quote {
	width: 60px;
	height: 60px;
}
/*********************/
.process {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 90%;
}
.process .item {
	perspective: 1000px;
}
.process .item figure {
	position: relative;
	background-color: var(--color4);
	width: 140px;
	height: 140px;
	border-radius: 5px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.6s;
	transform-style: preserve-3d;
	overflow: hidden;
}
.process .item figure img {
	width: 70px;
	filter: drop-shadow(0 1000px 0 var(--color2));
	transform: translateY(-1000px);
}
.process .item:hover figure {
	background-color: var(--color2);
	transform: rotateY(360deg);
}
.process .item:hover figure img {
	filter: drop-shadow(0 1000px 0 var(--white));
}
/* 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_wrap {
	position: relative;
}
.enquiry_wrap img {
	aspect-ratio:3/2.5;
}

.form1 {}
.form1 .form-group {
  position: relative;
  margin-bottom: 15px;
}
.form1 .form-group .fa {
	position: absolute;
	top: 12px;
	right: 12px;
	opacity: 0.5;
}
.form1 .form-group .input {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: #fff;
  border: 1px solid #ccc; 
  padding: 7px 14px 9px; 
  transition: 0.4s;
}
.form1 .form-group .input:focus {
  outline: none;
}
.form1 .form-group .input ~ .focus-border:before,
.form1 .form-group .input ~ .focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color1);
  transition: 0.3s;
}
.form1 .form-group .input ~ .focus-border:after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}
.form1 .form-group .input ~ .focus-border i:before,
.form1 .form-group .input ~ .focus-border i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background-color: var(--color1);
  transition: 0.4s;
}
.form1 .form-group .input ~ .focus-border i:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.form1 .form-group .input:focus ~ .focus-border:before,
.form1 .form-group .input:focus ~ .focus-border:after {
  width: 100%;
  transition: 0.3s;
}
.form1 .form-group .input:focus ~ .focus-border i:before,
.form1 .form-group .input:focus ~ .focus-border i:after {
  height: 100%;
  transition: 0.4s;
}

.contactinfo {
	padding: 30px;
	border-radius: 50px 50px 50px 10px;
}
.contactinfo .item {
	display: flex;
	color: var(--white);
	gap: 15px;
	align-items: center;
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px dashed rgba(255,255,255,0.2);
}
.contactinfo .item i {
	font-size: 21px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 4px;
	background-color: var(--color1);
	text-align: center;
}
.contactinfo .item h4 {
	font-size: 18px;
	color: var(--white);
	margin-bottom: 0;
}
.contactinfo .item p {
	font-size: 16px;
	margin-bottom: 0;
}
/*********************/
/* whyus */
.whyus {}
.whyus .item {
	background-color: var(--white);
	padding: 20px;
	border-top: 4px solid var(--color3);
	border-radius: 20px;
	height: 100%;
}
.whyus .item figure {
	width: 60px;
	overflow: hidden;
	flex-shrink: 0;
	transition: var(--transition);
}
.whyus .item figure img {
	width: 100%;
	filter: drop-shadow( 0 1000px 0 var(--color3));
	transform: translateY(-1000px);
}
.whyus .item:hover figure {
	transform: rotateY(180deg);
}
.whyus .wrap {
	border-top: 4px solid var(--color1);
	border-radius: 20px;
}
.whyus .wrap .list-item:not(:first-child):before {
    display: block;
    width: 100%;
    height: 1px;
    content: '';
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    margin: 10px 0;
}
.whyus .list-item > div {
	display: flex;
	justify-content: space-between;
}
.whyus .list-item h1 {
	font-size: 48px;
	font-weight: 700;
	color: var(--white);
}
.whyus .list-item img {
	height: 60px;
	filter: brightness(0) invert(1);
}
.whyus .list-item p {
	font-size: 18px;
	color: var(--white);
	margin: 0;
}
/*********************/
.custom1 .item {
    border:1px solid #fff;
    border-radius:10px;
    padding:10px;
    margin:10px 0;
}
.team {
	position: relative;
	background-size: cover;
	background-attachment: fixed;
}
.team:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	background-color: #111;
	opacity: 0.5;
}
.team .container-fluid {
	position: relative;
	z-index: 1
}
.team img {
	border-radius: 15px;
}

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

/* footer */
footer {
	background-size: cover;
}
footer h4 {
	position: relative;
	color: #111;
}
footer .logo {
	height: 40px;
	filter: brightness(0) invert(1);
}
footer h4:after {
	position: relative;
	display: block;
	content: '';
	width:60px;
	height: 3px;
	background-color: var(--color1);
	margin: 20px 0;
}
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: var(--black);
}
footer .social li a {
	display: flex;
	width: 40px;
	height: 40px;
	border: 2px solid #111;
	align-items: center;
	justify-content: center;
}
footer .social li a img {
	filter: brightness(1) invert(0);
}
.footer-bottom {
	border-top: 1px solid rgba(0,0,0,0.1);
}

.call-fixed {
  position: fixed;
  box-shadow: 0px 0px 10px #e0e0e0;
  background: #fff;
  padding: 10px;
  border-radius: 50px;
  bottom: 25px;
  left: 25px;
  z-index: 10;
}
.call-fixed a {
  display: block;
  margin: 10px 0;
}

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}
.scroll-btn i {
  display: inline-block;
  background-color: var(--color1);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
}
.scroll-btn:before {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed var(--color1);
  transition: all ease 0.4s;
  animation: spin 13s infinite linear;
}
.scroll-btn:focus i, .scroll-btn:hover i {
  background-color: var(--black);
  color: var(--white);
}
.scroll-btn:focus:before, .scroll-btn:hover:before {
  border-color: var(--black);
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/************************/
#google_translate_element select {
    display:inline-block;
    width:140px;
    height:initial;
    padding:5px;
    color:#111;
    background-position: right 10px center;
    border-radius:3px;
    border:1px solid #ddd;
}
.goog-te-gadget { font-size: 0 !important;}
#google_translate_element span { display:none;}

.whatsappfix {
	position: fixed;
	bottom: 5px;
	left:5px;
	z-index: 1;
}
.whatsappfix img {
	height: 40px;
}
/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
}