/* main css */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --color1: #ab0101;
  --color2: #8c5117;
  --color3: #fefbe7;
  --color4: #713e0d;
  --color5: #fcb700;
  --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: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
	line-height: 24px;
    -webkit-transition: .5s;
    transition: .5s;
}

@media (min-width: 1300px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1240px;
    }
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color2);
}

.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 {
	position: relative;
	display: inline-block;
	background: var(--color1);
	font-size: 18px;
	color: var(--white);
	padding: 10px 30px;
	border: none;
	overflow: hidden;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	z-index: 1;
}
.btn1::before {
	position: absolute;
	content: "";
	top: 0;
	left: -12px;
	width: 30px;
	height: 100%;
	background: var(--color2);
	transform: skew(22deg);
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	z-index: -1;
}
.btn1.type2::before {
	background: var(--white);
}
.btn1.type2:hover {
	color: var(--color2);
}
.btn1:hover::before {
	width: 95%;
}
.btn1 i {
	margin-left: 10px;
	transform: rotate(-49deg);
	display: inline-block;
}
.btn1:focus {
    outline: none;
}

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

.heading h1 {
	font-size: 40px;
	font-weight: 600;
	line-height: 52px;
	color: var(--color2);
}
.heading h5 {
	color: var(--color1);
	position: relative;
	display: inline-block;
	margin-left: 46px;
	font-size: 24px;
	font-weight: 500;
}
.heading h5::before {
	position: absolute;
	content: "";
	top: 0;
	left: -45px;
	background: var(--color1);
	height: 16px;
	width: 16px;
	transform: rotate(45deg);
	transition: all 1000ms ease;
	-webkit-animation: rotate 10s infinite linear;
	-moz-animation: rotate 5s infinite linear;
	-o-animation: rotate 5s infinite linear;
	animation: rotate 5s infinite linear;
	-webkit-animation-play-state: running;
	-moz-animation-play-state: running;
	-o-animation-play-state: running;
	animation-play-state: running;
	z-index: 1;
}
.heading h5::after {
	position: absolute;
	content: "";
	top: 0;
	left: -39px;
	background: var(--white);
	height: 16px;
	width: 16px;
	transform: rotate(45deg);
	transition: all 1000ms ease;
	-webkit-animation: rotate 10s infinite linear;
	-moz-animation: rotate 5s infinite linear;
	-o-animation: rotate 5s infinite linear;
	animation: rotate 5s infinite linear;
	-webkit-animation-play-state: running;
	-moz-animation-play-state: running;
	-o-animation-play-state: running;
	animation-play-state: running;
	z-index: 1;
}
.heading h5 .circle {
	display: inline-block;
	position: relative;
}
.heading h5 .circle::before {
	position: absolute;
	content: "";
	top: -20px;
	left: 20px;
	background: var(--color1);
	height: 16px;
	width: 16px;
	transform: rotate(45deg);
	transition: all 1000ms ease;
	-webkit-animation: rotate 10s infinite linear;
	-moz-animation: rotate 5s infinite linear;
	-o-animation: rotate 5s infinite linear;
	animation: rotate 5s infinite linear;
	-webkit-animation-play-state: running;
	-moz-animation-play-state: running;
	-o-animation-play-state: running;
	animation-play-state: running;
	z-index: 1;
}
.heading h5 .circle::after {
	position: absolute;
	content: "";
	top: -16px;
	left: 20px;
	background: var(--white);
	height: 16px;
	width: 16px;
	transform: rotate(45deg);
	transition: all 1000ms ease;
	-webkit-animation: rotate 10s infinite linear;
	-moz-animation: rotate 5s infinite linear;
	-o-animation: rotate 5s infinite linear;
	animation: rotate 5s infinite linear;
	-webkit-animation-play-state: running;
	-moz-animation-play-state: running;
	-o-animation-play-state: running;
	animation-play-state: running;
	z-index: 1;
}

.line {
	display: inline-block;
	width: 80px;
	height: 3px;
	background: var(--color1);
	position: relative;
}
.line:after {
	position: absolute;
	content: '';
	height: 4px;
	width: 12px;
	background-color: var(--white);
	left: 0;
	bottom: 0;
	animation: line 3s ease infinite alternate;
	-webkit-animation: line 3s ease infinite alternate;
}
.line.grey:after {
	background-color: var(--grey);
}
.line.dark:after {
	background-color: #0a1f30;
}
@keyframes line{
	0% {
	  transform: translateX(0);
	}
	100% {
	  transform: translateX(74px);
	  -webkit-transform: translateX(74px);
	  -moz-transform: translateX(74px);
	  -ms-transform: translateX(74px);
	  -o-transform: translateX(74px);
	}
}

/* header */
header { 
	display: unset; /* required for sticky header */
}
.topbar {  }
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 15px;
}
.topbar .item i {
    background: var(--color1);
    text-align: center;
    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 {
	position: relative;
	z-index: 10;
	box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}
.navbar.fixed-top {
	position: fixed;
	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: 24px;
	font-weight: bold;
	color: var(--white);
}
.navbar-brand img { height: 60px; }
.navbar-brand:hover { color:var(--white); }
.logo-bg {
	position: absolute;
    content: "";
    top: 0;
    left: -44px;
    background: var(--color2);
    width: 30%;
    height: 100%;
    z-index: -1;
    transform: skewX(-36deg);
}
.logo-bg:before {
	position: absolute;
	content: "";
    top: 0;
    left: 100%;
    background: var(--color3);
    width: 5%;
    height: 100%;
    z-index: 1;
    transform: skewX(50deg);
}
.header-right a {
	color: var(--white);
}
.header-right a i {
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	font-size: 20px;
	background-color: var(--color4);
	text-align: center;
	margin-right: 5px;
	-webkit-animation: pulse2 linear 1000ms infinite;
    animation: pulse2 linear 1000ms infinite;
    -webkit-transition: all 0.4s;
}
@keyframes pulse2{
	0% {
	  -webkit-box-shadow: 0 0 0 0 var(--color4);
	  box-shadow: 0 0 0 0 var(--color4);
	}
	70% {
	  -webkit-box-shadow: 0 0 0 20px rgba(94, 223, 255, 0);
	  box-shadow: 0 0 0 20px rgba(94, 223, 255, 0);
	}
	100% {
	  -webkit-box-shadow: 0 0 0 0 rgba(94, 223, 255, 0);
	  box-shadow: 0 0 0 0 rgba(94, 223, 255, 0);
	}
}
.header-right:before {
	position: absolute;
    content: "";
    top: 0;
    right: 0;
    background: var(--color2);
    width: 19%;
    height: 100%;
    z-index: -1;
}
.navbar-toggler { border: none;}
.navbar-toggler:focus { box-shadow: none;}
.navbar-toggler-icon {
	position: relative;
	display: initial;
	background:none;
	color: var(--color1);
}
/*
.navbar-toggler-icon::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	content: '\f00d';
	font-family:"FontAwesome";
	opacity: 1;
}
.navbar-toggler.collapsed .navbar-toggler-icon { }
.navbar-toggler.collapsed .navbar-toggler-icon::before { opacity: 0;}*/

.nav-item {
	position: relative;
	padding: 25px 10px;
}
.nav-link {
	position: relative;
	color: var(--color2);
	font-size: 17px;
	font-weight: 500;
	padding: 5px 0;
}
.nav-link::before {
	position: absolute;
	content: "";
	bottom: 0;
	right: 0;
	background: var(--color2);
	width: 0%;
	height: 1px;
	transition: var(--transition);
}
.nav-link:hover::before{
	width: 100%;
	left: 0;
}
.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-radius: 0;
	box-shadow: var(--shadow);
	background-color: var(--color2);
	transition: var(--transition);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
}
.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
	z-index: 9;
}
.dropdown-item {
	position: relative;
	color: var(--white);
	padding: 7px 15px;
	font-weight: normal !important;
	transition: var(--transition);
}
.dropdown-item:hover {
	color: var(--color1);
	background-color: transparent;
}
.dropdown-item span {
	position: relative;
	display: inline-block;
}
.dropdown-item span::before {
	position: absolute;
	content: "";
	bottom: 0;
	right: 0;
	background: var(--color1);
	width: 0%;
	height: 1px;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}
.dropdown-item:hover span::before {
	width: 100%;
	left: 0;
}
/*********************/
/* slider */
.owl-slide .item {
	position: relative;
}
.owl-slide .item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 7000ms linear;
	-webkit-transition: all 7000ms linear;
	-moz-transition: all 7000ms linear;
	-ms-transition: all 7000ms linear;
	-o-transition: all 7000ms linear;
}
.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: 48px;
	font-weight: 700;
	line-height: 60px;
	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 {
	-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-item.active .item img {
	transform: scale(1.3);
}

.owl-slide .owl-nav {
	position: absolute;
	top: 50%;
	right: 30px;
	display: flex;
	flex-direction: column;
	gap:20px;
	transform: translateY(-50%);
}
.owl-slide .owl-nav > div {
	background-color: var(--color1);
	color: #fff;
	width: 45px;
    height: 45px;
    line-height: 45px;
	text-align: center;
	transition: var(--transition);
}
.owl-slide .owl-nav > div:hover {
	background-color: var(--color2);
}
.owl-slide .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap:10px;
}

/*********************/
.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 h1 {
    font-size:36px;
}
.welcome figure {
	position: relative;
}
.welcome figure .img {
	border:5px solid var(--color1);
	border-radius: 25px;
}
.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);
	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 {
	position: relative;
}
.home_products .item figure {
	position: relative;
	overflow: hidden;
}
.home_products .item figure img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	transition: var(--transition);
}
.home_products .item .desc h4 {
	transition: var(--transition);
}
.home_products .item .desc {
	background: var(--white);
	padding: 20px 20px 30px;
	filter: drop-shadow(0px 1px 20px rgba(109,109,109,0.11));
	position: relative;
	left: 25px;
	bottom: 50px;
	width: 89%;
	border-left: 5px solid var(--color1);
	z-index: 1;
	max-height: 100%;
}
.home_products .item .desc::before {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	background: var(--color1);
	width: 0%;
	height: 100%;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	z-index: -1;
}
.home_products .item:hover figure img {
	transform: scale(1.1);
}
.home_products .item:hover .desc::before{
	width: 100%;
	left: 0;
}
.home_products .item:hover .desc h4{
	color: var(--white);
}
.home_products .item .btn2 {
	position: absolute;
	right: 0;
	bottom: -27px;
	z-index: 1;
}
.home_products .item .btn2 span {
	display: inline-block;
	padding: 12px 29px;
	background: var(--color4);
	color: var(--white);
	font-size: 30px;
	position: relative;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}
.home_products .item .btn2 span::before {
	position: absolute;
	content: "";
	top: 27px;
	right: 100%;
	background: var(--color2);
	width: 32px;
	height: 27px;
	z-index: 1;
	margin-right: -1px;
	clip-path: polygon(0 0, 100% 0%, 100% 100%);
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}
.home_products .item .btn2:hover span,
.home_products .item .btn2:hover span::before {
	background: var(--color1);
}

/*********************/
/* 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;
}
/*********************/
/* 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;
	/* background-color: var(--color2); */
	color: var(--white);
	border-radius: 10px;
	padding: 10px;
	overflow: hidden;
	cursor: default;
}
.counter_wrap .item:before {
	position: absolute;
	inset: 0;
	content: '';
	background-color: var(--color2);
	opacity: 0.8;
	transition: var(--transition);
}
.counter_wrap .item:hover:before {
	opacity: 1;
}
.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 {
	position: relative;
	margin: 0;
}
/*********************/
/* testimonials */
.testimonials {
	padding: 100px 0;
}
.testimonials .item {
	position: relative;
	background: var(--white);
	padding: 47px 29px 71px;
	z-index: 1;
}
.testimonials .item::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: var(--color2);
	z-index: -1;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}
.testimonials .item:hover,
.testimonials .item:hover h4 {
	color: var(--white);
}
.testimonials .item:hover::before{
	top: 0;
	height: 100%;
}
.testimonials .item .item-inner {
	border-bottom: 1px solid rgba(219,219,219,0.9);
	padding-bottom: 20px;
	margin-bottom: 15px;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}
.testimonials .item:hover .item-inner {
	border-bottom: 1px solid rgba(219,219,219,0.2);
}
.testimonials .item img {
	width: 85px;
	border: 1px dashed var(--color1);
	padding: 4px;
}
.testimonials .item h4 {
	font-weight: 600;
	margin: 0;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}
.testimonials .item p {
	font-size: 14px;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}
.testimonials .item .item-quote {
	position: absolute;
	right: 11px;
	bottom: -6px;
}
.testimonials .item:hover .item-quote i{
	color: rgba(238,238,238,0.2);
}
.testimonials .item .item-quote i {
	font-size: 6rem;
	color: #e8e7ec;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}
/*********************/
/* 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;
}
.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;
	background-color: var(--color1);
	text-align: center;
}
.contactinfo .item h4 {
	font-size: 18px;
	color: var(--white);
	margin-bottom: 0;
}
.contactinfo .item p {
	font-size: 14px;
	margin-bottom: 0;
}

/*********************/
/* whyus */
.whyus { 
	position: relative;
}
.whyus .wrap {
	background-size: cover;
	background-position: center;
	border-radius: 30px;
}
.whyus .wrap .w-100 {
	border-radius: 20px 0 0 20px;
}
.whyus .item {
	display: flex;
	height: 100%;
	gap: 15px;
	background: var(--white);
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	padding: 0 15px 15px 0;
	overflow: hidden;
	padding: 0 15px 15px;
}
.whyus .item .icon {
	width: 80px;
	height: 120px;
	line-height: 120px;
	text-align: center;
	background: var(--color2);
	border-radius: 0 0 50px 50px;
	transition: var(--transition);
}
.whyus .item .icon img {
	width: 45px;
	filter: brightness(0) invert(1);
}
.whyus .item .item-info {
	flex: 1;
}
.whyus .item .item-info h4 {
	font-size: 21px;
	font-weight: bold;
	color: var(--color2);
	margin-top: 15px;
	margin-bottom: 10px;
}
.whyus .item .item-info p {
	font-size: 14px;
	margin-bottom: 0;
}
.whyus .item:hover .icon {
	background: var(--color1);
}
/*********************/
.custom1 .item {
	background-color: var(--white);
    padding:30px;
}
.custom1 .item .icon {
	position: relative;
	margin-bottom: 15px;
}
.custom1 .item .icon::before {
    position: absolute;
    content: "";
    top: 0;
    left: 32px;
    background: #f1f1f1;
    width: 50px;
    height: 50px;
    transform: rotate(45deg);
    /* z-index: -1; */
    transition: all 1000ms ease;
    -webkit-animation: rotate 10s infinite linear;
    -moz-animation: rotate 5s infinite linear;
    -o-animation: rotate 5s infinite linear;
    animation: rotate 5s infinite linear;
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}
@keyframes rotate{
	0% {
	  -webkit-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -webkit-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
}
.custom1 .item .icon img {
	width: auto;
	height: 60px;
	filter: drop-shadow(0px 1000px 0 var(--color1));
	transform: translateY(-1000px);
}
.custom1 .item p {
	margin-bottom: 0;
}

/*********************/
.team {
	position: relative;
}
.team .item {
	background: var(--color2);
	padding: 2px;
	border-radius: 280px 280px 0 0;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.team .item:before{
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: var(--color1);
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	z-index: -1;
}
.team .item:hover:before{
	height: 100%;
}
.team .item img {
	border-radius: 50%;
}
.team .item h4 {
	font-size: 25px;
	font-weight: 600;
	color: var(--white);
}
.team .item span {
	font-size: 16px;
	color: var(--white);
	display: inline-block;
}
/*********************/
.process {
	counter-reset: process;
}
.process .item {
	position: relative;
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: var(--color2);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.process .item:before {
	position: absolute;
	display: block;
	top: 0;
	left: 100%;
	width: 72px;
	height: 72px;
	transform:  rotate(35deg) translateX(-50%);
	background-image: url('../upload/arrow.png');
	background-size: contain;
	content: '';
	animation: bobble 3s ease-in-out infinite alternate;
}
@keyframes bobble {
	0% {
	  transform: rotate(35deg) translateX(-50%) translateY(0) scale(1);
	}
	100% {
	  transform: rotate(35deg) translateX(-50%) translateY(-20px) scale(1.1);
	}
}
.process [class*='col-']:last-child .item:before {
	display: none;
}
.process .item .image {
	position: relative;
	overflow: hidden;
}
.process .item .image img {
	width: 100px;
	filter: drop-shadow(0px 1000px 0 var(--color5));
	transform: translateY(-1000px);
}
.process .item h4 {
	font-size: 20px;
	font-weight: 700;
	color: var(--white);
	padding: 0 20px;
}
.process .item .desc {
	background-color: var(--color5);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
	transform: scale(1.3);
	opacity: 0;
	transition: var(--transition);
}
.process .item .desc p {
	margin-bottom: 0;
}
.process .item:hover .desc {
	transform: scale(1);
	opacity: 1;
}
.process .process-number {
	position: absolute;
	top: 25px;
	left: 25px;
	z-index: 1;
}
.process .process-number:before {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	transition: var(--transition);
	background: var(--color5);
	color: var(--white);
	font-size: 18px;
	counter-increment: process;
	content: "0" counter(process) "";
}
.process .item:hover .process-number:before {
	background: var(--color2);
	transform: rotate(360deg);
}
/*********************/

/* footer */
footer {
	background-size: cover;
}
footer h4 {
	position: relative;
	color: #fff;
}
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);
}
.footer-social {
	display: flex;
	gap:10px;
}
.footer-social li {
	list-style: none;
}
.footer-social li a {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 35px;
	text-align: center;
	border: 1px dashed rgba(255,255,255,0.2);
	transition: var(--transition);
}
.footer-social li a img {
	height: 20px;
	filter: brightness(0) invert(1);
	transition: var(--transition);
}
.footer-social li a:hover {
	background-color: var(--color1);
}
.footer-social li a:hover img {
	/*filter: none;*/
}
.footer-bottom {
	background-color: rgba(0,0,0,0.2);
}

.whatsappfix {
	position: fixed;
	bottom: 10px;
	left: 10px;
	z-index: 1;
}

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

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}
.scroll-btn i {
  display: inline-block;
  background-color: var(--color1);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
}
.scroll-btn:focus i, .scroll-btn:hover i {
  background-color: var(--color2);
  color: var(--white);
}
.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: 1300px) {
    .navbar-brand { font-size:24px;}
    .header-right:before { width:20%;}
}
@media only screen and (max-width: 480px) {
	.logo-bg { width: 100%; transform: none; left: 0;}
	.logo-bg::before { display: none;}
	.nav-item { padding: 5px;}
	.nav-link { color: var(--white);}
	.navbar-nav .nav-link.show, .nav-link:focus, .nav-link:hover { color: var(--color1); }
	.navbar-nav .nav-link.show.dropdown-toggle::after { transform: rotate(180deg);}
    .nav-item.dropdown .dropdown-menu { position:relative; width:100%; display:none; background-color: var(--color1);}
    .nav-item.dropdown .dropdown-menu.show { display:block;}
	.dropdown-item { color: var(--black);}
	.owl-slide .item .btn1 { display: none;}
	.banner__content { max-width: 250px; height: 200px;}
	.banner__content h1 { font-size: 24px; line-height: initial; margin: 0;}
	.owl-slide .owl-nav { right: 15px; gap:15px;}
	.owl-slide .owl-nav > div { width: 30px; height: 30px; line-height: 30px; opacity: 0.8;}
	.heading h1 { font-size: 30px; line-height: 36px;}
	.heading h5 { margin: 0; font-size: 18px;}
	.team .item h4 { font-size: 18px;}
	.team .item span { font-size: 14px;}
	.process .item:before { top:100%; left: auto; right: 0; transform: rotate(135deg) translateY(35%) !important;}
    .social li img {    width: 14px;}
    .navbar-brand {
    font-size: 22px;}
    
}
