/* main css */

/*====================
1. Google fonts
======================*/

@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

:root {
	--body-font: 'Roboto', sans-serif;
	--heading-font: 'Yantramanav', sans-serif;
	--white: #fff;
	--black: #000;
	--grey: #eee;
	--color1: #006738;
	--color2: #00adef;
	--color3: #757F95;
	--color4: #012758;
	--color5: #19232B;
}

html, body {
	height: auto;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	box-sizing: border-box;
}
body {
	font-family: var(--body-font);
	font-style: normal;
	font-size: 16px;
	font-weight: normal;
	color: var(--black);
	line-height: 1.8;
	background-color: var(--white);
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	font-weight: 600;
	font-family: var(--heading-font);
	line-height: 1;
	color: var(--color5);
}

.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;
	position: relative;
	font-size: 14px;
	color: var(--white);
	padding: 14px 20px;
	transition: all .5s ease-in-out;
	text-transform: uppercase;
	border-radius: 50px 50px 50px 0;
	font-weight: 600;
	letter-spacing: 1px;
	cursor: pointer;
	text-align: center;
	border: none;
	background: var(--color2);
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	z-index: 1;
	overflow: hidden;
}
.btn1:before {
	content: "";
	height: 300px;
	width: 300px;
	background:  var(--color1);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) scale(0);
	transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: -1;
}
.btn1:hover {
	color: var(--white);
}
.btn1:hover:before {
	transform: translateY(-50%) translateX(-50%) scale(1);
}
.btn1 i {
	margin-left: 5px;
}
.btn1 span {
	margin-right: 5px;
}
.btn2{
	background: var(--white);
	color: var(--dark);
}
.btn2:before{
	background: var(--color1);
}
.btn2:hover{
	color: var(--white);
}

.element {
	animation: slideOutLeft 1s forwards;
	animation-timeline: scroll();
}

/* header */
header { 
	display: unset; /* required for sticky header */
}
.topbar {
	position: relative;
	z-index: 1;
}
.topbar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: -1px;
    width: 30%;
    background: var(--color2);
    z-index: -1;
}

.social img {
	width: 16px;
	filter: brightness(0) invert(1);
}
.social span{
	color: var(--white);
	font-weight: 500;
}
  
.social a {
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 32px;
	color: var(--white);
	font-size: 16px;
	background: var(--color1);
	text-align: center;
	border-radius: 50px;
	transition: all .5s ease-in-out;
}
  
.social a:hover {
	color: var(--color2);
}
.header-top-contact ul {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	margin: 0;
	padding: 0;
}
.header-top-contact ul li{
	display: flex;
	gap: 10px;
	border-right: 1px solid rgba(255, 255, 255, .2);
	padding-right: 20px;
}
.header-top-contact ul li:last-child{
	border: none;
	padding-right: 0;
}
.header-top-contact ul li a {
	color: var(--white);
	font-weight: 400;
}
.header-top-contact ul li a i{
	color: var(--color2);
	margin-right: 5px;
}

.navbar {
	/* position: sticky; */
	/* position: -webkit-sticky; */
	/* top: 0;  */
	/*backdrop-filter: blur(5px);*/
	z-index: 10;
	background-color: var(--white);
	box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}
.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;
	font-family: var(--heading-font);
	padding:0;
}
.navbar-brand img { height: 80px; }

.navbar-toggler { border:none;}
.navbar-toggler:focus { box-shadow:none;}

.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-item > .nav-link {
	color: #111;
    font-size: 17px;
    font-weight: 600;
	padding: 25px;
    text-transform: capitalize;
}
.navbar .dropdown-toggle::after {
	display: inline-block;
	margin-left: 5px;
	vertical-align: baseline;
	font-family: 'Fontawesome';
	content: "\f107";
	font-weight: 600;
	border: none;
	font-size: 14px;
}
.nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    border: none;
    left: -15px;
    border-radius: 0px;
    border-top: 4px solid var(--color2);
    background: var(--color1);
    width: 220px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
}
.nav-item.dropdown:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
}
.navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.nav-item.dropdown .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 8px 25px;
    font-weight: 500;
    color:  var(--white);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
}
.navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "\f0da";
	font-family:"FontAwesome";
    position: absolute;
    left: 15px;
    top: 8px;
    color: var(--color2);
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-in-out;
    z-index: -1;
}
.navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--color2);
    padding-left: 32px;
}
.navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    visibility: visible;
}
/*********************/
/* slider */
.hero-section {
	position: relative;
}
  
.hero-single {
	height: 100vh;
	background-position: center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}
  
.hero-single::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: -0.5px;
	top: 0;
	background: rgba(11, 28, 57, .7);
	z-index: -1;
}
  
.hero-single .hero-content {
	height: 100%;
}
  
.hero-single .hero-content .hero-title {
	color: var(--white);
	font-size: 56px;
	font-weight: 800;
	margin: 20px 0;
	text-transform: capitalize;
}
  
.hero-single .hero-content .hero-title span{
	color: var(--color2);
}
  
.hero-single .hero-content .hero-sub-title {
	display: inline-block;
	color: var(--color2);
	font-size: 25px;
	letter-spacing: 6px;
	font-weight: 800;
	position: relative;
	text-transform: uppercase;
	border-bottom: 3px solid var(--color2);
}
  
.hero-single .hero-content p {
	color: var(--white);
	line-height: 30px;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 20px;
}
  
.hero-single .hero-content .hero-btn {
	gap: 1rem;
	display: flex;
	margin-top: 35px;
	justify-content: start;
}
  
.hero-single .hero-img::before{
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	background: var(--color1);
	right: 100px;
	bottom: 0px;
	border-radius: 50%;
	filter: blur(150px);
	z-index: -1;
}
  
.hero-single .hero-img{
	position: absolute;
	right: 100px;
	bottom: 120px;
	width: 50%;
	z-index: -1;
}
  
.hero-slider.owl-theme .owl-nav {
	margin-top: 0px;
}
  
.hero-slider.owl-theme .owl-nav [class*=owl-] {
	color: var(--white);
	font-size: 25px;
	margin: 0;
	padding: 0;
	background: rgba(255, 255, 255, 0.2);
	display: inline-block;
	cursor: pointer;
	height: 55px;
	width: 55px;
	line-height: 55px;
	border-radius: 50px;
	text-align: center;
	transition: all .5s ease-in-out;
}
  
.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
	background: var(--white);
	color: var(--color);
}
  
.hero-slider.owl-theme .owl-nav .owl-prev {
	left: 40px;
}
  
.hero-slider.owl-theme .owl-nav .owl-next {
	right: 40px;
}
  
.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

/*********************/
.carousel-item {
	position: relative;
}
.carousel-item .main {
	width: 100%;
	height: 520px;
	object-fit: cover;
}
.carousel-item .carousel-caption {
	height: 520px;
	display: grid;
	place-items:center;
}
.carousel-item p {
	font-size: 10em;
	font-weight: bold;
	position: absolute;
	top: -50px;
	right: 10px;
	line-height: initial;
	margin: 0;
	opacity: 0.5;
}
.carousel-item h1 {
	color: #fff;
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 0;
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/*********************/
/* 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 .img-1 {
	border-radius: 80px 80px 0 80px;
	object-fit: cover;
}
.welcome .img-2 {
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 50%;
	border: 2px dashed var(--color2);
	padding: 8px;
}
.welcome .img-3 {
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 0 80px 80px 80px;
}
/*********************/
.heading {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.heading span {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color2);
    position: relative;
    border-bottom: 2px solid var(--color2);
}
.heading h2 {
    font-weight: 800;
    text-transform: capitalize;
    font-size: 55px;
    color: var(--color5);
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
}
/*********************/
.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 {
}
.home_products .item {
	display: block;
	position: relative;
	background: var(--white);
	padding: 20px;
	border-radius: 50px 50px 50px 0;
	margin-bottom: 25px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.home_products .item .img {
	position: relative;
	margin-bottom: 15px;
}
.home_products .item .img img {
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 40px 40px 40px 0;
}
.home_products .item .img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	border-radius: 40px 40px 40px 0;
	background: var(--color5);
	transition: all .5s ease-in-out;
}
.home_products .item:hover .img::before{
	opacity: 0.5;
	visibility: visible;
}
.home_products .item .img .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 100%;
	line-height: 50px;
	padding: 0;
	margin: -25px 0 0 -25px;
	color: var(--white);
	background: var(--color2);
	transform: scale(3);
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease-in-out;
	z-index: 1;
}
.home_products .item:hover .img .btn {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}
.home_products .item:hover .img .btn:hover{
	background: var(--white);
	color: var(--color2);
}
.home_products .item h4 {
	transition: all .5s ease-in-out;
}
.home_products .item:hover h4 {
	color: var(--color2);
}

/*********************/
/* 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: var(--color1);
	outline: 1px solid var(--color1);
	outline-offset: 2px;
}*/
.owl-dots .owl-dot span {
	background: var(--color2);
	border-radius: 50px;
	width: 8px;
	height: 8px;
	display: inline-block;
	transition: all .5s ease-in-out;
}
.owl-dots .owl-dot.active span {
	width: 20px;
}
/*********************/
/* counter */
.counter_wrap {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	z-index: 1;
}
.counter_wrap::before{
	content: "";
	position: absolute;
	background: var(--color1);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: .7;
	z-index: -1;
}
.counter-box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	gap: 30px;
	position: relative;
	z-index: 1;
}
.counter-box .icon {
	position: relative;
	text-align: center;
	font-size: 60px;
	width: 100px;
	height: 100px;
	line-height: 88px;
	color: var(--white);
	background:  var(--color2);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.counter-box .icon img{
	width: 60px;
	filter: brightness(0) invert(1);
}
.counter-box .icon::before{
	content: "";
	position: absolute;
	left: 10px;
	top: 10px;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	border: 3px solid var(--white);
	transition: all .5s ease-in-out;
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	z-index: -1;
}
.counter-box:hover .icon::before{
	left: 0;
	top: 0;
}
.counter-box h2 {
	display: block;
	line-height: 1;
	color: var(--white);
	font-size: 50px;
	font-weight: 600;
}
.counter-box .title {
	color: var(--white);
	margin-top: 20px;
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}
/*********************/
/* testimonials */
.testimonials {}
.testimonials .item {
	position: relative;
	background: var(--white);
	border-radius: 40px 40px 40px 0;
	padding: 25px 25px;
	margin: 6px;
	border-bottom: 5px solid var(--color2);
}
.testimonial-rate { color: var(--color2);}
.testimonial-quote {
	color: var(--color3);
	font-style: italic;
	font-weight: 500;
}
.testimonial-content {
	display: flex;
	align-items: center;
	gap: 10px;
}
.testimonial-content .img {
	width: 75px;
	padding: 4px;
	border-radius: 50px;
	border: 2px dashed var(--color2);
}
.testimonial-content .img img {
	border-radius: 50%;
}
.testimonial-content .info {
	margin: 15px 0 10px 0;
}
.testimonial-content .info h4 {
	font-size: 20px;
	color:  var(--color5);
	margin-bottom: 2px;
}
.testimonial-content .info p {
	color: var(--color2);
	font-weight: 500;
	margin-bottom: 0;
}
.testimonial-quote-icon {
	position: absolute;
	right: 0px;
	top: 0px;
	color: var(--white);
	font-size: 30px;
	width: 40px;
	height: 40px;
	line-height: 41px;
	text-align: center;
	background: var(--color2);
	border-radius: 50px 50px 50px 0;
}
/*********************/
/* 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-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 1;
}
.enquiry_wrap::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: var(--color4);
	opacity: .8;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.form1 {
	border-radius: 80px 80px 80px 0;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.form1 .header2 {
	background: var(--color2);
	border-radius: 50px 50px 50px 0;
	padding: 20px 30px;
}
.form1 form {
	border-radius: 50px 50px 50px 0;
	padding: 20px 30px;
}

.wrap-input-8 .input {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: #F2F3F5;
  border: 1px solid #ddd; 
  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(--color2);
  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(--color2);
  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;
}
/*********************/
.features {
	counter-reset: process;
}
.features .item {
	position: relative;
	height: 100%;
	padding: 20px 25px;
	background: var(--white);
	border-radius: 50px 50px 50px 0px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	z-index: 1;
}
.features .item .count {
	position: absolute;
	right: 30px;
	top: 0px;
}
.features .item .count:before {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 60px;
	font-weight: 800;
	-webkit-text-stroke: 2px var(--color1);
	-webkit-text-fill-color: transparent;

	counter-increment: process;
	content: "0" counter(process) "";
}
.features .item .icon {
	width: 80px;
	height: 80px;
	line-height: 65px;
	border-radius: 50%;
	text-align: center;
	color: var(--white);
	font-size: 60px;
	background: var(--color1);
	margin-bottom: 25px;
	box-shadow: 5px 5px 0 #F2F3F5;
	position: relative;
	transition: all .5s ease-in-out;
}
.features .item:hover .icon {
	transform: rotateY(360deg);
}
.features .item .icon img {
	width: 48px;
	filter: brightness(0) invert(1);
}
.features .item .feature-content{
	flex: 1;
}
.features .item .feature-content h4 {
	color: var(--color5);
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
}
.features .item .feature-content p {
	font-size: 14px;
	color: var(--color5);
	margin-bottom: 0;
}
/*********************/
/* whyus */
.whyus { 
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}
.choose-img {
	position: relative;
	margin-left: 50px;
}
.choose-img::before{
	content: "";
	position: absolute;
	left: -15px;
	bottom: -15px;
	width: 100%;
	height: 100%;
	border: 5px solid var(--color2);
	border-radius: 30% 0 30% 30%;
}
.choose-img img{
	border-radius: 30% 0 30% 30%;
}
.whyus .item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--white);
	border-radius: 50px 50px 50px 0;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	padding: 15px 15px 15px 0;
	overflow: hidden;
}
.whyus .item .icon {
	width: 80px;
	height: 80px;
	line-height: 75px;
	text-align: right;
	background: var(--color2);
	border-radius: 50px 50px 50px 0;
	padding-right: 12px;
	margin-left: -12px;
}
.whyus .item .icon img {
	width: 45px;
	filter: brightness(0) invert(1);
}
.whyus .item .item-info {
	flex: 1;
}
.whyus .item .item-info h4 {
	color: var(--color5);
	margin-bottom: 10px;
	font-size: 21px;
}
.whyus .item .item-info p {
	font-size: 14px;
	margin-bottom: 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 60px 60px 0;
	overflow: hidden;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	transition: all .5s ease-in-out;
}
.team .item:hover {
	transform: translateY(-10px);
}
.team .item img{
	border:1px solid #eee;
	border-radius: 50px 50px 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;
}
/*********************/

/* footer */
footer {
	background-size: cover;
}
footer h4 {
	position: relative;
	color: var(--white);
	padding-bottom: 20px;
	margin-bottom: 30px;
	font-size: 24px;
	z-index: 1;
}
footer h4:before {
	content: '';
	position: absolute;
	width: 90px;
	height: 3px;
	background: rgba(255, 255, 255, 0.2);
	bottom: 0;
	left: 0;
	z-index: -1;
}
footer h4:after {
	content: '';
	position: absolute;
	width: 30px;
	height: 3px;
	background: var(--color2);
	bottom: 0;
	left: 18px;
	z-index: -1;
}

footer .logo {
	height: 40px;
	filter: brightness(0) invert(1);
}
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);
	transition: all .5s ease-in-out;
}
footer .links li a i {
	margin-right: 5px;
	color: var(--color2);
}
footer .links li a:hover {
	padding-left: 10px;
	color: var(--color2);
}
.footer-contact li {
	position: relative;
	display: flex;
	justify-content: start;
	color: var(--white);
	font-size: 16px;
	margin-bottom: 15px;
}
.footer-contact li a {
	color: var(--white);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer-contact li i {
    flex-shrink:0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	margin-right: 15px;
	border-radius: 10px 10px 10px 0;
	background: var(--color2);
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--white);
}
.footer-social {
	display: flex;
	gap: 15px;
}
.footer-social li {
	list-style: none;
}
.footer-social li a {
	display: block;
	height: 38px;
	width: 38px;
	line-height: 38px;
	text-align: center;
	border-radius: 10px 10px 10px 0;
	background: var(--white);
	color: var(--color2);
	transition: 0.3s;
}
.footer-social li a img {
	height: 20px;
	transition: 0.3s;
}
.footer-social li a:hover {
	background: var(--color2);
}
.footer-social li a:hover img {
	filter: brightness(0) invert(1);
}
.footer-bottom {
	background-color: rgba(0,0,0,0.2);
}

.whatsappfix {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 10;
}
.whatsappfix img {
  height:40px;
}

.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;}

/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
	.header-top-contact ul li { padding:0; border:none;}
	.social a { width:23px; height:30px; line-height:27px;}
	.topbar::before { width:53%;}
	.nav-item { padding:0;}
    .nav-item.dropdown .dropdown-menu { position:relative; width:100%; display:none; left:0;}
    .nav-item.dropdown .dropdown-menu.show { display:block;}
    .hero-single .hero-content .hero-title { font-size:24px; margin:0;}
    .hero-single { height:200px;}
    .hero-slider.owl-theme .owl-nav { display:none;}
    .heading h2 { font-size:40px;}
    .navbar-brand img {    height: 60px;}
    .heading h2 {        font-size: 30px;    }
    .social img {    width: 14px;}
    .social{margin-left: 150px;}
    .nav-item > .nav-link {padding:10px}
    
    
}

