/* main css */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --white-rgb: 255, 255, 255;
  --black-rgb: 21, 21, 21;
  --color1: #022e51;
  --color2: #06aba5;
  --color3: #058294;
  --color4: #fff2f2;
  --color5: #ebf5de;
  --color6: #fdf4dd;
  --color7: #713cb7;
  --color8: #4a248f;
  --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: "Inter", sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Outfit", sans-serif;
}

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

.blogs .item {
	display: block;
	background-color: var(--grey);
	font-size: 14px;
	color: var(--black);
	border-radius: 20px;
	overflow: hidden;
	padding: 10px;
}
.blogs .item figure {
    position: relative;
    width: 100%;
    transition: var(--transition);
	border-radius: 10px;
	overflow: hidden;
}
.blogs .item figure img {
	width: 100%;
	aspect-ratio: 2/1;
	object-fit: cover;
	transition: var(--transition);
}
.blogs .item h4 {
    font-size:20px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.blogs .item p {
	-webkit-line-clamp: 3;
	line-clamp: 3;
	line-height: 1.4;
	margin-bottom: 10px;
}
.blogs .item .desc {
	padding: 0 10px;
}
.blogs .item .table td {
	padding: 3px 10px;
}
.blogs .item .viewmore {
	margin: 0 10px;
	color: var(--color4);
}
.blogs .item .viewmore span:last-child {
	color: var(--color5);
}
.blogs .item:hover figure img {
	transform: scale(1.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); }

/* header */
.header { 
	position: relative;
	z-index: 10;
	/*position: absolute;
	padding: 20px;
	left: 0;
	right: 0;
	z-index: 10;*/
}
.topbar {
	/*background-color: rgba(var(--white-rgb), .7);
	backdrop-filter: blur(5px);
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom: 1px solid rgba(var(--black-rgb), .1);*/
}
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 10px;
}
.topbar .item i {
	display: flex;
	justify-content: center;
	align-items: center;
	/*width: 40px;
	height: 40px;
	border-radius: 50%;
	border:1px solid rgba(var(--black-rgb), .1);*/
	font-size: 14px;
	color: var(--color2);
}
.topbar .item span {
	display: block;
	color:rgba(var(--black-rgb), .5);
}
.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 0;*/
}
.social li {
	display: block;
	color: var(--white);
}
.social li a {
	display: flex;
	width: 35px;
	height: 35px;
	border: 1px solid rgba(var(--white-rgb), .2);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.social li img {
	width: 16px;
	filter: brightness(0) invert(1);
}
.social li a:hover {
	background-color: var(--white);
}
.social li a:hover img {
	filter: none;
}

.navbar {
	/*background-color: rgba(var(--white-rgb), .7);
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);*/
	/* 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: 60px; 
	padding: 5px;
}
.nav-item {
	position: relative;
	padding: 0 10px;
}
.nav-item .nav-link {
	color: var(--black);
	font-size: 14px;
	padding: 30px;
}
@media screen and (min-width: 1281px) {
    .nav-item .nav-link { font-size: 18px;}
}
.nav-item:hover .nav-link {
	color: var(--color1);
}
.navbar-toggler { border:none; padding:5px;}
.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 rgba(var(--white-rgb), .2);
}
.dropdown-toggle::after {
	content: '\f107';
	font-family:"FontAwesome";
	border: none;
	vertical-align: bottom;
}
.dropdown-item {
	color: var(--white);
	padding: 10px 15px;
	transition: var(--transition);
	white-space:wrap;
}
.dropdown-item:hover {
	color: var(--color1);
	background-color: var(--white);
	padding-left: 25px;
}
.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 var(--color1);
	border-radius: 0;
	box-shadow: var(--shadow);
	background-color: var(--color1);
	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;
}
/*********************/
/* slider */
.owl-slide .item {
	position: relative;
}
.owl-slide .item::before {
	position: absolute;
	inset: 0;
	/*content: '';*/
	background-color: var(--color1);
	opacity: 0.5;
	/* background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7) 100%); */
}
.owl-slide .item img {
	width: 100%;
	/*height: 550px;*/
	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;
	padding-top: 80px;
}
.owl-slide .item .desc h1 {
	font-size: 48px;
	font-weight: 700;
	color: var(--white);
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
	letter-spacing: 1px;
	/* 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 > 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(--color3);
	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(--color2);
	outline: 1px solid var(--color2);
	outline-offset: 5px;
}
/*********************/
.btn1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  vertical-align: middle;
  display: inline-flex;
  gap:10px;
  text-align: center;
  background-color: var(--color1);
  border: none;
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  color: var(--white);
  line-height: 1;
  padding: 16px 20px;
  border-radius: 8px;
  -webkit-transition: -webkit-transform .3s cubic-bezier(0.25, 0.46, 0.45, 0.5);
  transition: -webkit-transform .3s cubic-bezier(0.25, 0.46, 0.45, 0.5);
  transition: transform .3s cubic-bezier(0.25, 0.46, 0.45, 0.5);
  transition: transform .3s cubic-bezier(0.25, 0.46, 0.45, 0.5), 
  -webkit-transform .3s cubic-bezier(0.25, 0.46, 0.45, 0.5);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  will-change: transform
}
.btn1:before,
.btn1:after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, var(--color2)), color-stop(0, transparent), color-stop(50%, transparent), color-stop(0, var(--color2)), color-stop(75%, var(--color2)), color-stop(0, transparent));
  background: linear-gradient(90deg, var(--color2) 25%, transparent 0, transparent 50%, var(--color2) 0, var(--color2) 75%, transparent 0);
  -webkit-transform: translateY(var(--progress, 100%));
  transform: translateY(var(--progress, 100%));
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  z-index: -1
}
.btn1:after {
  --progress: -100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(25%, transparent), color-stop(0, var(--color2)), color-stop(50%, var(--color2)), color-stop(0, transparent), color-stop(75%, transparent), color-stop(0, var(--color2)));
  background: linear-gradient(90deg, transparent 0, transparent 25%, var(--color2) 0, var(--color2) 50%, transparent 0, transparent 75%, var(--color2) 0)
}
.btn1:hover {
  /* color: var(--white-color); */
  -webkit-transition-delay: .4s;
  transition-delay: .4s
}
.btn1:hover:before,
.btn1:hover:after {
  --progress: 0
}
.btn1.type2 { background-color: var(--color7);}
.btn1.type2:before {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, var(--color8)), color-stop(0, transparent), color-stop(50%, transparent), color-stop(0, var(--color8)), color-stop(75%, var(--color8)), color-stop(0, transparent));
  background: linear-gradient(90deg, var(--color8) 25%, transparent 0, transparent 50%, var(--color8) 0, var(--color8) 75%, transparent 0);
}
.btn1.type2:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(25%, transparent), color-stop(0, var(--color8)), color-stop(50%, var(--color8)), color-stop(0, transparent), color-stop(75%, transparent), color-stop(0, var(--color8)));
  background: linear-gradient(90deg, transparent 0, transparent 25%, var(--color8) 0, var(--color8) 50%, transparent 0, transparent 75%, var(--color8) 0)
}
/*********************/
.heading {
    position: relative;
    z-index: 1;
}
.heading span {
    position: relative;
	display: inline-flex;
	align-items: center;
	gap: 5px;
    text-transform: uppercase;
    font-size: 18px;
    color: var(--color2);
	overflow: hidden;
}
.heading span::before {
	content: '';
	width: 30px;
	height: 30px;
	background-image: url('../../upload/dna.svg');
	background-size: contain;
	background-repeat: no-repeat;
	filter: drop-shadow(0 100px 0 var(--color2));
	transform: translateY(-100px);
}
.heading h2 {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 50px;
    color: var(--color1);
    margin-bottom: 0;
    position: relative;
}
/*********************/
.welcome {
	position: relative;
}
.welcome figure {
	position: relative;
}
.welcome figure img {
	border-radius: 15px;
}
.grid-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.grid-list i {
	color: var(--color1);
}

/*********************/
.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 {
	background-size: cover;
}
.home_products .owl-carousel .owl-stage-outer { overflow:initial;}
.home_products .item {
	display: block;
	height:100%;
	position: relative;
	background: var(--white);
	padding: 20px;
	border-radius: 50px 50px 50px 0;
	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(--color1);
	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 {
    display:flex;
    justify-content:space-between;
    font-size:18px;
	color: var(--color1);
	transition: all .5s ease-in-out;
	margin:0;
}
.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;
}
/*********************/
/* counter */
.counter_wrap {
	position: relative;
	border-radius: 20px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	color: var(--white);
}
.counter_wrap .item-counter {
	position: relative;
	display: flex;
	gap:10px;
	align-items:center;
	overflow:hidden;
}
.counter_wrap .item-counter:not(:last-child)::after {
	content: '';
	position: absolute;
	background-color: var(--white);
	width: 1px;
	height: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0.1;
}
.counter_wrap .item-counter img {
	height: 50px;
	filter:drop-shadow(0 100px 0 var(--color2));
	transform:translateY(-100px);
}
.counter_wrap .item-counter h1 { margin:0}
.counter_wrap .card{
	position: relative;
	display: flex;
	flex-direction:row;
	gap:10px;
	align-items:center;
	overflow:hidden;
	background:none;
	border:none;
	padding:0 !important;
	opacity:0;
    transform:translateY(25px);
    transition:.5s;
}
.card.show{
    opacity:1;
    transform:translateY(0);
}
@media screen and (max-width: 1280px) {
    .counter_wrap .item-counter { font-size:14px; }
    .counter_wrap .item-counter h1 { font-size:30px;}
    .welcome .heading h2 { font-size:36px;}
}

.grating {
	background-image: url('../../upload/pattern2.png');
	border-radius: 20px;
}
.grating > .shine {
	border-radius: 15px;
}
.grating .rating {
	display: flex;
	gap: 15px;
	margin-top: 15px;
	justify-content: center;
	align-items: center;
}
.grating .rating img {
	flex-shrink: 0;
}
.videowrap {
	border-radius: 20px;
	overflow: hidden;
	min-height: 300px;
	height: 100%;
}
.videowrap img {
	position: absolute;
	inset: 0;
	z-index: -1;
	height:100%;
	object-fit:cover;
}
.videowrap::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--color1);
	opacity: 0.5;
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    border: 0;
    width: 64px;
    height: 64px;
    line-height: 64px;
    -webkit-transition: all 1s cubic-bezier(0, 0, 0.2, 1);
    transition: all 1s cubic-bezier(0, 0, 0.2, 1);
    border-radius: 50%;
    background: hsla(0, 0%, 100%, .2);
    margin: 0 auto;
    display: inline-block;
	font-size: 24px;
    text-align: center;
    color: var(--white);
}
.video-play-btn:hover {
	background-color: var(--color2);
}
.video-play-btn:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    -webkit-transition: .3;
    transition: .3;
    border-radius: 50%;
    border: 1px solid var(--white);
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}
.video-play-btn:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    -webkit-transition: .3;
    transition: .3;
    border-radius: 50%;
    border: 1px solid var(--white);
    -webkit-animation: ripple 2s linear 1s infinite;
    animation: ripple 2s linear 1s infinite;
}
@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    30% {
        opacity: .3
    }

    100% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0
    }
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    30% {
        opacity: .3
    }

    100% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0
    }
}

.customMarquee {
	overflow: hidden;
	white-space: nowrap;
	padding: 30px 0 25px;
}
.marqueeInner {
	display: inline-flex;
	align-items: center;
	will-change: transform;
}
.marquee-item {
	position: relative;
	margin-right: 100px;
	white-space: nowrap;
	/* transition: transform 0.3s, background 0.3s; */
	font-size: 48px;
}
.marquee-item::before {
	content: '+';
	position: absolute;
	left: calc(100% + 30px);
	color: var(--color2);
	font-size: 60px;
}
.scroll1 .marquee-item {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.scroll1 .marquee-item img {
	height: 60px;
	margin: auto;
}

.doctors figure {
	border-radius: 20px;
	overflow: hidden;
}
.doctors ul {
    position:relative;
	list-style: none;
	padding: 0;
}
.doctors ul li {
    position:relative;
	padding: 0 0 0 30px;
    margin-bottom:10px;
}
.doctors ul li:before {
    font-family:fontawesome;
    content:'\f00c';
    position:absolute;
    left:0;
    width:20px;
    height:20px;
    line-height:18px;
    border-radius:50%;
    border:2px solid var(--color2);
    display:flex;
    justify-content:center;
    font-size:12px;
    color:var(--color2);
    background-color:var(--white);
    box-shadow: 2px 2px var(--color2);
}
.doctors ul li:not(:first-child):after {
    content:'';
    position:absolute;
    left:9px;
    bottom:100%;
    width:2px;
    height:150%;
    background-color:var(--color2);
    z-index:-1;
}
/*********************/
/* testimonials */
.testimonials {
	background-size: cover;
}
.testimonials .item {
	position: relative;
	background-color: var(--color5);
	background-image: url('../../upload/pattern2.png');
	padding: 30px;
	border-radius: 15px;
}
.testimonials .item .desc {
	position: relative;
	border-radius: 15px;
	padding-top: 50px;
	margin-bottom: 25px;
	font-size: 20px;
	line-height: 1.4;
}
.testimonials .item .desc::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	background-image: url('../../upload/quote.svg');
	background-size: contain;
	background-repeat: no-repeat;
}
.testimonials .item .desc p {
	margin-bottom: 0;
}
.testimonials .item .thumb {
	display: flex;
	align-items: center;
	gap: 15px;
}
.testimonials .item img {
	width: 70px;
	height: 70px;
	border-radius: 70px;
	border:4px solid #fff;
}
.testimonials .owl-nav {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	gap: 10px;
}
.testimonials .owl-nav > div {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--white);
	box-shadow: var(--shadow);
	transition: var(--transition);
}
.testimonials .owl-nav > div:hover {
	background-color: var(--color2);
	color: var(--white);
}
/*********************/
.reviews {
    background-color: var(--color5);
    border-radius:16px;
    border:1px solid #edf1f7;
    padding:25px;
    height:100%;
	display: flex;
	flex-direction: column;
	gap:10px;
	justify-content: space-around;
}
.reviews img {
	height: 50px;
}
.reviews h2 {
	font-weight: 900;
	margin-bottom: 0;
}
.reviews h2 span {
	font-size: 24px;
}
.reviews .stars {
	font-size: 40px;
	color:#f5b400;
}
/* 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);
}
.gallery .item img {
    aspect-ratio:2/1.6;
    object-fit:cover;
}
/*********************/
.features {
	counter-reset: process;
}
.features.grid_view {
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:20px;
}
.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:before {
    content:'';
	position: absolute;
	inset: 0;
	top: auto;
	height:calc(100% - 40px);
	background: var(--white);
	border-radius:20px;
}
.features .item .count {
	position: absolute;
	right: 30px;
	top: 30px;
}
.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 {
	position: relative;
	width: 80px;
	height: 80px;
	line-height: 65px;
	border-radius: 50%;
	text-align: center;
	color: var(--white);
	font-size: 60px;
	background: var(--color2);
	margin: 0 auto;
	margin-bottom: 10px;
	box-shadow: 5px 5px 0 #F2F3F5;
	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{
	position: relative;
	padding:0 15px 10px;
	flex: 1;
}
.features .item .feature-content h4 {
	color: var(--color1);
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
}
.features .item .feature-content p {
	font-size: 14px;
	color: var(--color5);
	margin-bottom: 0;
}
/* form */
.enquiry_wrap {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	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: 15px;
}
.wrap-input-8 .input ~ .focus-border:before,
.wrap-input-8 .input ~ .focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--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;
}
.enquiry_wrap .heading span {
    filter: brightness(0) invert(1);
    opacity:0.6;
}
.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 {
	background-color: var(--white);
}
.certificates .item img {
    width:100%;
    height:100px;
    object-fit:contain;
	border: 1px solid #ccc;
	padding: 5px;
}
/*********************/

/* footer */
footer {
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.footer-top {
	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: 3px;
	background-color: var(--white);
	margin: 20px 0;
}
footer .links {
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}
footer .links li {
	display: block;
}
footer .links li a {
	display: block;
	color: var(--white);
}
footer .social li a {
	filter: brightness(0) invert(1);
}
.footer-bottom {
	background-color: rgba(0,0,0,0.3);
}
.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);
}

.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(--color2);
  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: 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: 15px;
  bottom: 50px;
  z-index: 1
}
.whatsappfix .video-btn > span {
  background-color: rgba(37, 211, 102,1);
}

.video-btn {
  text-align: initial;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  position: relative;
  font-size: 28px;
  font-style: italic;
  padding: 6px 0 6px 4.125rem;
  font-weight: 600;
}
.video-btn > span {
  position: absolute;
  left: 0;
  text-align: center;
  height: 3.6875rem;
  width: 3.6875rem;
  line-height: 3.6875rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255,255,255,.1);
  top: 0;
}
.video-btn:hover, 
.video-btn:focus {color: #fff;}

/*=== Pulse Animation ===*/
.spinner:before,
.spinner:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4.0625rem;
  margin-left: -4.0625rem;
  background-color: inherit;
  -webkit-animation: pluse 2s linear infinite;
  -ms-animation: pluse 2s linear infinite;
  -o-animation: pluse 2s linear infinite;
  animation: pluse 2s linear infinite;
  width: 8.125rem;
  height: 8.125rem;
  -webkit-border-radius: inherit;
  border-radius: inherit;
  opacity: 0;
  z-index: -2;
}
.spinner:after {
  -webkit-animation: pluse 2s linear 2.3s infinite;
  -ms-animation: pluse 2s linear 2.3s infinite;
  -o-animation: pluse 2s linear 2.3s infinite;
  animation: pluse 2s linear 2.3s infinite;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-ms-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-o-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
/************************/
.values figure {
	border-radius: 20px;
	border: 4px solid var(--color2);
	margin-bottom: 15px;
}
.values h3 {
	color: var(--color1);
	font-size: 36px;
}
.shine {
	position: relative;
	overflow: hidden;
}
.shine:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.shine:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.hours {
	border-radius: 20px 0 0 20px;
}
.hours .item {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: space-between;
	color: var(--white);
	padding: 20px;
	border: 1px solid rgba(var(--white-rgb), .2);
	margin: 12px 0;
	border-radius: 10px;
}

.breadcrumb {
	position: relative;
    padding:30px 0;
    /*background-image:url('../../upload/s2.jpg');*/
    background-size:cover;
    background-position:center;
}
.breadcrumb::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--color1);
	opacity: 0.5;
}
.breadcrumb .container {
	position: relative;
	color:var(--white);
}
/*********************/
.awards .item {
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:20px;
}
.awards .item figure {
    border-radius:15px;
    overflow:hidden;
    border:1px solid #ddd;
}
.awards .item img:nth-child(2) {
    position:relative;
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
}
.awards .item img:nth-child(1) {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:blur(4px);
}
.awards .item h4 {
    font-size:20px;
    color:var(--black);
}
/*
.mainimg img:nth-child(2) {
    position:relative;
    width:100%;
    height:500px;
    object-fit:contain;
}
.mainimg img:nth-child(1) {
    position:absolute;
    inset:0;
    width:100%;
    height:500px;
    object-fit:cover;
    filter:blur(4px);
}*/

.media .item {
    position:relative;
    display:block;
    overflow:hidden;
    background-color:var(--white);
}
.media .item img {
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

.address address {
    background-image: url(../../upload/pattern2.png);
    border-radius: 20px;
    height:100%;
}

.fixform {
    position:sticky;
    top: 0px;
}

.contact-wrapper {
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background: var(--color2);
  color: #fff;
  padding: 50px 40px;
  height: 100%;
}

.contact-info h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.info-box {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.info-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 15px;
  flex-shrink:0;
}

.contact-form {
  padding: 50px 40px;
}

.contact-form h3 {
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
}

.form-control {
  height: 55px;
  border-radius: 12px;
  padding-left: 45px;
  border: 1px solid #dcdcdc;
}

textarea.form-control {
  height: 140px;
  resize: none;
  padding-top: 15px;
}

.input-group-custom {
  position: relative;
  margin-bottom: 25px;
}

.input-group-custom i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #6c757d;
  z-index: 2;
}

.textarea-icon i {
  top: 20px;
  transform: none;
}

.btn-submit {
  background: var(--color2);
  border: none;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 600;
  width: 100%;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: var(--color1);
}

@media (max-width: 768px) {
  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }

  .contact-info h2 {
    font-size: 32px;
  }
}
/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
    /*.header { padding:10px;}*/
	/*.navbar { border-radius:20px;}*/
	.topbar .item a { font-size:11px;}
	.navbar-brand {margin:0;}
    .navbar { position:relative; padding:0; box-shadow:none;}
    .navbar-brand img {height:60px}
    .navbar-collapse { background-color:var(--color2); margin-right: calc(var(--bs-gutter-x) * -.5); margin-left: calc(var(--bs-gutter-x) * -.5);}
    .nav-item { padding:0; border-top:1px solid rgba(var(--black-rgb),0.2);}
    .nav-item .nav-link { color:var(--white); font-size: 16px; padding:10px 20px; 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::after { float:right;}	
    .dropdown-toggle.show::after { transform:rotateX(180deg);}
    .dropdown-item { padding:10px 20px;}
    /*
    .nav-item .nav-link { padding:10px 20px; }
    .dropdown-item { padding:10px 20px; font-size:14px;}
    .nav-item.dropdown .dropdown-menu.show { display:block;}
    .dropdown-toggle::after { float:right;}*/
    .owl-slide .item .desc { padding:20px;}
    .owl-slide .item .desc h1 { font-size:24px;}
    .owl-slide .owl-dots { position:relative; margin-top:10px; bottom:auto;}
    .owl-slide .owl-nav,
    .counter_wrap .item-counter:not(:last-child)::after { display:none;}
    .heading h2 {font-size: 24px;}
    
    /*.col-6 {width: 100%;}*/
    .features.grid_view { grid-template-columns: 1fr 1fr;}
    .features .item .feature-content h4 { font-size:15px;}
    .awards .item h4 { font-size:14px;}
    footer .links li a { font-size: 14px;}
    .footer-contact li { font-size: 15px;}
    /*.owl-slide .item img { height:auto; aspect-ratio:2/.8;}*/
    .grid-list, .counter_wrap { grid-template-columns:1fr;}
    .testimonials .item .desc p { font-size:14px;}
    .innerpage img { max-width:100%;}
    .counter_wrap { display:flex; flex-wrap:wrap; gap:0;}
    .counter_wrap .item-counter:nth-child(1) { border-right:1px solid rgba(var(--white-rgb),0.1); border-radius:0;}
    /*.counter_wrap .item-counter:not(:last-child) { padding-bottom:10px; margin-bottom:10px; border-bottom:1px solid rgba(var(--white-rgb),0.1);}*/
    .counter_wrap .item-counter { width: 50%; font-size: 12px; flex-grow: 1; justify-content: center; margin:0 !important; padding:10px;}
    .counter_wrap .item-counter img { height:30px;}
    .counter_wrap .item-counter h1 { font-size:21px;}
    .marquee-item { font-size:21px; margin-right: 80px;}
    .marquee-item::before { font-size:30px;}
}
