/* main css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --color1: #FF5E14;
  --color2: #FF7E43;
  --color3: #fabe2c;
  --color4: #20c997;
  --color5: #198754;
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 25px 0px #0000000f;
}

html, body {
	overflow-x: hidden;
}
body {
	background-color: var(--white);
    font-family: "Outfit", sans-serif;
  	font-optical-sizing: auto;
}

section {
	position: relative;
	padding: 100px 0;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	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); }

.btn1 {
    display: inline-block;
    padding: 10px 16px;
    font-size: 16px;
    line-height: 16px;
    transition: .3s;
    position: relative;
    z-index: 1;
    background-color: var(--color1);
    color: var(--white);
    border-radius: 50px;
	border: none;
}
.btn1 span {
    background-color: var(--color2);
    height: 32px;
    width: 32px;
    display: inline-block;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    margin-left: 6px;
}
.btn1:after{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--color5);
    z-index: -1;
    transition: .3s;
    transform: scaleX(0);
}
.btn1:hover:after{
    transform: scaleX(1);
    border-radius: 50px;
}

/* header */
header { 
}
.topbar {
	padding: 0 15px;
	border-radius: 0 0 15px 15px;
}
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 10px;
}
.topbar .item i {
    color: var(--white);
	font-size: 14px;
}
.topbar .item span {
	display: block;
}
.topbar .item a {
	font-size: 16px;
    color: var(--white);
	text-decoration: none;
}
.social {
	display: inline-flex;
	gap:10px;
	padding: 0;
	margin: 0;
}
.social li {
	list-style: none;
}
.social li a {
	display: flex;
	justify-content: center;
	align-items: center;
}
.social li img {
	width: 20px;
	filter: brightness(0) invert(1);
}
.navbar {
	position: sticky;
	position: -webkit-sticky;
	top: 0; /* required */
	/*backdrop-filter: blur(5px);*/
	z-index: 10;
	background-color: var(--white);
	box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}
.navbar-brand {
    font-family:Times New Roman;
	color: var(--color5);
	font-size: 36px;
	font-weight: bold;
	padding:0;
}
.navbar-brand:hover { color: var(--color5); }
.navbar-brand img { height: 80px; }
.nav-item {
	position: relative;
	padding: 0 10px;
}
/*
.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;
	padding: 30px;
}
.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 rgba(255,255,255,0.2);
}
.dropdown-item {
	color: var(--white);
	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: 250px;
	border: none;
	border-radius: 0;
	box-shadow: var(--shadow);
	background-color: var(--color5);
	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 .item {
	position: relative;
}
.owl-slide .item img {
	width: 100%;
	height: calc(100vh - 120px);
	object-fit: cover;
}
.owl-slide .item .desc {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	max-width: 650px;
	padding-left: 80px;
}
.owl-slide .item .desc h1 {
	color: var(--white);
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
	margin-bottom: 25px;
}
.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: fadeInDown;
	animation-delay: 0.5s;
}
.owl-slide .owl-item.active .btn1 {
	animation-name: fadeInUp;
}
.owl-slide .owl-nav {
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.owl-slide .owl-nav > div {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color1);
	color: var(--white);
	border-radius: 50%;
	font-size: 20px;
	opacity: 0.6;
	transition: var(--transition);
}
.owl-slide .owl-nav > div:hover{ opacity: 1;}
.owl-slide .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap:10px;
}
/*********************/
.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: var(--black);
}
.owl-carousel .owl-dots > div.active {
	background-color: var(--color1);
	outline: 1px solid var(--color1);
	outline-offset: 4px;
}
/*********************/
.heading {
	position: relative;
}
.heading span {
	position: relative;
	color: var(--color1);
	padding: 5px 15px 5px 25px;
	font-size: 18px;
}
.heading span:before {
	position: absolute;
	inset: 0;
	content: '';
	background-color: var(--color1);
	border-radius: 30px;
	opacity: 0.1;
}
.heading span:after {
	position: absolute;
	left: 15px;
	top: 9px;
	content: '';
	background-color: var(--color1);
	width: 2px;
	height: 16px;
}
.heading h2 {
	font-size: 48px;
	font-weight: 700;
	color: var(--color5);
	margin: 10px 0;
}
/*********************/
.welcome {
	position: relative;
}
.welcome figure {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.welcome figure img {
	max-width: 260px;
	border-radius: 15px;
}
.welcome figure .img1 {
}
.welcome figure .img2 {
	transform: translateY(50px);
}

/*********************/
.custom2 .item {
	display: flex;
	gap:15px;
	color: var(--white);
	margin: 15px 0;
	background-color: rgba(255,255,255,0.1);
	padding: 30px;
}
.custom2 .item .icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: #fff;
	color: var(--color1);
	flex-shrink: 0;
	border-radius: 50%;
	font-size: 30px;
}
.custom2 .item h4 {
	color: var(--white);
}
.custom2 .item p {
	color: var(--white);
	font-size: 14px;
	margin: 0;
}
/* home products */
.home_products {
	background-size: cover;
}
.home_products .item {
	position: relative;
	overflow: hidden;
	background-color: var(--white);
	color: var(--black);
	padding: 15px;
	border-radius: 15px;
}
.home_products .item:before {
	position: absolute;
	inset: 0;
	content: '';
	background-color: var(--color5);
	height: 0;
	transition: var(--transition);
}
.home_products .item figure {
	position: relative;
	overflow: hidden;
	border-radius: 7px;
}
.home_products .item figure img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}
.home_products .item .desc {
	position: relative;
	z-index: 1;
}
.home_products .item:hover:before {
	height: 100%;
}
.home_products .item:hover h4,
.home_products .item:hover {
	color: var(--white);
}

.owl-arrow .owl-nav > div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color1);
	color: var(--white);
	border-radius: 50%;
	font-size: 20px;
	opacity: 0;
	transition: var(--transition);
}
.owl-arrow .owl-nav > div.owl-prev { left: 0;}
.owl-arrow .owl-nav > div.owl-next { right: 0;}
.owl-arrow:hover .owl-nav > div { opacity: 1;}
.owl-arrow:hover .owl-nav > div.owl-prev { left: -60px;}
.owl-arrow:hover .owl-nav > div.owl-next { right: -60px;}
/*********************/
/* 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-color: rgba(255,255,255,0.2);
	padding: 25px;
	border-radius: 15px;
}
.counter_wrap .item:not(:last-child) {
	border-bottom: 1px solid rgba(255,255,255,0.2);
	margin-bottom: 15px;
}
.counter_wrap .item h1 {
	font-weight: 800;
}
/*********************/
/* whyus */
.whyus { 
	position: relative;
	background-size: cover;
}
.whyus .img { 
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}
.whyus .wrap .item {
	display: flex;
	gap:15px;
	align-items: center;
}
.whyus .wrap .item:not(:last-child) {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}
.whyus .wrap .item .icon {
	position: relative;
	width: 95px;
	height: 95px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	flex-shrink: 0;
	background-color: var(--color1);
}
.whyus .wrap .item .icon img {
	height: 50px;
	filter: brightness(0) invert(1);
}
.whyus .wrap .item p {
	margin-bottom: 0;
}
/*********************/
/* testimonials */
.testimonials {
	background-size: cover;
	padding: 100px 0;
}
.testimonials .item .star {
	position: relative;
	z-index: 1;
	background-color: var(--color5);
	color: var(--color1);
	padding: 5px 10px;
	border-radius: 5px;
	display: inline-block;
	transform: translateY(50%);
}
.testimonials .item .desc {
	position: relative;
	background-color: var(--white);
	padding: 30px;
	border-radius: 15px;
	margin-bottom: 25px;
}
.testimonials .item .desc:after {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	content: '';
	background-color: var(--white);
	width: 30px;
	height: 20px;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	margin-top: -1px;
}
.testimonials .item .desc p {
	margin-bottom: 0;
}
.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_wrap {
	position: relative;
	background-color: #fff;
}

.form1 {}
.wrap-input-8 .input {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: #f5f6fd;
  border: 1px solid #ccc; 
  padding: 7px 14px 9px; 
  transition: 0.4s;
}

.wrap-input-8 .input:focus {
  outline: none;
}

.wrap-input-8 {
  position: relative;
  margin-bottom: 10px;
}

.wrap-input-8 .input ~ .focus-border:before,
.wrap-input-8 .input ~ .focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color1);
  transition: 0.3s;
}
.wrap-input-8 .input ~ .focus-border:after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}
.wrap-input-8 .input ~ .focus-border i:before,
.wrap-input-8 .input ~ .focus-border i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background-color: var(--color1);
  transition: 0.4s;
}
.wrap-input-8 .input ~ .focus-border i:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.wrap-input-8 .input:focus ~ .focus-border:before,
.wrap-input-8 .input:focus ~ .focus-border:after {
  width: 100%;
  transition: 0.3s;
}
.wrap-input-8 .input:focus ~ .focus-border i:before,
.wrap-input-8 .input:focus ~ .focus-border i:after {
  height: 100%;
  transition: 0.4s;
}
/*********************/
.team {
	position: relative;
}
.team .item img {
	width: 100%;
	border-radius: 15px;
}
.team .item .desc {
	width: 90%;
	margin: 0 auto;
	background-color: var(--white);
	padding: 10px;
	border-radius: 10px;
	box-shadow: var(--shadow);
	transform: translateY(-50%);
}
/*********************/

/* footer */
footer {
	background-size: cover;
}
footer h4 {
	position: relative;
	color: #fff;
}
footer .logo {
	height: 40px;
	filter: brightness(0) invert(1);
}
footer h4:after {
	position: relative;
	display: block;
	content: '';
	width:60px;
	height: 3px;
	background-color: var(--white);
	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(--white);
}
footer .social li a {
	width: 40px;
	height: 40px;
	background-color: var(--color4);
	transition: var(--transition);
}
footer .social li a:hover {
	background-color: var(--color1);
}
footer .social li a img {
	filter: brightness(0) invert(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(--color2);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  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(--color4);
  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: 10px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 10px;
  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;
    left:5px;
    bottom:5px;
    z-index:1;
}
.whatsappfix img {
    height:40px;
}
.btn-fix {
    position:fixed;
    top:50%;
    right:0;
    padding:10px 5px;
    transform:rotate(180deg) translateY(50%);
    writing-mode:vertical-lr;
    border-radius: 0 5px 5px 0;
}
.btn-fix span {
    margin:5px 0 0;
    transform:rotate(90deg);
}
.btn-fix:hover:after {
    border-radius: 0 5px 5px 0;
}

/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
    .nav-item { padding:0;}
    .nav-link { padding:10px; border-top:1px solid rgba(0,0,0,0.2);}
    .nav-item.dropdown .dropdown-menu { position:relative; width:100%; display:none;}
    .nav-item.dropdown .dropdown-menu.show { display:block;}
    .dropdown-toggle::after { float:right;}
    .owl-slide .item img { height:200px;}
    .owl-slide .item .desc { padding-left:20px; max-width:80%;}
    .owl-slide .item .desc h1 { font-size:20px;}
    .owl-slide .owl-nav { display:none;}
    .heading h2 { font-size:30px;}
    .welcome figure img { max-width:48%;}
    .btn-fix { font-size:12px; display:flex; align-items:center; gap:5px;}
    .btn-fix span { font-size:11px; height:20px; line-height:20px;width:20px; margin:0;}
    .navbar-brand {    font-size: 25px;}
    .social li img {    width: 16px;}
}


