/* main css */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Geologica:wght,CRSV@100..900,0&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --white: #fff;
  --grey: #d0d0d0;
  --grey2: #F3F5F4;
  --black: #000;
  --white-rgb: 255, 255, 255;
  --grey-rgb: 208, 208, 208;
  --black-rgb: 21, 21, 21;
  --color1: #79eb93;
  --color2: #d6ffad;
  --color3: #161616;
  --color4: #cfb53b;
  --color5: #20245e;
  --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", sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
	color: var(--color3);
	font-weight: 600;
}

.bg-overlay {
	position: relative;
}
.bg-overlay:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 0.8
}
.bg-overlay.theme-overlay:before {
	background-color: var(--color5);
}
.bg-overlay.white-overlay:before {
	background-color: #fff;
}
.bg-overlay.black-overlay:before {
	background-color: #000;
}
.bg-overlay .container {
	position: relative;
	z-index: 1;
}

.text-justify { text-align: justify; }

.bg-1 { background-color: var(--color1); }
.bg-2 { background-color: var(--color2); }
.bg-3 { background-color: var(--color3); }
.bg-4 { background-color: var(--color4); }
.bg-5 { background-color: var(--color5); }
.bg-grey { background-color: var(--grey); }
.bg-grey2 { background-color: var(--grey2); }

/* header */
header { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px;
}
.topbar {  }
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 10px;
    color: var(--white);
}
.topbar .item i {
    text-align: center;
	font-size: 14px;
}
.topbar .item span {
	display: block;
}
.topbar .item a {
	font-size: 16px;
	color: var(--white);
	text-decoration: none;
}
.topbar .social {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(0, 0, 0, 0.20);
    border-radius: 0px;
    padding: 5px 25px;
}
.social li {
	display: inline-block;
	color: var(--white);
}
.social li a {
	position: relative;
	display: flex;
	overflow: hidden;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(var(--white-rgb), .2);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.social li a::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,var(--color1) 0%, var(--color2) 100%);
	transform: translateX(-100%);
	transition: var(--transition);
}
.social li a img {
	width: 16px;
	filter: drop-shadow(0 100px 0 var(--color2));
	transform: translateY(-100px);
}
.social li a:hover::before {
	transform: translateX(0);
}
.social li a:hover img {
	filter: none;
	transform: translateY(0);
}

.navbar {
	position: relative;
	z-index: 10;
	background-color: rgba(var(--white-rgb), .1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(var(--grey-rgb), .1);
	border-radius: 12px;
	/* box-shadow: 0 10px 10px rgba(0,0,0,0.2); */
}
.navbar-brand {
	font-size: 36px;
	font-weight: bold;
	color: var(--white);
	padding: 0;
}
.navbar-brand img {
	height: 80px;
}
.nav-item {
	position: relative;
	padding: 0 10px;
}
.nav-item .nav-link {
	color: var(--white);
	font-size: 18px;
	font-weight:600;
	padding: 30px;
}
.nav-item:hover .nav-link {
	color: var(--color1);
}
.navbar-toggler { border:none; padding:0;}
.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: 300px;
	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;
}
/*
.navbar-right a {
	position: relative;
	overflow: hidden;
	display: flex;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(var(--white-rgb), .5);
	border-radius: 50%;
	color: var(--white);
}
.navbar-right a::before {
	content: '';
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(90deg,var(--color1) 0%, var(--color2) 100%);
	transform: translateX(-100%);
	transition: var(--transition);
}
.navbar-right a:hover::before {
	transform: translateX(0);
}*/
/*********************/
/* slider */
.slide_wrap {
	position: relative;
}
.slide_wrap img {
	width: 100%;
	height: 100dvh;
	object-fit: cover;
}
.slide_wrap .desc {
	position: absolute;
	inset: 0;
	background-color: rgba(var(--black-rgb), .5);
	display: flex;
	align-items: center;
	color: var(--white);
}
.slide_wrap .desc h1 {
	color: inherit;
	font-size: 60px;
	text-transform: capitalize;
}
/*********************/
.scroll1 {
	overflow: hidden;
	white-space: nowrap;
}
.customMarquee {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	font-size: 30px;
	color: var(--white);
	padding:5px 0;
}
.marqueeInner {
	display: inline-flex;
	align-items: center;
	will-change: transform;
}
.customMarquee .marquee-item::before {
	content: '✳';
	margin: 0 30px;
}
/*********************/
.owl-slide .item {
	position: relative;
}
.owl-slide .item::before {
	position: absolute;
	inset: 0;
	content: '';
	background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.owl-slide .item img {
	width: 100%;
	height: calc(100vh - 45px);
	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: 60px;
}
.owl-slide .item .desc h1 {
	font-size: 48px;
	font-weight: 900;
	color: var(--white);
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
	text-transform: uppercase;
	margin-bottom: 0;
}
.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: fadeInLeft;
	animation-delay: 0.5s;
}
.owl-slide .owl-item.active .btn1 {
	animation-name: fadeInUp;
}
.owl-slide .owl-nav {
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.owl-slide .owl-nav > div {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	border: 2px solid var(--white);
	border-radius: 50%;
	font-size: 20px;
	opacity: 0.6;
	transition: var(--transition);
}
.owl-slide .owl-nav > div:hover{ 
	background-color: var(--color1);
	border-color: var(--color1);
	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;
}
/*********************/
.btn1 {
	display: inline-block;
	background-image: linear-gradient(90deg, var(--color2), var(--color1), var(--color2));
    background-size: 200% 100%;
    background-position: bottom right;
    background-repeat: no-repeat;
    color: var(--black);
    background-color: transparent;
    border-radius: 10px;
	border: none;
    -webkit-border-radius: 10px;
	padding: 15px 30px;
	font-size: 16px;
	font-weight: 500;
	transition: var(--transition);
}
.btn1:hover {
    background-position: bottom left;
}
/*********************/
.heading {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.heading span {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6em;
    text-transform: capitalize;
    color: var(--color3);
    padding-left: 35px;
}
.heading span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../upload/arrow.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 24px;
    height: 5px;
}
.heading h2 {
    position: relative;
    font-size: 48px;
    font-weight: 800;
    text-transform: capitalize;
    color: var(--color3);
    margin-bottom: 0;
}
/*********************/
.welcome .marqueeInner {
	gap: 50px;
}
.welcome .marquee-item img {
	height: 100px;
}
/*********************/
.owl-arrow .owl-nav {
	display: flex;
	justify-content: center;
	gap:10px;
}
.owl-arrow .owl-nav div {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border:1px solid var(--white);
	color: var(--white);
	transition: var(--transition);
}
.owl-arrow .owl-nav div:hover {
	color: var(--black);
	border-color: transparent;
    background: linear-gradient(90deg,var(--color1) 0%, var(--color2) 100%);
}
/* counter */
.counter_wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 80%;
	margin: 0 auto;
}
.counter_wrap .item {
	position: relative;
	aspect-ratio: 1/1;
	border-radius: 50%;
	z-index: 1;
	transform: scale(1.05);
}
.counter_wrap .item::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    display: inline-block;
    background: linear-gradient(90deg,var(--color1) 0%, var(--color2) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s linear;
    -webkit-transition: opacity 0.3s linear;
    animation: crotate 3s infinite linear;
    box-shadow: 0 0 80px 1px rgba(var(--grey-rgb), 1);
    -webkit-box-shadow: 0 0 80px 1px rgba(var(--grey-rgb), 1);
}
@keyframes crotate {
	0% { transform: rotate(0); }
	100% { transform: rotate(360deg); }
}
.counter_wrap .item .inner {
	position: relative;
	z-index: 1;
	background-color: var(--white);
    border-radius: inherit;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	font-size: 18px;
	padding: 30px;
    box-shadow: 0 0 20px 1px rgba(var(--grey-rgb), 0.5);
    -webkit-box-shadow: 0 0 20px 1px rgba(var(--grey-rgb), 0.5);
}
.counter_wrap .item .inner h1 {
	font-size: 60px;
}
.counter_wrap .item:hover::before {
	opacity: 1;
}
/*********************/
.features {
	background-size: cover;
}
.features .item {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}
.features .img1 {
	border-radius: 20px;
}
.features .item > img {
	position: absolute;
	inset: 0;
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	opacity: 0;
	transition: var(--transition);
}
.features .item .desc {
	/*aspect-ratio: 1/1;*/
	padding: 30px;
	background-color: rgba(var(--grey-rgb), .1);
	backdrop-filter: blur(10px);
	color: var(--white);
}
.features .item .desc .icon {
	display: flex;
	width: 70px;
	height: 70px;
	background: linear-gradient(90deg,var(--color2) 0%, var(--color1) 100%);
	border: 10px solid var(--white);
	border-radius: 20px;
	padding: 8px;
	margin-bottom: 15px;
}
.features .item .desc h4 {
	color: inherit;
}
.features .item .desc a {
	color: inherit;
}
.features .item .desc p {
	margin:0;
}
.features .item:hover > img {
	opacity: 1;
}
.features .item:hover .desc {
	background-color: rgba(var(--black-rgb), .6);
	backdrop-filter: blur(0);
}
.features .owl-arrow .owl-nav {
	position: absolute;
	bottom: 105%;
	right: 0;
}
/*********************/
.services .item {
	display: block;
	background-color: var(--white);
	/* backdrop-filter: blur(10px); */
	padding: 10px;
	border-radius: 20px;
	border: 1px solid rgba(var(--grey-rgb), .5);
	color: var(--black);
	overflow: hidden;
	transition: var(--transition);
}
.services .item .title {
	display: flex;
	justify-content: space-between;
}
.services .item .title h4 {
	color: inherit;
	width: 80%;
}
.services .item .title img {
	width: auto;
	height: 40px;
	transform: translateY(-100px);
	filter: drop-shadow(0 100px 0 var(--black));
}
.services .item .desc {
	border-top: 1px solid rgba(var(--grey-rgb), .3);
	margin: 10px;
	transition: var(--transition);
}
.services .item .desc p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 0;
}
.services .item > img {
	border-radius: 10px;
	height: 200px;
	object-fit: cover;
	transition: var(--transition);
}
.services .item:hover,
.services .owl-item.center .item {
	background-color: var(--grey2);
}
.services .item:hover .title img,
.services .owl-item.center .item .title img {
	filter: drop-shadow(0 100px 0 var(--color1));
}
.services .item:hover .desc,
.services .owl-item.center .item .desc {
	margin-bottom: -80px;
}
.services .item:hover > img,
.services .owl-item.center .item > img {
	height: 290px;
}
.services .owl-nav div {
	border:1px solid var(--black);
	color: var(--black);
}

.service_list .item {
	position: relative;
    background-size:cover;
    background-position:center;
	border-radius: 25px;
	background-color: var(--white);
	box-shadow:0 0 25px rgba(var(--black-rgb), .2);
	display: grid;
	grid-template-columns:1fr 1fr;
	grid-gap:10px;
	padding:10px;
}
.service_list .item > img {
	border-radius: 20px;
	height:100%;
	object-fit:cover;
	/*display:none;*/
}
.service_list .item .desc {
	/*position: absolute;*/
	/*inset: 0;*/
	display: flex;
	justify-content: end;
	align-items: center;
	/*padding: 10px 30px;*/
}
.service_list .item .desc .inner {
	/*width: 45%;*/
	background-color: rgba(var(--white-rgb), .9);
	backdrop-filter: blur(10px);
	padding: 30px;
	border-radius: 20px;
    border: 1px solid rgba(var(--black-rgb), .5);
    font-size: 14px;
    line-height: initial;
}
.service_list .item .lists {
}
.service_list .item .lists .list_item {
	display: flex;
	gap:10px;
	padding-top: 15px;
	border-top: 1px solid rgba(var(--black-rgb), .5);
}
.service_list .item .lists .list_item img {
	height: 45px;
}
.service_list .item .lists .list_item h5 {
	margin-bottom: 5px;
}
.service_desc .img1 {
	border-radius: 20px;
}
.custom1 .item {
	background: linear-gradient(90deg,var(--color1) 0%, var(--color2) 100%);
	padding: 30px 15px;
	border-radius: 10px;
	height:100%;
}
.custom1 .item img {
	height: 80px;
	margin-bottom: 15px;
}
.custom1 .item i {
	margin-bottom: 15px;
}
.custom2 .img1 {
	border-radius: 10px;
}
.custom2 .item {
	background: linear-gradient(90deg,var(--color1) 0%, var(--color2) 100%);
	border-radius: 10px;
	padding: 20px;
	height:100%;
	/*display: grid;*/
	/*grid-template-columns: repeat(7, 1fr);*/
	/*grid-gap: 10px;*/
}
.custom2 .item .icon {
	width: 80px;
	height: 80px;
	border-radius: 10px;
	margin-bottom: 15px;
	background-color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
}
.custom2 .item img {
	background: linear-gradient(90deg,var(--color1) 0%, var(--color2) 100%);
	height: 60px;
	padding: 10px;
	border-radius: 5px;
}
.custom2 .item h4 {
	font-size: 18px;
}
.custom3 img {
	background-color: var(--white);
	border-radius: 20px;
}
.custom3 .item {
    height:100%;
	background-color: var(--white);
	padding:30px;
	border-radius: 20px;
}

.clients .item {
    background-color:var(--white);
    border-radius:5px;
    overflow:hidden;
}
.clients .item img {
    width:100%;
    height:100px;
    object-fit:contain;
}
/*********************/
.work {
    background-size:cover;
}
.work .wrap {
  	position: -webkit-sticky;
	position: sticky;
	top: 0;
	overflow: visible
}
.work .wrap img {
	width: 100%;
	/*height: 200px;*/
	object-fit: cover;
	border-radius: 20px;
	margin: 20px 0 40px;
}
.list-view .item {
	display: flex;
	align-items: center;
	gap:10px;
	border-left: 1px solid rgba(var(--grey-rgb), .2);
	padding: 30px;
}
.list-view .item:not(:last-child) {
	border-bottom: 1px solid rgba(var(--grey-rgb), .2);
}
.list-view .item .desc {
	display: flex;
	flex-direction: column;
	gap:10px;
	overflow:hidden;
}
.list-view .item .desc img {
	height: 40px;
	transform:translateY(-100px);
	filter: drop-shadow(0 100px 0 var(--color1));
}
.list-view .item .desc h4 {
	color: inherit;
	margin: 0;
	transition: var(--transition);
}
.list-view .item .btn {
	position: relative;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border: 1px solid var(--white);
	border-radius: 50%;
	color: var(--white);
	overflow: hidden;
	transition: var(--transition);
}
.list-view .item .btn::before {
	content: '';
	position: absolute;
	z-index: -1;
	inset: 0;
    background: linear-gradient(90deg,var(--color1) 0%, var(--color2) 100%);
	transform: translateX(100%);
	transition: var(--transition);
}
.list-view .item:hover .desc h4 {
	color: var(--color1);
}
.list-view .item:hover .btn {
	border-color: transparent;
	color: var(--black);
	transform: rotate(-45deg);
}
.list-view .item:hover .btn::before {
	transform: translateX(0);
}
/*********************/
.accordion-item:first-of-type,
.accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item:last-of-type {
	border-radius: inherit;
	border: none;
}
.accordion-item {
	position: relative;
	/* background: linear-gradient(90deg,var(--color1) 0%, var(--color2) 100%); */
	background-color: transparent;
	margin-bottom: 15px;
	background-color: rgba(var(--grey-rgb), .1);
	backdrop-filter: blur(10px);
	border-radius: 15px !important;
	overflow: hidden;
	border:none;
}
.accordion-header .accordion-button {
	position: static;
	z-index: 1;
	background-color: transparent;
	outline: none;
	box-shadow: none;
	color: var(--color3);
	font-size: 18px;
	line-height: 1.4;
}
.accordion-header .accordion-button::before {
	content: '';
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(90deg,var(--color1) 0%, var(--color2) 100%);
}
.accordion-header .accordion-button.collapsed::before {
	background: none;
}
.accordion-header .accordion-button.collapsed {
	color: var(--white);
}
.accordion-body {
	padding-top: 0;
}
.accordion-button::after {
	filter: brightness(0) invert(1);
}
.accordion-button:not(.collapsed)::after {
	filter: none;
}
/* testimonials */
.testimonials .wrap {
	border-radius: 20px;
	box-shadow: 0 0 40px rgba(var(--black-rgb), .1);
}
.testimonials .item {
	/*background-color: var(--grey2);*/
	background: linear-gradient(90deg,var(--color1) 0%, var(--color2) 100%);
	border: 1px solid rgba(var(--grey-rgb), .3);
	border-radius: 10px;
	padding: 20px;
}
.testimonials .item svg {
	height: 30px;
	margin-bottom: 15px;
}
.testimonials .item img {
	width: 40px;
	height: 40px;
	border-radius: 40px;
}
.testimonials .item .name {
	display: flex;
	flex-direction: column;
	line-height: initial;
	font-size: 14px;
}
/*********************/
/* 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-size: cover;
}
.form1 {
	border-radius: 30px;
	box-shadow: 0 0 20px 5px rgb(0 0 0 / 2%);
}
.form1 .form-control {
	background-color: var(--grey2);
	padding: 10px 15px;
}
.contactinfo .item {
	display: flex;
	gap:10px;
}
.contactinfo .item .icon {
	flex-shrink: 0;
	display: flex;
	width: 70px;
	height: 70px;
	align-items: center;
	justify-content: center;
	background-color: var(--white);
	border-radius: 10px;
	font-size: 24px;
}
.contactinfo .item .icon i {
	display: flex;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg,var(--color1) 0%, var(--color2) 100%);
	border-radius: 10px;
	font-size: 24px;
}
.contactinfo .item p {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 0;
}
.contactinfo .item span {
	display: block;
	font-size: 14px;
	line-height: initial;
	color: var(--color3);
}
/*********************/
.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;
}
/*********************/
/* whyus */
.whyus { 
	position: relative;
	background-size: cover; 
	background-attachment: fixed; 
	padding: 100px 0;
}
.whyus:before { 
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*content: '';*/
	background-color: #000;
	opacity: 0.7;
}
.whyus .grid_view {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px;
}
.whyus .item {
	border: 1px solid #fff;
	border-radius: 20px;
}
.whyus .item img {
	width: 80px;
	margin: 30px 0;
	filter: brightness(0) invert(1);
}

/*********************/
.certificates .item {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	border: 1px solid #ccc;
	padding: 5px;
	background-color: var(--white);
}
/*********************/

/* footer */
footer {
	background-size: cover;
}
footer h4 {
	position: relative;
	color: inherit;
	margin-bottom: 15px;
}
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;
}
footer .links.v2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
footer .links li {
	display: block;
	margin-bottom: 10px;
}
footer .links li a {
	display: block;
	color: var(--white);
}
.footer-bottom {
	border-top: 1px solid rgba(var(--grey-rgb), .2);
}
.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(--color1);
	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);
}

.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(--color3);
  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: 20px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/************************/
#google_translate_element select {
    display:inline-block;
    width:auto;
    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;}

.socialfix {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	padding: 5px;
	display: flex;
	gap: 6px;
	flex-direction: column;
	background-color: rgba(var(--white-rgb), .5);
	border: 1px solid var(--white);
	border-radius: 0 8px 8px 0;
	z-index: 1;
}
.socialfix li {
	display: block;
}
.socialfix img {
	height: 28px;
}
/**************/
.whatsappfix {
    position: fixed;
    left: 10px;
    bottom: 70px;
    z-index: 1;
}
.whatsappfix img {
    height:60px;
    border-radius: 10px;
}
.bullfix {
    position: fixed;
    left: 0;
    right:0;
    bottom: 0;
    z-index: 1;
}
.bullfix img {
    height:60px;
}
/************************/
.breadcrumb {
	position: relative;
	padding: 180px 0 60px;
	margin-bottom: 0;
	background-size:cover;
	background-position:center;
}
.breadcrumb h2, .breadcrumb a { color: var(--white);}
.founder img { border-radius: 20px;}
/*******************/
.main-box {
    display: flex;
    background-color: var(--color6);
    padding:0;
	margin: 0;
    width: 100%;
	gap: 20px;
}
.main-box img {
    aspect-ratio:2/1;
    object-fit:cover;
	border-radius: 15px;
}
.box {
	height: 600px;
	/* padding:15px; */
    background-color: var(--white);
	/* border-right: 1px solid var(--white); */
	webkit-transition: 0.8s;
	-o-transition: 0.8s;
	transition: 0.8s;
	position: relative;
	overflow: hidden;
	list-style: none;
	border-radius: 20px;
}
.box.active {
    width: 100% !important;
}
.box:not(.active) {
	flex-shrink: 0;
    width: 120px !important;
}
.detail {
    /* width: calc(100% - 100px); */
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top:0;
	background: linear-gradient(90deg,var(--color1) 0%, var(--color2) 100%);
    /* color: var(--color4); */
    opacity: 0;
    padding: 40px;
    box-sizing:border-box;
    webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}
.box.active .detail {
    opacity: 1;
    -webkit-transition-delay: 0.6s;
    -moz-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    transform: none;
}
.box > span {
	font-family: "Roboto", sans-serif;
    font-size: 30px;
	font-weight: 600;
	line-height: initial;
    writing-mode: vertical-rl;
    height: 100%;
	padding: 20px 0 100px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* color: var(--white); */
    /* letter-spacing: 4px; */
    width: 120px;
    transform: rotate(180deg);
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    /* margin: 0 auto; */
}
.box.active > span {
	/* background-color: var(--black); */
	left:0;
	right:auto;
	margin:0;
  	font-weight:600;
	color: var(--color3);
	display: none;
}/*
.box:not(.active):hover {
    width: 11% !important;
    transition: all 0.1s ease-in-out;
}
.box:not(.active):hover > span {
    width: 100% !important;
	color: var(--color3);
    transition: all 0.1s ease-in-out;
}*/
 
.mutual_fund .profile li {
    position: relative;
    display: flex;
    gap:15px;
    margin-bottom: 15px;
}
.mutual_fund .profile li:before {
    position: relative;
    content: '\f101';
    font-family: 'FontAwesome';
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #04396c;
    color: #fff;
    font-size: 28px;
    display: block;
    text-align: center;
    flex-shrink: 0;
}
.mutual_fund .profile li h3 {
    margin-bottom: 0;
}

.growing {
	animation:in 3s ease-out infinite forwards;
	animation-delay:1s;
	/*color:#fff;*/
	font-weight:500;
	margin-bottom:0;
	opacity:0;
	text-transform:uppercase
}
@keyframes in{
	0%{letter-spacing:0;opacity:0}
	to{letter-spacing:29px;opacity:1}
}

/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
	header { padding:10px; }
	.navbar-brand { padding:5px; }
	.navbar-brand img { height:40px;}
	.navbar-right .btn1 { padding:5px 10px; font-size:12px;}
	.nav-item { padding:0; }
	.nav-item .nav-link { padding:10px; text-align: center; border-top: 1px solid rgba(var(--white-rgb), 0.1);}
	.navbar-collapse { margin:0 -12px;}
	.slide_wrap .desc h1, .heading h2 { font-size:30px; }
	.counter_wrap { grid-template-columns:1fr 1fr; width: 100%; }
	.counter_wrap .item { width:97%; }
	.counter_wrap .item .inner h1 { font-size:36px; line-height:inherit; }
	.counter_wrap .item .inner p { font-size:14px; margin-bottom:0; line-height:initial; }
	.features .owl-arrow .owl-nav { top:5px; right:5px; bottom:auto; }
	.features .item .desc { aspect-ratio: initial;}
	.breadcrumb { padding: 160px 0 90px; }
	.service_list .item { grid-template-columns: 1fr;}
	/*.service_list .item > img { display: block; margin-bottom: -30px;}*/
	.service_list .item .desc { padding:0; }
	.service_list .item .desc .inner { width:100%; padding:20px; }
	.service_list .item .lists .list_item img { height:45px; }
	.custom1 .item h4 { font-size:18px; margin-bottom:0; }
	.main-box { flex-direction:column; gap:10px; }
	.box:not(.active) { width: 100% !important; }
	.box { height:75px; }
	.box.active { width:100% important; height:400px; }
	.box > span { padding: 0 20px; writing-mode: initial; font-size: 22px; transform: rotate(0); width:100%; }
	.detail { padding:20px; }
	.detail h2 { font-size:20px; }
}