/* main css */

@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --color1: #3c72fc;
  --color2: #00060c;
  --color3: #0f0d1d;
  --gradient-bg: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
  --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: "Kumbh Sans", sans-serif;
	color: #585858;
	line-height: 28px;
	font-weight: 400;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color3);
}
.text-justify { text-align: justify;}

.bg-1 { background-color: var(--color1); }
.bg-2 { background-color: var(--color2); }
.bg-3 { background-color: var(--color3); }
.bg-grey { background-color: var(--grey); }
.bg-grad1 { background: var(--gradient-bg); }
.bg-grad2 { background: radial-gradient(circle, rgba(28,40,90,1) 0%, rgba(15,13,29,1) 100%); }

.btn1 {
	display: inline-block;
	padding: 15px 25px;
	background: var(--gradient-bg);
	font-weight: 600;
	color: var(--white);
	transition: var(--transition);
	text-transform: capitalize;
	position: relative;
	z-index: 1;
	overflow: hidden;
	border:none;
}
.btn1 i {
	margin-left: 8px;
	transition: var(--transition);
}
@media (max-width: 575px) {
	.btn1 i {
	  margin-left: 3px;
	  font-size: 12px;
	}
}
@media (max-width: 575px) {
	.btn1 {
	  padding: 8px 18px;
	  font-size: 14px;
	}
}
.btn1::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 0;
	content: "";
	background-color: var(--color3);
	z-index: -1;
	transition: var(--transition);
}
.btn1::before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 0;
	content: "";
	background-color: var(--color3);
	z-index: -1;
	transition: var(--transition);
}
.btn1:hover {
	color: var(--white);
}
.btn1:hover::before {
	height: 100%;
}
.btn1:hover::after {
	height: 100%;
}
.btn1:hover i {
	transform: translate(5px);
}

/* header */
header { 
	display: unset; /* required for sticky header */
}
.topbar {  }
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 15px;
}
.topbar .item i {
    color: var(--white);
	font-size: 14px;
}
.topbar .item span {
	display: block;
}
.topbar .item a {
	font-size: 14px;
	color: var(--white);
	text-decoration: none;
}
.social li {
	display: inline-block;
	margin: 0 5px;
}
.social li img {
	width: 20px;
	filter: brightness(0) invert(1);
}
.navbar {
	z-index: 10;
	background-color: var(--white);
	box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}
.navbar::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    background: linear-gradient(270deg, #3c72fc 6.32%, #00060c 216.42%);
    height: 100%;
    content: "";
    z-index: -1;
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}

.navbar.fixed-top {
	background: var(--white) !important;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
	animation: slide-down 0.7s;
}
@keyframes slide-down {
	0% {
	  transform: translateY(-100%);
	}
	100% {
	  transform: translateY(0);
	}
}

.navbar-brand {
	font-size: 36px;
	font-weight: bold;
	color: var(--white);
}
.navbar-brand img { height: 60px; }
.nav-item {
	position: relative;
	padding: 0 10px;
}
.nav-link {
	color: var(--color3);
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	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 #e3e3e3;
}
.dropdown-item {
	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: 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;
	font-weight: 700;
}
/*********************/
/* slider */
.owl-slide .item {
	position: relative;
}
.owl-slide .item .slide-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	z-index: -2;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: scale(1);
	-webkit-transition: all 9s ease-out 0s;
	-moz-transition: all 9s ease-out 0s;
	-ms-transition: all 9s ease-out 0s;
	-o-transition: all 9s ease-out 0s;
	transition: all 9s ease-out 0s;
}
.owl-slide .owl-item.active .item .slide-bg {
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	transform: scale(1.3);
}
.banner__shape-left1 {
	position: absolute;
	top: 30px;
	left: 0;
}
@media (max-width: 575px) {
	.banner__shape-left1 {
	  display: none;
	}
}
.banner__shape-left2 {
	position: absolute;
	top: 60px;
	left: 0;
}
@media (max-width: 575px) {
	.banner__shape-left2 {
	  display: none;
	}
}
.banner__shape-left3 {
	position: absolute;
	bottom: 0px;
	left: 0;
}
.banner__shape-right1 {
	position: absolute;
	bottom: 0px;
	right: 0;
}
@media (max-width: 767px) {
	.banner__shape-right1 {
	  display: none;
	}
}
.banner__shape-right2 {
	position: absolute;
	bottom: 0px;
	right: 0;
}
@media (max-width: 767px) {
	.banner__shape-right2 {
	  display: none;
	}
}
.banner__right-line1, .banner__right-line4, .banner__right-line3, .banner__right-line2 {
	position: absolute;
	top: -65px;
	right: 0;
}
@media (max-width: 575px) {
	.banner__right-line1, .banner__right-line4, .banner__right-line3, .banner__right-line2 {
	  display: none;
	}
}
@media (max-width: 575px) {
	.banner__right-line2 {
	  display: none;
	}
}
@media (max-width: 575px) {
	.banner__right-line3 {
	  display: none;
	}
}
@media (max-width: 575px) {
	.banner__right-line4 {
	  display: none;
	}
}
.banner__content {
	position: relative;
	max-width: 770px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: self-start;
	height: 100vh;
}
.banner__content h1 {
	font-size: 60px;
	font-weight: 700;
	line-height: 70px;
	margin-bottom: 25px;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.owl-slide .owl-item.active h1,
.owl-slide .owl-item.active .btn1,
.owl-slide .owl-item.active .banner__right-line1,
.owl-slide .owl-item.active .banner__right-line2,
.owl-slide .owl-item.active .banner__right-line3,
.owl-slide .owl-item.active .banner__right-line4,
.owl-slide .owl-item.active .banner__shape-left1,
.owl-slide .owl-item.active .banner__shape-left2,
.owl-slide .owl-item.active .banner__shape-left3 {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: slideInRight;
	animation-delay: 0.5s;
}
.owl-slide .owl-item.active .banner__right-line1,
.owl-slide .owl-item.active .btn1 {
	animation-delay: 0.9s;
}
.owl-slide .owl-item.active .banner__right-line2 {
	animation-delay: 0.7s;
}
.owl-slide .owl-item.active .banner__right-line3 {
	animation-delay: 0.5s;
}
.owl-slide .owl-item.active .banner__right-line4 {
	animation-delay: 0.3s;
}
.owl-slide .owl-item.active .banner__shape-left1 {
	animation-name: slideInLeft;
	animation-delay: 0.9s;
}
.owl-slide .owl-item.active .banner__shape-left2 {
	animation-name: slideInLeft;
	animation-delay: 0.3s;
}
.owl-slide .owl-item.active .banner__shape-left3 {
	animation-name: slideInLeft;
	animation-delay: 0.5s;
}

.owl-slide .owl-nav > div {
	position: absolute;
	top: 40%;
	font-size: 3em;
	color: #fff;
	padding: 10px;
}
.owl-slide .owl-nav > div.owl-prev { left: 0;}
.owl-slide .owl-nav > div.owl-next { right: 0;}
.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:15px;
	margin-top: 30px;
}
.owl-slide.owl-carousel .owl-dots > div {
	background-color: #fff;
}
.owl-slide.owl-carousel .owl-dots > div.active {
	background-color: var(--color1);
	outline: 1px solid rgba(255,255,255, 0.3);
}
.owl-carousel .owl-dots > div {
	width: 8px;
	height: 8px;
	border-radius: 8px;
	background-color: var(--color3);
}
.owl-carousel .owl-dots > div.active {
	background-color: var(--color1);
	outline: 1px solid var(--color1);
	outline-offset: 4px;
}
/*********************/
.breadcrumb {
    position: relative;
    overflow:hidden;
}
.breadcrumb .shape2 {
    position: absolute;
    left: 0;
    top: 0;
}
.breadcrumb .shape3 {
    position: absolute;
    right: 0;
    top: 0;
}
/*********************/
.heading {}
.heading span {
	color: var(--color1);
	font-size: 18px;text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

/*********************/
/* 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;
}

/*********************/
.welcome {
	position: relative;
}
.welcome figure {
	position: relative;
}
.welcome figure .img1 {
	position: relative;
	width: 70%;
}
.welcome figure .img2 {
	position: absolute;
	right: 0;
	bottom: 50px;
	width: 250px;
	border: 10px solid #fff;
	box-shadow: var(--shadow);
}
.welcome figure .img3 {
	position: absolute;
	top: 20px;
	right: 30px;
	width: 220px;
	z-index: -1;
}
.welcome .btn {
	background-color: #efcda5;
	border-color: #666;
	font-weight: 500
}
.welcome .btn:hover {
	background-color: #111;
	border-color: #111;
	color: #fff;
}

/*********************/
.custom2 .item {
	display: flex;
	gap:15px;
	color: var(--white);
}
.custom2 .item .icon {
	width: 60px;
	flex-shrink: 0;
}
.custom2 .item .icon img {
	width: 100%;
	filter: brightness(0) invert(1);
}
.custom2 .item h4 {
	font-size: 36px;
	font-weight: 700;
	color: var(--white);
	margin: 0;
}
.custom2 .item p {
	color: var(--white);
	font-size: 16px;
	margin: 0;
}
/* home products */
.home_products {
	background-size: cover;
}
.home_products .owl-carousel .owl-stage-outer {
	overflow: visible;
}
.home_products .item {
	position: relative;
	overflow: hidden;
}
.home_products .item figure {
	position: relative;
	overflow: hidden;
}
.home_products .item figure:before {
	background: linear-gradient(0deg, #0f0d1d 0%, rgba(15, 13, 29, 0) 125%);
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.home_products .item figure img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}
.home_products .item h4 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px 20px;
	font-weight: 600;
	text-shadow: 5px 5px 15px #111;
	transition: 1s;
}
.home_products .item .btn2 {
	position: absolute;
	bottom: -40px;
	right: 15px;
	background: var(--gradient-bg);
	color: var(--white);
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: block;
	text-align: center;
	opacity: 0;
	transition: var(--transition);
}
.home_products .owl-item.center .item .btn2 {
	bottom: 15px;
	opacity: 1;
}
.home_products .item:hover .btn2 {
	bottom: 15px;
	opacity: 1;
}
/*********************/
.innerproduct .item {
    box-shadow: var(--shadow);
    background-color: var(--white);
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
    transition:var(--transition);
}
.innerproduct .item figure {
    overflow: hidden;
}
.innerproduct .item figure img {
    aspect-ratio:1/1;
    transition:var(--transition);
}
.innerproduct .item .desc h4 {
    font-weight:700;
}
.innerproduct .item .btn3 {
    color:var(--color1);
    transition:var(--transition);
}
.innerproduct .item .btn3 i {
    transition:var(--transition);
}
.innerproduct .item:hover {
    background-color: var(--color1);
}
.innerproduct .item:hover figure img {
    transform:scale(1.1);
}
.innerproduct .item:hover .desc h4 {
    color:var(--white);
}
.innerproduct .item:hover .btn3 {
    color:var(--white);
    font-weight:600;
    opacity:0.5;
}
.innerproduct .item:hover .btn3 i {
    margin-left:8px;
}
/*********************/
/* 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 {}
.testimonials .item {
	background-color: #fff;
	padding: 30px;
}
.testimonials .item img {
	width: 100px;
	height: 100px;
	border-radius: 100px;
	border:1px solid #eee;
}
.testimonials .item h4 {
	font-weight: bold;
}
.testimonials .item p {
	margin: 0;
}
.testimonials .item .coma {
	position: absolute;
	top: 0;
	right: 30px;
}
.testimonials .item .fa-star {
	color: #e6b800;
}
.testimonials .owl-carousel .owl-nav {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap:10px;
	margin-top: 30px;
}
.testimonials .owl-carousel .owl-nav:before,
.testimonials .owl-carousel .owl-nav:after {
	width: calc(50% - 65px);
	height: 1px;
	content: '';
	background-color: var(--color1);
}
.testimonials .owl-carousel .owl-nav > div {
	width: 50px;
	height: 50px;
	line-height: 48px;
	border-radius: 50%;
	text-align: center;
	border: 1px solid var(--color1);
	color: var(--color1);
	font-size: 20px;
	transition: var(--transition);
}
.testimonials .owl-carousel .owl-nav > div:hover {
	background-color: var(--color1);
	color: 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;
	padding: 100px 0;
}
.enquiry_wrap .bg-img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 30%;
	background-size: cover;
	background-position: center;
}
.enquiry_wrap .bg-img:before {
	position: absolute;
	top: 0;
	right: 0;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 200px 200px 0;
	border-color: transparent #eee transparent transparent;
	content: '';
}

.form1 {}
.form1 .grid_view {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
	grid-column-gap: 15px;
}
.form1 .btn2 {
	padding: 15px 20px;
	background-color: var(--color3);
	color: var(--white);
	font-weight: 600;
	width: 100%;
	text-align: center;
	border: none;
	transition: var(--transition);
}
.form1 .btn2:hover {
	opacity: 0.9;
}
.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: 15px;
}
.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(--color3);
  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(--color3);
  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;
}

/*********************/
/* whyus */
.whyus { 
	padding: 100px 0;
}
.whyus .heading img,
.form1 .heading img {
	filter: brightness(0) invert(1);
}
.service__icon {
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	border-radius: 50%;
	background-color: rgba(60, 114, 252, 0.1);
	border-radius: 0px;
	transition: var(--transition);
}
.service__icon img {
	width: 50px;
}
.service__item {
	position: relative;
	z-index: 1;
	background-color: var(--white);
	padding: 30px 20px;
	box-shadow: var(--shadow);
}
.service__item h4 {
	font-size: 18px;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 10px;
}
.service__item p {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 0;
	transition: var(--transition);
}
.service__item::after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	width: 0;
	height: 100%;
	background: var(--gradient-bg);
	transition: var(--transition);
	z-index: -1;
}
.service__item.active .service__icon {
	background-color: var(--white);
}
.service__item.active .service-shape {
	opacity: 0.5;
}
.service__item.active h4 {
	color: var(--white);
}
.service__item.active p {
	color: var(--white);
	opacity: 90%;
}
.service__item.active::after {
	width: 100%;
	right: unset;
	left: 0;
}

/*********************/
.custom1 .item {
    border:1px solid #fff;
    border-radius:10px;
    padding:10px;
    margin:10px 0;
}
/*********************/
.team {
	position: relative;
}
.team .item {
	position: relative;
	background: var(--white);
	padding: 15px;
	margin-bottom: 25px;
	border-radius: 60px 0;
	overflow: hidden;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	transition: all .5s ease-in-out;
}
.team .item img{
	border:1px solid #eee;
	border-radius: 50px 0;
	margin-bottom: 15px;
}
.team .item h5 {
	font-size: 22px;
	margin-top: 5px;
	margin-bottom: 5px;
	text-transform: capitalize;
}
.team .item span {
	font-size: 13px;
	font-weight: 500;
	color: var(--color1);
	text-transform: uppercase;
	letter-spacing: 2px;
}
/*********************/
.process {
	counter-reset: process;
}
.process .image {
	max-width: 150px;
	margin: 0 auto;
	position: relative;
	padding: 10px;
	margin-bottom: 15px;
}
.process .image figure {
	border-radius: 50%;
	background-color: var(--color3);
	padding: 30px;
	margin: 0 auto;
}
.process .image figure img {
	width: 100%;
	filter: brightness(0) invert(1);
}
.process .image::after {
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: 1px dashed var(--color1);
	content: "";
	border-radius: 50%;
	position: absolute;
	animation: rotate 20s linear infinite;
}
.process .image .process-number {
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 1;
}
.process .image .process-number:before {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	transition: var(--transition);
	background: var(--gradient-bg);
	color: var(--white);
	font-size: 18px;
	counter-increment: process;
	content: "0" counter(process) "";
}
.process .item {
	position: relative;
}
.process .item h4 {
	font-weight: bold;
}
@media (min-width: 992px) {
	.process .item {
	  margin-bottom: 0px;
	}
}
.process .item .process-arry {
	position: absolute;
	top: 18%;
	right: -14%;
}
.process [class*='col-']:last-child .item .process-arry {
	display: none;
}
@media (max-width: 991px) {
	.process .item .process-arry {
	  top: unset;
	  right: unset;
	  bottom: -110px;
	  left: 40%;
	}
	.process .item .process-arry img {
	  transform: rotate(90deg);
	}
}
/*********************/

/* footer */
footer {
	position: relative;
	overflow: hidden;
}
footer .footer-top {
	padding: 100px 0;
}
.footer__shape-solid-left {
	position: absolute;
	top: 0;
	left: 0;
}
.footer__shape-regular-left {
	position: absolute;
	top: 30px;
	left: 0;
}
@media (max-width: 767px) {
	.footer__shape-regular-left {
	  display: none;
	}
}
.footer__shape-solid-right {
	position: absolute;
	top: 0;
	right: 0;
}
@media (max-width: 767px) {
	.footer__shape-solid-right {
	  display: none;
	}
}
.footer__shape-regular-right {
	position: absolute;
	top: 30px;
	right: 0;
}
@media (max-width: 767px) {
	.footer__shape-regular-right {
	  display: none;
	}
}
.footer__shadow-shape {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%);
	animation: footer__shadow 10s linear infinite alternate;
}

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 {
	filter: brightness(0) invert(1);
}
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.2);
}
@keyframes sway {
	0% {
	  transform: translateX(-20px);
	}
	100% {
	  transform: translateX(0px);
	}
}
.sway__animation {
	animation: sway 3s linear infinite alternate;
}
  
@keyframes swayX {
	0% {
	  transform: translateX(20px);
	}
	100% {
	  transform: translateX(0px);
	}
}
.sway__animationX {
	animation: swayX 3s linear infinite alternate;
}
  
@keyframes footer__shadow {
	0% {
	  margin-left: -200px;
	}
	100% {
	  margin-right: -200px;
	}
}
@keyframes sway_Y {
	0% {
	  transform: translateY(0px);
	}
	100% {
	  transform: translateY(20px);
	}
}
.sway_Y__animation {
	animation: sway_Y 3s linear infinite alternate;
}
  
@keyframes sway_YY {
	0% {
	  transform: translateY(0px);
	}
	100% {
	  transform: translateY(-20px);
	}
}
.sway_Y__animationY {
	animation: sway_YY 3s linear infinite alternate;
}
  
@keyframes rotate {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
}
.animation__rotate {
	animation: rotate 40s linear infinite;
}
  
@keyframes rotateY {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(-360deg);
	}
}
  .animation__rotateY {
	animation: rotateY 40s linear infinite;
}

@keyframes bobble {
	0% {
	  transform: translateY(0) scale(1);
	}
	100% {
	  transform: translateY(-20px) scale(1.1);
	}
}
.bobble__animation {
	animation: bobble 3s ease-in-out infinite alternate;
}
  
@-webkit-keyframes video-animation {
	0% {
	  transform: scale(1);
	}
	50% {
	  transform: scale(1.5);
	}
	100% {
	  opacity: 0;
	  transform: scale(2);
	}
}
@keyframes video-animation {
	0% {
	  transform: scale(1);
	}
	50% {
	  transform: scale(1.5);
	}
	100% {
	  opacity: 0;
	  transform: scale(2);
	}
}

.whatsappfix {
	position: fixed;
	background-color: #16BE45;
	font-size: 14px;
	color: #fff;
	font-weight: 500;
	padding: 8px 15px;
	border-radius: 50px;
	bottom: 20px;
	left: 20px;
	z-index: 10;
	display: flex;
	align-items: center;
	gap:10px;
}
.whatsappfix i {
	font-size: 1.8em;
}

.scroll-up {
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px #e3e3e3;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	position: fixed;
	right: 25px;
	bottom: 35px;
	height: 50px;
	width: 50px;
	transition: var(--transition);
}
.scroll-up::after {
	position: absolute;
	font-family: "FontAwesome";
	content: "\f062";
	text-align: center;
	line-height: 50px;
	font-weight: 700;
	font-size: 18px;
	color: var(--color1);
	left: 0;
	top: 0;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	z-index: 1;
	transition: var(--transition);
}
.scroll-up svg path {
	fill: none;
}
.scroll-up svg.scroll-circle path {
	stroke: var(--color1);
	stroke-width: 4px;
	box-sizing: border-box;
	transition: var(--transition);
}
.scroll-up.active-scroll {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/************************/
#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;}

/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
    .navbar::after { width:100%; clip-path:none;}
    .navbar-collapse { margin-top:20px;}
    .nav-link { color:#fff; padding:10px; border-top:1px solid rgba(255,255,255,0.2);}
    .nav-item.dropdown .dropdown-menu { position:relative; width:100%; display:none;}
    .nav-item.dropdown .dropdown-menu.show { display:block;}
	.banner__content { height: 200px;}
	.banner__content h1 { font-size: 24px; line-height: initial; margin:0;}
	.banner__content .btn1 { display:none;}
	.owl-slide .owl-nav > div { font-size: 1em;}
	.welcome figure .img2 { width:170px; bottom:30px;}
	.welcome figure .img3 { width:150px;}
	.process .item .process-arry img { transform: rotate(90deg) translateX(-50px); height: 40px;}
	.enquiry_wrap { padding:30px 0;}
	.breadcrumb img { height:100px;}
    .social li img {	width: 16px;}
    .navbar-brand {    font-size: 30px;}
}


