/* main css */

@font-face {
    font-family: 'DM Sans Regular';
    font-style: normal;
    font-weight: normal;
    src: local('DM Sans Regular'), url('../fonts/DMSans-Regular.woff') format('woff');
}
@font-face {
    font-family: 'DM Sans Medium';
    font-style: normal;
    font-weight: normal;
    src: local('DM Sans Medium'), url('../fonts/DMSans-Medium.woff') format('woff');
}
@font-face {
	font-family: 'DM Sans Bold';
	font-style: normal;
	font-weight: normal;
	src: local('DM Sans Bold'), url('../fonts/DMSans-Bold.woff') format('woff');
}

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --color1: #f18701;
  --color2: #283618;
  --color3: #606c38;
  --color4: #588157;
  --color5: #565969;
  --color6: #fcac3a;
  --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: 'DM Sans Regular';
	font-size: 17px;
	line-height: 28px;
	font-weight: 400;
	color: var(--color5);
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'DM Sans Bold';
	color: var(--color2);
}

.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-6 { background-color: var(--color6); }
.bg-grey { background-color: var(--grey); }

.btn1 {
	position: relative;
	display: inline-block;
	color: var(--white);
	font-size: 16px;
	line-height: 50px;
	/* font-weight: 700; */
	background: var(--color1);
	border: none;
	border-radius: 7px;
	padding: 1px 35px 0px;
	overflow: hidden;
	text-transform: capitalize;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	z-index: 1;
}
.btn1 i {
	margin-left: 5px;
	transition: var(--transition);
}
.btn1:hover i {
	transform: translateX(5px);
}
.btn1:focus {
    outline: none;
}
.hover-btn {
	background-color: var(--color2);
	height: 100%;
	top: 0;
	opacity: 0;
	position: absolute;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	width: 25%;
	z-index: -1;
}
.hover-bx {
	left: 0;
	-webkit-transition-delay: 0.105s;
	transition-delay: 0.105s;
	border-radius: 7px 0px 0px 7px;
}
.hover-bx2 {
	left: 25%;
	-webkit-transition-delay: 0.105s;
	transition-delay: 0.105s;
}
.hover-bx3 {
	left: 50%;
	-webkit-transition-delay: 0.105s;
	transition-delay: 0.105s;
}
.hover-bx4 {
	left: 75%;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	border-radius: 0 7px 7px 0;
}
.btn1:hover .hover-btn {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

/* header */
header {}
.topbar {}
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 10px;
	padding: 0 15px;
}
.topbar .item i {
    color: var(--color1);
}
.topbar .item span {
	display: block;
}
.topbar .item a {
	font-size: 16px;
	color: var(--white);
	text-decoration: none;
}
.topbar .social {
	display: inline-flex;
	background-color: var(--color1);
	padding-left: 25px;
	padding-right: 15px;
	margin: 0;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
}
.social li {
	display: block;
}
.social li a {
	display: block;
	padding: 5px;
}
.social li img {
	width: 16px;
	filter: brightness(0) invert(1);
}
.navbar {
	position: relative;
	z-index: 10;
	box-shadow: 0 10px 10px rgba(0,0,0,0.2);
	/* background-color: var(--color2); */
	/* backdrop-filter: blur(5px); */
	display: flex;
	justify-content: space-between;
	border-top: 1px solid var(--color4);
	border-bottom: 1px solid var(--color4);
}
.navbar-brand {
	display: block;
	font-family: 'DM Sans Bold';
	font-size: 30px;
	background-color: #f7f8f0;
	color: var(--white);
	padding: 0;
	padding-right: 30px;
	padding-left: 10px;
	line-height: 1.3;
	clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
.navbar-brand:hover { color: var(--white);}
.navbar-brand img { height: 90px; }

.navbar-right {
	border: 1px solid var(--color3);
	padding: 2px;
}
.navbar-right a {
	display: flex;
	background-color: var(--color3);
	color: var(--white);
	gap: 10px;
	font-size: 20px;
	padding: 21px;
	transition: var(--transition);
}
.navbar-right a .icon {
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	background-color: var(--color1);
	transition: var(--transition);
}
.navbar-right a div span {
	display: block;
	font-size: 13px;
	line-height: 1;
}
.navbar-right a:hover {
	background-color: var(--color1);
}
.navbar-right a:hover .icon {
	background-color: var(--white);
	color: var(--color1);
}

.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: var(--white);
	/* font-size: 15px; */
	font-weight: 500;
	padding: 30px;
}
.nav-item:hover .nav-link {
	color: var(--color1);
}
.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 {
	color: var(--color2);
	padding: 5px 0;
	transition: var(--transition);
}
.dropdown-item:hover {
	color: var(--color1);
	background-color: var(--white);
	padding-left: 10px;
	text-shadow: 2px 3px 8px var(--color1);
}
.dropdown-toggle::after {
	font-size: 12px;
	line-height: 0;
	content: '\f107';
	font-family:"FontAwesome";
	border: none;
	vertical-align: middle;
}
.nav-item.dropdown .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--white);
	min-width: 280px;
	padding: 15px 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	/* align-items: flex-start; */
	text-align: left;
	opacity: 0;
	visibility: hidden;
	z-index: 99;
	transform: perspective(500px) rotatex(-20deg);
	transform-origin: 50% 0%;
	-webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
	-khtml-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
	-moz-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
	-ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
	-o-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
	box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
	-webkit-transition: all 200ms linear 0ms;
	-khtml-transition: all 200ms linear 0ms;
	-moz-transition: all 200ms linear 0ms;
	-ms-transition: all 200ms linear 0ms;
	-o-transition: all 200ms linear 0ms;
	transition: all 200ms linear 0ms;
  
	border: 1px solid transparent;
	border-top: 5px solid var(--color1);
	border-radius: 0;
}
.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: perspective(500px) rotatex(0);
}
.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 - 130px);
	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: 100px;
}
.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 > 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.6;
	transition: var(--transition);
}
.owl-slide .owl-nav > div.owl-prev { left: 15px;}
.owl-slide .owl-nav > div.owl-next { right: 15px;}
.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: 5px;
}
/*********************/
.heading {
	position: relative;
}
.heading h2 {
	font-size: 48px;
	color: var(--color2);
	text-transform: capitalize;
}
.heading span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
    font-family: 'DM Sans Medium';
	font-size: 18px;
	text-transform: uppercase;
}
.heading span::before,
.heading span::after {
	content: '';
	width: 3px;
	height: 20px;
	background-color: var(--color1);
	transform: skewX(-20deg);
}
/*********************/
/* 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;
	height: 100%;
}
.welcome figure .img {
	width: 60%;
	border-radius: 15px;
}
.welcome figure .img1 {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 60%;
	border-radius: 15px;
	/* z-index: -1; */
}
.welcome figure .img2 {
	position: absolute;
	top: 0;
	right: 0;
	height: 70px;
	z-index: -1;
	opacity: 0.5;
}
.welcome figure .img3 {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 70px;
	z-index: -1;
}
.welcome figure:after {
	position: absolute;
	/*content: '';*/
	top: 0;
	left: 0;
	bottom: 0;
	width:calc(100% - 25px);
	height: 100%;
	border:4px solid var(--color1);
	transform: scale(1.05);
	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 {
	position: relative;
	overflow: hidden;
}
.custom2 .item {
	display: flex;
	gap:15px;
	color: var(--white);
	background-color: rgba(255,255,255,0.1);
	padding: 25px;
}
.custom2 .item .icon {
	position: relative;
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	/* background-color: #fff; */
	color: var(--color1);
	flex-shrink: 0;
	border-radius: 50% 50% 50% 10px;
	font-size: 30px;
	transform: translate(5px, 5px);
}
.custom2 .item .icon::before {
	position: absolute;
	content: '';
	inset: 0;
	background-color: var(--white);
	border-radius: 50% 50% 50% 10px;
}
.custom2 .item .icon::after {
	position: absolute;
	content: '';
	inset: 0;
	background-color: var(--color2);
	border-radius: 50% 50% 50% 10px;
	opacity: .3;
	transform: translate(-10px, -10px);
	z-index: -1;
}
.custom2 .item .icon img {
	height: 40px;
	filter: drop-shadow(0 1000px 0 var(--color1));
	transform: translateY(-1000px);
}
.custom2 .item h4 {
	color: var(--white);
}
.custom2 .item p {
	color: var(--white);
	font-size: 14px;
	margin: 0;
}
/* home products */
.home_products {
}
.home_products .item {
	position: relative;
	overflow: hidden;
	color: var(--color5);
}
.home_products .item figure {
	position: relative;
	overflow: hidden;
	width:90%;
	margin:auto;
	border-radius: 50px;
}
.home_products .item figure img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	transition: var(--transition);
}
.home_products .item:before {
	background-color: var(--white);
	bottom: 0;
	left: 0;
	right: 0;
	height: 80%;
	content: '';
	position: absolute;
	/*z-index: -1;*/
	border-radius: 50px 50px 50px 10px;
}
.home_products .item .desc {
	position: relative;
	z-index: 1;
	padding: 20px;
}
.home_products .item .desc p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* number of lines to show */
			line-clamp: 2; 
	-webkit-box-orient: vertical;
	margin-bottom: 10px;
}
.home_products .btn2 {
	display: inline-flex;
	gap: 5px;
	align-items: center;
	color: var(--color1);
	transition: var(--transition);
}
.home_products .btn2:hover {
	color: var(--color2);
	gap:10px;
}
.home_products .item:hover figure img {
	transform: scale(1.1);
}

/*********************/
/* 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-position: center;
	/* background-attachment: fixed; */
}
.counter_wrap .grid_view {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
	grid-gap: 20px;
}
.counter_wrap .item {
	position: relative;
	display: flex;
	align-items: center;
	gap:15px;
	color: var(--white);
	overflow: hidden;
	cursor: default;
}
.counter_wrap .item .icon {
	position: relative;
	width: 80px;
	flex-shrink: 0;
	padding: 15px;
	border-right: 1px solid rgba(255,255,255,0.2);
}
.counter_wrap .item .icon img {
	width: 100%;
	filter: brightness(0) invert(1);
}
.counter_wrap .item h4 {
	position: relative;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 0;
	color: var(--white);
}
.counter_wrap .item p {
	font-size: 16px;
	margin-bottom: 5px;
}
/*********************/
.team .item {
	position: relative;
}
.team .item:before {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	right: 0;
	height: 75%;
	background-color: var(--color1);
	border-radius: 40px 40px 40px 10px;
	opacity: 0.8;
	z-index: -1;
	transition: var(--transition);
}
.team .item figure {
	position: relative;
	overflow: hidden;
	width: 90%;
	border: 1px solid var(--color1);
	border-radius: 40px 40px 40px 10px;
	margin: 0 auto;
}
.team .item figure img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	transition: var(--transition);
}
.team .item .desc {
	padding: 15px 5px;
}
.team .item .desc h5 {
	color: var(--white);
	margin: 0;
}
.team .item .desc p {
	color: var(--white);
	margin: 0;
}
.team .item:hover figure img {
	transform: scale(1.1);
}
/*********************/
.whyus {
	background-size: 100%;
	background-repeat:no-repeat;
}
.whyus .item {
	background-color: var(--white);
	border-radius: 40px 40px 40px 10px;
	overflow: hidden;
	height: 100%;
	box-shadow: var(--shadow);
	transition: var(--transition);
}
.whyus .item figure {
	position: relative;
	overflow: hidden;
}
.whyus .item figure img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	transition: var(--transition);
}
.whyus .item .icon {
	position: relative;
	width: 100px;
	aspect-ratio: 1/1;
	background-color: var(--color1);
	border: 5px solid var(--white);
	border-radius: 50%;
	margin: 0 auto;
	margin-top: -65px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: var(--transition);
}
.whyus .item .icon img {
	width: 60%;
	filter: brightness(0) invert(1);
}
.whyus .item .desc {
	padding: 15px;
}
.whyus .item .desc p {
	font-size: 16px;
}
.whyus .item:hover figure img {
	transform: scale(1.1);
}
/*********************/
.process {
	background-size: cover;
	counter-reset: process;
}
.process .item {
	position: relative;
	background-color: var(--white);
	border-radius: 40px 10px 40px 40px;
	border: 1px solid var(--grey);
	box-shadow: var(--shadow);
	height: 100%;
}
.process .item:before {
	counter-increment: process;
	content: "0" counter(process) "";
	background-color: var(--color2);
	position: absolute;
	top: 0;
	left: 40px;
	font-family: 'DM Sans Bold';
	color: var(--white);
	width: 40px;
	height: 40px;
	line-height: 35px;
	text-align: center;
	border-radius: 0 0 50% 50%;
}
.process .item .icon {
	position: absolute;
	top: 0;
	right: 0;
	width: 70px;
	aspect-ratio: 1/1;
	background-color: var(--color1);
	display: grid;
	place-items: center;
	border-radius: 50% 10px 50% 50%;
}
.process .item .icon img {
	width: 40px;
	filter: brightness(0) invert(1);
}
.process .item .desc {
	padding: 55px 20px 0;
}
.process .item .desc h4 {
	font-size: 18px;
}
.process .item .desc p {
	font-size: 15px;
}
/*********************/
/* testimonials */
.testimonials .item {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 2fr;
	align-items: center;
	color: var(--white);
}
.testimonials .item:before {
	position: absolute;
	z-index: -1;
	inset: 0;
	left: auto;
	content: '';
	width: 83%;
	background-color: rgba(0, 0, 0, 0.3);
	border: 1px dashed rgba(255,255,255,0.5);
}
.testimonials .item .thumb {
	position: relative;
	padding: 25px 15px 15px;
	background-color: var(--color1);
	text-align: center;
	margin: 30px 0;
	transition: var(--transition);
}
.testimonials .item .thumb:before {
	content: '\f10e';
	font-family:"FontAwesome";
	position: absolute;
	right: -30px;
	top: 30px;
	background-color: var(--color6);
	color: var(--black);
	width: 50px;
	height: 60px;
	line-height: 60px;
	font-size: 30px;
}
.testimonials .item .thumb:after {
	content: '';
	position: absolute;
	right: -30px;
	top: 90px;
	background-color: var(--color6);
	width: 30px;
	height: 15px;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
	opacity: 0.8;
}
.testimonials .item .thumb h5 {
	color: var(--white);
	margin: 0;
}
.testimonials .item img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	outline:1px dashed var(--white);
	outline-offset: 5px;
	margin: 0 auto;
	margin-bottom: 15px;
}
.testimonials .item .desc {
	padding: 15px;
	padding-left: 45px;
}
.testimonials .item .desc .star {
	color: var(--color6);
}
.testimonials .item:hover .thumb {
	background-color: var(--black);
}
/*********************/
/* 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 {
	border-radius: 15px;
}

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

/* 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: 2px;
	background-color: var(--color1);
	margin: 15px 0 20px;
}
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-contact li {
	position: relative;
	display: flex;
	justify-content: start;
	/* align-items: center; */
	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 {
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	margin-right: 15px;
	border-radius: 10px 10px 10px 0;
	background: var(--color1);
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--white);
	flex-shrink: 0;
}
.footer-social {
	display: flex;
	gap: 15px;
}
.footer-social li {
	list-style: none;
}
.footer-social li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 38px;
	width: 38px;
	border-radius: 10px 10px 10px 0;
	color: var(--color2);
	border: 1px solid var(--white);
	transition: 0.3s;
}
.footer-social li a img {
	height: 20px;
	filter: brightness(0) invert(1);
	transition: var(--transition);
}
.footer-social li a:hover {
	background-color: var(--white);
}
.footer-social li a:hover img {
	filter: none;
}
.footer-bottom {
	background-color: rgba(0,0,0,0.2);
}

.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: 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(--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: 30px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/************************/
#google_translate_element select {
    display:inline-block;
    width:140px;
    height:initial;
    padding:5px;
	border-radius: 30px;
    border:1px solid #ddd;
    color:var(--black);
    background-position: right 10px center;
}
.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) {
	/* header .container-fluid { padding: 0;} */
	.navbar-brand { font-size: 24px;}
    .nav-item .nav-link { 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;}
	.dropdown-toggle { display: flex; justify-content: space-between; align-items: center;}
	.dropdown-toggle.show::after { transform: rotateX(180deg);}
	.heading h2 {    font-size: 30px;}
	.owl-slide .item .desc {padding-left:15px}
	.owl-slide .item .desc h1 {font-size:16px}
	.owl-slide .item .desc .btn1{display:none}
    .owl-slide .item img {height:250px}
   .owl-slide .owl-nav > div.owl-next {display:none}
   .owl-slide .owl-nav > div.owl-prev{display:none}
}

